@turnkey/http 3.14.0 → 3.15.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 +6 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +91 -1
- 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 +151 -1
- 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 +151 -1
- 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 +14281 -8244
- 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 +146 -2
- 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 +135 -3
- 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 +296 -6
- package/dist/__generated__/services/coordinator/public/v1/public_api.types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.mjs +1 -1
- package/package.json +3 -3
|
@@ -43,6 +43,10 @@ export type paths = {
|
|
|
43
43
|
/** Get details about Oauth providers for a user. */
|
|
44
44
|
post: operations["PublicApiService_GetOauthProviders"];
|
|
45
45
|
};
|
|
46
|
+
"/public/v1/query/get_onramp_transaction_status": {
|
|
47
|
+
/** Get the status of an on ramp transaction. */
|
|
48
|
+
post: operations["PublicApiService_GetOnRampTransactionStatus"];
|
|
49
|
+
};
|
|
46
50
|
"/public/v1/query/get_organization": {
|
|
47
51
|
/** Get details about an organization. */
|
|
48
52
|
post: operations["PublicApiService_GetOrganization"];
|
|
@@ -84,9 +88,13 @@ export type paths = {
|
|
|
84
88
|
post: operations["PublicApiService_GetActivities"];
|
|
85
89
|
};
|
|
86
90
|
"/public/v1/query/list_app_proofs": {
|
|
87
|
-
/** List the
|
|
91
|
+
/** List the App Proofs for the given activity. */
|
|
88
92
|
post: operations["PublicApiService_GetAppProofs"];
|
|
89
93
|
};
|
|
94
|
+
"/public/v1/query/list_fiat_on_ramp_credentials": {
|
|
95
|
+
/** List all fiat on ramp provider credentials within an organization. */
|
|
96
|
+
post: operations["PublicApiService_ListFiatOnRampCredentials"];
|
|
97
|
+
};
|
|
90
98
|
"/public/v1/query/list_oauth2_credentials": {
|
|
91
99
|
/** List all OAuth 2.0 credentials within an organization. */
|
|
92
100
|
post: operations["PublicApiService_ListOauth2Credentials"];
|
|
@@ -151,6 +159,10 @@ export type paths = {
|
|
|
151
159
|
/** Create authenticators to authenticate requests to Turnkey. */
|
|
152
160
|
post: operations["PublicApiService_CreateAuthenticators"];
|
|
153
161
|
};
|
|
162
|
+
"/public/v1/submit/create_fiat_on_ramp_credential": {
|
|
163
|
+
/** Create a fiat on ramp provider credential */
|
|
164
|
+
post: operations["PublicApiService_CreateFiatOnRampCredential"];
|
|
165
|
+
};
|
|
154
166
|
"/public/v1/submit/create_invitations": {
|
|
155
167
|
/** Create invitations to join an existing organization. */
|
|
156
168
|
post: operations["PublicApiService_CreateInvitations"];
|
|
@@ -219,6 +231,10 @@ export type paths = {
|
|
|
219
231
|
/** Remove authenticators from a user. */
|
|
220
232
|
post: operations["PublicApiService_DeleteAuthenticators"];
|
|
221
233
|
};
|
|
234
|
+
"/public/v1/submit/delete_fiat_on_ramp_credential": {
|
|
235
|
+
/** Delete a fiat on ramp provider credential */
|
|
236
|
+
post: operations["PublicApiService_DeleteFiatOnRampCredential"];
|
|
237
|
+
};
|
|
222
238
|
"/public/v1/submit/delete_invitation": {
|
|
223
239
|
/** Delete an existing invitation. */
|
|
224
240
|
post: operations["PublicApiService_DeleteInvitation"];
|
|
@@ -279,6 +295,10 @@ export type paths = {
|
|
|
279
295
|
/** Submit a raw transaction (serialized and signed) for broadcasting to the network. */
|
|
280
296
|
post: operations["PublicApiService_EthSendRawTransaction"];
|
|
281
297
|
};
|
|
298
|
+
"/public/v1/submit/eth_send_transaction": {
|
|
299
|
+
/** Submit a transaction intent describing a transaction you would like to broadcast. */
|
|
300
|
+
post: operations["PublicApiService_EthSendTransaction"];
|
|
301
|
+
};
|
|
282
302
|
"/public/v1/submit/export_private_key": {
|
|
283
303
|
/** Export a private key. */
|
|
284
304
|
post: operations["PublicApiService_ExportPrivateKey"];
|
|
@@ -375,6 +395,10 @@ export type paths = {
|
|
|
375
395
|
/** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
|
|
376
396
|
post: operations["PublicApiService_StampLogin"];
|
|
377
397
|
};
|
|
398
|
+
"/public/v1/submit/update_fiat_on_ramp_credential": {
|
|
399
|
+
/** Update a fiat on ramp provider credential */
|
|
400
|
+
post: operations["PublicApiService_UpdateFiatOnRampCredential"];
|
|
401
|
+
};
|
|
378
402
|
"/public/v1/submit/update_oauth2_credential": {
|
|
379
403
|
/** Update an OAuth 2.0 provider credential */
|
|
380
404
|
post: operations["PublicApiService_UpdateOauth2Credential"];
|
|
@@ -584,7 +608,7 @@ export type definitions = {
|
|
|
584
608
|
result: definitions["v1Result"];
|
|
585
609
|
/** @description A list of objects representing a particular User's approval or rejection of a Consensus request, including all relevant metadata. */
|
|
586
610
|
votes: definitions["v1Vote"][];
|
|
587
|
-
/** @description A list of
|
|
611
|
+
/** @description A list of App Proofs generated by enclaves during activity execution, providing verifiable attestations of performed operations. */
|
|
588
612
|
appProofs?: definitions["v1AppProof"][];
|
|
589
613
|
/** @description An artifact verifying a User's action. */
|
|
590
614
|
fingerprint: string;
|
|
@@ -602,7 +626,7 @@ export type definitions = {
|
|
|
602
626
|
/** @enum {string} */
|
|
603
627
|
v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
|
|
604
628
|
/** @enum {string} */
|
|
605
|
-
v1ActivityType: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" | "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2" | "ACTIVITY_TYPE_CREATE_USERS_V2" | "ACTIVITY_TYPE_ACCEPT_INVITATION_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2" | "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" | "ACTIVITY_TYPE_UPDATE_USER" | "ACTIVITY_TYPE_UPDATE_POLICY" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3" | "ACTIVITY_TYPE_CREATE_WALLET" | "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" | "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" | "ACTIVITY_TYPE_RECOVER_USER" | "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" | "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" | "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_EXPORT_WALLET" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4" | "ACTIVITY_TYPE_EMAIL_AUTH" | "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" | "ACTIVITY_TYPE_INIT_IMPORT_WALLET" | "ACTIVITY_TYPE_IMPORT_WALLET" | "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_CREATE_POLICIES" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" | "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" | "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5" | "ACTIVITY_TYPE_OAUTH" | "ACTIVITY_TYPE_CREATE_API_KEYS_V2" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION" | "ACTIVITY_TYPE_EMAIL_AUTH_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" | "ACTIVITY_TYPE_DELETE_WALLETS" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" | "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_INIT_OTP_AUTH" | "ACTIVITY_TYPE_OTP_AUTH" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" | "ACTIVITY_TYPE_UPDATE_WALLET" | "ACTIVITY_TYPE_UPDATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_USERS_V3" | "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" | "ACTIVITY_TYPE_INIT_OTP" | "ACTIVITY_TYPE_VERIFY_OTP" | "ACTIVITY_TYPE_OTP_LOGIN" | "ACTIVITY_TYPE_STAMP_LOGIN" | "ACTIVITY_TYPE_OAUTH_LOGIN" | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" | "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" | "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" | "ACTIVITY_TYPE_ENABLE_AUTH_PROXY" | "ACTIVITY_TYPE_DISABLE_AUTH_PROXY" | "ACTIVITY_TYPE_UPDATE_AUTH_PROXY_CONFIG" | "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE" | "ACTIVITY_TYPE_DELETE_WALLET_ACCOUNTS" | "ACTIVITY_TYPE_DELETE_POLICIES" | "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION";
|
|
629
|
+
v1ActivityType: "ACTIVITY_TYPE_CREATE_API_KEYS" | "ACTIVITY_TYPE_CREATE_USERS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD" | "ACTIVITY_TYPE_CREATE_INVITATIONS" | "ACTIVITY_TYPE_ACCEPT_INVITATION" | "ACTIVITY_TYPE_CREATE_POLICY" | "ACTIVITY_TYPE_DISABLE_PRIVATE_KEY" | "ACTIVITY_TYPE_DELETE_USERS" | "ACTIVITY_TYPE_DELETE_API_KEYS" | "ACTIVITY_TYPE_DELETE_INVITATION" | "ACTIVITY_TYPE_DELETE_ORGANIZATION" | "ACTIVITY_TYPE_DELETE_POLICY" | "ACTIVITY_TYPE_CREATE_USER_TAG" | "ACTIVITY_TYPE_DELETE_USER_TAGS" | "ACTIVITY_TYPE_CREATE_ORGANIZATION" | "ACTIVITY_TYPE_SIGN_TRANSACTION" | "ACTIVITY_TYPE_APPROVE_ACTIVITY" | "ACTIVITY_TYPE_REJECT_ACTIVITY" | "ACTIVITY_TYPE_DELETE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEY_TAGS" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD" | "ACTIVITY_TYPE_ACTIVATE_BILLING_TIER" | "ACTIVITY_TYPE_DELETE_PAYMENT_METHOD" | "ACTIVITY_TYPE_CREATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_POLICY_V3" | "ACTIVITY_TYPE_CREATE_API_ONLY_USERS" | "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM" | "ACTIVITY_TYPE_UPDATE_USER_TAG" | "ACTIVITY_TYPE_UPDATE_PRIVATE_KEY_TAG" | "ACTIVITY_TYPE_CREATE_AUTHENTICATORS_V2" | "ACTIVITY_TYPE_CREATE_ORGANIZATION_V2" | "ACTIVITY_TYPE_CREATE_USERS_V2" | "ACTIVITY_TYPE_ACCEPT_INVITATION_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V2" | "ACTIVITY_TYPE_UPDATE_ALLOWED_ORIGINS" | "ACTIVITY_TYPE_CREATE_PRIVATE_KEYS_V2" | "ACTIVITY_TYPE_UPDATE_USER" | "ACTIVITY_TYPE_UPDATE_POLICY" | "ACTIVITY_TYPE_SET_PAYMENT_METHOD_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V3" | "ACTIVITY_TYPE_CREATE_WALLET" | "ACTIVITY_TYPE_CREATE_WALLET_ACCOUNTS" | "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY" | "ACTIVITY_TYPE_RECOVER_USER" | "ACTIVITY_TYPE_SET_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_REMOVE_ORGANIZATION_FEATURE" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOAD_V2" | "ACTIVITY_TYPE_SIGN_TRANSACTION_V2" | "ACTIVITY_TYPE_EXPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_EXPORT_WALLET" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V4" | "ACTIVITY_TYPE_EMAIL_AUTH" | "ACTIVITY_TYPE_EXPORT_WALLET_ACCOUNT" | "ACTIVITY_TYPE_INIT_IMPORT_WALLET" | "ACTIVITY_TYPE_IMPORT_WALLET" | "ACTIVITY_TYPE_INIT_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_IMPORT_PRIVATE_KEY" | "ACTIVITY_TYPE_CREATE_POLICIES" | "ACTIVITY_TYPE_SIGN_RAW_PAYLOADS" | "ACTIVITY_TYPE_CREATE_READ_ONLY_SESSION" | "ACTIVITY_TYPE_CREATE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_DELETE_OAUTH_PROVIDERS" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V5" | "ACTIVITY_TYPE_OAUTH" | "ACTIVITY_TYPE_CREATE_API_KEYS_V2" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION" | "ACTIVITY_TYPE_EMAIL_AUTH_V2" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V6" | "ACTIVITY_TYPE_DELETE_PRIVATE_KEYS" | "ACTIVITY_TYPE_DELETE_WALLETS" | "ACTIVITY_TYPE_CREATE_READ_WRITE_SESSION_V2" | "ACTIVITY_TYPE_DELETE_SUB_ORGANIZATION" | "ACTIVITY_TYPE_INIT_OTP_AUTH" | "ACTIVITY_TYPE_OTP_AUTH" | "ACTIVITY_TYPE_CREATE_SUB_ORGANIZATION_V7" | "ACTIVITY_TYPE_UPDATE_WALLET" | "ACTIVITY_TYPE_UPDATE_POLICY_V2" | "ACTIVITY_TYPE_CREATE_USERS_V3" | "ACTIVITY_TYPE_INIT_OTP_AUTH_V2" | "ACTIVITY_TYPE_INIT_OTP" | "ACTIVITY_TYPE_VERIFY_OTP" | "ACTIVITY_TYPE_OTP_LOGIN" | "ACTIVITY_TYPE_STAMP_LOGIN" | "ACTIVITY_TYPE_OAUTH_LOGIN" | "ACTIVITY_TYPE_UPDATE_USER_NAME" | "ACTIVITY_TYPE_UPDATE_USER_EMAIL" | "ACTIVITY_TYPE_UPDATE_USER_PHONE_NUMBER" | "ACTIVITY_TYPE_INIT_FIAT_ON_RAMP" | "ACTIVITY_TYPE_CREATE_SMART_CONTRACT_INTERFACE" | "ACTIVITY_TYPE_DELETE_SMART_CONTRACT_INTERFACE" | "ACTIVITY_TYPE_ENABLE_AUTH_PROXY" | "ACTIVITY_TYPE_DISABLE_AUTH_PROXY" | "ACTIVITY_TYPE_UPDATE_AUTH_PROXY_CONFIG" | "ACTIVITY_TYPE_CREATE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_UPDATE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_DELETE_OAUTH2_CREDENTIAL" | "ACTIVITY_TYPE_OAUTH2_AUTHENTICATE" | "ACTIVITY_TYPE_DELETE_WALLET_ACCOUNTS" | "ACTIVITY_TYPE_DELETE_POLICIES" | "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION" | "ACTIVITY_TYPE_ETH_SEND_TRANSACTION" | "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL" | "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL" | "ACTIVITY_TYPE_DELETE_FIAT_ON_RAMP_CREDENTIAL";
|
|
606
630
|
/** @enum {string} */
|
|
607
631
|
v1AddressFormat: "ADDRESS_FORMAT_UNCOMPRESSED" | "ADDRESS_FORMAT_COMPRESSED" | "ADDRESS_FORMAT_ETHEREUM" | "ADDRESS_FORMAT_SOLANA" | "ADDRESS_FORMAT_COSMOS" | "ADDRESS_FORMAT_TRON" | "ADDRESS_FORMAT_SUI" | "ADDRESS_FORMAT_APTOS" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2PKH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2SH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2WSH" | "ADDRESS_FORMAT_BITCOIN_MAINNET_P2TR" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2PKH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2SH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2WSH" | "ADDRESS_FORMAT_BITCOIN_TESTNET_P2TR" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2PKH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2SH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2WSH" | "ADDRESS_FORMAT_BITCOIN_SIGNET_P2TR" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2PKH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2SH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2WPKH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2WSH" | "ADDRESS_FORMAT_BITCOIN_REGTEST_P2TR" | "ADDRESS_FORMAT_SEI" | "ADDRESS_FORMAT_XLM" | "ADDRESS_FORMAT_DOGE_MAINNET" | "ADDRESS_FORMAT_DOGE_TESTNET" | "ADDRESS_FORMAT_TON_V3R2" | "ADDRESS_FORMAT_TON_V4R2" | "ADDRESS_FORMAT_TON_V5R1" | "ADDRESS_FORMAT_XRP";
|
|
608
632
|
v1ApiKey: {
|
|
@@ -811,6 +835,33 @@ export type definitions = {
|
|
|
811
835
|
/** @description A list of Authenticator IDs. */
|
|
812
836
|
authenticatorIds: string[];
|
|
813
837
|
};
|
|
838
|
+
v1CreateFiatOnRampCredentialIntent: {
|
|
839
|
+
/** @description The fiat on-ramp provider */
|
|
840
|
+
onrampProvider: definitions["v1FiatOnRampProvider"];
|
|
841
|
+
/** @description Project ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier */
|
|
842
|
+
projectId?: string;
|
|
843
|
+
/** @description Publishable API key for the on-ramp provider */
|
|
844
|
+
publishableApiKey: string;
|
|
845
|
+
/** @description Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key */
|
|
846
|
+
encryptedSecretApiKey: string;
|
|
847
|
+
/** @description Private API key for the on-ramp provider encrypted to our on-ramp encryption public key. Some providers, like Coinbase, require this additional key. */
|
|
848
|
+
encryptedPrivateApiKey?: string;
|
|
849
|
+
/** @description If the on-ramp credential is a sandbox credential */
|
|
850
|
+
sandboxMode?: boolean;
|
|
851
|
+
};
|
|
852
|
+
v1CreateFiatOnRampCredentialRequest: {
|
|
853
|
+
/** @enum {string} */
|
|
854
|
+
type: "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL";
|
|
855
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
856
|
+
timestampMs: string;
|
|
857
|
+
/** @description Unique identifier for a given Organization. */
|
|
858
|
+
organizationId: string;
|
|
859
|
+
parameters: definitions["v1CreateFiatOnRampCredentialIntent"];
|
|
860
|
+
};
|
|
861
|
+
v1CreateFiatOnRampCredentialResult: {
|
|
862
|
+
/** @description Unique identifier of the Fiat On-Ramp credential that was created */
|
|
863
|
+
fiatOnRampCredentialId: string;
|
|
864
|
+
};
|
|
814
865
|
v1CreateInvitationsIntent: {
|
|
815
866
|
/** @description A list of Invitations. */
|
|
816
867
|
invitations: definitions["v1InvitationParams"][];
|
|
@@ -1390,6 +1441,23 @@ export type definitions = {
|
|
|
1390
1441
|
/** @description Unique identifier for a given Authenticator. */
|
|
1391
1442
|
authenticatorIds: string[];
|
|
1392
1443
|
};
|
|
1444
|
+
v1DeleteFiatOnRampCredentialIntent: {
|
|
1445
|
+
/** @description The ID of the fiat on-ramp credential to delete */
|
|
1446
|
+
fiatOnrampCredentialId: string;
|
|
1447
|
+
};
|
|
1448
|
+
v1DeleteFiatOnRampCredentialRequest: {
|
|
1449
|
+
/** @enum {string} */
|
|
1450
|
+
type: "ACTIVITY_TYPE_DELETE_FIAT_ON_RAMP_CREDENTIAL";
|
|
1451
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1452
|
+
timestampMs: string;
|
|
1453
|
+
/** @description Unique identifier for a given Organization. */
|
|
1454
|
+
organizationId: string;
|
|
1455
|
+
parameters: definitions["v1DeleteFiatOnRampCredentialIntent"];
|
|
1456
|
+
};
|
|
1457
|
+
v1DeleteFiatOnRampCredentialResult: {
|
|
1458
|
+
/** @description Unique identifier of the Fiat On-Ramp credential that was deleted */
|
|
1459
|
+
fiatOnRampCredentialId: string;
|
|
1460
|
+
};
|
|
1393
1461
|
v1DeleteInvitationIntent: {
|
|
1394
1462
|
/** @description Unique identifier for a given Invitation object. */
|
|
1395
1463
|
invitationId: string;
|
|
@@ -1725,10 +1793,10 @@ export type definitions = {
|
|
|
1725
1793
|
/** @description The raw, signed transaction to be sent. */
|
|
1726
1794
|
signedTransaction: string;
|
|
1727
1795
|
/**
|
|
1728
|
-
* @description
|
|
1796
|
+
* @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
|
|
1729
1797
|
* @enum {string}
|
|
1730
1798
|
*/
|
|
1731
|
-
|
|
1799
|
+
caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532";
|
|
1732
1800
|
};
|
|
1733
1801
|
v1EthSendRawTransactionRequest: {
|
|
1734
1802
|
/** @enum {string} */
|
|
@@ -1743,6 +1811,46 @@ export type definitions = {
|
|
|
1743
1811
|
/** @description The transaction hash of the sent transaction */
|
|
1744
1812
|
transactionHash: string;
|
|
1745
1813
|
};
|
|
1814
|
+
v1EthSendTransactionIntent: {
|
|
1815
|
+
/** @description A wallet or private key address to sign with. This does not support private key IDs. */
|
|
1816
|
+
from: string;
|
|
1817
|
+
/** @description Whether to sponsor this transaction via Gas Station. */
|
|
1818
|
+
sponsor?: boolean;
|
|
1819
|
+
/**
|
|
1820
|
+
* @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
|
|
1821
|
+
* @enum {string}
|
|
1822
|
+
*/
|
|
1823
|
+
caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532";
|
|
1824
|
+
/** @description Recipient address as a hex string with 0x prefix. */
|
|
1825
|
+
to: string;
|
|
1826
|
+
/** @description Amount of native asset to send in wei. */
|
|
1827
|
+
value?: string;
|
|
1828
|
+
/** @description Hex-encoded call data for contract interactions. */
|
|
1829
|
+
data?: string;
|
|
1830
|
+
/** @description Transaction nonce. */
|
|
1831
|
+
nonce: string;
|
|
1832
|
+
/** @description Maximum amount of gas to use for this transaction. */
|
|
1833
|
+
gasLimit: string;
|
|
1834
|
+
/** @description Maximum total fee per gas unit (base fee + priority fee) in wei, for EIP-1559 transactions. */
|
|
1835
|
+
maxFeePerGas: string;
|
|
1836
|
+
/** @description Maximum priority fee (tip) per gas unit in wei, for EIP-1559 transactions. */
|
|
1837
|
+
maxPriorityFeePerGas: string;
|
|
1838
|
+
/** @description Unix timestamp after which the Gas Station meta-transaction is no longer valid. Only used when sponsor=true. */
|
|
1839
|
+
deadline?: string;
|
|
1840
|
+
};
|
|
1841
|
+
v1EthSendTransactionRequest: {
|
|
1842
|
+
/** @enum {string} */
|
|
1843
|
+
type: "ACTIVITY_TYPE_ETH_SEND_TRANSACTION";
|
|
1844
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1845
|
+
timestampMs: string;
|
|
1846
|
+
/** @description Unique identifier for a given Organization. */
|
|
1847
|
+
organizationId: string;
|
|
1848
|
+
parameters: definitions["v1EthSendTransactionIntent"];
|
|
1849
|
+
};
|
|
1850
|
+
v1EthSendTransactionResult: {
|
|
1851
|
+
/** @description The transaction hash of the sent transaction */
|
|
1852
|
+
transactionHash: string;
|
|
1853
|
+
};
|
|
1746
1854
|
v1ExportPrivateKeyIntent: {
|
|
1747
1855
|
/** @description Unique identifier for a given Private Key. */
|
|
1748
1856
|
privateKeyId: string;
|
|
@@ -1816,6 +1924,26 @@ export type definitions = {
|
|
|
1816
1924
|
v1FeatureName: "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY" | "FEATURE_NAME_WEBAUTHN_ORIGINS" | "FEATURE_NAME_EMAIL_AUTH" | "FEATURE_NAME_EMAIL_RECOVERY" | "FEATURE_NAME_WEBHOOK" | "FEATURE_NAME_SMS_AUTH" | "FEATURE_NAME_OTP_EMAIL_AUTH" | "FEATURE_NAME_AUTH_PROXY";
|
|
1817
1925
|
/** @enum {string} */
|
|
1818
1926
|
v1FiatOnRampBlockchainNetwork: "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_BITCOIN" | "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_ETHEREUM" | "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_SOLANA" | "FIAT_ON_RAMP_BLOCKCHAIN_NETWORK_BASE";
|
|
1927
|
+
v1FiatOnRampCredential: {
|
|
1928
|
+
/** @description Unique identifier for a given Fiat On-Ramp Credential. */
|
|
1929
|
+
fiatOnrampCredentialId: string;
|
|
1930
|
+
/** @description Unique identifier for an Organization. */
|
|
1931
|
+
organizationId: string;
|
|
1932
|
+
/** @description The fiat on-ramp provider. */
|
|
1933
|
+
onrampProvider: definitions["v1FiatOnRampProvider"];
|
|
1934
|
+
/** @description Project ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier. */
|
|
1935
|
+
projectId?: string;
|
|
1936
|
+
/** @description Publishable API key for the on-ramp provider. */
|
|
1937
|
+
publishableApiKey: string;
|
|
1938
|
+
/** @description Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key. */
|
|
1939
|
+
encryptedSecretApiKey: string;
|
|
1940
|
+
/** @description Private API key for the on-ramp provider encrypted to our on-ramp encryption public key. Some providers, like Coinbase, require this additional key. */
|
|
1941
|
+
encryptedPrivateApiKey?: string;
|
|
1942
|
+
/** @description If the on-ramp credential is a sandbox credential. */
|
|
1943
|
+
sandboxMode?: boolean;
|
|
1944
|
+
createdAt: definitions["externaldatav1Timestamp"];
|
|
1945
|
+
updatedAt: definitions["externaldatav1Timestamp"];
|
|
1946
|
+
};
|
|
1819
1947
|
/** @enum {string} */
|
|
1820
1948
|
v1FiatOnRampCryptoCurrency: "FIAT_ON_RAMP_CRYPTO_CURRENCY_BTC" | "FIAT_ON_RAMP_CRYPTO_CURRENCY_ETH" | "FIAT_ON_RAMP_CRYPTO_CURRENCY_SOL" | "FIAT_ON_RAMP_CRYPTO_CURRENCY_USDC";
|
|
1821
1949
|
/** @enum {string} */
|
|
@@ -1937,6 +2065,18 @@ export type definitions = {
|
|
|
1937
2065
|
/** @description A list of Oauth providers. */
|
|
1938
2066
|
oauthProviders: definitions["v1OauthProvider"][];
|
|
1939
2067
|
};
|
|
2068
|
+
v1GetOnRampTransactionStatusRequest: {
|
|
2069
|
+
/** @description Unique identifier for a given organization. */
|
|
2070
|
+
organizationId: string;
|
|
2071
|
+
/** @description The unique identifier for the fiat on ramp transaction. */
|
|
2072
|
+
transactionId: string;
|
|
2073
|
+
/** @description Optional flag to specify if the transaction status should be refreshed from the fiat on ramp provider. Default = false. */
|
|
2074
|
+
refresh?: boolean;
|
|
2075
|
+
};
|
|
2076
|
+
v1GetOnRampTransactionStatusResponse: {
|
|
2077
|
+
/** @description The status of the fiat on ramp transaction. */
|
|
2078
|
+
transactionStatus: string;
|
|
2079
|
+
};
|
|
1940
2080
|
v1GetOrganizationConfigsRequest: {
|
|
1941
2081
|
/** @description Unique identifier for a given organization. */
|
|
1942
2082
|
organizationId: string;
|
|
@@ -2485,6 +2625,10 @@ export type definitions = {
|
|
|
2485
2625
|
deleteWalletAccountsIntent?: definitions["v1DeleteWalletAccountsIntent"];
|
|
2486
2626
|
deletePoliciesIntent?: definitions["v1DeletePoliciesIntent"];
|
|
2487
2627
|
ethSendRawTransactionIntent?: definitions["v1EthSendRawTransactionIntent"];
|
|
2628
|
+
ethSendTransactionIntent?: definitions["v1EthSendTransactionIntent"];
|
|
2629
|
+
createFiatOnRampCredentialIntent?: definitions["v1CreateFiatOnRampCredentialIntent"];
|
|
2630
|
+
updateFiatOnRampCredentialIntent?: definitions["v1UpdateFiatOnRampCredentialIntent"];
|
|
2631
|
+
deleteFiatOnRampCredentialIntent?: definitions["v1DeleteFiatOnRampCredentialIntent"];
|
|
2488
2632
|
};
|
|
2489
2633
|
v1Invitation: {
|
|
2490
2634
|
/** @description Unique identifier for a given Invitation object. */
|
|
@@ -2518,6 +2662,13 @@ export type definitions = {
|
|
|
2518
2662
|
};
|
|
2519
2663
|
/** @enum {string} */
|
|
2520
2664
|
v1InvitationStatus: "INVITATION_STATUS_CREATED" | "INVITATION_STATUS_ACCEPTED" | "INVITATION_STATUS_REVOKED";
|
|
2665
|
+
v1ListFiatOnRampCredentialsRequest: {
|
|
2666
|
+
/** @description Unique identifier for a given Organization. */
|
|
2667
|
+
organizationId: string;
|
|
2668
|
+
};
|
|
2669
|
+
v1ListFiatOnRampCredentialsResponse: {
|
|
2670
|
+
fiatOnRampCredentials: definitions["v1FiatOnRampCredential"][];
|
|
2671
|
+
};
|
|
2521
2672
|
v1ListOauth2CredentialsRequest: {
|
|
2522
2673
|
/** @description Unique identifier for a given Organization. */
|
|
2523
2674
|
organizationId: string;
|
|
@@ -2945,6 +3096,10 @@ export type definitions = {
|
|
|
2945
3096
|
deleteWalletAccountsResult?: definitions["v1DeleteWalletAccountsResult"];
|
|
2946
3097
|
deletePoliciesResult?: definitions["v1DeletePoliciesResult"];
|
|
2947
3098
|
ethSendRawTransactionResult?: definitions["v1EthSendRawTransactionResult"];
|
|
3099
|
+
createFiatOnRampCredentialResult?: definitions["v1CreateFiatOnRampCredentialResult"];
|
|
3100
|
+
updateFiatOnRampCredentialResult?: definitions["v1UpdateFiatOnRampCredentialResult"];
|
|
3101
|
+
deleteFiatOnRampCredentialResult?: definitions["v1DeleteFiatOnRampCredentialResult"];
|
|
3102
|
+
ethSendTransactionResult?: definitions["v1EthSendTransactionResult"];
|
|
2948
3103
|
};
|
|
2949
3104
|
v1RootUserParams: {
|
|
2950
3105
|
/** @description Human-readable name for a User. */
|
|
@@ -3240,6 +3395,33 @@ export type definitions = {
|
|
|
3240
3395
|
/** @description Unique identifier for a given User. (representing the turnkey signer user id) */
|
|
3241
3396
|
configId?: string;
|
|
3242
3397
|
};
|
|
3398
|
+
v1UpdateFiatOnRampCredentialIntent: {
|
|
3399
|
+
/** @description The ID of the fiat on-ramp credential to update */
|
|
3400
|
+
fiatOnrampCredentialId: string;
|
|
3401
|
+
/** @description The fiat on-ramp provider */
|
|
3402
|
+
onrampProvider: definitions["v1FiatOnRampProvider"];
|
|
3403
|
+
/** @description Project ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier. */
|
|
3404
|
+
projectId?: string;
|
|
3405
|
+
/** @description Publishable API key for the on-ramp provider */
|
|
3406
|
+
publishableApiKey: string;
|
|
3407
|
+
/** @description Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key */
|
|
3408
|
+
encryptedSecretApiKey: string;
|
|
3409
|
+
/** @description Private API key for the on-ramp provider encrypted to our on-ramp encryption public key. Some providers, like Coinbase, require this additional key. */
|
|
3410
|
+
encryptedPrivateApiKey?: string;
|
|
3411
|
+
};
|
|
3412
|
+
v1UpdateFiatOnRampCredentialRequest: {
|
|
3413
|
+
/** @enum {string} */
|
|
3414
|
+
type: "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL";
|
|
3415
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
3416
|
+
timestampMs: string;
|
|
3417
|
+
/** @description Unique identifier for a given Organization. */
|
|
3418
|
+
organizationId: string;
|
|
3419
|
+
parameters: definitions["v1UpdateFiatOnRampCredentialIntent"];
|
|
3420
|
+
};
|
|
3421
|
+
v1UpdateFiatOnRampCredentialResult: {
|
|
3422
|
+
/** @description Unique identifier of the Fiat On-Ramp credential that was updated */
|
|
3423
|
+
fiatOnRampCredentialId: string;
|
|
3424
|
+
};
|
|
3243
3425
|
v1UpdateOauth2CredentialIntent: {
|
|
3244
3426
|
/** @description The ID of the OAuth 2.0 credential to update */
|
|
3245
3427
|
oauth2CredentialId: string;
|
|
@@ -3859,6 +4041,24 @@ export type operations = {
|
|
|
3859
4041
|
};
|
|
3860
4042
|
};
|
|
3861
4043
|
};
|
|
4044
|
+
/** Get the status of an on ramp transaction. */
|
|
4045
|
+
PublicApiService_GetOnRampTransactionStatus: {
|
|
4046
|
+
parameters: {
|
|
4047
|
+
body: {
|
|
4048
|
+
body: definitions["v1GetOnRampTransactionStatusRequest"];
|
|
4049
|
+
};
|
|
4050
|
+
};
|
|
4051
|
+
responses: {
|
|
4052
|
+
/** A successful response. */
|
|
4053
|
+
200: {
|
|
4054
|
+
schema: definitions["v1GetOnRampTransactionStatusResponse"];
|
|
4055
|
+
};
|
|
4056
|
+
/** An unexpected error response. */
|
|
4057
|
+
default: {
|
|
4058
|
+
schema: definitions["rpcStatus"];
|
|
4059
|
+
};
|
|
4060
|
+
};
|
|
4061
|
+
};
|
|
3862
4062
|
/** Get details about an organization. */
|
|
3863
4063
|
PublicApiService_GetOrganization: {
|
|
3864
4064
|
parameters: {
|
|
@@ -4039,7 +4239,7 @@ export type operations = {
|
|
|
4039
4239
|
};
|
|
4040
4240
|
};
|
|
4041
4241
|
};
|
|
4042
|
-
/** List the
|
|
4242
|
+
/** List the App Proofs for the given activity. */
|
|
4043
4243
|
PublicApiService_GetAppProofs: {
|
|
4044
4244
|
parameters: {
|
|
4045
4245
|
body: {
|
|
@@ -4057,6 +4257,24 @@ export type operations = {
|
|
|
4057
4257
|
};
|
|
4058
4258
|
};
|
|
4059
4259
|
};
|
|
4260
|
+
/** List all fiat on ramp provider credentials within an organization. */
|
|
4261
|
+
PublicApiService_ListFiatOnRampCredentials: {
|
|
4262
|
+
parameters: {
|
|
4263
|
+
body: {
|
|
4264
|
+
body: definitions["v1ListFiatOnRampCredentialsRequest"];
|
|
4265
|
+
};
|
|
4266
|
+
};
|
|
4267
|
+
responses: {
|
|
4268
|
+
/** A successful response. */
|
|
4269
|
+
200: {
|
|
4270
|
+
schema: definitions["v1ListFiatOnRampCredentialsResponse"];
|
|
4271
|
+
};
|
|
4272
|
+
/** An unexpected error response. */
|
|
4273
|
+
default: {
|
|
4274
|
+
schema: definitions["rpcStatus"];
|
|
4275
|
+
};
|
|
4276
|
+
};
|
|
4277
|
+
};
|
|
4060
4278
|
/** List all OAuth 2.0 credentials within an organization. */
|
|
4061
4279
|
PublicApiService_ListOauth2Credentials: {
|
|
4062
4280
|
parameters: {
|
|
@@ -4345,6 +4563,24 @@ export type operations = {
|
|
|
4345
4563
|
};
|
|
4346
4564
|
};
|
|
4347
4565
|
};
|
|
4566
|
+
/** Create a fiat on ramp provider credential */
|
|
4567
|
+
PublicApiService_CreateFiatOnRampCredential: {
|
|
4568
|
+
parameters: {
|
|
4569
|
+
body: {
|
|
4570
|
+
body: definitions["v1CreateFiatOnRampCredentialRequest"];
|
|
4571
|
+
};
|
|
4572
|
+
};
|
|
4573
|
+
responses: {
|
|
4574
|
+
/** A successful response. */
|
|
4575
|
+
200: {
|
|
4576
|
+
schema: definitions["v1ActivityResponse"];
|
|
4577
|
+
};
|
|
4578
|
+
/** An unexpected error response. */
|
|
4579
|
+
default: {
|
|
4580
|
+
schema: definitions["rpcStatus"];
|
|
4581
|
+
};
|
|
4582
|
+
};
|
|
4583
|
+
};
|
|
4348
4584
|
/** Create invitations to join an existing organization. */
|
|
4349
4585
|
PublicApiService_CreateInvitations: {
|
|
4350
4586
|
parameters: {
|
|
@@ -4651,6 +4887,24 @@ export type operations = {
|
|
|
4651
4887
|
};
|
|
4652
4888
|
};
|
|
4653
4889
|
};
|
|
4890
|
+
/** Delete a fiat on ramp provider credential */
|
|
4891
|
+
PublicApiService_DeleteFiatOnRampCredential: {
|
|
4892
|
+
parameters: {
|
|
4893
|
+
body: {
|
|
4894
|
+
body: definitions["v1DeleteFiatOnRampCredentialRequest"];
|
|
4895
|
+
};
|
|
4896
|
+
};
|
|
4897
|
+
responses: {
|
|
4898
|
+
/** A successful response. */
|
|
4899
|
+
200: {
|
|
4900
|
+
schema: definitions["v1ActivityResponse"];
|
|
4901
|
+
};
|
|
4902
|
+
/** An unexpected error response. */
|
|
4903
|
+
default: {
|
|
4904
|
+
schema: definitions["rpcStatus"];
|
|
4905
|
+
};
|
|
4906
|
+
};
|
|
4907
|
+
};
|
|
4654
4908
|
/** Delete an existing invitation. */
|
|
4655
4909
|
PublicApiService_DeleteInvitation: {
|
|
4656
4910
|
parameters: {
|
|
@@ -4921,6 +5175,24 @@ export type operations = {
|
|
|
4921
5175
|
};
|
|
4922
5176
|
};
|
|
4923
5177
|
};
|
|
5178
|
+
/** Submit a transaction intent describing a transaction you would like to broadcast. */
|
|
5179
|
+
PublicApiService_EthSendTransaction: {
|
|
5180
|
+
parameters: {
|
|
5181
|
+
body: {
|
|
5182
|
+
body: definitions["v1EthSendTransactionRequest"];
|
|
5183
|
+
};
|
|
5184
|
+
};
|
|
5185
|
+
responses: {
|
|
5186
|
+
/** A successful response. */
|
|
5187
|
+
200: {
|
|
5188
|
+
schema: definitions["v1ActivityResponse"];
|
|
5189
|
+
};
|
|
5190
|
+
/** An unexpected error response. */
|
|
5191
|
+
default: {
|
|
5192
|
+
schema: definitions["rpcStatus"];
|
|
5193
|
+
};
|
|
5194
|
+
};
|
|
5195
|
+
};
|
|
4924
5196
|
/** Export a private key. */
|
|
4925
5197
|
PublicApiService_ExportPrivateKey: {
|
|
4926
5198
|
parameters: {
|
|
@@ -5353,6 +5625,24 @@ export type operations = {
|
|
|
5353
5625
|
};
|
|
5354
5626
|
};
|
|
5355
5627
|
};
|
|
5628
|
+
/** Update a fiat on ramp provider credential */
|
|
5629
|
+
PublicApiService_UpdateFiatOnRampCredential: {
|
|
5630
|
+
parameters: {
|
|
5631
|
+
body: {
|
|
5632
|
+
body: definitions["v1UpdateFiatOnRampCredentialRequest"];
|
|
5633
|
+
};
|
|
5634
|
+
};
|
|
5635
|
+
responses: {
|
|
5636
|
+
/** A successful response. */
|
|
5637
|
+
200: {
|
|
5638
|
+
schema: definitions["v1ActivityResponse"];
|
|
5639
|
+
};
|
|
5640
|
+
/** An unexpected error response. */
|
|
5641
|
+
default: {
|
|
5642
|
+
schema: definitions["rpcStatus"];
|
|
5643
|
+
};
|
|
5644
|
+
};
|
|
5645
|
+
};
|
|
5356
5646
|
/** Update an OAuth 2.0 provider credential */
|
|
5357
5647
|
PublicApiService_UpdateOauth2Credential: {
|
|
5358
5648
|
parameters: {
|