@moxi.gmbh/moxi-typescriptmodels 0.0.1761 → 0.0.1771
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 +9 -0
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -3,6 +3,10 @@ export interface AcceptDrive extends FleetCommand {
|
|
|
3
3
|
driveOwner?: AccountOrTeamRef;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
export interface AcceptInviteUser extends UserUpdateAfterSignup {
|
|
7
|
+
accountId?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
6
10
|
export interface AcceptUserAgreement extends UserEdit {
|
|
7
11
|
agreementId?: string;
|
|
8
12
|
}
|
|
@@ -681,6 +685,10 @@ export interface RegisterDriveStatus extends FleetModifyCommand {
|
|
|
681
685
|
export interface RegisterDriverSynced extends FleetModifyCommand {
|
|
682
686
|
}
|
|
683
687
|
|
|
688
|
+
export interface RejectInviteUser extends UserUpdateAfterSignup {
|
|
689
|
+
accountId?: string;
|
|
690
|
+
}
|
|
691
|
+
|
|
684
692
|
export interface RemoveAccount extends AccountUpdate {
|
|
685
693
|
}
|
|
686
694
|
|
|
@@ -1078,6 +1086,7 @@ export interface UserProfile {
|
|
|
1078
1086
|
email?: string;
|
|
1079
1087
|
emailConfirmed?: boolean;
|
|
1080
1088
|
info?: UserInfo;
|
|
1089
|
+
pendingInvites?: Invite[];
|
|
1081
1090
|
userId?: string;
|
|
1082
1091
|
userRole?: UserRole;
|
|
1083
1092
|
}
|
package/package.json
CHANGED