@dynamic-labs/sdk-api 0.0.346 → 0.0.348

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.
Files changed (76) hide show
  1. package/package.json +1 -1
  2. package/src/apis/AllowlistsApi.cjs +1 -0
  3. package/src/apis/AllowlistsApi.js +1 -0
  4. package/src/apis/AnalyticsApi.cjs +1 -0
  5. package/src/apis/AnalyticsApi.js +1 -0
  6. package/src/apis/ChainalysisApi.cjs +1 -0
  7. package/src/apis/ChainalysisApi.js +1 -0
  8. package/src/apis/ChainsApi.cjs +1 -0
  9. package/src/apis/ChainsApi.js +1 -0
  10. package/src/apis/EnvironmentsApi.cjs +1 -0
  11. package/src/apis/EnvironmentsApi.js +1 -0
  12. package/src/apis/EventsApi.cjs +1 -0
  13. package/src/apis/EventsApi.js +1 -0
  14. package/src/apis/ExportsApi.cjs +1 -0
  15. package/src/apis/ExportsApi.js +1 -0
  16. package/src/apis/GatesApi.cjs +1 -0
  17. package/src/apis/GatesApi.js +1 -0
  18. package/src/apis/InvitesApi.cjs +1 -0
  19. package/src/apis/InvitesApi.js +1 -0
  20. package/src/apis/MembersApi.cjs +1 -0
  21. package/src/apis/MembersApi.js +1 -0
  22. package/src/apis/OrganizationsApi.cjs +1 -0
  23. package/src/apis/OrganizationsApi.js +1 -0
  24. package/src/apis/OriginsApi.cjs +1 -0
  25. package/src/apis/OriginsApi.js +1 -0
  26. package/src/apis/ProjectsApi.cjs +1 -0
  27. package/src/apis/ProjectsApi.js +1 -0
  28. package/src/apis/SDKApi.cjs +1 -0
  29. package/src/apis/SDKApi.js +1 -0
  30. package/src/apis/SDKViewsApi.cjs +1 -0
  31. package/src/apis/SDKViewsApi.js +1 -0
  32. package/src/apis/SessionsApi.cjs +1 -0
  33. package/src/apis/SessionsApi.js +1 -0
  34. package/src/apis/SettingsApi.cjs +1 -0
  35. package/src/apis/SettingsApi.js +1 -0
  36. package/src/apis/TokensApi.cjs +1 -0
  37. package/src/apis/TokensApi.js +1 -0
  38. package/src/apis/UsersApi.cjs +1 -0
  39. package/src/apis/UsersApi.js +1 -0
  40. package/src/apis/VisitsApi.cjs +1 -0
  41. package/src/apis/VisitsApi.js +1 -0
  42. package/src/apis/WalletsApi.cjs +1 -0
  43. package/src/apis/WalletsApi.js +1 -0
  44. package/src/apis/WebhooksApi.cjs +1 -0
  45. package/src/apis/WebhooksApi.js +1 -0
  46. package/src/index.cjs +24 -0
  47. package/src/index.js +5 -0
  48. package/src/models/CreateWalletRequest.cjs +4 -0
  49. package/src/models/CreateWalletRequest.d.ts +7 -0
  50. package/src/models/CreateWalletRequest.js +4 -0
  51. package/src/models/FrameworkSettings.cjs +37 -0
  52. package/src/models/FrameworkSettings.d.ts +35 -0
  53. package/src/models/FrameworkSettings.js +31 -0
  54. package/src/models/JwtVerifiedCredential.cjs +3 -0
  55. package/src/models/JwtVerifiedCredential.d.ts +7 -0
  56. package/src/models/JwtVerifiedCredential.js +3 -0
  57. package/src/models/NextJsSettings.cjs +33 -0
  58. package/src/models/NextJsSettings.d.ts +27 -0
  59. package/src/models/NextJsSettings.js +27 -0
  60. package/src/models/NextSettings.d.ts +27 -0
  61. package/src/models/ReactSettings.cjs +33 -0
  62. package/src/models/ReactSettings.d.ts +27 -0
  63. package/src/models/ReactSettings.js +27 -0
  64. package/src/models/SdkSettingsRequest.cjs +3 -0
  65. package/src/models/SdkSettingsRequest.d.ts +7 -0
  66. package/src/models/SdkSettingsRequest.js +3 -0
  67. package/src/models/VerifyRequest.cjs +3 -0
  68. package/src/models/VerifyRequest.d.ts +7 -0
  69. package/src/models/VerifyRequest.js +3 -0
  70. package/src/models/WalletAdditionalAddress.cjs +38 -0
  71. package/src/models/WalletAdditionalAddress.d.ts +40 -0
  72. package/src/models/WalletAdditionalAddress.js +32 -0
  73. package/src/models/WalletAddressType.cjs +40 -0
  74. package/src/models/WalletAddressType.d.ts +23 -0
  75. package/src/models/WalletAddressType.js +34 -0
  76. package/src/models/index.d.ts +5 -0
@@ -0,0 +1,37 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+ var NextJsSettings = require('./NextJsSettings.cjs');
7
+ var ReactSettings = require('./ReactSettings.cjs');
8
+
9
+ /* tslint:disable */
10
+ function FrameworkSettingsFromJSON(json) {
11
+ return FrameworkSettingsFromJSONTyped(json);
12
+ }
13
+ function FrameworkSettingsFromJSONTyped(json, ignoreDiscriminator) {
14
+ if ((json === undefined) || (json === null)) {
15
+ return json;
16
+ }
17
+ return {
18
+ 'react': !runtime.exists(json, 'react') ? undefined : ReactSettings.ReactSettingsFromJSON(json['react']),
19
+ 'nextjs': !runtime.exists(json, 'nextjs') ? undefined : NextJsSettings.NextJsSettingsFromJSON(json['nextjs']),
20
+ };
21
+ }
22
+ function FrameworkSettingsToJSON(value) {
23
+ if (value === undefined) {
24
+ return undefined;
25
+ }
26
+ if (value === null) {
27
+ return null;
28
+ }
29
+ return {
30
+ 'react': ReactSettings.ReactSettingsToJSON(value.react),
31
+ 'nextjs': NextJsSettings.NextJsSettingsToJSON(value.nextjs),
32
+ };
33
+ }
34
+
35
+ exports.FrameworkSettingsFromJSON = FrameworkSettingsFromJSON;
36
+ exports.FrameworkSettingsFromJSONTyped = FrameworkSettingsFromJSONTyped;
37
+ exports.FrameworkSettingsToJSON = FrameworkSettingsToJSON;
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { NextJsSettings } from './NextJsSettings';
13
+ import { ReactSettings } from './ReactSettings';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface FrameworkSettings
18
+ */
19
+ export interface FrameworkSettings {
20
+ /**
21
+ *
22
+ * @type {ReactSettings}
23
+ * @memberof FrameworkSettings
24
+ */
25
+ react?: ReactSettings;
26
+ /**
27
+ *
28
+ * @type {NextJsSettings}
29
+ * @memberof FrameworkSettings
30
+ */
31
+ nextjs?: NextJsSettings;
32
+ }
33
+ export declare function FrameworkSettingsFromJSON(json: any): FrameworkSettings;
34
+ export declare function FrameworkSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FrameworkSettings;
35
+ export declare function FrameworkSettingsToJSON(value?: FrameworkSettings | null): any;
@@ -0,0 +1,31 @@
1
+ import { exists } from '../runtime.js';
2
+ import { NextJsSettingsFromJSON, NextJsSettingsToJSON } from './NextJsSettings.js';
3
+ import { ReactSettingsFromJSON, ReactSettingsToJSON } from './ReactSettings.js';
4
+
5
+ /* tslint:disable */
6
+ function FrameworkSettingsFromJSON(json) {
7
+ return FrameworkSettingsFromJSONTyped(json);
8
+ }
9
+ function FrameworkSettingsFromJSONTyped(json, ignoreDiscriminator) {
10
+ if ((json === undefined) || (json === null)) {
11
+ return json;
12
+ }
13
+ return {
14
+ 'react': !exists(json, 'react') ? undefined : ReactSettingsFromJSON(json['react']),
15
+ 'nextjs': !exists(json, 'nextjs') ? undefined : NextJsSettingsFromJSON(json['nextjs']),
16
+ };
17
+ }
18
+ function FrameworkSettingsToJSON(value) {
19
+ if (value === undefined) {
20
+ return undefined;
21
+ }
22
+ if (value === null) {
23
+ return null;
24
+ }
25
+ return {
26
+ 'react': ReactSettingsToJSON(value.react),
27
+ 'nextjs': NextJsSettingsToJSON(value.nextjs),
28
+ };
29
+ }
30
+
31
+ export { FrameworkSettingsFromJSON, FrameworkSettingsFromJSONTyped, FrameworkSettingsToJSON };
@@ -6,6 +6,7 @@ var runtime = require('../runtime.cjs');
6
6
  var JwtVerifiedCredentialFormatEnum = require('./JwtVerifiedCredentialFormatEnum.cjs');
7
7
  var NameServiceData = require('./NameServiceData.cjs');
8
8
  var ProviderEnum = require('./ProviderEnum.cjs');
9
+ var WalletAdditionalAddress = require('./WalletAdditionalAddress.cjs');
9
10
  var WalletProperties = require('./WalletProperties.cjs');
10
11
  var WalletProviderEnum = require('./WalletProviderEnum.cjs');
11
12
 
@@ -39,6 +40,7 @@ function JwtVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
39
40
  'oauthMetadata': !runtime.exists(json, 'oauth_metadata') ? undefined : json['oauth_metadata'],
40
41
  'previousUsers': !runtime.exists(json, 'previous_users') ? undefined : json['previous_users'],
41
42
  'embeddedWalletId': !runtime.exists(json, 'embedded_wallet_id') ? undefined : json['embedded_wallet_id'],
43
+ 'walletAdditionalAddresses': !runtime.exists(json, 'wallet_additional_addresses') ? undefined : (json['wallet_additional_addresses'].map(WalletAdditionalAddress.WalletAdditionalAddressFromJSON)),
42
44
  };
43
45
  }
44
46
  function JwtVerifiedCredentialToJSON(value) {
@@ -70,6 +72,7 @@ function JwtVerifiedCredentialToJSON(value) {
70
72
  'oauth_metadata': value.oauthMetadata,
71
73
  'previous_users': value.previousUsers,
72
74
  'embedded_wallet_id': value.embeddedWalletId,
75
+ 'wallet_additional_addresses': value.walletAdditionalAddresses === undefined ? undefined : (value.walletAdditionalAddresses.map(WalletAdditionalAddress.WalletAdditionalAddressToJSON)),
73
76
  };
74
77
  }
75
78
 
@@ -12,6 +12,7 @@
12
12
  import { JwtVerifiedCredentialFormatEnum } from './JwtVerifiedCredentialFormatEnum';
13
13
  import { NameServiceData } from './NameServiceData';
14
14
  import { ProviderEnum } from './ProviderEnum';
15
+ import { WalletAdditionalAddress } from './WalletAdditionalAddress';
15
16
  import { WalletProperties } from './WalletProperties';
16
17
  import { WalletProviderEnum } from './WalletProviderEnum';
17
18
  /**
@@ -146,6 +147,12 @@ export interface JwtVerifiedCredential {
146
147
  * @memberof JwtVerifiedCredential
147
148
  */
148
149
  embeddedWalletId?: string | null;
150
+ /**
151
+ *
152
+ * @type {Array<WalletAdditionalAddress>}
153
+ * @memberof JwtVerifiedCredential
154
+ */
155
+ walletAdditionalAddresses?: Array<WalletAdditionalAddress>;
149
156
  }
150
157
  export declare function JwtVerifiedCredentialFromJSON(json: any): JwtVerifiedCredential;
151
158
  export declare function JwtVerifiedCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): JwtVerifiedCredential;
@@ -2,6 +2,7 @@ import { exists } from '../runtime.js';
2
2
  import { JwtVerifiedCredentialFormatEnumFromJSON, JwtVerifiedCredentialFormatEnumToJSON } from './JwtVerifiedCredentialFormatEnum.js';
3
3
  import { NameServiceDataFromJSON, NameServiceDataToJSON } from './NameServiceData.js';
4
4
  import { ProviderEnumFromJSON, ProviderEnumToJSON } from './ProviderEnum.js';
5
+ import { WalletAdditionalAddressFromJSON, WalletAdditionalAddressToJSON } from './WalletAdditionalAddress.js';
5
6
  import { WalletPropertiesFromJSON, WalletPropertiesToJSON } from './WalletProperties.js';
6
7
  import { WalletProviderEnumFromJSON, WalletProviderEnumToJSON } from './WalletProviderEnum.js';
7
8
 
@@ -35,6 +36,7 @@ function JwtVerifiedCredentialFromJSONTyped(json, ignoreDiscriminator) {
35
36
  'oauthMetadata': !exists(json, 'oauth_metadata') ? undefined : json['oauth_metadata'],
36
37
  'previousUsers': !exists(json, 'previous_users') ? undefined : json['previous_users'],
37
38
  'embeddedWalletId': !exists(json, 'embedded_wallet_id') ? undefined : json['embedded_wallet_id'],
39
+ 'walletAdditionalAddresses': !exists(json, 'wallet_additional_addresses') ? undefined : (json['wallet_additional_addresses'].map(WalletAdditionalAddressFromJSON)),
38
40
  };
39
41
  }
40
42
  function JwtVerifiedCredentialToJSON(value) {
@@ -66,6 +68,7 @@ function JwtVerifiedCredentialToJSON(value) {
66
68
  'oauth_metadata': value.oauthMetadata,
67
69
  'previous_users': value.previousUsers,
68
70
  'embedded_wallet_id': value.embeddedWalletId,
71
+ 'wallet_additional_addresses': value.walletAdditionalAddresses === undefined ? undefined : (value.walletAdditionalAddresses.map(WalletAdditionalAddressToJSON)),
69
72
  };
70
73
  }
71
74
 
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+
7
+ /* tslint:disable */
8
+ function NextJsSettingsFromJSON(json) {
9
+ return NextJsSettingsFromJSONTyped(json);
10
+ }
11
+ function NextJsSettingsFromJSONTyped(json, ignoreDiscriminator) {
12
+ if ((json === undefined) || (json === null)) {
13
+ return json;
14
+ }
15
+ return {
16
+ 'version': !runtime.exists(json, 'version') ? undefined : json['version'],
17
+ };
18
+ }
19
+ function NextJsSettingsToJSON(value) {
20
+ if (value === undefined) {
21
+ return undefined;
22
+ }
23
+ if (value === null) {
24
+ return null;
25
+ }
26
+ return {
27
+ 'version': value.version,
28
+ };
29
+ }
30
+
31
+ exports.NextJsSettingsFromJSON = NextJsSettingsFromJSON;
32
+ exports.NextJsSettingsFromJSONTyped = NextJsSettingsFromJSONTyped;
33
+ exports.NextJsSettingsToJSON = NextJsSettingsToJSON;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface NextJsSettings
16
+ */
17
+ export interface NextJsSettings {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof NextJsSettings
22
+ */
23
+ version?: string;
24
+ }
25
+ export declare function NextJsSettingsFromJSON(json: any): NextJsSettings;
26
+ export declare function NextJsSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): NextJsSettings;
27
+ export declare function NextJsSettingsToJSON(value?: NextJsSettings | null): any;
@@ -0,0 +1,27 @@
1
+ import { exists } from '../runtime.js';
2
+
3
+ /* tslint:disable */
4
+ function NextJsSettingsFromJSON(json) {
5
+ return NextJsSettingsFromJSONTyped(json);
6
+ }
7
+ function NextJsSettingsFromJSONTyped(json, ignoreDiscriminator) {
8
+ if ((json === undefined) || (json === null)) {
9
+ return json;
10
+ }
11
+ return {
12
+ 'version': !exists(json, 'version') ? undefined : json['version'],
13
+ };
14
+ }
15
+ function NextJsSettingsToJSON(value) {
16
+ if (value === undefined) {
17
+ return undefined;
18
+ }
19
+ if (value === null) {
20
+ return null;
21
+ }
22
+ return {
23
+ 'version': value.version,
24
+ };
25
+ }
26
+
27
+ export { NextJsSettingsFromJSON, NextJsSettingsFromJSONTyped, NextJsSettingsToJSON };
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface NextSettings
16
+ */
17
+ export interface NextSettings {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof NextSettings
22
+ */
23
+ version?: string;
24
+ }
25
+ export declare function NextSettingsFromJSON(json: any): NextSettings;
26
+ export declare function NextSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): NextSettings;
27
+ export declare function NextSettingsToJSON(value?: NextSettings | null): any;
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+
7
+ /* tslint:disable */
8
+ function ReactSettingsFromJSON(json) {
9
+ return ReactSettingsFromJSONTyped(json);
10
+ }
11
+ function ReactSettingsFromJSONTyped(json, ignoreDiscriminator) {
12
+ if ((json === undefined) || (json === null)) {
13
+ return json;
14
+ }
15
+ return {
16
+ 'version': !runtime.exists(json, 'version') ? undefined : json['version'],
17
+ };
18
+ }
19
+ function ReactSettingsToJSON(value) {
20
+ if (value === undefined) {
21
+ return undefined;
22
+ }
23
+ if (value === null) {
24
+ return null;
25
+ }
26
+ return {
27
+ 'version': value.version,
28
+ };
29
+ }
30
+
31
+ exports.ReactSettingsFromJSON = ReactSettingsFromJSON;
32
+ exports.ReactSettingsFromJSONTyped = ReactSettingsFromJSONTyped;
33
+ exports.ReactSettingsToJSON = ReactSettingsToJSON;
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ReactSettings
16
+ */
17
+ export interface ReactSettings {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ReactSettings
22
+ */
23
+ version?: string;
24
+ }
25
+ export declare function ReactSettingsFromJSON(json: any): ReactSettings;
26
+ export declare function ReactSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReactSettings;
27
+ export declare function ReactSettingsToJSON(value?: ReactSettings | null): any;
@@ -0,0 +1,27 @@
1
+ import { exists } from '../runtime.js';
2
+
3
+ /* tslint:disable */
4
+ function ReactSettingsFromJSON(json) {
5
+ return ReactSettingsFromJSONTyped(json);
6
+ }
7
+ function ReactSettingsFromJSONTyped(json, ignoreDiscriminator) {
8
+ if ((json === undefined) || (json === null)) {
9
+ return json;
10
+ }
11
+ return {
12
+ 'version': !exists(json, 'version') ? undefined : json['version'],
13
+ };
14
+ }
15
+ function ReactSettingsToJSON(value) {
16
+ if (value === undefined) {
17
+ return undefined;
18
+ }
19
+ if (value === null) {
20
+ return null;
21
+ }
22
+ return {
23
+ 'version': value.version,
24
+ };
25
+ }
26
+
27
+ export { ReactSettingsFromJSON, ReactSettingsFromJSONTyped, ReactSettingsToJSON };
@@ -3,6 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var runtime = require('../runtime.cjs');
6
+ var FrameworkSettings = require('./FrameworkSettings.cjs');
6
7
 
7
8
  /* tslint:disable */
8
9
  function SdkSettingsRequestFromJSON(json) {
@@ -15,6 +16,7 @@ function SdkSettingsRequestFromJSONTyped(json, ignoreDiscriminator) {
15
16
  return {
16
17
  'dynamicContextProps': !runtime.exists(json, 'dynamicContextProps') ? undefined : json['dynamicContextProps'],
17
18
  'dynamicWagmiSettings': !runtime.exists(json, 'dynamicWagmiSettings') ? undefined : json['dynamicWagmiSettings'],
19
+ 'frameworkSettings': !runtime.exists(json, 'frameworkSettings') ? undefined : FrameworkSettings.FrameworkSettingsFromJSON(json['frameworkSettings']),
18
20
  };
19
21
  }
20
22
  function SdkSettingsRequestToJSON(value) {
@@ -27,6 +29,7 @@ function SdkSettingsRequestToJSON(value) {
27
29
  return {
28
30
  'dynamicContextProps': value.dynamicContextProps,
29
31
  'dynamicWagmiSettings': value.dynamicWagmiSettings,
32
+ 'frameworkSettings': FrameworkSettings.FrameworkSettingsToJSON(value.frameworkSettings),
30
33
  };
31
34
  }
32
35
 
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { FrameworkSettings } from './FrameworkSettings';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -27,6 +28,12 @@ export interface SdkSettingsRequest {
27
28
  * @memberof SdkSettingsRequest
28
29
  */
29
30
  dynamicWagmiSettings?: object;
31
+ /**
32
+ *
33
+ * @type {FrameworkSettings}
34
+ * @memberof SdkSettingsRequest
35
+ */
36
+ frameworkSettings?: FrameworkSettings;
30
37
  }
31
38
  export declare function SdkSettingsRequestFromJSON(json: any): SdkSettingsRequest;
32
39
  export declare function SdkSettingsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SdkSettingsRequest;
@@ -1,4 +1,5 @@
1
1
  import { exists } from '../runtime.js';
2
+ import { FrameworkSettingsFromJSON, FrameworkSettingsToJSON } from './FrameworkSettings.js';
2
3
 
3
4
  /* tslint:disable */
4
5
  function SdkSettingsRequestFromJSON(json) {
@@ -11,6 +12,7 @@ function SdkSettingsRequestFromJSONTyped(json, ignoreDiscriminator) {
11
12
  return {
12
13
  'dynamicContextProps': !exists(json, 'dynamicContextProps') ? undefined : json['dynamicContextProps'],
13
14
  'dynamicWagmiSettings': !exists(json, 'dynamicWagmiSettings') ? undefined : json['dynamicWagmiSettings'],
15
+ 'frameworkSettings': !exists(json, 'frameworkSettings') ? undefined : FrameworkSettingsFromJSON(json['frameworkSettings']),
14
16
  };
15
17
  }
16
18
  function SdkSettingsRequestToJSON(value) {
@@ -23,6 +25,7 @@ function SdkSettingsRequestToJSON(value) {
23
25
  return {
24
26
  'dynamicContextProps': value.dynamicContextProps,
25
27
  'dynamicWagmiSettings': value.dynamicWagmiSettings,
28
+ 'frameworkSettings': FrameworkSettingsToJSON(value.frameworkSettings),
26
29
  };
27
30
  }
28
31
 
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var runtime = require('../runtime.cjs');
6
6
  var ChainEnum = require('./ChainEnum.cjs');
7
7
  var OauthProviderRequest = require('./OauthProviderRequest.cjs');
8
+ var WalletAdditionalAddress = require('./WalletAdditionalAddress.cjs');
8
9
  var WalletProviderEnum = require('./WalletProviderEnum.cjs');
9
10
 
10
11
  /* tslint:disable */
@@ -26,6 +27,7 @@ function VerifyRequestFromJSONTyped(json, ignoreDiscriminator) {
26
27
  'skipEmptyAccountCheck': !runtime.exists(json, 'skipEmptyAccountCheck') ? undefined : json['skipEmptyAccountCheck'],
27
28
  'captchaToken': !runtime.exists(json, 'captchaToken') ? undefined : json['captchaToken'],
28
29
  'network': !runtime.exists(json, 'network') ? undefined : json['network'],
30
+ 'additionalWalletAddresses': !runtime.exists(json, 'additionalWalletAddresses') ? undefined : (json['additionalWalletAddresses'].map(WalletAdditionalAddress.WalletAdditionalAddressFromJSON)),
29
31
  };
30
32
  }
31
33
  function VerifyRequestToJSON(value) {
@@ -46,6 +48,7 @@ function VerifyRequestToJSON(value) {
46
48
  'skipEmptyAccountCheck': value.skipEmptyAccountCheck,
47
49
  'captchaToken': value.captchaToken,
48
50
  'network': value.network,
51
+ 'additionalWalletAddresses': value.additionalWalletAddresses === undefined ? undefined : (value.additionalWalletAddresses.map(WalletAdditionalAddress.WalletAdditionalAddressToJSON)),
49
52
  };
50
53
  }
51
54
 
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { ChainEnum } from './ChainEnum';
13
13
  import { OauthProviderRequest } from './OauthProviderRequest';
14
+ import { WalletAdditionalAddress } from './WalletAdditionalAddress';
14
15
  import { WalletProviderEnum } from './WalletProviderEnum';
15
16
  /**
16
17
  *
@@ -78,6 +79,12 @@ export interface VerifyRequest {
78
79
  * @memberof VerifyRequest
79
80
  */
80
81
  network?: string;
82
+ /**
83
+ * Additional addresses associated with the wallet.
84
+ * @type {Array<WalletAdditionalAddress>}
85
+ * @memberof VerifyRequest
86
+ */
87
+ additionalWalletAddresses?: Array<WalletAdditionalAddress>;
81
88
  }
82
89
  export declare function VerifyRequestFromJSON(json: any): VerifyRequest;
83
90
  export declare function VerifyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyRequest;
@@ -1,6 +1,7 @@
1
1
  import { exists } from '../runtime.js';
2
2
  import { ChainEnumFromJSON, ChainEnumToJSON } from './ChainEnum.js';
3
3
  import { OauthProviderRequestFromJSON, OauthProviderRequestToJSON } from './OauthProviderRequest.js';
4
+ import { WalletAdditionalAddressFromJSON, WalletAdditionalAddressToJSON } from './WalletAdditionalAddress.js';
4
5
  import { WalletProviderEnumFromJSON, WalletProviderEnumToJSON } from './WalletProviderEnum.js';
5
6
 
6
7
  /* tslint:disable */
@@ -22,6 +23,7 @@ function VerifyRequestFromJSONTyped(json, ignoreDiscriminator) {
22
23
  'skipEmptyAccountCheck': !exists(json, 'skipEmptyAccountCheck') ? undefined : json['skipEmptyAccountCheck'],
23
24
  'captchaToken': !exists(json, 'captchaToken') ? undefined : json['captchaToken'],
24
25
  'network': !exists(json, 'network') ? undefined : json['network'],
26
+ 'additionalWalletAddresses': !exists(json, 'additionalWalletAddresses') ? undefined : (json['additionalWalletAddresses'].map(WalletAdditionalAddressFromJSON)),
25
27
  };
26
28
  }
27
29
  function VerifyRequestToJSON(value) {
@@ -42,6 +44,7 @@ function VerifyRequestToJSON(value) {
42
44
  'skipEmptyAccountCheck': value.skipEmptyAccountCheck,
43
45
  'captchaToken': value.captchaToken,
44
46
  'network': value.network,
47
+ 'additionalWalletAddresses': value.additionalWalletAddresses === undefined ? undefined : (value.additionalWalletAddresses.map(WalletAdditionalAddressToJSON)),
45
48
  };
46
49
  }
47
50
 
@@ -0,0 +1,38 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+ var WalletAddressType = require('./WalletAddressType.cjs');
7
+
8
+ /* tslint:disable */
9
+ function WalletAdditionalAddressFromJSON(json) {
10
+ return WalletAdditionalAddressFromJSONTyped(json);
11
+ }
12
+ function WalletAdditionalAddressFromJSONTyped(json, ignoreDiscriminator) {
13
+ if ((json === undefined) || (json === null)) {
14
+ return json;
15
+ }
16
+ return {
17
+ 'address': json['address'],
18
+ 'publicKey': !runtime.exists(json, 'publicKey') ? undefined : json['publicKey'],
19
+ 'type': WalletAddressType.WalletAddressTypeFromJSON(json['type']),
20
+ };
21
+ }
22
+ function WalletAdditionalAddressToJSON(value) {
23
+ if (value === undefined) {
24
+ return undefined;
25
+ }
26
+ if (value === null) {
27
+ return null;
28
+ }
29
+ return {
30
+ 'address': value.address,
31
+ 'publicKey': value.publicKey,
32
+ 'type': WalletAddressType.WalletAddressTypeToJSON(value.type),
33
+ };
34
+ }
35
+
36
+ exports.WalletAdditionalAddressFromJSON = WalletAdditionalAddressFromJSON;
37
+ exports.WalletAdditionalAddressFromJSONTyped = WalletAdditionalAddressFromJSONTyped;
38
+ exports.WalletAdditionalAddressToJSON = WalletAdditionalAddressToJSON;
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Dashboard API
3
+ * Dashboard API documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { WalletAddressType } from './WalletAddressType';
13
+ /**
14
+ * An additional address associated with a wallet.
15
+ * @export
16
+ * @interface WalletAdditionalAddress
17
+ */
18
+ export interface WalletAdditionalAddress {
19
+ /**
20
+ * An address associated with a wallet.
21
+ * @type {string}
22
+ * @memberof WalletAdditionalAddress
23
+ */
24
+ address: string;
25
+ /**
26
+ * The public key associated with the address.
27
+ * @type {string}
28
+ * @memberof WalletAdditionalAddress
29
+ */
30
+ publicKey?: string;
31
+ /**
32
+ *
33
+ * @type {WalletAddressType}
34
+ * @memberof WalletAdditionalAddress
35
+ */
36
+ type: WalletAddressType;
37
+ }
38
+ export declare function WalletAdditionalAddressFromJSON(json: any): WalletAdditionalAddress;
39
+ export declare function WalletAdditionalAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletAdditionalAddress;
40
+ export declare function WalletAdditionalAddressToJSON(value?: WalletAdditionalAddress | null): any;
@@ -0,0 +1,32 @@
1
+ import { exists } from '../runtime.js';
2
+ import { WalletAddressTypeFromJSON, WalletAddressTypeToJSON } from './WalletAddressType.js';
3
+
4
+ /* tslint:disable */
5
+ function WalletAdditionalAddressFromJSON(json) {
6
+ return WalletAdditionalAddressFromJSONTyped(json);
7
+ }
8
+ function WalletAdditionalAddressFromJSONTyped(json, ignoreDiscriminator) {
9
+ if ((json === undefined) || (json === null)) {
10
+ return json;
11
+ }
12
+ return {
13
+ 'address': json['address'],
14
+ 'publicKey': !exists(json, 'publicKey') ? undefined : json['publicKey'],
15
+ 'type': WalletAddressTypeFromJSON(json['type']),
16
+ };
17
+ }
18
+ function WalletAdditionalAddressToJSON(value) {
19
+ if (value === undefined) {
20
+ return undefined;
21
+ }
22
+ if (value === null) {
23
+ return null;
24
+ }
25
+ return {
26
+ 'address': value.address,
27
+ 'publicKey': value.publicKey,
28
+ 'type': WalletAddressTypeToJSON(value.type),
29
+ };
30
+ }
31
+
32
+ export { WalletAdditionalAddressFromJSON, WalletAdditionalAddressFromJSONTyped, WalletAdditionalAddressToJSON };