@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.
Files changed (2) hide show
  1. package/common.d.ts +12 -6
  2. 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
- fromDistrict?: string;
454
- mobility?: Mobility;
455
- rideType?: RideType;
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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.0.1401",
3
+ "version": "0.0.1421",
4
4
  "types": "common.d.ts"
5
5
  }