@turnkey/http 3.18.1 → 4.0.0

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.
@@ -179,6 +179,28 @@ const signGetGasUsage = (input, options) => base.signedRequest({
179
179
  body: input.body,
180
180
  options,
181
181
  });
182
+ /**
183
+ * Get IP Allowlist
184
+ *
185
+ * Get IP allowlist and rules for an organization.
186
+ *
187
+ * `POST /public/v1/query/get_ip_allowlist`
188
+ */
189
+ const getIpAllowlist = (input) => base.request({
190
+ uri: "/public/v1/query/get_ip_allowlist",
191
+ method: "POST",
192
+ body: input.body,
193
+ });
194
+ /**
195
+ * Request a WebAuthn assertion and return a signed `GetIpAllowlist` request, ready to be POSTed to Turnkey.
196
+ *
197
+ * See {@link GetIpAllowlist}
198
+ */
199
+ const signGetIpAllowlist = (input, options) => base.signedRequest({
200
+ uri: "/public/v1/query/get_ip_allowlist",
201
+ body: input.body,
202
+ options,
203
+ });
182
204
  /**
183
205
  * Get the latest boot proof for an app
184
206
  *
@@ -289,6 +311,28 @@ const signGetOnRampTransactionStatus = (input, options) => base.signedRequest({
289
311
  body: input.body,
290
312
  options,
291
313
  });
314
+ /**
315
+ * Get organization
316
+ *
317
+ * Get details about an organization.
318
+ *
319
+ * `POST /public/v1/query/get_organization`
320
+ */
321
+ const getOrganization = (input) => base.request({
322
+ uri: "/public/v1/query/get_organization",
323
+ method: "POST",
324
+ body: input.body,
325
+ });
326
+ /**
327
+ * Request a WebAuthn assertion and return a signed `GetOrganization` request, ready to be POSTed to Turnkey.
328
+ *
329
+ * See {@link GetOrganization}
330
+ */
331
+ const signGetOrganization = (input, options) => base.signedRequest({
332
+ uri: "/public/v1/query/get_organization",
333
+ body: input.body,
334
+ options,
335
+ });
292
336
  /**
293
337
  * Get configs
294
338
  *
@@ -421,6 +465,50 @@ const signGetSmartContractInterface = (input, options) => base.signedRequest({
421
465
  body: input.body,
422
466
  options,
423
467
  });
468
+ /**
469
+ * Get TVC App
470
+ *
471
+ * Get details about a single TVC App
472
+ *
473
+ * `POST /public/v1/query/get_tvc_app`
474
+ */
475
+ const getTvcApp = (input) => base.request({
476
+ uri: "/public/v1/query/get_tvc_app",
477
+ method: "POST",
478
+ body: input.body,
479
+ });
480
+ /**
481
+ * Request a WebAuthn assertion and return a signed `GetTvcApp` request, ready to be POSTed to Turnkey.
482
+ *
483
+ * See {@link GetTvcApp}
484
+ */
485
+ const signGetTvcApp = (input, options) => base.signedRequest({
486
+ uri: "/public/v1/query/get_tvc_app",
487
+ body: input.body,
488
+ options,
489
+ });
490
+ /**
491
+ * Get TVC Deployment
492
+ *
493
+ * Get details about a single TVC Deployment
494
+ *
495
+ * `POST /public/v1/query/get_tvc_deployment`
496
+ */
497
+ const getTvcDeployment = (input) => base.request({
498
+ uri: "/public/v1/query/get_tvc_deployment",
499
+ method: "POST",
500
+ body: input.body,
501
+ });
502
+ /**
503
+ * Request a WebAuthn assertion and return a signed `GetTvcDeployment` request, ready to be POSTed to Turnkey.
504
+ *
505
+ * See {@link GetTvcDeployment}
506
+ */
507
+ const signGetTvcDeployment = (input, options) => base.signedRequest({
508
+ uri: "/public/v1/query/get_tvc_deployment",
509
+ body: input.body,
510
+ options,
511
+ });
424
512
  /**
425
513
  * Get user
426
514
  *
@@ -729,6 +817,50 @@ const signListSupportedAssets = (input, options) => base.signedRequest({
729
817
  body: input.body,
730
818
  options,
731
819
  });
820
+ /**
821
+ * List TVC Deployments
822
+ *
823
+ * List all deployments for a given TVC App
824
+ *
825
+ * `POST /public/v1/query/list_tvc_app_deployments`
826
+ */
827
+ const getTvcAppDeployments = (input) => base.request({
828
+ uri: "/public/v1/query/list_tvc_app_deployments",
829
+ method: "POST",
830
+ body: input.body,
831
+ });
832
+ /**
833
+ * Request a WebAuthn assertion and return a signed `GetTvcAppDeployments` request, ready to be POSTed to Turnkey.
834
+ *
835
+ * See {@link GetTvcAppDeployments}
836
+ */
837
+ const signGetTvcAppDeployments = (input, options) => base.signedRequest({
838
+ uri: "/public/v1/query/list_tvc_app_deployments",
839
+ body: input.body,
840
+ options,
841
+ });
842
+ /**
843
+ * List TVC Apps
844
+ *
845
+ * List all TVC Apps within an organization.
846
+ *
847
+ * `POST /public/v1/query/list_tvc_apps`
848
+ */
849
+ const getTvcApps = (input) => base.request({
850
+ uri: "/public/v1/query/list_tvc_apps",
851
+ method: "POST",
852
+ body: input.body,
853
+ });
854
+ /**
855
+ * Request a WebAuthn assertion and return a signed `GetTvcApps` request, ready to be POSTed to Turnkey.
856
+ *
857
+ * See {@link GetTvcApps}
858
+ */
859
+ const signGetTvcApps = (input, options) => base.signedRequest({
860
+ uri: "/public/v1/query/list_tvc_apps",
861
+ body: input.body,
862
+ options,
863
+ });
732
864
  /**
733
865
  * List user tags
734
866
  *
@@ -861,6 +993,28 @@ const signListWebhookEndpoints = (input, options) => base.signedRequest({
861
993
  body: input.body,
862
994
  options,
863
995
  });
996
+ /**
997
+ * Validate Container Image for TVC
998
+ *
999
+ * Validate a container image URL and pull secret for TVC deployment
1000
+ *
1001
+ * `POST /public/v1/query/validate_tvc_image`
1002
+ */
1003
+ const validateTvcImage = (input) => base.request({
1004
+ uri: "/public/v1/query/validate_tvc_image",
1005
+ method: "POST",
1006
+ body: input.body,
1007
+ });
1008
+ /**
1009
+ * Request a WebAuthn assertion and return a signed `ValidateTvcImage` request, ready to be POSTed to Turnkey.
1010
+ *
1011
+ * See {@link ValidateTvcImage}
1012
+ */
1013
+ const signValidateTvcImage = (input, options) => base.signedRequest({
1014
+ uri: "/public/v1/query/validate_tvc_image",
1015
+ body: input.body,
1016
+ options,
1017
+ });
864
1018
  /**
865
1019
  * Who am I?
866
1020
  *
@@ -1235,6 +1389,72 @@ const signCreateSubOrganization = (input, options) => base.signedRequest({
1235
1389
  body: input.body,
1236
1390
  options,
1237
1391
  });
1392
+ /**
1393
+ * Create a TVC App
1394
+ *
1395
+ * Create a new TVC application
1396
+ *
1397
+ * `POST /public/v1/submit/create_tvc_app`
1398
+ */
1399
+ const createTvcApp = (input) => base.request({
1400
+ uri: "/public/v1/submit/create_tvc_app",
1401
+ method: "POST",
1402
+ body: input.body,
1403
+ });
1404
+ /**
1405
+ * Request a WebAuthn assertion and return a signed `CreateTvcApp` request, ready to be POSTed to Turnkey.
1406
+ *
1407
+ * See {@link CreateTvcApp}
1408
+ */
1409
+ const signCreateTvcApp = (input, options) => base.signedRequest({
1410
+ uri: "/public/v1/submit/create_tvc_app",
1411
+ body: input.body,
1412
+ options,
1413
+ });
1414
+ /**
1415
+ * Create a TVC Deployment
1416
+ *
1417
+ * Create a new TVC Deployment
1418
+ *
1419
+ * `POST /public/v1/submit/create_tvc_deployment`
1420
+ */
1421
+ const createTvcDeployment = (input) => base.request({
1422
+ uri: "/public/v1/submit/create_tvc_deployment",
1423
+ method: "POST",
1424
+ body: input.body,
1425
+ });
1426
+ /**
1427
+ * Request a WebAuthn assertion and return a signed `CreateTvcDeployment` request, ready to be POSTed to Turnkey.
1428
+ *
1429
+ * See {@link CreateTvcDeployment}
1430
+ */
1431
+ const signCreateTvcDeployment = (input, options) => base.signedRequest({
1432
+ uri: "/public/v1/submit/create_tvc_deployment",
1433
+ body: input.body,
1434
+ options,
1435
+ });
1436
+ /**
1437
+ * Create TVC Manifest Approvals
1438
+ *
1439
+ * Post one or more manifest approvals for a TVC Manifest
1440
+ *
1441
+ * `POST /public/v1/submit/create_tvc_manifest_approvals`
1442
+ */
1443
+ const createTvcManifestApprovals = (input) => base.request({
1444
+ uri: "/public/v1/submit/create_tvc_manifest_approvals",
1445
+ method: "POST",
1446
+ body: input.body,
1447
+ });
1448
+ /**
1449
+ * Request a WebAuthn assertion and return a signed `CreateTvcManifestApprovals` request, ready to be POSTed to Turnkey.
1450
+ *
1451
+ * See {@link CreateTvcManifestApprovals}
1452
+ */
1453
+ const signCreateTvcManifestApprovals = (input, options) => base.signedRequest({
1454
+ uri: "/public/v1/submit/create_tvc_manifest_approvals",
1455
+ body: input.body,
1456
+ options,
1457
+ });
1238
1458
  /**
1239
1459
  * Create user tag
1240
1460
  *
@@ -1741,6 +1961,28 @@ const signEmailAuth = (input, options) => base.signedRequest({
1741
1961
  body: input.body,
1742
1962
  options,
1743
1963
  });
1964
+ /**
1965
+ * Submit a raw transaction for broadcasting.
1966
+ *
1967
+ * Submit a raw transaction (serialized and signed) for broadcasting to the network.
1968
+ *
1969
+ * `POST /public/v1/submit/eth_send_raw_transaction`
1970
+ */
1971
+ const ethSendRawTransaction = (input) => base.request({
1972
+ uri: "/public/v1/submit/eth_send_raw_transaction",
1973
+ method: "POST",
1974
+ body: input.body,
1975
+ });
1976
+ /**
1977
+ * Request a WebAuthn assertion and return a signed `EthSendRawTransaction` request, ready to be POSTed to Turnkey.
1978
+ *
1979
+ * See {@link EthSendRawTransaction}
1980
+ */
1981
+ const signEthSendRawTransaction = (input, options) => base.signedRequest({
1982
+ uri: "/public/v1/submit/eth_send_raw_transaction",
1983
+ body: input.body,
1984
+ options,
1985
+ });
1744
1986
  /**
1745
1987
  * Broadcast EVM transaction
1746
1988
  *
@@ -2159,6 +2401,28 @@ const signRejectActivity = (input, options) => base.signedRequest({
2159
2401
  body: input.body,
2160
2402
  options,
2161
2403
  });
2404
+ /**
2405
+ * Remove IP Allowlist
2406
+ *
2407
+ * Delete IP allowlist and all associated rules for organization or API key. After removal, access will be determined by organization-level allowlist (for API keys) or allowed from all IPs (for organizations).
2408
+ *
2409
+ * `POST /public/v1/submit/remove_ip_allowlist`
2410
+ */
2411
+ const removeIpAllowlist = (input) => base.request({
2412
+ uri: "/public/v1/submit/remove_ip_allowlist",
2413
+ method: "POST",
2414
+ body: input.body,
2415
+ });
2416
+ /**
2417
+ * Request a WebAuthn assertion and return a signed `RemoveIpAllowlist` request, ready to be POSTed to Turnkey.
2418
+ *
2419
+ * See {@link RemoveIpAllowlist}
2420
+ */
2421
+ const signRemoveIpAllowlist = (input, options) => base.signedRequest({
2422
+ uri: "/public/v1/submit/remove_ip_allowlist",
2423
+ body: input.body,
2424
+ options,
2425
+ });
2162
2426
  /**
2163
2427
  * Remove organization feature
2164
2428
  *
@@ -2181,6 +2445,28 @@ const signRemoveOrganizationFeature = (input, options) => base.signedRequest({
2181
2445
  body: input.body,
2182
2446
  options,
2183
2447
  });
2448
+ /**
2449
+ * Set IP Allowlist
2450
+ *
2451
+ * Create or update IP allowlist and rules for organization or API key. The IP allowlist restricts API access to specific CIDR blocks. Organization-level allowlists apply to all API keys unless overridden by a key-specific allowlist.
2452
+ *
2453
+ * `POST /public/v1/submit/set_ip_allowlist`
2454
+ */
2455
+ const setIpAllowlist = (input) => base.request({
2456
+ uri: "/public/v1/submit/set_ip_allowlist",
2457
+ method: "POST",
2458
+ body: input.body,
2459
+ });
2460
+ /**
2461
+ * Request a WebAuthn assertion and return a signed `SetIpAllowlist` request, ready to be POSTed to Turnkey.
2462
+ *
2463
+ * See {@link SetIpAllowlist}
2464
+ */
2465
+ const signSetIpAllowlist = (input, options) => base.signedRequest({
2466
+ uri: "/public/v1/submit/set_ip_allowlist",
2467
+ body: input.body,
2468
+ options,
2469
+ });
2184
2470
  /**
2185
2471
  * Set organization feature
2186
2472
  *
@@ -2636,6 +2922,50 @@ const nOOPCodegenAnchor = () => base.request({
2636
2922
  const signNOOPCodegenAnchor = () => base.signedRequest({
2637
2923
  uri: "/tkhq/api/v1/noop-codegen-anchor",
2638
2924
  });
2925
+ /**
2926
+ * Refresh feature flags
2927
+ *
2928
+ * Refresh feature flags by triggering a DB read to flush the in-memory cache.
2929
+ *
2930
+ * `POST /tkhq/api/v1/refresh_feature_flags`
2931
+ */
2932
+ const refreshFeatureFlags = (input) => base.request({
2933
+ uri: "/tkhq/api/v1/refresh_feature_flags",
2934
+ method: "POST",
2935
+ body: input.body,
2936
+ });
2937
+ /**
2938
+ * Request a WebAuthn assertion and return a signed `RefreshFeatureFlags` request, ready to be POSTed to Turnkey.
2939
+ *
2940
+ * See {@link RefreshFeatureFlags}
2941
+ */
2942
+ const signRefreshFeatureFlags = (input, options) => base.signedRequest({
2943
+ uri: "/tkhq/api/v1/refresh_feature_flags",
2944
+ body: input.body,
2945
+ options,
2946
+ });
2947
+ /**
2948
+ * Test rate limit
2949
+ *
2950
+ * Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite.
2951
+ *
2952
+ * `POST /tkhq/api/v1/test_rate_limits`
2953
+ */
2954
+ const testRateLimits = (input) => base.request({
2955
+ uri: "/tkhq/api/v1/test_rate_limits",
2956
+ method: "POST",
2957
+ body: input.body,
2958
+ });
2959
+ /**
2960
+ * Request a WebAuthn assertion and return a signed `TestRateLimits` request, ready to be POSTed to Turnkey.
2961
+ *
2962
+ * See {@link TestRateLimits}
2963
+ */
2964
+ const signTestRateLimits = (input, options) => base.signedRequest({
2965
+ uri: "/tkhq/api/v1/test_rate_limits",
2966
+ body: input.body,
2967
+ options,
2968
+ });
2639
2969
 
2640
2970
  exports.approveActivity = approveActivity;
2641
2971
  exports.createApiKeys = createApiKeys;
@@ -2653,6 +2983,9 @@ exports.createReadOnlySession = createReadOnlySession;
2653
2983
  exports.createReadWriteSession = createReadWriteSession;
2654
2984
  exports.createSmartContractInterface = createSmartContractInterface;
2655
2985
  exports.createSubOrganization = createSubOrganization;
2986
+ exports.createTvcApp = createTvcApp;
2987
+ exports.createTvcDeployment = createTvcDeployment;
2988
+ exports.createTvcManifestApprovals = createTvcManifestApprovals;
2656
2989
  exports.createUserTag = createUserTag;
2657
2990
  exports.createUsers = createUsers;
2658
2991
  exports.createWallet = createWallet;
@@ -2676,6 +3009,7 @@ exports.deleteWalletAccounts = deleteWalletAccounts;
2676
3009
  exports.deleteWallets = deleteWallets;
2677
3010
  exports.deleteWebhookEndpoint = deleteWebhookEndpoint;
2678
3011
  exports.emailAuth = emailAuth;
3012
+ exports.ethSendRawTransaction = ethSendRawTransaction;
2679
3013
  exports.ethSendTransaction = ethSendTransaction;
2680
3014
  exports.exportPrivateKey = exportPrivateKey;
2681
3015
  exports.exportWallet = exportWallet;
@@ -2690,11 +3024,13 @@ exports.getAuthenticator = getAuthenticator;
2690
3024
  exports.getAuthenticators = getAuthenticators;
2691
3025
  exports.getBootProof = getBootProof;
2692
3026
  exports.getGasUsage = getGasUsage;
3027
+ exports.getIpAllowlist = getIpAllowlist;
2693
3028
  exports.getLatestBootProof = getLatestBootProof;
2694
3029
  exports.getNonces = getNonces;
2695
3030
  exports.getOauth2Credential = getOauth2Credential;
2696
3031
  exports.getOauthProviders = getOauthProviders;
2697
3032
  exports.getOnRampTransactionStatus = getOnRampTransactionStatus;
3033
+ exports.getOrganization = getOrganization;
2698
3034
  exports.getOrganizationConfigs = getOrganizationConfigs;
2699
3035
  exports.getPolicies = getPolicies;
2700
3036
  exports.getPolicy = getPolicy;
@@ -2705,6 +3041,10 @@ exports.getSendTransactionStatus = getSendTransactionStatus;
2705
3041
  exports.getSmartContractInterface = getSmartContractInterface;
2706
3042
  exports.getSmartContractInterfaces = getSmartContractInterfaces;
2707
3043
  exports.getSubOrgIds = getSubOrgIds;
3044
+ exports.getTvcApp = getTvcApp;
3045
+ exports.getTvcAppDeployments = getTvcAppDeployments;
3046
+ exports.getTvcApps = getTvcApps;
3047
+ exports.getTvcDeployment = getTvcDeployment;
2708
3048
  exports.getUser = getUser;
2709
3049
  exports.getUsers = getUsers;
2710
3050
  exports.getVerifiedSubOrgIds = getVerifiedSubOrgIds;
@@ -2735,8 +3075,11 @@ exports.oauthLogin = oauthLogin;
2735
3075
  exports.otpAuth = otpAuth;
2736
3076
  exports.otpLogin = otpLogin;
2737
3077
  exports.recoverUser = recoverUser;
3078
+ exports.refreshFeatureFlags = refreshFeatureFlags;
2738
3079
  exports.rejectActivity = rejectActivity;
3080
+ exports.removeIpAllowlist = removeIpAllowlist;
2739
3081
  exports.removeOrganizationFeature = removeOrganizationFeature;
3082
+ exports.setIpAllowlist = setIpAllowlist;
2740
3083
  exports.setOrganizationFeature = setOrganizationFeature;
2741
3084
  exports.signApproveActivity = signApproveActivity;
2742
3085
  exports.signCreateApiKeys = signCreateApiKeys;
@@ -2754,6 +3097,9 @@ exports.signCreateReadOnlySession = signCreateReadOnlySession;
2754
3097
  exports.signCreateReadWriteSession = signCreateReadWriteSession;
2755
3098
  exports.signCreateSmartContractInterface = signCreateSmartContractInterface;
2756
3099
  exports.signCreateSubOrganization = signCreateSubOrganization;
3100
+ exports.signCreateTvcApp = signCreateTvcApp;
3101
+ exports.signCreateTvcDeployment = signCreateTvcDeployment;
3102
+ exports.signCreateTvcManifestApprovals = signCreateTvcManifestApprovals;
2757
3103
  exports.signCreateUserTag = signCreateUserTag;
2758
3104
  exports.signCreateUsers = signCreateUsers;
2759
3105
  exports.signCreateWallet = signCreateWallet;
@@ -2777,6 +3123,7 @@ exports.signDeleteWalletAccounts = signDeleteWalletAccounts;
2777
3123
  exports.signDeleteWallets = signDeleteWallets;
2778
3124
  exports.signDeleteWebhookEndpoint = signDeleteWebhookEndpoint;
2779
3125
  exports.signEmailAuth = signEmailAuth;
3126
+ exports.signEthSendRawTransaction = signEthSendRawTransaction;
2780
3127
  exports.signEthSendTransaction = signEthSendTransaction;
2781
3128
  exports.signExportPrivateKey = signExportPrivateKey;
2782
3129
  exports.signExportWallet = signExportWallet;
@@ -2791,11 +3138,13 @@ exports.signGetAuthenticator = signGetAuthenticator;
2791
3138
  exports.signGetAuthenticators = signGetAuthenticators;
2792
3139
  exports.signGetBootProof = signGetBootProof;
2793
3140
  exports.signGetGasUsage = signGetGasUsage;
3141
+ exports.signGetIpAllowlist = signGetIpAllowlist;
2794
3142
  exports.signGetLatestBootProof = signGetLatestBootProof;
2795
3143
  exports.signGetNonces = signGetNonces;
2796
3144
  exports.signGetOauth2Credential = signGetOauth2Credential;
2797
3145
  exports.signGetOauthProviders = signGetOauthProviders;
2798
3146
  exports.signGetOnRampTransactionStatus = signGetOnRampTransactionStatus;
3147
+ exports.signGetOrganization = signGetOrganization;
2799
3148
  exports.signGetOrganizationConfigs = signGetOrganizationConfigs;
2800
3149
  exports.signGetPolicies = signGetPolicies;
2801
3150
  exports.signGetPolicy = signGetPolicy;
@@ -2806,6 +3155,10 @@ exports.signGetSendTransactionStatus = signGetSendTransactionStatus;
2806
3155
  exports.signGetSmartContractInterface = signGetSmartContractInterface;
2807
3156
  exports.signGetSmartContractInterfaces = signGetSmartContractInterfaces;
2808
3157
  exports.signGetSubOrgIds = signGetSubOrgIds;
3158
+ exports.signGetTvcApp = signGetTvcApp;
3159
+ exports.signGetTvcAppDeployments = signGetTvcAppDeployments;
3160
+ exports.signGetTvcApps = signGetTvcApps;
3161
+ exports.signGetTvcDeployment = signGetTvcDeployment;
2809
3162
  exports.signGetUser = signGetUser;
2810
3163
  exports.signGetUsers = signGetUsers;
2811
3164
  exports.signGetVerifiedSubOrgIds = signGetVerifiedSubOrgIds;
@@ -2838,14 +3191,18 @@ exports.signOtpLogin = signOtpLogin;
2838
3191
  exports.signRawPayload = signRawPayload;
2839
3192
  exports.signRawPayloads = signRawPayloads;
2840
3193
  exports.signRecoverUser = signRecoverUser;
3194
+ exports.signRefreshFeatureFlags = signRefreshFeatureFlags;
2841
3195
  exports.signRejectActivity = signRejectActivity;
3196
+ exports.signRemoveIpAllowlist = signRemoveIpAllowlist;
2842
3197
  exports.signRemoveOrganizationFeature = signRemoveOrganizationFeature;
3198
+ exports.signSetIpAllowlist = signSetIpAllowlist;
2843
3199
  exports.signSetOrganizationFeature = signSetOrganizationFeature;
2844
3200
  exports.signSignRawPayload = signSignRawPayload;
2845
3201
  exports.signSignRawPayloads = signSignRawPayloads;
2846
3202
  exports.signSignTransaction = signSignTransaction;
2847
3203
  exports.signSolSendTransaction = signSolSendTransaction;
2848
3204
  exports.signStampLogin = signStampLogin;
3205
+ exports.signTestRateLimits = signTestRateLimits;
2849
3206
  exports.signTransaction = signTransaction;
2850
3207
  exports.signUpdateFiatOnRampCredential = signUpdateFiatOnRampCredential;
2851
3208
  exports.signUpdateOauth2Credential = signUpdateOauth2Credential;
@@ -2860,9 +3217,11 @@ exports.signUpdateUserPhoneNumber = signUpdateUserPhoneNumber;
2860
3217
  exports.signUpdateUserTag = signUpdateUserTag;
2861
3218
  exports.signUpdateWallet = signUpdateWallet;
2862
3219
  exports.signUpdateWebhookEndpoint = signUpdateWebhookEndpoint;
3220
+ exports.signValidateTvcImage = signValidateTvcImage;
2863
3221
  exports.signVerifyOtp = signVerifyOtp;
2864
3222
  exports.solSendTransaction = solSendTransaction;
2865
3223
  exports.stampLogin = stampLogin;
3224
+ exports.testRateLimits = testRateLimits;
2866
3225
  exports.updateFiatOnRampCredential = updateFiatOnRampCredential;
2867
3226
  exports.updateOauth2Credential = updateOauth2Credential;
2868
3227
  exports.updateOrganizationName = updateOrganizationName;
@@ -2876,5 +3235,6 @@ exports.updateUserPhoneNumber = updateUserPhoneNumber;
2876
3235
  exports.updateUserTag = updateUserTag;
2877
3236
  exports.updateWallet = updateWallet;
2878
3237
  exports.updateWebhookEndpoint = updateWebhookEndpoint;
3238
+ exports.validateTvcImage = validateTvcImage;
2879
3239
  exports.verifyOtp = verifyOtp;
2880
3240
  //# sourceMappingURL=public_api.fetcher.js.map