@turnkey/http 4.1.1 → 6.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.
- package/CHANGELOG.md +75 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +515 -5
- 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 +855 -5
- 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 +855 -5
- 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 +75730 -8740
- 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 +821 -5
- 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 +754 -6
- 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 +1992 -70
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/async.d.ts.map +1 -1
- package/dist/async.js +24 -0
- package/dist/async.js.map +1 -1
- package/dist/async.mjs +24 -0
- package/dist/async.mjs.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
|
@@ -157,6 +157,94 @@ const signGetBootProof = (input, options) => base.signedRequest({
|
|
|
157
157
|
body: input.body,
|
|
158
158
|
options,
|
|
159
159
|
});
|
|
160
|
+
/**
|
|
161
|
+
* Get Earn claim fees status
|
|
162
|
+
*
|
|
163
|
+
* Poll the status of a fee claim by its claim_request_id.
|
|
164
|
+
*
|
|
165
|
+
* `POST /public/v1/query/get_claim_earn_fees_status`
|
|
166
|
+
*/
|
|
167
|
+
const getClaimEarnFeesStatus = (input) => base.request({
|
|
168
|
+
uri: "/public/v1/query/get_claim_earn_fees_status",
|
|
169
|
+
method: "POST",
|
|
170
|
+
body: input.body,
|
|
171
|
+
});
|
|
172
|
+
/**
|
|
173
|
+
* Request a WebAuthn assertion and return a signed `GetClaimEarnFeesStatus` request, ready to be POSTed to Turnkey.
|
|
174
|
+
*
|
|
175
|
+
* See {@link GetClaimEarnFeesStatus}
|
|
176
|
+
*/
|
|
177
|
+
const signGetClaimEarnFeesStatus = (input, options) => base.signedRequest({
|
|
178
|
+
uri: "/public/v1/query/get_claim_earn_fees_status",
|
|
179
|
+
body: input.body,
|
|
180
|
+
options,
|
|
181
|
+
});
|
|
182
|
+
/**
|
|
183
|
+
* Get Earn deploy status
|
|
184
|
+
*
|
|
185
|
+
* Poll the status of a wrapper deployment by its deploy_request_id.
|
|
186
|
+
*
|
|
187
|
+
* `POST /public/v1/query/get_earn_deploy_status`
|
|
188
|
+
*/
|
|
189
|
+
const getEarnDeployStatus = (input) => base.request({
|
|
190
|
+
uri: "/public/v1/query/get_earn_deploy_status",
|
|
191
|
+
method: "POST",
|
|
192
|
+
body: input.body,
|
|
193
|
+
});
|
|
194
|
+
/**
|
|
195
|
+
* Request a WebAuthn assertion and return a signed `GetEarnDeployStatus` request, ready to be POSTed to Turnkey.
|
|
196
|
+
*
|
|
197
|
+
* See {@link GetEarnDeployStatus}
|
|
198
|
+
*/
|
|
199
|
+
const signGetEarnDeployStatus = (input, options) => base.signedRequest({
|
|
200
|
+
uri: "/public/v1/query/get_earn_deploy_status",
|
|
201
|
+
body: input.body,
|
|
202
|
+
options,
|
|
203
|
+
});
|
|
204
|
+
/**
|
|
205
|
+
* Get Earn deposit status
|
|
206
|
+
*
|
|
207
|
+
* Poll the status of a deposit by its deposit_request_id (for the async/sponsored deposit path).
|
|
208
|
+
*
|
|
209
|
+
* `POST /public/v1/query/get_earn_deposit_status`
|
|
210
|
+
*/
|
|
211
|
+
const getEarnDepositStatus = (input) => base.request({
|
|
212
|
+
uri: "/public/v1/query/get_earn_deposit_status",
|
|
213
|
+
method: "POST",
|
|
214
|
+
body: input.body,
|
|
215
|
+
});
|
|
216
|
+
/**
|
|
217
|
+
* Request a WebAuthn assertion and return a signed `GetEarnDepositStatus` request, ready to be POSTed to Turnkey.
|
|
218
|
+
*
|
|
219
|
+
* See {@link GetEarnDepositStatus}
|
|
220
|
+
*/
|
|
221
|
+
const signGetEarnDepositStatus = (input, options) => base.signedRequest({
|
|
222
|
+
uri: "/public/v1/query/get_earn_deposit_status",
|
|
223
|
+
body: input.body,
|
|
224
|
+
options,
|
|
225
|
+
});
|
|
226
|
+
/**
|
|
227
|
+
* Get Earn withdraw status
|
|
228
|
+
*
|
|
229
|
+
* Poll the status of a withdrawal by its withdraw_request_id.
|
|
230
|
+
*
|
|
231
|
+
* `POST /public/v1/query/get_earn_withdraw_status`
|
|
232
|
+
*/
|
|
233
|
+
const getEarnWithdrawStatus = (input) => base.request({
|
|
234
|
+
uri: "/public/v1/query/get_earn_withdraw_status",
|
|
235
|
+
method: "POST",
|
|
236
|
+
body: input.body,
|
|
237
|
+
});
|
|
238
|
+
/**
|
|
239
|
+
* Request a WebAuthn assertion and return a signed `GetEarnWithdrawStatus` request, ready to be POSTed to Turnkey.
|
|
240
|
+
*
|
|
241
|
+
* See {@link GetEarnWithdrawStatus}
|
|
242
|
+
*/
|
|
243
|
+
const signGetEarnWithdrawStatus = (input, options) => base.signedRequest({
|
|
244
|
+
uri: "/public/v1/query/get_earn_withdraw_status",
|
|
245
|
+
body: input.body,
|
|
246
|
+
options,
|
|
247
|
+
});
|
|
160
248
|
/**
|
|
161
249
|
* Get gas usage
|
|
162
250
|
*
|
|
@@ -223,6 +311,72 @@ const signGetLatestBootProof = (input, options) => base.signedRequest({
|
|
|
223
311
|
body: input.body,
|
|
224
312
|
options,
|
|
225
313
|
});
|
|
314
|
+
/**
|
|
315
|
+
* Get MFA policies
|
|
316
|
+
*
|
|
317
|
+
* Get all MFA policies for a user.
|
|
318
|
+
*
|
|
319
|
+
* `POST /public/v1/query/get_mfa_policies`
|
|
320
|
+
*/
|
|
321
|
+
const getMfaPolicies = (input) => base.request({
|
|
322
|
+
uri: "/public/v1/query/get_mfa_policies",
|
|
323
|
+
method: "POST",
|
|
324
|
+
body: input.body,
|
|
325
|
+
});
|
|
326
|
+
/**
|
|
327
|
+
* Request a WebAuthn assertion and return a signed `GetMfaPolicies` request, ready to be POSTed to Turnkey.
|
|
328
|
+
*
|
|
329
|
+
* See {@link GetMfaPolicies}
|
|
330
|
+
*/
|
|
331
|
+
const signGetMfaPolicies = (input, options) => base.signedRequest({
|
|
332
|
+
uri: "/public/v1/query/get_mfa_policies",
|
|
333
|
+
body: input.body,
|
|
334
|
+
options,
|
|
335
|
+
});
|
|
336
|
+
/**
|
|
337
|
+
* Get MFA policy
|
|
338
|
+
*
|
|
339
|
+
* Get a single MFA policy for a user.
|
|
340
|
+
*
|
|
341
|
+
* `POST /public/v1/query/get_mfa_policy`
|
|
342
|
+
*/
|
|
343
|
+
const getMfaPolicy = (input) => base.request({
|
|
344
|
+
uri: "/public/v1/query/get_mfa_policy",
|
|
345
|
+
method: "POST",
|
|
346
|
+
body: input.body,
|
|
347
|
+
});
|
|
348
|
+
/**
|
|
349
|
+
* Request a WebAuthn assertion and return a signed `GetMfaPolicy` request, ready to be POSTed to Turnkey.
|
|
350
|
+
*
|
|
351
|
+
* See {@link GetMfaPolicy}
|
|
352
|
+
*/
|
|
353
|
+
const signGetMfaPolicy = (input, options) => base.signedRequest({
|
|
354
|
+
uri: "/public/v1/query/get_mfa_policy",
|
|
355
|
+
body: input.body,
|
|
356
|
+
options,
|
|
357
|
+
});
|
|
358
|
+
/**
|
|
359
|
+
* Get MFA status
|
|
360
|
+
*
|
|
361
|
+
* Get the MFA status of an activity for a specific user or all voting users.
|
|
362
|
+
*
|
|
363
|
+
* `POST /public/v1/query/get_mfa_status`
|
|
364
|
+
*/
|
|
365
|
+
const getMfaStatus = (input) => base.request({
|
|
366
|
+
uri: "/public/v1/query/get_mfa_status",
|
|
367
|
+
method: "POST",
|
|
368
|
+
body: input.body,
|
|
369
|
+
});
|
|
370
|
+
/**
|
|
371
|
+
* Request a WebAuthn assertion and return a signed `GetMfaStatus` request, ready to be POSTed to Turnkey.
|
|
372
|
+
*
|
|
373
|
+
* See {@link GetMfaStatus}
|
|
374
|
+
*/
|
|
375
|
+
const signGetMfaStatus = (input, options) => base.signedRequest({
|
|
376
|
+
uri: "/public/v1/query/get_mfa_status",
|
|
377
|
+
body: input.body,
|
|
378
|
+
options,
|
|
379
|
+
});
|
|
226
380
|
/**
|
|
227
381
|
* Get nonces
|
|
228
382
|
*
|
|
@@ -443,6 +597,50 @@ const signGetSendTransactionStatus = (input, options) => base.signedRequest({
|
|
|
443
597
|
body: input.body,
|
|
444
598
|
options,
|
|
445
599
|
});
|
|
600
|
+
/**
|
|
601
|
+
* Get session profile
|
|
602
|
+
*
|
|
603
|
+
* Get a single session profile for an organization.
|
|
604
|
+
*
|
|
605
|
+
* `POST /public/v1/query/get_session_profile`
|
|
606
|
+
*/
|
|
607
|
+
const getSessionProfile = (input) => base.request({
|
|
608
|
+
uri: "/public/v1/query/get_session_profile",
|
|
609
|
+
method: "POST",
|
|
610
|
+
body: input.body,
|
|
611
|
+
});
|
|
612
|
+
/**
|
|
613
|
+
* Request a WebAuthn assertion and return a signed `GetSessionProfile` request, ready to be POSTed to Turnkey.
|
|
614
|
+
*
|
|
615
|
+
* See {@link GetSessionProfile}
|
|
616
|
+
*/
|
|
617
|
+
const signGetSessionProfile = (input, options) => base.signedRequest({
|
|
618
|
+
uri: "/public/v1/query/get_session_profile",
|
|
619
|
+
body: input.body,
|
|
620
|
+
options,
|
|
621
|
+
});
|
|
622
|
+
/**
|
|
623
|
+
* Get session profiles
|
|
624
|
+
*
|
|
625
|
+
* Get all session profiles for an organization.
|
|
626
|
+
*
|
|
627
|
+
* `POST /public/v1/query/get_session_profiles`
|
|
628
|
+
*/
|
|
629
|
+
const getSessionProfiles = (input) => base.request({
|
|
630
|
+
uri: "/public/v1/query/get_session_profiles",
|
|
631
|
+
method: "POST",
|
|
632
|
+
body: input.body,
|
|
633
|
+
});
|
|
634
|
+
/**
|
|
635
|
+
* Request a WebAuthn assertion and return a signed `GetSessionProfiles` request, ready to be POSTed to Turnkey.
|
|
636
|
+
*
|
|
637
|
+
* See {@link GetSessionProfiles}
|
|
638
|
+
*/
|
|
639
|
+
const signGetSessionProfiles = (input, options) => base.signedRequest({
|
|
640
|
+
uri: "/public/v1/query/get_session_profiles",
|
|
641
|
+
body: input.body,
|
|
642
|
+
options,
|
|
643
|
+
});
|
|
446
644
|
/**
|
|
447
645
|
* Get smart contract interface
|
|
448
646
|
*
|
|
@@ -465,6 +663,50 @@ const signGetSmartContractInterface = (input, options) => base.signedRequest({
|
|
|
465
663
|
body: input.body,
|
|
466
664
|
options,
|
|
467
665
|
});
|
|
666
|
+
/**
|
|
667
|
+
* Get swap quote
|
|
668
|
+
*
|
|
669
|
+
* Get a swap quote. Asset chains are derived from CAIP-19 asset IDs; cross-chain quotes are supported.
|
|
670
|
+
*
|
|
671
|
+
* `POST /public/v1/query/get_swap_quote`
|
|
672
|
+
*/
|
|
673
|
+
const getSwapQuote = (input) => base.request({
|
|
674
|
+
uri: "/public/v1/query/get_swap_quote",
|
|
675
|
+
method: "POST",
|
|
676
|
+
body: input.body,
|
|
677
|
+
});
|
|
678
|
+
/**
|
|
679
|
+
* Request a WebAuthn assertion and return a signed `GetSwapQuote` request, ready to be POSTed to Turnkey.
|
|
680
|
+
*
|
|
681
|
+
* See {@link GetSwapQuote}
|
|
682
|
+
*/
|
|
683
|
+
const signGetSwapQuote = (input, options) => base.signedRequest({
|
|
684
|
+
uri: "/public/v1/query/get_swap_quote",
|
|
685
|
+
body: input.body,
|
|
686
|
+
options,
|
|
687
|
+
});
|
|
688
|
+
/**
|
|
689
|
+
* Get swap status
|
|
690
|
+
*
|
|
691
|
+
* Get the status of a swap by the send_transaction_status_id returned from execute_swap. Covers same-chain and cross-chain swaps.
|
|
692
|
+
*
|
|
693
|
+
* `POST /public/v1/query/get_swap_status`
|
|
694
|
+
*/
|
|
695
|
+
const getSwapStatus = (input) => base.request({
|
|
696
|
+
uri: "/public/v1/query/get_swap_status",
|
|
697
|
+
method: "POST",
|
|
698
|
+
body: input.body,
|
|
699
|
+
});
|
|
700
|
+
/**
|
|
701
|
+
* Request a WebAuthn assertion and return a signed `GetSwapStatus` request, ready to be POSTed to Turnkey.
|
|
702
|
+
*
|
|
703
|
+
* See {@link GetSwapStatus}
|
|
704
|
+
*/
|
|
705
|
+
const signGetSwapStatus = (input, options) => base.signedRequest({
|
|
706
|
+
uri: "/public/v1/query/get_swap_status",
|
|
707
|
+
body: input.body,
|
|
708
|
+
options,
|
|
709
|
+
});
|
|
468
710
|
/**
|
|
469
711
|
* Get TVC App
|
|
470
712
|
*
|
|
@@ -509,6 +751,28 @@ const signGetTvcDeployment = (input, options) => base.signedRequest({
|
|
|
509
751
|
body: input.body,
|
|
510
752
|
options,
|
|
511
753
|
});
|
|
754
|
+
/**
|
|
755
|
+
* Get TVC Deployment debug logs
|
|
756
|
+
*
|
|
757
|
+
* Get a bounded window of application logs from a debug-mode TVC deployment. Returned lines are collected from every running replica and sorted by platform timestamp.
|
|
758
|
+
*
|
|
759
|
+
* `POST /public/v1/query/get_tvc_deployment_debug_logs`
|
|
760
|
+
*/
|
|
761
|
+
const getTvcDeploymentDebugLogs = (input) => base.request({
|
|
762
|
+
uri: "/public/v1/query/get_tvc_deployment_debug_logs",
|
|
763
|
+
method: "POST",
|
|
764
|
+
body: input.body,
|
|
765
|
+
});
|
|
766
|
+
/**
|
|
767
|
+
* Request a WebAuthn assertion and return a signed `GetTvcDeploymentDebugLogs` request, ready to be POSTed to Turnkey.
|
|
768
|
+
*
|
|
769
|
+
* See {@link GetTvcDeploymentDebugLogs}
|
|
770
|
+
*/
|
|
771
|
+
const signGetTvcDeploymentDebugLogs = (input, options) => base.signedRequest({
|
|
772
|
+
uri: "/public/v1/query/get_tvc_deployment_debug_logs",
|
|
773
|
+
body: input.body,
|
|
774
|
+
options,
|
|
775
|
+
});
|
|
512
776
|
/**
|
|
513
777
|
* Get TVC Deployment's Provisioning Details
|
|
514
778
|
*
|
|
@@ -600,7 +864,7 @@ const signGetWalletAccount = (input, options) => base.signedRequest({
|
|
|
600
864
|
/**
|
|
601
865
|
* Get balances
|
|
602
866
|
*
|
|
603
|
-
* Get balances of supported assets for an address on the specified network. Only non-zero balances are returned.
|
|
867
|
+
* Get balances of supported assets for an address on the specified network. Only non-zero balances are returned.
|
|
604
868
|
*
|
|
605
869
|
* `POST /public/v1/query/get_wallet_address_balances`
|
|
606
870
|
*/
|
|
@@ -663,6 +927,116 @@ const signGetAppProofs = (input, options) => base.signedRequest({
|
|
|
663
927
|
body: input.body,
|
|
664
928
|
options,
|
|
665
929
|
});
|
|
930
|
+
/**
|
|
931
|
+
* Get Earn enabled vaults
|
|
932
|
+
*
|
|
933
|
+
* Get the organization's deployed wrappers with on-chain total deposited and live APY. The management view, distinct from per-wallet positions.
|
|
934
|
+
*
|
|
935
|
+
* `POST /public/v1/query/list_earn_enabled_vaults`
|
|
936
|
+
*/
|
|
937
|
+
const listEarnEnabledVaults = (input) => base.request({
|
|
938
|
+
uri: "/public/v1/query/list_earn_enabled_vaults",
|
|
939
|
+
method: "POST",
|
|
940
|
+
body: input.body,
|
|
941
|
+
});
|
|
942
|
+
/**
|
|
943
|
+
* Request a WebAuthn assertion and return a signed `ListEarnEnabledVaults` request, ready to be POSTed to Turnkey.
|
|
944
|
+
*
|
|
945
|
+
* See {@link ListEarnEnabledVaults}
|
|
946
|
+
*/
|
|
947
|
+
const signListEarnEnabledVaults = (input, options) => base.signedRequest({
|
|
948
|
+
uri: "/public/v1/query/list_earn_enabled_vaults",
|
|
949
|
+
body: input.body,
|
|
950
|
+
options,
|
|
951
|
+
});
|
|
952
|
+
/**
|
|
953
|
+
* Get Earn positions
|
|
954
|
+
*
|
|
955
|
+
* Get the active Earn positions for a specific wallet, including current value, cost basis, yield, and projected fees.
|
|
956
|
+
*
|
|
957
|
+
* `POST /public/v1/query/list_earn_positions`
|
|
958
|
+
*/
|
|
959
|
+
const listEarnPositions = (input) => base.request({
|
|
960
|
+
uri: "/public/v1/query/list_earn_positions",
|
|
961
|
+
method: "POST",
|
|
962
|
+
body: input.body,
|
|
963
|
+
});
|
|
964
|
+
/**
|
|
965
|
+
* Request a WebAuthn assertion and return a signed `ListEarnPositions` request, ready to be POSTed to Turnkey.
|
|
966
|
+
*
|
|
967
|
+
* See {@link ListEarnPositions}
|
|
968
|
+
*/
|
|
969
|
+
const signListEarnPositions = (input, options) => base.signedRequest({
|
|
970
|
+
uri: "/public/v1/query/list_earn_positions",
|
|
971
|
+
body: input.body,
|
|
972
|
+
options,
|
|
973
|
+
});
|
|
974
|
+
/**
|
|
975
|
+
* Get Earn vault catalog
|
|
976
|
+
*
|
|
977
|
+
* Get the catalog of all wrappable yield vaults across supported chains, enriched with live TVL and APY. Annotates which vaults the organization has already enabled.
|
|
978
|
+
*
|
|
979
|
+
* `POST /public/v1/query/list_earn_vaults`
|
|
980
|
+
*/
|
|
981
|
+
const listEarnVaults = (input) => base.request({
|
|
982
|
+
uri: "/public/v1/query/list_earn_vaults",
|
|
983
|
+
method: "POST",
|
|
984
|
+
body: input.body,
|
|
985
|
+
});
|
|
986
|
+
/**
|
|
987
|
+
* Request a WebAuthn assertion and return a signed `ListEarnVaults` request, ready to be POSTed to Turnkey.
|
|
988
|
+
*
|
|
989
|
+
* See {@link ListEarnVaults}
|
|
990
|
+
*/
|
|
991
|
+
const signListEarnVaults = (input, options) => base.signedRequest({
|
|
992
|
+
uri: "/public/v1/query/list_earn_vaults",
|
|
993
|
+
body: input.body,
|
|
994
|
+
options,
|
|
995
|
+
});
|
|
996
|
+
/**
|
|
997
|
+
* List email events
|
|
998
|
+
*
|
|
999
|
+
* List email events for the organization.
|
|
1000
|
+
*
|
|
1001
|
+
* `POST /public/v1/query/list_email_events`
|
|
1002
|
+
*/
|
|
1003
|
+
const listEmailEvents = (input) => base.request({
|
|
1004
|
+
uri: "/public/v1/query/list_email_events",
|
|
1005
|
+
method: "POST",
|
|
1006
|
+
body: input.body,
|
|
1007
|
+
});
|
|
1008
|
+
/**
|
|
1009
|
+
* Request a WebAuthn assertion and return a signed `ListEmailEvents` request, ready to be POSTed to Turnkey.
|
|
1010
|
+
*
|
|
1011
|
+
* See {@link ListEmailEvents}
|
|
1012
|
+
*/
|
|
1013
|
+
const signListEmailEvents = (input, options) => base.signedRequest({
|
|
1014
|
+
uri: "/public/v1/query/list_email_events",
|
|
1015
|
+
body: input.body,
|
|
1016
|
+
options,
|
|
1017
|
+
});
|
|
1018
|
+
/**
|
|
1019
|
+
* List Eth transaction history
|
|
1020
|
+
*
|
|
1021
|
+
* List Ethereum transaction history for a wallet address on the specified network.
|
|
1022
|
+
*
|
|
1023
|
+
* `POST /public/v1/query/list_eth_transaction_history`
|
|
1024
|
+
*/
|
|
1025
|
+
const listEthTransactionHistory = (input) => base.request({
|
|
1026
|
+
uri: "/public/v1/query/list_eth_transaction_history",
|
|
1027
|
+
method: "POST",
|
|
1028
|
+
body: input.body,
|
|
1029
|
+
});
|
|
1030
|
+
/**
|
|
1031
|
+
* Request a WebAuthn assertion and return a signed `ListEthTransactionHistory` request, ready to be POSTed to Turnkey.
|
|
1032
|
+
*
|
|
1033
|
+
* See {@link ListEthTransactionHistory}
|
|
1034
|
+
*/
|
|
1035
|
+
const signListEthTransactionHistory = (input, options) => base.signedRequest({
|
|
1036
|
+
uri: "/public/v1/query/list_eth_transaction_history",
|
|
1037
|
+
body: input.body,
|
|
1038
|
+
options,
|
|
1039
|
+
});
|
|
666
1040
|
/**
|
|
667
1041
|
* List Fiat On Ramp Credentials
|
|
668
1042
|
*
|
|
@@ -795,6 +1169,28 @@ const signGetSmartContractInterfaces = (input, options) => base.signedRequest({
|
|
|
795
1169
|
body: input.body,
|
|
796
1170
|
options,
|
|
797
1171
|
});
|
|
1172
|
+
/**
|
|
1173
|
+
* List Sol transaction history
|
|
1174
|
+
*
|
|
1175
|
+
* List Solana transaction history for a wallet address on the specified network.
|
|
1176
|
+
*
|
|
1177
|
+
* `POST /public/v1/query/list_sol_transaction_history`
|
|
1178
|
+
*/
|
|
1179
|
+
const listSolTransactionHistory = (input) => base.request({
|
|
1180
|
+
uri: "/public/v1/query/list_sol_transaction_history",
|
|
1181
|
+
method: "POST",
|
|
1182
|
+
body: input.body,
|
|
1183
|
+
});
|
|
1184
|
+
/**
|
|
1185
|
+
* Request a WebAuthn assertion and return a signed `ListSolTransactionHistory` request, ready to be POSTed to Turnkey.
|
|
1186
|
+
*
|
|
1187
|
+
* See {@link ListSolTransactionHistory}
|
|
1188
|
+
*/
|
|
1189
|
+
const signListSolTransactionHistory = (input, options) => base.signedRequest({
|
|
1190
|
+
uri: "/public/v1/query/list_sol_transaction_history",
|
|
1191
|
+
body: input.body,
|
|
1192
|
+
options,
|
|
1193
|
+
});
|
|
798
1194
|
/**
|
|
799
1195
|
* Get sub-organizations
|
|
800
1196
|
*
|
|
@@ -820,7 +1216,7 @@ const signGetSubOrgIds = (input, options) => base.signedRequest({
|
|
|
820
1216
|
/**
|
|
821
1217
|
* List supported assets
|
|
822
1218
|
*
|
|
823
|
-
* List supported assets for the specified network.
|
|
1219
|
+
* List supported assets for the specified network.
|
|
824
1220
|
*
|
|
825
1221
|
* `POST /public/v1/query/list_supported_assets`
|
|
826
1222
|
*/
|
|
@@ -1081,6 +1477,50 @@ const signApproveActivity = (input, options) => base.signedRequest({
|
|
|
1081
1477
|
body: input.body,
|
|
1082
1478
|
options,
|
|
1083
1479
|
});
|
|
1480
|
+
/**
|
|
1481
|
+
* Claim earn fees
|
|
1482
|
+
*
|
|
1483
|
+
* Claim earn fees through the activity pipeline.
|
|
1484
|
+
*
|
|
1485
|
+
* `POST /public/v1/submit/claim_earn_fees`
|
|
1486
|
+
*/
|
|
1487
|
+
const claimEarnFees = (input) => base.request({
|
|
1488
|
+
uri: "/public/v1/submit/claim_earn_fees",
|
|
1489
|
+
method: "POST",
|
|
1490
|
+
body: input.body,
|
|
1491
|
+
});
|
|
1492
|
+
/**
|
|
1493
|
+
* Request a WebAuthn assertion and return a signed `ClaimEarnFees` request, ready to be POSTed to Turnkey.
|
|
1494
|
+
*
|
|
1495
|
+
* See {@link ClaimEarnFees}
|
|
1496
|
+
*/
|
|
1497
|
+
const signClaimEarnFees = (input, options) => base.signedRequest({
|
|
1498
|
+
uri: "/public/v1/submit/claim_earn_fees",
|
|
1499
|
+
body: input.body,
|
|
1500
|
+
options,
|
|
1501
|
+
});
|
|
1502
|
+
/**
|
|
1503
|
+
* Claim swap fees
|
|
1504
|
+
*
|
|
1505
|
+
* Claim swap fees through the activity pipeline.
|
|
1506
|
+
*
|
|
1507
|
+
* `POST /public/v1/submit/claim_swap_fees`
|
|
1508
|
+
*/
|
|
1509
|
+
const claimSwapFees = (input) => base.request({
|
|
1510
|
+
uri: "/public/v1/submit/claim_swap_fees",
|
|
1511
|
+
method: "POST",
|
|
1512
|
+
body: input.body,
|
|
1513
|
+
});
|
|
1514
|
+
/**
|
|
1515
|
+
* Request a WebAuthn assertion and return a signed `ClaimSwapFees` request, ready to be POSTed to Turnkey.
|
|
1516
|
+
*
|
|
1517
|
+
* See {@link ClaimSwapFees}
|
|
1518
|
+
*/
|
|
1519
|
+
const signClaimSwapFees = (input, options) => base.signedRequest({
|
|
1520
|
+
uri: "/public/v1/submit/claim_swap_fees",
|
|
1521
|
+
body: input.body,
|
|
1522
|
+
options,
|
|
1523
|
+
});
|
|
1084
1524
|
/**
|
|
1085
1525
|
* Create API keys
|
|
1086
1526
|
*
|
|
@@ -1191,6 +1631,28 @@ const signCreateInvitations = (input, options) => base.signedRequest({
|
|
|
1191
1631
|
body: input.body,
|
|
1192
1632
|
options,
|
|
1193
1633
|
});
|
|
1634
|
+
/**
|
|
1635
|
+
* Create MFA policy
|
|
1636
|
+
*
|
|
1637
|
+
* Create a new MFA policy for a user.
|
|
1638
|
+
*
|
|
1639
|
+
* `POST /public/v1/submit/create_mfa_policy`
|
|
1640
|
+
*/
|
|
1641
|
+
const createMfaPolicy = (input) => base.request({
|
|
1642
|
+
uri: "/public/v1/submit/create_mfa_policy",
|
|
1643
|
+
method: "POST",
|
|
1644
|
+
body: input.body,
|
|
1645
|
+
});
|
|
1646
|
+
/**
|
|
1647
|
+
* Request a WebAuthn assertion and return a signed `CreateMfaPolicy` request, ready to be POSTed to Turnkey.
|
|
1648
|
+
*
|
|
1649
|
+
* See {@link CreateMfaPolicy}
|
|
1650
|
+
*/
|
|
1651
|
+
const signCreateMfaPolicy = (input, options) => base.signedRequest({
|
|
1652
|
+
uri: "/public/v1/submit/create_mfa_policy",
|
|
1653
|
+
body: input.body,
|
|
1654
|
+
options,
|
|
1655
|
+
});
|
|
1194
1656
|
/**
|
|
1195
1657
|
* Create an OAuth 2.0 Credential
|
|
1196
1658
|
*
|
|
@@ -1367,6 +1829,28 @@ const signCreateReadWriteSession = (input, options) => base.signedRequest({
|
|
|
1367
1829
|
body: input.body,
|
|
1368
1830
|
options,
|
|
1369
1831
|
});
|
|
1832
|
+
/**
|
|
1833
|
+
* Create session profile
|
|
1834
|
+
*
|
|
1835
|
+
* Create a new session profile for an organization.
|
|
1836
|
+
*
|
|
1837
|
+
* `POST /public/v1/submit/create_session_profile`
|
|
1838
|
+
*/
|
|
1839
|
+
const createSessionProfile = (input) => base.request({
|
|
1840
|
+
uri: "/public/v1/submit/create_session_profile",
|
|
1841
|
+
method: "POST",
|
|
1842
|
+
body: input.body,
|
|
1843
|
+
});
|
|
1844
|
+
/**
|
|
1845
|
+
* Request a WebAuthn assertion and return a signed `CreateSessionProfile` request, ready to be POSTed to Turnkey.
|
|
1846
|
+
*
|
|
1847
|
+
* See {@link CreateSessionProfile}
|
|
1848
|
+
*/
|
|
1849
|
+
const signCreateSessionProfile = (input, options) => base.signedRequest({
|
|
1850
|
+
uri: "/public/v1/submit/create_session_profile",
|
|
1851
|
+
body: input.body,
|
|
1852
|
+
options,
|
|
1853
|
+
});
|
|
1370
1854
|
/**
|
|
1371
1855
|
* Create smart contract interface
|
|
1372
1856
|
*
|
|
@@ -1392,7 +1876,7 @@ const signCreateSmartContractInterface = (input, options) => base.signedRequest(
|
|
|
1392
1876
|
/**
|
|
1393
1877
|
* Create sub-organization
|
|
1394
1878
|
*
|
|
1395
|
-
* Create a new sub-organization.
|
|
1879
|
+
* Create a new sub-organization. Each root user must have at least one valid credential: an API key, an authenticator, an OAuth provider, or an email or phone number with a login method enabled on the sub-organization (email, email OTP, or SMS).
|
|
1396
1880
|
*
|
|
1397
1881
|
* `POST /public/v1/submit/create_sub_organization`
|
|
1398
1882
|
*/
|
|
@@ -1477,6 +1961,50 @@ const signCreateTvcManifestApprovals = (input, options) => base.signedRequest({
|
|
|
1477
1961
|
body: input.body,
|
|
1478
1962
|
options,
|
|
1479
1963
|
});
|
|
1964
|
+
/**
|
|
1965
|
+
* Create TVC Operator
|
|
1966
|
+
*
|
|
1967
|
+
* Create a TVC Operator backed by uncompressed P-256 Turnkey wallet accounts
|
|
1968
|
+
*
|
|
1969
|
+
* `POST /public/v1/submit/create_tvc_operator`
|
|
1970
|
+
*/
|
|
1971
|
+
const createTvcOperator = (input) => base.request({
|
|
1972
|
+
uri: "/public/v1/submit/create_tvc_operator",
|
|
1973
|
+
method: "POST",
|
|
1974
|
+
body: input.body,
|
|
1975
|
+
});
|
|
1976
|
+
/**
|
|
1977
|
+
* Request a WebAuthn assertion and return a signed `CreateTvcOperator` request, ready to be POSTed to Turnkey.
|
|
1978
|
+
*
|
|
1979
|
+
* See {@link CreateTvcOperator}
|
|
1980
|
+
*/
|
|
1981
|
+
const signCreateTvcOperator = (input, options) => base.signedRequest({
|
|
1982
|
+
uri: "/public/v1/submit/create_tvc_operator",
|
|
1983
|
+
body: input.body,
|
|
1984
|
+
options,
|
|
1985
|
+
});
|
|
1986
|
+
/**
|
|
1987
|
+
* Create TVC Quorum Key
|
|
1988
|
+
*
|
|
1989
|
+
* Create a hosted TVC quorum key and encrypted shares.
|
|
1990
|
+
*
|
|
1991
|
+
* `POST /public/v1/submit/create_tvc_quorum_key`
|
|
1992
|
+
*/
|
|
1993
|
+
const createTvcQuorumKey = (input) => base.request({
|
|
1994
|
+
uri: "/public/v1/submit/create_tvc_quorum_key",
|
|
1995
|
+
method: "POST",
|
|
1996
|
+
body: input.body,
|
|
1997
|
+
});
|
|
1998
|
+
/**
|
|
1999
|
+
* Request a WebAuthn assertion and return a signed `CreateTvcQuorumKey` request, ready to be POSTed to Turnkey.
|
|
2000
|
+
*
|
|
2001
|
+
* See {@link CreateTvcQuorumKey}
|
|
2002
|
+
*/
|
|
2003
|
+
const signCreateTvcQuorumKey = (input, options) => base.signedRequest({
|
|
2004
|
+
uri: "/public/v1/submit/create_tvc_quorum_key",
|
|
2005
|
+
body: input.body,
|
|
2006
|
+
options,
|
|
2007
|
+
});
|
|
1480
2008
|
/**
|
|
1481
2009
|
* Create user tag
|
|
1482
2010
|
*
|
|
@@ -1502,7 +2030,7 @@ const signCreateUserTag = (input, options) => base.signedRequest({
|
|
|
1502
2030
|
/**
|
|
1503
2031
|
* Create users
|
|
1504
2032
|
*
|
|
1505
|
-
* Create users in an existing organization.
|
|
2033
|
+
* Create users in an existing organization. Each user must have at least one valid credential: an API key, an authenticator, an OAuth provider, or an email or phone number with a login method enabled on the organization (email, email OTP, or SMS).
|
|
1506
2034
|
*
|
|
1507
2035
|
* `POST /public/v1/submit/create_users`
|
|
1508
2036
|
*/
|
|
@@ -1675,6 +2203,28 @@ const signDeleteInvitation = (input, options) => base.signedRequest({
|
|
|
1675
2203
|
body: input.body,
|
|
1676
2204
|
options,
|
|
1677
2205
|
});
|
|
2206
|
+
/**
|
|
2207
|
+
* Delete MFA policy
|
|
2208
|
+
*
|
|
2209
|
+
* Delete an MFA policy for a user.
|
|
2210
|
+
*
|
|
2211
|
+
* `POST /public/v1/submit/delete_mfa_policy`
|
|
2212
|
+
*/
|
|
2213
|
+
const deleteMfaPolicy = (input) => base.request({
|
|
2214
|
+
uri: "/public/v1/submit/delete_mfa_policy",
|
|
2215
|
+
method: "POST",
|
|
2216
|
+
body: input.body,
|
|
2217
|
+
});
|
|
2218
|
+
/**
|
|
2219
|
+
* Request a WebAuthn assertion and return a signed `DeleteMfaPolicy` request, ready to be POSTed to Turnkey.
|
|
2220
|
+
*
|
|
2221
|
+
* See {@link DeleteMfaPolicy}
|
|
2222
|
+
*/
|
|
2223
|
+
const signDeleteMfaPolicy = (input, options) => base.signedRequest({
|
|
2224
|
+
uri: "/public/v1/submit/delete_mfa_policy",
|
|
2225
|
+
body: input.body,
|
|
2226
|
+
options,
|
|
2227
|
+
});
|
|
1678
2228
|
/**
|
|
1679
2229
|
* Delete an OAuth 2.0 Credential
|
|
1680
2230
|
*
|
|
@@ -2005,6 +2555,94 @@ const signDeleteWebhookEndpoint = (input, options) => base.signedRequest({
|
|
|
2005
2555
|
body: input.body,
|
|
2006
2556
|
options,
|
|
2007
2557
|
});
|
|
2558
|
+
/**
|
|
2559
|
+
* Deploy Earn wrapper
|
|
2560
|
+
*
|
|
2561
|
+
* Enable a yield vault for an organization by deploying its fee wrapper. Must be called before any deposits into the vault.
|
|
2562
|
+
*
|
|
2563
|
+
* `POST /public/v1/submit/earn_deploy_wrapper`
|
|
2564
|
+
*/
|
|
2565
|
+
const earnDeployWrapper = (input) => base.request({
|
|
2566
|
+
uri: "/public/v1/submit/earn_deploy_wrapper",
|
|
2567
|
+
method: "POST",
|
|
2568
|
+
body: input.body,
|
|
2569
|
+
});
|
|
2570
|
+
/**
|
|
2571
|
+
* Request a WebAuthn assertion and return a signed `EarnDeployWrapper` request, ready to be POSTed to Turnkey.
|
|
2572
|
+
*
|
|
2573
|
+
* See {@link EarnDeployWrapper}
|
|
2574
|
+
*/
|
|
2575
|
+
const signEarnDeployWrapper = (input, options) => base.signedRequest({
|
|
2576
|
+
uri: "/public/v1/submit/earn_deploy_wrapper",
|
|
2577
|
+
body: input.body,
|
|
2578
|
+
options,
|
|
2579
|
+
});
|
|
2580
|
+
/**
|
|
2581
|
+
* Deposit into Earn vault
|
|
2582
|
+
*
|
|
2583
|
+
* Deposit assets from a wallet into an enabled yield vault.
|
|
2584
|
+
*
|
|
2585
|
+
* `POST /public/v1/submit/earn_deposit`
|
|
2586
|
+
*/
|
|
2587
|
+
const earnDeposit = (input) => base.request({
|
|
2588
|
+
uri: "/public/v1/submit/earn_deposit",
|
|
2589
|
+
method: "POST",
|
|
2590
|
+
body: input.body,
|
|
2591
|
+
});
|
|
2592
|
+
/**
|
|
2593
|
+
* Request a WebAuthn assertion and return a signed `EarnDeposit` request, ready to be POSTed to Turnkey.
|
|
2594
|
+
*
|
|
2595
|
+
* See {@link EarnDeposit}
|
|
2596
|
+
*/
|
|
2597
|
+
const signEarnDeposit = (input, options) => base.signedRequest({
|
|
2598
|
+
uri: "/public/v1/submit/earn_deposit",
|
|
2599
|
+
body: input.body,
|
|
2600
|
+
options,
|
|
2601
|
+
});
|
|
2602
|
+
/**
|
|
2603
|
+
* Set Earn wrapper state
|
|
2604
|
+
*
|
|
2605
|
+
* Enable or disable deposits to a deployed Earn wrapper. Withdrawals are always allowed.
|
|
2606
|
+
*
|
|
2607
|
+
* `POST /public/v1/submit/earn_set_wrapper_state`
|
|
2608
|
+
*/
|
|
2609
|
+
const earnSetWrapperState = (input) => base.request({
|
|
2610
|
+
uri: "/public/v1/submit/earn_set_wrapper_state",
|
|
2611
|
+
method: "POST",
|
|
2612
|
+
body: input.body,
|
|
2613
|
+
});
|
|
2614
|
+
/**
|
|
2615
|
+
* Request a WebAuthn assertion and return a signed `EarnSetWrapperState` request, ready to be POSTed to Turnkey.
|
|
2616
|
+
*
|
|
2617
|
+
* See {@link EarnSetWrapperState}
|
|
2618
|
+
*/
|
|
2619
|
+
const signEarnSetWrapperState = (input, options) => base.signedRequest({
|
|
2620
|
+
uri: "/public/v1/submit/earn_set_wrapper_state",
|
|
2621
|
+
body: input.body,
|
|
2622
|
+
options,
|
|
2623
|
+
});
|
|
2624
|
+
/**
|
|
2625
|
+
* Withdraw from Earn vault
|
|
2626
|
+
*
|
|
2627
|
+
* Withdraw assets or redeem shares from an enabled yield vault.
|
|
2628
|
+
*
|
|
2629
|
+
* `POST /public/v1/submit/earn_withdraw`
|
|
2630
|
+
*/
|
|
2631
|
+
const earnWithdraw = (input) => base.request({
|
|
2632
|
+
uri: "/public/v1/submit/earn_withdraw",
|
|
2633
|
+
method: "POST",
|
|
2634
|
+
body: input.body,
|
|
2635
|
+
});
|
|
2636
|
+
/**
|
|
2637
|
+
* Request a WebAuthn assertion and return a signed `EarnWithdraw` request, ready to be POSTed to Turnkey.
|
|
2638
|
+
*
|
|
2639
|
+
* See {@link EarnWithdraw}
|
|
2640
|
+
*/
|
|
2641
|
+
const signEarnWithdraw = (input, options) => base.signedRequest({
|
|
2642
|
+
uri: "/public/v1/submit/earn_withdraw",
|
|
2643
|
+
body: input.body,
|
|
2644
|
+
options,
|
|
2645
|
+
});
|
|
2008
2646
|
/**
|
|
2009
2647
|
* Perform email auth
|
|
2010
2648
|
*
|
|
@@ -2071,6 +2709,28 @@ const signEthSendTransaction = (input, options) => base.signedRequest({
|
|
|
2071
2709
|
body: input.body,
|
|
2072
2710
|
options,
|
|
2073
2711
|
});
|
|
2712
|
+
/**
|
|
2713
|
+
* Execute swap
|
|
2714
|
+
*
|
|
2715
|
+
* Execute a quoted swap through the activity pipeline and Turnkey broadcasting.
|
|
2716
|
+
*
|
|
2717
|
+
* `POST /public/v1/submit/execute_swap`
|
|
2718
|
+
*/
|
|
2719
|
+
const executeSwap = (input) => base.request({
|
|
2720
|
+
uri: "/public/v1/submit/execute_swap",
|
|
2721
|
+
method: "POST",
|
|
2722
|
+
body: input.body,
|
|
2723
|
+
});
|
|
2724
|
+
/**
|
|
2725
|
+
* Request a WebAuthn assertion and return a signed `ExecuteSwap` request, ready to be POSTed to Turnkey.
|
|
2726
|
+
*
|
|
2727
|
+
* See {@link ExecuteSwap}
|
|
2728
|
+
*/
|
|
2729
|
+
const signExecuteSwap = (input, options) => base.signedRequest({
|
|
2730
|
+
uri: "/public/v1/submit/execute_swap",
|
|
2731
|
+
body: input.body,
|
|
2732
|
+
options,
|
|
2733
|
+
});
|
|
2074
2734
|
/**
|
|
2075
2735
|
* Export private key
|
|
2076
2736
|
*
|
|
@@ -2225,6 +2885,28 @@ const signInitImportPrivateKey = (input, options) => base.signedRequest({
|
|
|
2225
2885
|
body: input.body,
|
|
2226
2886
|
options,
|
|
2227
2887
|
});
|
|
2888
|
+
/**
|
|
2889
|
+
* Init import secrets
|
|
2890
|
+
*
|
|
2891
|
+
* Initialize secret imports by generating Ingress Encryption Target Keys.
|
|
2892
|
+
*
|
|
2893
|
+
* `POST /public/v1/submit/init_import_secrets`
|
|
2894
|
+
*/
|
|
2895
|
+
const initImportSecrets = (input) => base.request({
|
|
2896
|
+
uri: "/public/v1/submit/init_import_secrets",
|
|
2897
|
+
method: "POST",
|
|
2898
|
+
body: input.body,
|
|
2899
|
+
});
|
|
2900
|
+
/**
|
|
2901
|
+
* Request a WebAuthn assertion and return a signed `InitImportSecrets` request, ready to be POSTed to Turnkey.
|
|
2902
|
+
*
|
|
2903
|
+
* See {@link InitImportSecrets}
|
|
2904
|
+
*/
|
|
2905
|
+
const signInitImportSecrets = (input, options) => base.signedRequest({
|
|
2906
|
+
uri: "/public/v1/submit/init_import_secrets",
|
|
2907
|
+
body: input.body,
|
|
2908
|
+
options,
|
|
2909
|
+
});
|
|
2228
2910
|
/**
|
|
2229
2911
|
* Init import wallet
|
|
2230
2912
|
*
|
|
@@ -2445,6 +3127,28 @@ const signPostTvcQuorumKeyShare = (input, options) => base.signedRequest({
|
|
|
2445
3127
|
body: input.body,
|
|
2446
3128
|
options,
|
|
2447
3129
|
});
|
|
3130
|
+
/**
|
|
3131
|
+
* Re-encrypt TVC Quorum Key Share
|
|
3132
|
+
*
|
|
3133
|
+
* Re-encrypt a hosted TVC quorum key share for a deployment.
|
|
3134
|
+
*
|
|
3135
|
+
* `POST /public/v1/submit/re_encrypt_tvc_quorum_key_share`
|
|
3136
|
+
*/
|
|
3137
|
+
const reEncryptTvcQuorumKeyShare = (input) => base.request({
|
|
3138
|
+
uri: "/public/v1/submit/re_encrypt_tvc_quorum_key_share",
|
|
3139
|
+
method: "POST",
|
|
3140
|
+
body: input.body,
|
|
3141
|
+
});
|
|
3142
|
+
/**
|
|
3143
|
+
* Request a WebAuthn assertion and return a signed `ReEncryptTvcQuorumKeyShare` request, ready to be POSTed to Turnkey.
|
|
3144
|
+
*
|
|
3145
|
+
* See {@link ReEncryptTvcQuorumKeyShare}
|
|
3146
|
+
*/
|
|
3147
|
+
const signReEncryptTvcQuorumKeyShare = (input, options) => base.signedRequest({
|
|
3148
|
+
uri: "/public/v1/submit/re_encrypt_tvc_quorum_key_share",
|
|
3149
|
+
body: input.body,
|
|
3150
|
+
options,
|
|
3151
|
+
});
|
|
2448
3152
|
/**
|
|
2449
3153
|
* Recover a user
|
|
2450
3154
|
*
|
|
@@ -2690,7 +3394,7 @@ const signSignTransaction = (input, options) => base.signedRequest({
|
|
|
2690
3394
|
/**
|
|
2691
3395
|
* Broadcast SVM transaction
|
|
2692
3396
|
*
|
|
2693
|
-
* Submit a transaction intent describing an SVM transaction you would like to broadcast.
|
|
3397
|
+
* Submit a transaction intent describing an SVM transaction you would like to broadcast. Supports single- and multi-signer intents via activity type versioning.
|
|
2694
3398
|
*
|
|
2695
3399
|
* `POST /public/v1/submit/sol_send_transaction`
|
|
2696
3400
|
*/
|
|
@@ -2841,6 +3545,28 @@ const signUpdateFiatOnRampCredential = (input, options) => base.signedRequest({
|
|
|
2841
3545
|
body: input.body,
|
|
2842
3546
|
options,
|
|
2843
3547
|
});
|
|
3548
|
+
/**
|
|
3549
|
+
* Update MFA policy
|
|
3550
|
+
*
|
|
3551
|
+
* Update an MFA policy for a user.
|
|
3552
|
+
*
|
|
3553
|
+
* `POST /public/v1/submit/update_mfa_policy`
|
|
3554
|
+
*/
|
|
3555
|
+
const updateMfaPolicy = (input) => base.request({
|
|
3556
|
+
uri: "/public/v1/submit/update_mfa_policy",
|
|
3557
|
+
method: "POST",
|
|
3558
|
+
body: input.body,
|
|
3559
|
+
});
|
|
3560
|
+
/**
|
|
3561
|
+
* Request a WebAuthn assertion and return a signed `UpdateMfaPolicy` request, ready to be POSTed to Turnkey.
|
|
3562
|
+
*
|
|
3563
|
+
* See {@link UpdateMfaPolicy}
|
|
3564
|
+
*/
|
|
3565
|
+
const signUpdateMfaPolicy = (input, options) => base.signedRequest({
|
|
3566
|
+
uri: "/public/v1/submit/update_mfa_policy",
|
|
3567
|
+
body: input.body,
|
|
3568
|
+
options,
|
|
3569
|
+
});
|
|
2844
3570
|
/**
|
|
2845
3571
|
* Update an OAuth 2.0 Credential
|
|
2846
3572
|
*
|
|
@@ -3105,6 +3831,28 @@ const signUpdateWebhookEndpoint = (input, options) => base.signedRequest({
|
|
|
3105
3831
|
body: input.body,
|
|
3106
3832
|
options,
|
|
3107
3833
|
});
|
|
3834
|
+
/**
|
|
3835
|
+
* Upsert swap config
|
|
3836
|
+
*
|
|
3837
|
+
* Enable or disable swap configuration for an organization.
|
|
3838
|
+
*
|
|
3839
|
+
* `POST /public/v1/submit/upsert_swap_config`
|
|
3840
|
+
*/
|
|
3841
|
+
const upsertSwapConfig = (input) => base.request({
|
|
3842
|
+
uri: "/public/v1/submit/upsert_swap_config",
|
|
3843
|
+
method: "POST",
|
|
3844
|
+
body: input.body,
|
|
3845
|
+
});
|
|
3846
|
+
/**
|
|
3847
|
+
* Request a WebAuthn assertion and return a signed `UpsertSwapConfig` request, ready to be POSTed to Turnkey.
|
|
3848
|
+
*
|
|
3849
|
+
* See {@link UpsertSwapConfig}
|
|
3850
|
+
*/
|
|
3851
|
+
const signUpsertSwapConfig = (input, options) => base.signedRequest({
|
|
3852
|
+
uri: "/public/v1/submit/upsert_swap_config",
|
|
3853
|
+
body: input.body,
|
|
3854
|
+
options,
|
|
3855
|
+
});
|
|
3108
3856
|
/**
|
|
3109
3857
|
* Verify generic OTP
|
|
3110
3858
|
*
|
|
@@ -3188,11 +3936,14 @@ const signTestRateLimits = (input, options) => base.signedRequest({
|
|
|
3188
3936
|
});
|
|
3189
3937
|
|
|
3190
3938
|
exports.approveActivity = approveActivity;
|
|
3939
|
+
exports.claimEarnFees = claimEarnFees;
|
|
3940
|
+
exports.claimSwapFees = claimSwapFees;
|
|
3191
3941
|
exports.createApiKeys = createApiKeys;
|
|
3192
3942
|
exports.createApiOnlyUsers = createApiOnlyUsers;
|
|
3193
3943
|
exports.createAuthenticators = createAuthenticators;
|
|
3194
3944
|
exports.createFiatOnRampCredential = createFiatOnRampCredential;
|
|
3195
3945
|
exports.createInvitations = createInvitations;
|
|
3946
|
+
exports.createMfaPolicy = createMfaPolicy;
|
|
3196
3947
|
exports.createOauth2Credential = createOauth2Credential;
|
|
3197
3948
|
exports.createOauthProviders = createOauthProviders;
|
|
3198
3949
|
exports.createPolicies = createPolicies;
|
|
@@ -3201,11 +3952,14 @@ exports.createPrivateKeyTag = createPrivateKeyTag;
|
|
|
3201
3952
|
exports.createPrivateKeys = createPrivateKeys;
|
|
3202
3953
|
exports.createReadOnlySession = createReadOnlySession;
|
|
3203
3954
|
exports.createReadWriteSession = createReadWriteSession;
|
|
3955
|
+
exports.createSessionProfile = createSessionProfile;
|
|
3204
3956
|
exports.createSmartContractInterface = createSmartContractInterface;
|
|
3205
3957
|
exports.createSubOrganization = createSubOrganization;
|
|
3206
3958
|
exports.createTvcApp = createTvcApp;
|
|
3207
3959
|
exports.createTvcDeployment = createTvcDeployment;
|
|
3208
3960
|
exports.createTvcManifestApprovals = createTvcManifestApprovals;
|
|
3961
|
+
exports.createTvcOperator = createTvcOperator;
|
|
3962
|
+
exports.createTvcQuorumKey = createTvcQuorumKey;
|
|
3209
3963
|
exports.createUserTag = createUserTag;
|
|
3210
3964
|
exports.createUsers = createUsers;
|
|
3211
3965
|
exports.createWallet = createWallet;
|
|
@@ -3215,6 +3969,7 @@ exports.deleteApiKeys = deleteApiKeys;
|
|
|
3215
3969
|
exports.deleteAuthenticators = deleteAuthenticators;
|
|
3216
3970
|
exports.deleteFiatOnRampCredential = deleteFiatOnRampCredential;
|
|
3217
3971
|
exports.deleteInvitation = deleteInvitation;
|
|
3972
|
+
exports.deleteMfaPolicy = deleteMfaPolicy;
|
|
3218
3973
|
exports.deleteOauth2Credential = deleteOauth2Credential;
|
|
3219
3974
|
exports.deleteOauthProviders = deleteOauthProviders;
|
|
3220
3975
|
exports.deletePolicies = deletePolicies;
|
|
@@ -3230,9 +3985,14 @@ exports.deleteUsers = deleteUsers;
|
|
|
3230
3985
|
exports.deleteWalletAccounts = deleteWalletAccounts;
|
|
3231
3986
|
exports.deleteWallets = deleteWallets;
|
|
3232
3987
|
exports.deleteWebhookEndpoint = deleteWebhookEndpoint;
|
|
3988
|
+
exports.earnDeployWrapper = earnDeployWrapper;
|
|
3989
|
+
exports.earnDeposit = earnDeposit;
|
|
3990
|
+
exports.earnSetWrapperState = earnSetWrapperState;
|
|
3991
|
+
exports.earnWithdraw = earnWithdraw;
|
|
3233
3992
|
exports.emailAuth = emailAuth;
|
|
3234
3993
|
exports.ethSendRawTransaction = ethSendRawTransaction;
|
|
3235
3994
|
exports.ethSendTransaction = ethSendTransaction;
|
|
3995
|
+
exports.executeSwap = executeSwap;
|
|
3236
3996
|
exports.exportPrivateKey = exportPrivateKey;
|
|
3237
3997
|
exports.exportWallet = exportWallet;
|
|
3238
3998
|
exports.exportWalletAccount = exportWalletAccount;
|
|
@@ -3245,9 +4005,16 @@ exports.getAppStatus = getAppStatus;
|
|
|
3245
4005
|
exports.getAuthenticator = getAuthenticator;
|
|
3246
4006
|
exports.getAuthenticators = getAuthenticators;
|
|
3247
4007
|
exports.getBootProof = getBootProof;
|
|
4008
|
+
exports.getClaimEarnFeesStatus = getClaimEarnFeesStatus;
|
|
4009
|
+
exports.getEarnDeployStatus = getEarnDeployStatus;
|
|
4010
|
+
exports.getEarnDepositStatus = getEarnDepositStatus;
|
|
4011
|
+
exports.getEarnWithdrawStatus = getEarnWithdrawStatus;
|
|
3248
4012
|
exports.getGasUsage = getGasUsage;
|
|
3249
4013
|
exports.getIpAllowlist = getIpAllowlist;
|
|
3250
4014
|
exports.getLatestBootProof = getLatestBootProof;
|
|
4015
|
+
exports.getMfaPolicies = getMfaPolicies;
|
|
4016
|
+
exports.getMfaPolicy = getMfaPolicy;
|
|
4017
|
+
exports.getMfaStatus = getMfaStatus;
|
|
3251
4018
|
exports.getNonces = getNonces;
|
|
3252
4019
|
exports.getOauth2Credential = getOauth2Credential;
|
|
3253
4020
|
exports.getOauthProviders = getOauthProviders;
|
|
@@ -3260,13 +4027,18 @@ exports.getPolicyEvaluations = getPolicyEvaluations;
|
|
|
3260
4027
|
exports.getPrivateKey = getPrivateKey;
|
|
3261
4028
|
exports.getPrivateKeys = getPrivateKeys;
|
|
3262
4029
|
exports.getSendTransactionStatus = getSendTransactionStatus;
|
|
4030
|
+
exports.getSessionProfile = getSessionProfile;
|
|
4031
|
+
exports.getSessionProfiles = getSessionProfiles;
|
|
3263
4032
|
exports.getSmartContractInterface = getSmartContractInterface;
|
|
3264
4033
|
exports.getSmartContractInterfaces = getSmartContractInterfaces;
|
|
3265
4034
|
exports.getSubOrgIds = getSubOrgIds;
|
|
4035
|
+
exports.getSwapQuote = getSwapQuote;
|
|
4036
|
+
exports.getSwapStatus = getSwapStatus;
|
|
3266
4037
|
exports.getTvcApp = getTvcApp;
|
|
3267
4038
|
exports.getTvcAppDeployments = getTvcAppDeployments;
|
|
3268
4039
|
exports.getTvcApps = getTvcApps;
|
|
3269
4040
|
exports.getTvcDeployment = getTvcDeployment;
|
|
4041
|
+
exports.getTvcDeploymentDebugLogs = getTvcDeploymentDebugLogs;
|
|
3270
4042
|
exports.getTvcDeploymentProvisioningDetails = getTvcDeploymentProvisioningDetails;
|
|
3271
4043
|
exports.getUser = getUser;
|
|
3272
4044
|
exports.getUsers = getUsers;
|
|
@@ -3281,13 +4053,20 @@ exports.importPrivateKey = importPrivateKey;
|
|
|
3281
4053
|
exports.importWallet = importWallet;
|
|
3282
4054
|
exports.initFiatOnRamp = initFiatOnRamp;
|
|
3283
4055
|
exports.initImportPrivateKey = initImportPrivateKey;
|
|
4056
|
+
exports.initImportSecrets = initImportSecrets;
|
|
3284
4057
|
exports.initImportWallet = initImportWallet;
|
|
3285
4058
|
exports.initOtp = initOtp;
|
|
3286
4059
|
exports.initOtpAuth = initOtpAuth;
|
|
3287
4060
|
exports.initUserEmailRecovery = initUserEmailRecovery;
|
|
4061
|
+
exports.listEarnEnabledVaults = listEarnEnabledVaults;
|
|
4062
|
+
exports.listEarnPositions = listEarnPositions;
|
|
4063
|
+
exports.listEarnVaults = listEarnVaults;
|
|
4064
|
+
exports.listEmailEvents = listEmailEvents;
|
|
4065
|
+
exports.listEthTransactionHistory = listEthTransactionHistory;
|
|
3288
4066
|
exports.listFiatOnRampCredentials = listFiatOnRampCredentials;
|
|
3289
4067
|
exports.listOauth2Credentials = listOauth2Credentials;
|
|
3290
4068
|
exports.listPrivateKeyTags = listPrivateKeyTags;
|
|
4069
|
+
exports.listSolTransactionHistory = listSolTransactionHistory;
|
|
3291
4070
|
exports.listSupportedAssets = listSupportedAssets;
|
|
3292
4071
|
exports.listUserTags = listUserTags;
|
|
3293
4072
|
exports.listWebhookEndpoints = listWebhookEndpoints;
|
|
@@ -3298,6 +4077,7 @@ exports.oauthLogin = oauthLogin;
|
|
|
3298
4077
|
exports.otpAuth = otpAuth;
|
|
3299
4078
|
exports.otpLogin = otpLogin;
|
|
3300
4079
|
exports.postTvcQuorumKeyShare = postTvcQuorumKeyShare;
|
|
4080
|
+
exports.reEncryptTvcQuorumKeyShare = reEncryptTvcQuorumKeyShare;
|
|
3301
4081
|
exports.recoverUser = recoverUser;
|
|
3302
4082
|
exports.refreshFeatureFlags = refreshFeatureFlags;
|
|
3303
4083
|
exports.rejectActivity = rejectActivity;
|
|
@@ -3307,11 +4087,14 @@ exports.restoreTvcDeployment = restoreTvcDeployment;
|
|
|
3307
4087
|
exports.setIpAllowlist = setIpAllowlist;
|
|
3308
4088
|
exports.setOrganizationFeature = setOrganizationFeature;
|
|
3309
4089
|
exports.signApproveActivity = signApproveActivity;
|
|
4090
|
+
exports.signClaimEarnFees = signClaimEarnFees;
|
|
4091
|
+
exports.signClaimSwapFees = signClaimSwapFees;
|
|
3310
4092
|
exports.signCreateApiKeys = signCreateApiKeys;
|
|
3311
4093
|
exports.signCreateApiOnlyUsers = signCreateApiOnlyUsers;
|
|
3312
4094
|
exports.signCreateAuthenticators = signCreateAuthenticators;
|
|
3313
4095
|
exports.signCreateFiatOnRampCredential = signCreateFiatOnRampCredential;
|
|
3314
4096
|
exports.signCreateInvitations = signCreateInvitations;
|
|
4097
|
+
exports.signCreateMfaPolicy = signCreateMfaPolicy;
|
|
3315
4098
|
exports.signCreateOauth2Credential = signCreateOauth2Credential;
|
|
3316
4099
|
exports.signCreateOauthProviders = signCreateOauthProviders;
|
|
3317
4100
|
exports.signCreatePolicies = signCreatePolicies;
|
|
@@ -3320,11 +4103,14 @@ exports.signCreatePrivateKeyTag = signCreatePrivateKeyTag;
|
|
|
3320
4103
|
exports.signCreatePrivateKeys = signCreatePrivateKeys;
|
|
3321
4104
|
exports.signCreateReadOnlySession = signCreateReadOnlySession;
|
|
3322
4105
|
exports.signCreateReadWriteSession = signCreateReadWriteSession;
|
|
4106
|
+
exports.signCreateSessionProfile = signCreateSessionProfile;
|
|
3323
4107
|
exports.signCreateSmartContractInterface = signCreateSmartContractInterface;
|
|
3324
4108
|
exports.signCreateSubOrganization = signCreateSubOrganization;
|
|
3325
4109
|
exports.signCreateTvcApp = signCreateTvcApp;
|
|
3326
4110
|
exports.signCreateTvcDeployment = signCreateTvcDeployment;
|
|
3327
4111
|
exports.signCreateTvcManifestApprovals = signCreateTvcManifestApprovals;
|
|
4112
|
+
exports.signCreateTvcOperator = signCreateTvcOperator;
|
|
4113
|
+
exports.signCreateTvcQuorumKey = signCreateTvcQuorumKey;
|
|
3328
4114
|
exports.signCreateUserTag = signCreateUserTag;
|
|
3329
4115
|
exports.signCreateUsers = signCreateUsers;
|
|
3330
4116
|
exports.signCreateWallet = signCreateWallet;
|
|
@@ -3334,6 +4120,7 @@ exports.signDeleteApiKeys = signDeleteApiKeys;
|
|
|
3334
4120
|
exports.signDeleteAuthenticators = signDeleteAuthenticators;
|
|
3335
4121
|
exports.signDeleteFiatOnRampCredential = signDeleteFiatOnRampCredential;
|
|
3336
4122
|
exports.signDeleteInvitation = signDeleteInvitation;
|
|
4123
|
+
exports.signDeleteMfaPolicy = signDeleteMfaPolicy;
|
|
3337
4124
|
exports.signDeleteOauth2Credential = signDeleteOauth2Credential;
|
|
3338
4125
|
exports.signDeleteOauthProviders = signDeleteOauthProviders;
|
|
3339
4126
|
exports.signDeletePolicies = signDeletePolicies;
|
|
@@ -3349,9 +4136,14 @@ exports.signDeleteUsers = signDeleteUsers;
|
|
|
3349
4136
|
exports.signDeleteWalletAccounts = signDeleteWalletAccounts;
|
|
3350
4137
|
exports.signDeleteWallets = signDeleteWallets;
|
|
3351
4138
|
exports.signDeleteWebhookEndpoint = signDeleteWebhookEndpoint;
|
|
4139
|
+
exports.signEarnDeployWrapper = signEarnDeployWrapper;
|
|
4140
|
+
exports.signEarnDeposit = signEarnDeposit;
|
|
4141
|
+
exports.signEarnSetWrapperState = signEarnSetWrapperState;
|
|
4142
|
+
exports.signEarnWithdraw = signEarnWithdraw;
|
|
3352
4143
|
exports.signEmailAuth = signEmailAuth;
|
|
3353
4144
|
exports.signEthSendRawTransaction = signEthSendRawTransaction;
|
|
3354
4145
|
exports.signEthSendTransaction = signEthSendTransaction;
|
|
4146
|
+
exports.signExecuteSwap = signExecuteSwap;
|
|
3355
4147
|
exports.signExportPrivateKey = signExportPrivateKey;
|
|
3356
4148
|
exports.signExportWallet = signExportWallet;
|
|
3357
4149
|
exports.signExportWalletAccount = signExportWalletAccount;
|
|
@@ -3364,9 +4156,16 @@ exports.signGetAppStatus = signGetAppStatus;
|
|
|
3364
4156
|
exports.signGetAuthenticator = signGetAuthenticator;
|
|
3365
4157
|
exports.signGetAuthenticators = signGetAuthenticators;
|
|
3366
4158
|
exports.signGetBootProof = signGetBootProof;
|
|
4159
|
+
exports.signGetClaimEarnFeesStatus = signGetClaimEarnFeesStatus;
|
|
4160
|
+
exports.signGetEarnDeployStatus = signGetEarnDeployStatus;
|
|
4161
|
+
exports.signGetEarnDepositStatus = signGetEarnDepositStatus;
|
|
4162
|
+
exports.signGetEarnWithdrawStatus = signGetEarnWithdrawStatus;
|
|
3367
4163
|
exports.signGetGasUsage = signGetGasUsage;
|
|
3368
4164
|
exports.signGetIpAllowlist = signGetIpAllowlist;
|
|
3369
4165
|
exports.signGetLatestBootProof = signGetLatestBootProof;
|
|
4166
|
+
exports.signGetMfaPolicies = signGetMfaPolicies;
|
|
4167
|
+
exports.signGetMfaPolicy = signGetMfaPolicy;
|
|
4168
|
+
exports.signGetMfaStatus = signGetMfaStatus;
|
|
3370
4169
|
exports.signGetNonces = signGetNonces;
|
|
3371
4170
|
exports.signGetOauth2Credential = signGetOauth2Credential;
|
|
3372
4171
|
exports.signGetOauthProviders = signGetOauthProviders;
|
|
@@ -3379,13 +4178,18 @@ exports.signGetPolicyEvaluations = signGetPolicyEvaluations;
|
|
|
3379
4178
|
exports.signGetPrivateKey = signGetPrivateKey;
|
|
3380
4179
|
exports.signGetPrivateKeys = signGetPrivateKeys;
|
|
3381
4180
|
exports.signGetSendTransactionStatus = signGetSendTransactionStatus;
|
|
4181
|
+
exports.signGetSessionProfile = signGetSessionProfile;
|
|
4182
|
+
exports.signGetSessionProfiles = signGetSessionProfiles;
|
|
3382
4183
|
exports.signGetSmartContractInterface = signGetSmartContractInterface;
|
|
3383
4184
|
exports.signGetSmartContractInterfaces = signGetSmartContractInterfaces;
|
|
3384
4185
|
exports.signGetSubOrgIds = signGetSubOrgIds;
|
|
4186
|
+
exports.signGetSwapQuote = signGetSwapQuote;
|
|
4187
|
+
exports.signGetSwapStatus = signGetSwapStatus;
|
|
3385
4188
|
exports.signGetTvcApp = signGetTvcApp;
|
|
3386
4189
|
exports.signGetTvcAppDeployments = signGetTvcAppDeployments;
|
|
3387
4190
|
exports.signGetTvcApps = signGetTvcApps;
|
|
3388
4191
|
exports.signGetTvcDeployment = signGetTvcDeployment;
|
|
4192
|
+
exports.signGetTvcDeploymentDebugLogs = signGetTvcDeploymentDebugLogs;
|
|
3389
4193
|
exports.signGetTvcDeploymentProvisioningDetails = signGetTvcDeploymentProvisioningDetails;
|
|
3390
4194
|
exports.signGetUser = signGetUser;
|
|
3391
4195
|
exports.signGetUsers = signGetUsers;
|
|
@@ -3400,13 +4204,20 @@ exports.signImportPrivateKey = signImportPrivateKey;
|
|
|
3400
4204
|
exports.signImportWallet = signImportWallet;
|
|
3401
4205
|
exports.signInitFiatOnRamp = signInitFiatOnRamp;
|
|
3402
4206
|
exports.signInitImportPrivateKey = signInitImportPrivateKey;
|
|
4207
|
+
exports.signInitImportSecrets = signInitImportSecrets;
|
|
3403
4208
|
exports.signInitImportWallet = signInitImportWallet;
|
|
3404
4209
|
exports.signInitOtp = signInitOtp;
|
|
3405
4210
|
exports.signInitOtpAuth = signInitOtpAuth;
|
|
3406
4211
|
exports.signInitUserEmailRecovery = signInitUserEmailRecovery;
|
|
4212
|
+
exports.signListEarnEnabledVaults = signListEarnEnabledVaults;
|
|
4213
|
+
exports.signListEarnPositions = signListEarnPositions;
|
|
4214
|
+
exports.signListEarnVaults = signListEarnVaults;
|
|
4215
|
+
exports.signListEmailEvents = signListEmailEvents;
|
|
4216
|
+
exports.signListEthTransactionHistory = signListEthTransactionHistory;
|
|
3407
4217
|
exports.signListFiatOnRampCredentials = signListFiatOnRampCredentials;
|
|
3408
4218
|
exports.signListOauth2Credentials = signListOauth2Credentials;
|
|
3409
4219
|
exports.signListPrivateKeyTags = signListPrivateKeyTags;
|
|
4220
|
+
exports.signListSolTransactionHistory = signListSolTransactionHistory;
|
|
3410
4221
|
exports.signListSupportedAssets = signListSupportedAssets;
|
|
3411
4222
|
exports.signListUserTags = signListUserTags;
|
|
3412
4223
|
exports.signListWebhookEndpoints = signListWebhookEndpoints;
|
|
@@ -3419,6 +4230,7 @@ exports.signOtpLogin = signOtpLogin;
|
|
|
3419
4230
|
exports.signPostTvcQuorumKeyShare = signPostTvcQuorumKeyShare;
|
|
3420
4231
|
exports.signRawPayload = signRawPayload;
|
|
3421
4232
|
exports.signRawPayloads = signRawPayloads;
|
|
4233
|
+
exports.signReEncryptTvcQuorumKeyShare = signReEncryptTvcQuorumKeyShare;
|
|
3422
4234
|
exports.signRecoverUser = signRecoverUser;
|
|
3423
4235
|
exports.signRefreshFeatureFlags = signRefreshFeatureFlags;
|
|
3424
4236
|
exports.signRejectActivity = signRejectActivity;
|
|
@@ -3439,6 +4251,7 @@ exports.signStampLogin = signStampLogin;
|
|
|
3439
4251
|
exports.signTestRateLimits = signTestRateLimits;
|
|
3440
4252
|
exports.signTransaction = signTransaction;
|
|
3441
4253
|
exports.signUpdateFiatOnRampCredential = signUpdateFiatOnRampCredential;
|
|
4254
|
+
exports.signUpdateMfaPolicy = signUpdateMfaPolicy;
|
|
3442
4255
|
exports.signUpdateOauth2Credential = signUpdateOauth2Credential;
|
|
3443
4256
|
exports.signUpdateOrganizationName = signUpdateOrganizationName;
|
|
3444
4257
|
exports.signUpdatePolicy = signUpdatePolicy;
|
|
@@ -3452,6 +4265,7 @@ exports.signUpdateUserPhoneNumber = signUpdateUserPhoneNumber;
|
|
|
3452
4265
|
exports.signUpdateUserTag = signUpdateUserTag;
|
|
3453
4266
|
exports.signUpdateWallet = signUpdateWallet;
|
|
3454
4267
|
exports.signUpdateWebhookEndpoint = signUpdateWebhookEndpoint;
|
|
4268
|
+
exports.signUpsertSwapConfig = signUpsertSwapConfig;
|
|
3455
4269
|
exports.signValidateTvcImage = signValidateTvcImage;
|
|
3456
4270
|
exports.signVerifyOtp = signVerifyOtp;
|
|
3457
4271
|
exports.solSendTransaction = solSendTransaction;
|
|
@@ -3462,6 +4276,7 @@ exports.sparkSignFrost = sparkSignFrost;
|
|
|
3462
4276
|
exports.stampLogin = stampLogin;
|
|
3463
4277
|
exports.testRateLimits = testRateLimits;
|
|
3464
4278
|
exports.updateFiatOnRampCredential = updateFiatOnRampCredential;
|
|
4279
|
+
exports.updateMfaPolicy = updateMfaPolicy;
|
|
3465
4280
|
exports.updateOauth2Credential = updateOauth2Credential;
|
|
3466
4281
|
exports.updateOrganizationName = updateOrganizationName;
|
|
3467
4282
|
exports.updatePolicy = updatePolicy;
|
|
@@ -3475,6 +4290,7 @@ exports.updateUserPhoneNumber = updateUserPhoneNumber;
|
|
|
3475
4290
|
exports.updateUserTag = updateUserTag;
|
|
3476
4291
|
exports.updateWallet = updateWallet;
|
|
3477
4292
|
exports.updateWebhookEndpoint = updateWebhookEndpoint;
|
|
4293
|
+
exports.upsertSwapConfig = upsertSwapConfig;
|
|
3478
4294
|
exports.validateTvcImage = validateTvcImage;
|
|
3479
4295
|
exports.verifyOtp = verifyOtp;
|
|
3480
4296
|
//# sourceMappingURL=public_api.fetcher.js.map
|