Skip to content

Commit e0cac2c

Browse files
committed
Merge main into branch
2 parents b8ca168 + b9daea9 commit e0cac2c

File tree

7 files changed

+23
-1
lines changed

7 files changed

+23
-1
lines changed

dist/index.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export { Client } from './Client';
22
export { ClientConfig } from './ClientConfig';
3+
export { Equipment } from './models/Equipment';
34
export { RequestOptions } from './utils/RequestOptions';
45
export type { InternalResponse } from './types/Response';
56
/**
@@ -14,6 +15,14 @@ export { Permission } from './models/Permission';
1415
export { Role } from './models/Role';
1516
export { ServiceAccount } from './models/ServiceAccount';
1617
export { ServiceAccountKey } from './models/ServiceAccountKey';
18+
<<<<<<< HEAD
1719
export { Submission } from './models/Submission';
1820
export { SubmissionVersion } from './models/SubmissionVersion';
1921
export { Vehicle } from './models/Vehicle';
22+
=======
23+
export { Log } from './models/Log';
24+
export { Group } from './models/Group';
25+
export { Permission } from './models/Permission';
26+
export { Vehicle } from './models/Vehicle';
27+
export type { InternalResponse } from './types/Response';
28+
>>>>>>> main

dist/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,17 +907,23 @@ Vehicle = __legacyDecorateClassTS([
907907
], Vehicle);
908908
export {
909909
Vehicle,
910+
<<<<<<< HEAD
910911
SubmissionVersion,
911912
Submission,
913+
=======
914+
>>>>>>> main
912915
ServiceAccountKey,
913916
ServiceAccount,
914917
Role,
915918
RequestOptions,
916919
Permission,
917920
Log,
918921
Group,
922+
<<<<<<< HEAD
919923
FormCategory,
920924
Form,
925+
=======
926+
>>>>>>> main
921927
Equipment,
922928
ClientConfig,
923929
Client

dist/services/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
export { EquipmentService } from "./EquipmentService";
12
export { FormCategoriesService } from "./FormCategoriesService";
23
export { RolesService } from "./RolesService";
34
export { PermissionsService } from "./PermissionsService";
45
export { SubmissionsService } from "./SubmissionsService";
56
export { FormsService } from "./FormsService";
67
export { ServiceAccountsService } from "./ServiceAccountService";
78
export { ServiceAccountKeysService } from "./ServiceAccountKeysService";
9+
export { VehiclesService } from "./VehiclesService";

dist/services/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
export { EquipmentService } from "./EquipmentService";
12
export { FormCategoriesService } from "./FormCategoriesService";
23
export { RolesService } from "./RolesService";
34
export { PermissionsService } from "./PermissionsService";
45
export { SubmissionsService } from "./SubmissionsService";
56
export { FormsService } from "./FormsService";
67
export { ServiceAccountsService } from "./ServiceAccountService";
78
export { ServiceAccountKeysService } from "./ServiceAccountKeysService";
9+
export { VehiclesService } from "./VehiclesService";

index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { Client } from './src';
2+
import { Equipment } from './src/models/Equipment';
23
import {FormCategory} from "./src/models/FormCategory";
34
import {ClientConfig} from "./dist";
45
import {Form} from "./src/models/Form";
56
import { RequestOptions } from './dist/utils/RequestOptions';
67
import { ServiceAccount } from './src/models/ServiceAccount';
8+
import { Vehicle } from './src/models/Vehicle';
79

810

911
// let config = new ClientConfig()

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "git",
55
"url": "https://github.com/ctrl-hub/sdk.ts"
66
},
7-
"version": "0.1.51",
7+
"version": "0.1.53",
88
"main": "dist/index.js",
99
"types": "dist/index.d.ts",
1010
"type": "module",

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export { Client } from './Client'
22
export { ClientConfig } from './ClientConfig'
3+
export { Equipment } from './models/Equipment'
34
export { RequestOptions } from './utils/RequestOptions'
45
export type { InternalResponse } from './types/Response'
56

0 commit comments

Comments
 (0)