@moxi.gmbh/moxi-typescriptmodels 0.1.2311-test-server → 0.1.2341-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 -4
- 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
|
}
|
|
@@ -1302,9 +1312,6 @@ export interface RideLog {
|
|
|
1302
1312
|
eventName?: string;
|
|
1303
1313
|
eventValue?: any;
|
|
1304
1314
|
impersonating?: boolean;
|
|
1305
|
-
isImpersonating?: boolean;
|
|
1306
|
-
isSuperAdmin?: boolean;
|
|
1307
|
-
isToken?: boolean;
|
|
1308
1315
|
superAdmin?: boolean;
|
|
1309
1316
|
timestamp?: string;
|
|
1310
1317
|
token?: boolean;
|
|
@@ -1520,6 +1527,16 @@ export interface SignUpUser {
|
|
|
1520
1527
|
userId?: string;
|
|
1521
1528
|
}
|
|
1522
1529
|
|
|
1530
|
+
export interface StartCeliosStream {
|
|
1531
|
+
target?: string;
|
|
1532
|
+
type?: GrpcStreamType;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
export interface StopCeliosStream {
|
|
1536
|
+
target?: string;
|
|
1537
|
+
type?: GrpcStreamType;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1523
1540
|
export interface StopImpersonatingUser {
|
|
1524
1541
|
}
|
|
1525
1542
|
|
|
@@ -1703,6 +1720,8 @@ export type EntityType = "ride" | "rideseries";
|
|
|
1703
1720
|
|
|
1704
1721
|
export type GeometryUnion = GeoPolygon | GeoMultiPolygon;
|
|
1705
1722
|
|
|
1723
|
+
export type GrpcStreamType = "get_einsatz_events";
|
|
1724
|
+
|
|
1706
1725
|
export type InsuranceType = "public_insurance" | "private_insurance" | "german_accident_insurance" | "no_or_unknown_insurance";
|
|
1707
1726
|
|
|
1708
1727
|
export type IntegrationType = "dispolive" | "celios";
|
package/package.json
CHANGED