@dynamic-labs/sdk-api 0.0.597 → 0.0.599

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.597",
3
+ "version": "0.0.599",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -73,6 +73,7 @@ var FarcasterSignInRequest = require('../models/FarcasterSignInRequest.cjs');
73
73
  require('../models/OnrampProviders.cjs');
74
74
  require('../models/GateRuleType.cjs');
75
75
  var GetUserPasskeysResponse = require('../models/GetUserPasskeysResponse.cjs');
76
+ var GlobalWalletSettings = require('../models/GlobalWalletSettings.cjs');
76
77
  var HealthcheckResponse = require('../models/HealthcheckResponse.cjs');
77
78
  require('../models/HealthcheckStatus.cjs');
78
79
  var ImportWaasPrivateKeyRequest = require('../models/ImportWaasPrivateKeyRequest.cjs');
@@ -2055,6 +2056,34 @@ class SDKApi extends runtime.BaseAPI {
2055
2056
  yield this.getExchangeRatesOptionsRaw(initOverrides);
2056
2057
  });
2057
2058
  }
2059
+ /**
2060
+ * Get the global wallet settings for the environment
2061
+ */
2062
+ getGlobalWalletsSettingsRaw(requestParameters, initOverrides) {
2063
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
2064
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
2065
+ throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling getGlobalWalletsSettings.');
2066
+ }
2067
+ const queryParameters = {};
2068
+ const headerParameters = {};
2069
+ const response = yield this.request({
2070
+ path: `/sdk/{environmentId}/globalWallets/settings`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
2071
+ method: 'GET',
2072
+ headers: headerParameters,
2073
+ query: queryParameters,
2074
+ }, initOverrides);
2075
+ return new runtime.JSONApiResponse(response, (jsonValue) => GlobalWalletSettings.GlobalWalletSettingsFromJSON(jsonValue));
2076
+ });
2077
+ }
2078
+ /**
2079
+ * Get the global wallet settings for the environment
2080
+ */
2081
+ getGlobalWalletsSettings(requestParameters, initOverrides) {
2082
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
2083
+ const response = yield this.getGlobalWalletsSettingsRaw(requestParameters, initOverrides);
2084
+ return yield response.value();
2085
+ });
2086
+ }
2058
2087
  /**
2059
2088
  * Health check endpoint to check for uptime of API.
2060
2089
  */
@@ -2516,6 +2545,33 @@ class SDKApi extends runtime.BaseAPI {
2516
2545
  return yield response.value();
2517
2546
  });
2518
2547
  }
2548
+ /**
2549
+ * Options call for this endpoint
2550
+ */
2551
+ globalWalletsSettingsOptionsRaw(requestParameters, initOverrides) {
2552
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
2553
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
2554
+ throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling globalWalletsSettingsOptions.');
2555
+ }
2556
+ const queryParameters = {};
2557
+ const headerParameters = {};
2558
+ const response = yield this.request({
2559
+ path: `/sdk/{environmentId}/globalWallets/settings`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
2560
+ method: 'OPTIONS',
2561
+ headers: headerParameters,
2562
+ query: queryParameters,
2563
+ }, initOverrides);
2564
+ return new runtime.VoidApiResponse(response);
2565
+ });
2566
+ }
2567
+ /**
2568
+ * Options call for this endpoint
2569
+ */
2570
+ globalWalletsSettingsOptions(requestParameters, initOverrides) {
2571
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
2572
+ yield this.globalWalletsSettingsOptionsRaw(requestParameters, initOverrides);
2573
+ });
2574
+ }
2519
2575
  /**
2520
2576
  * Import a private key to create a waas account
2521
2577
  * Import an existing private key to create a waas account
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import { BackupKeyshareRequest, BackupKeyshareResponse, CompletePasskeyRecoveryRequest, ConnectRequest, CreateEmbeddedWalletsRequest, CreateWaasAccountRequest, CreateWalletAccountRequest, Currency, DeleteEmbeddedWalletsRequest, EmailProviderResponse, EmailVerificationCreateRequest, EmailVerificationCreateResponse, EmailVerificationRetryRequest, EmailVerificationVerifyRequest, EmbeddedWalletAuthToken, EmbeddedWalletAuthType, EmbeddedWalletChainEnum, EmbeddedWalletPasscodeClaimRequest, EmbeddedWalletSecret, ExportEmbeddedWalletResponse, ExportWaasWalletPrivateKeyRequest, ExternalAuthSigninRequest, FarcasterSignInRequest, GetUserPasskeysResponse, HealthcheckResponse, ImportWaasPrivateKeyRequest, InitEmailAuthRequest, InitEmailAuthResponse, InitPasskeyRecoveryRequest, InitPasskeyRecoveryResponse, JwksResponse, MFAAuthPasskeyDeviceGetResponse, MFAAuthPasskeyDevicePostRequest, MFAAuthRecoveryDevicePostRequest, MFAAuthTotpDevicePostRequest, MFADevice, MFAGetRecoveryCodesResponse, MFAListDevicesResponse, MFARegenRecoveryCodesResponse, MFARegisterPasskeyDeviceGetResponse, MFARegisterPasskeyDevicePostRequest, MFARegisterTotpDeviceGetResponse, MFARegisterTotpDevicePostRequest, MFAUpdateDeviceRequest, MergeUserConflictResolutions, NetworkConfigurationResponse, NonceResponse, OauthInitAuthRequest, OauthProviderLoginUrl, OauthRequest, OauthResultRequest, OauthResultResponse, OpenRoomResponse, OpenRoomResponseWithServerKeygenIds, PrefetchRequest, ProjectSettings, ProviderEnum, PublishEvents, RecoverKeyshareResponse, RefreshKeySharesRequest, RegisterEmbeddedWalletSessionKeyResponse, RegisterSessionKeyRequest, ReshareRequest, ScanWebsiteUrlRequest, ScanWebsiteUrlResponse, SdkSettingsRequest, SdkUser, SignMessageWithWaasRequest, SimulateEVMTransactionRequest, SimulateSVMTransactionRequest, SimulateTransactionResponse, SimulateUserOpRequest, SmsVerificationCreateRequest, SmsVerificationCreateResponse, SmsVerificationRetryRequest, SmsVerificationVerifyRequest, SolanaTransactionOptimizationRequest, SolanaTransactionOptimizationResponse, SupportedOnrampsResponse, TelegramPostRequest, TokenBalance, TurnkeyCreateWalletAccountsRequestBody, TurnkeyDeleteEmbeddedWalletsRequestBody, UpdateRecoveryEmailRequest, UpdateSelfResponse, UpdateUserPasskeyRequest, UpgradeEmbeddedWalletToV2Request, UserFields, UserFieldsCheckParams, UserFieldsCheckResponse, UserPasskey, UserWalletSelectionRequest, VerifyRequest, VerifyResponse, VerifyUnlinkRequest } from '../models';
13
+ import { BackupKeyshareRequest, BackupKeyshareResponse, CompletePasskeyRecoveryRequest, ConnectRequest, CreateEmbeddedWalletsRequest, CreateWaasAccountRequest, CreateWalletAccountRequest, Currency, DeleteEmbeddedWalletsRequest, EmailProviderResponse, EmailVerificationCreateRequest, EmailVerificationCreateResponse, EmailVerificationRetryRequest, EmailVerificationVerifyRequest, EmbeddedWalletAuthToken, EmbeddedWalletAuthType, EmbeddedWalletChainEnum, EmbeddedWalletPasscodeClaimRequest, EmbeddedWalletSecret, ExportEmbeddedWalletResponse, ExportWaasWalletPrivateKeyRequest, ExternalAuthSigninRequest, FarcasterSignInRequest, GetUserPasskeysResponse, GlobalWalletSettings, HealthcheckResponse, ImportWaasPrivateKeyRequest, InitEmailAuthRequest, InitEmailAuthResponse, InitPasskeyRecoveryRequest, InitPasskeyRecoveryResponse, JwksResponse, MFAAuthPasskeyDeviceGetResponse, MFAAuthPasskeyDevicePostRequest, MFAAuthRecoveryDevicePostRequest, MFAAuthTotpDevicePostRequest, MFADevice, MFAGetRecoveryCodesResponse, MFAListDevicesResponse, MFARegenRecoveryCodesResponse, MFARegisterPasskeyDeviceGetResponse, MFARegisterPasskeyDevicePostRequest, MFARegisterTotpDeviceGetResponse, MFARegisterTotpDevicePostRequest, MFAUpdateDeviceRequest, MergeUserConflictResolutions, NetworkConfigurationResponse, NonceResponse, OauthInitAuthRequest, OauthProviderLoginUrl, OauthRequest, OauthResultRequest, OauthResultResponse, OpenRoomResponse, OpenRoomResponseWithServerKeygenIds, PrefetchRequest, ProjectSettings, ProviderEnum, PublishEvents, RecoverKeyshareResponse, RefreshKeySharesRequest, RegisterEmbeddedWalletSessionKeyResponse, RegisterSessionKeyRequest, ReshareRequest, ScanWebsiteUrlRequest, ScanWebsiteUrlResponse, SdkSettingsRequest, SdkUser, SignMessageWithWaasRequest, SimulateEVMTransactionRequest, SimulateSVMTransactionRequest, SimulateTransactionResponse, SimulateUserOpRequest, SmsVerificationCreateRequest, SmsVerificationCreateResponse, SmsVerificationRetryRequest, SmsVerificationVerifyRequest, SolanaTransactionOptimizationRequest, SolanaTransactionOptimizationResponse, SupportedOnrampsResponse, TelegramPostRequest, TokenBalance, TurnkeyCreateWalletAccountsRequestBody, TurnkeyDeleteEmbeddedWalletsRequestBody, UpdateRecoveryEmailRequest, UpdateSelfResponse, UpdateUserPasskeyRequest, UpgradeEmbeddedWalletToV2Request, UserFields, UserFieldsCheckParams, UserFieldsCheckResponse, UserPasskey, UserWalletSelectionRequest, VerifyRequest, VerifyResponse, VerifyUnlinkRequest } from '../models';
14
14
  export interface AuthMfaPasskeyDeviceRequest {
15
15
  environmentId: string;
16
16
  mFAAuthPasskeyDevicePostRequest: MFAAuthPasskeyDevicePostRequest;
@@ -213,6 +213,9 @@ export interface GetEnvironmentSettingsRequest {
213
213
  environmentId: string;
214
214
  sdkVersion?: string;
215
215
  }
216
+ export interface GetGlobalWalletsSettingsRequest {
217
+ environmentId: string;
218
+ }
216
219
  export interface GetHealthcheckRequest {
217
220
  environmentId: string;
218
221
  }
@@ -263,6 +266,9 @@ export interface GetUserMfaDevicesRequest {
263
266
  export interface GetUserPasskeysRequest {
264
267
  environmentId: string;
265
268
  }
269
+ export interface GlobalWalletsSettingsOptionsRequest {
270
+ environmentId: string;
271
+ }
266
272
  export interface ImportPrivateKeyRequest {
267
273
  environmentId: string;
268
274
  walletId: string;
@@ -1160,6 +1166,14 @@ export declare class SDKApi extends runtime.BaseAPI {
1160
1166
  * Options call for this endpoint
1161
1167
  */
1162
1168
  getExchangeRatesOptions(initOverrides?: RequestInit): Promise<void>;
1169
+ /**
1170
+ * Get the global wallet settings for the environment
1171
+ */
1172
+ getGlobalWalletsSettingsRaw(requestParameters: GetGlobalWalletsSettingsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GlobalWalletSettings>>;
1173
+ /**
1174
+ * Get the global wallet settings for the environment
1175
+ */
1176
+ getGlobalWalletsSettings(requestParameters: GetGlobalWalletsSettingsRequest, initOverrides?: RequestInit): Promise<GlobalWalletSettings>;
1163
1177
  /**
1164
1178
  * Health check endpoint to check for uptime of API.
1165
1179
  */
@@ -1276,6 +1290,14 @@ export declare class SDKApi extends runtime.BaseAPI {
1276
1290
  * Gets passkey data associated with a user
1277
1291
  */
1278
1292
  getUserPasskeys(requestParameters: GetUserPasskeysRequest, initOverrides?: RequestInit): Promise<GetUserPasskeysResponse>;
1293
+ /**
1294
+ * Options call for this endpoint
1295
+ */
1296
+ globalWalletsSettingsOptionsRaw(requestParameters: GlobalWalletsSettingsOptionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
1297
+ /**
1298
+ * Options call for this endpoint
1299
+ */
1300
+ globalWalletsSettingsOptions(requestParameters: GlobalWalletsSettingsOptionsRequest, initOverrides?: RequestInit): Promise<void>;
1279
1301
  /**
1280
1302
  * Import a private key to create a waas account
1281
1303
  * Import an existing private key to create a waas account
@@ -69,6 +69,7 @@ import { FarcasterSignInRequestToJSON } from '../models/FarcasterSignInRequest.j
69
69
  import '../models/OnrampProviders.js';
70
70
  import '../models/GateRuleType.js';
71
71
  import { GetUserPasskeysResponseFromJSON } from '../models/GetUserPasskeysResponse.js';
72
+ import { GlobalWalletSettingsFromJSON } from '../models/GlobalWalletSettings.js';
72
73
  import { HealthcheckResponseFromJSON } from '../models/HealthcheckResponse.js';
73
74
  import '../models/HealthcheckStatus.js';
74
75
  import { ImportWaasPrivateKeyRequestToJSON } from '../models/ImportWaasPrivateKeyRequest.js';
@@ -2051,6 +2052,34 @@ class SDKApi extends BaseAPI {
2051
2052
  yield this.getExchangeRatesOptionsRaw(initOverrides);
2052
2053
  });
2053
2054
  }
2055
+ /**
2056
+ * Get the global wallet settings for the environment
2057
+ */
2058
+ getGlobalWalletsSettingsRaw(requestParameters, initOverrides) {
2059
+ return __awaiter(this, void 0, void 0, function* () {
2060
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
2061
+ throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling getGlobalWalletsSettings.');
2062
+ }
2063
+ const queryParameters = {};
2064
+ const headerParameters = {};
2065
+ const response = yield this.request({
2066
+ path: `/sdk/{environmentId}/globalWallets/settings`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
2067
+ method: 'GET',
2068
+ headers: headerParameters,
2069
+ query: queryParameters,
2070
+ }, initOverrides);
2071
+ return new JSONApiResponse(response, (jsonValue) => GlobalWalletSettingsFromJSON(jsonValue));
2072
+ });
2073
+ }
2074
+ /**
2075
+ * Get the global wallet settings for the environment
2076
+ */
2077
+ getGlobalWalletsSettings(requestParameters, initOverrides) {
2078
+ return __awaiter(this, void 0, void 0, function* () {
2079
+ const response = yield this.getGlobalWalletsSettingsRaw(requestParameters, initOverrides);
2080
+ return yield response.value();
2081
+ });
2082
+ }
2054
2083
  /**
2055
2084
  * Health check endpoint to check for uptime of API.
2056
2085
  */
@@ -2512,6 +2541,33 @@ class SDKApi extends BaseAPI {
2512
2541
  return yield response.value();
2513
2542
  });
2514
2543
  }
2544
+ /**
2545
+ * Options call for this endpoint
2546
+ */
2547
+ globalWalletsSettingsOptionsRaw(requestParameters, initOverrides) {
2548
+ return __awaiter(this, void 0, void 0, function* () {
2549
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
2550
+ throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling globalWalletsSettingsOptions.');
2551
+ }
2552
+ const queryParameters = {};
2553
+ const headerParameters = {};
2554
+ const response = yield this.request({
2555
+ path: `/sdk/{environmentId}/globalWallets/settings`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
2556
+ method: 'OPTIONS',
2557
+ headers: headerParameters,
2558
+ query: queryParameters,
2559
+ }, initOverrides);
2560
+ return new VoidApiResponse(response);
2561
+ });
2562
+ }
2563
+ /**
2564
+ * Options call for this endpoint
2565
+ */
2566
+ globalWalletsSettingsOptions(requestParameters, initOverrides) {
2567
+ return __awaiter(this, void 0, void 0, function* () {
2568
+ yield this.globalWalletsSettingsOptionsRaw(requestParameters, initOverrides);
2569
+ });
2570
+ }
2515
2571
  /**
2516
2572
  * Import a private key to create a waas account
2517
2573
  * Import an existing private key to create a waas account
@@ -16,7 +16,7 @@ function GlobalWalletSettingsFromJSONTyped(json, ignoreDiscriminator) {
16
16
  'id': json['id'],
17
17
  'walletName': json['walletName'],
18
18
  'popupPageTitle': !runtime.exists(json, 'popupPageTitle') ? undefined : json['popupPageTitle'],
19
- 'faviconUrl': !runtime.exists(json, 'faviconUrl') ? undefined : json['faviconUrl'],
19
+ 'walletIconUrl': !runtime.exists(json, 'walletIconUrl') ? undefined : json['walletIconUrl'],
20
20
  'customCssUrl': !runtime.exists(json, 'customCssUrl') ? undefined : json['customCssUrl'],
21
21
  'enabledAt': !runtime.exists(json, 'enabledAt') ? undefined : (json['enabledAt'] === null ? null : new Date(json['enabledAt'])),
22
22
  };
@@ -32,7 +32,7 @@ function GlobalWalletSettingsToJSON(value) {
32
32
  'id': value.id,
33
33
  'walletName': value.walletName,
34
34
  'popupPageTitle': value.popupPageTitle,
35
- 'faviconUrl': value.faviconUrl,
35
+ 'walletIconUrl': value.walletIconUrl,
36
36
  'customCssUrl': value.customCssUrl,
37
37
  'enabledAt': value.enabledAt === undefined ? undefined : (value.enabledAt === null ? null : value.enabledAt.toISOString()),
38
38
  };
@@ -38,7 +38,7 @@ export interface GlobalWalletSettings {
38
38
  * @type {string}
39
39
  * @memberof GlobalWalletSettings
40
40
  */
41
- faviconUrl?: string;
41
+ walletIconUrl?: string;
42
42
  /**
43
43
  *
44
44
  * @type {string}
@@ -12,7 +12,7 @@ function GlobalWalletSettingsFromJSONTyped(json, ignoreDiscriminator) {
12
12
  'id': json['id'],
13
13
  'walletName': json['walletName'],
14
14
  'popupPageTitle': !exists(json, 'popupPageTitle') ? undefined : json['popupPageTitle'],
15
- 'faviconUrl': !exists(json, 'faviconUrl') ? undefined : json['faviconUrl'],
15
+ 'walletIconUrl': !exists(json, 'walletIconUrl') ? undefined : json['walletIconUrl'],
16
16
  'customCssUrl': !exists(json, 'customCssUrl') ? undefined : json['customCssUrl'],
17
17
  'enabledAt': !exists(json, 'enabledAt') ? undefined : (json['enabledAt'] === null ? null : new Date(json['enabledAt'])),
18
18
  };
@@ -28,7 +28,7 @@ function GlobalWalletSettingsToJSON(value) {
28
28
  'id': value.id,
29
29
  'walletName': value.walletName,
30
30
  'popupPageTitle': value.popupPageTitle,
31
- 'faviconUrl': value.faviconUrl,
31
+ 'walletIconUrl': value.walletIconUrl,
32
32
  'customCssUrl': value.customCssUrl,
33
33
  'enabledAt': value.enabledAt === undefined ? undefined : (value.enabledAt === null ? null : value.enabledAt.toISOString()),
34
34
  };
@@ -15,7 +15,7 @@ function GlobalWalletSettingsCreateRequestFromJSONTyped(json, ignoreDiscriminato
15
15
  return {
16
16
  'walletName': json['walletName'],
17
17
  'popupPageTitle': !runtime.exists(json, 'popupPageTitle') ? undefined : json['popupPageTitle'],
18
- 'faviconUrl': !runtime.exists(json, 'faviconUrl') ? undefined : json['faviconUrl'],
18
+ 'walletIconUrl': !runtime.exists(json, 'walletIconUrl') ? undefined : json['walletIconUrl'],
19
19
  'customCssUrl': !runtime.exists(json, 'customCssUrl') ? undefined : json['customCssUrl'],
20
20
  };
21
21
  }
@@ -29,7 +29,7 @@ function GlobalWalletSettingsCreateRequestToJSON(value) {
29
29
  return {
30
30
  'walletName': value.walletName,
31
31
  'popupPageTitle': value.popupPageTitle,
32
- 'faviconUrl': value.faviconUrl,
32
+ 'walletIconUrl': value.walletIconUrl,
33
33
  'customCssUrl': value.customCssUrl,
34
34
  };
35
35
  }
@@ -32,7 +32,7 @@ export interface GlobalWalletSettingsCreateRequest {
32
32
  * @type {string}
33
33
  * @memberof GlobalWalletSettingsCreateRequest
34
34
  */
35
- faviconUrl?: string;
35
+ walletIconUrl?: string;
36
36
  /**
37
37
  *
38
38
  * @type {string}
@@ -11,7 +11,7 @@ function GlobalWalletSettingsCreateRequestFromJSONTyped(json, ignoreDiscriminato
11
11
  return {
12
12
  'walletName': json['walletName'],
13
13
  'popupPageTitle': !exists(json, 'popupPageTitle') ? undefined : json['popupPageTitle'],
14
- 'faviconUrl': !exists(json, 'faviconUrl') ? undefined : json['faviconUrl'],
14
+ 'walletIconUrl': !exists(json, 'walletIconUrl') ? undefined : json['walletIconUrl'],
15
15
  'customCssUrl': !exists(json, 'customCssUrl') ? undefined : json['customCssUrl'],
16
16
  };
17
17
  }
@@ -25,7 +25,7 @@ function GlobalWalletSettingsCreateRequestToJSON(value) {
25
25
  return {
26
26
  'walletName': value.walletName,
27
27
  'popupPageTitle': value.popupPageTitle,
28
- 'faviconUrl': value.faviconUrl,
28
+ 'walletIconUrl': value.walletIconUrl,
29
29
  'customCssUrl': value.customCssUrl,
30
30
  };
31
31
  }
@@ -15,7 +15,7 @@ function GlobalWalletSettingsUpdateRequestFromJSONTyped(json, ignoreDiscriminato
15
15
  return {
16
16
  'walletName': !runtime.exists(json, 'walletName') ? undefined : json['walletName'],
17
17
  'popupPageTitle': !runtime.exists(json, 'popupPageTitle') ? undefined : json['popupPageTitle'],
18
- 'faviconUrl': !runtime.exists(json, 'faviconUrl') ? undefined : json['faviconUrl'],
18
+ 'walletIconUrl': !runtime.exists(json, 'walletIconUrl') ? undefined : json['walletIconUrl'],
19
19
  'customCssUrl': !runtime.exists(json, 'customCssUrl') ? undefined : json['customCssUrl'],
20
20
  };
21
21
  }
@@ -29,7 +29,7 @@ function GlobalWalletSettingsUpdateRequestToJSON(value) {
29
29
  return {
30
30
  'walletName': value.walletName,
31
31
  'popupPageTitle': value.popupPageTitle,
32
- 'faviconUrl': value.faviconUrl,
32
+ 'walletIconUrl': value.walletIconUrl,
33
33
  'customCssUrl': value.customCssUrl,
34
34
  };
35
35
  }
@@ -32,7 +32,7 @@ export interface GlobalWalletSettingsUpdateRequest {
32
32
  * @type {string}
33
33
  * @memberof GlobalWalletSettingsUpdateRequest
34
34
  */
35
- faviconUrl?: string;
35
+ walletIconUrl?: string;
36
36
  /**
37
37
  *
38
38
  * @type {string}
@@ -11,7 +11,7 @@ function GlobalWalletSettingsUpdateRequestFromJSONTyped(json, ignoreDiscriminato
11
11
  return {
12
12
  'walletName': !exists(json, 'walletName') ? undefined : json['walletName'],
13
13
  'popupPageTitle': !exists(json, 'popupPageTitle') ? undefined : json['popupPageTitle'],
14
- 'faviconUrl': !exists(json, 'faviconUrl') ? undefined : json['faviconUrl'],
14
+ 'walletIconUrl': !exists(json, 'walletIconUrl') ? undefined : json['walletIconUrl'],
15
15
  'customCssUrl': !exists(json, 'customCssUrl') ? undefined : json['customCssUrl'],
16
16
  };
17
17
  }
@@ -25,7 +25,7 @@ function GlobalWalletSettingsUpdateRequestToJSON(value) {
25
25
  return {
26
26
  'walletName': value.walletName,
27
27
  'popupPageTitle': value.popupPageTitle,
28
- 'faviconUrl': value.faviconUrl,
28
+ 'walletIconUrl': value.walletIconUrl,
29
29
  'customCssUrl': value.customCssUrl,
30
30
  };
31
31
  }