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