@dynamic-labs/sdk-api-core 0.0.868 → 0.0.870
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 +1 -1
- package/src/apis/SDKApi.cjs +429 -164
- package/src/apis/SDKApi.d.ts +375 -165
- package/src/apis/SDKApi.js +429 -164
- package/src/index.cjs +8 -0
- package/src/index.js +2 -0
- package/src/models/InlineObject.cjs +43 -0
- package/src/models/InlineObject.d.ts +27 -0
- package/src/models/InlineObject.js +37 -0
- package/src/models/TransactionFeeEstimateResponse.cjs +47 -0
- package/src/models/TransactionFeeEstimateResponse.d.ts +69 -0
- package/src/models/TransactionFeeEstimateResponse.js +41 -0
- package/src/models/index.d.ts +2 -0
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -106,6 +106,7 @@ var InitEmailAuthRequest = require('../models/InitEmailAuthRequest.cjs');
|
|
|
106
106
|
var InitEmailAuthResponse = require('../models/InitEmailAuthResponse.cjs');
|
|
107
107
|
var InitPasskeyRecoveryRequest = require('../models/InitPasskeyRecoveryRequest.cjs');
|
|
108
108
|
var InitPasskeyRecoveryResponse = require('../models/InitPasskeyRecoveryResponse.cjs');
|
|
109
|
+
var InlineObject = require('../models/InlineObject.cjs');
|
|
109
110
|
var JwksResponse = require('../models/JwksResponse.cjs');
|
|
110
111
|
require('../models/MFAAction.cjs');
|
|
111
112
|
require('../models/PublicKeyCredentialType.cjs');
|
|
@@ -184,6 +185,7 @@ var SupportedOfframpsResponse = require('../models/SupportedOfframpsResponse.cjs
|
|
|
184
185
|
var SupportedOnrampsResponse = require('../models/SupportedOnrampsResponse.cjs');
|
|
185
186
|
var TelegramPostRequest = require('../models/TelegramPostRequest.cjs');
|
|
186
187
|
require('../models/TokenScope.cjs');
|
|
188
|
+
var TransactionFeeEstimateResponse = require('../models/TransactionFeeEstimateResponse.cjs');
|
|
187
189
|
var TransferDestinationResponse = require('../models/TransferDestinationResponse.cjs');
|
|
188
190
|
var TurnkeyCreateWalletAccountsRequestBody = require('../models/TurnkeyCreateWalletAccountsRequestBody.cjs');
|
|
189
191
|
var TurnkeyDeleteEmbeddedWalletsRequestBody = require('../models/TurnkeyDeleteEmbeddedWalletsRequestBody.cjs');
|
|
@@ -268,6 +270,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
268
270
|
});
|
|
269
271
|
}
|
|
270
272
|
/**
|
|
273
|
+
* Authenticates via recovery code and upgrades the JWT scope with a valid MFA session.
|
|
271
274
|
* Upgrade JWT scope with valid MFA session
|
|
272
275
|
*/
|
|
273
276
|
authMfaRecoveryRaw(requestParameters, initOverrides) {
|
|
@@ -299,6 +302,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
299
302
|
});
|
|
300
303
|
}
|
|
301
304
|
/**
|
|
305
|
+
* Authenticates via recovery code and upgrades the JWT scope with a valid MFA session.
|
|
302
306
|
* Upgrade JWT scope with valid MFA session
|
|
303
307
|
*/
|
|
304
308
|
authMfaRecovery(requestParameters, initOverrides) {
|
|
@@ -335,6 +339,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
335
339
|
});
|
|
336
340
|
}
|
|
337
341
|
/**
|
|
342
|
+
* Authenticates via TOTP code and upgrades the JWT scope with a valid MFA session.
|
|
338
343
|
* Upgrade JWT scope with valid MFA session
|
|
339
344
|
*/
|
|
340
345
|
authMfaTotpDeviceRaw(requestParameters, initOverrides) {
|
|
@@ -366,6 +371,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
366
371
|
});
|
|
367
372
|
}
|
|
368
373
|
/**
|
|
374
|
+
* Authenticates via TOTP code and upgrades the JWT scope with a valid MFA session.
|
|
369
375
|
* Upgrade JWT scope with valid MFA session
|
|
370
376
|
*/
|
|
371
377
|
authMfaTotpDevice(requestParameters, initOverrides) {
|
|
@@ -402,6 +408,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
402
408
|
});
|
|
403
409
|
}
|
|
404
410
|
/**
|
|
411
|
+
* Authenticates via email verification and upgrades the JWT scope with a valid MFA session.
|
|
405
412
|
* Upgrade JWT scope with valid MFA session
|
|
406
413
|
*/
|
|
407
414
|
authenticateMfaEmailRaw(requestParameters, initOverrides) {
|
|
@@ -433,6 +440,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
433
440
|
});
|
|
434
441
|
}
|
|
435
442
|
/**
|
|
443
|
+
* Authenticates via email verification and upgrades the JWT scope with a valid MFA session.
|
|
436
444
|
* Upgrade JWT scope with valid MFA session
|
|
437
445
|
*/
|
|
438
446
|
authenticateMfaEmail(requestParameters, initOverrides) {
|
|
@@ -442,6 +450,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
442
450
|
});
|
|
443
451
|
}
|
|
444
452
|
/**
|
|
453
|
+
* Authenticates via passkey and upgrades the JWT scope with a valid MFA session.
|
|
445
454
|
* Upgrade JWT scope with valid MFA session
|
|
446
455
|
*/
|
|
447
456
|
authenticateMfaPasskeyDeviceRaw(requestParameters, initOverrides) {
|
|
@@ -473,6 +482,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
473
482
|
});
|
|
474
483
|
}
|
|
475
484
|
/**
|
|
485
|
+
* Authenticates via passkey and upgrades the JWT scope with a valid MFA session.
|
|
476
486
|
* Upgrade JWT scope with valid MFA session
|
|
477
487
|
*/
|
|
478
488
|
authenticateMfaPasskeyDevice(requestParameters, initOverrides) {
|
|
@@ -512,7 +522,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
512
522
|
});
|
|
513
523
|
}
|
|
514
524
|
/**
|
|
515
|
-
*
|
|
525
|
+
* Backs up the client key shares for the specified WAAS wallet.
|
|
526
|
+
* Back up keyshares for a WAAS wallet
|
|
516
527
|
*/
|
|
517
528
|
backupKeySharesRaw(requestParameters, initOverrides) {
|
|
518
529
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -546,7 +557,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
546
557
|
});
|
|
547
558
|
}
|
|
548
559
|
/**
|
|
549
|
-
*
|
|
560
|
+
* Backs up the client key shares for the specified WAAS wallet.
|
|
561
|
+
* Back up keyshares for a WAAS wallet
|
|
550
562
|
*/
|
|
551
563
|
backupKeyShares(requestParameters, initOverrides) {
|
|
552
564
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -585,7 +597,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
585
597
|
});
|
|
586
598
|
}
|
|
587
599
|
/**
|
|
588
|
-
*
|
|
600
|
+
* Backs up the client key shares for the specified WAAS wallet to Google Drive.
|
|
601
|
+
* Back up keyshares to Google Drive
|
|
589
602
|
*/
|
|
590
603
|
backupKeySharesToGoogleDriveRaw(requestParameters, initOverrides) {
|
|
591
604
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -614,7 +627,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
614
627
|
});
|
|
615
628
|
}
|
|
616
629
|
/**
|
|
617
|
-
*
|
|
630
|
+
* Backs up the client key shares for the specified WAAS wallet to Google Drive.
|
|
631
|
+
* Back up keyshares to Google Drive
|
|
618
632
|
*/
|
|
619
633
|
backupKeySharesToGoogleDrive(requestParameters, initOverrides) {
|
|
620
634
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -653,6 +667,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
653
667
|
});
|
|
654
668
|
}
|
|
655
669
|
/**
|
|
670
|
+
* Records a backup action and event for the specified location without performing the actual backup.
|
|
656
671
|
* Create backup action and event for a specified location without performing actual backup
|
|
657
672
|
*/
|
|
658
673
|
backupKeySharesToLocationRaw(requestParameters, initOverrides) {
|
|
@@ -687,6 +702,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
687
702
|
});
|
|
688
703
|
}
|
|
689
704
|
/**
|
|
705
|
+
* Records a backup action and event for the specified location without performing the actual backup.
|
|
690
706
|
* Create backup action and event for a specified location without performing actual backup
|
|
691
707
|
*/
|
|
692
708
|
backupKeySharesToLocation(requestParameters, initOverrides) {
|
|
@@ -726,6 +742,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
726
742
|
});
|
|
727
743
|
}
|
|
728
744
|
/**
|
|
745
|
+
* Records backup actions and events for multiple locations without performing the actual backups.
|
|
729
746
|
* Create backup action and event for multiple locations without performing actual backup
|
|
730
747
|
*/
|
|
731
748
|
backupKeySharesToLocationsRaw(requestParameters, initOverrides) {
|
|
@@ -760,6 +777,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
760
777
|
});
|
|
761
778
|
}
|
|
762
779
|
/**
|
|
780
|
+
* Records backup actions and events for multiple locations without performing the actual backups.
|
|
763
781
|
* Create backup action and event for multiple locations without performing actual backup
|
|
764
782
|
*/
|
|
765
783
|
backupKeySharesToLocations(requestParameters, initOverrides) {
|
|
@@ -800,7 +818,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
800
818
|
}
|
|
801
819
|
/**
|
|
802
820
|
* This endpoint proxies requests to `/sdk/{environmentId}/providers/coinbasesocial/redirect` because Coinbase does not allow the string `coinbase` on the redirect URL path
|
|
803
|
-
*
|
|
821
|
+
* Handle Coinbase OAuth redirect
|
|
804
822
|
*/
|
|
805
823
|
cbOauthRedirectRaw(requestParameters, initOverrides) {
|
|
806
824
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -838,7 +856,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
838
856
|
}
|
|
839
857
|
/**
|
|
840
858
|
* This endpoint proxies requests to `/sdk/{environmentId}/providers/coinbasesocial/redirect` because Coinbase does not allow the string `coinbase` on the redirect URL path
|
|
841
|
-
*
|
|
859
|
+
* Handle Coinbase OAuth redirect
|
|
842
860
|
*/
|
|
843
861
|
cbOauthRedirect(requestParameters, initOverrides) {
|
|
844
862
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -985,6 +1003,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
985
1003
|
});
|
|
986
1004
|
}
|
|
987
1005
|
/**
|
|
1006
|
+
* Claims a pregenerated embedded wallet and associates it with the authenticated user.
|
|
988
1007
|
* Claim a pregenerated embedded wallet
|
|
989
1008
|
*/
|
|
990
1009
|
claimEmbeddedWalletRaw(requestParameters, initOverrides) {
|
|
@@ -1016,6 +1035,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1016
1035
|
});
|
|
1017
1036
|
}
|
|
1018
1037
|
/**
|
|
1038
|
+
* Claims a pregenerated embedded wallet and associates it with the authenticated user.
|
|
1019
1039
|
* Claim a pregenerated embedded wallet
|
|
1020
1040
|
*/
|
|
1021
1041
|
claimEmbeddedWallet(requestParameters, initOverrides) {
|
|
@@ -1134,7 +1154,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1134
1154
|
}
|
|
1135
1155
|
/**
|
|
1136
1156
|
* Completes the passkey recovery process for a user\'s passkey embedded wallet
|
|
1137
|
-
*
|
|
1157
|
+
* Complete passkey recovery for an embedded wallet
|
|
1138
1158
|
*/
|
|
1139
1159
|
completePasskeyRecoveryRaw(requestParameters, initOverrides) {
|
|
1140
1160
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1166,7 +1186,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1166
1186
|
}
|
|
1167
1187
|
/**
|
|
1168
1188
|
* Completes the passkey recovery process for a user\'s passkey embedded wallet
|
|
1169
|
-
*
|
|
1189
|
+
* Complete passkey recovery for an embedded wallet
|
|
1170
1190
|
*/
|
|
1171
1191
|
completePasskeyRecovery(requestParameters, initOverrides) {
|
|
1172
1192
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1175,6 +1195,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1175
1195
|
});
|
|
1176
1196
|
}
|
|
1177
1197
|
/**
|
|
1198
|
+
* Creates a new Coinbase onramp order for the authenticated user.
|
|
1178
1199
|
* Create a Coinbase onramp order
|
|
1179
1200
|
*/
|
|
1180
1201
|
createCoinbaseOnrampOrderRaw(requestParameters, initOverrides) {
|
|
@@ -1206,6 +1227,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1206
1227
|
});
|
|
1207
1228
|
}
|
|
1208
1229
|
/**
|
|
1230
|
+
* Creates a new Coinbase onramp order for the authenticated user.
|
|
1209
1231
|
* Create a Coinbase onramp order
|
|
1210
1232
|
*/
|
|
1211
1233
|
createCoinbaseOnrampOrder(requestParameters, initOverrides) {
|
|
@@ -1257,6 +1279,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1257
1279
|
});
|
|
1258
1280
|
}
|
|
1259
1281
|
/**
|
|
1282
|
+
* Initiates the email verification process and sends a verification code.
|
|
1260
1283
|
* Initialize email verification process
|
|
1261
1284
|
*/
|
|
1262
1285
|
createEmailVerificationRaw(requestParameters, initOverrides) {
|
|
@@ -1281,6 +1304,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1281
1304
|
});
|
|
1282
1305
|
}
|
|
1283
1306
|
/**
|
|
1307
|
+
* Initiates the email verification process and sends a verification code.
|
|
1284
1308
|
* Initialize email verification process
|
|
1285
1309
|
*/
|
|
1286
1310
|
createEmailVerification(requestParameters, initOverrides) {
|
|
@@ -1386,7 +1410,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1386
1410
|
});
|
|
1387
1411
|
}
|
|
1388
1412
|
/**
|
|
1389
|
-
*
|
|
1413
|
+
* Creates a new global wallet connection for the authenticated user.
|
|
1414
|
+
* Create a global wallet connection
|
|
1390
1415
|
*/
|
|
1391
1416
|
createGlobalWalletConnectionRaw(requestParameters, initOverrides) {
|
|
1392
1417
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1417,7 +1442,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1417
1442
|
});
|
|
1418
1443
|
}
|
|
1419
1444
|
/**
|
|
1420
|
-
*
|
|
1445
|
+
* Creates a new global wallet connection for the authenticated user.
|
|
1446
|
+
* Create a global wallet connection
|
|
1421
1447
|
*/
|
|
1422
1448
|
createGlobalWalletConnection(requestParameters, initOverrides) {
|
|
1423
1449
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1426,7 +1452,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1426
1452
|
});
|
|
1427
1453
|
}
|
|
1428
1454
|
/**
|
|
1429
|
-
*
|
|
1455
|
+
* Generates a new set of MFA recovery codes, replacing any existing ones.
|
|
1456
|
+
* Generate new recovery codes
|
|
1430
1457
|
*/
|
|
1431
1458
|
createNewRecoveryCodesRaw(requestParameters, initOverrides) {
|
|
1432
1459
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1452,7 +1479,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1452
1479
|
});
|
|
1453
1480
|
}
|
|
1454
1481
|
/**
|
|
1455
|
-
*
|
|
1482
|
+
* Generates a new set of MFA recovery codes, replacing any existing ones.
|
|
1483
|
+
* Generate new recovery codes
|
|
1456
1484
|
*/
|
|
1457
1485
|
createNewRecoveryCodes(requestParameters, initOverrides) {
|
|
1458
1486
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1461,6 +1489,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1461
1489
|
});
|
|
1462
1490
|
}
|
|
1463
1491
|
/**
|
|
1492
|
+
* Creates MPC ceremony rooms for the specified WAAS wallet.
|
|
1464
1493
|
* Create rooms for a waas mpc ceremony
|
|
1465
1494
|
*/
|
|
1466
1495
|
createRoomsRaw(requestParameters, initOverrides) {
|
|
@@ -1495,6 +1524,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1495
1524
|
});
|
|
1496
1525
|
}
|
|
1497
1526
|
/**
|
|
1527
|
+
* Creates MPC ceremony rooms for the specified WAAS wallet.
|
|
1498
1528
|
* Create rooms for a waas mpc ceremony
|
|
1499
1529
|
*/
|
|
1500
1530
|
createRooms(requestParameters, initOverrides) {
|
|
@@ -1534,6 +1564,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1534
1564
|
});
|
|
1535
1565
|
}
|
|
1536
1566
|
/**
|
|
1567
|
+
* Creates MPC ceremony rooms without requiring an existing wallet ID.
|
|
1537
1568
|
* Create rooms for a waas mpc ceremony without a walletId
|
|
1538
1569
|
*/
|
|
1539
1570
|
createRoomsWithoutWalletIdRaw(requestParameters, initOverrides) {
|
|
@@ -1565,6 +1596,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1565
1596
|
});
|
|
1566
1597
|
}
|
|
1567
1598
|
/**
|
|
1599
|
+
* Creates MPC ceremony rooms without requiring an existing wallet ID.
|
|
1568
1600
|
* Create rooms for a waas mpc ceremony without a walletId
|
|
1569
1601
|
*/
|
|
1570
1602
|
createRoomsWithoutWalletId(requestParameters, initOverrides) {
|
|
@@ -1601,7 +1633,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1601
1633
|
});
|
|
1602
1634
|
}
|
|
1603
1635
|
/**
|
|
1604
|
-
*
|
|
1636
|
+
* Initiates the SMS verification process and sends a verification code.
|
|
1637
|
+
* Initialize SMS verification process
|
|
1605
1638
|
*/
|
|
1606
1639
|
createSmsVerificationRaw(requestParameters, initOverrides) {
|
|
1607
1640
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1625,7 +1658,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1625
1658
|
});
|
|
1626
1659
|
}
|
|
1627
1660
|
/**
|
|
1628
|
-
*
|
|
1661
|
+
* Initiates the SMS verification process and sends a verification code.
|
|
1662
|
+
* Initialize SMS verification process
|
|
1629
1663
|
*/
|
|
1630
1664
|
createSmsVerification(requestParameters, initOverrides) {
|
|
1631
1665
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1696,7 +1730,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1696
1730
|
}
|
|
1697
1731
|
/**
|
|
1698
1732
|
* Create a new waas account
|
|
1699
|
-
* Create a
|
|
1733
|
+
* Create a WAAS wallet
|
|
1700
1734
|
*/
|
|
1701
1735
|
createWaasAccountRaw(requestParameters, initOverrides) {
|
|
1702
1736
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1728,7 +1762,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1728
1762
|
}
|
|
1729
1763
|
/**
|
|
1730
1764
|
* Create a new waas account
|
|
1731
|
-
* Create a
|
|
1765
|
+
* Create a WAAS wallet
|
|
1732
1766
|
*/
|
|
1733
1767
|
createWaasAccount(requestParameters, initOverrides) {
|
|
1734
1768
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1834,7 +1868,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1834
1868
|
}
|
|
1835
1869
|
/**
|
|
1836
1870
|
* Deletes the embedded wallets for a user
|
|
1837
|
-
*
|
|
1871
|
+
* Delete embedded wallets for a user
|
|
1838
1872
|
*/
|
|
1839
1873
|
deleteEmbeddedWalletsRaw(requestParameters, initOverrides) {
|
|
1840
1874
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1863,7 +1897,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1863
1897
|
}
|
|
1864
1898
|
/**
|
|
1865
1899
|
* Deletes the embedded wallets for a user
|
|
1866
|
-
*
|
|
1900
|
+
* Delete embedded wallets for a user
|
|
1867
1901
|
*/
|
|
1868
1902
|
deleteEmbeddedWallets(requestParameters, initOverrides) {
|
|
1869
1903
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1871,7 +1905,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1871
1905
|
});
|
|
1872
1906
|
}
|
|
1873
1907
|
/**
|
|
1874
|
-
*
|
|
1908
|
+
* Permanently removes an MFA device from the authenticated user account.
|
|
1909
|
+
* Delete an MFA device
|
|
1875
1910
|
*/
|
|
1876
1911
|
deleteMfaDeviceRaw(requestParameters, initOverrides) {
|
|
1877
1912
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1906,7 +1941,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1906
1941
|
});
|
|
1907
1942
|
}
|
|
1908
1943
|
/**
|
|
1909
|
-
*
|
|
1944
|
+
* Permanently removes an MFA device from the authenticated user account.
|
|
1945
|
+
* Delete an MFA device
|
|
1910
1946
|
*/
|
|
1911
1947
|
deleteMfaDevice(requestParameters, initOverrides) {
|
|
1912
1948
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -1914,6 +1950,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1914
1950
|
});
|
|
1915
1951
|
}
|
|
1916
1952
|
/**
|
|
1953
|
+
* Permanently removes a passkey from the authenticated user account.
|
|
1917
1954
|
* Delete a passkey
|
|
1918
1955
|
*/
|
|
1919
1956
|
deletePasskeyRaw(requestParameters, initOverrides) {
|
|
@@ -1945,6 +1982,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
1945
1982
|
});
|
|
1946
1983
|
}
|
|
1947
1984
|
/**
|
|
1985
|
+
* Permanently removes a passkey from the authenticated user account.
|
|
1948
1986
|
* Delete a passkey
|
|
1949
1987
|
*/
|
|
1950
1988
|
deletePasskey(requestParameters, initOverrides) {
|
|
@@ -2028,7 +2066,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2028
2066
|
});
|
|
2029
2067
|
}
|
|
2030
2068
|
/**
|
|
2031
|
-
*
|
|
2069
|
+
* Disconnects the specified global wallet connection.
|
|
2070
|
+
* Disconnect a global wallet connection
|
|
2032
2071
|
*/
|
|
2033
2072
|
disconnectGlobalWalletConnectionRaw(requestParameters, initOverrides) {
|
|
2034
2073
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2057,7 +2096,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2057
2096
|
});
|
|
2058
2097
|
}
|
|
2059
2098
|
/**
|
|
2060
|
-
*
|
|
2099
|
+
* Disconnects the specified global wallet connection.
|
|
2100
|
+
* Disconnect a global wallet connection
|
|
2061
2101
|
*/
|
|
2062
2102
|
disconnectGlobalWalletConnection(requestParameters, initOverrides) {
|
|
2063
2103
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2255,6 +2295,87 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2255
2295
|
yield this.embeddedWalletExportOptionsRaw(requestParameters, initOverrides);
|
|
2256
2296
|
});
|
|
2257
2297
|
}
|
|
2298
|
+
/**
|
|
2299
|
+
* Estimates the gas fees for a given raw transaction.
|
|
2300
|
+
* Estimate transaction fees
|
|
2301
|
+
*/
|
|
2302
|
+
estimateTransactionFeeRaw(requestParameters, initOverrides) {
|
|
2303
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2304
|
+
if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
|
|
2305
|
+
throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling estimateTransactionFee.');
|
|
2306
|
+
}
|
|
2307
|
+
if (requestParameters.chainName === null || requestParameters.chainName === undefined) {
|
|
2308
|
+
throw new runtime.RequiredError('chainName', 'Required parameter requestParameters.chainName was null or undefined when calling estimateTransactionFee.');
|
|
2309
|
+
}
|
|
2310
|
+
if (requestParameters.inlineObject === null || requestParameters.inlineObject === undefined) {
|
|
2311
|
+
throw new runtime.RequiredError('inlineObject', 'Required parameter requestParameters.inlineObject was null or undefined when calling estimateTransactionFee.');
|
|
2312
|
+
}
|
|
2313
|
+
const queryParameters = {};
|
|
2314
|
+
const headerParameters = {};
|
|
2315
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
2316
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
2317
|
+
const token = this.configuration.accessToken;
|
|
2318
|
+
const tokenString = yield token("bearerAuth", []);
|
|
2319
|
+
if (tokenString) {
|
|
2320
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
const response = yield this.request({
|
|
2324
|
+
path: `/sdk/{environmentId}/chains/{chainName}/transactions/estimate`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"chainName"}}`, encodeURIComponent(String(requestParameters.chainName))),
|
|
2325
|
+
method: 'POST',
|
|
2326
|
+
headers: headerParameters,
|
|
2327
|
+
query: queryParameters,
|
|
2328
|
+
body: InlineObject.InlineObjectToJSON(requestParameters.inlineObject),
|
|
2329
|
+
}, initOverrides);
|
|
2330
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => TransactionFeeEstimateResponse.TransactionFeeEstimateResponseFromJSON(jsonValue));
|
|
2331
|
+
});
|
|
2332
|
+
}
|
|
2333
|
+
/**
|
|
2334
|
+
* Estimates the gas fees for a given raw transaction.
|
|
2335
|
+
* Estimate transaction fees
|
|
2336
|
+
*/
|
|
2337
|
+
estimateTransactionFee(requestParameters, initOverrides) {
|
|
2338
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2339
|
+
const response = yield this.estimateTransactionFeeRaw(requestParameters, initOverrides);
|
|
2340
|
+
return yield response.value();
|
|
2341
|
+
});
|
|
2342
|
+
}
|
|
2343
|
+
/**
|
|
2344
|
+
* Options call for this endpoint
|
|
2345
|
+
*/
|
|
2346
|
+
estimateTransactionFeeOptionsRaw(requestParameters, initOverrides) {
|
|
2347
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2348
|
+
if (requestParameters.environmentId === null || requestParameters.environmentId === undefined) {
|
|
2349
|
+
throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling estimateTransactionFeeOptions.');
|
|
2350
|
+
}
|
|
2351
|
+
if (requestParameters.chainName === null || requestParameters.chainName === undefined) {
|
|
2352
|
+
throw new runtime.RequiredError('chainName', 'Required parameter requestParameters.chainName was null or undefined when calling estimateTransactionFeeOptions.');
|
|
2353
|
+
}
|
|
2354
|
+
if (requestParameters.networkId === null || requestParameters.networkId === undefined) {
|
|
2355
|
+
throw new runtime.RequiredError('networkId', 'Required parameter requestParameters.networkId was null or undefined when calling estimateTransactionFeeOptions.');
|
|
2356
|
+
}
|
|
2357
|
+
const queryParameters = {};
|
|
2358
|
+
if (requestParameters.networkId !== undefined) {
|
|
2359
|
+
queryParameters['networkId'] = requestParameters.networkId;
|
|
2360
|
+
}
|
|
2361
|
+
const headerParameters = {};
|
|
2362
|
+
const response = yield this.request({
|
|
2363
|
+
path: `/sdk/{environmentId}/chains/{chainName}/transactions/estimate`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"chainName"}}`, encodeURIComponent(String(requestParameters.chainName))),
|
|
2364
|
+
method: 'OPTIONS',
|
|
2365
|
+
headers: headerParameters,
|
|
2366
|
+
query: queryParameters,
|
|
2367
|
+
}, initOverrides);
|
|
2368
|
+
return new runtime.VoidApiResponse(response);
|
|
2369
|
+
});
|
|
2370
|
+
}
|
|
2371
|
+
/**
|
|
2372
|
+
* Options call for this endpoint
|
|
2373
|
+
*/
|
|
2374
|
+
estimateTransactionFeeOptions(requestParameters, initOverrides) {
|
|
2375
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
2376
|
+
yield this.estimateTransactionFeeOptionsRaw(requestParameters, initOverrides);
|
|
2377
|
+
});
|
|
2378
|
+
}
|
|
2258
2379
|
/**
|
|
2259
2380
|
*/
|
|
2260
2381
|
eventsOptionsRaw(requestParameters, initOverrides) {
|
|
@@ -2281,7 +2402,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2281
2402
|
});
|
|
2282
2403
|
}
|
|
2283
2404
|
/**
|
|
2284
|
-
*
|
|
2405
|
+
* Exports the private key of a WAAS wallet through an MPC ceremony.
|
|
2406
|
+
* Export a WAAS wallet private key
|
|
2285
2407
|
*/
|
|
2286
2408
|
exportPrivateKeyRaw(requestParameters, initOverrides) {
|
|
2287
2409
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2315,7 +2437,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2315
2437
|
});
|
|
2316
2438
|
}
|
|
2317
2439
|
/**
|
|
2318
|
-
*
|
|
2440
|
+
* Exports the private key of a WAAS wallet through an MPC ceremony.
|
|
2441
|
+
* Export a WAAS wallet private key
|
|
2319
2442
|
*/
|
|
2320
2443
|
exportPrivateKey(requestParameters, initOverrides) {
|
|
2321
2444
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2354,7 +2477,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2354
2477
|
});
|
|
2355
2478
|
}
|
|
2356
2479
|
/**
|
|
2357
|
-
*
|
|
2480
|
+
* Authenticates a user using a token from an external auth provider.
|
|
2481
|
+
* Sign in with an external auth provider token
|
|
2358
2482
|
*/
|
|
2359
2483
|
externalAuthSigninRaw(requestParameters, initOverrides) {
|
|
2360
2484
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2385,7 +2509,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2385
2509
|
});
|
|
2386
2510
|
}
|
|
2387
2511
|
/**
|
|
2388
|
-
*
|
|
2512
|
+
* Authenticates a user using a token from an external auth provider.
|
|
2513
|
+
* Sign in with an external auth provider token
|
|
2389
2514
|
*/
|
|
2390
2515
|
externalAuthSignin(requestParameters, initOverrides) {
|
|
2391
2516
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2421,6 +2546,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2421
2546
|
});
|
|
2422
2547
|
}
|
|
2423
2548
|
/**
|
|
2549
|
+
* [DEPRECATED] Please use /externalAuth/signin instead.
|
|
2424
2550
|
* [DEPRECATED] Please use /externalAuth/signin instead
|
|
2425
2551
|
*/
|
|
2426
2552
|
externalAuthVerifyRaw(requestParameters, initOverrides) {
|
|
@@ -2452,6 +2578,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2452
2578
|
});
|
|
2453
2579
|
}
|
|
2454
2580
|
/**
|
|
2581
|
+
* [DEPRECATED] Please use /externalAuth/signin instead.
|
|
2455
2582
|
* [DEPRECATED] Please use /externalAuth/signin instead
|
|
2456
2583
|
*/
|
|
2457
2584
|
externalAuthVerify(requestParameters, initOverrides) {
|
|
@@ -2488,7 +2615,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2488
2615
|
}
|
|
2489
2616
|
/**
|
|
2490
2617
|
* Farcaster SignIn endpoint to exchange SIWF data
|
|
2491
|
-
*
|
|
2618
|
+
* Sign in with Farcaster
|
|
2492
2619
|
*/
|
|
2493
2620
|
farcasterSignInRaw(requestParameters, initOverrides) {
|
|
2494
2621
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2510,7 +2637,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2510
2637
|
}
|
|
2511
2638
|
/**
|
|
2512
2639
|
* Farcaster SignIn endpoint to exchange SIWF data
|
|
2513
|
-
*
|
|
2640
|
+
* Sign in with Farcaster
|
|
2514
2641
|
*/
|
|
2515
2642
|
farcasterSignIn(requestParameters, initOverrides) {
|
|
2516
2643
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2547,7 +2674,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2547
2674
|
}
|
|
2548
2675
|
/**
|
|
2549
2676
|
* Farcaster Verify endpoint to exchange SIWF data
|
|
2550
|
-
* Farcaster
|
|
2677
|
+
* Verify Farcaster account linking
|
|
2551
2678
|
*/
|
|
2552
2679
|
farcasterVerifyRaw(requestParameters, initOverrides) {
|
|
2553
2680
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2576,7 +2703,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2576
2703
|
}
|
|
2577
2704
|
/**
|
|
2578
2705
|
* Farcaster Verify endpoint to exchange SIWF data
|
|
2579
|
-
* Farcaster
|
|
2706
|
+
* Verify Farcaster account linking
|
|
2580
2707
|
*/
|
|
2581
2708
|
farcasterVerify(requestParameters, initOverrides) {
|
|
2582
2709
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2612,6 +2739,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2612
2739
|
});
|
|
2613
2740
|
}
|
|
2614
2741
|
/**
|
|
2742
|
+
* Generates a Coinbase onramp buy URL for purchasing crypto.
|
|
2615
2743
|
* Generate a Coinbase onramp buy URL
|
|
2616
2744
|
*/
|
|
2617
2745
|
generateCoinbaseOnrampBuyUrlRaw(requestParameters, initOverrides) {
|
|
@@ -2636,6 +2764,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2636
2764
|
});
|
|
2637
2765
|
}
|
|
2638
2766
|
/**
|
|
2767
|
+
* Generates a Coinbase onramp buy URL for purchasing crypto.
|
|
2639
2768
|
* Generate a Coinbase onramp buy URL
|
|
2640
2769
|
*/
|
|
2641
2770
|
generateCoinbaseOnrampBuyUrl(requestParameters, initOverrides) {
|
|
@@ -2645,7 +2774,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2645
2774
|
});
|
|
2646
2775
|
}
|
|
2647
2776
|
/**
|
|
2648
|
-
*
|
|
2777
|
+
* Returns the token balances for a specific account address on a given chain.
|
|
2778
|
+
* Get token balances for an account
|
|
2649
2779
|
*/
|
|
2650
2780
|
getAccountBalancesRaw(requestParameters, initOverrides) {
|
|
2651
2781
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2691,7 +2821,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2691
2821
|
});
|
|
2692
2822
|
}
|
|
2693
2823
|
/**
|
|
2694
|
-
*
|
|
2824
|
+
* Returns the token balances for a specific account address on a given chain.
|
|
2825
|
+
* Get token balances for an account
|
|
2695
2826
|
*/
|
|
2696
2827
|
getAccountBalances(requestParameters, initOverrides) {
|
|
2697
2828
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2745,7 +2876,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2745
2876
|
});
|
|
2746
2877
|
}
|
|
2747
2878
|
/**
|
|
2748
|
-
*
|
|
2879
|
+
* Returns an auth token for the specified embedded wallet type.
|
|
2880
|
+
* Get an auth token for an embedded wallet type
|
|
2749
2881
|
*/
|
|
2750
2882
|
getAuthTokenRaw(requestParameters, initOverrides) {
|
|
2751
2883
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2774,7 +2906,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2774
2906
|
});
|
|
2775
2907
|
}
|
|
2776
2908
|
/**
|
|
2777
|
-
*
|
|
2909
|
+
* Returns an auth token for the specified embedded wallet type.
|
|
2910
|
+
* Get an auth token for an embedded wallet type
|
|
2778
2911
|
*/
|
|
2779
2912
|
getAuthToken(requestParameters, initOverrides) {
|
|
2780
2913
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2810,7 +2943,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2810
2943
|
});
|
|
2811
2944
|
}
|
|
2812
2945
|
/**
|
|
2813
|
-
*
|
|
2946
|
+
* Returns the full profile of the currently authenticated user.
|
|
2947
|
+
* Get the current user\'s profile
|
|
2814
2948
|
*/
|
|
2815
2949
|
getAuthenticatedUserRaw(requestParameters, initOverrides) {
|
|
2816
2950
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2836,7 +2970,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2836
2970
|
});
|
|
2837
2971
|
}
|
|
2838
2972
|
/**
|
|
2839
|
-
*
|
|
2973
|
+
* Returns the full profile of the currently authenticated user.
|
|
2974
|
+
* Get the current user\'s profile
|
|
2840
2975
|
*/
|
|
2841
2976
|
getAuthenticatedUser(requestParameters, initOverrides) {
|
|
2842
2977
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2933,7 +3068,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2933
3068
|
}
|
|
2934
3069
|
/**
|
|
2935
3070
|
* Generates the request body for a user\'s create V2 wallet account request
|
|
2936
|
-
*
|
|
3071
|
+
* Generate the create wallet account request body
|
|
2937
3072
|
*/
|
|
2938
3073
|
getCreateWalletAccountRequestRaw(requestParameters, initOverrides) {
|
|
2939
3074
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2966,7 +3101,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2966
3101
|
}
|
|
2967
3102
|
/**
|
|
2968
3103
|
* Generates the request body for a user\'s create V2 wallet account request
|
|
2969
|
-
*
|
|
3104
|
+
* Generate the create wallet account request body
|
|
2970
3105
|
*/
|
|
2971
3106
|
getCreateWalletAccountRequest(requestParameters, initOverrides) {
|
|
2972
3107
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2976,6 +3111,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2976
3111
|
}
|
|
2977
3112
|
/**
|
|
2978
3113
|
* Exchange rates for the given currency
|
|
3114
|
+
* Get currency exchange rates
|
|
2979
3115
|
*/
|
|
2980
3116
|
getCurrencyExchangeRatesRaw(requestParameters, initOverrides) {
|
|
2981
3117
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -2995,6 +3131,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
2995
3131
|
}
|
|
2996
3132
|
/**
|
|
2997
3133
|
* Exchange rates for the given currency
|
|
3134
|
+
* Get currency exchange rates
|
|
2998
3135
|
*/
|
|
2999
3136
|
getCurrencyExchangeRates(requestParameters, initOverrides) {
|
|
3000
3137
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3031,7 +3168,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3031
3168
|
}
|
|
3032
3169
|
/**
|
|
3033
3170
|
* Return the email provider to be used for signing in with a given email. If an external provider such as magicLink is disabled, this endpoint would return emailOnly. If an external provider such as magicLink is enabled, it will return emailOnly when the email already exists in Dynamic and it is associated with a wallet, otherwise it will return magicLink.
|
|
3034
|
-
* Get
|
|
3171
|
+
* Get the sign-in email provider
|
|
3035
3172
|
*/
|
|
3036
3173
|
getEmailProviderRaw(requestParameters, initOverrides) {
|
|
3037
3174
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3057,7 +3194,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3057
3194
|
}
|
|
3058
3195
|
/**
|
|
3059
3196
|
* Return the email provider to be used for signing in with a given email. If an external provider such as magicLink is disabled, this endpoint would return emailOnly. If an external provider such as magicLink is enabled, it will return emailOnly when the email already exists in Dynamic and it is associated with a wallet, otherwise it will return magicLink.
|
|
3060
|
-
* Get
|
|
3197
|
+
* Get the sign-in email provider
|
|
3061
3198
|
*/
|
|
3062
3199
|
getEmailProvider(requestParameters, initOverrides) {
|
|
3063
3200
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3093,7 +3230,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3093
3230
|
});
|
|
3094
3231
|
}
|
|
3095
3232
|
/**
|
|
3096
|
-
*
|
|
3233
|
+
* Returns the backup key for an embedded wallet.
|
|
3234
|
+
* Get the backup key for an embedded wallet
|
|
3097
3235
|
*/
|
|
3098
3236
|
getEmbeddedWalletBackupsRaw(requestParameters, initOverrides) {
|
|
3099
3237
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3119,7 +3257,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3119
3257
|
});
|
|
3120
3258
|
}
|
|
3121
3259
|
/**
|
|
3122
|
-
*
|
|
3260
|
+
* Returns the backup key for an embedded wallet.
|
|
3261
|
+
* Get the backup key for an embedded wallet
|
|
3123
3262
|
*/
|
|
3124
3263
|
getEmbeddedWalletBackups(requestParameters, initOverrides) {
|
|
3125
3264
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3128,7 +3267,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3128
3267
|
});
|
|
3129
3268
|
}
|
|
3130
3269
|
/**
|
|
3131
|
-
*
|
|
3270
|
+
* Returns the passcode for a pregenerated embedded wallet.
|
|
3271
|
+
* Get the passcode for a pregenerated embedded wallet
|
|
3132
3272
|
*/
|
|
3133
3273
|
getEmbeddedWalletPasscodeRaw(requestParameters, initOverrides) {
|
|
3134
3274
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3154,7 +3294,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3154
3294
|
});
|
|
3155
3295
|
}
|
|
3156
3296
|
/**
|
|
3157
|
-
*
|
|
3297
|
+
* Returns the passcode for a pregenerated embedded wallet.
|
|
3298
|
+
* Get the passcode for a pregenerated embedded wallet
|
|
3158
3299
|
*/
|
|
3159
3300
|
getEmbeddedWalletPasscode(requestParameters, initOverrides) {
|
|
3160
3301
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3191,7 +3332,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3191
3332
|
}
|
|
3192
3333
|
/**
|
|
3193
3334
|
* Generates the request body for a user\'s delete V2 wallets request
|
|
3194
|
-
*
|
|
3335
|
+
* Generate the delete wallets request body
|
|
3195
3336
|
*/
|
|
3196
3337
|
getEmbeddedWalletsDeleteRequestRaw(requestParameters, initOverrides) {
|
|
3197
3338
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3221,7 +3362,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3221
3362
|
}
|
|
3222
3363
|
/**
|
|
3223
3364
|
* Generates the request body for a user\'s delete V2 wallets request
|
|
3224
|
-
*
|
|
3365
|
+
* Generate the delete wallets request body
|
|
3225
3366
|
*/
|
|
3226
3367
|
getEmbeddedWalletsDeleteRequest(requestParameters, initOverrides) {
|
|
3227
3368
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3230,6 +3371,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3230
3371
|
});
|
|
3231
3372
|
}
|
|
3232
3373
|
/**
|
|
3374
|
+
* Returns the OAuth access token for the specified user OAuth account.
|
|
3233
3375
|
* Get the access token for a user OAuth account
|
|
3234
3376
|
*/
|
|
3235
3377
|
getEndUserOauthAccessTokenRaw(requestParameters, initOverrides) {
|
|
@@ -3252,6 +3394,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3252
3394
|
});
|
|
3253
3395
|
}
|
|
3254
3396
|
/**
|
|
3397
|
+
* Returns the OAuth access token for the specified user OAuth account.
|
|
3255
3398
|
* Get the access token for a user OAuth account
|
|
3256
3399
|
*/
|
|
3257
3400
|
getEndUserOauthAccessToken(requestParameters, initOverrides) {
|
|
@@ -3291,7 +3434,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3291
3434
|
});
|
|
3292
3435
|
}
|
|
3293
3436
|
/**
|
|
3294
|
-
*
|
|
3437
|
+
* Returns the project settings and configuration for the specified environment.
|
|
3438
|
+
* Get environment settings
|
|
3295
3439
|
*/
|
|
3296
3440
|
getEnvironmentSettingsRaw(requestParameters, initOverrides) {
|
|
3297
3441
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3313,7 +3457,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3313
3457
|
});
|
|
3314
3458
|
}
|
|
3315
3459
|
/**
|
|
3316
|
-
*
|
|
3460
|
+
* Returns the project settings and configuration for the specified environment.
|
|
3461
|
+
* Get environment settings
|
|
3317
3462
|
*/
|
|
3318
3463
|
getEnvironmentSettings(requestParameters, initOverrides) {
|
|
3319
3464
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3322,6 +3467,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3322
3467
|
});
|
|
3323
3468
|
}
|
|
3324
3469
|
/**
|
|
3470
|
+
* Returns the exchange account transactions for the authenticated user.
|
|
3325
3471
|
* Get the exchange account transactions for a given dynamic user
|
|
3326
3472
|
*/
|
|
3327
3473
|
getExchangeTransactionsRaw(requestParameters, initOverrides) {
|
|
@@ -3354,6 +3500,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3354
3500
|
});
|
|
3355
3501
|
}
|
|
3356
3502
|
/**
|
|
3503
|
+
* Returns the exchange account transactions for the authenticated user.
|
|
3357
3504
|
* Get the exchange account transactions for a given dynamic user
|
|
3358
3505
|
*/
|
|
3359
3506
|
getExchangeTransactions(requestParameters, initOverrides) {
|
|
@@ -3393,6 +3540,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3393
3540
|
});
|
|
3394
3541
|
}
|
|
3395
3542
|
/**
|
|
3543
|
+
* Returns the available transfer destinations for exchange account transactions.
|
|
3396
3544
|
* Get the available exchange transfer destinations for account transactions for a given dynamic user
|
|
3397
3545
|
*/
|
|
3398
3546
|
getExchangeTransferDestinationsRaw(requestParameters, initOverrides) {
|
|
@@ -3422,6 +3570,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3422
3570
|
});
|
|
3423
3571
|
}
|
|
3424
3572
|
/**
|
|
3573
|
+
* Returns the available transfer destinations for exchange account transactions.
|
|
3425
3574
|
* Get the available exchange transfer destinations for account transactions for a given dynamic user
|
|
3426
3575
|
*/
|
|
3427
3576
|
getExchangeTransferDestinations(requestParameters, initOverrides) {
|
|
@@ -3461,6 +3610,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3461
3610
|
});
|
|
3462
3611
|
}
|
|
3463
3612
|
/**
|
|
3613
|
+
* Returns the global wallet settings configured for the specified environment.
|
|
3464
3614
|
* Get the global wallet settings for the environment
|
|
3465
3615
|
*/
|
|
3466
3616
|
getGlobalWalletsSettingsRaw(requestParameters, initOverrides) {
|
|
@@ -3480,6 +3630,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3480
3630
|
});
|
|
3481
3631
|
}
|
|
3482
3632
|
/**
|
|
3633
|
+
* Returns the global wallet settings configured for the specified environment.
|
|
3483
3634
|
* Get the global wallet settings for the environment
|
|
3484
3635
|
*/
|
|
3485
3636
|
getGlobalWalletsSettings(requestParameters, initOverrides) {
|
|
@@ -3490,6 +3641,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3490
3641
|
}
|
|
3491
3642
|
/**
|
|
3492
3643
|
* Health check endpoint to check for uptime of API.
|
|
3644
|
+
* Check API health
|
|
3493
3645
|
*/
|
|
3494
3646
|
getHealthcheckRaw(requestParameters, initOverrides) {
|
|
3495
3647
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3509,6 +3661,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3509
3661
|
}
|
|
3510
3662
|
/**
|
|
3511
3663
|
* Health check endpoint to check for uptime of API.
|
|
3664
|
+
* Check API health
|
|
3512
3665
|
*/
|
|
3513
3666
|
getHealthcheck(requestParameters, initOverrides) {
|
|
3514
3667
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3544,7 +3697,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3544
3697
|
});
|
|
3545
3698
|
}
|
|
3546
3699
|
/**
|
|
3547
|
-
*
|
|
3700
|
+
* Returns the JSON Web Key Set (JWKS) for the specified environment.
|
|
3701
|
+
* Get JWKS for the environment
|
|
3548
3702
|
*/
|
|
3549
3703
|
getJwksByEnvironmentIdRaw(requestParameters, initOverrides) {
|
|
3550
3704
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3563,7 +3717,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3563
3717
|
});
|
|
3564
3718
|
}
|
|
3565
3719
|
/**
|
|
3566
|
-
*
|
|
3720
|
+
* Returns the JSON Web Key Set (JWKS) for the specified environment.
|
|
3721
|
+
* Get JWKS for the environment
|
|
3567
3722
|
*/
|
|
3568
3723
|
getJwksByEnvironmentId(requestParameters, initOverrides) {
|
|
3569
3724
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3572,7 +3727,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3572
3727
|
});
|
|
3573
3728
|
}
|
|
3574
3729
|
/**
|
|
3575
|
-
*
|
|
3730
|
+
* Returns the JSON Web Key Set (JWKS) in JSON format for the specified environment.
|
|
3731
|
+
* Get JWKS for the environment (JSON format)
|
|
3576
3732
|
*/
|
|
3577
3733
|
getJwksJsonByEnvironmentIdRaw(requestParameters, initOverrides) {
|
|
3578
3734
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3591,7 +3747,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3591
3747
|
});
|
|
3592
3748
|
}
|
|
3593
3749
|
/**
|
|
3594
|
-
*
|
|
3750
|
+
* Returns the JSON Web Key Set (JWKS) in JSON format for the specified environment.
|
|
3751
|
+
* Get JWKS for the environment (JSON format)
|
|
3595
3752
|
*/
|
|
3596
3753
|
getJwksJsonByEnvironmentId(requestParameters, initOverrides) {
|
|
3597
3754
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3600,7 +3757,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3600
3757
|
});
|
|
3601
3758
|
}
|
|
3602
3759
|
/**
|
|
3603
|
-
*
|
|
3760
|
+
* Returns details of a specific MFA device by its ID.
|
|
3761
|
+
* Get an MFA device by ID
|
|
3604
3762
|
*/
|
|
3605
3763
|
getMfaDeviceRaw(requestParameters, initOverrides) {
|
|
3606
3764
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3629,7 +3787,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3629
3787
|
});
|
|
3630
3788
|
}
|
|
3631
3789
|
/**
|
|
3632
|
-
*
|
|
3790
|
+
* Returns details of a specific MFA device by its ID.
|
|
3791
|
+
* Get an MFA device by ID
|
|
3633
3792
|
*/
|
|
3634
3793
|
getMfaDevice(requestParameters, initOverrides) {
|
|
3635
3794
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3668,7 +3827,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3668
3827
|
});
|
|
3669
3828
|
}
|
|
3670
3829
|
/**
|
|
3671
|
-
*
|
|
3830
|
+
* Returns the network configurations enabled for the specified environment.
|
|
3831
|
+
* Get network configurations for the environment
|
|
3672
3832
|
*/
|
|
3673
3833
|
getNetworksConfigurationByEnvIdRaw(requestParameters, initOverrides) {
|
|
3674
3834
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3687,7 +3847,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3687
3847
|
});
|
|
3688
3848
|
}
|
|
3689
3849
|
/**
|
|
3690
|
-
*
|
|
3850
|
+
* Returns the network configurations enabled for the specified environment.
|
|
3851
|
+
* Get network configurations for the environment
|
|
3691
3852
|
*/
|
|
3692
3853
|
getNetworksConfigurationByEnvId(requestParameters, initOverrides) {
|
|
3693
3854
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3696,6 +3857,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3696
3857
|
});
|
|
3697
3858
|
}
|
|
3698
3859
|
/**
|
|
3860
|
+
* Creates and returns a nonce for use in the wallet authentication flow.
|
|
3699
3861
|
* Create nonce for authentication flow
|
|
3700
3862
|
*/
|
|
3701
3863
|
getNonceRaw(requestParameters, initOverrides) {
|
|
@@ -3715,6 +3877,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3715
3877
|
});
|
|
3716
3878
|
}
|
|
3717
3879
|
/**
|
|
3880
|
+
* Creates and returns a nonce for use in the wallet authentication flow.
|
|
3718
3881
|
* Create nonce for authentication flow
|
|
3719
3882
|
*/
|
|
3720
3883
|
getNonce(requestParameters, initOverrides) {
|
|
@@ -3724,7 +3887,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3724
3887
|
});
|
|
3725
3888
|
}
|
|
3726
3889
|
/**
|
|
3727
|
-
*
|
|
3890
|
+
* Returns the WebAuthn authentication options for passkey verification.
|
|
3891
|
+
* Get passkey authentication options
|
|
3728
3892
|
*/
|
|
3729
3893
|
getPasskeyAuthenticationOptionsRaw(requestParameters, initOverrides) {
|
|
3730
3894
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3753,7 +3917,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3753
3917
|
});
|
|
3754
3918
|
}
|
|
3755
3919
|
/**
|
|
3756
|
-
*
|
|
3920
|
+
* Returns the WebAuthn authentication options for passkey verification.
|
|
3921
|
+
* Get passkey authentication options
|
|
3757
3922
|
*/
|
|
3758
3923
|
getPasskeyAuthenticationOptions(requestParameters, initOverrides) {
|
|
3759
3924
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3792,7 +3957,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3792
3957
|
});
|
|
3793
3958
|
}
|
|
3794
3959
|
/**
|
|
3795
|
-
*
|
|
3960
|
+
* Returns the WebAuthn authentication options for passkey sign-in.
|
|
3961
|
+
* Get passkey sign-in options
|
|
3796
3962
|
*/
|
|
3797
3963
|
getPasskeyAuthenticationSigninOptionsRaw(requestParameters, initOverrides) {
|
|
3798
3964
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3814,7 +3980,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3814
3980
|
});
|
|
3815
3981
|
}
|
|
3816
3982
|
/**
|
|
3817
|
-
*
|
|
3983
|
+
* Returns the WebAuthn authentication options for passkey sign-in.
|
|
3984
|
+
* Get passkey sign-in options
|
|
3818
3985
|
*/
|
|
3819
3986
|
getPasskeyAuthenticationSigninOptions(requestParameters, initOverrides) {
|
|
3820
3987
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3823,7 +3990,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3823
3990
|
});
|
|
3824
3991
|
}
|
|
3825
3992
|
/**
|
|
3826
|
-
*
|
|
3993
|
+
* Returns the WebAuthn registration options needed to register a new passkey.
|
|
3994
|
+
* Get user passkeys
|
|
3827
3995
|
*/
|
|
3828
3996
|
getPasskeyRegistrationOptionsRaw(requestParameters, initOverrides) {
|
|
3829
3997
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3842,7 +4010,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3842
4010
|
});
|
|
3843
4011
|
}
|
|
3844
4012
|
/**
|
|
3845
|
-
*
|
|
4013
|
+
* Returns the WebAuthn registration options needed to register a new passkey.
|
|
4014
|
+
* Get user passkeys
|
|
3846
4015
|
*/
|
|
3847
4016
|
getPasskeyRegistrationOptions(requestParameters, initOverrides) {
|
|
3848
4017
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3878,6 +4047,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3878
4047
|
});
|
|
3879
4048
|
}
|
|
3880
4049
|
/**
|
|
4050
|
+
* Returns the MFA recovery codes for the authenticated user.
|
|
3881
4051
|
* Get recovery codes
|
|
3882
4052
|
*/
|
|
3883
4053
|
getRecoveryCodesRaw(requestParameters, initOverrides) {
|
|
@@ -3904,6 +4074,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3904
4074
|
});
|
|
3905
4075
|
}
|
|
3906
4076
|
/**
|
|
4077
|
+
* Returns the MFA recovery codes for the authenticated user.
|
|
3907
4078
|
* Get recovery codes
|
|
3908
4079
|
*/
|
|
3909
4080
|
getRecoveryCodes(requestParameters, initOverrides) {
|
|
@@ -3914,7 +4085,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3914
4085
|
}
|
|
3915
4086
|
/**
|
|
3916
4087
|
* Find the configuration for the enabled offramps associated to an environment
|
|
3917
|
-
*
|
|
4088
|
+
* Get enabled offramps for the environment
|
|
3918
4089
|
*/
|
|
3919
4090
|
getSupportedOfframpsRaw(requestParameters, initOverrides) {
|
|
3920
4091
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3952,7 +4123,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3952
4123
|
}
|
|
3953
4124
|
/**
|
|
3954
4125
|
* Find the configuration for the enabled offramps associated to an environment
|
|
3955
|
-
*
|
|
4126
|
+
* Get enabled offramps for the environment
|
|
3956
4127
|
*/
|
|
3957
4128
|
getSupportedOfframps(requestParameters, initOverrides) {
|
|
3958
4129
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -3962,7 +4133,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
3962
4133
|
}
|
|
3963
4134
|
/**
|
|
3964
4135
|
* Find the configuration for the enabled onramps associated to an environment
|
|
3965
|
-
*
|
|
4136
|
+
* Get enabled onramps for the environment
|
|
3966
4137
|
*/
|
|
3967
4138
|
getSupportedOnrampsRaw(requestParameters, initOverrides) {
|
|
3968
4139
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4012,7 +4183,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4012
4183
|
}
|
|
4013
4184
|
/**
|
|
4014
4185
|
* Find the configuration for the enabled onramps associated to an environment
|
|
4015
|
-
*
|
|
4186
|
+
* Get enabled onramps for the environment
|
|
4016
4187
|
*/
|
|
4017
4188
|
getSupportedOnramps(requestParameters, initOverrides) {
|
|
4018
4189
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4021,7 +4192,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4021
4192
|
});
|
|
4022
4193
|
}
|
|
4023
4194
|
/**
|
|
4024
|
-
*
|
|
4195
|
+
* Returns the HTML content for the Telegram login widget.
|
|
4196
|
+
* Get Telegram login widget HTML
|
|
4025
4197
|
*/
|
|
4026
4198
|
getTelegramAuthRaw(requestParameters, initOverrides) {
|
|
4027
4199
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4046,7 +4218,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4046
4218
|
});
|
|
4047
4219
|
}
|
|
4048
4220
|
/**
|
|
4049
|
-
*
|
|
4221
|
+
* Returns the HTML content for the Telegram login widget.
|
|
4222
|
+
* Get Telegram login widget HTML
|
|
4050
4223
|
*/
|
|
4051
4224
|
getTelegramAuth(requestParameters, initOverrides) {
|
|
4052
4225
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4055,6 +4228,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4055
4228
|
});
|
|
4056
4229
|
}
|
|
4057
4230
|
/**
|
|
4231
|
+
* Returns the exchange accounts for the authenticated user on the specified exchange.
|
|
4058
4232
|
* Get the exchange accounts for a given dynamic user
|
|
4059
4233
|
*/
|
|
4060
4234
|
getUserAccountsRaw(requestParameters, initOverrides) {
|
|
@@ -4090,6 +4264,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4090
4264
|
});
|
|
4091
4265
|
}
|
|
4092
4266
|
/**
|
|
4267
|
+
* Returns the exchange accounts for the authenticated user on the specified exchange.
|
|
4093
4268
|
* Get the exchange accounts for a given dynamic user
|
|
4094
4269
|
*/
|
|
4095
4270
|
getUserAccounts(requestParameters, initOverrides) {
|
|
@@ -4196,7 +4371,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4196
4371
|
});
|
|
4197
4372
|
}
|
|
4198
4373
|
/**
|
|
4199
|
-
*
|
|
4374
|
+
* Returns the list of MFA devices registered for the authenticated user.
|
|
4375
|
+
* Get the current user\'s MFA devices
|
|
4200
4376
|
*/
|
|
4201
4377
|
getUserMfaDevicesRaw(requestParameters, initOverrides) {
|
|
4202
4378
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4222,7 +4398,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4222
4398
|
});
|
|
4223
4399
|
}
|
|
4224
4400
|
/**
|
|
4225
|
-
*
|
|
4401
|
+
* Returns the list of MFA devices registered for the authenticated user.
|
|
4402
|
+
* Get the current user\'s MFA devices
|
|
4226
4403
|
*/
|
|
4227
4404
|
getUserMfaDevices(requestParameters, initOverrides) {
|
|
4228
4405
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4231,7 +4408,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4231
4408
|
});
|
|
4232
4409
|
}
|
|
4233
4410
|
/**
|
|
4234
|
-
*
|
|
4411
|
+
* Returns the available MFA methods for the authenticated user.
|
|
4412
|
+
* Get the current user\'s MFA methods
|
|
4235
4413
|
*/
|
|
4236
4414
|
getUserMfaMethodsRaw(requestParameters, initOverrides) {
|
|
4237
4415
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4260,7 +4438,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4260
4438
|
});
|
|
4261
4439
|
}
|
|
4262
4440
|
/**
|
|
4263
|
-
*
|
|
4441
|
+
* Returns the available MFA methods for the authenticated user.
|
|
4442
|
+
* Get the current user\'s MFA methods
|
|
4264
4443
|
*/
|
|
4265
4444
|
getUserMfaMethods(requestParameters, initOverrides) {
|
|
4266
4445
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4269,7 +4448,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4269
4448
|
});
|
|
4270
4449
|
}
|
|
4271
4450
|
/**
|
|
4272
|
-
*
|
|
4451
|
+
* Returns the list of passkeys registered for the authenticated user.
|
|
4452
|
+
* Get user passkeys
|
|
4273
4453
|
*/
|
|
4274
4454
|
getUserPasskeysRaw(requestParameters, initOverrides) {
|
|
4275
4455
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4295,7 +4475,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4295
4475
|
});
|
|
4296
4476
|
}
|
|
4297
4477
|
/**
|
|
4298
|
-
*
|
|
4478
|
+
* Returns the list of passkeys registered for the authenticated user.
|
|
4479
|
+
* Get user passkeys
|
|
4299
4480
|
*/
|
|
4300
4481
|
getUserPasskeys(requestParameters, initOverrides) {
|
|
4301
4482
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4305,7 +4486,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4305
4486
|
}
|
|
4306
4487
|
/**
|
|
4307
4488
|
* Fetches a single WaaS wallet and returns it with the same payload structure as the users endpoint. This endpoint returns user information along with verified credentials filtered to only include the specified WaaS wallet.
|
|
4308
|
-
*
|
|
4489
|
+
* Get a WAAS wallet by address
|
|
4309
4490
|
*/
|
|
4310
4491
|
getWaasWalletWithVerifiedCredentialsRaw(requestParameters, initOverrides) {
|
|
4311
4492
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4335,7 +4516,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4335
4516
|
}
|
|
4336
4517
|
/**
|
|
4337
4518
|
* Fetches a single WaaS wallet and returns it with the same payload structure as the users endpoint. This endpoint returns user information along with verified credentials filtered to only include the specified WaaS wallet.
|
|
4338
|
-
*
|
|
4519
|
+
* Get a WAAS wallet by address
|
|
4339
4520
|
*/
|
|
4340
4521
|
getWaasWalletWithVerifiedCredentials(requestParameters, initOverrides) {
|
|
4341
4522
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4529,7 +4710,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4529
4710
|
}
|
|
4530
4711
|
/**
|
|
4531
4712
|
* Hard delete the authenticated user
|
|
4532
|
-
*
|
|
4713
|
+
* Delete the current user
|
|
4533
4714
|
*/
|
|
4534
4715
|
hardDeleteUserRaw(requestParameters, initOverrides) {
|
|
4535
4716
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4556,7 +4737,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4556
4737
|
}
|
|
4557
4738
|
/**
|
|
4558
4739
|
* Hard delete the authenticated user
|
|
4559
|
-
*
|
|
4740
|
+
* Delete the current user
|
|
4560
4741
|
*/
|
|
4561
4742
|
hardDeleteUser(requestParameters, initOverrides) {
|
|
4562
4743
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4565,7 +4746,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4565
4746
|
}
|
|
4566
4747
|
/**
|
|
4567
4748
|
* Import a private key to create a waas account
|
|
4568
|
-
* Import
|
|
4749
|
+
* Import a private key to create a WAAS wallet
|
|
4569
4750
|
*/
|
|
4570
4751
|
importPrivateKeyRaw(requestParameters, initOverrides) {
|
|
4571
4752
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4597,7 +4778,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4597
4778
|
}
|
|
4598
4779
|
/**
|
|
4599
4780
|
* Import a private key to create a waas account
|
|
4600
|
-
* Import
|
|
4781
|
+
* Import a private key to create a WAAS wallet
|
|
4601
4782
|
*/
|
|
4602
4783
|
importPrivateKey(requestParameters, initOverrides) {
|
|
4603
4784
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4634,7 +4815,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4634
4815
|
}
|
|
4635
4816
|
/**
|
|
4636
4817
|
* This endpoint initializes a secure oauth authentication sequence by providing the state and current url path to the API.
|
|
4637
|
-
* Initialize
|
|
4818
|
+
* Initialize an OAuth authentication sequence
|
|
4638
4819
|
*/
|
|
4639
4820
|
initAuthRaw(requestParameters, initOverrides) {
|
|
4640
4821
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4662,7 +4843,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4662
4843
|
}
|
|
4663
4844
|
/**
|
|
4664
4845
|
* This endpoint initializes a secure oauth authentication sequence by providing the state and current url path to the API.
|
|
4665
|
-
* Initialize
|
|
4846
|
+
* Initialize an OAuth authentication sequence
|
|
4666
4847
|
*/
|
|
4667
4848
|
initAuth(requestParameters, initOverrides) {
|
|
4668
4849
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4839,7 +5020,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4839
5020
|
}
|
|
4840
5021
|
/**
|
|
4841
5022
|
* Generates the turnkey request body for a user\'s delete wallets request
|
|
4842
|
-
*
|
|
5023
|
+
* Generate the delete wallets request body
|
|
4843
5024
|
*/
|
|
4844
5025
|
legacyGetEmbeddedWalletsDeleteRequestRaw(requestParameters, initOverrides) {
|
|
4845
5026
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4866,7 +5047,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4866
5047
|
}
|
|
4867
5048
|
/**
|
|
4868
5049
|
* Generates the turnkey request body for a user\'s delete wallets request
|
|
4869
|
-
*
|
|
5050
|
+
* Generate the delete wallets request body
|
|
4870
5051
|
*/
|
|
4871
5052
|
legacyGetEmbeddedWalletsDeleteRequest(requestParameters, initOverrides) {
|
|
4872
5053
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4932,7 +5113,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4932
5113
|
});
|
|
4933
5114
|
}
|
|
4934
5115
|
/**
|
|
4935
|
-
*
|
|
5116
|
+
* Logs the SDK settings being used by the client for the environment.
|
|
5117
|
+
* Update SDK settings for the environment
|
|
4936
5118
|
*/
|
|
4937
5119
|
logDynamicSdkSettingsRaw(requestParameters, initOverrides) {
|
|
4938
5120
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4956,7 +5138,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4956
5138
|
});
|
|
4957
5139
|
}
|
|
4958
5140
|
/**
|
|
4959
|
-
*
|
|
5141
|
+
* Logs the SDK settings being used by the client for the environment.
|
|
5142
|
+
* Update SDK settings for the environment
|
|
4960
5143
|
*/
|
|
4961
5144
|
logDynamicSdkSettings(requestParameters, initOverrides) {
|
|
4962
5145
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4965,7 +5148,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4965
5148
|
}
|
|
4966
5149
|
/**
|
|
4967
5150
|
* Used to merge two owned accounts connected by email address
|
|
4968
|
-
*
|
|
5151
|
+
* Merge two owned accounts
|
|
4969
5152
|
*/
|
|
4970
5153
|
mergeUsersRaw(requestParameters, initOverrides) {
|
|
4971
5154
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -4992,7 +5175,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4992
5175
|
}
|
|
4993
5176
|
/**
|
|
4994
5177
|
* Used to merge two owned accounts connected by email address
|
|
4995
|
-
*
|
|
5178
|
+
* Merge two owned accounts
|
|
4996
5179
|
*/
|
|
4997
5180
|
mergeUsers(requestParameters, initOverrides) {
|
|
4998
5181
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5083,7 +5266,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5083
5266
|
}
|
|
5084
5267
|
/**
|
|
5085
5268
|
* Endpoint where an oauth provider would return authorization HTML used for mobile-friendly login, such as Apple ID with Touch ID on enabled devices.
|
|
5086
|
-
*
|
|
5269
|
+
* Get OAuth provider authorization HTML
|
|
5087
5270
|
*/
|
|
5088
5271
|
oauthAuthorizeHtmlRaw(requestParameters, initOverrides) {
|
|
5089
5272
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5115,7 +5298,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5115
5298
|
}
|
|
5116
5299
|
/**
|
|
5117
5300
|
* Endpoint where an oauth provider would return authorization HTML used for mobile-friendly login, such as Apple ID with Touch ID on enabled devices.
|
|
5118
|
-
*
|
|
5301
|
+
* Get OAuth provider authorization HTML
|
|
5119
5302
|
*/
|
|
5120
5303
|
oauthAuthorizeHtml(requestParameters, initOverrides) {
|
|
5121
5304
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5154,7 +5337,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5154
5337
|
});
|
|
5155
5338
|
}
|
|
5156
5339
|
/**
|
|
5157
|
-
*
|
|
5340
|
+
* Redirects the user to the specified OAuth provider login page.
|
|
5341
|
+
* Redirect to OAuth provider login
|
|
5158
5342
|
*/
|
|
5159
5343
|
oauthLoginRaw(requestParameters, initOverrides) {
|
|
5160
5344
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5176,7 +5360,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5176
5360
|
});
|
|
5177
5361
|
}
|
|
5178
5362
|
/**
|
|
5179
|
-
*
|
|
5363
|
+
* Redirects the user to the specified OAuth provider login page.
|
|
5364
|
+
* Redirect to OAuth provider login
|
|
5180
5365
|
*/
|
|
5181
5366
|
oauthLogin(requestParameters, initOverrides) {
|
|
5182
5367
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5214,7 +5399,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5214
5399
|
});
|
|
5215
5400
|
}
|
|
5216
5401
|
/**
|
|
5217
|
-
*
|
|
5402
|
+
* Returns the login URL for the specified OAuth provider.
|
|
5403
|
+
* Get the OAuth provider login URL
|
|
5218
5404
|
*/
|
|
5219
5405
|
oauthLoginUrlRaw(requestParameters, initOverrides) {
|
|
5220
5406
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5236,7 +5422,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5236
5422
|
});
|
|
5237
5423
|
}
|
|
5238
5424
|
/**
|
|
5239
|
-
*
|
|
5425
|
+
* Returns the login URL for the specified OAuth provider.
|
|
5426
|
+
* Get the OAuth provider login URL
|
|
5240
5427
|
*/
|
|
5241
5428
|
oauthLoginUrl(requestParameters, initOverrides) {
|
|
5242
5429
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5276,7 +5463,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5276
5463
|
}
|
|
5277
5464
|
/**
|
|
5278
5465
|
* Endpoint where an oauth provider would redirect after a successful user authorizing the oauth application.
|
|
5279
|
-
*
|
|
5466
|
+
* Handle Apple ID OAuth redirect
|
|
5280
5467
|
*/
|
|
5281
5468
|
oauthRedirectAppleRaw(requestParameters, initOverrides) {
|
|
5282
5469
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5318,7 +5505,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5318
5505
|
}
|
|
5319
5506
|
/**
|
|
5320
5507
|
* Endpoint where an oauth provider would redirect after a successful user authorizing the oauth application.
|
|
5321
|
-
*
|
|
5508
|
+
* Handle Apple ID OAuth redirect
|
|
5322
5509
|
*/
|
|
5323
5510
|
oauthRedirectApple(requestParameters, initOverrides) {
|
|
5324
5511
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5355,7 +5542,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5355
5542
|
}
|
|
5356
5543
|
/**
|
|
5357
5544
|
* Endpoint where an oauth provider would redirect after a successful user authorizing the oauth application.
|
|
5358
|
-
*
|
|
5545
|
+
* Handle OAuth provider redirect
|
|
5359
5546
|
*/
|
|
5360
5547
|
oauthRedirectCodeRaw(requestParameters, initOverrides) {
|
|
5361
5548
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5396,7 +5583,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5396
5583
|
}
|
|
5397
5584
|
/**
|
|
5398
5585
|
* Endpoint where an oauth provider would redirect after a successful user authorizing the oauth application.
|
|
5399
|
-
*
|
|
5586
|
+
* Handle OAuth provider redirect
|
|
5400
5587
|
*/
|
|
5401
5588
|
oauthRedirectCode(requestParameters, initOverrides) {
|
|
5402
5589
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5435,7 +5622,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5435
5622
|
});
|
|
5436
5623
|
}
|
|
5437
5624
|
/**
|
|
5438
|
-
* Returns the authorization
|
|
5625
|
+
* Returns the OAuth authorization result for the given state.
|
|
5626
|
+
* Get the OAuth provider authorization result
|
|
5439
5627
|
*/
|
|
5440
5628
|
oauthResultRaw(requestParameters, initOverrides) {
|
|
5441
5629
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5462,7 +5650,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5462
5650
|
});
|
|
5463
5651
|
}
|
|
5464
5652
|
/**
|
|
5465
|
-
* Returns the authorization
|
|
5653
|
+
* Returns the OAuth authorization result for the given state.
|
|
5654
|
+
* Get the OAuth provider authorization result
|
|
5466
5655
|
*/
|
|
5467
5656
|
oauthResult(requestParameters, initOverrides) {
|
|
5468
5657
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5501,8 +5690,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5501
5690
|
});
|
|
5502
5691
|
}
|
|
5503
5692
|
/**
|
|
5504
|
-
* Standard OAuth SignIn callback to exchange
|
|
5505
|
-
*
|
|
5693
|
+
* Standard OAuth SignIn callback to exchange temporary code for oauth access and return a valid Dynamic JWT and user
|
|
5694
|
+
* Sign in with OAuth provider
|
|
5506
5695
|
*/
|
|
5507
5696
|
oauthSignInRaw(requestParameters, initOverrides) {
|
|
5508
5697
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5529,8 +5718,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5529
5718
|
});
|
|
5530
5719
|
}
|
|
5531
5720
|
/**
|
|
5532
|
-
* Standard OAuth SignIn callback to exchange
|
|
5533
|
-
*
|
|
5721
|
+
* Standard OAuth SignIn callback to exchange temporary code for oauth access and return a valid Dynamic JWT and user
|
|
5722
|
+
* Sign in with OAuth provider
|
|
5534
5723
|
*/
|
|
5535
5724
|
oauthSignIn(requestParameters, initOverrides) {
|
|
5536
5725
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5569,8 +5758,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5569
5758
|
});
|
|
5570
5759
|
}
|
|
5571
5760
|
/**
|
|
5572
|
-
* Standard OAuth verify callback to exchange
|
|
5573
|
-
*
|
|
5761
|
+
* Standard OAuth verify callback to exchange temporary code for oauth access
|
|
5762
|
+
* Verify OAuth provider authorization
|
|
5574
5763
|
*/
|
|
5575
5764
|
oauthVerifyRaw(requestParameters, initOverrides) {
|
|
5576
5765
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5597,8 +5786,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5597
5786
|
});
|
|
5598
5787
|
}
|
|
5599
5788
|
/**
|
|
5600
|
-
* Standard OAuth verify callback to exchange
|
|
5601
|
-
*
|
|
5789
|
+
* Standard OAuth verify callback to exchange temporary code for oauth access
|
|
5790
|
+
* Verify OAuth provider authorization
|
|
5602
5791
|
*/
|
|
5603
5792
|
oauthVerify(requestParameters, initOverrides) {
|
|
5604
5793
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -5691,6 +5880,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5691
5880
|
});
|
|
5692
5881
|
}
|
|
5693
5882
|
/**
|
|
5883
|
+
* Adds priority fees and compute unit limits to a Solana transaction for optimization.
|
|
5694
5884
|
* Add fees to a Solana transaction
|
|
5695
5885
|
*/
|
|
5696
5886
|
optimizeTransactionRaw(requestParameters, initOverrides) {
|
|
@@ -5715,6 +5905,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5715
5905
|
});
|
|
5716
5906
|
}
|
|
5717
5907
|
/**
|
|
5908
|
+
* Adds priority fees and compute unit limits to a Solana transaction for optimization.
|
|
5718
5909
|
* Add fees to a Solana transaction
|
|
5719
5910
|
*/
|
|
5720
5911
|
optimizeTransaction(requestParameters, initOverrides) {
|
|
@@ -5805,6 +5996,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5805
5996
|
});
|
|
5806
5997
|
}
|
|
5807
5998
|
/**
|
|
5999
|
+
* Transfers funds from an exchange account to an external address or another account.
|
|
5808
6000
|
* Transfer funds from an exchange account to an external address or another Coinbase account
|
|
5809
6001
|
*/
|
|
5810
6002
|
postExchangeAccountTransferRaw(requestParameters, initOverrides) {
|
|
@@ -5842,6 +6034,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5842
6034
|
});
|
|
5843
6035
|
}
|
|
5844
6036
|
/**
|
|
6037
|
+
* Transfers funds from an exchange account to an external address or another account.
|
|
5845
6038
|
* Transfer funds from an exchange account to an external address or another Coinbase account
|
|
5846
6039
|
*/
|
|
5847
6040
|
postExchangeAccountTransfer(requestParameters, initOverrides) {
|
|
@@ -5884,6 +6077,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5884
6077
|
});
|
|
5885
6078
|
}
|
|
5886
6079
|
/**
|
|
6080
|
+
* Returns token balances for multiple account addresses across different chains.
|
|
5887
6081
|
* Get account balances for multiple addresses
|
|
5888
6082
|
*/
|
|
5889
6083
|
postMultichainAccountBalancesRaw(requestParameters, initOverrides) {
|
|
@@ -5908,6 +6102,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5908
6102
|
});
|
|
5909
6103
|
}
|
|
5910
6104
|
/**
|
|
6105
|
+
* Returns token balances for multiple account addresses across different chains.
|
|
5911
6106
|
* Get account balances for multiple addresses
|
|
5912
6107
|
*/
|
|
5913
6108
|
postMultichainAccountBalances(requestParameters, initOverrides) {
|
|
@@ -5949,6 +6144,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5949
6144
|
});
|
|
5950
6145
|
}
|
|
5951
6146
|
/**
|
|
6147
|
+
* Handles the Telegram authentication callback after user authorization.
|
|
5952
6148
|
* Handle Telegram authentication
|
|
5953
6149
|
*/
|
|
5954
6150
|
postTelegramAuthRaw(requestParameters, initOverrides) {
|
|
@@ -5973,6 +6169,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5973
6169
|
});
|
|
5974
6170
|
}
|
|
5975
6171
|
/**
|
|
6172
|
+
* Handles the Telegram authentication callback after user authorization.
|
|
5976
6173
|
* Handle Telegram authentication
|
|
5977
6174
|
*/
|
|
5978
6175
|
postTelegramAuth(requestParameters, initOverrides) {
|
|
@@ -5982,7 +6179,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
5982
6179
|
}
|
|
5983
6180
|
/**
|
|
5984
6181
|
* Endpoint to send minimal wallet information to the API to prefetch name service information for an address.
|
|
5985
|
-
*
|
|
6182
|
+
* Prefetch information for a wallet address
|
|
5986
6183
|
*/
|
|
5987
6184
|
prefetchRaw(requestParameters, initOverrides) {
|
|
5988
6185
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6007,7 +6204,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6007
6204
|
}
|
|
6008
6205
|
/**
|
|
6009
6206
|
* Endpoint to send minimal wallet information to the API to prefetch name service information for an address.
|
|
6010
|
-
*
|
|
6207
|
+
* Prefetch information for a wallet address
|
|
6011
6208
|
*/
|
|
6012
6209
|
prefetch(requestParameters, initOverrides) {
|
|
6013
6210
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6015,7 +6212,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6015
6212
|
});
|
|
6016
6213
|
}
|
|
6017
6214
|
/**
|
|
6018
|
-
*
|
|
6215
|
+
* Publishes SDK analytics events for the given environment.
|
|
6216
|
+
* Publish SDK events
|
|
6019
6217
|
*/
|
|
6020
6218
|
publishEventRaw(requestParameters, initOverrides) {
|
|
6021
6219
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6039,7 +6237,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6039
6237
|
});
|
|
6040
6238
|
}
|
|
6041
6239
|
/**
|
|
6042
|
-
*
|
|
6240
|
+
* Publishes SDK analytics events for the given environment.
|
|
6241
|
+
* Publish SDK events
|
|
6043
6242
|
*/
|
|
6044
6243
|
publishEvent(requestParameters, initOverrides) {
|
|
6045
6244
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6047,7 +6246,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6047
6246
|
});
|
|
6048
6247
|
}
|
|
6049
6248
|
/**
|
|
6050
|
-
*
|
|
6249
|
+
* Recovers the client key shares for the specified WAAS wallet from backup.
|
|
6250
|
+
* Recover WAAS keyshares
|
|
6051
6251
|
*/
|
|
6052
6252
|
recoverKeySharesRaw(requestParameters, initOverrides) {
|
|
6053
6253
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6078,7 +6278,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6078
6278
|
});
|
|
6079
6279
|
}
|
|
6080
6280
|
/**
|
|
6081
|
-
*
|
|
6281
|
+
* Recovers the client key shares for the specified WAAS wallet from backup.
|
|
6282
|
+
* Recover WAAS keyshares
|
|
6082
6283
|
*/
|
|
6083
6284
|
recoverKeyShares(requestParameters, initOverrides) {
|
|
6084
6285
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6171,7 +6372,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6171
6372
|
});
|
|
6172
6373
|
}
|
|
6173
6374
|
/**
|
|
6174
|
-
*
|
|
6375
|
+
* Refreshes the JWT auth token and returns a new token with updated claims.
|
|
6376
|
+
* Refresh the JWT auth token
|
|
6175
6377
|
*/
|
|
6176
6378
|
refreshAuthRaw(requestParameters, initOverrides) {
|
|
6177
6379
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6197,7 +6399,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6197
6399
|
});
|
|
6198
6400
|
}
|
|
6199
6401
|
/**
|
|
6200
|
-
*
|
|
6402
|
+
* Refreshes the JWT auth token and returns a new token with updated claims.
|
|
6403
|
+
* Refresh the JWT auth token
|
|
6201
6404
|
*/
|
|
6202
6405
|
refreshAuth(requestParameters, initOverrides) {
|
|
6203
6406
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6206,7 +6409,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6206
6409
|
});
|
|
6207
6410
|
}
|
|
6208
6411
|
/**
|
|
6209
|
-
*
|
|
6412
|
+
* Refreshes the MPC key shares for the specified WAAS wallet.
|
|
6413
|
+
* Refresh WAAS keyshares
|
|
6210
6414
|
*/
|
|
6211
6415
|
refreshKeySharesRaw(requestParameters, initOverrides) {
|
|
6212
6416
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6235,7 +6439,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6235
6439
|
});
|
|
6236
6440
|
}
|
|
6237
6441
|
/**
|
|
6238
|
-
*
|
|
6442
|
+
* Refreshes the MPC key shares for the specified WAAS wallet.
|
|
6443
|
+
* Refresh WAAS keyshares
|
|
6239
6444
|
*/
|
|
6240
6445
|
refreshKeyShares(requestParameters, initOverrides) {
|
|
6241
6446
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6301,6 +6506,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6301
6506
|
});
|
|
6302
6507
|
}
|
|
6303
6508
|
/**
|
|
6509
|
+
* Registers a new passkey for the authenticated user using WebAuthn credentials.
|
|
6304
6510
|
* Register a new passkey
|
|
6305
6511
|
*/
|
|
6306
6512
|
registerPasskeyRaw(requestParameters, initOverrides) {
|
|
@@ -6332,6 +6538,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6332
6538
|
});
|
|
6333
6539
|
}
|
|
6334
6540
|
/**
|
|
6541
|
+
* Registers a new passkey for the authenticated user using WebAuthn credentials.
|
|
6335
6542
|
* Register a new passkey
|
|
6336
6543
|
*/
|
|
6337
6544
|
registerPasskey(requestParameters, initOverrides) {
|
|
@@ -6341,7 +6548,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6341
6548
|
});
|
|
6342
6549
|
}
|
|
6343
6550
|
/**
|
|
6344
|
-
*
|
|
6551
|
+
* Initiates passkey MFA device registration and returns the setup details.
|
|
6552
|
+
* Register a passkey MFA device
|
|
6345
6553
|
*/
|
|
6346
6554
|
registerPasskeyMfaDeviceRaw(requestParameters, initOverrides) {
|
|
6347
6555
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6367,7 +6575,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6367
6575
|
});
|
|
6368
6576
|
}
|
|
6369
6577
|
/**
|
|
6370
|
-
*
|
|
6578
|
+
* Initiates passkey MFA device registration and returns the setup details.
|
|
6579
|
+
* Register a passkey MFA device
|
|
6371
6580
|
*/
|
|
6372
6581
|
registerPasskeyMfaDevice(requestParameters, initOverrides) {
|
|
6373
6582
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6403,6 +6612,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6403
6612
|
});
|
|
6404
6613
|
}
|
|
6405
6614
|
/**
|
|
6615
|
+
* Verifies the passkey credential to complete MFA device registration.
|
|
6406
6616
|
* Verify Passkey MFA device
|
|
6407
6617
|
*/
|
|
6408
6618
|
registerPasskeyMfaDeviceVerifyRaw(requestParameters, initOverrides) {
|
|
@@ -6434,6 +6644,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6434
6644
|
});
|
|
6435
6645
|
}
|
|
6436
6646
|
/**
|
|
6647
|
+
* Verifies the passkey credential to complete MFA device registration.
|
|
6437
6648
|
* Verify Passkey MFA device
|
|
6438
6649
|
*/
|
|
6439
6650
|
registerPasskeyMfaDeviceVerify(requestParameters, initOverrides) {
|
|
@@ -6485,7 +6696,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6485
6696
|
});
|
|
6486
6697
|
}
|
|
6487
6698
|
/**
|
|
6488
|
-
*
|
|
6699
|
+
* Initiates TOTP MFA device registration and returns the setup details.
|
|
6700
|
+
* Register a TOTP MFA device
|
|
6489
6701
|
*/
|
|
6490
6702
|
registerTotpMfaDeviceRaw(requestParameters, initOverrides) {
|
|
6491
6703
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6511,7 +6723,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6511
6723
|
});
|
|
6512
6724
|
}
|
|
6513
6725
|
/**
|
|
6514
|
-
*
|
|
6726
|
+
* Initiates TOTP MFA device registration and returns the setup details.
|
|
6727
|
+
* Register a TOTP MFA device
|
|
6515
6728
|
*/
|
|
6516
6729
|
registerTotpMfaDevice(requestParameters, initOverrides) {
|
|
6517
6730
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6547,6 +6760,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6547
6760
|
});
|
|
6548
6761
|
}
|
|
6549
6762
|
/**
|
|
6763
|
+
* Verifies the TOTP code to complete MFA device registration.
|
|
6550
6764
|
* Verify TOTP MFA device
|
|
6551
6765
|
*/
|
|
6552
6766
|
registerTotpMfaDeviceVerifyRaw(requestParameters, initOverrides) {
|
|
@@ -6578,6 +6792,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6578
6792
|
});
|
|
6579
6793
|
}
|
|
6580
6794
|
/**
|
|
6795
|
+
* Verifies the TOTP code to complete MFA device registration.
|
|
6581
6796
|
* Verify TOTP MFA device
|
|
6582
6797
|
*/
|
|
6583
6798
|
registerTotpMfaDeviceVerify(requestParameters, initOverrides) {
|
|
@@ -6587,7 +6802,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6587
6802
|
});
|
|
6588
6803
|
}
|
|
6589
6804
|
/**
|
|
6590
|
-
*
|
|
6805
|
+
* Reshares the MPC secret shares for the specified WAAS wallet.
|
|
6806
|
+
* Reshare WAAS secret shares
|
|
6591
6807
|
*/
|
|
6592
6808
|
reshareRaw(requestParameters, initOverrides) {
|
|
6593
6809
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6621,7 +6837,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6621
6837
|
});
|
|
6622
6838
|
}
|
|
6623
6839
|
/**
|
|
6624
|
-
*
|
|
6840
|
+
* Reshares the MPC secret shares for the specified WAAS wallet.
|
|
6841
|
+
* Reshare WAAS secret shares
|
|
6625
6842
|
*/
|
|
6626
6843
|
reshare(requestParameters, initOverrides) {
|
|
6627
6844
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6729,7 +6946,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6729
6946
|
});
|
|
6730
6947
|
}
|
|
6731
6948
|
/**
|
|
6732
|
-
*
|
|
6949
|
+
* Resends the email verification code to the email address on file.
|
|
6950
|
+
* Resend email verification code
|
|
6733
6951
|
*/
|
|
6734
6952
|
retryEmailVerificationRaw(requestParameters, initOverrides) {
|
|
6735
6953
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6753,7 +6971,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6753
6971
|
});
|
|
6754
6972
|
}
|
|
6755
6973
|
/**
|
|
6756
|
-
*
|
|
6974
|
+
* Resends the email verification code to the email address on file.
|
|
6975
|
+
* Resend email verification code
|
|
6757
6976
|
*/
|
|
6758
6977
|
retryEmailVerification(requestParameters, initOverrides) {
|
|
6759
6978
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6789,7 +7008,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6789
7008
|
});
|
|
6790
7009
|
}
|
|
6791
7010
|
/**
|
|
6792
|
-
*
|
|
7011
|
+
* Resends the SMS verification code to the phone number on file.
|
|
7012
|
+
* Resend SMS verification code
|
|
6793
7013
|
*/
|
|
6794
7014
|
retrySmsVerificationRaw(requestParameters, initOverrides) {
|
|
6795
7015
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6813,7 +7033,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6813
7033
|
});
|
|
6814
7034
|
}
|
|
6815
7035
|
/**
|
|
6816
|
-
*
|
|
7036
|
+
* Resends the SMS verification code to the phone number on file.
|
|
7037
|
+
* Resend SMS verification code
|
|
6817
7038
|
*/
|
|
6818
7039
|
retrySmsVerification(requestParameters, initOverrides) {
|
|
6819
7040
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -6849,6 +7070,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6849
7070
|
});
|
|
6850
7071
|
}
|
|
6851
7072
|
/**
|
|
7073
|
+
* Revokes the current user session and invalidates the JWT.
|
|
6852
7074
|
* Revoke a session
|
|
6853
7075
|
*/
|
|
6854
7076
|
revokeSessionRaw(requestParameters, initOverrides) {
|
|
@@ -6875,6 +7097,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6875
7097
|
});
|
|
6876
7098
|
}
|
|
6877
7099
|
/**
|
|
7100
|
+
* Revokes the current user session and invalidates the JWT.
|
|
6878
7101
|
* Revoke a session
|
|
6879
7102
|
*/
|
|
6880
7103
|
revokeSession(requestParameters, initOverrides) {
|
|
@@ -6910,6 +7133,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6910
7133
|
});
|
|
6911
7134
|
}
|
|
6912
7135
|
/**
|
|
7136
|
+
* Scans a URL for potential phishing or malicious activity and returns the result.
|
|
6913
7137
|
* Scan a URL for potential malicious activity
|
|
6914
7138
|
*/
|
|
6915
7139
|
scanUrlRaw(requestParameters, initOverrides) {
|
|
@@ -6934,6 +7158,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6934
7158
|
});
|
|
6935
7159
|
}
|
|
6936
7160
|
/**
|
|
7161
|
+
* Scans a URL for potential phishing or malicious activity and returns the result.
|
|
6937
7162
|
* Scan a URL for potential malicious activity
|
|
6938
7163
|
*/
|
|
6939
7164
|
scanUrl(requestParameters, initOverrides) {
|
|
@@ -6996,7 +7221,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
6996
7221
|
}
|
|
6997
7222
|
/**
|
|
6998
7223
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
6999
|
-
* Update
|
|
7224
|
+
* Update primary wallet selection
|
|
7000
7225
|
*/
|
|
7001
7226
|
selectUserWalletRaw(requestParameters, initOverrides) {
|
|
7002
7227
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7028,7 +7253,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7028
7253
|
}
|
|
7029
7254
|
/**
|
|
7030
7255
|
* When a user selects a wallet to be the primary wallet in a multi-wallet enabled environment, this endpoint is called to record this on the backend.
|
|
7031
|
-
* Update
|
|
7256
|
+
* Update primary wallet selection
|
|
7032
7257
|
*/
|
|
7033
7258
|
selectUserWallet(requestParameters, initOverrides) {
|
|
7034
7259
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7064,7 +7289,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7064
7289
|
});
|
|
7065
7290
|
}
|
|
7066
7291
|
/**
|
|
7067
|
-
*
|
|
7292
|
+
* Checks whether the current user session is still valid.
|
|
7293
|
+
* Check session validity
|
|
7068
7294
|
*/
|
|
7069
7295
|
sessionCheckRaw(requestParameters, initOverrides) {
|
|
7070
7296
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7090,7 +7316,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7090
7316
|
});
|
|
7091
7317
|
}
|
|
7092
7318
|
/**
|
|
7093
|
-
*
|
|
7319
|
+
* Checks whether the current user session is still valid.
|
|
7320
|
+
* Check session validity
|
|
7094
7321
|
*/
|
|
7095
7322
|
sessionCheck(requestParameters, initOverrides) {
|
|
7096
7323
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7179,7 +7406,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7179
7406
|
});
|
|
7180
7407
|
}
|
|
7181
7408
|
/**
|
|
7182
|
-
*
|
|
7409
|
+
* Verifies the email code and authenticates the user, returning a JWT.
|
|
7410
|
+
* Verify email and sign in
|
|
7183
7411
|
*/
|
|
7184
7412
|
signInWithEmailVerificationRaw(requestParameters, initOverrides) {
|
|
7185
7413
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7203,7 +7431,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7203
7431
|
});
|
|
7204
7432
|
}
|
|
7205
7433
|
/**
|
|
7206
|
-
*
|
|
7434
|
+
* Verifies the email code and authenticates the user, returning a JWT.
|
|
7435
|
+
* Verify email and sign in
|
|
7207
7436
|
*/
|
|
7208
7437
|
signInWithEmailVerification(requestParameters, initOverrides) {
|
|
7209
7438
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7239,7 +7468,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7239
7468
|
});
|
|
7240
7469
|
}
|
|
7241
7470
|
/**
|
|
7242
|
-
*
|
|
7471
|
+
* Verifies the SMS code and authenticates the user, returning a JWT.
|
|
7472
|
+
* Verify SMS and sign in
|
|
7243
7473
|
*/
|
|
7244
7474
|
signInWithSmsVerificationRaw(requestParameters, initOverrides) {
|
|
7245
7475
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7263,7 +7493,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7263
7493
|
});
|
|
7264
7494
|
}
|
|
7265
7495
|
/**
|
|
7266
|
-
*
|
|
7496
|
+
* Verifies the SMS code and authenticates the user, returning a JWT.
|
|
7497
|
+
* Verify SMS and sign in
|
|
7267
7498
|
*/
|
|
7268
7499
|
signInWithSmsVerification(requestParameters, initOverrides) {
|
|
7269
7500
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7299,7 +7530,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7299
7530
|
});
|
|
7300
7531
|
}
|
|
7301
7532
|
/**
|
|
7302
|
-
*
|
|
7533
|
+
* Signs a message using the specified WAAS wallet through an MPC ceremony.
|
|
7534
|
+
* Sign a message with a WAAS wallet
|
|
7303
7535
|
*/
|
|
7304
7536
|
signMessageRaw(requestParameters, initOverrides) {
|
|
7305
7537
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7333,7 +7565,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7333
7565
|
});
|
|
7334
7566
|
}
|
|
7335
7567
|
/**
|
|
7336
|
-
*
|
|
7568
|
+
* Signs a message using the specified WAAS wallet through an MPC ceremony.
|
|
7569
|
+
* Sign a message with a WAAS wallet
|
|
7337
7570
|
*/
|
|
7338
7571
|
signMessage(requestParameters, initOverrides) {
|
|
7339
7572
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7372,6 +7605,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7372
7605
|
});
|
|
7373
7606
|
}
|
|
7374
7607
|
/**
|
|
7608
|
+
* Authenticates a user using a passkey and returns a JWT.
|
|
7375
7609
|
* Authenticate a passkey
|
|
7376
7610
|
*/
|
|
7377
7611
|
signinWithPasskeyRaw(requestParameters, initOverrides) {
|
|
@@ -7396,6 +7630,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7396
7630
|
});
|
|
7397
7631
|
}
|
|
7398
7632
|
/**
|
|
7633
|
+
* Authenticates a user using a passkey and returns a JWT.
|
|
7399
7634
|
* Authenticate a passkey
|
|
7400
7635
|
*/
|
|
7401
7636
|
signinWithPasskey(requestParameters, initOverrides) {
|
|
@@ -7405,6 +7640,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7405
7640
|
});
|
|
7406
7641
|
}
|
|
7407
7642
|
/**
|
|
7643
|
+
* Simulates an EVM transaction and returns the expected outcome.
|
|
7408
7644
|
* Simulate an EVM transaction
|
|
7409
7645
|
*/
|
|
7410
7646
|
simulateEVMTransactionRaw(requestParameters, initOverrides) {
|
|
@@ -7429,6 +7665,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7429
7665
|
});
|
|
7430
7666
|
}
|
|
7431
7667
|
/**
|
|
7668
|
+
* Simulates an EVM transaction and returns the expected outcome.
|
|
7432
7669
|
* Simulate an EVM transaction
|
|
7433
7670
|
*/
|
|
7434
7671
|
simulateEVMTransaction(requestParameters, initOverrides) {
|
|
@@ -7465,6 +7702,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7465
7702
|
});
|
|
7466
7703
|
}
|
|
7467
7704
|
/**
|
|
7705
|
+
* Simulates a Solana transaction and returns the expected outcome.
|
|
7468
7706
|
* Simulate a Solana transaction
|
|
7469
7707
|
*/
|
|
7470
7708
|
simulateSVMTransactionRaw(requestParameters, initOverrides) {
|
|
@@ -7489,6 +7727,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7489
7727
|
});
|
|
7490
7728
|
}
|
|
7491
7729
|
/**
|
|
7730
|
+
* Simulates a Solana transaction and returns the expected outcome.
|
|
7492
7731
|
* Simulate a Solana transaction
|
|
7493
7732
|
*/
|
|
7494
7733
|
simulateSVMTransaction(requestParameters, initOverrides) {
|
|
@@ -7525,6 +7764,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7525
7764
|
});
|
|
7526
7765
|
}
|
|
7527
7766
|
/**
|
|
7767
|
+
* Simulates an EVM Account Abstraction UserOp and returns the expected outcome.
|
|
7528
7768
|
* Simulate an EVM AA UserOp
|
|
7529
7769
|
*/
|
|
7530
7770
|
simulateUserOpRaw(requestParameters, initOverrides) {
|
|
@@ -7549,6 +7789,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7549
7789
|
});
|
|
7550
7790
|
}
|
|
7551
7791
|
/**
|
|
7792
|
+
* Simulates an EVM Account Abstraction UserOp and returns the expected outcome.
|
|
7552
7793
|
* Simulate an EVM AA UserOp
|
|
7553
7794
|
*/
|
|
7554
7795
|
simulateUserOp(requestParameters, initOverrides) {
|
|
@@ -7743,7 +7984,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7743
7984
|
});
|
|
7744
7985
|
}
|
|
7745
7986
|
/**
|
|
7746
|
-
* Telegram
|
|
7987
|
+
* Checks if a Telegram authentication attempt has been completed.
|
|
7988
|
+
* Check Telegram authentication status
|
|
7747
7989
|
*/
|
|
7748
7990
|
telegramCheckAuthRaw(requestParameters, initOverrides) {
|
|
7749
7991
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7764,7 +8006,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7764
8006
|
});
|
|
7765
8007
|
}
|
|
7766
8008
|
/**
|
|
7767
|
-
* Telegram
|
|
8009
|
+
* Checks if a Telegram authentication attempt has been completed.
|
|
8010
|
+
* Check Telegram authentication status
|
|
7768
8011
|
*/
|
|
7769
8012
|
telegramCheckAuth(requestParameters, initOverrides) {
|
|
7770
8013
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7799,7 +8042,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7799
8042
|
});
|
|
7800
8043
|
}
|
|
7801
8044
|
/**
|
|
7802
|
-
* Telegram
|
|
8045
|
+
* Authenticates a user using their Telegram account credentials.
|
|
8046
|
+
* Sign in with Telegram
|
|
7803
8047
|
*/
|
|
7804
8048
|
telegramSignInRaw(requestParameters, initOverrides) {
|
|
7805
8049
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7820,7 +8064,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7820
8064
|
});
|
|
7821
8065
|
}
|
|
7822
8066
|
/**
|
|
7823
|
-
* Telegram
|
|
8067
|
+
* Authenticates a user using their Telegram account credentials.
|
|
8068
|
+
* Sign in with Telegram
|
|
7824
8069
|
*/
|
|
7825
8070
|
telegramSignIn(requestParameters, initOverrides) {
|
|
7826
8071
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7856,7 +8101,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7856
8101
|
});
|
|
7857
8102
|
}
|
|
7858
8103
|
/**
|
|
7859
|
-
* Telegram
|
|
8104
|
+
* Verifies and links a Telegram account to the authenticated user.
|
|
8105
|
+
* Verify Telegram account linking
|
|
7860
8106
|
*/
|
|
7861
8107
|
telegramVerifyRaw(requestParameters, initOverrides) {
|
|
7862
8108
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7884,7 +8130,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7884
8130
|
});
|
|
7885
8131
|
}
|
|
7886
8132
|
/**
|
|
7887
|
-
* Telegram
|
|
8133
|
+
* Verifies and links a Telegram account to the authenticated user.
|
|
8134
|
+
* Verify Telegram account linking
|
|
7888
8135
|
*/
|
|
7889
8136
|
telegramVerify(requestParameters, initOverrides) {
|
|
7890
8137
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7920,6 +8167,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7920
8167
|
});
|
|
7921
8168
|
}
|
|
7922
8169
|
/**
|
|
8170
|
+
* Updates the V2 recovery email address for the authenticated user.
|
|
7923
8171
|
* Update a user\'s V2 recovery email
|
|
7924
8172
|
*/
|
|
7925
8173
|
updateEmbeddedWalletRecoveryEmailRaw(requestParameters, initOverrides) {
|
|
@@ -7951,6 +8199,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7951
8199
|
});
|
|
7952
8200
|
}
|
|
7953
8201
|
/**
|
|
8202
|
+
* Updates the V2 recovery email address for the authenticated user.
|
|
7954
8203
|
* Update a user\'s V2 recovery email
|
|
7955
8204
|
*/
|
|
7956
8205
|
updateEmbeddedWalletRecoveryEmail(requestParameters, initOverrides) {
|
|
@@ -7959,7 +8208,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7959
8208
|
});
|
|
7960
8209
|
}
|
|
7961
8210
|
/**
|
|
7962
|
-
*
|
|
8211
|
+
* Updates the specified passkey for the authenticated user.
|
|
8212
|
+
* Update a passkey
|
|
7963
8213
|
*/
|
|
7964
8214
|
updatePasskeyRaw(requestParameters, initOverrides) {
|
|
7965
8215
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7990,7 +8240,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7990
8240
|
});
|
|
7991
8241
|
}
|
|
7992
8242
|
/**
|
|
7993
|
-
*
|
|
8243
|
+
* Updates the specified passkey for the authenticated user.
|
|
8244
|
+
* Update a passkey
|
|
7994
8245
|
*/
|
|
7995
8246
|
updatePasskey(requestParameters, initOverrides) {
|
|
7996
8247
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -7999,7 +8250,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
7999
8250
|
});
|
|
8000
8251
|
}
|
|
8001
8252
|
/**
|
|
8002
|
-
*
|
|
8253
|
+
* Updates the authenticated user profile fields.
|
|
8254
|
+
* Update user fields
|
|
8003
8255
|
*/
|
|
8004
8256
|
updateSelfRaw(requestParameters, initOverrides) {
|
|
8005
8257
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8030,7 +8282,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8030
8282
|
});
|
|
8031
8283
|
}
|
|
8032
8284
|
/**
|
|
8033
|
-
*
|
|
8285
|
+
* Updates the authenticated user profile fields.
|
|
8286
|
+
* Update user fields
|
|
8034
8287
|
*/
|
|
8035
8288
|
updateSelf(requestParameters, initOverrides) {
|
|
8036
8289
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8039,7 +8292,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8039
8292
|
});
|
|
8040
8293
|
}
|
|
8041
8294
|
/**
|
|
8042
|
-
*
|
|
8295
|
+
* Updates the specified MFA device for the authenticated user.
|
|
8296
|
+
* Update an MFA device
|
|
8043
8297
|
*/
|
|
8044
8298
|
updateUserMfaDeviceRaw(requestParameters, initOverrides) {
|
|
8045
8299
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8070,7 +8324,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8070
8324
|
});
|
|
8071
8325
|
}
|
|
8072
8326
|
/**
|
|
8073
|
-
*
|
|
8327
|
+
* Updates the specified MFA device for the authenticated user.
|
|
8328
|
+
* Update an MFA device
|
|
8074
8329
|
*/
|
|
8075
8330
|
updateUserMfaDevice(requestParameters, initOverrides) {
|
|
8076
8331
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8079,7 +8334,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8079
8334
|
}
|
|
8080
8335
|
/**
|
|
8081
8336
|
* Updates the settings for a WAAS wallet
|
|
8082
|
-
* Update
|
|
8337
|
+
* Update WAAS wallet settings
|
|
8083
8338
|
*/
|
|
8084
8339
|
updateWaasWalletSettingsRaw(requestParameters, initOverrides) {
|
|
8085
8340
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8114,7 +8369,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8114
8369
|
}
|
|
8115
8370
|
/**
|
|
8116
8371
|
* Updates the settings for a WAAS wallet
|
|
8117
|
-
* Update
|
|
8372
|
+
* Update WAAS wallet settings
|
|
8118
8373
|
*/
|
|
8119
8374
|
updateWaasWalletSettings(requestParameters, initOverrides) {
|
|
8120
8375
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8123,6 +8378,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8123
8378
|
});
|
|
8124
8379
|
}
|
|
8125
8380
|
/**
|
|
8381
|
+
* Upgrades a V1 embedded wallet to V2 and returns a refreshed JWT.
|
|
8126
8382
|
* Update V1 embedded wallet to V2
|
|
8127
8383
|
*/
|
|
8128
8384
|
upgradeEmbeddedWalletToV2Raw(requestParameters, initOverrides) {
|
|
@@ -8147,6 +8403,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8147
8403
|
});
|
|
8148
8404
|
}
|
|
8149
8405
|
/**
|
|
8406
|
+
* Upgrades a V1 embedded wallet to V2 and returns a refreshed JWT.
|
|
8150
8407
|
* Update V1 embedded wallet to V2
|
|
8151
8408
|
*/
|
|
8152
8409
|
upgradeEmbeddedWalletToV2(requestParameters, initOverrides) {
|
|
@@ -8237,6 +8494,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8237
8494
|
});
|
|
8238
8495
|
}
|
|
8239
8496
|
/**
|
|
8497
|
+
* Verifies the signed payload and returns a JWT authentication token.
|
|
8240
8498
|
* Verify payload and return JWT
|
|
8241
8499
|
*/
|
|
8242
8500
|
verifyRaw(requestParameters, initOverrides) {
|
|
@@ -8261,6 +8519,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8261
8519
|
});
|
|
8262
8520
|
}
|
|
8263
8521
|
/**
|
|
8522
|
+
* Verifies the signed payload and returns a JWT authentication token.
|
|
8264
8523
|
* Verify payload and return JWT
|
|
8265
8524
|
*/
|
|
8266
8525
|
verify(requestParameters, initOverrides) {
|
|
@@ -8270,7 +8529,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8270
8529
|
});
|
|
8271
8530
|
}
|
|
8272
8531
|
/**
|
|
8273
|
-
*
|
|
8532
|
+
* Verifies the email code and completes the email verification process.
|
|
8533
|
+
* Verify email verification code
|
|
8274
8534
|
*/
|
|
8275
8535
|
verifyEmailVerificationRaw(requestParameters, initOverrides) {
|
|
8276
8536
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8301,7 +8561,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8301
8561
|
});
|
|
8302
8562
|
}
|
|
8303
8563
|
/**
|
|
8304
|
-
*
|
|
8564
|
+
* Verifies the email code and completes the email verification process.
|
|
8565
|
+
* Verify email verification code
|
|
8305
8566
|
*/
|
|
8306
8567
|
verifyEmailVerification(requestParameters, initOverrides) {
|
|
8307
8568
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8338,7 +8599,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8338
8599
|
}
|
|
8339
8600
|
/**
|
|
8340
8601
|
* Link a wallet to a valid environment user, and return an updated JWT
|
|
8341
|
-
* Link wallet to user
|
|
8602
|
+
* Link a wallet to a user
|
|
8342
8603
|
*/
|
|
8343
8604
|
verifyLinkRaw(requestParameters, initOverrides) {
|
|
8344
8605
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8370,7 +8631,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8370
8631
|
}
|
|
8371
8632
|
/**
|
|
8372
8633
|
* Link a wallet to a valid environment user, and return an updated JWT
|
|
8373
|
-
* Link wallet to user
|
|
8634
|
+
* Link a wallet to a user
|
|
8374
8635
|
*/
|
|
8375
8636
|
verifyLink(requestParameters, initOverrides) {
|
|
8376
8637
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8529,7 +8790,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8529
8790
|
});
|
|
8530
8791
|
}
|
|
8531
8792
|
/**
|
|
8532
|
-
*
|
|
8793
|
+
* Verifies the SMS code and completes the phone number verification process.
|
|
8794
|
+
* Verify SMS verification code
|
|
8533
8795
|
*/
|
|
8534
8796
|
verifySmsVerificationRaw(requestParameters, initOverrides) {
|
|
8535
8797
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8560,7 +8822,8 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8560
8822
|
});
|
|
8561
8823
|
}
|
|
8562
8824
|
/**
|
|
8563
|
-
*
|
|
8825
|
+
* Verifies the SMS code and completes the phone number verification process.
|
|
8826
|
+
* Verify SMS verification code
|
|
8564
8827
|
*/
|
|
8565
8828
|
verifySmsVerification(requestParameters, initOverrides) {
|
|
8566
8829
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8597,7 +8860,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8597
8860
|
}
|
|
8598
8861
|
/**
|
|
8599
8862
|
* Used to link a wallet after user has confirmed transfer to the new account
|
|
8600
|
-
* Verify wallet transfer
|
|
8863
|
+
* Verify a wallet transfer
|
|
8601
8864
|
*/
|
|
8602
8865
|
verifyTransferRaw(requestParameters, initOverrides) {
|
|
8603
8866
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8629,7 +8892,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8629
8892
|
}
|
|
8630
8893
|
/**
|
|
8631
8894
|
* Used to link a wallet after user has confirmed transfer to the new account
|
|
8632
|
-
* Verify wallet transfer
|
|
8895
|
+
* Verify a wallet transfer
|
|
8633
8896
|
*/
|
|
8634
8897
|
verifyTransfer(requestParameters, initOverrides) {
|
|
8635
8898
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8666,7 +8929,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8666
8929
|
}
|
|
8667
8930
|
/**
|
|
8668
8931
|
* Remove a link from to a valid environment user, and return an updated JWT
|
|
8669
|
-
*
|
|
8932
|
+
* Unlink a wallet from a user
|
|
8670
8933
|
*/
|
|
8671
8934
|
verifyUnlinkRaw(requestParameters, initOverrides) {
|
|
8672
8935
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8698,7 +8961,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8698
8961
|
}
|
|
8699
8962
|
/**
|
|
8700
8963
|
* Remove a link from to a valid environment user, and return an updated JWT
|
|
8701
|
-
*
|
|
8964
|
+
* Unlink a wallet from a user
|
|
8702
8965
|
*/
|
|
8703
8966
|
verifyUnlink(requestParameters, initOverrides) {
|
|
8704
8967
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8818,6 +9081,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8818
9081
|
});
|
|
8819
9082
|
}
|
|
8820
9083
|
/**
|
|
9084
|
+
* Authenticates a user by verifying their wallet signature.
|
|
8821
9085
|
* Sign in with wallet
|
|
8822
9086
|
*/
|
|
8823
9087
|
walletsSigninRaw(requestParameters, initOverrides) {
|
|
@@ -8842,6 +9106,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8842
9106
|
});
|
|
8843
9107
|
}
|
|
8844
9108
|
/**
|
|
9109
|
+
* Authenticates a user by verifying their wallet signature.
|
|
8845
9110
|
* Sign in with wallet
|
|
8846
9111
|
*/
|
|
8847
9112
|
walletsSignin(requestParameters, initOverrides) {
|
|
@@ -8879,7 +9144,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8879
9144
|
}
|
|
8880
9145
|
/**
|
|
8881
9146
|
* Verify a wallet, and return an updated JWT
|
|
8882
|
-
* Verify wallet
|
|
9147
|
+
* Verify a wallet
|
|
8883
9148
|
*/
|
|
8884
9149
|
walletsVerifyRaw(requestParameters, initOverrides) {
|
|
8885
9150
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
@@ -8911,7 +9176,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
8911
9176
|
}
|
|
8912
9177
|
/**
|
|
8913
9178
|
* Verify a wallet, and return an updated JWT
|
|
8914
|
-
* Verify wallet
|
|
9179
|
+
* Verify a wallet
|
|
8915
9180
|
*/
|
|
8916
9181
|
walletsVerify(requestParameters, initOverrides) {
|
|
8917
9182
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|