@moxi.gmbh/moxi-typescriptmodels 0.0.411 → 0.0.431
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 +16 -5
- package/package.json +1 -1
package/common.d.ts
CHANGED
|
@@ -151,6 +151,17 @@ export interface ChangeUserPassword {
|
|
|
151
151
|
export interface ConfirmAccount extends AccountCommand {
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
+
export interface ConfirmDrivePermission extends AccountUpdate {
|
|
155
|
+
drivePermissionId?: any;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface ConfirmEverythingInAccount extends AccountCommand {
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface ConfirmSubscription extends AccountUpdate {
|
|
162
|
+
subscriptionId?: any;
|
|
163
|
+
}
|
|
164
|
+
|
|
154
165
|
export interface ConfirmUser {
|
|
155
166
|
token?: any;
|
|
156
167
|
userId?: string;
|
|
@@ -408,6 +419,10 @@ export interface GiveSubscription extends AccountUpdate {
|
|
|
408
419
|
subscriptionId?: any;
|
|
409
420
|
}
|
|
410
421
|
|
|
422
|
+
export interface GiveTeamPermission extends AccountPermissionCommand {
|
|
423
|
+
teamPermission?: TeamPermission;
|
|
424
|
+
}
|
|
425
|
+
|
|
411
426
|
export interface ImpersonateUser {
|
|
412
427
|
userId?: string;
|
|
413
428
|
}
|
|
@@ -673,7 +688,7 @@ export interface SendEmail {
|
|
|
673
688
|
}
|
|
674
689
|
|
|
675
690
|
export interface SendInvitationEmail {
|
|
676
|
-
|
|
691
|
+
accountIdOfInvite?: string;
|
|
677
692
|
userId?: string;
|
|
678
693
|
}
|
|
679
694
|
|
|
@@ -810,10 +825,6 @@ export interface UpsertInsurer {
|
|
|
810
825
|
insurerId?: InsurerId;
|
|
811
826
|
}
|
|
812
827
|
|
|
813
|
-
export interface UpsertTeamPermission extends AccountPermissionCommand {
|
|
814
|
-
teamPermission?: TeamPermission;
|
|
815
|
-
}
|
|
816
|
-
|
|
817
828
|
export interface UserCommand {
|
|
818
829
|
userId?: string;
|
|
819
830
|
}
|
package/package.json
CHANGED