@moxi.gmbh/moxi-typescriptmodels 0.1.91 → 0.1.111
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 +10 -4
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -850,13 +850,19 @@ export interface RideInfo {
|
|
|
850
850
|
}
|
|
851
851
|
|
|
852
852
|
export interface RideLog {
|
|
853
|
-
|
|
853
|
+
actingFor?: AccountOrTeamRef;
|
|
854
|
+
allowedViewers?: AccountOrTeamRef[];
|
|
854
855
|
eventDescription?: string;
|
|
855
856
|
eventId?: string;
|
|
856
|
-
|
|
857
|
+
eventName?: string;
|
|
858
|
+
eventValue?: any;
|
|
859
|
+
impersonating?: boolean;
|
|
860
|
+
isImpersonating?: boolean;
|
|
861
|
+
isSuperAdmin?: boolean;
|
|
862
|
+
isToken?: boolean;
|
|
863
|
+
superAdmin?: boolean;
|
|
857
864
|
timestamp?: string;
|
|
858
|
-
|
|
859
|
-
userId?: string;
|
|
865
|
+
token?: boolean;
|
|
860
866
|
}
|
|
861
867
|
|
|
862
868
|
export interface RideOfferInfo {
|
package/package.json
CHANGED