@moxi.gmbh/moxi-typescriptmodels 0.0.671 → 0.0.691

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 -0
  2. package/package.json +1 -1
package/common.d.ts CHANGED
@@ -570,6 +570,7 @@ export interface Ride {
570
570
  accepted?: boolean;
571
571
  booked?: boolean;
572
572
  bookedTime?: string;
573
+ bookingStatus?: BookingStatus;
573
574
  cancelled?: boolean;
574
575
  completed?: boolean;
575
576
  destinationEta?: string;
@@ -802,6 +803,8 @@ export type AdminJsonTypeUnion = ToggleAdminEndpoint | GetThreadDump | QueryData
802
803
 
803
804
  export type AuthenticationResult = "SUCCESS" | "NOT_CONFIRMED";
804
805
 
806
+ export type BookingStatus = "saved" | "booked" | "accepted" | "started" | "completed" | "cancelled";
807
+
805
808
  export type DayOfWeek = "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY";
806
809
 
807
810
  export type Destination = "DEFAULT" | "SEARCH";
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.0.671",
3
+ "version": "0.0.691",
4
4
  "types": "common.d.ts"
5
5
  }