@dynamic-labs/sdk-api 0.0.960 → 0.0.961

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.960",
3
+ "version": "0.0.961",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -98,7 +98,7 @@ export interface AdminActionRequest {
98
98
  */
99
99
  previousState?: object | null;
100
100
  /**
101
- * What to apply when approved. Shape varies by actionType — for settings_change includes fullSettingsSnapshot, for reset_user_mfa includes userId and resetAll flag.
101
+ * What to apply when approved. Shape varies by actionType — for settings_change includes fullSettingsSnapshot, for reset_user_mfa includes userId and resetAll flag, for delete_user includes userId and email.
102
102
  * @type {object}
103
103
  * @memberof AdminActionRequest
104
104
  */
@@ -24,6 +24,7 @@ exports.AdminActionType = void 0;
24
24
  (function (AdminActionType) {
25
25
  AdminActionType["SettingsChange"] = "settings_change";
26
26
  AdminActionType["ResetUserMfa"] = "reset_user_mfa";
27
+ AdminActionType["DeleteUser"] = "delete_user";
27
28
  })(exports.AdminActionType || (exports.AdminActionType = {}));
28
29
  function AdminActionTypeFromJSON(json) {
29
30
  return AdminActionTypeFromJSONTyped(json);
@@ -16,7 +16,8 @@
16
16
  */
17
17
  export declare enum AdminActionType {
18
18
  SettingsChange = "settings_change",
19
- ResetUserMfa = "reset_user_mfa"
19
+ ResetUserMfa = "reset_user_mfa",
20
+ DeleteUser = "delete_user"
20
21
  }
21
22
  export declare function AdminActionTypeFromJSON(json: any): AdminActionType;
22
23
  export declare function AdminActionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminActionType;
@@ -20,6 +20,7 @@ var AdminActionType;
20
20
  (function (AdminActionType) {
21
21
  AdminActionType["SettingsChange"] = "settings_change";
22
22
  AdminActionType["ResetUserMfa"] = "reset_user_mfa";
23
+ AdminActionType["DeleteUser"] = "delete_user";
23
24
  })(AdminActionType || (AdminActionType = {}));
24
25
  function AdminActionTypeFromJSON(json) {
25
26
  return AdminActionTypeFromJSONTyped(json);