Skip to content

Commit c1c1ed5

Browse files
authored
Merge pull request #49 from ctrl-hub/add-operation-template-export
Add operation template export
2 parents b144588 + 1ce6953 commit c1c1ed5

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

dist/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export { Role } from './models/Role';
2424
export { Scheme } from './models/Scheme';
2525
export { WorkOrder } from './models/WorkOrder';
2626
export { Operation } from './models/Operation';
27+
export { OperationTemplate } from './models/OperationTemplate';
2728
export { Organisation } from './models/Organisation';
2829
export { ServiceAccount } from './models/ServiceAccount';
2930
export { ServiceAccountKey } from './models/ServiceAccountKey';

dist/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,6 +2116,9 @@ class ClientConfig {
21162116
}
21172117
// src/models/Organisation.ts
21182118
class Organisation extends BaseModel {
2119+
constructor() {
2120+
super(...arguments);
2121+
}
21192122
type = "organisations";
21202123
static relationships = [];
21212124
}
@@ -2138,6 +2141,7 @@ export {
21382141
Property,
21392142
Permission,
21402143
Organisation,
2144+
OperationTemplate,
21412145
Operation,
21422146
Log,
21432147
Group,

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.125",
7+
"version": "0.1.126",
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
@@ -25,6 +25,7 @@ export { Role } from './models/Role';
2525
export { Scheme } from './models/Scheme';
2626
export { WorkOrder } from './models/WorkOrder';
2727
export { Operation } from './models/Operation';
28+
export { OperationTemplate } from './models/OperationTemplate';
2829
export { Organisation } from './models/Organisation';
2930
export { ServiceAccount } from './models/ServiceAccount';
3031
export { ServiceAccountKey } from './models/ServiceAccountKey';

0 commit comments

Comments
 (0)