@moxi.gmbh/moxi-typescriptmodels 0.1.1631-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
@@ -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[];
@@ -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.1631-test-server",
3
+ "version": "0.1.1641-test-server",
4
4
  "types": "common.d.ts"
5
5
  }