@moxi.gmbh/moxi-typescriptmodels 0.0.621 → 0.0.641
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 +0 -16
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -95,13 +95,6 @@ export interface AmbulanceInfo {
|
|
|
95
95
|
requiresSuctionAspirator?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
export interface Application {
|
|
99
|
-
config?: ApplicationConfig;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
export interface ApplicationConfig {
|
|
103
|
-
}
|
|
104
|
-
|
|
105
98
|
export interface Appointment {
|
|
106
99
|
pickup?: boolean;
|
|
107
100
|
time?: string;
|
|
@@ -361,9 +354,6 @@ export interface GetAccountsOfPotentialDrivers {
|
|
|
361
354
|
weightInKg?: number;
|
|
362
355
|
}
|
|
363
356
|
|
|
364
|
-
export interface GetApplicationConfig {
|
|
365
|
-
}
|
|
366
|
-
|
|
367
357
|
export interface GetDistrict {
|
|
368
358
|
geoLocation?: GeoLocation;
|
|
369
359
|
stateNutsCode?: string;
|
|
@@ -743,10 +733,6 @@ export interface UpdateAccountPermission extends AccountPermissionCommand {
|
|
|
743
733
|
accountPermission?: AccountPermission;
|
|
744
734
|
}
|
|
745
735
|
|
|
746
|
-
export interface UpdateApplicationConfig {
|
|
747
|
-
config?: ApplicationConfig;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
736
|
export interface UpdateRideBooking extends RidePlannerCommand {
|
|
751
737
|
info?: RideInfo;
|
|
752
738
|
}
|
|
@@ -805,8 +791,6 @@ export type Destination = "DEFAULT" | "SEARCH";
|
|
|
805
791
|
|
|
806
792
|
export type Direction = "admission" | "relocation" | "discharge";
|
|
807
793
|
|
|
808
|
-
export type Environment = "prod" | "local" | "test";
|
|
809
|
-
|
|
810
794
|
export type GeometryUnion = GeoPolygon | GeoMultiPolygon;
|
|
811
795
|
|
|
812
796
|
export type Mobility = "wheelchair" | "big_or_electric_wheelchair" | "carry_chair" | "lying_down";
|
package/package.json
CHANGED