@turnkey/http 3.17.1 → 3.18.1
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/CHANGELOG.md +18 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +92 -167
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js +138 -263
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.mjs +138 -263
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.mjs.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts +8201 -3992
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.d.ts.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js +142 -262
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.js.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.mjs +131 -241
- package/dist/__generated__/services/coordinator/public/v1/public_api.fetcher.mjs.map +1 -1
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts +362 -494
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.mjs +1 -1
- package/package.json +2 -2
|
@@ -69,6 +69,28 @@ const signGetApiKeys = (input, options) => base.signedRequest({
|
|
|
69
69
|
body: input.body,
|
|
70
70
|
options,
|
|
71
71
|
});
|
|
72
|
+
/**
|
|
73
|
+
* Get TVC App status
|
|
74
|
+
*
|
|
75
|
+
* Get live runtime status for a TVC App from the cluster.
|
|
76
|
+
*
|
|
77
|
+
* `POST /public/v1/query/get_app_status`
|
|
78
|
+
*/
|
|
79
|
+
const getAppStatus = (input) => base.request({
|
|
80
|
+
uri: "/public/v1/query/get_app_status",
|
|
81
|
+
method: "POST",
|
|
82
|
+
body: input.body,
|
|
83
|
+
});
|
|
84
|
+
/**
|
|
85
|
+
* Request a WebAuthn assertion and return a signed `GetAppStatus` request, ready to be POSTed to Turnkey.
|
|
86
|
+
*
|
|
87
|
+
* See {@link GetAppStatus}
|
|
88
|
+
*/
|
|
89
|
+
const signGetAppStatus = (input, options) => base.signedRequest({
|
|
90
|
+
uri: "/public/v1/query/get_app_status",
|
|
91
|
+
body: input.body,
|
|
92
|
+
options,
|
|
93
|
+
});
|
|
72
94
|
/**
|
|
73
95
|
* Get authenticator
|
|
74
96
|
*
|
|
@@ -267,28 +289,6 @@ const signGetOnRampTransactionStatus = (input, options) => base.signedRequest({
|
|
|
267
289
|
body: input.body,
|
|
268
290
|
options,
|
|
269
291
|
});
|
|
270
|
-
/**
|
|
271
|
-
* Get organization
|
|
272
|
-
*
|
|
273
|
-
* Get details about an organization.
|
|
274
|
-
*
|
|
275
|
-
* `POST /public/v1/query/get_organization`
|
|
276
|
-
*/
|
|
277
|
-
const getOrganization = (input) => base.request({
|
|
278
|
-
uri: "/public/v1/query/get_organization",
|
|
279
|
-
method: "POST",
|
|
280
|
-
body: input.body,
|
|
281
|
-
});
|
|
282
|
-
/**
|
|
283
|
-
* Request a WebAuthn assertion and return a signed `GetOrganization` request, ready to be POSTed to Turnkey.
|
|
284
|
-
*
|
|
285
|
-
* See {@link GetOrganization}
|
|
286
|
-
*/
|
|
287
|
-
const signGetOrganization = (input, options) => base.signedRequest({
|
|
288
|
-
uri: "/public/v1/query/get_organization",
|
|
289
|
-
body: input.body,
|
|
290
|
-
options,
|
|
291
|
-
});
|
|
292
292
|
/**
|
|
293
293
|
* Get configs
|
|
294
294
|
*
|
|
@@ -421,50 +421,6 @@ const signGetSmartContractInterface = (input, options) => base.signedRequest({
|
|
|
421
421
|
body: input.body,
|
|
422
422
|
options,
|
|
423
423
|
});
|
|
424
|
-
/**
|
|
425
|
-
* Get TVC App
|
|
426
|
-
*
|
|
427
|
-
* Get details about a single TVC App
|
|
428
|
-
*
|
|
429
|
-
* `POST /public/v1/query/get_tvc_app`
|
|
430
|
-
*/
|
|
431
|
-
const getTvcApp = (input) => base.request({
|
|
432
|
-
uri: "/public/v1/query/get_tvc_app",
|
|
433
|
-
method: "POST",
|
|
434
|
-
body: input.body,
|
|
435
|
-
});
|
|
436
|
-
/**
|
|
437
|
-
* Request a WebAuthn assertion and return a signed `GetTvcApp` request, ready to be POSTed to Turnkey.
|
|
438
|
-
*
|
|
439
|
-
* See {@link GetTvcApp}
|
|
440
|
-
*/
|
|
441
|
-
const signGetTvcApp = (input, options) => base.signedRequest({
|
|
442
|
-
uri: "/public/v1/query/get_tvc_app",
|
|
443
|
-
body: input.body,
|
|
444
|
-
options,
|
|
445
|
-
});
|
|
446
|
-
/**
|
|
447
|
-
* Get TVC Deployment
|
|
448
|
-
*
|
|
449
|
-
* Get details about a single TVC Deployment
|
|
450
|
-
*
|
|
451
|
-
* `POST /public/v1/query/get_tvc_deployment`
|
|
452
|
-
*/
|
|
453
|
-
const getTvcDeployment = (input) => base.request({
|
|
454
|
-
uri: "/public/v1/query/get_tvc_deployment",
|
|
455
|
-
method: "POST",
|
|
456
|
-
body: input.body,
|
|
457
|
-
});
|
|
458
|
-
/**
|
|
459
|
-
* Request a WebAuthn assertion and return a signed `GetTvcDeployment` request, ready to be POSTed to Turnkey.
|
|
460
|
-
*
|
|
461
|
-
* See {@link GetTvcDeployment}
|
|
462
|
-
*/
|
|
463
|
-
const signGetTvcDeployment = (input, options) => base.signedRequest({
|
|
464
|
-
uri: "/public/v1/query/get_tvc_deployment",
|
|
465
|
-
body: input.body,
|
|
466
|
-
options,
|
|
467
|
-
});
|
|
468
424
|
/**
|
|
469
425
|
* Get user
|
|
470
426
|
*
|
|
@@ -534,7 +490,7 @@ const signGetWalletAccount = (input, options) => base.signedRequest({
|
|
|
534
490
|
/**
|
|
535
491
|
* Get balances
|
|
536
492
|
*
|
|
537
|
-
* Get
|
|
493
|
+
* Get balances of supported assets for an address on the specified network. Only non-zero balances are returned. This feature is in beta - please contact support for access.
|
|
538
494
|
*
|
|
539
495
|
* `POST /public/v1/query/get_wallet_address_balances`
|
|
540
496
|
*/
|
|
@@ -754,7 +710,7 @@ const signGetSubOrgIds = (input, options) => base.signedRequest({
|
|
|
754
710
|
/**
|
|
755
711
|
* List supported assets
|
|
756
712
|
*
|
|
757
|
-
* List supported assets for the specified network
|
|
713
|
+
* List supported assets for the specified network. This feature is in beta - please contact support for access.
|
|
758
714
|
*
|
|
759
715
|
* `POST /public/v1/query/list_supported_assets`
|
|
760
716
|
*/
|
|
@@ -773,50 +729,6 @@ const signListSupportedAssets = (input, options) => base.signedRequest({
|
|
|
773
729
|
body: input.body,
|
|
774
730
|
options,
|
|
775
731
|
});
|
|
776
|
-
/**
|
|
777
|
-
* List TVC Deployments
|
|
778
|
-
*
|
|
779
|
-
* List all deployments for a given TVC App
|
|
780
|
-
*
|
|
781
|
-
* `POST /public/v1/query/list_tvc_app_deployments`
|
|
782
|
-
*/
|
|
783
|
-
const getTvcAppDeployments = (input) => base.request({
|
|
784
|
-
uri: "/public/v1/query/list_tvc_app_deployments",
|
|
785
|
-
method: "POST",
|
|
786
|
-
body: input.body,
|
|
787
|
-
});
|
|
788
|
-
/**
|
|
789
|
-
* Request a WebAuthn assertion and return a signed `GetTvcAppDeployments` request, ready to be POSTed to Turnkey.
|
|
790
|
-
*
|
|
791
|
-
* See {@link GetTvcAppDeployments}
|
|
792
|
-
*/
|
|
793
|
-
const signGetTvcAppDeployments = (input, options) => base.signedRequest({
|
|
794
|
-
uri: "/public/v1/query/list_tvc_app_deployments",
|
|
795
|
-
body: input.body,
|
|
796
|
-
options,
|
|
797
|
-
});
|
|
798
|
-
/**
|
|
799
|
-
* List TVC Apps
|
|
800
|
-
*
|
|
801
|
-
* List all TVC Apps within an organization.
|
|
802
|
-
*
|
|
803
|
-
* `POST /public/v1/query/list_tvc_apps`
|
|
804
|
-
*/
|
|
805
|
-
const getTvcApps = (input) => base.request({
|
|
806
|
-
uri: "/public/v1/query/list_tvc_apps",
|
|
807
|
-
method: "POST",
|
|
808
|
-
body: input.body,
|
|
809
|
-
});
|
|
810
|
-
/**
|
|
811
|
-
* Request a WebAuthn assertion and return a signed `GetTvcApps` request, ready to be POSTed to Turnkey.
|
|
812
|
-
*
|
|
813
|
-
* See {@link GetTvcApps}
|
|
814
|
-
*/
|
|
815
|
-
const signGetTvcApps = (input, options) => base.signedRequest({
|
|
816
|
-
uri: "/public/v1/query/list_tvc_apps",
|
|
817
|
-
body: input.body,
|
|
818
|
-
options,
|
|
819
|
-
});
|
|
820
732
|
/**
|
|
821
733
|
* List user tags
|
|
822
734
|
*
|
|
@@ -927,6 +839,28 @@ const signGetWallets = (input, options) => base.signedRequest({
|
|
|
927
839
|
body: input.body,
|
|
928
840
|
options,
|
|
929
841
|
});
|
|
842
|
+
/**
|
|
843
|
+
* List webhook endpoints
|
|
844
|
+
*
|
|
845
|
+
* List webhook endpoints within an organization.
|
|
846
|
+
*
|
|
847
|
+
* `POST /public/v1/query/list_webhook_endpoints`
|
|
848
|
+
*/
|
|
849
|
+
const listWebhookEndpoints = (input) => base.request({
|
|
850
|
+
uri: "/public/v1/query/list_webhook_endpoints",
|
|
851
|
+
method: "POST",
|
|
852
|
+
body: input.body,
|
|
853
|
+
});
|
|
854
|
+
/**
|
|
855
|
+
* Request a WebAuthn assertion and return a signed `ListWebhookEndpoints` request, ready to be POSTed to Turnkey.
|
|
856
|
+
*
|
|
857
|
+
* See {@link ListWebhookEndpoints}
|
|
858
|
+
*/
|
|
859
|
+
const signListWebhookEndpoints = (input, options) => base.signedRequest({
|
|
860
|
+
uri: "/public/v1/query/list_webhook_endpoints",
|
|
861
|
+
body: input.body,
|
|
862
|
+
options,
|
|
863
|
+
});
|
|
930
864
|
/**
|
|
931
865
|
* Who am I?
|
|
932
866
|
*
|
|
@@ -1301,72 +1235,6 @@ const signCreateSubOrganization = (input, options) => base.signedRequest({
|
|
|
1301
1235
|
body: input.body,
|
|
1302
1236
|
options,
|
|
1303
1237
|
});
|
|
1304
|
-
/**
|
|
1305
|
-
* Create a TVC App
|
|
1306
|
-
*
|
|
1307
|
-
* Create a new TVC application
|
|
1308
|
-
*
|
|
1309
|
-
* `POST /public/v1/submit/create_tvc_app`
|
|
1310
|
-
*/
|
|
1311
|
-
const createTvcApp = (input) => base.request({
|
|
1312
|
-
uri: "/public/v1/submit/create_tvc_app",
|
|
1313
|
-
method: "POST",
|
|
1314
|
-
body: input.body,
|
|
1315
|
-
});
|
|
1316
|
-
/**
|
|
1317
|
-
* Request a WebAuthn assertion and return a signed `CreateTvcApp` request, ready to be POSTed to Turnkey.
|
|
1318
|
-
*
|
|
1319
|
-
* See {@link CreateTvcApp}
|
|
1320
|
-
*/
|
|
1321
|
-
const signCreateTvcApp = (input, options) => base.signedRequest({
|
|
1322
|
-
uri: "/public/v1/submit/create_tvc_app",
|
|
1323
|
-
body: input.body,
|
|
1324
|
-
options,
|
|
1325
|
-
});
|
|
1326
|
-
/**
|
|
1327
|
-
* Create a TVC Deployment
|
|
1328
|
-
*
|
|
1329
|
-
* Create a new TVC Deployment
|
|
1330
|
-
*
|
|
1331
|
-
* `POST /public/v1/submit/create_tvc_deployment`
|
|
1332
|
-
*/
|
|
1333
|
-
const createTvcDeployment = (input) => base.request({
|
|
1334
|
-
uri: "/public/v1/submit/create_tvc_deployment",
|
|
1335
|
-
method: "POST",
|
|
1336
|
-
body: input.body,
|
|
1337
|
-
});
|
|
1338
|
-
/**
|
|
1339
|
-
* Request a WebAuthn assertion and return a signed `CreateTvcDeployment` request, ready to be POSTed to Turnkey.
|
|
1340
|
-
*
|
|
1341
|
-
* See {@link CreateTvcDeployment}
|
|
1342
|
-
*/
|
|
1343
|
-
const signCreateTvcDeployment = (input, options) => base.signedRequest({
|
|
1344
|
-
uri: "/public/v1/submit/create_tvc_deployment",
|
|
1345
|
-
body: input.body,
|
|
1346
|
-
options,
|
|
1347
|
-
});
|
|
1348
|
-
/**
|
|
1349
|
-
* Create TVC Manifest Approvals
|
|
1350
|
-
*
|
|
1351
|
-
* Post one or more manifest approvals for a TVC Manifest
|
|
1352
|
-
*
|
|
1353
|
-
* `POST /public/v1/submit/create_tvc_manifest_approvals`
|
|
1354
|
-
*/
|
|
1355
|
-
const createTvcManifestApprovals = (input) => base.request({
|
|
1356
|
-
uri: "/public/v1/submit/create_tvc_manifest_approvals",
|
|
1357
|
-
method: "POST",
|
|
1358
|
-
body: input.body,
|
|
1359
|
-
});
|
|
1360
|
-
/**
|
|
1361
|
-
* Request a WebAuthn assertion and return a signed `CreateTvcManifestApprovals` request, ready to be POSTed to Turnkey.
|
|
1362
|
-
*
|
|
1363
|
-
* See {@link CreateTvcManifestApprovals}
|
|
1364
|
-
*/
|
|
1365
|
-
const signCreateTvcManifestApprovals = (input, options) => base.signedRequest({
|
|
1366
|
-
uri: "/public/v1/submit/create_tvc_manifest_approvals",
|
|
1367
|
-
body: input.body,
|
|
1368
|
-
options,
|
|
1369
|
-
});
|
|
1370
1238
|
/**
|
|
1371
1239
|
* Create user tag
|
|
1372
1240
|
*
|
|
@@ -1455,6 +1323,28 @@ const signCreateWalletAccounts = (input, options) => base.signedRequest({
|
|
|
1455
1323
|
body: input.body,
|
|
1456
1324
|
options,
|
|
1457
1325
|
});
|
|
1326
|
+
/**
|
|
1327
|
+
* Create webhook endpoint
|
|
1328
|
+
*
|
|
1329
|
+
* Create a webhook endpoint for an organization.
|
|
1330
|
+
*
|
|
1331
|
+
* `POST /public/v1/submit/create_webhook_endpoint`
|
|
1332
|
+
*/
|
|
1333
|
+
const createWebhookEndpoint = (input) => base.request({
|
|
1334
|
+
uri: "/public/v1/submit/create_webhook_endpoint",
|
|
1335
|
+
method: "POST",
|
|
1336
|
+
body: input.body,
|
|
1337
|
+
});
|
|
1338
|
+
/**
|
|
1339
|
+
* Request a WebAuthn assertion and return a signed `CreateWebhookEndpoint` request, ready to be POSTed to Turnkey.
|
|
1340
|
+
*
|
|
1341
|
+
* See {@link CreateWebhookEndpoint}
|
|
1342
|
+
*/
|
|
1343
|
+
const signCreateWebhookEndpoint = (input, options) => base.signedRequest({
|
|
1344
|
+
uri: "/public/v1/submit/create_webhook_endpoint",
|
|
1345
|
+
body: input.body,
|
|
1346
|
+
options,
|
|
1347
|
+
});
|
|
1458
1348
|
/**
|
|
1459
1349
|
* Delete API keys
|
|
1460
1350
|
*
|
|
@@ -1808,46 +1698,46 @@ const signDeleteWallets = (input, options) => base.signedRequest({
|
|
|
1808
1698
|
options,
|
|
1809
1699
|
});
|
|
1810
1700
|
/**
|
|
1811
|
-
*
|
|
1701
|
+
* Delete webhook endpoint
|
|
1812
1702
|
*
|
|
1813
|
-
*
|
|
1703
|
+
* Delete a webhook endpoint for an organization.
|
|
1814
1704
|
*
|
|
1815
|
-
* `POST /public/v1/submit/
|
|
1705
|
+
* `POST /public/v1/submit/delete_webhook_endpoint`
|
|
1816
1706
|
*/
|
|
1817
|
-
const
|
|
1818
|
-
uri: "/public/v1/submit/
|
|
1707
|
+
const deleteWebhookEndpoint = (input) => base.request({
|
|
1708
|
+
uri: "/public/v1/submit/delete_webhook_endpoint",
|
|
1819
1709
|
method: "POST",
|
|
1820
1710
|
body: input.body,
|
|
1821
1711
|
});
|
|
1822
1712
|
/**
|
|
1823
|
-
* Request a WebAuthn assertion and return a signed `
|
|
1713
|
+
* Request a WebAuthn assertion and return a signed `DeleteWebhookEndpoint` request, ready to be POSTed to Turnkey.
|
|
1824
1714
|
*
|
|
1825
|
-
* See {@link
|
|
1715
|
+
* See {@link DeleteWebhookEndpoint}
|
|
1826
1716
|
*/
|
|
1827
|
-
const
|
|
1828
|
-
uri: "/public/v1/submit/
|
|
1717
|
+
const signDeleteWebhookEndpoint = (input, options) => base.signedRequest({
|
|
1718
|
+
uri: "/public/v1/submit/delete_webhook_endpoint",
|
|
1829
1719
|
body: input.body,
|
|
1830
1720
|
options,
|
|
1831
1721
|
});
|
|
1832
1722
|
/**
|
|
1833
|
-
*
|
|
1723
|
+
* Perform email auth
|
|
1834
1724
|
*
|
|
1835
|
-
*
|
|
1725
|
+
* Authenticate a user via email.
|
|
1836
1726
|
*
|
|
1837
|
-
* `POST /public/v1/submit/
|
|
1727
|
+
* `POST /public/v1/submit/email_auth`
|
|
1838
1728
|
*/
|
|
1839
|
-
const
|
|
1840
|
-
uri: "/public/v1/submit/
|
|
1729
|
+
const emailAuth = (input) => base.request({
|
|
1730
|
+
uri: "/public/v1/submit/email_auth",
|
|
1841
1731
|
method: "POST",
|
|
1842
1732
|
body: input.body,
|
|
1843
1733
|
});
|
|
1844
1734
|
/**
|
|
1845
|
-
* Request a WebAuthn assertion and return a signed `
|
|
1735
|
+
* Request a WebAuthn assertion and return a signed `EmailAuth` request, ready to be POSTed to Turnkey.
|
|
1846
1736
|
*
|
|
1847
|
-
* See {@link
|
|
1737
|
+
* See {@link EmailAuth}
|
|
1848
1738
|
*/
|
|
1849
|
-
const
|
|
1850
|
-
uri: "/public/v1/submit/
|
|
1739
|
+
const signEmailAuth = (input, options) => base.signedRequest({
|
|
1740
|
+
uri: "/public/v1/submit/email_auth",
|
|
1851
1741
|
body: input.body,
|
|
1852
1742
|
options,
|
|
1853
1743
|
});
|
|
@@ -2467,6 +2357,28 @@ const signUpdateOauth2Credential = (input, options) => base.signedRequest({
|
|
|
2467
2357
|
body: input.body,
|
|
2468
2358
|
options,
|
|
2469
2359
|
});
|
|
2360
|
+
/**
|
|
2361
|
+
* Update organization name
|
|
2362
|
+
*
|
|
2363
|
+
* Update the name of an organization.
|
|
2364
|
+
*
|
|
2365
|
+
* `POST /public/v1/submit/update_organization_name`
|
|
2366
|
+
*/
|
|
2367
|
+
const updateOrganizationName = (input) => base.request({
|
|
2368
|
+
uri: "/public/v1/submit/update_organization_name",
|
|
2369
|
+
method: "POST",
|
|
2370
|
+
body: input.body,
|
|
2371
|
+
});
|
|
2372
|
+
/**
|
|
2373
|
+
* Request a WebAuthn assertion and return a signed `UpdateOrganizationName` request, ready to be POSTed to Turnkey.
|
|
2374
|
+
*
|
|
2375
|
+
* See {@link UpdateOrganizationName}
|
|
2376
|
+
*/
|
|
2377
|
+
const signUpdateOrganizationName = (input, options) => base.signedRequest({
|
|
2378
|
+
uri: "/public/v1/submit/update_organization_name",
|
|
2379
|
+
body: input.body,
|
|
2380
|
+
options,
|
|
2381
|
+
});
|
|
2470
2382
|
/**
|
|
2471
2383
|
* Update policy
|
|
2472
2384
|
*
|
|
@@ -2665,6 +2577,28 @@ const signUpdateWallet = (input, options) => base.signedRequest({
|
|
|
2665
2577
|
body: input.body,
|
|
2666
2578
|
options,
|
|
2667
2579
|
});
|
|
2580
|
+
/**
|
|
2581
|
+
* Update webhook endpoint
|
|
2582
|
+
*
|
|
2583
|
+
* Update a webhook endpoint for an organization.
|
|
2584
|
+
*
|
|
2585
|
+
* `POST /public/v1/submit/update_webhook_endpoint`
|
|
2586
|
+
*/
|
|
2587
|
+
const updateWebhookEndpoint = (input) => base.request({
|
|
2588
|
+
uri: "/public/v1/submit/update_webhook_endpoint",
|
|
2589
|
+
method: "POST",
|
|
2590
|
+
body: input.body,
|
|
2591
|
+
});
|
|
2592
|
+
/**
|
|
2593
|
+
* Request a WebAuthn assertion and return a signed `UpdateWebhookEndpoint` request, ready to be POSTed to Turnkey.
|
|
2594
|
+
*
|
|
2595
|
+
* See {@link UpdateWebhookEndpoint}
|
|
2596
|
+
*/
|
|
2597
|
+
const signUpdateWebhookEndpoint = (input, options) => base.signedRequest({
|
|
2598
|
+
uri: "/public/v1/submit/update_webhook_endpoint",
|
|
2599
|
+
body: input.body,
|
|
2600
|
+
options,
|
|
2601
|
+
});
|
|
2668
2602
|
/**
|
|
2669
2603
|
* Verify generic OTP
|
|
2670
2604
|
*
|
|
@@ -2702,50 +2636,6 @@ const nOOPCodegenAnchor = () => base.request({
|
|
|
2702
2636
|
const signNOOPCodegenAnchor = () => base.signedRequest({
|
|
2703
2637
|
uri: "/tkhq/api/v1/noop-codegen-anchor",
|
|
2704
2638
|
});
|
|
2705
|
-
/**
|
|
2706
|
-
* Refresh feature flags
|
|
2707
|
-
*
|
|
2708
|
-
* Refresh feature flags by triggering a DB read to flush the in-memory cache.
|
|
2709
|
-
*
|
|
2710
|
-
* `POST /tkhq/api/v1/refresh_feature_flags`
|
|
2711
|
-
*/
|
|
2712
|
-
const refreshFeatureFlags = (input) => base.request({
|
|
2713
|
-
uri: "/tkhq/api/v1/refresh_feature_flags",
|
|
2714
|
-
method: "POST",
|
|
2715
|
-
body: input.body,
|
|
2716
|
-
});
|
|
2717
|
-
/**
|
|
2718
|
-
* Request a WebAuthn assertion and return a signed `RefreshFeatureFlags` request, ready to be POSTed to Turnkey.
|
|
2719
|
-
*
|
|
2720
|
-
* See {@link RefreshFeatureFlags}
|
|
2721
|
-
*/
|
|
2722
|
-
const signRefreshFeatureFlags = (input, options) => base.signedRequest({
|
|
2723
|
-
uri: "/tkhq/api/v1/refresh_feature_flags",
|
|
2724
|
-
body: input.body,
|
|
2725
|
-
options,
|
|
2726
|
-
});
|
|
2727
|
-
/**
|
|
2728
|
-
* Test rate limit
|
|
2729
|
-
*
|
|
2730
|
-
* Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite.
|
|
2731
|
-
*
|
|
2732
|
-
* `POST /tkhq/api/v1/test_rate_limits`
|
|
2733
|
-
*/
|
|
2734
|
-
const testRateLimits = (input) => base.request({
|
|
2735
|
-
uri: "/tkhq/api/v1/test_rate_limits",
|
|
2736
|
-
method: "POST",
|
|
2737
|
-
body: input.body,
|
|
2738
|
-
});
|
|
2739
|
-
/**
|
|
2740
|
-
* Request a WebAuthn assertion and return a signed `TestRateLimits` request, ready to be POSTed to Turnkey.
|
|
2741
|
-
*
|
|
2742
|
-
* See {@link TestRateLimits}
|
|
2743
|
-
*/
|
|
2744
|
-
const signTestRateLimits = (input, options) => base.signedRequest({
|
|
2745
|
-
uri: "/tkhq/api/v1/test_rate_limits",
|
|
2746
|
-
body: input.body,
|
|
2747
|
-
options,
|
|
2748
|
-
});
|
|
2749
2639
|
|
|
2750
2640
|
exports.approveActivity = approveActivity;
|
|
2751
2641
|
exports.createApiKeys = createApiKeys;
|
|
@@ -2763,13 +2653,11 @@ exports.createReadOnlySession = createReadOnlySession;
|
|
|
2763
2653
|
exports.createReadWriteSession = createReadWriteSession;
|
|
2764
2654
|
exports.createSmartContractInterface = createSmartContractInterface;
|
|
2765
2655
|
exports.createSubOrganization = createSubOrganization;
|
|
2766
|
-
exports.createTvcApp = createTvcApp;
|
|
2767
|
-
exports.createTvcDeployment = createTvcDeployment;
|
|
2768
|
-
exports.createTvcManifestApprovals = createTvcManifestApprovals;
|
|
2769
2656
|
exports.createUserTag = createUserTag;
|
|
2770
2657
|
exports.createUsers = createUsers;
|
|
2771
2658
|
exports.createWallet = createWallet;
|
|
2772
2659
|
exports.createWalletAccounts = createWalletAccounts;
|
|
2660
|
+
exports.createWebhookEndpoint = createWebhookEndpoint;
|
|
2773
2661
|
exports.deleteApiKeys = deleteApiKeys;
|
|
2774
2662
|
exports.deleteAuthenticators = deleteAuthenticators;
|
|
2775
2663
|
exports.deleteFiatOnRampCredential = deleteFiatOnRampCredential;
|
|
@@ -2786,8 +2674,8 @@ exports.deleteUserTags = deleteUserTags;
|
|
|
2786
2674
|
exports.deleteUsers = deleteUsers;
|
|
2787
2675
|
exports.deleteWalletAccounts = deleteWalletAccounts;
|
|
2788
2676
|
exports.deleteWallets = deleteWallets;
|
|
2677
|
+
exports.deleteWebhookEndpoint = deleteWebhookEndpoint;
|
|
2789
2678
|
exports.emailAuth = emailAuth;
|
|
2790
|
-
exports.ethSendRawTransaction = ethSendRawTransaction;
|
|
2791
2679
|
exports.ethSendTransaction = ethSendTransaction;
|
|
2792
2680
|
exports.exportPrivateKey = exportPrivateKey;
|
|
2793
2681
|
exports.exportWallet = exportWallet;
|
|
@@ -2797,6 +2685,7 @@ exports.getActivity = getActivity;
|
|
|
2797
2685
|
exports.getApiKey = getApiKey;
|
|
2798
2686
|
exports.getApiKeys = getApiKeys;
|
|
2799
2687
|
exports.getAppProofs = getAppProofs;
|
|
2688
|
+
exports.getAppStatus = getAppStatus;
|
|
2800
2689
|
exports.getAuthenticator = getAuthenticator;
|
|
2801
2690
|
exports.getAuthenticators = getAuthenticators;
|
|
2802
2691
|
exports.getBootProof = getBootProof;
|
|
@@ -2806,7 +2695,6 @@ exports.getNonces = getNonces;
|
|
|
2806
2695
|
exports.getOauth2Credential = getOauth2Credential;
|
|
2807
2696
|
exports.getOauthProviders = getOauthProviders;
|
|
2808
2697
|
exports.getOnRampTransactionStatus = getOnRampTransactionStatus;
|
|
2809
|
-
exports.getOrganization = getOrganization;
|
|
2810
2698
|
exports.getOrganizationConfigs = getOrganizationConfigs;
|
|
2811
2699
|
exports.getPolicies = getPolicies;
|
|
2812
2700
|
exports.getPolicy = getPolicy;
|
|
@@ -2817,10 +2705,6 @@ exports.getSendTransactionStatus = getSendTransactionStatus;
|
|
|
2817
2705
|
exports.getSmartContractInterface = getSmartContractInterface;
|
|
2818
2706
|
exports.getSmartContractInterfaces = getSmartContractInterfaces;
|
|
2819
2707
|
exports.getSubOrgIds = getSubOrgIds;
|
|
2820
|
-
exports.getTvcApp = getTvcApp;
|
|
2821
|
-
exports.getTvcAppDeployments = getTvcAppDeployments;
|
|
2822
|
-
exports.getTvcApps = getTvcApps;
|
|
2823
|
-
exports.getTvcDeployment = getTvcDeployment;
|
|
2824
2708
|
exports.getUser = getUser;
|
|
2825
2709
|
exports.getUsers = getUsers;
|
|
2826
2710
|
exports.getVerifiedSubOrgIds = getVerifiedSubOrgIds;
|
|
@@ -2843,6 +2727,7 @@ exports.listOauth2Credentials = listOauth2Credentials;
|
|
|
2843
2727
|
exports.listPrivateKeyTags = listPrivateKeyTags;
|
|
2844
2728
|
exports.listSupportedAssets = listSupportedAssets;
|
|
2845
2729
|
exports.listUserTags = listUserTags;
|
|
2730
|
+
exports.listWebhookEndpoints = listWebhookEndpoints;
|
|
2846
2731
|
exports.nOOPCodegenAnchor = nOOPCodegenAnchor;
|
|
2847
2732
|
exports.oauth = oauth;
|
|
2848
2733
|
exports.oauth2Authenticate = oauth2Authenticate;
|
|
@@ -2850,7 +2735,6 @@ exports.oauthLogin = oauthLogin;
|
|
|
2850
2735
|
exports.otpAuth = otpAuth;
|
|
2851
2736
|
exports.otpLogin = otpLogin;
|
|
2852
2737
|
exports.recoverUser = recoverUser;
|
|
2853
|
-
exports.refreshFeatureFlags = refreshFeatureFlags;
|
|
2854
2738
|
exports.rejectActivity = rejectActivity;
|
|
2855
2739
|
exports.removeOrganizationFeature = removeOrganizationFeature;
|
|
2856
2740
|
exports.setOrganizationFeature = setOrganizationFeature;
|
|
@@ -2870,13 +2754,11 @@ exports.signCreateReadOnlySession = signCreateReadOnlySession;
|
|
|
2870
2754
|
exports.signCreateReadWriteSession = signCreateReadWriteSession;
|
|
2871
2755
|
exports.signCreateSmartContractInterface = signCreateSmartContractInterface;
|
|
2872
2756
|
exports.signCreateSubOrganization = signCreateSubOrganization;
|
|
2873
|
-
exports.signCreateTvcApp = signCreateTvcApp;
|
|
2874
|
-
exports.signCreateTvcDeployment = signCreateTvcDeployment;
|
|
2875
|
-
exports.signCreateTvcManifestApprovals = signCreateTvcManifestApprovals;
|
|
2876
2757
|
exports.signCreateUserTag = signCreateUserTag;
|
|
2877
2758
|
exports.signCreateUsers = signCreateUsers;
|
|
2878
2759
|
exports.signCreateWallet = signCreateWallet;
|
|
2879
2760
|
exports.signCreateWalletAccounts = signCreateWalletAccounts;
|
|
2761
|
+
exports.signCreateWebhookEndpoint = signCreateWebhookEndpoint;
|
|
2880
2762
|
exports.signDeleteApiKeys = signDeleteApiKeys;
|
|
2881
2763
|
exports.signDeleteAuthenticators = signDeleteAuthenticators;
|
|
2882
2764
|
exports.signDeleteFiatOnRampCredential = signDeleteFiatOnRampCredential;
|
|
@@ -2893,8 +2775,8 @@ exports.signDeleteUserTags = signDeleteUserTags;
|
|
|
2893
2775
|
exports.signDeleteUsers = signDeleteUsers;
|
|
2894
2776
|
exports.signDeleteWalletAccounts = signDeleteWalletAccounts;
|
|
2895
2777
|
exports.signDeleteWallets = signDeleteWallets;
|
|
2778
|
+
exports.signDeleteWebhookEndpoint = signDeleteWebhookEndpoint;
|
|
2896
2779
|
exports.signEmailAuth = signEmailAuth;
|
|
2897
|
-
exports.signEthSendRawTransaction = signEthSendRawTransaction;
|
|
2898
2780
|
exports.signEthSendTransaction = signEthSendTransaction;
|
|
2899
2781
|
exports.signExportPrivateKey = signExportPrivateKey;
|
|
2900
2782
|
exports.signExportWallet = signExportWallet;
|
|
@@ -2904,6 +2786,7 @@ exports.signGetActivity = signGetActivity;
|
|
|
2904
2786
|
exports.signGetApiKey = signGetApiKey;
|
|
2905
2787
|
exports.signGetApiKeys = signGetApiKeys;
|
|
2906
2788
|
exports.signGetAppProofs = signGetAppProofs;
|
|
2789
|
+
exports.signGetAppStatus = signGetAppStatus;
|
|
2907
2790
|
exports.signGetAuthenticator = signGetAuthenticator;
|
|
2908
2791
|
exports.signGetAuthenticators = signGetAuthenticators;
|
|
2909
2792
|
exports.signGetBootProof = signGetBootProof;
|
|
@@ -2913,7 +2796,6 @@ exports.signGetNonces = signGetNonces;
|
|
|
2913
2796
|
exports.signGetOauth2Credential = signGetOauth2Credential;
|
|
2914
2797
|
exports.signGetOauthProviders = signGetOauthProviders;
|
|
2915
2798
|
exports.signGetOnRampTransactionStatus = signGetOnRampTransactionStatus;
|
|
2916
|
-
exports.signGetOrganization = signGetOrganization;
|
|
2917
2799
|
exports.signGetOrganizationConfigs = signGetOrganizationConfigs;
|
|
2918
2800
|
exports.signGetPolicies = signGetPolicies;
|
|
2919
2801
|
exports.signGetPolicy = signGetPolicy;
|
|
@@ -2924,10 +2806,6 @@ exports.signGetSendTransactionStatus = signGetSendTransactionStatus;
|
|
|
2924
2806
|
exports.signGetSmartContractInterface = signGetSmartContractInterface;
|
|
2925
2807
|
exports.signGetSmartContractInterfaces = signGetSmartContractInterfaces;
|
|
2926
2808
|
exports.signGetSubOrgIds = signGetSubOrgIds;
|
|
2927
|
-
exports.signGetTvcApp = signGetTvcApp;
|
|
2928
|
-
exports.signGetTvcAppDeployments = signGetTvcAppDeployments;
|
|
2929
|
-
exports.signGetTvcApps = signGetTvcApps;
|
|
2930
|
-
exports.signGetTvcDeployment = signGetTvcDeployment;
|
|
2931
2809
|
exports.signGetUser = signGetUser;
|
|
2932
2810
|
exports.signGetUsers = signGetUsers;
|
|
2933
2811
|
exports.signGetVerifiedSubOrgIds = signGetVerifiedSubOrgIds;
|
|
@@ -2950,6 +2828,7 @@ exports.signListOauth2Credentials = signListOauth2Credentials;
|
|
|
2950
2828
|
exports.signListPrivateKeyTags = signListPrivateKeyTags;
|
|
2951
2829
|
exports.signListSupportedAssets = signListSupportedAssets;
|
|
2952
2830
|
exports.signListUserTags = signListUserTags;
|
|
2831
|
+
exports.signListWebhookEndpoints = signListWebhookEndpoints;
|
|
2953
2832
|
exports.signNOOPCodegenAnchor = signNOOPCodegenAnchor;
|
|
2954
2833
|
exports.signOauth = signOauth;
|
|
2955
2834
|
exports.signOauth2Authenticate = signOauth2Authenticate;
|
|
@@ -2959,7 +2838,6 @@ exports.signOtpLogin = signOtpLogin;
|
|
|
2959
2838
|
exports.signRawPayload = signRawPayload;
|
|
2960
2839
|
exports.signRawPayloads = signRawPayloads;
|
|
2961
2840
|
exports.signRecoverUser = signRecoverUser;
|
|
2962
|
-
exports.signRefreshFeatureFlags = signRefreshFeatureFlags;
|
|
2963
2841
|
exports.signRejectActivity = signRejectActivity;
|
|
2964
2842
|
exports.signRemoveOrganizationFeature = signRemoveOrganizationFeature;
|
|
2965
2843
|
exports.signSetOrganizationFeature = signSetOrganizationFeature;
|
|
@@ -2968,10 +2846,10 @@ exports.signSignRawPayloads = signSignRawPayloads;
|
|
|
2968
2846
|
exports.signSignTransaction = signSignTransaction;
|
|
2969
2847
|
exports.signSolSendTransaction = signSolSendTransaction;
|
|
2970
2848
|
exports.signStampLogin = signStampLogin;
|
|
2971
|
-
exports.signTestRateLimits = signTestRateLimits;
|
|
2972
2849
|
exports.signTransaction = signTransaction;
|
|
2973
2850
|
exports.signUpdateFiatOnRampCredential = signUpdateFiatOnRampCredential;
|
|
2974
2851
|
exports.signUpdateOauth2Credential = signUpdateOauth2Credential;
|
|
2852
|
+
exports.signUpdateOrganizationName = signUpdateOrganizationName;
|
|
2975
2853
|
exports.signUpdatePolicy = signUpdatePolicy;
|
|
2976
2854
|
exports.signUpdatePrivateKeyTag = signUpdatePrivateKeyTag;
|
|
2977
2855
|
exports.signUpdateRootQuorum = signUpdateRootQuorum;
|
|
@@ -2981,12 +2859,13 @@ exports.signUpdateUserName = signUpdateUserName;
|
|
|
2981
2859
|
exports.signUpdateUserPhoneNumber = signUpdateUserPhoneNumber;
|
|
2982
2860
|
exports.signUpdateUserTag = signUpdateUserTag;
|
|
2983
2861
|
exports.signUpdateWallet = signUpdateWallet;
|
|
2862
|
+
exports.signUpdateWebhookEndpoint = signUpdateWebhookEndpoint;
|
|
2984
2863
|
exports.signVerifyOtp = signVerifyOtp;
|
|
2985
2864
|
exports.solSendTransaction = solSendTransaction;
|
|
2986
2865
|
exports.stampLogin = stampLogin;
|
|
2987
|
-
exports.testRateLimits = testRateLimits;
|
|
2988
2866
|
exports.updateFiatOnRampCredential = updateFiatOnRampCredential;
|
|
2989
2867
|
exports.updateOauth2Credential = updateOauth2Credential;
|
|
2868
|
+
exports.updateOrganizationName = updateOrganizationName;
|
|
2990
2869
|
exports.updatePolicy = updatePolicy;
|
|
2991
2870
|
exports.updatePrivateKeyTag = updatePrivateKeyTag;
|
|
2992
2871
|
exports.updateRootQuorum = updateRootQuorum;
|
|
@@ -2996,5 +2875,6 @@ exports.updateUserName = updateUserName;
|
|
|
2996
2875
|
exports.updateUserPhoneNumber = updateUserPhoneNumber;
|
|
2997
2876
|
exports.updateUserTag = updateUserTag;
|
|
2998
2877
|
exports.updateWallet = updateWallet;
|
|
2878
|
+
exports.updateWebhookEndpoint = updateWebhookEndpoint;
|
|
2999
2879
|
exports.verifyOtp = verifyOtp;
|
|
3000
2880
|
//# sourceMappingURL=public_api.fetcher.js.map
|