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