@moxi.gmbh/moxi-typescriptmodels 0.0.401 → 0.0.421
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 +6 -3
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -629,8 +629,11 @@ export interface RideInfo {
|
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
export interface RideLog {
|
|
632
|
-
allowedViewers?:
|
|
633
|
-
|
|
632
|
+
allowedViewers?: AccountOrTeamId[];
|
|
633
|
+
eventDescription?: any;
|
|
634
|
+
eventId?: any;
|
|
635
|
+
impersonator?: string;
|
|
636
|
+
userId?: string;
|
|
634
637
|
}
|
|
635
638
|
|
|
636
639
|
export interface RideOfferInfo {
|
|
@@ -670,7 +673,7 @@ export interface SendEmail {
|
|
|
670
673
|
}
|
|
671
674
|
|
|
672
675
|
export interface SendInvitationEmail {
|
|
673
|
-
|
|
676
|
+
accountIdOfInvite?: string;
|
|
674
677
|
userId?: string;
|
|
675
678
|
}
|
|
676
679
|
|
package/package.json
CHANGED