@dynamic-labs/sdk-api 0.0.364 → 0.0.366

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.364",
3
+ "version": "0.0.366",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -24,6 +24,7 @@ exports.AccessOutcomeEnum = void 0;
24
24
  (function (AccessOutcomeEnum) {
25
25
  AccessOutcomeEnum["Scope"] = "scope";
26
26
  AccessOutcomeEnum["SiteAccess"] = "siteAccess";
27
+ AccessOutcomeEnum["Block"] = "block";
27
28
  })(exports.AccessOutcomeEnum || (exports.AccessOutcomeEnum = {}));
28
29
  function AccessOutcomeEnumFromJSON(json) {
29
30
  return AccessOutcomeEnumFromJSONTyped(json);
@@ -16,7 +16,8 @@
16
16
  */
17
17
  export declare enum AccessOutcomeEnum {
18
18
  Scope = "scope",
19
- SiteAccess = "siteAccess"
19
+ SiteAccess = "siteAccess",
20
+ Block = "block"
20
21
  }
21
22
  export declare function AccessOutcomeEnumFromJSON(json: any): AccessOutcomeEnum;
22
23
  export declare function AccessOutcomeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessOutcomeEnum;
@@ -20,6 +20,7 @@ var AccessOutcomeEnum;
20
20
  (function (AccessOutcomeEnum) {
21
21
  AccessOutcomeEnum["Scope"] = "scope";
22
22
  AccessOutcomeEnum["SiteAccess"] = "siteAccess";
23
+ AccessOutcomeEnum["Block"] = "block";
23
24
  })(AccessOutcomeEnum || (AccessOutcomeEnum = {}));
24
25
  function AccessOutcomeEnumFromJSON(json) {
25
26
  return AccessOutcomeEnumFromJSONTyped(json);
@@ -16,6 +16,7 @@ function SupportedSecurityMethodsFromJSONTyped(json, ignoreDiscriminator) {
16
16
  return {
17
17
  'passkey': !runtime.exists(json, 'passkey') ? undefined : SupportedSecurityMethod.SupportedSecurityMethodFromJSON(json['passkey']),
18
18
  'email': !runtime.exists(json, 'email') ? undefined : SupportedSecurityMethod.SupportedSecurityMethodFromJSON(json['email']),
19
+ 'password': !runtime.exists(json, 'password') ? undefined : SupportedSecurityMethod.SupportedSecurityMethodFromJSON(json['password']),
19
20
  };
20
21
  }
21
22
  function SupportedSecurityMethodsToJSON(value) {
@@ -28,6 +29,7 @@ function SupportedSecurityMethodsToJSON(value) {
28
29
  return {
29
30
  'passkey': SupportedSecurityMethod.SupportedSecurityMethodToJSON(value.passkey),
30
31
  'email': SupportedSecurityMethod.SupportedSecurityMethodToJSON(value.email),
32
+ 'password': SupportedSecurityMethod.SupportedSecurityMethodToJSON(value.password),
31
33
  };
32
34
  }
33
35
 
@@ -28,6 +28,12 @@ export interface SupportedSecurityMethods {
28
28
  * @memberof SupportedSecurityMethods
29
29
  */
30
30
  email?: SupportedSecurityMethod;
31
+ /**
32
+ *
33
+ * @type {SupportedSecurityMethod}
34
+ * @memberof SupportedSecurityMethods
35
+ */
36
+ password?: SupportedSecurityMethod;
31
37
  }
32
38
  export declare function SupportedSecurityMethodsFromJSON(json: any): SupportedSecurityMethods;
33
39
  export declare function SupportedSecurityMethodsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupportedSecurityMethods;
@@ -12,6 +12,7 @@ function SupportedSecurityMethodsFromJSONTyped(json, ignoreDiscriminator) {
12
12
  return {
13
13
  'passkey': !exists(json, 'passkey') ? undefined : SupportedSecurityMethodFromJSON(json['passkey']),
14
14
  'email': !exists(json, 'email') ? undefined : SupportedSecurityMethodFromJSON(json['email']),
15
+ 'password': !exists(json, 'password') ? undefined : SupportedSecurityMethodFromJSON(json['password']),
15
16
  };
16
17
  }
17
18
  function SupportedSecurityMethodsToJSON(value) {
@@ -24,6 +25,7 @@ function SupportedSecurityMethodsToJSON(value) {
24
25
  return {
25
26
  'passkey': SupportedSecurityMethodToJSON(value.passkey),
26
27
  'email': SupportedSecurityMethodToJSON(value.email),
28
+ 'password': SupportedSecurityMethodToJSON(value.password),
27
29
  };
28
30
  }
29
31