@moxi.gmbh/moxi-typescriptmodels 0.1.2421-test-server → 0.1.2441-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 +8 -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
|
}
|
|
@@ -1447,6 +1437,11 @@ export interface SendInvitationEmail {
|
|
|
1447
1437
|
userId?: string;
|
|
1448
1438
|
}
|
|
1449
1439
|
|
|
1440
|
+
export interface SendKChat {
|
|
1441
|
+
channel?: KChatChannel;
|
|
1442
|
+
message?: string;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1450
1445
|
export interface SendSlack {
|
|
1451
1446
|
channel?: SlackChannel;
|
|
1452
1447
|
message?: string;
|
|
@@ -1530,16 +1525,6 @@ export interface SignUpUser {
|
|
|
1530
1525
|
userId?: string;
|
|
1531
1526
|
}
|
|
1532
1527
|
|
|
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
1528
|
export interface StopImpersonatingUser {
|
|
1544
1529
|
}
|
|
1545
1530
|
|
|
@@ -1723,12 +1708,12 @@ export type EntityType = "ride" | "rideseries";
|
|
|
1723
1708
|
|
|
1724
1709
|
export type GeometryUnion = GeoPolygon | GeoMultiPolygon;
|
|
1725
1710
|
|
|
1726
|
-
export type GrpcStreamType = "get_einsatz_events";
|
|
1727
|
-
|
|
1728
1711
|
export type InsuranceType = "public_insurance" | "private_insurance" | "german_accident_insurance" | "no_or_unknown_insurance";
|
|
1729
1712
|
|
|
1730
1713
|
export type IntegrationType = "dispolive" | "celios";
|
|
1731
1714
|
|
|
1715
|
+
export type KChatChannel = "ride_notifications" | "urgent_issues" | "account_tasks" | "customer_issues";
|
|
1716
|
+
|
|
1732
1717
|
export type Mobility = "wheelchair" | "big_or_electric_wheelchair" | "carry_chair" | "stretcher";
|
|
1733
1718
|
|
|
1734
1719
|
export type OrganisationType = "medical" | "fleet" | "operator";
|
package/package.json
CHANGED