@moxi.gmbh/moxi-typescriptmodels 0.0.1401 → 0.0.1421
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 -6
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -449,12 +449,10 @@ export interface GetAccount {
|
|
|
449
449
|
accountId?: string;
|
|
450
450
|
}
|
|
451
451
|
|
|
452
|
-
export interface GetAccountsOfPotentialDrivers {
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
toDistrict?: string;
|
|
457
|
-
weightInKg?: number;
|
|
452
|
+
export interface GetAccountsOfPotentialDrivers extends GetPotentialDrivers {
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export interface GetAccountsOfPotentialDriversAsAdmin extends GetPotentialDrivers {
|
|
458
456
|
}
|
|
459
457
|
|
|
460
458
|
export interface GetDistrict {
|
|
@@ -504,6 +502,14 @@ export interface GetMyUserProfile {
|
|
|
504
502
|
export interface GetNutsStates {
|
|
505
503
|
}
|
|
506
504
|
|
|
505
|
+
export interface GetPotentialDrivers {
|
|
506
|
+
fromDistrict?: string;
|
|
507
|
+
mobility?: Mobility;
|
|
508
|
+
rideType?: RideType;
|
|
509
|
+
toDistrict?: string;
|
|
510
|
+
weightInKg?: number;
|
|
511
|
+
}
|
|
512
|
+
|
|
507
513
|
export interface GetPotentialRides {
|
|
508
514
|
accountId?: string;
|
|
509
515
|
maxSize?: number;
|
package/package.json
CHANGED