@moxi.gmbh/moxi-typescriptmodels 0.1.2981-test-server → 0.1.2991-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-with-namespaces.d.ts +43 -1
- package/common.d.ts +23 -1
- package/package.json +1 -1
|
@@ -807,6 +807,15 @@ export namespace com.moxi.api.geojson.common.GeoJson {
|
|
|
807
807
|
|
|
808
808
|
}
|
|
809
809
|
|
|
810
|
+
export namespace com.moxi.api.grpc {
|
|
811
|
+
|
|
812
|
+
export interface CeliosStreamPulse {
|
|
813
|
+
target?: string;
|
|
814
|
+
type?: com.moxi.api.grpc.common.GrpcStreamType;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
}
|
|
818
|
+
|
|
810
819
|
export namespace com.moxi.api.grpc {
|
|
811
820
|
|
|
812
821
|
export interface RegisterEinsatz {
|
|
@@ -816,6 +825,33 @@ export namespace com.moxi.api.grpc {
|
|
|
816
825
|
|
|
817
826
|
}
|
|
818
827
|
|
|
828
|
+
export namespace com.moxi.api.grpc {
|
|
829
|
+
|
|
830
|
+
export interface StartCeliosStream {
|
|
831
|
+
target?: string;
|
|
832
|
+
type?: com.moxi.api.grpc.common.GrpcStreamType;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
export namespace com.moxi.api.grpc {
|
|
838
|
+
|
|
839
|
+
export interface StopCeliosStream {
|
|
840
|
+
target?: string;
|
|
841
|
+
type?: com.moxi.api.grpc.common.GrpcStreamType;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
export namespace com.moxi.api.grpc.common {
|
|
847
|
+
|
|
848
|
+
export interface GrpcStreamId {
|
|
849
|
+
target?: string;
|
|
850
|
+
type?: com.moxi.api.grpc.common.GrpcStreamType;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
}
|
|
854
|
+
|
|
819
855
|
export namespace com.moxi.api.integrations {
|
|
820
856
|
|
|
821
857
|
export interface RemoveSettings extends com.moxi.api.account.AccountUpdate {
|
|
@@ -1521,7 +1557,7 @@ export namespace com.moxi.api.ride {
|
|
|
1521
1557
|
|
|
1522
1558
|
export namespace com.moxi.api.ride {
|
|
1523
1559
|
|
|
1524
|
-
export interface CancelRide extends com.moxi.api.ride.
|
|
1560
|
+
export interface CancelRide extends com.moxi.api.ride.RideCommand {
|
|
1525
1561
|
reason?: string;
|
|
1526
1562
|
}
|
|
1527
1563
|
|
|
@@ -3034,6 +3070,12 @@ export namespace com.moxi.api.geojson.common.GeoJson {
|
|
|
3034
3070
|
|
|
3035
3071
|
}
|
|
3036
3072
|
|
|
3073
|
+
export namespace com.moxi.api.grpc.common {
|
|
3074
|
+
|
|
3075
|
+
export type GrpcStreamType = "get_einsatz_events";
|
|
3076
|
+
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3037
3079
|
export namespace com.moxi.api.integrations.common {
|
|
3038
3080
|
|
|
3039
3081
|
export type IntegrationType = "dispolive" | "celios";
|
package/common.d.ts
CHANGED
|
@@ -243,7 +243,7 @@ export interface BookRideSeries extends CreateSeriesCommand {
|
|
|
243
243
|
rideSummaries?: RideSummary[];
|
|
244
244
|
}
|
|
245
245
|
|
|
246
|
-
export interface CancelRide extends
|
|
246
|
+
export interface CancelRide extends RideCommand {
|
|
247
247
|
reason?: string;
|
|
248
248
|
}
|
|
249
249
|
|
|
@@ -265,6 +265,11 @@ export interface CeliosSettings {
|
|
|
265
265
|
user?: string;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
+
export interface CeliosStreamPulse {
|
|
269
|
+
target?: string;
|
|
270
|
+
type?: GrpcStreamType;
|
|
271
|
+
}
|
|
272
|
+
|
|
268
273
|
export interface ChangeUserPassword {
|
|
269
274
|
newPassword?: string;
|
|
270
275
|
oldPassword?: string;
|
|
@@ -811,6 +816,11 @@ export interface GiveTeamPermission extends AccountPermissionCommand {
|
|
|
811
816
|
teamPermission?: TeamPermission;
|
|
812
817
|
}
|
|
813
818
|
|
|
819
|
+
export interface GrpcStreamId {
|
|
820
|
+
target?: string;
|
|
821
|
+
type?: GrpcStreamType;
|
|
822
|
+
}
|
|
823
|
+
|
|
814
824
|
export interface HalfHourBeforeStart {
|
|
815
825
|
rideId?: string;
|
|
816
826
|
}
|
|
@@ -1578,6 +1588,16 @@ export interface SignedInUser {
|
|
|
1578
1588
|
userId?: string;
|
|
1579
1589
|
}
|
|
1580
1590
|
|
|
1591
|
+
export interface StartCeliosStream {
|
|
1592
|
+
target?: string;
|
|
1593
|
+
type?: GrpcStreamType;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
export interface StopCeliosStream {
|
|
1597
|
+
target?: string;
|
|
1598
|
+
type?: GrpcStreamType;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1581
1601
|
export interface StopImpersonatingUser {
|
|
1582
1602
|
}
|
|
1583
1603
|
|
|
@@ -1789,6 +1809,8 @@ export type EntityType = "ride" | "rideseries";
|
|
|
1789
1809
|
|
|
1790
1810
|
export type GeometryUnion = GeoPolygon | GeoMultiPolygon;
|
|
1791
1811
|
|
|
1812
|
+
export type GrpcStreamType = "get_einsatz_events";
|
|
1813
|
+
|
|
1792
1814
|
export type InsuranceType = "public_insurance" | "private_insurance" | "german_accident_insurance" | "no_or_unknown_insurance";
|
|
1793
1815
|
|
|
1794
1816
|
export type IntegrationType = "dispolive" | "celios";
|
package/package.json
CHANGED