@moxi.gmbh/moxi-typescriptmodels 0.0.1661 → 0.0.1671

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 +9 -2
  2. package/package.json +1 -1
package/common.d.ts CHANGED
@@ -521,8 +521,11 @@ export interface GetRide {
521
521
  rideId?: string;
522
522
  }
523
523
 
524
- export interface GetRideCsv {
525
- dateRange?: DateRange;
524
+ export interface GetRideBillingData extends RideStatisticsQuery {
525
+ rideOwner?: string;
526
+ }
527
+
528
+ export interface GetRideCsv extends RideStatisticsQuery {
526
529
  }
527
530
 
528
531
  export interface GetRideLog {
@@ -873,6 +876,10 @@ export interface RideOfferInfo {
873
876
  export interface RidePlannerCommand extends RideCommand {
874
877
  }
875
878
 
879
+ export interface RideStatisticsQuery {
880
+ dateRange?: DateRange;
881
+ }
882
+
876
883
  export interface RideTypeSpecificFilter {
877
884
  type: "ambulance" | "taxi";
878
885
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.0.1661",
3
+ "version": "0.0.1671",
4
4
  "types": "common.d.ts"
5
5
  }