@moxi.gmbh/moxi-typescriptmodels 0.1.2421-test-server → 0.1.2431-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 +1 -23
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -244,7 +244,7 @@ export interface BookRideSeries extends CreateSeriesCommand {
|
|
|
244
244
|
rideSummaries?: RideSummary[];
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
-
export interface CancelRide extends
|
|
247
|
+
export interface CancelRide extends RideBookerCommand {
|
|
248
248
|
reason?: string;
|
|
249
249
|
}
|
|
250
250
|
|
|
@@ -266,11 +266,6 @@ export interface CeliosSettings {
|
|
|
266
266
|
user?: string;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
export interface CeliosStreamPulse {
|
|
270
|
-
target?: string;
|
|
271
|
-
type?: GrpcStreamType;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
269
|
export interface ChangeUserPassword {
|
|
275
270
|
newPassword?: string;
|
|
276
271
|
oldPassword?: string;
|
|
@@ -802,11 +797,6 @@ export interface GiveTeamPermission extends AccountPermissionCommand {
|
|
|
802
797
|
teamPermission?: TeamPermission;
|
|
803
798
|
}
|
|
804
799
|
|
|
805
|
-
export interface GrpcStreamId {
|
|
806
|
-
target?: string;
|
|
807
|
-
type?: GrpcStreamType;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
800
|
export interface HalfHourBeforeStart {
|
|
811
801
|
rideId?: string;
|
|
812
802
|
}
|
|
@@ -1530,16 +1520,6 @@ export interface SignUpUser {
|
|
|
1530
1520
|
userId?: string;
|
|
1531
1521
|
}
|
|
1532
1522
|
|
|
1533
|
-
export interface StartCeliosStream {
|
|
1534
|
-
target?: string;
|
|
1535
|
-
type?: GrpcStreamType;
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
|
-
export interface StopCeliosStream {
|
|
1539
|
-
target?: string;
|
|
1540
|
-
type?: GrpcStreamType;
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
1523
|
export interface StopImpersonatingUser {
|
|
1544
1524
|
}
|
|
1545
1525
|
|
|
@@ -1723,8 +1703,6 @@ export type EntityType = "ride" | "rideseries";
|
|
|
1723
1703
|
|
|
1724
1704
|
export type GeometryUnion = GeoPolygon | GeoMultiPolygon;
|
|
1725
1705
|
|
|
1726
|
-
export type GrpcStreamType = "get_einsatz_events";
|
|
1727
|
-
|
|
1728
1706
|
export type InsuranceType = "public_insurance" | "private_insurance" | "german_accident_insurance" | "no_or_unknown_insurance";
|
|
1729
1707
|
|
|
1730
1708
|
export type IntegrationType = "dispolive" | "celios";
|
package/package.json
CHANGED