@moxi.gmbh/moxi-typescriptmodels 0.1.1631-test-server → 0.1.1651-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 +6 -2
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -1078,6 +1078,7 @@ export interface RideFilter {
|
|
|
1078
1078
|
driveStatuses?: DriveStatus[];
|
|
1079
1079
|
driverAccountNames?: string[];
|
|
1080
1080
|
driverTeamNames?: string[];
|
|
1081
|
+
entityType?: EntityType;
|
|
1081
1082
|
hasInfection?: boolean;
|
|
1082
1083
|
heavyWeight?: boolean;
|
|
1083
1084
|
mobilities?: Mobility[];
|
|
@@ -1277,6 +1278,9 @@ export interface SeriesInfo {
|
|
|
1277
1278
|
totalRidesInSeries?: number;
|
|
1278
1279
|
}
|
|
1279
1280
|
|
|
1281
|
+
export interface SeriesUpcaster {
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1280
1284
|
export interface SetOperateAccounts extends AccountUpdate {
|
|
1281
1285
|
operateAccounts?: string[];
|
|
1282
1286
|
}
|
|
@@ -1320,7 +1324,7 @@ export interface SignUpUser {
|
|
|
1320
1324
|
* Individual ride timing within a series. Once a ride series is split, you cannot add rides, only remove
|
|
1321
1325
|
*/
|
|
1322
1326
|
export interface SingleRide {
|
|
1323
|
-
|
|
1327
|
+
appointmentTime?: string;
|
|
1324
1328
|
returnTrip?: boolean;
|
|
1325
1329
|
rideId?: string;
|
|
1326
1330
|
}
|
|
@@ -1490,7 +1494,7 @@ export type AccountRole = "ridebooker" | "dispatcher" | "operator" | "admin" | "
|
|
|
1490
1494
|
|
|
1491
1495
|
export type AuthenticationResult = "SUCCESS" | "NOT_CONFIRMED";
|
|
1492
1496
|
|
|
1493
|
-
export type BookingStatus = "saved" | "booked" | "accepted" | "planned" | "started" | "completed" | "cancelled";
|
|
1497
|
+
export type BookingStatus = "saved" | "booked" | "accepted" | "planned" | "started" | "completed" | "confirmed" | "cancelled";
|
|
1494
1498
|
|
|
1495
1499
|
export type DrivePermissionFilterUnion = AmbulanceFilter | TaxiFilter;
|
|
1496
1500
|
|
package/package.json
CHANGED