@moxi.gmbh/moxi-typescriptmodels 0.1.1361-test-server → 0.1.1381-test-server

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/common.d.ts +6 -1
  2. package/package.json +1 -1
package/common.d.ts CHANGED
@@ -27,6 +27,11 @@ export interface Account {
27
27
  info?: AccountInfo;
28
28
  integrationSettings?: any[];
29
29
  operateAccounts?: string[];
30
+ operator?: string;
31
+ /**
32
+ * Derived from subscriptions. Includes organisation types that have not been confirmed yet by a superadmin or are active in past or future.
33
+ */
34
+ organisationTypes?: OrganisationType[];
30
35
  subscriptions?: Subscription[];
31
36
  teams?: Team[];
32
37
  unconfirmedCriticalInfo?: CriticalAccountInfo;
@@ -1485,7 +1490,7 @@ export interface ZonedTimeRange {
1485
1490
  start?: Date;
1486
1491
  }
1487
1492
 
1488
- export type AccountRole = "ridebooker" | "dispatcher" | "admin" | "owner";
1493
+ export type AccountRole = "ridebooker" | "dispatcher" | "operator" | "admin" | "owner";
1489
1494
 
1490
1495
  export type AuthenticationResult = "SUCCESS" | "NOT_CONFIRMED";
1491
1496
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.1.1361-test-server",
3
+ "version": "0.1.1381-test-server",
4
4
  "types": "common.d.ts"
5
5
  }