@moxi.gmbh/moxi-typescriptmodels 0.0.1281 → 0.0.1301
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 +16 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -732,6 +732,8 @@ export interface RideFilter {
|
|
|
732
732
|
bookingStatuses?: BookingStatus[];
|
|
733
733
|
directions?: Direction[];
|
|
734
734
|
driveStatuses?: DriveStatus[];
|
|
735
|
+
driverAccountNames?: string[];
|
|
736
|
+
driverTeamNames?: string[];
|
|
735
737
|
hasInfection?: boolean;
|
|
736
738
|
heavyWeight?: boolean;
|
|
737
739
|
mobilities?: Mobility[];
|
|
@@ -739,12 +741,26 @@ export interface RideFilter {
|
|
|
739
741
|
requiresOxygen?: boolean;
|
|
740
742
|
requiresSuctionAspirator?: boolean;
|
|
741
743
|
rideType?: RideType;
|
|
744
|
+
riderAccountNames?: string[];
|
|
745
|
+
riderTeamNames?: string[];
|
|
742
746
|
timeRange?: InstantRange;
|
|
743
747
|
}
|
|
744
748
|
|
|
745
749
|
export interface RideFilterCount {
|
|
746
750
|
bookingStatuses?: { [P in BookingStatus]?: number };
|
|
751
|
+
directions?: { [P in Direction]?: number };
|
|
747
752
|
driveStatuses?: { [P in DriveStatus]?: number };
|
|
753
|
+
driverAccountNames?: { [index: string]: number };
|
|
754
|
+
driverTeamNames?: { [index: string]: number };
|
|
755
|
+
hasInfection?: number;
|
|
756
|
+
heavyWeight?: number;
|
|
757
|
+
mobilities?: { [P in Mobility]?: number };
|
|
758
|
+
requiresMonitoring?: number;
|
|
759
|
+
requiresOxygen?: number;
|
|
760
|
+
requiresSuctionAspirator?: number;
|
|
761
|
+
rideTypes?: { [P in RideType]?: number };
|
|
762
|
+
riderAccountNames?: { [index: string]: number };
|
|
763
|
+
riderTeamNames?: { [index: string]: number };
|
|
748
764
|
total?: number;
|
|
749
765
|
}
|
|
750
766
|
|
package/package.json
CHANGED