@moxi.gmbh/moxi-typescriptmodels 0.0.921 → 0.0.941
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 +10 -1
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -60,6 +60,7 @@ export interface AddressInfo {
|
|
|
60
60
|
addition?: string;
|
|
61
61
|
city?: string;
|
|
62
62
|
country?: string;
|
|
63
|
+
displayName?: string;
|
|
63
64
|
districtNutsCode?: string;
|
|
64
65
|
geoLocation?: GeoLocation;
|
|
65
66
|
instructions?: string;
|
|
@@ -600,18 +601,26 @@ export interface RideCommand {
|
|
|
600
601
|
rideId?: string;
|
|
601
602
|
}
|
|
602
603
|
|
|
604
|
+
export interface RideDuration {
|
|
605
|
+
driving?: number;
|
|
606
|
+
droppingOff?: number;
|
|
607
|
+
pickingUp?: number;
|
|
608
|
+
total?: number;
|
|
609
|
+
}
|
|
610
|
+
|
|
603
611
|
export interface RideInfo {
|
|
604
612
|
ambulanceInfo?: AmbulanceInfo;
|
|
605
613
|
appointment?: Appointment;
|
|
606
614
|
attendantsPresent?: number;
|
|
607
615
|
dimensions?: PersonDimensions;
|
|
608
616
|
direction?: Direction;
|
|
609
|
-
|
|
617
|
+
distanceInMeters?: number;
|
|
610
618
|
from?: AddressInfo;
|
|
611
619
|
heavyWeight?: boolean;
|
|
612
620
|
heavyWeightWithMobilityIssues?: boolean;
|
|
613
621
|
mobility?: Mobility;
|
|
614
622
|
patient?: Person;
|
|
623
|
+
plannedDuration?: RideDuration;
|
|
615
624
|
preferredDriver?: string;
|
|
616
625
|
rideType?: RideType;
|
|
617
626
|
to?: AddressInfo;
|
package/package.json
CHANGED