@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.
@@ -67,6 +67,28 @@ const signGetApiKeys = (input, options) => signedRequest({
67
67
  body: input.body,
68
68
  options,
69
69
  });
70
+ /**
71
+ * Get TVC App status
72
+ *
73
+ * Get live runtime status for a TVC App from the cluster.
74
+ *
75
+ * `POST /public/v1/query/get_app_status`
76
+ */
77
+ const getAppStatus = (input) => request({
78
+ uri: "/public/v1/query/get_app_status",
79
+ method: "POST",
80
+ body: input.body,
81
+ });
82
+ /**
83
+ * Request a WebAuthn assertion and return a signed `GetAppStatus` request, ready to be POSTed to Turnkey.
84
+ *
85
+ * See {@link GetAppStatus}
86
+ */
87
+ const signGetAppStatus = (input, options) => signedRequest({
88
+ uri: "/public/v1/query/get_app_status",
89
+ body: input.body,
90
+ options,
91
+ });
70
92
  /**
71
93
  * Get authenticator
72
94
  *
@@ -265,28 +287,6 @@ const signGetOnRampTransactionStatus = (input, options) => signedRequest({
265
287
  body: input.body,
266
288
  options,
267
289
  });
268
- /**
269
- * Get organization
270
- *
271
- * Get details about an organization.
272
- *
273
- * `POST /public/v1/query/get_organization`
274
- */
275
- const getOrganization = (input) => request({
276
- uri: "/public/v1/query/get_organization",
277
- method: "POST",
278
- body: input.body,
279
- });
280
- /**
281
- * Request a WebAuthn assertion and return a signed `GetOrganization` request, ready to be POSTed to Turnkey.
282
- *
283
- * See {@link GetOrganization}
284
- */
285
- const signGetOrganization = (input, options) => signedRequest({
286
- uri: "/public/v1/query/get_organization",
287
- body: input.body,
288
- options,
289
- });
290
290
  /**
291
291
  * Get configs
292
292
  *
@@ -419,50 +419,6 @@ const signGetSmartContractInterface = (input, options) => signedRequest({
419
419
  body: input.body,
420
420
  options,
421
421
  });
422
- /**
423
- * Get TVC App
424
- *
425
- * Get details about a single TVC App
426
- *
427
- * `POST /public/v1/query/get_tvc_app`
428
- */
429
- const getTvcApp = (input) => request({
430
- uri: "/public/v1/query/get_tvc_app",
431
- method: "POST",
432
- body: input.body,
433
- });
434
- /**
435
- * Request a WebAuthn assertion and return a signed `GetTvcApp` request, ready to be POSTed to Turnkey.
436
- *
437
- * See {@link GetTvcApp}
438
- */
439
- const signGetTvcApp = (input, options) => signedRequest({
440
- uri: "/public/v1/query/get_tvc_app",
441
- body: input.body,
442
- options,
443
- });
444
- /**
445
- * Get TVC Deployment
446
- *
447
- * Get details about a single TVC Deployment
448
- *
449
- * `POST /public/v1/query/get_tvc_deployment`
450
- */
451
- const getTvcDeployment = (input) => request({
452
- uri: "/public/v1/query/get_tvc_deployment",
453
- method: "POST",
454
- body: input.body,
455
- });
456
- /**
457
- * Request a WebAuthn assertion and return a signed `GetTvcDeployment` request, ready to be POSTed to Turnkey.
458
- *
459
- * See {@link GetTvcDeployment}
460
- */
461
- const signGetTvcDeployment = (input, options) => signedRequest({
462
- uri: "/public/v1/query/get_tvc_deployment",
463
- body: input.body,
464
- options,
465
- });
466
422
  /**
467
423
  * Get user
468
424
  *
@@ -532,7 +488,7 @@ const signGetWalletAccount = (input, options) => signedRequest({
532
488
  /**
533
489
  * Get balances
534
490
  *
535
- * Get non-zero balances of supported assets for a single wallet account address on the specified network.
491
+ * 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.
536
492
  *
537
493
  * `POST /public/v1/query/get_wallet_address_balances`
538
494
  */
@@ -752,7 +708,7 @@ const signGetSubOrgIds = (input, options) => signedRequest({
752
708
  /**
753
709
  * List supported assets
754
710
  *
755
- * List supported assets for the specified network
711
+ * List supported assets for the specified network. This feature is in beta - please contact support for access.
756
712
  *
757
713
  * `POST /public/v1/query/list_supported_assets`
758
714
  */
@@ -771,50 +727,6 @@ const signListSupportedAssets = (input, options) => signedRequest({
771
727
  body: input.body,
772
728
  options,
773
729
  });
774
- /**
775
- * List TVC Deployments
776
- *
777
- * List all deployments for a given TVC App
778
- *
779
- * `POST /public/v1/query/list_tvc_app_deployments`
780
- */
781
- const getTvcAppDeployments = (input) => request({
782
- uri: "/public/v1/query/list_tvc_app_deployments",
783
- method: "POST",
784
- body: input.body,
785
- });
786
- /**
787
- * Request a WebAuthn assertion and return a signed `GetTvcAppDeployments` request, ready to be POSTed to Turnkey.
788
- *
789
- * See {@link GetTvcAppDeployments}
790
- */
791
- const signGetTvcAppDeployments = (input, options) => signedRequest({
792
- uri: "/public/v1/query/list_tvc_app_deployments",
793
- body: input.body,
794
- options,
795
- });
796
- /**
797
- * List TVC Apps
798
- *
799
- * List all TVC Apps within an organization.
800
- *
801
- * `POST /public/v1/query/list_tvc_apps`
802
- */
803
- const getTvcApps = (input) => request({
804
- uri: "/public/v1/query/list_tvc_apps",
805
- method: "POST",
806
- body: input.body,
807
- });
808
- /**
809
- * Request a WebAuthn assertion and return a signed `GetTvcApps` request, ready to be POSTed to Turnkey.
810
- *
811
- * See {@link GetTvcApps}
812
- */
813
- const signGetTvcApps = (input, options) => signedRequest({
814
- uri: "/public/v1/query/list_tvc_apps",
815
- body: input.body,
816
- options,
817
- });
818
730
  /**
819
731
  * List user tags
820
732
  *
@@ -925,6 +837,28 @@ const signGetWallets = (input, options) => signedRequest({
925
837
  body: input.body,
926
838
  options,
927
839
  });
840
+ /**
841
+ * List webhook endpoints
842
+ *
843
+ * List webhook endpoints within an organization.
844
+ *
845
+ * `POST /public/v1/query/list_webhook_endpoints`
846
+ */
847
+ const listWebhookEndpoints = (input) => request({
848
+ uri: "/public/v1/query/list_webhook_endpoints",
849
+ method: "POST",
850
+ body: input.body,
851
+ });
852
+ /**
853
+ * Request a WebAuthn assertion and return a signed `ListWebhookEndpoints` request, ready to be POSTed to Turnkey.
854
+ *
855
+ * See {@link ListWebhookEndpoints}
856
+ */
857
+ const signListWebhookEndpoints = (input, options) => signedRequest({
858
+ uri: "/public/v1/query/list_webhook_endpoints",
859
+ body: input.body,
860
+ options,
861
+ });
928
862
  /**
929
863
  * Who am I?
930
864
  *
@@ -1299,72 +1233,6 @@ const signCreateSubOrganization = (input, options) => signedRequest({
1299
1233
  body: input.body,
1300
1234
  options,
1301
1235
  });
1302
- /**
1303
- * Create a TVC App
1304
- *
1305
- * Create a new TVC application
1306
- *
1307
- * `POST /public/v1/submit/create_tvc_app`
1308
- */
1309
- const createTvcApp = (input) => request({
1310
- uri: "/public/v1/submit/create_tvc_app",
1311
- method: "POST",
1312
- body: input.body,
1313
- });
1314
- /**
1315
- * Request a WebAuthn assertion and return a signed `CreateTvcApp` request, ready to be POSTed to Turnkey.
1316
- *
1317
- * See {@link CreateTvcApp}
1318
- */
1319
- const signCreateTvcApp = (input, options) => signedRequest({
1320
- uri: "/public/v1/submit/create_tvc_app",
1321
- body: input.body,
1322
- options,
1323
- });
1324
- /**
1325
- * Create a TVC Deployment
1326
- *
1327
- * Create a new TVC Deployment
1328
- *
1329
- * `POST /public/v1/submit/create_tvc_deployment`
1330
- */
1331
- const createTvcDeployment = (input) => request({
1332
- uri: "/public/v1/submit/create_tvc_deployment",
1333
- method: "POST",
1334
- body: input.body,
1335
- });
1336
- /**
1337
- * Request a WebAuthn assertion and return a signed `CreateTvcDeployment` request, ready to be POSTed to Turnkey.
1338
- *
1339
- * See {@link CreateTvcDeployment}
1340
- */
1341
- const signCreateTvcDeployment = (input, options) => signedRequest({
1342
- uri: "/public/v1/submit/create_tvc_deployment",
1343
- body: input.body,
1344
- options,
1345
- });
1346
- /**
1347
- * Create TVC Manifest Approvals
1348
- *
1349
- * Post one or more manifest approvals for a TVC Manifest
1350
- *
1351
- * `POST /public/v1/submit/create_tvc_manifest_approvals`
1352
- */
1353
- const createTvcManifestApprovals = (input) => request({
1354
- uri: "/public/v1/submit/create_tvc_manifest_approvals",
1355
- method: "POST",
1356
- body: input.body,
1357
- });
1358
- /**
1359
- * Request a WebAuthn assertion and return a signed `CreateTvcManifestApprovals` request, ready to be POSTed to Turnkey.
1360
- *
1361
- * See {@link CreateTvcManifestApprovals}
1362
- */
1363
- const signCreateTvcManifestApprovals = (input, options) => signedRequest({
1364
- uri: "/public/v1/submit/create_tvc_manifest_approvals",
1365
- body: input.body,
1366
- options,
1367
- });
1368
1236
  /**
1369
1237
  * Create user tag
1370
1238
  *
@@ -1453,6 +1321,28 @@ const signCreateWalletAccounts = (input, options) => signedRequest({
1453
1321
  body: input.body,
1454
1322
  options,
1455
1323
  });
1324
+ /**
1325
+ * Create webhook endpoint
1326
+ *
1327
+ * Create a webhook endpoint for an organization.
1328
+ *
1329
+ * `POST /public/v1/submit/create_webhook_endpoint`
1330
+ */
1331
+ const createWebhookEndpoint = (input) => request({
1332
+ uri: "/public/v1/submit/create_webhook_endpoint",
1333
+ method: "POST",
1334
+ body: input.body,
1335
+ });
1336
+ /**
1337
+ * Request a WebAuthn assertion and return a signed `CreateWebhookEndpoint` request, ready to be POSTed to Turnkey.
1338
+ *
1339
+ * See {@link CreateWebhookEndpoint}
1340
+ */
1341
+ const signCreateWebhookEndpoint = (input, options) => signedRequest({
1342
+ uri: "/public/v1/submit/create_webhook_endpoint",
1343
+ body: input.body,
1344
+ options,
1345
+ });
1456
1346
  /**
1457
1347
  * Delete API keys
1458
1348
  *
@@ -1806,46 +1696,46 @@ const signDeleteWallets = (input, options) => signedRequest({
1806
1696
  options,
1807
1697
  });
1808
1698
  /**
1809
- * Perform email auth
1699
+ * Delete webhook endpoint
1810
1700
  *
1811
- * Authenticate a user via email.
1701
+ * Delete a webhook endpoint for an organization.
1812
1702
  *
1813
- * `POST /public/v1/submit/email_auth`
1703
+ * `POST /public/v1/submit/delete_webhook_endpoint`
1814
1704
  */
1815
- const emailAuth = (input) => request({
1816
- uri: "/public/v1/submit/email_auth",
1705
+ const deleteWebhookEndpoint = (input) => request({
1706
+ uri: "/public/v1/submit/delete_webhook_endpoint",
1817
1707
  method: "POST",
1818
1708
  body: input.body,
1819
1709
  });
1820
1710
  /**
1821
- * Request a WebAuthn assertion and return a signed `EmailAuth` request, ready to be POSTed to Turnkey.
1711
+ * Request a WebAuthn assertion and return a signed `DeleteWebhookEndpoint` request, ready to be POSTed to Turnkey.
1822
1712
  *
1823
- * See {@link EmailAuth}
1713
+ * See {@link DeleteWebhookEndpoint}
1824
1714
  */
1825
- const signEmailAuth = (input, options) => signedRequest({
1826
- uri: "/public/v1/submit/email_auth",
1715
+ const signDeleteWebhookEndpoint = (input, options) => signedRequest({
1716
+ uri: "/public/v1/submit/delete_webhook_endpoint",
1827
1717
  body: input.body,
1828
1718
  options,
1829
1719
  });
1830
1720
  /**
1831
- * Submit a raw transaction for broadcasting.
1721
+ * Perform email auth
1832
1722
  *
1833
- * Submit a raw transaction (serialized and signed) for broadcasting to the network.
1723
+ * Authenticate a user via email.
1834
1724
  *
1835
- * `POST /public/v1/submit/eth_send_raw_transaction`
1725
+ * `POST /public/v1/submit/email_auth`
1836
1726
  */
1837
- const ethSendRawTransaction = (input) => request({
1838
- uri: "/public/v1/submit/eth_send_raw_transaction",
1727
+ const emailAuth = (input) => request({
1728
+ uri: "/public/v1/submit/email_auth",
1839
1729
  method: "POST",
1840
1730
  body: input.body,
1841
1731
  });
1842
1732
  /**
1843
- * Request a WebAuthn assertion and return a signed `EthSendRawTransaction` request, ready to be POSTed to Turnkey.
1733
+ * Request a WebAuthn assertion and return a signed `EmailAuth` request, ready to be POSTed to Turnkey.
1844
1734
  *
1845
- * See {@link EthSendRawTransaction}
1735
+ * See {@link EmailAuth}
1846
1736
  */
1847
- const signEthSendRawTransaction = (input, options) => signedRequest({
1848
- uri: "/public/v1/submit/eth_send_raw_transaction",
1737
+ const signEmailAuth = (input, options) => signedRequest({
1738
+ uri: "/public/v1/submit/email_auth",
1849
1739
  body: input.body,
1850
1740
  options,
1851
1741
  });
@@ -2465,6 +2355,28 @@ const signUpdateOauth2Credential = (input, options) => signedRequest({
2465
2355
  body: input.body,
2466
2356
  options,
2467
2357
  });
2358
+ /**
2359
+ * Update organization name
2360
+ *
2361
+ * Update the name of an organization.
2362
+ *
2363
+ * `POST /public/v1/submit/update_organization_name`
2364
+ */
2365
+ const updateOrganizationName = (input) => request({
2366
+ uri: "/public/v1/submit/update_organization_name",
2367
+ method: "POST",
2368
+ body: input.body,
2369
+ });
2370
+ /**
2371
+ * Request a WebAuthn assertion and return a signed `UpdateOrganizationName` request, ready to be POSTed to Turnkey.
2372
+ *
2373
+ * See {@link UpdateOrganizationName}
2374
+ */
2375
+ const signUpdateOrganizationName = (input, options) => signedRequest({
2376
+ uri: "/public/v1/submit/update_organization_name",
2377
+ body: input.body,
2378
+ options,
2379
+ });
2468
2380
  /**
2469
2381
  * Update policy
2470
2382
  *
@@ -2663,6 +2575,28 @@ const signUpdateWallet = (input, options) => signedRequest({
2663
2575
  body: input.body,
2664
2576
  options,
2665
2577
  });
2578
+ /**
2579
+ * Update webhook endpoint
2580
+ *
2581
+ * Update a webhook endpoint for an organization.
2582
+ *
2583
+ * `POST /public/v1/submit/update_webhook_endpoint`
2584
+ */
2585
+ const updateWebhookEndpoint = (input) => request({
2586
+ uri: "/public/v1/submit/update_webhook_endpoint",
2587
+ method: "POST",
2588
+ body: input.body,
2589
+ });
2590
+ /**
2591
+ * Request a WebAuthn assertion and return a signed `UpdateWebhookEndpoint` request, ready to be POSTed to Turnkey.
2592
+ *
2593
+ * See {@link UpdateWebhookEndpoint}
2594
+ */
2595
+ const signUpdateWebhookEndpoint = (input, options) => signedRequest({
2596
+ uri: "/public/v1/submit/update_webhook_endpoint",
2597
+ body: input.body,
2598
+ options,
2599
+ });
2666
2600
  /**
2667
2601
  * Verify generic OTP
2668
2602
  *
@@ -2700,50 +2634,6 @@ const nOOPCodegenAnchor = () => request({
2700
2634
  const signNOOPCodegenAnchor = () => signedRequest({
2701
2635
  uri: "/tkhq/api/v1/noop-codegen-anchor",
2702
2636
  });
2703
- /**
2704
- * Refresh feature flags
2705
- *
2706
- * Refresh feature flags by triggering a DB read to flush the in-memory cache.
2707
- *
2708
- * `POST /tkhq/api/v1/refresh_feature_flags`
2709
- */
2710
- const refreshFeatureFlags = (input) => request({
2711
- uri: "/tkhq/api/v1/refresh_feature_flags",
2712
- method: "POST",
2713
- body: input.body,
2714
- });
2715
- /**
2716
- * Request a WebAuthn assertion and return a signed `RefreshFeatureFlags` request, ready to be POSTed to Turnkey.
2717
- *
2718
- * See {@link RefreshFeatureFlags}
2719
- */
2720
- const signRefreshFeatureFlags = (input, options) => signedRequest({
2721
- uri: "/tkhq/api/v1/refresh_feature_flags",
2722
- body: input.body,
2723
- options,
2724
- });
2725
- /**
2726
- * Test rate limit
2727
- *
2728
- * Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite.
2729
- *
2730
- * `POST /tkhq/api/v1/test_rate_limits`
2731
- */
2732
- const testRateLimits = (input) => request({
2733
- uri: "/tkhq/api/v1/test_rate_limits",
2734
- method: "POST",
2735
- body: input.body,
2736
- });
2737
- /**
2738
- * Request a WebAuthn assertion and return a signed `TestRateLimits` request, ready to be POSTed to Turnkey.
2739
- *
2740
- * See {@link TestRateLimits}
2741
- */
2742
- const signTestRateLimits = (input, options) => signedRequest({
2743
- uri: "/tkhq/api/v1/test_rate_limits",
2744
- body: input.body,
2745
- options,
2746
- });
2747
2637
 
2748
- export { approveActivity, createApiKeys, createApiOnlyUsers, createAuthenticators, createFiatOnRampCredential, createInvitations, createOauth2Credential, createOauthProviders, createPolicies, createPolicy, createPrivateKeyTag, createPrivateKeys, createReadOnlySession, createReadWriteSession, createSmartContractInterface, createSubOrganization, createTvcApp, createTvcDeployment, createTvcManifestApprovals, createUserTag, createUsers, createWallet, createWalletAccounts, deleteApiKeys, deleteAuthenticators, deleteFiatOnRampCredential, deleteInvitation, deleteOauth2Credential, deleteOauthProviders, deletePolicies, deletePolicy, deletePrivateKeyTags, deletePrivateKeys, deleteSmartContractInterface, deleteSubOrganization, deleteUserTags, deleteUsers, deleteWalletAccounts, deleteWallets, emailAuth, ethSendRawTransaction, ethSendTransaction, exportPrivateKey, exportWallet, exportWalletAccount, getActivities, getActivity, getApiKey, getApiKeys, getAppProofs, getAuthenticator, getAuthenticators, getBootProof, getGasUsage, getLatestBootProof, getNonces, getOauth2Credential, getOauthProviders, getOnRampTransactionStatus, getOrganization, getOrganizationConfigs, getPolicies, getPolicy, getPolicyEvaluations, getPrivateKey, getPrivateKeys, getSendTransactionStatus, getSmartContractInterface, getSmartContractInterfaces, getSubOrgIds, getTvcApp, getTvcAppDeployments, getTvcApps, getTvcDeployment, getUser, getUsers, getVerifiedSubOrgIds, getWallet, getWalletAccount, getWalletAccounts, getWalletAddressBalances, getWallets, getWhoami, importPrivateKey, importWallet, initFiatOnRamp, initImportPrivateKey, initImportWallet, initOtp, initOtpAuth, initUserEmailRecovery, listFiatOnRampCredentials, listOauth2Credentials, listPrivateKeyTags, listSupportedAssets, listUserTags, nOOPCodegenAnchor, oauth, oauth2Authenticate, oauthLogin, otpAuth, otpLogin, recoverUser, refreshFeatureFlags, rejectActivity, removeOrganizationFeature, setOrganizationFeature, signApproveActivity, signCreateApiKeys, signCreateApiOnlyUsers, signCreateAuthenticators, signCreateFiatOnRampCredential, signCreateInvitations, signCreateOauth2Credential, signCreateOauthProviders, signCreatePolicies, signCreatePolicy, signCreatePrivateKeyTag, signCreatePrivateKeys, signCreateReadOnlySession, signCreateReadWriteSession, signCreateSmartContractInterface, signCreateSubOrganization, signCreateTvcApp, signCreateTvcDeployment, signCreateTvcManifestApprovals, signCreateUserTag, signCreateUsers, signCreateWallet, signCreateWalletAccounts, signDeleteApiKeys, signDeleteAuthenticators, signDeleteFiatOnRampCredential, signDeleteInvitation, signDeleteOauth2Credential, signDeleteOauthProviders, signDeletePolicies, signDeletePolicy, signDeletePrivateKeyTags, signDeletePrivateKeys, signDeleteSmartContractInterface, signDeleteSubOrganization, signDeleteUserTags, signDeleteUsers, signDeleteWalletAccounts, signDeleteWallets, signEmailAuth, signEthSendRawTransaction, signEthSendTransaction, signExportPrivateKey, signExportWallet, signExportWalletAccount, signGetActivities, signGetActivity, signGetApiKey, signGetApiKeys, signGetAppProofs, signGetAuthenticator, signGetAuthenticators, signGetBootProof, signGetGasUsage, signGetLatestBootProof, signGetNonces, signGetOauth2Credential, signGetOauthProviders, signGetOnRampTransactionStatus, signGetOrganization, signGetOrganizationConfigs, signGetPolicies, signGetPolicy, signGetPolicyEvaluations, signGetPrivateKey, signGetPrivateKeys, signGetSendTransactionStatus, signGetSmartContractInterface, signGetSmartContractInterfaces, signGetSubOrgIds, signGetTvcApp, signGetTvcAppDeployments, signGetTvcApps, signGetTvcDeployment, signGetUser, signGetUsers, signGetVerifiedSubOrgIds, signGetWallet, signGetWalletAccount, signGetWalletAccounts, signGetWalletAddressBalances, signGetWallets, signGetWhoami, signImportPrivateKey, signImportWallet, signInitFiatOnRamp, signInitImportPrivateKey, signInitImportWallet, signInitOtp, signInitOtpAuth, signInitUserEmailRecovery, signListFiatOnRampCredentials, signListOauth2Credentials, signListPrivateKeyTags, signListSupportedAssets, signListUserTags, signNOOPCodegenAnchor, signOauth, signOauth2Authenticate, signOauthLogin, signOtpAuth, signOtpLogin, signRawPayload, signRawPayloads, signRecoverUser, signRefreshFeatureFlags, signRejectActivity, signRemoveOrganizationFeature, signSetOrganizationFeature, signSignRawPayload, signSignRawPayloads, signSignTransaction, signSolSendTransaction, signStampLogin, signTestRateLimits, signTransaction, signUpdateFiatOnRampCredential, signUpdateOauth2Credential, signUpdatePolicy, signUpdatePrivateKeyTag, signUpdateRootQuorum, signUpdateUser, signUpdateUserEmail, signUpdateUserName, signUpdateUserPhoneNumber, signUpdateUserTag, signUpdateWallet, signVerifyOtp, solSendTransaction, stampLogin, testRateLimits, updateFiatOnRampCredential, updateOauth2Credential, updatePolicy, updatePrivateKeyTag, updateRootQuorum, updateUser, updateUserEmail, updateUserName, updateUserPhoneNumber, updateUserTag, updateWallet, verifyOtp };
2638
+ export { approveActivity, createApiKeys, createApiOnlyUsers, createAuthenticators, createFiatOnRampCredential, createInvitations, createOauth2Credential, createOauthProviders, createPolicies, createPolicy, createPrivateKeyTag, createPrivateKeys, createReadOnlySession, createReadWriteSession, createSmartContractInterface, createSubOrganization, createUserTag, createUsers, createWallet, createWalletAccounts, createWebhookEndpoint, deleteApiKeys, deleteAuthenticators, deleteFiatOnRampCredential, deleteInvitation, deleteOauth2Credential, deleteOauthProviders, deletePolicies, deletePolicy, deletePrivateKeyTags, deletePrivateKeys, deleteSmartContractInterface, deleteSubOrganization, deleteUserTags, deleteUsers, deleteWalletAccounts, deleteWallets, deleteWebhookEndpoint, emailAuth, ethSendTransaction, exportPrivateKey, exportWallet, exportWalletAccount, getActivities, getActivity, getApiKey, getApiKeys, getAppProofs, getAppStatus, getAuthenticator, getAuthenticators, getBootProof, getGasUsage, getLatestBootProof, getNonces, getOauth2Credential, getOauthProviders, getOnRampTransactionStatus, getOrganizationConfigs, getPolicies, getPolicy, getPolicyEvaluations, getPrivateKey, getPrivateKeys, getSendTransactionStatus, getSmartContractInterface, getSmartContractInterfaces, getSubOrgIds, getUser, getUsers, getVerifiedSubOrgIds, getWallet, getWalletAccount, getWalletAccounts, getWalletAddressBalances, getWallets, getWhoami, importPrivateKey, importWallet, initFiatOnRamp, initImportPrivateKey, initImportWallet, initOtp, initOtpAuth, initUserEmailRecovery, listFiatOnRampCredentials, listOauth2Credentials, listPrivateKeyTags, listSupportedAssets, listUserTags, listWebhookEndpoints, nOOPCodegenAnchor, oauth, oauth2Authenticate, oauthLogin, otpAuth, otpLogin, recoverUser, rejectActivity, removeOrganizationFeature, setOrganizationFeature, signApproveActivity, signCreateApiKeys, signCreateApiOnlyUsers, signCreateAuthenticators, signCreateFiatOnRampCredential, signCreateInvitations, signCreateOauth2Credential, signCreateOauthProviders, signCreatePolicies, signCreatePolicy, signCreatePrivateKeyTag, signCreatePrivateKeys, signCreateReadOnlySession, signCreateReadWriteSession, signCreateSmartContractInterface, signCreateSubOrganization, signCreateUserTag, signCreateUsers, signCreateWallet, signCreateWalletAccounts, signCreateWebhookEndpoint, signDeleteApiKeys, signDeleteAuthenticators, signDeleteFiatOnRampCredential, signDeleteInvitation, signDeleteOauth2Credential, signDeleteOauthProviders, signDeletePolicies, signDeletePolicy, signDeletePrivateKeyTags, signDeletePrivateKeys, signDeleteSmartContractInterface, signDeleteSubOrganization, signDeleteUserTags, signDeleteUsers, signDeleteWalletAccounts, signDeleteWallets, signDeleteWebhookEndpoint, signEmailAuth, signEthSendTransaction, signExportPrivateKey, signExportWallet, signExportWalletAccount, signGetActivities, signGetActivity, signGetApiKey, signGetApiKeys, signGetAppProofs, signGetAppStatus, signGetAuthenticator, signGetAuthenticators, signGetBootProof, signGetGasUsage, signGetLatestBootProof, signGetNonces, signGetOauth2Credential, signGetOauthProviders, signGetOnRampTransactionStatus, signGetOrganizationConfigs, signGetPolicies, signGetPolicy, signGetPolicyEvaluations, signGetPrivateKey, signGetPrivateKeys, signGetSendTransactionStatus, signGetSmartContractInterface, signGetSmartContractInterfaces, signGetSubOrgIds, signGetUser, signGetUsers, signGetVerifiedSubOrgIds, signGetWallet, signGetWalletAccount, signGetWalletAccounts, signGetWalletAddressBalances, signGetWallets, signGetWhoami, signImportPrivateKey, signImportWallet, signInitFiatOnRamp, signInitImportPrivateKey, signInitImportWallet, signInitOtp, signInitOtpAuth, signInitUserEmailRecovery, signListFiatOnRampCredentials, signListOauth2Credentials, signListPrivateKeyTags, signListSupportedAssets, signListUserTags, signListWebhookEndpoints, signNOOPCodegenAnchor, signOauth, signOauth2Authenticate, signOauthLogin, signOtpAuth, signOtpLogin, signRawPayload, signRawPayloads, signRecoverUser, signRejectActivity, signRemoveOrganizationFeature, signSetOrganizationFeature, signSignRawPayload, signSignRawPayloads, signSignTransaction, signSolSendTransaction, signStampLogin, signTransaction, signUpdateFiatOnRampCredential, signUpdateOauth2Credential, signUpdateOrganizationName, signUpdatePolicy, signUpdatePrivateKeyTag, signUpdateRootQuorum, signUpdateUser, signUpdateUserEmail, signUpdateUserName, signUpdateUserPhoneNumber, signUpdateUserTag, signUpdateWallet, signUpdateWebhookEndpoint, signVerifyOtp, solSendTransaction, stampLogin, updateFiatOnRampCredential, updateOauth2Credential, updateOrganizationName, updatePolicy, updatePrivateKeyTag, updateRootQuorum, updateUser, updateUserEmail, updateUserName, updateUserPhoneNumber, updateUserTag, updateWallet, updateWebhookEndpoint, verifyOtp };
2749
2639
  //# sourceMappingURL=public_api.fetcher.mjs.map