@dynamic-labs/sdk-api-core 0.0.698 → 0.0.700

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-core",
3
- "version": "0.0.698",
3
+ "version": "0.0.700",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -24,6 +24,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
24
24
  }
25
25
  return {
26
26
  'connectOnlyMultiAsset': json['connectOnlyMultiAsset'],
27
+ 'enableExchanges': json['enableExchanges'],
27
28
  };
28
29
  }
29
30
  function FeatureFlagsToJSON(value) {
@@ -35,6 +36,7 @@ function FeatureFlagsToJSON(value) {
35
36
  }
36
37
  return {
37
38
  'connectOnlyMultiAsset': value.connectOnlyMultiAsset,
39
+ 'enableExchanges': value.enableExchanges,
38
40
  };
39
41
  }
40
42
 
@@ -21,6 +21,12 @@ export interface FeatureFlags {
21
21
  * @memberof FeatureFlags
22
22
  */
23
23
  connectOnlyMultiAsset: boolean;
24
+ /**
25
+ *
26
+ * @type {boolean}
27
+ * @memberof FeatureFlags
28
+ */
29
+ enableExchanges: boolean;
24
30
  }
25
31
  export declare function FeatureFlagsFromJSON(json: any): FeatureFlags;
26
32
  export declare function FeatureFlagsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureFlags;
@@ -20,6 +20,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
20
20
  }
21
21
  return {
22
22
  'connectOnlyMultiAsset': json['connectOnlyMultiAsset'],
23
+ 'enableExchanges': json['enableExchanges'],
23
24
  };
24
25
  }
25
26
  function FeatureFlagsToJSON(value) {
@@ -31,6 +32,7 @@ function FeatureFlagsToJSON(value) {
31
32
  }
32
33
  return {
33
34
  'connectOnlyMultiAsset': value.connectOnlyMultiAsset,
35
+ 'enableExchanges': value.enableExchanges,
34
36
  };
35
37
  }
36
38
 
@@ -6,6 +6,7 @@ var runtime = require('../runtime.cjs');
6
6
  var AuthenticationExtensionsClientOutputs = require('./AuthenticationExtensionsClientOutputs.cjs');
7
7
  var AuthenticatorAssertionResponse = require('./AuthenticatorAssertionResponse.cjs');
8
8
  var AuthenticatorAttachment = require('./AuthenticatorAttachment.cjs');
9
+ var CreateMfaToken = require('./CreateMfaToken.cjs');
9
10
  var PublicKeyCredentialType = require('./PublicKeyCredentialType.cjs');
10
11
 
11
12
  /* tslint:disable */
@@ -23,6 +24,7 @@ function PasskeyAuthRequestFromJSONTyped(json, ignoreDiscriminator) {
23
24
  'authenticatorAttachment': !runtime.exists(json, 'authenticatorAttachment') ? undefined : AuthenticatorAttachment.AuthenticatorAttachmentFromJSON(json['authenticatorAttachment']),
24
25
  'clientExtensionResults': AuthenticationExtensionsClientOutputs.AuthenticationExtensionsClientOutputsFromJSON(json['clientExtensionResults']),
25
26
  'type': PublicKeyCredentialType.PublicKeyCredentialTypeFromJSON(json['type']),
27
+ 'createMfaToken': !runtime.exists(json, 'createMfaToken') ? undefined : CreateMfaToken.CreateMfaTokenFromJSON(json['createMfaToken']),
26
28
  };
27
29
  }
28
30
  function PasskeyAuthRequestToJSON(value) {
@@ -39,6 +41,7 @@ function PasskeyAuthRequestToJSON(value) {
39
41
  'authenticatorAttachment': AuthenticatorAttachment.AuthenticatorAttachmentToJSON(value.authenticatorAttachment),
40
42
  'clientExtensionResults': AuthenticationExtensionsClientOutputs.AuthenticationExtensionsClientOutputsToJSON(value.clientExtensionResults),
41
43
  'type': PublicKeyCredentialType.PublicKeyCredentialTypeToJSON(value.type),
44
+ 'createMfaToken': CreateMfaToken.CreateMfaTokenToJSON(value.createMfaToken),
42
45
  };
43
46
  }
44
47
 
@@ -12,6 +12,7 @@
12
12
  import { AuthenticationExtensionsClientOutputs } from './AuthenticationExtensionsClientOutputs';
13
13
  import { AuthenticatorAssertionResponse } from './AuthenticatorAssertionResponse';
14
14
  import { AuthenticatorAttachment } from './AuthenticatorAttachment';
15
+ import { CreateMfaToken } from './CreateMfaToken';
15
16
  import { PublicKeyCredentialType } from './PublicKeyCredentialType';
16
17
  /**
17
18
  *
@@ -55,6 +56,12 @@ export interface PasskeyAuthRequest {
55
56
  * @memberof PasskeyAuthRequest
56
57
  */
57
58
  type: PublicKeyCredentialType;
59
+ /**
60
+ *
61
+ * @type {CreateMfaToken}
62
+ * @memberof PasskeyAuthRequest
63
+ */
64
+ createMfaToken?: CreateMfaToken;
58
65
  }
59
66
  export declare function PasskeyAuthRequestFromJSON(json: any): PasskeyAuthRequest;
60
67
  export declare function PasskeyAuthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyAuthRequest;
@@ -2,6 +2,7 @@ import { exists } from '../runtime.js';
2
2
  import { AuthenticationExtensionsClientOutputsFromJSON, AuthenticationExtensionsClientOutputsToJSON } from './AuthenticationExtensionsClientOutputs.js';
3
3
  import { AuthenticatorAssertionResponseFromJSON, AuthenticatorAssertionResponseToJSON } from './AuthenticatorAssertionResponse.js';
4
4
  import { AuthenticatorAttachmentFromJSON, AuthenticatorAttachmentToJSON } from './AuthenticatorAttachment.js';
5
+ import { CreateMfaTokenFromJSON, CreateMfaTokenToJSON } from './CreateMfaToken.js';
5
6
  import { PublicKeyCredentialTypeFromJSON, PublicKeyCredentialTypeToJSON } from './PublicKeyCredentialType.js';
6
7
 
7
8
  /* tslint:disable */
@@ -19,6 +20,7 @@ function PasskeyAuthRequestFromJSONTyped(json, ignoreDiscriminator) {
19
20
  'authenticatorAttachment': !exists(json, 'authenticatorAttachment') ? undefined : AuthenticatorAttachmentFromJSON(json['authenticatorAttachment']),
20
21
  'clientExtensionResults': AuthenticationExtensionsClientOutputsFromJSON(json['clientExtensionResults']),
21
22
  'type': PublicKeyCredentialTypeFromJSON(json['type']),
23
+ 'createMfaToken': !exists(json, 'createMfaToken') ? undefined : CreateMfaTokenFromJSON(json['createMfaToken']),
22
24
  };
23
25
  }
24
26
  function PasskeyAuthRequestToJSON(value) {
@@ -35,6 +37,7 @@ function PasskeyAuthRequestToJSON(value) {
35
37
  'authenticatorAttachment': AuthenticatorAttachmentToJSON(value.authenticatorAttachment),
36
38
  'clientExtensionResults': AuthenticationExtensionsClientOutputsToJSON(value.clientExtensionResults),
37
39
  'type': PublicKeyCredentialTypeToJSON(value.type),
40
+ 'createMfaToken': CreateMfaTokenToJSON(value.createMfaToken),
38
41
  };
39
42
  }
40
43