@moxi.gmbh/moxi-typescriptmodels 0.1.1111-test-server → 0.1.1131-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 +20 -4
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -141,7 +141,8 @@ export interface AmbulanceInfo {
|
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Common information shared across all rides in a series. Similar to RideInfo but without appointment-specific details that vary per ride.
|
|
145
|
+
|
|
145
146
|
*/
|
|
146
147
|
export interface AnonymizedGenericRideInfo extends GenericRideInfo {
|
|
147
148
|
}
|
|
@@ -449,9 +450,9 @@ export interface FindMyRideOffers {
|
|
|
449
450
|
export interface FindMyRideSeries {
|
|
450
451
|
accountId?: string;
|
|
451
452
|
descending?: boolean;
|
|
452
|
-
filter?: RideFilter;
|
|
453
453
|
maxSize?: number;
|
|
454
454
|
term?: string;
|
|
455
|
+
timeRange?: InstantRange;
|
|
455
456
|
}
|
|
456
457
|
|
|
457
458
|
export interface FindMyRides {
|
|
@@ -479,7 +480,6 @@ export interface FindPotentialRideSeries {
|
|
|
479
480
|
descending?: boolean;
|
|
480
481
|
filter?: RideInfoFilter;
|
|
481
482
|
maxSize?: number;
|
|
482
|
-
timeRange?: InstantRange;
|
|
483
483
|
}
|
|
484
484
|
|
|
485
485
|
export interface FindPotentialRides {
|
|
@@ -517,7 +517,8 @@ export interface GenerateToken {
|
|
|
517
517
|
}
|
|
518
518
|
|
|
519
519
|
/**
|
|
520
|
-
*
|
|
520
|
+
* Common information shared across all rides in a series. Similar to RideInfo but without appointment-specific details that vary per ride.
|
|
521
|
+
|
|
521
522
|
*/
|
|
522
523
|
export interface GenericRideInfo {
|
|
523
524
|
ambulanceInfo?: AmbulanceInfo;
|
|
@@ -596,6 +597,13 @@ export interface GetIsoStates {
|
|
|
596
597
|
export interface GetMonopolyAccounts {
|
|
597
598
|
}
|
|
598
599
|
|
|
600
|
+
export interface GetMyAcceptedRideSeries {
|
|
601
|
+
accountId?: string;
|
|
602
|
+
descending?: boolean;
|
|
603
|
+
maxSize?: number;
|
|
604
|
+
timeRange?: InstantRange;
|
|
605
|
+
}
|
|
606
|
+
|
|
599
607
|
export interface GetMyAcceptedRides {
|
|
600
608
|
accountId?: string;
|
|
601
609
|
maxSize?: number;
|
|
@@ -644,6 +652,11 @@ export interface GetPotentialDrivers {
|
|
|
644
652
|
weightInKg?: number;
|
|
645
653
|
}
|
|
646
654
|
|
|
655
|
+
export interface GetPotentialRideSeries {
|
|
656
|
+
accountId?: string;
|
|
657
|
+
maxSize?: number;
|
|
658
|
+
}
|
|
659
|
+
|
|
647
660
|
export interface GetPotentialRides {
|
|
648
661
|
accountId?: string;
|
|
649
662
|
maxSize?: number;
|
|
@@ -1255,6 +1268,9 @@ export interface SignUpUser {
|
|
|
1255
1268
|
userId?: string;
|
|
1256
1269
|
}
|
|
1257
1270
|
|
|
1271
|
+
/**
|
|
1272
|
+
* Individual ride timing within a series
|
|
1273
|
+
*/
|
|
1258
1274
|
export interface SingleRide {
|
|
1259
1275
|
desiredStartTime?: string;
|
|
1260
1276
|
returnTrip?: boolean;
|
package/package.json
CHANGED