File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export { Role } from './models/Role';
24
24
export { Scheme } from './models/Scheme' ;
25
25
export { WorkOrder } from './models/WorkOrder' ;
26
26
export { Operation } from './models/Operation' ;
27
+ export { OperationTemplate } from './models/OperationTemplate' ;
27
28
export { Organisation } from './models/Organisation' ;
28
29
export { ServiceAccount } from './models/ServiceAccount' ;
29
30
export { ServiceAccountKey } from './models/ServiceAccountKey' ;
Original file line number Diff line number Diff line change @@ -2116,6 +2116,9 @@ class ClientConfig {
2116
2116
}
2117
2117
// src/models/Organisation.ts
2118
2118
class Organisation extends BaseModel {
2119
+ constructor ( ) {
2120
+ super ( ...arguments ) ;
2121
+ }
2119
2122
type = "organisations" ;
2120
2123
static relationships = [ ] ;
2121
2124
}
@@ -2138,6 +2141,7 @@ export {
2138
2141
Property ,
2139
2142
Permission ,
2140
2143
Organisation ,
2144
+ OperationTemplate ,
2141
2145
Operation ,
2142
2146
Log ,
2143
2147
Group ,
Original file line number Diff line number Diff line change 4
4
"type" : " git" ,
5
5
"url" : " https://github.com/ctrl-hub/sdk.ts"
6
6
},
7
- "version" : " 0.1.125 " ,
7
+ "version" : " 0.1.126 " ,
8
8
"main" : " dist/index.js" ,
9
9
"types" : " dist/index.d.ts" ,
10
10
"type" : " module" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export { Role } from './models/Role';
25
25
export { Scheme } from './models/Scheme' ;
26
26
export { WorkOrder } from './models/WorkOrder' ;
27
27
export { Operation } from './models/Operation' ;
28
+ export { OperationTemplate } from './models/OperationTemplate' ;
28
29
export { Organisation } from './models/Organisation' ;
29
30
export { ServiceAccount } from './models/ServiceAccount' ;
30
31
export { ServiceAccountKey } from './models/ServiceAccountKey' ;
You can’t perform that action at this time.
0 commit comments