@moxi.gmbh/moxi-typescriptmodels 0.0.1381 → 0.0.1401

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
@@ -172,6 +172,7 @@ export interface CancelDrive extends FleetModifyCommand {
172
172
  }
173
173
 
174
174
  export interface CancelRide extends RidePlannerCommand {
175
+ reason?: string;
175
176
  }
176
177
 
177
178
  export interface ChangeUserPassword {
@@ -730,6 +731,7 @@ export interface Ride {
730
731
  booked?: boolean;
731
732
  bookedTime?: string;
732
733
  bookingStatus?: BookingStatus;
734
+ cancelReason?: string;
733
735
  cancelled?: boolean;
734
736
  /**
735
737
  * Derived from driveStatus == completed
@@ -824,6 +826,7 @@ export interface RideInfo {
824
826
  ambulanceInfo?: AmbulanceInfo;
825
827
  appointment?: Appointment;
826
828
  attendantsPresent?: number;
829
+ comment?: string;
827
830
  dimensions?: PersonDimensions;
828
831
  direction?: Direction;
829
832
  distanceInMeters?: number;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.0.1381",
3
+ "version": "0.0.1401",
4
4
  "types": "common.d.ts"
5
5
  }