@moxi.gmbh/moxi-typescriptmodels 0.1.1621-test-server → 0.1.1641-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 +3 -2
  2. package/package.json +1 -1
package/common.d.ts CHANGED
@@ -1090,6 +1090,7 @@ export interface RideFilter {
1090
1090
  riderAccountNames?: string[];
1091
1091
  riderTeamNames?: string[];
1092
1092
  timeRange?: InstantRange;
1093
+ unfoldRideSeries?: boolean;
1093
1094
  vehicleType?: VehicleType;
1094
1095
  }
1095
1096
 
@@ -1320,7 +1321,7 @@ export interface SignUpUser {
1320
1321
  * Individual ride timing within a series. Once a ride series is split, you cannot add rides, only remove
1321
1322
  */
1322
1323
  export interface SingleRide {
1323
- desiredStartTime?: string;
1324
+ appointmentTime?: string;
1324
1325
  returnTrip?: boolean;
1325
1326
  rideId?: string;
1326
1327
  }
@@ -1490,7 +1491,7 @@ export type AccountRole = "ridebooker" | "dispatcher" | "operator" | "admin" | "
1490
1491
 
1491
1492
  export type AuthenticationResult = "SUCCESS" | "NOT_CONFIRMED";
1492
1493
 
1493
- export type BookingStatus = "saved" | "booked" | "accepted" | "planned" | "started" | "completed" | "cancelled";
1494
+ export type BookingStatus = "saved" | "booked" | "accepted" | "planned" | "started" | "completed" | "confirmed" | "cancelled";
1494
1495
 
1495
1496
  export type DrivePermissionFilterUnion = AmbulanceFilter | TaxiFilter;
1496
1497
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.1.1621-test-server",
3
+ "version": "0.1.1641-test-server",
4
4
  "types": "common.d.ts"
5
5
  }