@dynamic-labs/sdk-api-core 0.0.734 → 0.0.736

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.734",
3
+ "version": "0.0.736",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -74,6 +74,9 @@ var GetPasskeyAuthenticationOptionsResponse = require('../models/GetPasskeyAuthe
74
74
  var GetPasskeyRegistrationOptionsResponse = require('../models/GetPasskeyRegistrationOptionsResponse.cjs');
75
75
  var GetUserPasskeysResponse = require('../models/GetUserPasskeysResponse.cjs');
76
76
  require('../models/GlobalWalletAccessControlTypeEnum.cjs');
77
+ var GlobalWalletConnection = require('../models/GlobalWalletConnection.cjs');
78
+ var GlobalWalletConnectionCreateRequest = require('../models/GlobalWalletConnectionCreateRequest.cjs');
79
+ require('../models/GlobalWalletConnectionStatusEnum.cjs');
77
80
  var GlobalWalletSettings = require('../models/GlobalWalletSettings.cjs');
78
81
  var HealthcheckResponse = require('../models/HealthcheckResponse.cjs');
79
82
  require('../models/HealthcheckStatus.cjs');
@@ -1098,6 +1101,46 @@ class SDKApi extends runtime.BaseAPI {
1098
1101
  yield this.createEmbeddedWalletsOptionsRaw(requestParameters, initOverrides);
1099
1102
  });
1100
1103
  }
1104
+ /**
1105
+ * Track a global wallet connection
1106
+ */
1107
+ createGlobalWalletConnectionRaw(requestParameters, initOverrides) {
1108
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
1109
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
1110
+ throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling createGlobalWalletConnection.');
1111
+ }
1112
+ if (requestParameters.globalWalletConnectionCreateRequest === null || requestParameters.globalWalletConnectionCreateRequest === undefined) {
1113
+ throw new runtime.RequiredError('globalWalletConnectionCreateRequest', 'Required parameter requestParameters.globalWalletConnectionCreateRequest was null or undefined when calling createGlobalWalletConnection.');
1114
+ }
1115
+ const queryParameters = {};
1116
+ const headerParameters = {};
1117
+ headerParameters['Content-Type'] = 'application/json';
1118
+ if (this.configuration && this.configuration.accessToken) {
1119
+ const token = this.configuration.accessToken;
1120
+ const tokenString = yield token("bearerAuth", []);
1121
+ if (tokenString) {
1122
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
1123
+ }
1124
+ }
1125
+ const response = yield this.request({
1126
+ path: `/sdk/{environmentId}/globalWallets/connections`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
1127
+ method: 'POST',
1128
+ headers: headerParameters,
1129
+ query: queryParameters,
1130
+ body: GlobalWalletConnectionCreateRequest.GlobalWalletConnectionCreateRequestToJSON(requestParameters.globalWalletConnectionCreateRequest),
1131
+ }, initOverrides);
1132
+ return new runtime.JSONApiResponse(response, (jsonValue) => GlobalWalletConnection.GlobalWalletConnectionFromJSON(jsonValue));
1133
+ });
1134
+ }
1135
+ /**
1136
+ * Track a global wallet connection
1137
+ */
1138
+ createGlobalWalletConnection(requestParameters, initOverrides) {
1139
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
1140
+ const response = yield this.createGlobalWalletConnectionRaw(requestParameters, initOverrides);
1141
+ return yield response.value();
1142
+ });
1143
+ }
1101
1144
  /**
1102
1145
  * Generate new recovery codes for user
1103
1146
  */
@@ -1419,6 +1462,74 @@ class SDKApi extends runtime.BaseAPI {
1419
1462
  yield this.deleteMfaDeviceRaw(requestParameters, initOverrides);
1420
1463
  });
1421
1464
  }
1465
+ /**
1466
+ * Set a global wallet connection as disconnected
1467
+ */
1468
+ disconnectGlobalWalletConnectionRaw(requestParameters, initOverrides) {
1469
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
1470
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
1471
+ throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling disconnectGlobalWalletConnection.');
1472
+ }
1473
+ if (requestParameters.globalWalletConnectionId === null || requestParameters.globalWalletConnectionId === undefined) {
1474
+ throw new runtime.RequiredError('globalWalletConnectionId', 'Required parameter requestParameters.globalWalletConnectionId was null or undefined when calling disconnectGlobalWalletConnection.');
1475
+ }
1476
+ const queryParameters = {};
1477
+ const headerParameters = {};
1478
+ if (this.configuration && this.configuration.accessToken) {
1479
+ const token = this.configuration.accessToken;
1480
+ const tokenString = yield token("bearerAuth", []);
1481
+ if (tokenString) {
1482
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
1483
+ }
1484
+ }
1485
+ const response = yield this.request({
1486
+ path: `/sdk/{environmentId}/globalWallets/connections/{globalWalletConnectionId}/disconnect`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"globalWalletConnectionId"}}`, encodeURIComponent(String(requestParameters.globalWalletConnectionId))),
1487
+ method: 'PUT',
1488
+ headers: headerParameters,
1489
+ query: queryParameters,
1490
+ }, initOverrides);
1491
+ return new runtime.JSONApiResponse(response, (jsonValue) => GlobalWalletConnection.GlobalWalletConnectionFromJSON(jsonValue));
1492
+ });
1493
+ }
1494
+ /**
1495
+ * Set a global wallet connection as disconnected
1496
+ */
1497
+ disconnectGlobalWalletConnection(requestParameters, initOverrides) {
1498
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
1499
+ const response = yield this.disconnectGlobalWalletConnectionRaw(requestParameters, initOverrides);
1500
+ return yield response.value();
1501
+ });
1502
+ }
1503
+ /**
1504
+ * Options call for this endpoint
1505
+ */
1506
+ disconnectGlobalWalletConnectionOptionsRaw(requestParameters, initOverrides) {
1507
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
1508
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
1509
+ throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling disconnectGlobalWalletConnectionOptions.');
1510
+ }
1511
+ if (requestParameters.globalWalletConnectionId === null || requestParameters.globalWalletConnectionId === undefined) {
1512
+ throw new runtime.RequiredError('globalWalletConnectionId', 'Required parameter requestParameters.globalWalletConnectionId was null or undefined when calling disconnectGlobalWalletConnectionOptions.');
1513
+ }
1514
+ const queryParameters = {};
1515
+ const headerParameters = {};
1516
+ const response = yield this.request({
1517
+ path: `/sdk/{environmentId}/globalWallets/connections/{globalWalletConnectionId}/disconnect`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"globalWalletConnectionId"}}`, encodeURIComponent(String(requestParameters.globalWalletConnectionId))),
1518
+ method: 'OPTIONS',
1519
+ headers: headerParameters,
1520
+ query: queryParameters,
1521
+ }, initOverrides);
1522
+ return new runtime.VoidApiResponse(response);
1523
+ });
1524
+ }
1525
+ /**
1526
+ * Options call for this endpoint
1527
+ */
1528
+ disconnectGlobalWalletConnectionOptions(requestParameters, initOverrides) {
1529
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
1530
+ yield this.disconnectGlobalWalletConnectionOptionsRaw(requestParameters, initOverrides);
1531
+ });
1532
+ }
1422
1533
  /**
1423
1534
  * Options call for this endpoint
1424
1535
  */
@@ -3516,6 +3627,33 @@ class SDKApi extends runtime.BaseAPI {
3516
3627
  return yield response.value();
3517
3628
  });
3518
3629
  }
3630
+ /**
3631
+ * Options call for this endpoint
3632
+ */
3633
+ globalWalletConnectionsOptionsRaw(requestParameters, initOverrides) {
3634
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
3635
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
3636
+ throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling globalWalletConnectionsOptions.');
3637
+ }
3638
+ const queryParameters = {};
3639
+ const headerParameters = {};
3640
+ const response = yield this.request({
3641
+ path: `/sdk/{environmentId}/globalWallets/connections`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
3642
+ method: 'OPTIONS',
3643
+ headers: headerParameters,
3644
+ query: queryParameters,
3645
+ }, initOverrides);
3646
+ return new runtime.VoidApiResponse(response);
3647
+ });
3648
+ }
3649
+ /**
3650
+ * Options call for this endpoint
3651
+ */
3652
+ globalWalletConnectionsOptions(requestParameters, initOverrides) {
3653
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
3654
+ yield this.globalWalletConnectionsOptionsRaw(requestParameters, initOverrides);
3655
+ });
3656
+ }
3519
3657
  /**
3520
3658
  * Options call for this endpoint
3521
3659
  */
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import { Account, BackupKeySharesToLocationRequest, BackupKeySharesToLocationResponse, BackupKeySharesToLocationsRequest, BackupKeySharesToLocationsResponse, BackupMultipleClientKeySharesRequest, BackupMultipleClientKeySharesResponse, ChainEnum, CompletePasskeyRecoveryRequest, ConnectRequest, CreateEmbeddedWalletsRequest, CreateExchangeTransferRequest, CreateWaasAccountRequest, CreateWalletAccountRequest, Currency, DeleteEmbeddedWalletsRequest, EmailProviderResponse, EmailVerificationCreateRequest, EmailVerificationCreateResponse, EmailVerificationMfaRequest, EmailVerificationRetryRequest, EmailVerificationVerifyRequest, EmbeddedWalletAuthToken, EmbeddedWalletAuthType, EmbeddedWalletChainEnum, EmbeddedWalletPasscodeClaimRequest, EmbeddedWalletSecret, ExchangeKeyEnum, ExchangeTransaction, ExchangeTransferResponse, ExportEmbeddedWalletResponse, ExportWaasWalletPrivateKeyRequest, ExternalAuthSigninRequest, FarcasterSignInRequest, GetPasskeyAuthenticationOptionsResponse, GetPasskeyRegistrationOptionsResponse, GetUserPasskeysResponse, GlobalWalletSettings, HealthcheckResponse, ImportWaasPrivateKeyRequest, InitEmailAuthRequest, InitEmailAuthResponse, InitPasskeyRecoveryRequest, InitPasskeyRecoveryResponse, JwksResponse, MFAAuthRecoveryDevicePostRequest, MFAAuthTotpDevicePostRequest, MFADevice, MFAGetRecoveryCodesResponse, MFAListDevicesResponse, MFAMethodsResponse, MFARegenRecoveryCodesResponse, MFARegisterPasskeyDeviceGetResponse, MFARegisterPasskeyDevicePostRequest, MFARegisterTotpDeviceGetResponse, MFARegisterTotpDevicePostRequest, MFAUpdateDeviceRequest, MergeUserConflictResolutions, MultichainAccountBalanceResponse, MultichainAccountBalancesRequest, NetworkConfigurationResponse, NonceResponse, OauthInitAuthRequest, OauthProviderLoginUrl, OauthRequest, OauthResultRequest, OauthResultResponse, OpenRoomResponse, OpenRoomResponseForReshare, OpenRoomResponseWithServerKeygenIds, PasskeyAuthRequest, PasskeyRegisterRequest, PrefetchRequest, ProjectSettings, ProviderEnum, PublishEvents, RecoverMultipleClientKeySharesRequest, RecoverMultipleClientKeySharesResponse, RegisterEmbeddedWalletSessionKeyResponse, RegisterSessionKeyRequest, ReshareRequest, ScanWebsiteUrlRequest, ScanWebsiteUrlResponse, SdkSettingsRequest, SdkUser, SignMessageWithWaasRequest, SimulateEVMTransactionRequest, SimulateSVMTransactionRequest, SimulateTransactionResponse, SimulateUserOpRequest, SmsVerificationCreateRequest, SmsVerificationCreateResponse, SmsVerificationRetryRequest, SmsVerificationVerifyRequest, SolanaTransactionOptimizationRequest, SolanaTransactionOptimizationResponse, SupportedOfframpsResponse, SupportedOnrampsResponse, TelegramPostRequest, TokenBalance, TransferDestinationResponse, TurnkeyCreateWalletAccountsRequestBody, TurnkeyDeleteEmbeddedWalletsRequestBody, UpdateRecoveryEmailRequest, UpdateSelfResponse, UpdateUserPasskeyRequest, UpgradeEmbeddedWalletToV2Request, UserFields, UserFieldsCheckParams, UserFieldsCheckResponse, UserOauthAccessTokenResponse, UserPasskey, UserWalletSelectionRequest, VerifyRequest, VerifyResponse, VerifyUnlinkRequest } from '../models';
13
+ import { Account, BackupKeySharesToLocationRequest, BackupKeySharesToLocationResponse, BackupKeySharesToLocationsRequest, BackupKeySharesToLocationsResponse, BackupMultipleClientKeySharesRequest, BackupMultipleClientKeySharesResponse, ChainEnum, CompletePasskeyRecoveryRequest, ConnectRequest, CreateEmbeddedWalletsRequest, CreateExchangeTransferRequest, CreateWaasAccountRequest, CreateWalletAccountRequest, Currency, DeleteEmbeddedWalletsRequest, EmailProviderResponse, EmailVerificationCreateRequest, EmailVerificationCreateResponse, EmailVerificationMfaRequest, EmailVerificationRetryRequest, EmailVerificationVerifyRequest, EmbeddedWalletAuthToken, EmbeddedWalletAuthType, EmbeddedWalletChainEnum, EmbeddedWalletPasscodeClaimRequest, EmbeddedWalletSecret, ExchangeKeyEnum, ExchangeTransaction, ExchangeTransferResponse, ExportEmbeddedWalletResponse, ExportWaasWalletPrivateKeyRequest, ExternalAuthSigninRequest, FarcasterSignInRequest, GetPasskeyAuthenticationOptionsResponse, GetPasskeyRegistrationOptionsResponse, GetUserPasskeysResponse, GlobalWalletConnection, GlobalWalletConnectionCreateRequest, GlobalWalletSettings, HealthcheckResponse, ImportWaasPrivateKeyRequest, InitEmailAuthRequest, InitEmailAuthResponse, InitPasskeyRecoveryRequest, InitPasskeyRecoveryResponse, JwksResponse, MFAAuthRecoveryDevicePostRequest, MFAAuthTotpDevicePostRequest, MFADevice, MFAGetRecoveryCodesResponse, MFAListDevicesResponse, MFAMethodsResponse, MFARegenRecoveryCodesResponse, MFARegisterPasskeyDeviceGetResponse, MFARegisterPasskeyDevicePostRequest, MFARegisterTotpDeviceGetResponse, MFARegisterTotpDevicePostRequest, MFAUpdateDeviceRequest, MergeUserConflictResolutions, MultichainAccountBalanceResponse, MultichainAccountBalancesRequest, NetworkConfigurationResponse, NonceResponse, OauthInitAuthRequest, OauthProviderLoginUrl, OauthRequest, OauthResultRequest, OauthResultResponse, OpenRoomResponse, OpenRoomResponseForReshare, OpenRoomResponseWithServerKeygenIds, PasskeyAuthRequest, PasskeyRegisterRequest, PrefetchRequest, ProjectSettings, ProviderEnum, PublishEvents, RecoverMultipleClientKeySharesRequest, RecoverMultipleClientKeySharesResponse, RegisterEmbeddedWalletSessionKeyResponse, RegisterSessionKeyRequest, ReshareRequest, ScanWebsiteUrlRequest, ScanWebsiteUrlResponse, SdkSettingsRequest, SdkUser, SignMessageWithWaasRequest, SimulateEVMTransactionRequest, SimulateSVMTransactionRequest, SimulateTransactionResponse, SimulateUserOpRequest, SmsVerificationCreateRequest, SmsVerificationCreateResponse, SmsVerificationRetryRequest, SmsVerificationVerifyRequest, SolanaTransactionOptimizationRequest, SolanaTransactionOptimizationResponse, SupportedOfframpsResponse, SupportedOnrampsResponse, TelegramPostRequest, TokenBalance, TransferDestinationResponse, TurnkeyCreateWalletAccountsRequestBody, TurnkeyDeleteEmbeddedWalletsRequestBody, UpdateRecoveryEmailRequest, UpdateSelfResponse, UpdateUserPasskeyRequest, UpgradeEmbeddedWalletToV2Request, UserFields, UserFieldsCheckParams, UserFieldsCheckResponse, UserOauthAccessTokenResponse, UserPasskey, UserWalletSelectionRequest, VerifyRequest, VerifyResponse, VerifyUnlinkRequest } from '../models';
14
14
  export interface AuthMfaEmailDeviceOptionsRequest {
15
15
  environmentId: string;
16
16
  }
@@ -117,6 +117,10 @@ export interface CreateEmbeddedWalletsOperationRequest {
117
117
  export interface CreateEmbeddedWalletsOptionsRequest {
118
118
  environmentId: string;
119
119
  }
120
+ export interface CreateGlobalWalletConnectionRequest {
121
+ environmentId: string;
122
+ globalWalletConnectionCreateRequest: GlobalWalletConnectionCreateRequest;
123
+ }
120
124
  export interface CreateNewRecoveryCodesRequest {
121
125
  environmentId: string;
122
126
  }
@@ -151,6 +155,14 @@ export interface DeleteMfaDeviceRequest {
151
155
  mfaDeviceId: string;
152
156
  xMfaAuthToken: string;
153
157
  }
158
+ export interface DisconnectGlobalWalletConnectionRequest {
159
+ environmentId: string;
160
+ globalWalletConnectionId: string;
161
+ }
162
+ export interface DisconnectGlobalWalletConnectionOptionsRequest {
163
+ environmentId: string;
164
+ globalWalletConnectionId: string;
165
+ }
154
166
  export interface EmailAuthOptionsRequest {
155
167
  environmentId: string;
156
168
  }
@@ -393,6 +405,9 @@ export interface GetUserMfaMethodsRequest {
393
405
  export interface GetUserPasskeysRequest {
394
406
  environmentId: string;
395
407
  }
408
+ export interface GlobalWalletConnectionsOptionsRequest {
409
+ environmentId: string;
410
+ }
396
411
  export interface GlobalWalletsSettingsOptionsRequest {
397
412
  environmentId: string;
398
413
  }
@@ -1100,6 +1115,14 @@ export declare class SDKApi extends runtime.BaseAPI {
1100
1115
  * Options call for this endpoint
1101
1116
  */
1102
1117
  createEmbeddedWalletsOptions(requestParameters: CreateEmbeddedWalletsOptionsRequest, initOverrides?: RequestInit): Promise<void>;
1118
+ /**
1119
+ * Track a global wallet connection
1120
+ */
1121
+ createGlobalWalletConnectionRaw(requestParameters: CreateGlobalWalletConnectionRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GlobalWalletConnection>>;
1122
+ /**
1123
+ * Track a global wallet connection
1124
+ */
1125
+ createGlobalWalletConnection(requestParameters: CreateGlobalWalletConnectionRequest, initOverrides?: RequestInit): Promise<GlobalWalletConnection>;
1103
1126
  /**
1104
1127
  * Generate new recovery codes for user
1105
1128
  */
@@ -1180,6 +1203,22 @@ export declare class SDKApi extends runtime.BaseAPI {
1180
1203
  * Delete a device (if not default device)
1181
1204
  */
1182
1205
  deleteMfaDevice(requestParameters: DeleteMfaDeviceRequest, initOverrides?: RequestInit): Promise<void>;
1206
+ /**
1207
+ * Set a global wallet connection as disconnected
1208
+ */
1209
+ disconnectGlobalWalletConnectionRaw(requestParameters: DisconnectGlobalWalletConnectionRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GlobalWalletConnection>>;
1210
+ /**
1211
+ * Set a global wallet connection as disconnected
1212
+ */
1213
+ disconnectGlobalWalletConnection(requestParameters: DisconnectGlobalWalletConnectionRequest, initOverrides?: RequestInit): Promise<GlobalWalletConnection>;
1214
+ /**
1215
+ * Options call for this endpoint
1216
+ */
1217
+ disconnectGlobalWalletConnectionOptionsRaw(requestParameters: DisconnectGlobalWalletConnectionOptionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
1218
+ /**
1219
+ * Options call for this endpoint
1220
+ */
1221
+ disconnectGlobalWalletConnectionOptions(requestParameters: DisconnectGlobalWalletConnectionOptionsRequest, initOverrides?: RequestInit): Promise<void>;
1183
1222
  /**
1184
1223
  * Options call for this endpoint
1185
1224
  */
@@ -1702,6 +1741,14 @@ export declare class SDKApi extends runtime.BaseAPI {
1702
1741
  * Gets passkey data associated with a user
1703
1742
  */
1704
1743
  getUserPasskeys(requestParameters: GetUserPasskeysRequest, initOverrides?: RequestInit): Promise<GetUserPasskeysResponse>;
1744
+ /**
1745
+ * Options call for this endpoint
1746
+ */
1747
+ globalWalletConnectionsOptionsRaw(requestParameters: GlobalWalletConnectionsOptionsRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<void>>;
1748
+ /**
1749
+ * Options call for this endpoint
1750
+ */
1751
+ globalWalletConnectionsOptions(requestParameters: GlobalWalletConnectionsOptionsRequest, initOverrides?: RequestInit): Promise<void>;
1705
1752
  /**
1706
1753
  * Options call for this endpoint
1707
1754
  */
@@ -70,6 +70,9 @@ import { GetPasskeyAuthenticationOptionsResponseFromJSON } from '../models/GetPa
70
70
  import { GetPasskeyRegistrationOptionsResponseFromJSON } from '../models/GetPasskeyRegistrationOptionsResponse.js';
71
71
  import { GetUserPasskeysResponseFromJSON } from '../models/GetUserPasskeysResponse.js';
72
72
  import '../models/GlobalWalletAccessControlTypeEnum.js';
73
+ import { GlobalWalletConnectionFromJSON } from '../models/GlobalWalletConnection.js';
74
+ import { GlobalWalletConnectionCreateRequestToJSON } from '../models/GlobalWalletConnectionCreateRequest.js';
75
+ import '../models/GlobalWalletConnectionStatusEnum.js';
73
76
  import { GlobalWalletSettingsFromJSON } from '../models/GlobalWalletSettings.js';
74
77
  import { HealthcheckResponseFromJSON } from '../models/HealthcheckResponse.js';
75
78
  import '../models/HealthcheckStatus.js';
@@ -1094,6 +1097,46 @@ class SDKApi extends BaseAPI {
1094
1097
  yield this.createEmbeddedWalletsOptionsRaw(requestParameters, initOverrides);
1095
1098
  });
1096
1099
  }
1100
+ /**
1101
+ * Track a global wallet connection
1102
+ */
1103
+ createGlobalWalletConnectionRaw(requestParameters, initOverrides) {
1104
+ return __awaiter(this, void 0, void 0, function* () {
1105
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
1106
+ throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling createGlobalWalletConnection.');
1107
+ }
1108
+ if (requestParameters.globalWalletConnectionCreateRequest === null || requestParameters.globalWalletConnectionCreateRequest === undefined) {
1109
+ throw new RequiredError('globalWalletConnectionCreateRequest', 'Required parameter requestParameters.globalWalletConnectionCreateRequest was null or undefined when calling createGlobalWalletConnection.');
1110
+ }
1111
+ const queryParameters = {};
1112
+ const headerParameters = {};
1113
+ headerParameters['Content-Type'] = 'application/json';
1114
+ if (this.configuration && this.configuration.accessToken) {
1115
+ const token = this.configuration.accessToken;
1116
+ const tokenString = yield token("bearerAuth", []);
1117
+ if (tokenString) {
1118
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
1119
+ }
1120
+ }
1121
+ const response = yield this.request({
1122
+ path: `/sdk/{environmentId}/globalWallets/connections`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
1123
+ method: 'POST',
1124
+ headers: headerParameters,
1125
+ query: queryParameters,
1126
+ body: GlobalWalletConnectionCreateRequestToJSON(requestParameters.globalWalletConnectionCreateRequest),
1127
+ }, initOverrides);
1128
+ return new JSONApiResponse(response, (jsonValue) => GlobalWalletConnectionFromJSON(jsonValue));
1129
+ });
1130
+ }
1131
+ /**
1132
+ * Track a global wallet connection
1133
+ */
1134
+ createGlobalWalletConnection(requestParameters, initOverrides) {
1135
+ return __awaiter(this, void 0, void 0, function* () {
1136
+ const response = yield this.createGlobalWalletConnectionRaw(requestParameters, initOverrides);
1137
+ return yield response.value();
1138
+ });
1139
+ }
1097
1140
  /**
1098
1141
  * Generate new recovery codes for user
1099
1142
  */
@@ -1415,6 +1458,74 @@ class SDKApi extends BaseAPI {
1415
1458
  yield this.deleteMfaDeviceRaw(requestParameters, initOverrides);
1416
1459
  });
1417
1460
  }
1461
+ /**
1462
+ * Set a global wallet connection as disconnected
1463
+ */
1464
+ disconnectGlobalWalletConnectionRaw(requestParameters, initOverrides) {
1465
+ return __awaiter(this, void 0, void 0, function* () {
1466
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
1467
+ throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling disconnectGlobalWalletConnection.');
1468
+ }
1469
+ if (requestParameters.globalWalletConnectionId === null || requestParameters.globalWalletConnectionId === undefined) {
1470
+ throw new RequiredError('globalWalletConnectionId', 'Required parameter requestParameters.globalWalletConnectionId was null or undefined when calling disconnectGlobalWalletConnection.');
1471
+ }
1472
+ const queryParameters = {};
1473
+ const headerParameters = {};
1474
+ if (this.configuration && this.configuration.accessToken) {
1475
+ const token = this.configuration.accessToken;
1476
+ const tokenString = yield token("bearerAuth", []);
1477
+ if (tokenString) {
1478
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
1479
+ }
1480
+ }
1481
+ const response = yield this.request({
1482
+ path: `/sdk/{environmentId}/globalWallets/connections/{globalWalletConnectionId}/disconnect`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"globalWalletConnectionId"}}`, encodeURIComponent(String(requestParameters.globalWalletConnectionId))),
1483
+ method: 'PUT',
1484
+ headers: headerParameters,
1485
+ query: queryParameters,
1486
+ }, initOverrides);
1487
+ return new JSONApiResponse(response, (jsonValue) => GlobalWalletConnectionFromJSON(jsonValue));
1488
+ });
1489
+ }
1490
+ /**
1491
+ * Set a global wallet connection as disconnected
1492
+ */
1493
+ disconnectGlobalWalletConnection(requestParameters, initOverrides) {
1494
+ return __awaiter(this, void 0, void 0, function* () {
1495
+ const response = yield this.disconnectGlobalWalletConnectionRaw(requestParameters, initOverrides);
1496
+ return yield response.value();
1497
+ });
1498
+ }
1499
+ /**
1500
+ * Options call for this endpoint
1501
+ */
1502
+ disconnectGlobalWalletConnectionOptionsRaw(requestParameters, initOverrides) {
1503
+ return __awaiter(this, void 0, void 0, function* () {
1504
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
1505
+ throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling disconnectGlobalWalletConnectionOptions.');
1506
+ }
1507
+ if (requestParameters.globalWalletConnectionId === null || requestParameters.globalWalletConnectionId === undefined) {
1508
+ throw new RequiredError('globalWalletConnectionId', 'Required parameter requestParameters.globalWalletConnectionId was null or undefined when calling disconnectGlobalWalletConnectionOptions.');
1509
+ }
1510
+ const queryParameters = {};
1511
+ const headerParameters = {};
1512
+ const response = yield this.request({
1513
+ path: `/sdk/{environmentId}/globalWallets/connections/{globalWalletConnectionId}/disconnect`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"globalWalletConnectionId"}}`, encodeURIComponent(String(requestParameters.globalWalletConnectionId))),
1514
+ method: 'OPTIONS',
1515
+ headers: headerParameters,
1516
+ query: queryParameters,
1517
+ }, initOverrides);
1518
+ return new VoidApiResponse(response);
1519
+ });
1520
+ }
1521
+ /**
1522
+ * Options call for this endpoint
1523
+ */
1524
+ disconnectGlobalWalletConnectionOptions(requestParameters, initOverrides) {
1525
+ return __awaiter(this, void 0, void 0, function* () {
1526
+ yield this.disconnectGlobalWalletConnectionOptionsRaw(requestParameters, initOverrides);
1527
+ });
1528
+ }
1418
1529
  /**
1419
1530
  * Options call for this endpoint
1420
1531
  */
@@ -3512,6 +3623,33 @@ class SDKApi extends BaseAPI {
3512
3623
  return yield response.value();
3513
3624
  });
3514
3625
  }
3626
+ /**
3627
+ * Options call for this endpoint
3628
+ */
3629
+ globalWalletConnectionsOptionsRaw(requestParameters, initOverrides) {
3630
+ return __awaiter(this, void 0, void 0, function* () {
3631
+ if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
3632
+ throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling globalWalletConnectionsOptions.');
3633
+ }
3634
+ const queryParameters = {};
3635
+ const headerParameters = {};
3636
+ const response = yield this.request({
3637
+ path: `/sdk/{environmentId}/globalWallets/connections`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
3638
+ method: 'OPTIONS',
3639
+ headers: headerParameters,
3640
+ query: queryParameters,
3641
+ }, initOverrides);
3642
+ return new VoidApiResponse(response);
3643
+ });
3644
+ }
3645
+ /**
3646
+ * Options call for this endpoint
3647
+ */
3648
+ globalWalletConnectionsOptions(requestParameters, initOverrides) {
3649
+ return __awaiter(this, void 0, void 0, function* () {
3650
+ yield this.globalWalletConnectionsOptionsRaw(requestParameters, initOverrides);
3651
+ });
3652
+ }
3515
3653
  /**
3516
3654
  * Options call for this endpoint
3517
3655
  */
package/src/index.cjs CHANGED
@@ -103,6 +103,9 @@ var GetPasskeyAuthenticationOptionsResponse = require('./models/GetPasskeyAuthen
103
103
  var GetPasskeyRegistrationOptionsResponse = require('./models/GetPasskeyRegistrationOptionsResponse.cjs');
104
104
  var GetUserPasskeysResponse = require('./models/GetUserPasskeysResponse.cjs');
105
105
  var GlobalWalletAccessControlTypeEnum = require('./models/GlobalWalletAccessControlTypeEnum.cjs');
106
+ var GlobalWalletConnection = require('./models/GlobalWalletConnection.cjs');
107
+ var GlobalWalletConnectionCreateRequest = require('./models/GlobalWalletConnectionCreateRequest.cjs');
108
+ var GlobalWalletConnectionStatusEnum = require('./models/GlobalWalletConnectionStatusEnum.cjs');
106
109
  var GlobalWalletSettings = require('./models/GlobalWalletSettings.cjs');
107
110
  var GlobalWalletSettingsCustomMenuLinks = require('./models/GlobalWalletSettingsCustomMenuLinks.cjs');
108
111
  var HCaptchaSettings = require('./models/HCaptchaSettings.cjs');
@@ -216,6 +219,7 @@ var ProjectSettingsSdkEmailSignIn = require('./models/ProjectSettingsSdkEmailSig
216
219
  var ProjectSettingsSdkEmbeddedWallets = require('./models/ProjectSettingsSdkEmbeddedWallets.cjs');
217
220
  var ProjectSettingsSdkSocialSignIn = require('./models/ProjectSettingsSdkSocialSignIn.cjs');
218
221
  var ProjectSettingsSdkWaas = require('./models/ProjectSettingsSdkWaas.cjs');
222
+ var ProjectSettingsSdkWaasDelegatedAccess = require('./models/ProjectSettingsSdkWaasDelegatedAccess.cjs');
219
223
  var ProjectSettingsSdkWaasOnSignUp = require('./models/ProjectSettingsSdkWaasOnSignUp.cjs');
220
224
  var ProjectSettingsSdkWalletConnect = require('./models/ProjectSettingsSdkWalletConnect.cjs');
221
225
  var ProjectSettingsSecurity = require('./models/ProjectSettingsSecurity.cjs');
@@ -715,6 +719,19 @@ Object.defineProperty(exports, 'GlobalWalletAccessControlTypeEnum', {
715
719
  exports.GlobalWalletAccessControlTypeEnumFromJSON = GlobalWalletAccessControlTypeEnum.GlobalWalletAccessControlTypeEnumFromJSON;
716
720
  exports.GlobalWalletAccessControlTypeEnumFromJSONTyped = GlobalWalletAccessControlTypeEnum.GlobalWalletAccessControlTypeEnumFromJSONTyped;
717
721
  exports.GlobalWalletAccessControlTypeEnumToJSON = GlobalWalletAccessControlTypeEnum.GlobalWalletAccessControlTypeEnumToJSON;
722
+ exports.GlobalWalletConnectionFromJSON = GlobalWalletConnection.GlobalWalletConnectionFromJSON;
723
+ exports.GlobalWalletConnectionFromJSONTyped = GlobalWalletConnection.GlobalWalletConnectionFromJSONTyped;
724
+ exports.GlobalWalletConnectionToJSON = GlobalWalletConnection.GlobalWalletConnectionToJSON;
725
+ exports.GlobalWalletConnectionCreateRequestFromJSON = GlobalWalletConnectionCreateRequest.GlobalWalletConnectionCreateRequestFromJSON;
726
+ exports.GlobalWalletConnectionCreateRequestFromJSONTyped = GlobalWalletConnectionCreateRequest.GlobalWalletConnectionCreateRequestFromJSONTyped;
727
+ exports.GlobalWalletConnectionCreateRequestToJSON = GlobalWalletConnectionCreateRequest.GlobalWalletConnectionCreateRequestToJSON;
728
+ Object.defineProperty(exports, 'GlobalWalletConnectionStatusEnum', {
729
+ enumerable: true,
730
+ get: function () { return GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnum; }
731
+ });
732
+ exports.GlobalWalletConnectionStatusEnumFromJSON = GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumFromJSON;
733
+ exports.GlobalWalletConnectionStatusEnumFromJSONTyped = GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumFromJSONTyped;
734
+ exports.GlobalWalletConnectionStatusEnumToJSON = GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumToJSON;
718
735
  exports.GlobalWalletSettingsFromJSON = GlobalWalletSettings.GlobalWalletSettingsFromJSON;
719
736
  exports.GlobalWalletSettingsFromJSONTyped = GlobalWalletSettings.GlobalWalletSettingsFromJSONTyped;
720
737
  exports.GlobalWalletSettingsToJSON = GlobalWalletSettings.GlobalWalletSettingsToJSON;
@@ -1114,6 +1131,9 @@ exports.ProjectSettingsSdkSocialSignInToJSON = ProjectSettingsSdkSocialSignIn.Pr
1114
1131
  exports.ProjectSettingsSdkWaasFromJSON = ProjectSettingsSdkWaas.ProjectSettingsSdkWaasFromJSON;
1115
1132
  exports.ProjectSettingsSdkWaasFromJSONTyped = ProjectSettingsSdkWaas.ProjectSettingsSdkWaasFromJSONTyped;
1116
1133
  exports.ProjectSettingsSdkWaasToJSON = ProjectSettingsSdkWaas.ProjectSettingsSdkWaasToJSON;
1134
+ exports.ProjectSettingsSdkWaasDelegatedAccessFromJSON = ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessFromJSON;
1135
+ exports.ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped = ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped;
1136
+ exports.ProjectSettingsSdkWaasDelegatedAccessToJSON = ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessToJSON;
1117
1137
  exports.ProjectSettingsSdkWaasOnSignUpFromJSON = ProjectSettingsSdkWaasOnSignUp.ProjectSettingsSdkWaasOnSignUpFromJSON;
1118
1138
  exports.ProjectSettingsSdkWaasOnSignUpFromJSONTyped = ProjectSettingsSdkWaasOnSignUp.ProjectSettingsSdkWaasOnSignUpFromJSONTyped;
1119
1139
  exports.ProjectSettingsSdkWaasOnSignUpToJSON = ProjectSettingsSdkWaasOnSignUp.ProjectSettingsSdkWaasOnSignUpToJSON;
package/src/index.js CHANGED
@@ -99,6 +99,9 @@ export { GetPasskeyAuthenticationOptionsResponseFromJSON, GetPasskeyAuthenticati
99
99
  export { GetPasskeyRegistrationOptionsResponseFromJSON, GetPasskeyRegistrationOptionsResponseFromJSONTyped, GetPasskeyRegistrationOptionsResponseToJSON } from './models/GetPasskeyRegistrationOptionsResponse.js';
100
100
  export { GetUserPasskeysResponseFromJSON, GetUserPasskeysResponseFromJSONTyped, GetUserPasskeysResponseToJSON } from './models/GetUserPasskeysResponse.js';
101
101
  export { GlobalWalletAccessControlTypeEnum, GlobalWalletAccessControlTypeEnumFromJSON, GlobalWalletAccessControlTypeEnumFromJSONTyped, GlobalWalletAccessControlTypeEnumToJSON } from './models/GlobalWalletAccessControlTypeEnum.js';
102
+ export { GlobalWalletConnectionFromJSON, GlobalWalletConnectionFromJSONTyped, GlobalWalletConnectionToJSON } from './models/GlobalWalletConnection.js';
103
+ export { GlobalWalletConnectionCreateRequestFromJSON, GlobalWalletConnectionCreateRequestFromJSONTyped, GlobalWalletConnectionCreateRequestToJSON } from './models/GlobalWalletConnectionCreateRequest.js';
104
+ export { GlobalWalletConnectionStatusEnum, GlobalWalletConnectionStatusEnumFromJSON, GlobalWalletConnectionStatusEnumFromJSONTyped, GlobalWalletConnectionStatusEnumToJSON } from './models/GlobalWalletConnectionStatusEnum.js';
102
105
  export { GlobalWalletSettingsFromJSON, GlobalWalletSettingsFromJSONTyped, GlobalWalletSettingsToJSON } from './models/GlobalWalletSettings.js';
103
106
  export { GlobalWalletSettingsCustomMenuLinksFromJSON, GlobalWalletSettingsCustomMenuLinksFromJSONTyped, GlobalWalletSettingsCustomMenuLinksToJSON } from './models/GlobalWalletSettingsCustomMenuLinks.js';
104
107
  export { HCaptchaSettingsFromJSON, HCaptchaSettingsFromJSONTyped, HCaptchaSettingsToJSON } from './models/HCaptchaSettings.js';
@@ -212,6 +215,7 @@ export { ProjectSettingsSdkEmailSignInFromJSON, ProjectSettingsSdkEmailSignInFro
212
215
  export { ProjectSettingsSdkEmbeddedWalletsFromJSON, ProjectSettingsSdkEmbeddedWalletsFromJSONTyped, ProjectSettingsSdkEmbeddedWalletsToJSON } from './models/ProjectSettingsSdkEmbeddedWallets.js';
213
216
  export { ProjectSettingsSdkSocialSignInFromJSON, ProjectSettingsSdkSocialSignInFromJSONTyped, ProjectSettingsSdkSocialSignInToJSON } from './models/ProjectSettingsSdkSocialSignIn.js';
214
217
  export { ProjectSettingsSdkWaasFromJSON, ProjectSettingsSdkWaasFromJSONTyped, ProjectSettingsSdkWaasToJSON } from './models/ProjectSettingsSdkWaas.js';
218
+ export { ProjectSettingsSdkWaasDelegatedAccessFromJSON, ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped, ProjectSettingsSdkWaasDelegatedAccessToJSON } from './models/ProjectSettingsSdkWaasDelegatedAccess.js';
215
219
  export { ProjectSettingsSdkWaasOnSignUpFromJSON, ProjectSettingsSdkWaasOnSignUpFromJSONTyped, ProjectSettingsSdkWaasOnSignUpToJSON } from './models/ProjectSettingsSdkWaasOnSignUp.js';
216
220
  export { ProjectSettingsSdkWalletConnectFromJSON, ProjectSettingsSdkWalletConnectFromJSONTyped, ProjectSettingsSdkWalletConnectToJSON } from './models/ProjectSettingsSdkWalletConnect.js';
217
221
  export { ProjectSettingsSecurityFromJSON, ProjectSettingsSecurityFromJSONTyped, ProjectSettingsSecurityToJSON } from './models/ProjectSettingsSecurity.js';
@@ -0,0 +1,48 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var runtime = require('../runtime.cjs');
6
+ var GlobalWalletConnectionStatusEnum = require('./GlobalWalletConnectionStatusEnum.cjs');
7
+
8
+ /* tslint:disable */
9
+ function GlobalWalletConnectionFromJSON(json) {
10
+ return GlobalWalletConnectionFromJSONTyped(json);
11
+ }
12
+ function GlobalWalletConnectionFromJSONTyped(json, ignoreDiscriminator) {
13
+ if ((json === undefined) || (json === null)) {
14
+ return json;
15
+ }
16
+ return {
17
+ 'id': json['id'],
18
+ 'userId': json['userId'],
19
+ 'connectionId': json['connectionId'],
20
+ 'appUrl': json['appUrl'],
21
+ 'status': GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumFromJSON(json['status']),
22
+ 'expiresAt': !runtime.exists(json, 'expiresAt') ? undefined : (json['expiresAt'] === null ? null : new Date(json['expiresAt'])),
23
+ 'createdAt': (new Date(json['createdAt'])),
24
+ 'updatedAt': !runtime.exists(json, 'updatedAt') ? undefined : (new Date(json['updatedAt'])),
25
+ };
26
+ }
27
+ function GlobalWalletConnectionToJSON(value) {
28
+ if (value === undefined) {
29
+ return undefined;
30
+ }
31
+ if (value === null) {
32
+ return null;
33
+ }
34
+ return {
35
+ 'id': value.id,
36
+ 'userId': value.userId,
37
+ 'connectionId': value.connectionId,
38
+ 'appUrl': value.appUrl,
39
+ 'status': GlobalWalletConnectionStatusEnum.GlobalWalletConnectionStatusEnumToJSON(value.status),
40
+ 'expiresAt': value.expiresAt === undefined ? undefined : (value.expiresAt === null ? null : value.expiresAt.toISOString()),
41
+ 'createdAt': (value.createdAt.toISOString()),
42
+ 'updatedAt': value.updatedAt === undefined ? undefined : (value.updatedAt.toISOString()),
43
+ };
44
+ }
45
+
46
+ exports.GlobalWalletConnectionFromJSON = GlobalWalletConnectionFromJSON;
47
+ exports.GlobalWalletConnectionFromJSONTyped = GlobalWalletConnectionFromJSONTyped;
48
+ exports.GlobalWalletConnectionToJSON = GlobalWalletConnectionToJSON;
@@ -0,0 +1,70 @@
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 { GlobalWalletConnectionStatusEnum } from './GlobalWalletConnectionStatusEnum';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GlobalWalletConnection
17
+ */
18
+ export interface GlobalWalletConnection {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof GlobalWalletConnection
23
+ */
24
+ id: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof GlobalWalletConnection
29
+ */
30
+ userId: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof GlobalWalletConnection
35
+ */
36
+ connectionId: string;
37
+ /**
38
+ * An [RFC 6454](https://www.rfc-editor.org/rfc/rfc6454) valid url. Must not include any paths. A single wildcard (*) can be used as the first subdomain.
39
+ * @type {string}
40
+ * @memberof GlobalWalletConnection
41
+ */
42
+ appUrl: string;
43
+ /**
44
+ *
45
+ * @type {GlobalWalletConnectionStatusEnum}
46
+ * @memberof GlobalWalletConnection
47
+ */
48
+ status: GlobalWalletConnectionStatusEnum;
49
+ /**
50
+ * If global wallet connection status is connected, then this timestamp will be present.
51
+ * @type {Date}
52
+ * @memberof GlobalWalletConnection
53
+ */
54
+ expiresAt?: Date | null;
55
+ /**
56
+ *
57
+ * @type {Date}
58
+ * @memberof GlobalWalletConnection
59
+ */
60
+ createdAt: Date;
61
+ /**
62
+ *
63
+ * @type {Date}
64
+ * @memberof GlobalWalletConnection
65
+ */
66
+ updatedAt?: Date;
67
+ }
68
+ export declare function GlobalWalletConnectionFromJSON(json: any): GlobalWalletConnection;
69
+ export declare function GlobalWalletConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletConnection;
70
+ export declare function GlobalWalletConnectionToJSON(value?: GlobalWalletConnection | null): any;
@@ -0,0 +1,42 @@
1
+ import { exists } from '../runtime.js';
2
+ import { GlobalWalletConnectionStatusEnumFromJSON, GlobalWalletConnectionStatusEnumToJSON } from './GlobalWalletConnectionStatusEnum.js';
3
+
4
+ /* tslint:disable */
5
+ function GlobalWalletConnectionFromJSON(json) {
6
+ return GlobalWalletConnectionFromJSONTyped(json);
7
+ }
8
+ function GlobalWalletConnectionFromJSONTyped(json, ignoreDiscriminator) {
9
+ if ((json === undefined) || (json === null)) {
10
+ return json;
11
+ }
12
+ return {
13
+ 'id': json['id'],
14
+ 'userId': json['userId'],
15
+ 'connectionId': json['connectionId'],
16
+ 'appUrl': json['appUrl'],
17
+ 'status': GlobalWalletConnectionStatusEnumFromJSON(json['status']),
18
+ 'expiresAt': !exists(json, 'expiresAt') ? undefined : (json['expiresAt'] === null ? null : new Date(json['expiresAt'])),
19
+ 'createdAt': (new Date(json['createdAt'])),
20
+ 'updatedAt': !exists(json, 'updatedAt') ? undefined : (new Date(json['updatedAt'])),
21
+ };
22
+ }
23
+ function GlobalWalletConnectionToJSON(value) {
24
+ if (value === undefined) {
25
+ return undefined;
26
+ }
27
+ if (value === null) {
28
+ return null;
29
+ }
30
+ return {
31
+ 'id': value.id,
32
+ 'userId': value.userId,
33
+ 'connectionId': value.connectionId,
34
+ 'appUrl': value.appUrl,
35
+ 'status': GlobalWalletConnectionStatusEnumToJSON(value.status),
36
+ 'expiresAt': value.expiresAt === undefined ? undefined : (value.expiresAt === null ? null : value.expiresAt.toISOString()),
37
+ 'createdAt': (value.createdAt.toISOString()),
38
+ 'updatedAt': value.updatedAt === undefined ? undefined : (value.updatedAt.toISOString()),
39
+ };
40
+ }
41
+
42
+ export { GlobalWalletConnectionFromJSON, GlobalWalletConnectionFromJSONTyped, GlobalWalletConnectionToJSON };
@@ -0,0 +1,45 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ function GlobalWalletConnectionCreateRequestFromJSON(json) {
19
+ return GlobalWalletConnectionCreateRequestFromJSONTyped(json);
20
+ }
21
+ function GlobalWalletConnectionCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'connectionId': json['connectionId'],
27
+ 'expiresAt': (new Date(json['expiresAt'])),
28
+ };
29
+ }
30
+ function GlobalWalletConnectionCreateRequestToJSON(value) {
31
+ if (value === undefined) {
32
+ return undefined;
33
+ }
34
+ if (value === null) {
35
+ return null;
36
+ }
37
+ return {
38
+ 'connectionId': value.connectionId,
39
+ 'expiresAt': (value.expiresAt.toISOString()),
40
+ };
41
+ }
42
+
43
+ exports.GlobalWalletConnectionCreateRequestFromJSON = GlobalWalletConnectionCreateRequestFromJSON;
44
+ exports.GlobalWalletConnectionCreateRequestFromJSONTyped = GlobalWalletConnectionCreateRequestFromJSONTyped;
45
+ exports.GlobalWalletConnectionCreateRequestToJSON = GlobalWalletConnectionCreateRequestToJSON;
@@ -0,0 +1,33 @@
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 GlobalWalletConnectionCreateRequest
16
+ */
17
+ export interface GlobalWalletConnectionCreateRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof GlobalWalletConnectionCreateRequest
22
+ */
23
+ connectionId: string;
24
+ /**
25
+ *
26
+ * @type {Date}
27
+ * @memberof GlobalWalletConnectionCreateRequest
28
+ */
29
+ expiresAt: Date;
30
+ }
31
+ export declare function GlobalWalletConnectionCreateRequestFromJSON(json: any): GlobalWalletConnectionCreateRequest;
32
+ export declare function GlobalWalletConnectionCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletConnectionCreateRequest;
33
+ export declare function GlobalWalletConnectionCreateRequestToJSON(value?: GlobalWalletConnectionCreateRequest | null): any;
@@ -0,0 +1,39 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard API documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ function GlobalWalletConnectionCreateRequestFromJSON(json) {
15
+ return GlobalWalletConnectionCreateRequestFromJSONTyped(json);
16
+ }
17
+ function GlobalWalletConnectionCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
18
+ if ((json === undefined) || (json === null)) {
19
+ return json;
20
+ }
21
+ return {
22
+ 'connectionId': json['connectionId'],
23
+ 'expiresAt': (new Date(json['expiresAt'])),
24
+ };
25
+ }
26
+ function GlobalWalletConnectionCreateRequestToJSON(value) {
27
+ if (value === undefined) {
28
+ return undefined;
29
+ }
30
+ if (value === null) {
31
+ return null;
32
+ }
33
+ return {
34
+ 'connectionId': value.connectionId,
35
+ 'expiresAt': (value.expiresAt.toISOString()),
36
+ };
37
+ }
38
+
39
+ export { GlobalWalletConnectionCreateRequestFromJSON, GlobalWalletConnectionCreateRequestFromJSONTyped, GlobalWalletConnectionCreateRequestToJSON };
@@ -0,0 +1,40 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ /**
8
+ * Dashboard API
9
+ * Dashboard API documentation
10
+ *
11
+ * The version of the OpenAPI document: 1.0.0
12
+ *
13
+ *
14
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
15
+ * https://openapi-generator.tech
16
+ * Do not edit the class manually.
17
+ */
18
+ /**
19
+ *
20
+ * @export
21
+ * @enum {string}
22
+ */
23
+ exports.GlobalWalletConnectionStatusEnum = void 0;
24
+ (function (GlobalWalletConnectionStatusEnum) {
25
+ GlobalWalletConnectionStatusEnum["Connected"] = "connected";
26
+ GlobalWalletConnectionStatusEnum["Disconnected"] = "disconnected";
27
+ })(exports.GlobalWalletConnectionStatusEnum || (exports.GlobalWalletConnectionStatusEnum = {}));
28
+ function GlobalWalletConnectionStatusEnumFromJSON(json) {
29
+ return GlobalWalletConnectionStatusEnumFromJSONTyped(json);
30
+ }
31
+ function GlobalWalletConnectionStatusEnumFromJSONTyped(json, ignoreDiscriminator) {
32
+ return json;
33
+ }
34
+ function GlobalWalletConnectionStatusEnumToJSON(value) {
35
+ return value;
36
+ }
37
+
38
+ exports.GlobalWalletConnectionStatusEnumFromJSON = GlobalWalletConnectionStatusEnumFromJSON;
39
+ exports.GlobalWalletConnectionStatusEnumFromJSONTyped = GlobalWalletConnectionStatusEnumFromJSONTyped;
40
+ exports.GlobalWalletConnectionStatusEnumToJSON = GlobalWalletConnectionStatusEnumToJSON;
@@ -0,0 +1,23 @@
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
+ * @enum {string}
16
+ */
17
+ export declare enum GlobalWalletConnectionStatusEnum {
18
+ Connected = "connected",
19
+ Disconnected = "disconnected"
20
+ }
21
+ export declare function GlobalWalletConnectionStatusEnumFromJSON(json: any): GlobalWalletConnectionStatusEnum;
22
+ export declare function GlobalWalletConnectionStatusEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalWalletConnectionStatusEnum;
23
+ export declare function GlobalWalletConnectionStatusEnumToJSON(value?: GlobalWalletConnectionStatusEnum | null): any;
@@ -0,0 +1,34 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Dashboard API
5
+ * Dashboard API documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ *
16
+ * @export
17
+ * @enum {string}
18
+ */
19
+ var GlobalWalletConnectionStatusEnum;
20
+ (function (GlobalWalletConnectionStatusEnum) {
21
+ GlobalWalletConnectionStatusEnum["Connected"] = "connected";
22
+ GlobalWalletConnectionStatusEnum["Disconnected"] = "disconnected";
23
+ })(GlobalWalletConnectionStatusEnum || (GlobalWalletConnectionStatusEnum = {}));
24
+ function GlobalWalletConnectionStatusEnumFromJSON(json) {
25
+ return GlobalWalletConnectionStatusEnumFromJSONTyped(json);
26
+ }
27
+ function GlobalWalletConnectionStatusEnumFromJSONTyped(json, ignoreDiscriminator) {
28
+ return json;
29
+ }
30
+ function GlobalWalletConnectionStatusEnumToJSON(value) {
31
+ return value;
32
+ }
33
+
34
+ export { GlobalWalletConnectionStatusEnum, GlobalWalletConnectionStatusEnumFromJSON, GlobalWalletConnectionStatusEnumFromJSONTyped, GlobalWalletConnectionStatusEnumToJSON };
@@ -3,6 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var runtime = require('../runtime.cjs');
6
+ var ProjectSettingsSdkWaasDelegatedAccess = require('./ProjectSettingsSdkWaasDelegatedAccess.cjs');
6
7
  var ProjectSettingsSdkWaasOnSignUp = require('./ProjectSettingsSdkWaasOnSignUp.cjs');
7
8
  var WaasBackupOptionsEnum = require('./WaasBackupOptionsEnum.cjs');
8
9
 
@@ -20,6 +21,7 @@ function ProjectSettingsSdkWaasFromJSONTyped(json, ignoreDiscriminator) {
20
21
  'backupOptions': (json['backupOptions'].map(WaasBackupOptionsEnum.WaasBackupOptionsEnumFromJSON)),
21
22
  'relayUrl': !runtime.exists(json, 'relayUrl') ? undefined : json['relayUrl'],
22
23
  'delegatedAccessEndpoint': !runtime.exists(json, 'delegatedAccessEndpoint') ? undefined : json['delegatedAccessEndpoint'],
24
+ 'delegatedAccess': !runtime.exists(json, 'delegatedAccess') ? undefined : ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessFromJSON(json['delegatedAccess']),
23
25
  };
24
26
  }
25
27
  function ProjectSettingsSdkWaasToJSON(value) {
@@ -35,6 +37,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
35
37
  'backupOptions': (value.backupOptions.map(WaasBackupOptionsEnum.WaasBackupOptionsEnumToJSON)),
36
38
  'relayUrl': value.relayUrl,
37
39
  'delegatedAccessEndpoint': value.delegatedAccessEndpoint,
40
+ 'delegatedAccess': ProjectSettingsSdkWaasDelegatedAccess.ProjectSettingsSdkWaasDelegatedAccessToJSON(value.delegatedAccess),
38
41
  };
39
42
  }
40
43
 
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { ProjectSettingsSdkWaasDelegatedAccess } from './ProjectSettingsSdkWaasDelegatedAccess';
12
13
  import { ProjectSettingsSdkWaasOnSignUp } from './ProjectSettingsSdkWaasOnSignUp';
13
14
  import { WaasBackupOptionsEnum } from './WaasBackupOptionsEnum';
14
15
  /**
@@ -47,6 +48,12 @@ export interface ProjectSettingsSdkWaas {
47
48
  * @memberof ProjectSettingsSdkWaas
48
49
  */
49
50
  delegatedAccessEndpoint?: string;
51
+ /**
52
+ *
53
+ * @type {ProjectSettingsSdkWaasDelegatedAccess}
54
+ * @memberof ProjectSettingsSdkWaas
55
+ */
56
+ delegatedAccess?: ProjectSettingsSdkWaasDelegatedAccess;
50
57
  }
51
58
  export declare function ProjectSettingsSdkWaasFromJSON(json: any): ProjectSettingsSdkWaas;
52
59
  export declare function ProjectSettingsSdkWaasFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkWaas;
@@ -1,4 +1,5 @@
1
1
  import { exists } from '../runtime.js';
2
+ import { ProjectSettingsSdkWaasDelegatedAccessFromJSON, ProjectSettingsSdkWaasDelegatedAccessToJSON } from './ProjectSettingsSdkWaasDelegatedAccess.js';
2
3
  import { ProjectSettingsSdkWaasOnSignUpFromJSON, ProjectSettingsSdkWaasOnSignUpToJSON } from './ProjectSettingsSdkWaasOnSignUp.js';
3
4
  import { WaasBackupOptionsEnumFromJSON, WaasBackupOptionsEnumToJSON } from './WaasBackupOptionsEnum.js';
4
5
 
@@ -16,6 +17,7 @@ function ProjectSettingsSdkWaasFromJSONTyped(json, ignoreDiscriminator) {
16
17
  'backupOptions': (json['backupOptions'].map(WaasBackupOptionsEnumFromJSON)),
17
18
  'relayUrl': !exists(json, 'relayUrl') ? undefined : json['relayUrl'],
18
19
  'delegatedAccessEndpoint': !exists(json, 'delegatedAccessEndpoint') ? undefined : json['delegatedAccessEndpoint'],
20
+ 'delegatedAccess': !exists(json, 'delegatedAccess') ? undefined : ProjectSettingsSdkWaasDelegatedAccessFromJSON(json['delegatedAccess']),
19
21
  };
20
22
  }
21
23
  function ProjectSettingsSdkWaasToJSON(value) {
@@ -31,6 +33,7 @@ function ProjectSettingsSdkWaasToJSON(value) {
31
33
  'backupOptions': (value.backupOptions.map(WaasBackupOptionsEnumToJSON)),
32
34
  'relayUrl': value.relayUrl,
33
35
  'delegatedAccessEndpoint': value.delegatedAccessEndpoint,
36
+ 'delegatedAccess': ProjectSettingsSdkWaasDelegatedAccessToJSON(value.delegatedAccess),
34
37
  };
35
38
  }
36
39
 
@@ -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 ProjectSettingsSdkWaasDelegatedAccessFromJSON(json) {
9
+ return ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped(json);
10
+ }
11
+ function ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped(json, ignoreDiscriminator) {
12
+ if ((json === undefined) || (json === null)) {
13
+ return json;
14
+ }
15
+ return {
16
+ 'enabled': !runtime.exists(json, 'enabled') ? undefined : json['enabled'],
17
+ };
18
+ }
19
+ function ProjectSettingsSdkWaasDelegatedAccessToJSON(value) {
20
+ if (value === undefined) {
21
+ return undefined;
22
+ }
23
+ if (value === null) {
24
+ return null;
25
+ }
26
+ return {
27
+ 'enabled': value.enabled,
28
+ };
29
+ }
30
+
31
+ exports.ProjectSettingsSdkWaasDelegatedAccessFromJSON = ProjectSettingsSdkWaasDelegatedAccessFromJSON;
32
+ exports.ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped = ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped;
33
+ exports.ProjectSettingsSdkWaasDelegatedAccessToJSON = ProjectSettingsSdkWaasDelegatedAccessToJSON;
@@ -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 ProjectSettingsSdkWaasDelegatedAccess
16
+ */
17
+ export interface ProjectSettingsSdkWaasDelegatedAccess {
18
+ /**
19
+ * Whether delegated access is enabled for the environment. If enabled, developer can trigger user to accept delegated access.
20
+ * @type {boolean}
21
+ * @memberof ProjectSettingsSdkWaasDelegatedAccess
22
+ */
23
+ enabled?: boolean;
24
+ }
25
+ export declare function ProjectSettingsSdkWaasDelegatedAccessFromJSON(json: any): ProjectSettingsSdkWaasDelegatedAccess;
26
+ export declare function ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkWaasDelegatedAccess;
27
+ export declare function ProjectSettingsSdkWaasDelegatedAccessToJSON(value?: ProjectSettingsSdkWaasDelegatedAccess | null): any;
@@ -0,0 +1,27 @@
1
+ import { exists } from '../runtime.js';
2
+
3
+ /* tslint:disable */
4
+ function ProjectSettingsSdkWaasDelegatedAccessFromJSON(json) {
5
+ return ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped(json);
6
+ }
7
+ function ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped(json, ignoreDiscriminator) {
8
+ if ((json === undefined) || (json === null)) {
9
+ return json;
10
+ }
11
+ return {
12
+ 'enabled': !exists(json, 'enabled') ? undefined : json['enabled'],
13
+ };
14
+ }
15
+ function ProjectSettingsSdkWaasDelegatedAccessToJSON(value) {
16
+ if (value === undefined) {
17
+ return undefined;
18
+ }
19
+ if (value === null) {
20
+ return null;
21
+ }
22
+ return {
23
+ 'enabled': value.enabled,
24
+ };
25
+ }
26
+
27
+ export { ProjectSettingsSdkWaasDelegatedAccessFromJSON, ProjectSettingsSdkWaasDelegatedAccessFromJSONTyped, ProjectSettingsSdkWaasDelegatedAccessToJSON };
@@ -134,6 +134,7 @@ exports.UnprocessableEntityErrorCode = void 0;
134
134
  UnprocessableEntityErrorCode["KeyShareAlreadyBackedUp"] = "key_share_already_backed_up";
135
135
  UnprocessableEntityErrorCode["InvalidKeySharesLength"] = "invalid_key_shares_length";
136
136
  UnprocessableEntityErrorCode["WalletServiceConnectionError"] = "wallet_service_connection_error";
137
+ UnprocessableEntityErrorCode["NoGlobalWalletFound"] = "no_global_wallet_found";
137
138
  })(exports.UnprocessableEntityErrorCode || (exports.UnprocessableEntityErrorCode = {}));
138
139
  function UnprocessableEntityErrorCodeFromJSON(json) {
139
140
  return UnprocessableEntityErrorCodeFromJSONTyped(json);
@@ -126,7 +126,8 @@ export declare enum UnprocessableEntityErrorCode {
126
126
  EmbeddedWalletAddressAlreadyLinked = "embedded_wallet_address_already_linked",
127
127
  KeyShareAlreadyBackedUp = "key_share_already_backed_up",
128
128
  InvalidKeySharesLength = "invalid_key_shares_length",
129
- WalletServiceConnectionError = "wallet_service_connection_error"
129
+ WalletServiceConnectionError = "wallet_service_connection_error",
130
+ NoGlobalWalletFound = "no_global_wallet_found"
130
131
  }
131
132
  export declare function UnprocessableEntityErrorCodeFromJSON(json: any): UnprocessableEntityErrorCode;
132
133
  export declare function UnprocessableEntityErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnprocessableEntityErrorCode;
@@ -130,6 +130,7 @@ var UnprocessableEntityErrorCode;
130
130
  UnprocessableEntityErrorCode["KeyShareAlreadyBackedUp"] = "key_share_already_backed_up";
131
131
  UnprocessableEntityErrorCode["InvalidKeySharesLength"] = "invalid_key_shares_length";
132
132
  UnprocessableEntityErrorCode["WalletServiceConnectionError"] = "wallet_service_connection_error";
133
+ UnprocessableEntityErrorCode["NoGlobalWalletFound"] = "no_global_wallet_found";
133
134
  })(UnprocessableEntityErrorCode || (UnprocessableEntityErrorCode = {}));
134
135
  function UnprocessableEntityErrorCodeFromJSON(json) {
135
136
  return UnprocessableEntityErrorCodeFromJSONTyped(json);
@@ -97,6 +97,9 @@ export * from './GetPasskeyAuthenticationOptionsResponse';
97
97
  export * from './GetPasskeyRegistrationOptionsResponse';
98
98
  export * from './GetUserPasskeysResponse';
99
99
  export * from './GlobalWalletAccessControlTypeEnum';
100
+ export * from './GlobalWalletConnection';
101
+ export * from './GlobalWalletConnectionCreateRequest';
102
+ export * from './GlobalWalletConnectionStatusEnum';
100
103
  export * from './GlobalWalletSettings';
101
104
  export * from './GlobalWalletSettingsCustomMenuLinks';
102
105
  export * from './HCaptchaSettings';
@@ -210,6 +213,7 @@ export * from './ProjectSettingsSdkEmailSignIn';
210
213
  export * from './ProjectSettingsSdkEmbeddedWallets';
211
214
  export * from './ProjectSettingsSdkSocialSignIn';
212
215
  export * from './ProjectSettingsSdkWaas';
216
+ export * from './ProjectSettingsSdkWaasDelegatedAccess';
213
217
  export * from './ProjectSettingsSdkWaasOnSignUp';
214
218
  export * from './ProjectSettingsSdkWalletConnect';
215
219
  export * from './ProjectSettingsSecurity';