@moxi.gmbh/moxi-typescriptmodels 0.1.5271-763554e-test-server → 0.1.5291-9bd2c7d-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-with-namespaces.d.ts +19 -0
- package/common.d.ts +11 -0
- package/package.json +1 -1
|
@@ -1859,6 +1859,18 @@ export namespace com.moxi.api.ride.common {
|
|
|
1859
1859
|
|
|
1860
1860
|
}
|
|
1861
1861
|
|
|
1862
|
+
export namespace com.moxi.api.ride.common {
|
|
1863
|
+
|
|
1864
|
+
export interface Contact {
|
|
1865
|
+
contactType?: com.moxi.api.ride.common.ContactType;
|
|
1866
|
+
/**
|
|
1867
|
+
* The contact's email address.
|
|
1868
|
+
*/
|
|
1869
|
+
email?: string;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1862
1874
|
export namespace com.moxi.api.ride.common {
|
|
1863
1875
|
|
|
1864
1876
|
export interface FindRidesResult {
|
|
@@ -2704,6 +2716,7 @@ export namespace com.moxi.api.rideseries.common {
|
|
|
2704
2716
|
*/
|
|
2705
2717
|
heavyWeight?: boolean;
|
|
2706
2718
|
mobility?: com.moxi.api.ride.common.Mobility;
|
|
2719
|
+
notificationContacts?: com.moxi.api.ride.common.Contact[];
|
|
2707
2720
|
patient?: com.moxi.api.ride.common.Person;
|
|
2708
2721
|
plannedDuration?: com.moxi.api.ride.common.RideDuration;
|
|
2709
2722
|
preferredDriver?: string;
|
|
@@ -3646,6 +3659,12 @@ export namespace com.moxi.api.ride.common {
|
|
|
3646
3659
|
|
|
3647
3660
|
}
|
|
3648
3661
|
|
|
3662
|
+
export namespace com.moxi.api.ride.common {
|
|
3663
|
+
|
|
3664
|
+
export type ContactType = "relativeOfPatient" | "otherLocation" | "patient";
|
|
3665
|
+
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3649
3668
|
export namespace com.moxi.api.ride.common {
|
|
3650
3669
|
|
|
3651
3670
|
export type DriveStatus = "driving_to_origin" | "arrived_at_origin" | "driving_to_destination" | "arrived_at_destination" | "completed";
|
package/common.d.ts
CHANGED
|
@@ -358,6 +358,14 @@ export interface Consciousness {
|
|
|
358
358
|
type?: ConsciousnessType;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
+
export interface Contact {
|
|
362
|
+
contactType?: ContactType;
|
|
363
|
+
/**
|
|
364
|
+
* The contact's email address.
|
|
365
|
+
*/
|
|
366
|
+
email?: string;
|
|
367
|
+
}
|
|
368
|
+
|
|
361
369
|
export interface CreateAccount extends AccountCommand {
|
|
362
370
|
autoConfirm?: boolean;
|
|
363
371
|
criticalInfo?: CriticalAccountInfo;
|
|
@@ -675,6 +683,7 @@ export interface GenericRideInfo {
|
|
|
675
683
|
*/
|
|
676
684
|
heavyWeight?: boolean;
|
|
677
685
|
mobility?: Mobility;
|
|
686
|
+
notificationContacts?: Contact[];
|
|
678
687
|
patient?: Person;
|
|
679
688
|
plannedDuration?: RideDuration;
|
|
680
689
|
preferredDriver?: string;
|
|
@@ -2032,6 +2041,8 @@ export type CirculationType = "stable" | "stable_with_catecholamines" | "unstabl
|
|
|
2032
2041
|
|
|
2033
2042
|
export type ConsciousnessType = "oriented" | "sleepy" | "unconscious" | "analgo_sedated";
|
|
2034
2043
|
|
|
2044
|
+
export type ContactType = "relativeOfPatient" | "otherLocation" | "patient";
|
|
2045
|
+
|
|
2035
2046
|
export type DocumentType = "businessLicense" | "publicLiabilityPolicy";
|
|
2036
2047
|
|
|
2037
2048
|
export type DrivePermissionFilterUnion = AmbulanceFilter | TaxiFilter | IntensiveCareAmbulanceFilter | IntensiveCareHelicopterFilter | EmergencyAmbulanceFilter;
|
package/package.json
CHANGED