File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export { Role } from './models/Role';
2424export { Scheme } from './models/Scheme' ;
2525export { WorkOrder } from './models/WorkOrder' ;
2626export { Operation } from './models/Operation' ;
27+ export { OperationTemplate } from './models/OperationTemplate' ;
2728export { Organisation } from './models/Organisation' ;
2829export { ServiceAccount } from './models/ServiceAccount' ;
2930export { ServiceAccountKey } from './models/ServiceAccountKey' ;
Original file line number Diff line number Diff line change @@ -2116,6 +2116,9 @@ class ClientConfig {
21162116}
21172117// src/models/Organisation.ts
21182118class 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 ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export { Role } from './models/Role';
2525export { Scheme } from './models/Scheme' ;
2626export { WorkOrder } from './models/WorkOrder' ;
2727export { Operation } from './models/Operation' ;
28+ export { OperationTemplate } from './models/OperationTemplate' ;
2829export { Organisation } from './models/Organisation' ;
2930export { ServiceAccount } from './models/ServiceAccount' ;
3031export { ServiceAccountKey } from './models/ServiceAccountKey' ;
You can’t perform that action at this time.
0 commit comments