@moxi.gmbh/moxi-typescriptmodels 0.0.1381 → 0.0.1391
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 +2 -0
- 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
|
package/package.json
CHANGED