@moxi.gmbh/moxi-typescriptmodels 0.1.2091-test-server → 0.1.2111-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 +5 -6
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -812,12 +812,12 @@ export interface IntensiveCareHelicopterFilter extends DrivePermissionFilter {
|
|
|
812
812
|
}
|
|
813
813
|
|
|
814
814
|
/**
|
|
815
|
-
*
|
|
815
|
+
* Ride information specific for intensive care rides.
|
|
816
816
|
*/
|
|
817
817
|
export interface IntensiveCareRideInfo extends RideInfo {
|
|
818
818
|
medicalData?: MedicalData;
|
|
819
819
|
patientMedicalCondition?: string;
|
|
820
|
-
vehicleType: "intensiveCareAmbulance";
|
|
820
|
+
vehicleType: "intensiveCareAmbulance" | "emergencyAmbulance" | "intensiveCareHelicopter";
|
|
821
821
|
}
|
|
822
822
|
|
|
823
823
|
export interface Invite {
|
|
@@ -1027,10 +1027,10 @@ export interface RegisterEinsatz {
|
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
1029
|
/**
|
|
1030
|
-
*
|
|
1030
|
+
* Ride information specific for regular taxi or ambulance rides.
|
|
1031
1031
|
*/
|
|
1032
1032
|
export interface RegularRideInfo extends RideInfo {
|
|
1033
|
-
vehicleType: "taxi";
|
|
1033
|
+
vehicleType: "taxi" | "ambulance";
|
|
1034
1034
|
}
|
|
1035
1035
|
|
|
1036
1036
|
export interface RemoveAccount extends AccountUpdate {
|
|
@@ -1267,12 +1267,11 @@ export interface RideIdResult {
|
|
|
1267
1267
|
}
|
|
1268
1268
|
|
|
1269
1269
|
/**
|
|
1270
|
-
*
|
|
1270
|
+
* Base class for different types of RideInfo
|
|
1271
1271
|
*/
|
|
1272
1272
|
export interface RideInfo extends GenericRideInfo {
|
|
1273
1273
|
appointment?: Appointment;
|
|
1274
1274
|
purpose?: RidePurpose;
|
|
1275
|
-
vehicleType: "intensiveCareAmbulance" | "taxi";
|
|
1276
1275
|
}
|
|
1277
1276
|
|
|
1278
1277
|
export interface RideLog {
|
package/package.json
CHANGED