@moxi.gmbh/moxi-typescriptmodels 0.1.1981-test-server → 0.1.2001-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.
- package/common.d.ts +12 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -268,6 +268,16 @@ export interface CheckIfUserSignedUp {
|
|
|
268
268
|
userId?: string;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
/**
|
|
272
|
+
* You can send in custom values. For every value you don't send in, we lookup the default setting you set up in your account.
|
|
273
|
+
*/
|
|
274
|
+
export interface CleaningAndSlack {
|
|
275
|
+
cleaningAtGarage?: boolean;
|
|
276
|
+
cleaningDuration?: number;
|
|
277
|
+
dropoffDuration?: number;
|
|
278
|
+
pickupDuration?: number;
|
|
279
|
+
}
|
|
280
|
+
|
|
271
281
|
export interface ConfirmAccount extends AccountCommand {
|
|
272
282
|
}
|
|
273
283
|
|
|
@@ -1265,9 +1275,11 @@ export interface RideOrMinimizedSeries {
|
|
|
1265
1275
|
export interface RideOrSeries {
|
|
1266
1276
|
bookedTime?: string;
|
|
1267
1277
|
bookingStatus?: BookingStatus;
|
|
1278
|
+
cleaningAndSlack?: CleaningAndSlack;
|
|
1268
1279
|
driver?: AccountOrTeamRef;
|
|
1269
1280
|
entityType?: EntityType;
|
|
1270
1281
|
info?: GenericRideInfo;
|
|
1282
|
+
totalDuration?: number;
|
|
1271
1283
|
}
|
|
1272
1284
|
|
|
1273
1285
|
/**
|
package/package.json
CHANGED