@moxi.gmbh/moxi-typescriptmodels 0.1.1331-test-server → 0.1.1361-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.
- package/common.d.ts +14 -4
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export interface AcceptRide extends RideDriverCommand {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
export interface AcceptRideSeries extends RideDriverSeriesCommand {
|
|
7
|
-
|
|
7
|
+
driver?: AccountOrTeamRef;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export interface AcceptUserAgreement extends UserEdit {
|
|
@@ -26,6 +26,7 @@ export interface Account {
|
|
|
26
26
|
drivePermissions?: DrivePermission[];
|
|
27
27
|
info?: AccountInfo;
|
|
28
28
|
integrationSettings?: any[];
|
|
29
|
+
operateAccounts?: string[];
|
|
29
30
|
subscriptions?: Subscription[];
|
|
30
31
|
teams?: Team[];
|
|
31
32
|
unconfirmedCriticalInfo?: CriticalAccountInfo;
|
|
@@ -212,6 +213,7 @@ export interface CancelRideSeries extends RideBookerSeriesCommand {
|
|
|
212
213
|
}
|
|
213
214
|
|
|
214
215
|
export interface CancelRidesInSeries extends RideSeriesPostConfirmCommand {
|
|
216
|
+
updater?: AccountOrTeamRef;
|
|
215
217
|
}
|
|
216
218
|
|
|
217
219
|
export interface CeliosSettings {
|
|
@@ -1279,6 +1281,14 @@ export interface SeriesInfo {
|
|
|
1279
1281
|
rideSeriesId?: string;
|
|
1280
1282
|
}
|
|
1281
1283
|
|
|
1284
|
+
export interface SetOperateAccounts extends AccountUpdate {
|
|
1285
|
+
operateAccounts?: string[];
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
export interface SetOperator extends AccountUpdate {
|
|
1289
|
+
operator?: string;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1282
1292
|
export interface SetSettings extends AccountUpdate {
|
|
1283
1293
|
settings?: any;
|
|
1284
1294
|
}
|
|
@@ -1493,17 +1503,17 @@ export type IntegrationType = "dispolive" | "celios";
|
|
|
1493
1503
|
|
|
1494
1504
|
export type Mobility = "wheelchair" | "big_or_electric_wheelchair" | "carry_chair" | "stretcher";
|
|
1495
1505
|
|
|
1496
|
-
export type OrganisationType = "medical" | "fleet";
|
|
1506
|
+
export type OrganisationType = "medical" | "fleet" | "operator";
|
|
1497
1507
|
|
|
1498
1508
|
export type RidePurpose = "admission" | "relocation" | "discharge" | "consultation";
|
|
1499
1509
|
|
|
1500
1510
|
export type RideSeriesStatus = "booked" | "accepted" | "confirmed" | "cancelled";
|
|
1501
1511
|
|
|
1502
|
-
export type Service = "pro_medical" | "pro_fleet" | "
|
|
1512
|
+
export type Service = "pro_medical" | "pro_fleet" | "pro_operator" | "celios_integration" | "dispolive_integration";
|
|
1503
1513
|
|
|
1504
1514
|
export type SlackChannel = "admin_monitoring" | "admin_respond_immediately" | "admin_respond_within_hour" | "admin_reported_issues";
|
|
1505
1515
|
|
|
1506
|
-
export type StandaloneService = "pro_medical" | "pro_fleet";
|
|
1516
|
+
export type StandaloneService = "pro_medical" | "pro_fleet" | "pro_operator";
|
|
1507
1517
|
|
|
1508
1518
|
export type SyncStatus = "not_synced" | "synced" | "update_not_synced";
|
|
1509
1519
|
|
package/package.json
CHANGED