@turnkey/http 3.13.1 → 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 +12 -0
- package/dist/__generated__/services/coordinator/public/v1/public_api.client.d.ts +106 -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 +176 -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 +176 -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 +15064 -3120
- 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 +170 -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 +157 -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 +346 -4
- 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 +1 -1
|
@@ -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"];
|
|
@@ -275,6 +291,14 @@ export type paths = {
|
|
|
275
291
|
/** Authenticate a user via email. */
|
|
276
292
|
post: operations["PublicApiService_EmailAuth"];
|
|
277
293
|
};
|
|
294
|
+
"/public/v1/submit/eth_send_raw_transaction": {
|
|
295
|
+
/** Submit a raw transaction (serialized and signed) for broadcasting to the network. */
|
|
296
|
+
post: operations["PublicApiService_EthSendRawTransaction"];
|
|
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
|
+
};
|
|
278
302
|
"/public/v1/submit/export_private_key": {
|
|
279
303
|
/** Export a private key. */
|
|
280
304
|
post: operations["PublicApiService_ExportPrivateKey"];
|
|
@@ -371,6 +395,10 @@ export type paths = {
|
|
|
371
395
|
/** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
|
|
372
396
|
post: operations["PublicApiService_StampLogin"];
|
|
373
397
|
};
|
|
398
|
+
"/public/v1/submit/update_fiat_on_ramp_credential": {
|
|
399
|
+
/** Update a fiat on ramp provider credential */
|
|
400
|
+
post: operations["PublicApiService_UpdateFiatOnRampCredential"];
|
|
401
|
+
};
|
|
374
402
|
"/public/v1/submit/update_oauth2_credential": {
|
|
375
403
|
/** Update an OAuth 2.0 provider credential */
|
|
376
404
|
post: operations["PublicApiService_UpdateOauth2Credential"];
|
|
@@ -580,7 +608,7 @@ export type definitions = {
|
|
|
580
608
|
result: definitions["v1Result"];
|
|
581
609
|
/** @description A list of objects representing a particular User's approval or rejection of a Consensus request, including all relevant metadata. */
|
|
582
610
|
votes: definitions["v1Vote"][];
|
|
583
|
-
/** @description A list of
|
|
611
|
+
/** @description A list of App Proofs generated by enclaves during activity execution, providing verifiable attestations of performed operations. */
|
|
584
612
|
appProofs?: definitions["v1AppProof"][];
|
|
585
613
|
/** @description An artifact verifying a User's action. */
|
|
586
614
|
fingerprint: string;
|
|
@@ -598,7 +626,7 @@ export type definitions = {
|
|
|
598
626
|
/** @enum {string} */
|
|
599
627
|
v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
|
|
600
628
|
/** @enum {string} */
|
|
601
|
-
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";
|
|
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";
|
|
602
630
|
/** @enum {string} */
|
|
603
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";
|
|
604
632
|
v1ApiKey: {
|
|
@@ -807,6 +835,33 @@ export type definitions = {
|
|
|
807
835
|
/** @description A list of Authenticator IDs. */
|
|
808
836
|
authenticatorIds: string[];
|
|
809
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
|
+
};
|
|
810
865
|
v1CreateInvitationsIntent: {
|
|
811
866
|
/** @description A list of Invitations. */
|
|
812
867
|
invitations: definitions["v1InvitationParams"][];
|
|
@@ -1386,6 +1441,23 @@ export type definitions = {
|
|
|
1386
1441
|
/** @description Unique identifier for a given Authenticator. */
|
|
1387
1442
|
authenticatorIds: string[];
|
|
1388
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
|
+
};
|
|
1389
1461
|
v1DeleteInvitationIntent: {
|
|
1390
1462
|
/** @description Unique identifier for a given Invitation object. */
|
|
1391
1463
|
invitationId: string;
|
|
@@ -1717,6 +1789,68 @@ export type definitions = {
|
|
|
1717
1789
|
/** @description A User ID with permission to initiate authentication. */
|
|
1718
1790
|
userId: string;
|
|
1719
1791
|
};
|
|
1792
|
+
v1EthSendRawTransactionIntent: {
|
|
1793
|
+
/** @description The raw, signed transaction to be sent. */
|
|
1794
|
+
signedTransaction: string;
|
|
1795
|
+
/**
|
|
1796
|
+
* @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
|
|
1797
|
+
* @enum {string}
|
|
1798
|
+
*/
|
|
1799
|
+
caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532";
|
|
1800
|
+
};
|
|
1801
|
+
v1EthSendRawTransactionRequest: {
|
|
1802
|
+
/** @enum {string} */
|
|
1803
|
+
type: "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION";
|
|
1804
|
+
/** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
|
|
1805
|
+
timestampMs: string;
|
|
1806
|
+
/** @description Unique identifier for a given Organization. */
|
|
1807
|
+
organizationId: string;
|
|
1808
|
+
parameters: definitions["v1EthSendRawTransactionIntent"];
|
|
1809
|
+
};
|
|
1810
|
+
v1EthSendRawTransactionResult: {
|
|
1811
|
+
/** @description The transaction hash of the sent transaction */
|
|
1812
|
+
transactionHash: string;
|
|
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
|
+
};
|
|
1720
1854
|
v1ExportPrivateKeyIntent: {
|
|
1721
1855
|
/** @description Unique identifier for a given Private Key. */
|
|
1722
1856
|
privateKeyId: string;
|
|
@@ -1790,6 +1924,26 @@ export type definitions = {
|
|
|
1790
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";
|
|
1791
1925
|
/** @enum {string} */
|
|
1792
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
|
+
};
|
|
1793
1947
|
/** @enum {string} */
|
|
1794
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";
|
|
1795
1949
|
/** @enum {string} */
|
|
@@ -1911,6 +2065,18 @@ export type definitions = {
|
|
|
1911
2065
|
/** @description A list of Oauth providers. */
|
|
1912
2066
|
oauthProviders: definitions["v1OauthProvider"][];
|
|
1913
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
|
+
};
|
|
1914
2080
|
v1GetOrganizationConfigsRequest: {
|
|
1915
2081
|
/** @description Unique identifier for a given organization. */
|
|
1916
2082
|
organizationId: string;
|
|
@@ -2334,6 +2500,12 @@ export type definitions = {
|
|
|
2334
2500
|
expirationSeconds?: string;
|
|
2335
2501
|
/** @description Optional parameters for customizing emails. If not provided, the default email will be used. */
|
|
2336
2502
|
emailCustomization?: definitions["v1EmailCustomizationParams"];
|
|
2503
|
+
/** @description Optional custom email address from which to send the OTP email */
|
|
2504
|
+
sendFromEmailAddress?: string;
|
|
2505
|
+
/** @description Optional custom sender name for use with sendFromEmailAddress; if left empty, will default to 'Notifications' */
|
|
2506
|
+
sendFromEmailSenderName?: string;
|
|
2507
|
+
/** @description Optional custom email address to use as reply-to */
|
|
2508
|
+
replyToEmailAddress?: string;
|
|
2337
2509
|
};
|
|
2338
2510
|
v1InitUserEmailRecoveryRequest: {
|
|
2339
2511
|
/** @enum {string} */
|
|
@@ -2452,6 +2624,11 @@ export type definitions = {
|
|
|
2452
2624
|
oauth2AuthenticateIntent?: definitions["v1Oauth2AuthenticateIntent"];
|
|
2453
2625
|
deleteWalletAccountsIntent?: definitions["v1DeleteWalletAccountsIntent"];
|
|
2454
2626
|
deletePoliciesIntent?: definitions["v1DeletePoliciesIntent"];
|
|
2627
|
+
ethSendRawTransactionIntent?: definitions["v1EthSendRawTransactionIntent"];
|
|
2628
|
+
ethSendTransactionIntent?: definitions["v1EthSendTransactionIntent"];
|
|
2629
|
+
createFiatOnRampCredentialIntent?: definitions["v1CreateFiatOnRampCredentialIntent"];
|
|
2630
|
+
updateFiatOnRampCredentialIntent?: definitions["v1UpdateFiatOnRampCredentialIntent"];
|
|
2631
|
+
deleteFiatOnRampCredentialIntent?: definitions["v1DeleteFiatOnRampCredentialIntent"];
|
|
2455
2632
|
};
|
|
2456
2633
|
v1Invitation: {
|
|
2457
2634
|
/** @description Unique identifier for a given Invitation object. */
|
|
@@ -2485,6 +2662,13 @@ export type definitions = {
|
|
|
2485
2662
|
};
|
|
2486
2663
|
/** @enum {string} */
|
|
2487
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
|
+
};
|
|
2488
2672
|
v1ListOauth2CredentialsRequest: {
|
|
2489
2673
|
/** @description Unique identifier for a given Organization. */
|
|
2490
2674
|
organizationId: string;
|
|
@@ -2911,6 +3095,11 @@ export type definitions = {
|
|
|
2911
3095
|
oauth2AuthenticateResult?: definitions["v1Oauth2AuthenticateResult"];
|
|
2912
3096
|
deleteWalletAccountsResult?: definitions["v1DeleteWalletAccountsResult"];
|
|
2913
3097
|
deletePoliciesResult?: definitions["v1DeletePoliciesResult"];
|
|
3098
|
+
ethSendRawTransactionResult?: definitions["v1EthSendRawTransactionResult"];
|
|
3099
|
+
createFiatOnRampCredentialResult?: definitions["v1CreateFiatOnRampCredentialResult"];
|
|
3100
|
+
updateFiatOnRampCredentialResult?: definitions["v1UpdateFiatOnRampCredentialResult"];
|
|
3101
|
+
deleteFiatOnRampCredentialResult?: definitions["v1DeleteFiatOnRampCredentialResult"];
|
|
3102
|
+
ethSendTransactionResult?: definitions["v1EthSendTransactionResult"];
|
|
2914
3103
|
};
|
|
2915
3104
|
v1RootUserParams: {
|
|
2916
3105
|
/** @description Human-readable name for a User. */
|
|
@@ -3206,6 +3395,33 @@ export type definitions = {
|
|
|
3206
3395
|
/** @description Unique identifier for a given User. (representing the turnkey signer user id) */
|
|
3207
3396
|
configId?: string;
|
|
3208
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
|
+
};
|
|
3209
3425
|
v1UpdateOauth2CredentialIntent: {
|
|
3210
3426
|
/** @description The ID of the OAuth 2.0 credential to update */
|
|
3211
3427
|
oauth2CredentialId: string;
|
|
@@ -3825,6 +4041,24 @@ export type operations = {
|
|
|
3825
4041
|
};
|
|
3826
4042
|
};
|
|
3827
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
|
+
};
|
|
3828
4062
|
/** Get details about an organization. */
|
|
3829
4063
|
PublicApiService_GetOrganization: {
|
|
3830
4064
|
parameters: {
|
|
@@ -4005,7 +4239,7 @@ export type operations = {
|
|
|
4005
4239
|
};
|
|
4006
4240
|
};
|
|
4007
4241
|
};
|
|
4008
|
-
/** List the
|
|
4242
|
+
/** List the App Proofs for the given activity. */
|
|
4009
4243
|
PublicApiService_GetAppProofs: {
|
|
4010
4244
|
parameters: {
|
|
4011
4245
|
body: {
|
|
@@ -4023,6 +4257,24 @@ export type operations = {
|
|
|
4023
4257
|
};
|
|
4024
4258
|
};
|
|
4025
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
|
+
};
|
|
4026
4278
|
/** List all OAuth 2.0 credentials within an organization. */
|
|
4027
4279
|
PublicApiService_ListOauth2Credentials: {
|
|
4028
4280
|
parameters: {
|
|
@@ -4311,6 +4563,24 @@ export type operations = {
|
|
|
4311
4563
|
};
|
|
4312
4564
|
};
|
|
4313
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
|
+
};
|
|
4314
4584
|
/** Create invitations to join an existing organization. */
|
|
4315
4585
|
PublicApiService_CreateInvitations: {
|
|
4316
4586
|
parameters: {
|
|
@@ -4617,6 +4887,24 @@ export type operations = {
|
|
|
4617
4887
|
};
|
|
4618
4888
|
};
|
|
4619
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
|
+
};
|
|
4620
4908
|
/** Delete an existing invitation. */
|
|
4621
4909
|
PublicApiService_DeleteInvitation: {
|
|
4622
4910
|
parameters: {
|
|
@@ -4869,6 +5157,42 @@ export type operations = {
|
|
|
4869
5157
|
};
|
|
4870
5158
|
};
|
|
4871
5159
|
};
|
|
5160
|
+
/** Submit a raw transaction (serialized and signed) for broadcasting to the network. */
|
|
5161
|
+
PublicApiService_EthSendRawTransaction: {
|
|
5162
|
+
parameters: {
|
|
5163
|
+
body: {
|
|
5164
|
+
body: definitions["v1EthSendRawTransactionRequest"];
|
|
5165
|
+
};
|
|
5166
|
+
};
|
|
5167
|
+
responses: {
|
|
5168
|
+
/** A successful response. */
|
|
5169
|
+
200: {
|
|
5170
|
+
schema: definitions["v1ActivityResponse"];
|
|
5171
|
+
};
|
|
5172
|
+
/** An unexpected error response. */
|
|
5173
|
+
default: {
|
|
5174
|
+
schema: definitions["rpcStatus"];
|
|
5175
|
+
};
|
|
5176
|
+
};
|
|
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
|
+
};
|
|
4872
5196
|
/** Export a private key. */
|
|
4873
5197
|
PublicApiService_ExportPrivateKey: {
|
|
4874
5198
|
parameters: {
|
|
@@ -5301,6 +5625,24 @@ export type operations = {
|
|
|
5301
5625
|
};
|
|
5302
5626
|
};
|
|
5303
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
|
+
};
|
|
5304
5646
|
/** Update an OAuth 2.0 provider credential */
|
|
5305
5647
|
PublicApiService_UpdateOauth2Credential: {
|
|
5306
5648
|
parameters: {
|