@turnkey/http 3.14.0 → 3.16.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.
@@ -31,10 +31,18 @@ export type paths = {
31
31
  /** Get the boot proof for a given ephemeral key. */
32
32
  post: operations["PublicApiService_GetBootProof"];
33
33
  };
34
+ "/public/v1/query/get_gas_usage": {
35
+ /** Get gas usage and gas limits for either the parent organization or a sub-organization. */
36
+ post: operations["PublicApiService_GetGasUsage"];
37
+ };
34
38
  "/public/v1/query/get_latest_boot_proof": {
35
39
  /** Get the latest boot proof for a given enclave app name. */
36
40
  post: operations["PublicApiService_GetLatestBootProof"];
37
41
  };
42
+ "/public/v1/query/get_nonces": {
43
+ /** Get nonce values for an address on a given network. Can fetch the standard on-chain nonce and/or the gas station nonce used for sponsored transactions. */
44
+ post: operations["PublicApiService_GetNonces"];
45
+ };
38
46
  "/public/v1/query/get_oauth2_credential": {
39
47
  /** Get details about an OAuth 2.0 credential. */
40
48
  post: operations["PublicApiService_GetOauth2Credential"];
@@ -43,6 +51,10 @@ export type paths = {
43
51
  /** Get details about Oauth providers for a user. */
44
52
  post: operations["PublicApiService_GetOauthProviders"];
45
53
  };
54
+ "/public/v1/query/get_onramp_transaction_status": {
55
+ /** Get the status of an on ramp transaction. */
56
+ post: operations["PublicApiService_GetOnRampTransactionStatus"];
57
+ };
46
58
  "/public/v1/query/get_organization": {
47
59
  /** Get details about an organization. */
48
60
  post: operations["PublicApiService_GetOrganization"];
@@ -63,6 +75,10 @@ export type paths = {
63
75
  /** Get details about a private key. */
64
76
  post: operations["PublicApiService_GetPrivateKey"];
65
77
  };
78
+ "/public/v1/query/get_send_transaction_status": {
79
+ /** Get the status of a send transaction request. */
80
+ post: operations["PublicApiService_GetSendTransactionStatus"];
81
+ };
66
82
  "/public/v1/query/get_smart_contract_interface": {
67
83
  /** Get details about a smart contract interface. */
68
84
  post: operations["PublicApiService_GetSmartContractInterface"];
@@ -84,9 +100,13 @@ export type paths = {
84
100
  post: operations["PublicApiService_GetActivities"];
85
101
  };
86
102
  "/public/v1/query/list_app_proofs": {
87
- /** List the app proofs for the given activity. */
103
+ /** List the App Proofs for the given activity. */
88
104
  post: operations["PublicApiService_GetAppProofs"];
89
105
  };
106
+ "/public/v1/query/list_fiat_on_ramp_credentials": {
107
+ /** List all fiat on ramp provider credentials within an organization. */
108
+ post: operations["PublicApiService_ListFiatOnRampCredentials"];
109
+ };
90
110
  "/public/v1/query/list_oauth2_credentials": {
91
111
  /** List all OAuth 2.0 credentials within an organization. */
92
112
  post: operations["PublicApiService_ListOauth2Credentials"];
@@ -151,6 +171,10 @@ export type paths = {
151
171
  /** Create authenticators to authenticate requests to Turnkey. */
152
172
  post: operations["PublicApiService_CreateAuthenticators"];
153
173
  };
174
+ "/public/v1/submit/create_fiat_on_ramp_credential": {
175
+ /** Create a fiat on ramp provider credential */
176
+ post: operations["PublicApiService_CreateFiatOnRampCredential"];
177
+ };
154
178
  "/public/v1/submit/create_invitations": {
155
179
  /** Create invitations to join an existing organization. */
156
180
  post: operations["PublicApiService_CreateInvitations"];
@@ -219,6 +243,10 @@ export type paths = {
219
243
  /** Remove authenticators from a user. */
220
244
  post: operations["PublicApiService_DeleteAuthenticators"];
221
245
  };
246
+ "/public/v1/submit/delete_fiat_on_ramp_credential": {
247
+ /** Delete a fiat on ramp provider credential */
248
+ post: operations["PublicApiService_DeleteFiatOnRampCredential"];
249
+ };
222
250
  "/public/v1/submit/delete_invitation": {
223
251
  /** Delete an existing invitation. */
224
252
  post: operations["PublicApiService_DeleteInvitation"];
@@ -279,6 +307,10 @@ export type paths = {
279
307
  /** Submit a raw transaction (serialized and signed) for broadcasting to the network. */
280
308
  post: operations["PublicApiService_EthSendRawTransaction"];
281
309
  };
310
+ "/public/v1/submit/eth_send_transaction": {
311
+ /** Submit a transaction intent describing a transaction you would like to broadcast. */
312
+ post: operations["PublicApiService_EthSendTransaction"];
313
+ };
282
314
  "/public/v1/submit/export_private_key": {
283
315
  /** Export a private key. */
284
316
  post: operations["PublicApiService_ExportPrivateKey"];
@@ -375,6 +407,10 @@ export type paths = {
375
407
  /** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
376
408
  post: operations["PublicApiService_StampLogin"];
377
409
  };
410
+ "/public/v1/submit/update_fiat_on_ramp_credential": {
411
+ /** Update a fiat on ramp provider credential */
412
+ post: operations["PublicApiService_UpdateFiatOnRampCredential"];
413
+ };
378
414
  "/public/v1/submit/update_oauth2_credential": {
379
415
  /** Update an OAuth 2.0 provider credential */
380
416
  post: operations["PublicApiService_UpdateOauth2Credential"];
@@ -522,6 +558,26 @@ export type definitions = {
522
558
  /** @description Unique identifiers of quorum set members. */
523
559
  userIds: string[];
524
560
  };
561
+ /** @enum {string} */
562
+ externaldatav1SignatureScheme: "SIGNATURE_SCHEME_EPHEMERAL_KEY_P256";
563
+ externaldatav1SmartContractInterface: {
564
+ /** @description The Organization the Smart Contract Interface belongs to. */
565
+ organizationId: string;
566
+ /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */
567
+ smartContractInterfaceId: string;
568
+ /** @description The address corresponding to the Smart Contract or Program. */
569
+ smartContractAddress: string;
570
+ /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */
571
+ smartContractInterface: string;
572
+ /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
573
+ type: string;
574
+ /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
575
+ label: string;
576
+ /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
577
+ notes: string;
578
+ createdAt: definitions["externaldatav1Timestamp"];
579
+ updatedAt: definitions["externaldatav1Timestamp"];
580
+ };
525
581
  externaldatav1Timestamp: {
526
582
  seconds: string;
527
583
  nanos: string;
@@ -584,7 +640,7 @@ export type definitions = {
584
640
  result: definitions["v1Result"];
585
641
  /** @description A list of objects representing a particular User's approval or rejection of a Consensus request, including all relevant metadata. */
586
642
  votes: definitions["v1Vote"][];
587
- /** @description A list of app proofs generated by enclaves during activity execution, providing verifiable attestations of performed operations. */
643
+ /** @description A list of App Proofs generated by enclaves during activity execution, providing verifiable attestations of performed operations. */
588
644
  appProofs?: definitions["v1AppProof"][];
589
645
  /** @description An artifact verifying a User's action. */
590
646
  fingerprint: string;
@@ -602,7 +658,7 @@ export type definitions = {
602
658
  /** @enum {string} */
603
659
  v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
604
660
  /** @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";
661
+ 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" | "ACTIVITY_TYPE_EMAIL_AUTH_V3" | "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2" | "ACTIVITY_TYPE_INIT_OTP_AUTH_V3" | "ACTIVITY_TYPE_INIT_OTP_V2" | "ACTIVITY_TYPE_UPSERT_GAS_USAGE_CONFIG";
606
662
  /** @enum {string} */
607
663
  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
664
  v1ApiKey: {
@@ -644,7 +700,7 @@ export type definitions = {
644
700
  };
645
701
  v1AppProof: {
646
702
  /** @description Scheme of signing key. */
647
- scheme: definitions["v1SignatureScheme"];
703
+ scheme: definitions["externaldatav1SignatureScheme"];
648
704
  /** @description Ephemeral public key. */
649
705
  publicKey: string;
650
706
  /** @description JSON serialized AppProofPayload. */
@@ -664,6 +720,7 @@ export type definitions = {
664
720
  /** @description Unique identifier for a given Organization. */
665
721
  organizationId: string;
666
722
  parameters: definitions["v1ApproveActivityIntent"];
723
+ generateAppProofs?: boolean;
667
724
  };
668
725
  v1Attestation: {
669
726
  /** @description The cbor encoded then base64 url encoded id of the credential. */
@@ -740,6 +797,18 @@ export type definitions = {
740
797
  v1BootProofResponse: {
741
798
  bootProof: definitions["v1BootProof"];
742
799
  };
800
+ v1ClientSignature: {
801
+ /** @description The public component of a cryptographic key pair used to create the signature. */
802
+ publicKey: string;
803
+ /** @description The signature scheme used to generate the client signature. */
804
+ scheme: definitions["v1ClientSignatureScheme"];
805
+ /** @description The message that was signed. */
806
+ message: string;
807
+ /** @description The cryptographic signature over the message. */
808
+ signature: string;
809
+ };
810
+ /** @enum {string} */
811
+ v1ClientSignatureScheme: "CLIENT_SIGNATURE_SCHEME_API_P256";
743
812
  v1Config: {
744
813
  features?: definitions["v1Feature"][];
745
814
  quorum?: definitions["externaldatav1Quorum"];
@@ -764,6 +833,7 @@ export type definitions = {
764
833
  /** @description Unique identifier for a given Organization. */
765
834
  organizationId: string;
766
835
  parameters: definitions["v1CreateApiKeysIntentV2"];
836
+ generateAppProofs?: boolean;
767
837
  };
768
838
  v1CreateApiKeysResult: {
769
839
  /** @description A list of API Key IDs. */
@@ -781,6 +851,7 @@ export type definitions = {
781
851
  /** @description Unique identifier for a given Organization. */
782
852
  organizationId: string;
783
853
  parameters: definitions["v1CreateApiOnlyUsersIntent"];
854
+ generateAppProofs?: boolean;
784
855
  };
785
856
  v1CreateApiOnlyUsersResult: {
786
857
  /** @description A list of API-only User IDs. */
@@ -806,11 +877,40 @@ export type definitions = {
806
877
  /** @description Unique identifier for a given Organization. */
807
878
  organizationId: string;
808
879
  parameters: definitions["v1CreateAuthenticatorsIntentV2"];
880
+ generateAppProofs?: boolean;
809
881
  };
810
882
  v1CreateAuthenticatorsResult: {
811
883
  /** @description A list of Authenticator IDs. */
812
884
  authenticatorIds: string[];
813
885
  };
886
+ v1CreateFiatOnRampCredentialIntent: {
887
+ /** @description The fiat on-ramp provider */
888
+ onrampProvider: definitions["v1FiatOnRampProvider"];
889
+ /** @description Project ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier */
890
+ projectId?: string;
891
+ /** @description Publishable API key for the on-ramp provider */
892
+ publishableApiKey: string;
893
+ /** @description Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key */
894
+ encryptedSecretApiKey: string;
895
+ /** @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. */
896
+ encryptedPrivateApiKey?: string;
897
+ /** @description If the on-ramp credential is a sandbox credential */
898
+ sandboxMode?: boolean;
899
+ };
900
+ v1CreateFiatOnRampCredentialRequest: {
901
+ /** @enum {string} */
902
+ type: "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL";
903
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
904
+ timestampMs: string;
905
+ /** @description Unique identifier for a given Organization. */
906
+ organizationId: string;
907
+ parameters: definitions["v1CreateFiatOnRampCredentialIntent"];
908
+ generateAppProofs?: boolean;
909
+ };
910
+ v1CreateFiatOnRampCredentialResult: {
911
+ /** @description Unique identifier of the Fiat On-Ramp credential that was created */
912
+ fiatOnRampCredentialId: string;
913
+ };
814
914
  v1CreateInvitationsIntent: {
815
915
  /** @description A list of Invitations. */
816
916
  invitations: definitions["v1InvitationParams"][];
@@ -823,6 +923,7 @@ export type definitions = {
823
923
  /** @description Unique identifier for a given Organization. */
824
924
  organizationId: string;
825
925
  parameters: definitions["v1CreateInvitationsIntent"];
926
+ generateAppProofs?: boolean;
826
927
  };
827
928
  v1CreateInvitationsResult: {
828
929
  /** @description A list of Invitation IDs */
@@ -844,6 +945,7 @@ export type definitions = {
844
945
  /** @description Unique identifier for a given Organization. */
845
946
  organizationId: string;
846
947
  parameters: definitions["v1CreateOauth2CredentialIntent"];
948
+ generateAppProofs?: boolean;
847
949
  };
848
950
  v1CreateOauth2CredentialResult: {
849
951
  /** @description Unique identifier of the OAuth 2.0 credential that was created */
@@ -863,6 +965,7 @@ export type definitions = {
863
965
  /** @description Unique identifier for a given Organization. */
864
966
  organizationId: string;
865
967
  parameters: definitions["v1CreateOauthProvidersIntent"];
968
+ generateAppProofs?: boolean;
866
969
  };
867
970
  v1CreateOauthProvidersResult: {
868
971
  /** @description A list of unique identifiers for Oauth Providers */
@@ -904,6 +1007,7 @@ export type definitions = {
904
1007
  /** @description Unique identifier for a given Organization. */
905
1008
  organizationId: string;
906
1009
  parameters: definitions["v1CreatePoliciesIntent"];
1010
+ generateAppProofs?: boolean;
907
1011
  };
908
1012
  v1CreatePoliciesResult: {
909
1013
  /** @description A list of unique identifiers for the created policies. */
@@ -936,7 +1040,8 @@ export type definitions = {
936
1040
  condition?: string;
937
1041
  /** @description The consensus expression that triggers the Effect */
938
1042
  consensus?: string;
939
- notes?: string;
1043
+ /** @description Notes for a Policy. */
1044
+ notes: string;
940
1045
  };
941
1046
  v1CreatePolicyRequest: {
942
1047
  /** @enum {string} */
@@ -946,6 +1051,7 @@ export type definitions = {
946
1051
  /** @description Unique identifier for a given Organization. */
947
1052
  organizationId: string;
948
1053
  parameters: definitions["v1CreatePolicyIntentV3"];
1054
+ generateAppProofs?: boolean;
949
1055
  };
950
1056
  v1CreatePolicyResult: {
951
1057
  /** @description Unique identifier for a given Policy. */
@@ -965,6 +1071,7 @@ export type definitions = {
965
1071
  /** @description Unique identifier for a given Organization. */
966
1072
  organizationId: string;
967
1073
  parameters: definitions["v1CreatePrivateKeyTagIntent"];
1074
+ generateAppProofs?: boolean;
968
1075
  };
969
1076
  v1CreatePrivateKeyTagResult: {
970
1077
  /** @description Unique identifier for a given Private Key Tag. */
@@ -988,6 +1095,7 @@ export type definitions = {
988
1095
  /** @description Unique identifier for a given Organization. */
989
1096
  organizationId: string;
990
1097
  parameters: definitions["v1CreatePrivateKeysIntentV2"];
1098
+ generateAppProofs?: boolean;
991
1099
  };
992
1100
  v1CreatePrivateKeysResult: {
993
1101
  /** @description A list of Private Key IDs. */
@@ -1008,6 +1116,7 @@ export type definitions = {
1008
1116
  /** @description Unique identifier for a given Organization. */
1009
1117
  organizationId: string;
1010
1118
  parameters: definitions["v1CreateReadOnlySessionIntent"];
1119
+ generateAppProofs?: boolean;
1011
1120
  };
1012
1121
  v1CreateReadOnlySessionResult: {
1013
1122
  /** @description Unique identifier for a given Organization. If the request is being made by a user and their Sub-Organization ID is unknown, this can be the Parent Organization ID. However, using the Sub-Organization ID is preferred due to performance reasons. */
@@ -1056,6 +1165,7 @@ export type definitions = {
1056
1165
  /** @description Unique identifier for a given Organization. */
1057
1166
  organizationId: string;
1058
1167
  parameters: definitions["v1CreateReadWriteSessionIntentV2"];
1168
+ generateAppProofs?: boolean;
1059
1169
  };
1060
1170
  v1CreateReadWriteSessionResult: {
1061
1171
  /** @description Unique identifier for a given Organization. If the request is being made by a user and their Sub-Organization ID is unknown, this can be the Parent Organization ID. However, using the Sub-Organization ID is preferred due to performance reasons. */
@@ -1088,7 +1198,7 @@ export type definitions = {
1088
1198
  v1CreateSmartContractInterfaceIntent: {
1089
1199
  /** @description Corresponding contract address or program ID */
1090
1200
  smartContractAddress: string;
1091
- /** @description ABI/IDL as a JSON string */
1201
+ /** @description ABI/IDL as a JSON string. Limited to 400kb */
1092
1202
  smartContractInterface: string;
1093
1203
  type: definitions["v1SmartContractInterfaceType"];
1094
1204
  /** @description Human-readable name for a Smart Contract Interface. */
@@ -1104,6 +1214,7 @@ export type definitions = {
1104
1214
  /** @description Unique identifier for a given Organization. */
1105
1215
  organizationId: string;
1106
1216
  parameters: definitions["v1CreateSmartContractInterfaceIntent"];
1217
+ generateAppProofs?: boolean;
1107
1218
  };
1108
1219
  v1CreateSmartContractInterfaceResult: {
1109
1220
  /** @description The ID of the created Smart Contract Interface. */
@@ -1212,6 +1323,8 @@ export type definitions = {
1212
1323
  disableOtpEmailAuth?: boolean;
1213
1324
  /** @description Signed JWT containing a unique id, expiry, verification type, contact */
1214
1325
  verificationToken?: string;
1326
+ /** @description Optional signature proving authorization for this sub-organization creation. The signature is over the verification token ID and the root user parameters for the root user associated with the verification token. Only required if a public key was provided during the verification step. */
1327
+ clientSignature?: definitions["v1ClientSignature"];
1215
1328
  };
1216
1329
  v1CreateSubOrganizationRequest: {
1217
1330
  /** @enum {string} */
@@ -1221,6 +1334,7 @@ export type definitions = {
1221
1334
  /** @description Unique identifier for a given Organization. */
1222
1335
  organizationId: string;
1223
1336
  parameters: definitions["v1CreateSubOrganizationIntentV7"];
1337
+ generateAppProofs?: boolean;
1224
1338
  };
1225
1339
  v1CreateSubOrganizationResult: {
1226
1340
  subOrganizationId: string;
@@ -1266,6 +1380,7 @@ export type definitions = {
1266
1380
  /** @description Unique identifier for a given Organization. */
1267
1381
  organizationId: string;
1268
1382
  parameters: definitions["v1CreateUserTagIntent"];
1383
+ generateAppProofs?: boolean;
1269
1384
  };
1270
1385
  v1CreateUserTagResult: {
1271
1386
  /** @description Unique identifier for a given User Tag. */
@@ -1293,6 +1408,7 @@ export type definitions = {
1293
1408
  /** @description Unique identifier for a given Organization. */
1294
1409
  organizationId: string;
1295
1410
  parameters: definitions["v1CreateUsersIntentV3"];
1411
+ generateAppProofs?: boolean;
1296
1412
  };
1297
1413
  v1CreateUsersResult: {
1298
1414
  /** @description A list of User IDs. */
@@ -1314,6 +1430,7 @@ export type definitions = {
1314
1430
  /** @description Unique identifier for a given Organization. */
1315
1431
  organizationId: string;
1316
1432
  parameters: definitions["v1CreateWalletAccountsIntent"];
1433
+ generateAppProofs?: boolean;
1317
1434
  };
1318
1435
  v1CreateWalletAccountsResult: {
1319
1436
  /** @description A list of derived addresses. */
@@ -1338,6 +1455,7 @@ export type definitions = {
1338
1455
  /** @description Unique identifier for a given Organization. */
1339
1456
  organizationId: string;
1340
1457
  parameters: definitions["v1CreateWalletIntent"];
1458
+ generateAppProofs?: boolean;
1341
1459
  };
1342
1460
  v1CreateWalletResult: {
1343
1461
  /** @description Unique identifier for a Wallet. */
@@ -1366,6 +1484,7 @@ export type definitions = {
1366
1484
  /** @description Unique identifier for a given Organization. */
1367
1485
  organizationId: string;
1368
1486
  parameters: definitions["v1DeleteApiKeysIntent"];
1487
+ generateAppProofs?: boolean;
1369
1488
  };
1370
1489
  v1DeleteApiKeysResult: {
1371
1490
  /** @description A list of API Key IDs. */
@@ -1385,11 +1504,30 @@ export type definitions = {
1385
1504
  /** @description Unique identifier for a given Organization. */
1386
1505
  organizationId: string;
1387
1506
  parameters: definitions["v1DeleteAuthenticatorsIntent"];
1507
+ generateAppProofs?: boolean;
1388
1508
  };
1389
1509
  v1DeleteAuthenticatorsResult: {
1390
1510
  /** @description Unique identifier for a given Authenticator. */
1391
1511
  authenticatorIds: string[];
1392
1512
  };
1513
+ v1DeleteFiatOnRampCredentialIntent: {
1514
+ /** @description The ID of the fiat on-ramp credential to delete */
1515
+ fiatOnrampCredentialId: string;
1516
+ };
1517
+ v1DeleteFiatOnRampCredentialRequest: {
1518
+ /** @enum {string} */
1519
+ type: "ACTIVITY_TYPE_DELETE_FIAT_ON_RAMP_CREDENTIAL";
1520
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1521
+ timestampMs: string;
1522
+ /** @description Unique identifier for a given Organization. */
1523
+ organizationId: string;
1524
+ parameters: definitions["v1DeleteFiatOnRampCredentialIntent"];
1525
+ generateAppProofs?: boolean;
1526
+ };
1527
+ v1DeleteFiatOnRampCredentialResult: {
1528
+ /** @description Unique identifier of the Fiat On-Ramp credential that was deleted */
1529
+ fiatOnRampCredentialId: string;
1530
+ };
1393
1531
  v1DeleteInvitationIntent: {
1394
1532
  /** @description Unique identifier for a given Invitation object. */
1395
1533
  invitationId: string;
@@ -1402,6 +1540,7 @@ export type definitions = {
1402
1540
  /** @description Unique identifier for a given Organization. */
1403
1541
  organizationId: string;
1404
1542
  parameters: definitions["v1DeleteInvitationIntent"];
1543
+ generateAppProofs?: boolean;
1405
1544
  };
1406
1545
  v1DeleteInvitationResult: {
1407
1546
  /** @description Unique identifier for a given Invitation. */
@@ -1419,6 +1558,7 @@ export type definitions = {
1419
1558
  /** @description Unique identifier for a given Organization. */
1420
1559
  organizationId: string;
1421
1560
  parameters: definitions["v1DeleteOauth2CredentialIntent"];
1561
+ generateAppProofs?: boolean;
1422
1562
  };
1423
1563
  v1DeleteOauth2CredentialResult: {
1424
1564
  /** @description Unique identifier of the OAuth 2.0 credential that was deleted */
@@ -1438,6 +1578,7 @@ export type definitions = {
1438
1578
  /** @description Unique identifier for a given Organization. */
1439
1579
  organizationId: string;
1440
1580
  parameters: definitions["v1DeleteOauthProvidersIntent"];
1581
+ generateAppProofs?: boolean;
1441
1582
  };
1442
1583
  v1DeleteOauthProvidersResult: {
1443
1584
  /** @description A list of unique identifiers for Oauth Providers */
@@ -1463,6 +1604,7 @@ export type definitions = {
1463
1604
  /** @description Unique identifier for a given Organization. */
1464
1605
  organizationId: string;
1465
1606
  parameters: definitions["v1DeletePoliciesIntent"];
1607
+ generateAppProofs?: boolean;
1466
1608
  };
1467
1609
  v1DeletePoliciesResult: {
1468
1610
  /** @description A list of unique identifiers for the deleted policies. */
@@ -1480,6 +1622,7 @@ export type definitions = {
1480
1622
  /** @description Unique identifier for a given Organization. */
1481
1623
  organizationId: string;
1482
1624
  parameters: definitions["v1DeletePolicyIntent"];
1625
+ generateAppProofs?: boolean;
1483
1626
  };
1484
1627
  v1DeletePolicyResult: {
1485
1628
  /** @description Unique identifier for a given Policy. */
@@ -1497,6 +1640,7 @@ export type definitions = {
1497
1640
  /** @description Unique identifier for a given Organization. */
1498
1641
  organizationId: string;
1499
1642
  parameters: definitions["v1DeletePrivateKeyTagsIntent"];
1643
+ generateAppProofs?: boolean;
1500
1644
  };
1501
1645
  v1DeletePrivateKeyTagsResult: {
1502
1646
  /** @description A list of Private Key Tag IDs. */
@@ -1518,6 +1662,7 @@ export type definitions = {
1518
1662
  /** @description Unique identifier for a given Organization. */
1519
1663
  organizationId: string;
1520
1664
  parameters: definitions["v1DeletePrivateKeysIntent"];
1665
+ generateAppProofs?: boolean;
1521
1666
  };
1522
1667
  v1DeletePrivateKeysResult: {
1523
1668
  /** @description A list of private key unique identifiers that were removed */
@@ -1535,6 +1680,7 @@ export type definitions = {
1535
1680
  /** @description Unique identifier for a given Organization. */
1536
1681
  organizationId: string;
1537
1682
  parameters: definitions["v1DeleteSmartContractInterfaceIntent"];
1683
+ generateAppProofs?: boolean;
1538
1684
  };
1539
1685
  v1DeleteSmartContractInterfaceResult: {
1540
1686
  /** @description The ID of the deleted Smart Contract Interface. */
@@ -1552,6 +1698,7 @@ export type definitions = {
1552
1698
  /** @description Unique identifier for a given Organization. */
1553
1699
  organizationId: string;
1554
1700
  parameters: definitions["v1DeleteSubOrganizationIntent"];
1701
+ generateAppProofs?: boolean;
1555
1702
  };
1556
1703
  v1DeleteSubOrganizationResult: {
1557
1704
  /** @description Unique identifier of the sub organization that was removed */
@@ -1569,6 +1716,7 @@ export type definitions = {
1569
1716
  /** @description Unique identifier for a given Organization. */
1570
1717
  organizationId: string;
1571
1718
  parameters: definitions["v1DeleteUserTagsIntent"];
1719
+ generateAppProofs?: boolean;
1572
1720
  };
1573
1721
  v1DeleteUserTagsResult: {
1574
1722
  /** @description A list of User Tag IDs. */
@@ -1588,6 +1736,7 @@ export type definitions = {
1588
1736
  /** @description Unique identifier for a given Organization. */
1589
1737
  organizationId: string;
1590
1738
  parameters: definitions["v1DeleteUsersIntent"];
1739
+ generateAppProofs?: boolean;
1591
1740
  };
1592
1741
  v1DeleteUsersResult: {
1593
1742
  /** @description A list of User IDs. */
@@ -1607,6 +1756,7 @@ export type definitions = {
1607
1756
  /** @description Unique identifier for a given Organization. */
1608
1757
  organizationId: string;
1609
1758
  parameters: definitions["v1DeleteWalletAccountsIntent"];
1759
+ generateAppProofs?: boolean;
1610
1760
  };
1611
1761
  v1DeleteWalletAccountsResult: {
1612
1762
  /** @description A list of wallet account unique identifiers that were removed */
@@ -1626,6 +1776,7 @@ export type definitions = {
1626
1776
  /** @description Unique identifier for a given Organization. */
1627
1777
  organizationId: string;
1628
1778
  parameters: definitions["v1DeleteWalletsIntent"];
1779
+ generateAppProofs?: boolean;
1629
1780
  };
1630
1781
  v1DeleteWalletsResult: {
1631
1782
  /** @description A list of wallet unique identifiers that were removed */
@@ -1647,6 +1798,18 @@ export type definitions = {
1647
1798
  };
1648
1799
  /** @enum {string} */
1649
1800
  v1Effect: "EFFECT_ALLOW" | "EFFECT_DENY";
1801
+ v1EmailAuthCustomizationParams: {
1802
+ /** @description The name of the application. This field is required and will be used in email notifications if an email template is not provided. */
1803
+ appName: string;
1804
+ /** @description A URL pointing to a logo in PNG format. Note this logo will be resized to fit into 340px x 124px. */
1805
+ logoUrl?: string;
1806
+ /** @description A template for the URL to be used in a magic link button, e.g. `https://dapp.xyz/%s`. The auth bundle will be interpolated into the `%s`. */
1807
+ magicLinkTemplate?: string;
1808
+ /** @description JSON object containing key/value pairs to be used with custom templates. */
1809
+ templateVariables?: string;
1810
+ /** @description Unique identifier for a given Email Template. If not specified, the default is the most recent Email Template. */
1811
+ templateId?: string;
1812
+ };
1650
1813
  v1EmailAuthIntent: {
1651
1814
  /** @description Email of the authenticating user. */
1652
1815
  email: string;
@@ -1687,14 +1850,35 @@ export type definitions = {
1687
1850
  /** @description Optional custom email address to use as reply-to */
1688
1851
  replyToEmailAddress?: string;
1689
1852
  };
1853
+ v1EmailAuthIntentV3: {
1854
+ /** @description Email of the authenticating user. */
1855
+ email: string;
1856
+ /** @description Client-side public key generated by the user, to which the email auth bundle (credentials) will be encrypted. */
1857
+ targetPublicKey: string;
1858
+ /** @description Optional human-readable name for an API Key. If none provided, default to Email Auth - <Timestamp> */
1859
+ apiKeyName?: string;
1860
+ /** @description Expiration window (in seconds) indicating how long the API key is valid for. If not provided, a default of 15 minutes will be used. */
1861
+ expirationSeconds?: string;
1862
+ /** @description Parameters for customizing emails. If not provided, the default email will be used. Note that app_name is required. */
1863
+ emailCustomization: definitions["v1EmailAuthCustomizationParams"];
1864
+ /** @description Invalidate all other previously generated Email Auth API keys */
1865
+ invalidateExisting?: boolean;
1866
+ /** @description Optional custom email address from which to send the email */
1867
+ sendFromEmailAddress?: string;
1868
+ /** @description Optional custom sender name for use with sendFromEmailAddress; if left empty, will default to 'Notifications' */
1869
+ sendFromEmailSenderName?: string;
1870
+ /** @description Optional custom email address to use as reply-to */
1871
+ replyToEmailAddress?: string;
1872
+ };
1690
1873
  v1EmailAuthRequest: {
1691
1874
  /** @enum {string} */
1692
- type: "ACTIVITY_TYPE_EMAIL_AUTH_V2";
1875
+ type: "ACTIVITY_TYPE_EMAIL_AUTH_V3";
1693
1876
  /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1694
1877
  timestampMs: string;
1695
1878
  /** @description Unique identifier for a given Organization. */
1696
1879
  organizationId: string;
1697
- parameters: definitions["v1EmailAuthIntentV2"];
1880
+ parameters: definitions["v1EmailAuthIntentV3"];
1881
+ generateAppProofs?: boolean;
1698
1882
  };
1699
1883
  v1EmailAuthResult: {
1700
1884
  /** @description Unique identifier for the authenticating User. */
@@ -1714,6 +1898,16 @@ export type definitions = {
1714
1898
  /** @description Unique identifier for a given Email Template. If not specified, the default is the most recent Email Template. */
1715
1899
  templateId?: string;
1716
1900
  };
1901
+ v1EmailCustomizationParamsV2: {
1902
+ /** @description A URL pointing to a logo in PNG format. Note this logo will be resized to fit into 340px x 124px. */
1903
+ logoUrl?: string;
1904
+ /** @description A template for the URL to be used in a magic link button, e.g. `https://dapp.xyz/%s`. The auth bundle will be interpolated into the `%s`. */
1905
+ magicLinkTemplate?: string;
1906
+ /** @description JSON object containing key/value pairs to be used with custom templates. */
1907
+ templateVariables?: string;
1908
+ /** @description Unique identifier for a given Email Template. If not specified, the default is the most recent Email Template. */
1909
+ templateId?: string;
1910
+ };
1717
1911
  v1EnableAuthProxyIntent: {
1718
1912
  [key: string]: unknown;
1719
1913
  };
@@ -1725,10 +1919,10 @@ export type definitions = {
1725
1919
  /** @description The raw, signed transaction to be sent. */
1726
1920
  signedTransaction: string;
1727
1921
  /**
1728
- * @description The CAIP-2 chain ID.
1922
+ * @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
1729
1923
  * @enum {string}
1730
1924
  */
1731
- chainId: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532";
1925
+ caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532";
1732
1926
  };
1733
1927
  v1EthSendRawTransactionRequest: {
1734
1928
  /** @enum {string} */
@@ -1738,11 +1932,57 @@ export type definitions = {
1738
1932
  /** @description Unique identifier for a given Organization. */
1739
1933
  organizationId: string;
1740
1934
  parameters: definitions["v1EthSendRawTransactionIntent"];
1935
+ generateAppProofs?: boolean;
1741
1936
  };
1742
1937
  v1EthSendRawTransactionResult: {
1743
1938
  /** @description The transaction hash of the sent transaction */
1744
1939
  transactionHash: string;
1745
1940
  };
1941
+ v1EthSendTransactionIntent: {
1942
+ /** @description A wallet or private key address to sign with. This does not support private key IDs. */
1943
+ from: string;
1944
+ /** @description Whether to sponsor this transaction via Gas Station. */
1945
+ sponsor?: boolean;
1946
+ /**
1947
+ * @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
1948
+ * @enum {string}
1949
+ */
1950
+ caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532" | "eip155:137" | "eip155:80002";
1951
+ /** @description Recipient address as a hex string with 0x prefix. */
1952
+ to: string;
1953
+ /** @description Amount of native asset to send in wei. */
1954
+ value?: string;
1955
+ /** @description Hex-encoded call data for contract interactions. */
1956
+ data?: string;
1957
+ /** @description Transaction nonce, for EIP-1559 and Turnkey Gas Station authorizations. */
1958
+ nonce?: string;
1959
+ /** @description Maximum amount of gas to use for this transaction, for EIP-1559 transactions. */
1960
+ gasLimit?: string;
1961
+ /** @description Maximum total fee per gas unit (base fee + priority fee) in wei. Required for non-sponsored (EIP-1559) transactions. Not used for sponsored transactions. */
1962
+ maxFeePerGas?: string;
1963
+ /** @description Maximum priority fee (tip) per gas unit in wei. Required for non-sponsored (EIP-1559) transactions. Not used for sponsored transactions. */
1964
+ maxPriorityFeePerGas?: string;
1965
+ /** @description The gas station delegate contract nonce. Only used when sponsor=true. Include this if you want maximal security posture. */
1966
+ gasStationNonce?: string;
1967
+ };
1968
+ v1EthSendTransactionRequest: {
1969
+ /** @enum {string} */
1970
+ type: "ACTIVITY_TYPE_ETH_SEND_TRANSACTION";
1971
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1972
+ timestampMs: string;
1973
+ /** @description Unique identifier for a given Organization. */
1974
+ organizationId: string;
1975
+ parameters: definitions["v1EthSendTransactionIntent"];
1976
+ generateAppProofs?: boolean;
1977
+ };
1978
+ v1EthSendTransactionResult: {
1979
+ /** @description The send_transaction_status ID associated with the transaction submission for sponsored transactions */
1980
+ sendTransactionStatusId: string;
1981
+ };
1982
+ v1EthSendTransactionStatus: {
1983
+ /** @description The Ethereum transaction hash, if available. */
1984
+ txHash?: string;
1985
+ };
1746
1986
  v1ExportPrivateKeyIntent: {
1747
1987
  /** @description Unique identifier for a given Private Key. */
1748
1988
  privateKeyId: string;
@@ -1757,6 +1997,7 @@ export type definitions = {
1757
1997
  /** @description Unique identifier for a given Organization. */
1758
1998
  organizationId: string;
1759
1999
  parameters: definitions["v1ExportPrivateKeyIntent"];
2000
+ generateAppProofs?: boolean;
1760
2001
  };
1761
2002
  v1ExportPrivateKeyResult: {
1762
2003
  /** @description Unique identifier for a given Private Key. */
@@ -1778,6 +2019,7 @@ export type definitions = {
1778
2019
  /** @description Unique identifier for a given Organization. */
1779
2020
  organizationId: string;
1780
2021
  parameters: definitions["v1ExportWalletAccountIntent"];
2022
+ generateAppProofs?: boolean;
1781
2023
  };
1782
2024
  v1ExportWalletAccountResult: {
1783
2025
  /** @description Address to identify Wallet Account. */
@@ -1801,6 +2043,7 @@ export type definitions = {
1801
2043
  /** @description Unique identifier for a given Organization. */
1802
2044
  organizationId: string;
1803
2045
  parameters: definitions["v1ExportWalletIntent"];
2046
+ generateAppProofs?: boolean;
1804
2047
  };
1805
2048
  v1ExportWalletResult: {
1806
2049
  /** @description Unique identifier for a given Wallet. */
@@ -1816,6 +2059,26 @@ export type definitions = {
1816
2059
  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
2060
  /** @enum {string} */
1818
2061
  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";
2062
+ v1FiatOnRampCredential: {
2063
+ /** @description Unique identifier for a given Fiat On-Ramp Credential. */
2064
+ fiatOnrampCredentialId: string;
2065
+ /** @description Unique identifier for an Organization. */
2066
+ organizationId: string;
2067
+ /** @description The fiat on-ramp provider. */
2068
+ onrampProvider: definitions["v1FiatOnRampProvider"];
2069
+ /** @description Project ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier. */
2070
+ projectId?: string;
2071
+ /** @description Publishable API key for the on-ramp provider. */
2072
+ publishableApiKey: string;
2073
+ /** @description Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key. */
2074
+ encryptedSecretApiKey: string;
2075
+ /** @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. */
2076
+ encryptedPrivateApiKey?: string;
2077
+ /** @description If the on-ramp credential is a sandbox credential. */
2078
+ sandboxMode?: boolean;
2079
+ createdAt: definitions["externaldatav1Timestamp"];
2080
+ updatedAt: definitions["externaldatav1Timestamp"];
2081
+ };
1819
2082
  /** @enum {string} */
1820
2083
  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
2084
  /** @enum {string} */
@@ -1912,12 +2175,51 @@ export type definitions = {
1912
2175
  /** @description Hex encoded ephemeral public key. */
1913
2176
  ephemeralKey: string;
1914
2177
  };
2178
+ v1GetGasUsageRequest: {
2179
+ /** @description Unique identifier for a given Organization. */
2180
+ organizationId: string;
2181
+ };
2182
+ v1GetGasUsageResponse: {
2183
+ /**
2184
+ * Format: int32
2185
+ * @description The window duration (in minutes) for the organization or sub-organization.
2186
+ */
2187
+ windowDurationMinutes: number;
2188
+ /** @description The window limit (in USD) for the organization or sub-organization. */
2189
+ windowLimitUsd: string;
2190
+ /** @description The total gas usage (in USD) of all sponsored transactions processed over the last `window_duration_minutes` */
2191
+ usageUsd: string;
2192
+ };
1915
2193
  v1GetLatestBootProofRequest: {
1916
2194
  /** @description Unique identifier for a given Organization. */
1917
2195
  organizationId: string;
1918
2196
  /** @description Name of enclave app. */
1919
2197
  appName: string;
1920
2198
  };
2199
+ v1GetNoncesRequest: {
2200
+ /** @description Unique identifier for a given Organization. */
2201
+ organizationId: string;
2202
+ /** @description The Ethereum address to query nonces for. */
2203
+ address: string;
2204
+ /** @description The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet). */
2205
+ caip2: string;
2206
+ /** @description Whether to fetch the standard on-chain nonce. */
2207
+ nonce?: boolean;
2208
+ /** @description Whether to fetch the gas station nonce used for sponsored transactions. */
2209
+ gasStationNonce?: boolean;
2210
+ };
2211
+ v1GetNoncesResponse: {
2212
+ /**
2213
+ * Format: uint64
2214
+ * @description The standard on-chain nonce for the address, if requested.
2215
+ */
2216
+ nonce?: string;
2217
+ /**
2218
+ * Format: uint64
2219
+ * @description The gas station nonce for sponsored transactions, if requested.
2220
+ */
2221
+ gasStationNonce?: string;
2222
+ };
1921
2223
  v1GetOauth2CredentialRequest: {
1922
2224
  /** @description Unique identifier for a given Organization. */
1923
2225
  organizationId: string;
@@ -1937,6 +2239,18 @@ export type definitions = {
1937
2239
  /** @description A list of Oauth providers. */
1938
2240
  oauthProviders: definitions["v1OauthProvider"][];
1939
2241
  };
2242
+ v1GetOnRampTransactionStatusRequest: {
2243
+ /** @description Unique identifier for a given organization. */
2244
+ organizationId: string;
2245
+ /** @description The unique identifier for the fiat on ramp transaction. */
2246
+ transactionId: string;
2247
+ /** @description Optional flag to specify if the transaction status should be refreshed from the fiat on ramp provider. Default = false. */
2248
+ refresh?: boolean;
2249
+ };
2250
+ v1GetOnRampTransactionStatusResponse: {
2251
+ /** @description The status of the fiat on ramp transaction. */
2252
+ transactionStatus: string;
2253
+ };
1940
2254
  v1GetOrganizationConfigsRequest: {
1941
2255
  /** @description Unique identifier for a given organization. */
1942
2256
  organizationId: string;
@@ -1998,6 +2312,20 @@ export type definitions = {
1998
2312
  /** @description A list of private keys. */
1999
2313
  privateKeys: definitions["v1PrivateKey"][];
2000
2314
  };
2315
+ v1GetSendTransactionStatusRequest: {
2316
+ /** @description Unique identifier for a given organization. */
2317
+ organizationId: string;
2318
+ /** @description The unique identifier of a send transaction request. */
2319
+ sendTransactionStatusId: string;
2320
+ };
2321
+ v1GetSendTransactionStatusResponse: {
2322
+ /** @description The current status of the send transaction. */
2323
+ txStatus: string;
2324
+ /** @description Ethereum-specific transaction status. */
2325
+ eth?: definitions["v1EthSendTransactionStatus"];
2326
+ /** @description The error encountered when broadcasting or confirming the transaction, if any. */
2327
+ txError?: string;
2328
+ };
2001
2329
  v1GetSmartContractInterfaceRequest: {
2002
2330
  /** @description Unique identifier for a given organization. */
2003
2331
  organizationId: string;
@@ -2006,7 +2334,7 @@ export type definitions = {
2006
2334
  };
2007
2335
  v1GetSmartContractInterfaceResponse: {
2008
2336
  /** @description Object to be used in conjunction with policies to guard transaction signing. */
2009
- smartContractInterface: definitions["v1SmartContractInterface"];
2337
+ smartContractInterface: definitions["externaldatav1SmartContractInterface"];
2010
2338
  };
2011
2339
  v1GetSmartContractInterfacesRequest: {
2012
2340
  /** @description Unique identifier for a given organization. */
@@ -2014,7 +2342,7 @@ export type definitions = {
2014
2342
  };
2015
2343
  v1GetSmartContractInterfacesResponse: {
2016
2344
  /** @description A list of smart contract interfaces. */
2017
- smartContractInterfaces: definitions["v1SmartContractInterface"][];
2345
+ smartContractInterfaces: definitions["externaldatav1SmartContractInterface"][];
2018
2346
  };
2019
2347
  v1GetSubOrgIdsRequest: {
2020
2348
  /** @description Unique identifier for the parent organization. This is used to find sub-organizations within it. */
@@ -2144,6 +2472,7 @@ export type definitions = {
2144
2472
  /** @description Unique identifier for a given Organization. */
2145
2473
  organizationId: string;
2146
2474
  parameters: definitions["v1ImportPrivateKeyIntent"];
2475
+ generateAppProofs?: boolean;
2147
2476
  };
2148
2477
  v1ImportPrivateKeyResult: {
2149
2478
  /** @description Unique identifier for a Private Key. */
@@ -2169,6 +2498,7 @@ export type definitions = {
2169
2498
  /** @description Unique identifier for a given Organization. */
2170
2499
  organizationId: string;
2171
2500
  parameters: definitions["v1ImportWalletIntent"];
2501
+ generateAppProofs?: boolean;
2172
2502
  };
2173
2503
  v1ImportWalletResult: {
2174
2504
  /** @description Unique identifier for a Wallet. */
@@ -2208,6 +2538,7 @@ export type definitions = {
2208
2538
  /** @description Unique identifier for a given Organization. */
2209
2539
  organizationId: string;
2210
2540
  parameters: definitions["v1InitFiatOnRampIntent"];
2541
+ generateAppProofs?: boolean;
2211
2542
  };
2212
2543
  v1InitFiatOnRampResult: {
2213
2544
  /** @description Unique URL for a given fiat on-ramp flow. */
@@ -2229,6 +2560,7 @@ export type definitions = {
2229
2560
  /** @description Unique identifier for a given Organization. */
2230
2561
  organizationId: string;
2231
2562
  parameters: definitions["v1InitImportPrivateKeyIntent"];
2563
+ generateAppProofs?: boolean;
2232
2564
  };
2233
2565
  v1InitImportPrivateKeyResult: {
2234
2566
  /** @description Import bundle containing a public key and signature to use for importing client data. */
@@ -2246,6 +2578,7 @@ export type definitions = {
2246
2578
  /** @description Unique identifier for a given Organization. */
2247
2579
  organizationId: string;
2248
2580
  parameters: definitions["v1InitImportWalletIntent"];
2581
+ generateAppProofs?: boolean;
2249
2582
  };
2250
2583
  v1InitImportWalletResult: {
2251
2584
  /** @description Import bundle containing a public key and signature to use for importing client data. */
@@ -2281,7 +2614,7 @@ export type definitions = {
2281
2614
  otpLength?: number;
2282
2615
  /** @description Optional parameters for customizing emails. If not provided, the default email will be used. */
2283
2616
  emailCustomization?: definitions["v1EmailCustomizationParams"];
2284
- /** @description Optional parameters for customizing SMS message. If not provided, the default sms message will be used. */
2617
+ /** @description Optional parameters for customizing SMS message. If not provided, the default SMS message will be used. */
2285
2618
  smsCustomization?: definitions["v1SmsCustomizationParams"];
2286
2619
  /** @description Optional client-generated user identifier to enable per-user rate limiting for SMS auth. We recommend using a hash of the client-side IP address. */
2287
2620
  userIdentifier?: string;
@@ -2294,14 +2627,44 @@ export type definitions = {
2294
2627
  /** @description Optional custom email address to use as reply-to */
2295
2628
  replyToEmailAddress?: string;
2296
2629
  };
2630
+ v1InitOtpAuthIntentV3: {
2631
+ /** @description Whether to send OTP via SMS or email. Possible values: OTP_TYPE_SMS, OTP_TYPE_EMAIL */
2632
+ otpType: string;
2633
+ /** @description Email or phone number to send the OTP code to */
2634
+ contact: string;
2635
+ /**
2636
+ * Format: int32
2637
+ * @description Optional length of the OTP code. Default = 9
2638
+ */
2639
+ otpLength?: number;
2640
+ /** @description The name of the application. This field is required and will be used in email notifications if an email template is not provided. */
2641
+ appName: string;
2642
+ /** @description Optional parameters for customizing emails. If not provided, the default email will be used. */
2643
+ emailCustomization?: definitions["v1EmailCustomizationParamsV2"];
2644
+ /** @description Optional parameters for customizing SMS message. If not provided, the default SMS message will be used. */
2645
+ smsCustomization?: definitions["v1SmsCustomizationParams"];
2646
+ /** @description Optional client-generated user identifier to enable per-user rate limiting for SMS auth. We recommend using a hash of the client-side IP address. */
2647
+ userIdentifier?: string;
2648
+ /** @description Optional custom email address from which to send the OTP email */
2649
+ sendFromEmailAddress?: string;
2650
+ /** @description Optional flag to specify if the OTP code should be alphanumeric (Crockford’s Base32). Default = true */
2651
+ alphanumeric?: boolean;
2652
+ /** @description Optional custom sender name for use with sendFromEmailAddress; if left empty, will default to 'Notifications' */
2653
+ sendFromEmailSenderName?: string;
2654
+ /** @description Expiration window (in seconds) indicating how long the OTP is valid for. If not provided, a default of 5 minutes will be used. Maximum value is 600 seconds (10 minutes) */
2655
+ expirationSeconds?: string;
2656
+ /** @description Optional custom email address to use as reply-to */
2657
+ replyToEmailAddress?: string;
2658
+ };
2297
2659
  v1InitOtpAuthRequest: {
2298
2660
  /** @enum {string} */
2299
- type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V2";
2661
+ type: "ACTIVITY_TYPE_INIT_OTP_AUTH_V3";
2300
2662
  /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
2301
2663
  timestampMs: string;
2302
2664
  /** @description Unique identifier for a given Organization. */
2303
2665
  organizationId: string;
2304
- parameters: definitions["v1InitOtpAuthIntentV2"];
2666
+ parameters: definitions["v1InitOtpAuthIntentV3"];
2667
+ generateAppProofs?: boolean;
2305
2668
  };
2306
2669
  v1InitOtpAuthResult: {
2307
2670
  /** @description Unique identifier for an OTP authentication */
@@ -2338,14 +2701,44 @@ export type definitions = {
2338
2701
  /** @description Optional custom email address to use as reply-to */
2339
2702
  replyToEmailAddress?: string;
2340
2703
  };
2704
+ v1InitOtpIntentV2: {
2705
+ /** @description Whether to send OTP via SMS or email. Possible values: OTP_TYPE_SMS, OTP_TYPE_EMAIL */
2706
+ otpType: string;
2707
+ /** @description Email or phone number to send the OTP code to */
2708
+ contact: string;
2709
+ /**
2710
+ * Format: int32
2711
+ * @description Optional length of the OTP code. Default = 9
2712
+ */
2713
+ otpLength?: number;
2714
+ /** @description The name of the application. This field is required and will be used in email notifications if an email template is not provided. */
2715
+ appName: string;
2716
+ /** @description Optional parameters for customizing emails. If not provided, the default email will be used. */
2717
+ emailCustomization?: definitions["v1EmailCustomizationParamsV2"];
2718
+ /** @description Optional parameters for customizing SMS message. If not provided, the default SMS message will be used. */
2719
+ smsCustomization?: definitions["v1SmsCustomizationParams"];
2720
+ /** @description Optional client-generated user identifier to enable per-user rate limiting for SMS auth. We recommend using a hash of the client-side IP address. */
2721
+ userIdentifier?: string;
2722
+ /** @description Optional custom email address from which to send the OTP email */
2723
+ sendFromEmailAddress?: string;
2724
+ /** @description Optional flag to specify if the OTP code should be alphanumeric (Crockford’s Base32). Default = true */
2725
+ alphanumeric?: boolean;
2726
+ /** @description Optional custom sender name for use with sendFromEmailAddress; if left empty, will default to 'Notifications' */
2727
+ sendFromEmailSenderName?: string;
2728
+ /** @description Expiration window (in seconds) indicating how long the OTP is valid for. If not provided, a default of 5 minutes will be used. Maximum value is 600 seconds (10 minutes) */
2729
+ expirationSeconds?: string;
2730
+ /** @description Optional custom email address to use as reply-to */
2731
+ replyToEmailAddress?: string;
2732
+ };
2341
2733
  v1InitOtpRequest: {
2342
2734
  /** @enum {string} */
2343
- type: "ACTIVITY_TYPE_INIT_OTP";
2735
+ type: "ACTIVITY_TYPE_INIT_OTP_V2";
2344
2736
  /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
2345
2737
  timestampMs: string;
2346
2738
  /** @description Unique identifier for a given Organization. */
2347
2739
  organizationId: string;
2348
- parameters: definitions["v1InitOtpIntent"];
2740
+ parameters: definitions["v1InitOtpIntentV2"];
2741
+ generateAppProofs?: boolean;
2349
2742
  };
2350
2743
  v1InitOtpResult: {
2351
2744
  /** @description Unique identifier for an OTP authentication */
@@ -2367,14 +2760,31 @@ export type definitions = {
2367
2760
  /** @description Optional custom email address to use as reply-to */
2368
2761
  replyToEmailAddress?: string;
2369
2762
  };
2763
+ v1InitUserEmailRecoveryIntentV2: {
2764
+ /** @description Email of the user starting recovery */
2765
+ email: string;
2766
+ /** @description Client-side public key generated by the user, to which the recovery bundle will be encrypted. */
2767
+ targetPublicKey: string;
2768
+ /** @description Expiration window (in seconds) indicating how long the recovery credential is valid for. If not provided, a default of 15 minutes will be used. */
2769
+ expirationSeconds?: string;
2770
+ /** @description Parameters for customizing emails. If not provided, the default email will be used. Note that `app_name` is required. */
2771
+ emailCustomization: definitions["v1EmailAuthCustomizationParams"];
2772
+ /** @description Optional custom email address from which to send the OTP email */
2773
+ sendFromEmailAddress?: string;
2774
+ /** @description Optional custom sender name for use with sendFromEmailAddress; if left empty, will default to 'Notifications' */
2775
+ sendFromEmailSenderName?: string;
2776
+ /** @description Optional custom email address to use as reply-to */
2777
+ replyToEmailAddress?: string;
2778
+ };
2370
2779
  v1InitUserEmailRecoveryRequest: {
2371
2780
  /** @enum {string} */
2372
- type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY";
2781
+ type: "ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2";
2373
2782
  /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
2374
2783
  timestampMs: string;
2375
2784
  /** @description Unique identifier for a given Organization. */
2376
2785
  organizationId: string;
2377
- parameters: definitions["v1InitUserEmailRecoveryIntent"];
2786
+ parameters: definitions["v1InitUserEmailRecoveryIntentV2"];
2787
+ generateAppProofs?: boolean;
2378
2788
  };
2379
2789
  v1InitUserEmailRecoveryResult: {
2380
2790
  /** @description Unique identifier for the user being recovered. */
@@ -2485,6 +2895,15 @@ export type definitions = {
2485
2895
  deleteWalletAccountsIntent?: definitions["v1DeleteWalletAccountsIntent"];
2486
2896
  deletePoliciesIntent?: definitions["v1DeletePoliciesIntent"];
2487
2897
  ethSendRawTransactionIntent?: definitions["v1EthSendRawTransactionIntent"];
2898
+ ethSendTransactionIntent?: definitions["v1EthSendTransactionIntent"];
2899
+ createFiatOnRampCredentialIntent?: definitions["v1CreateFiatOnRampCredentialIntent"];
2900
+ updateFiatOnRampCredentialIntent?: definitions["v1UpdateFiatOnRampCredentialIntent"];
2901
+ deleteFiatOnRampCredentialIntent?: definitions["v1DeleteFiatOnRampCredentialIntent"];
2902
+ emailAuthIntentV3?: definitions["v1EmailAuthIntentV3"];
2903
+ initUserEmailRecoveryIntentV2?: definitions["v1InitUserEmailRecoveryIntentV2"];
2904
+ initOtpIntentV2?: definitions["v1InitOtpIntentV2"];
2905
+ initOtpAuthIntentV3?: definitions["v1InitOtpAuthIntentV3"];
2906
+ upsertGasUsageConfigIntent?: definitions["v1UpsertGasUsageConfigIntent"];
2488
2907
  };
2489
2908
  v1Invitation: {
2490
2909
  /** @description Unique identifier for a given Invitation object. */
@@ -2518,6 +2937,13 @@ export type definitions = {
2518
2937
  };
2519
2938
  /** @enum {string} */
2520
2939
  v1InvitationStatus: "INVITATION_STATUS_CREATED" | "INVITATION_STATUS_ACCEPTED" | "INVITATION_STATUS_REVOKED";
2940
+ v1ListFiatOnRampCredentialsRequest: {
2941
+ /** @description Unique identifier for a given Organization. */
2942
+ organizationId: string;
2943
+ };
2944
+ v1ListFiatOnRampCredentialsResponse: {
2945
+ fiatOnRampCredentials: definitions["v1FiatOnRampCredential"][];
2946
+ };
2521
2947
  v1ListOauth2CredentialsRequest: {
2522
2948
  /** @description Unique identifier for a given Organization. */
2523
2949
  organizationId: string;
@@ -2541,10 +2967,15 @@ export type definitions = {
2541
2967
  /** @description A list of user tags. */
2542
2968
  userTags: definitions["datav1Tag"][];
2543
2969
  };
2970
+ v1LoginUsage: {
2971
+ /** @description Public key for authentication */
2972
+ publicKey: string;
2973
+ };
2544
2974
  /** @enum {string} */
2545
2975
  v1MnemonicLanguage: "MNEMONIC_LANGUAGE_ENGLISH" | "MNEMONIC_LANGUAGE_SIMPLIFIED_CHINESE" | "MNEMONIC_LANGUAGE_TRADITIONAL_CHINESE" | "MNEMONIC_LANGUAGE_CZECH" | "MNEMONIC_LANGUAGE_FRENCH" | "MNEMONIC_LANGUAGE_ITALIAN" | "MNEMONIC_LANGUAGE_JAPANESE" | "MNEMONIC_LANGUAGE_KOREAN" | "MNEMONIC_LANGUAGE_SPANISH";
2546
2976
  v1NOOPCodegenAnchorResponse: {
2547
2977
  stamp: definitions["v1WebAuthnStamp"];
2978
+ tokenUsage?: definitions["v1TokenUsage"];
2548
2979
  };
2549
2980
  v1Oauth2AuthenticateIntent: {
2550
2981
  /** @description The OAuth 2.0 credential id whose client_id and client_secret will be used in the OAuth 2.0 flow */
@@ -2568,6 +2999,7 @@ export type definitions = {
2568
2999
  /** @description Unique identifier for a given Organization. */
2569
3000
  organizationId: string;
2570
3001
  parameters: definitions["v1Oauth2AuthenticateIntent"];
3002
+ generateAppProofs?: boolean;
2571
3003
  };
2572
3004
  v1Oauth2AuthenticateResult: {
2573
3005
  /** @description Base64 encoded OIDC token issued by Turnkey to be used with the LoginWithOAuth activity */
@@ -2619,6 +3051,7 @@ export type definitions = {
2619
3051
  /** @description Unique identifier for a given Organization. */
2620
3052
  organizationId: string;
2621
3053
  parameters: definitions["v1OauthLoginIntent"];
3054
+ generateAppProofs?: boolean;
2622
3055
  };
2623
3056
  v1OauthLoginResult: {
2624
3057
  /** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */
@@ -2652,6 +3085,7 @@ export type definitions = {
2652
3085
  /** @description Unique identifier for a given Organization. */
2653
3086
  organizationId: string;
2654
3087
  parameters: definitions["v1OauthIntent"];
3088
+ generateAppProofs?: boolean;
2655
3089
  };
2656
3090
  v1OauthResult: {
2657
3091
  /** @description Unique identifier for the authenticating User. */
@@ -2698,6 +3132,7 @@ export type definitions = {
2698
3132
  /** @description Unique identifier for a given Organization. */
2699
3133
  organizationId: string;
2700
3134
  parameters: definitions["v1OtpAuthIntent"];
3135
+ generateAppProofs?: boolean;
2701
3136
  };
2702
3137
  v1OtpAuthResult: {
2703
3138
  /** @description Unique identifier for the authenticating User. */
@@ -2716,8 +3151,8 @@ export type definitions = {
2716
3151
  expirationSeconds?: string;
2717
3152
  /** @description Invalidate all other previously generated Login API keys */
2718
3153
  invalidateExisting?: boolean;
2719
- /** @description Optional signature associated with the public key passed into the verification step. This must be a hex-encoded ECDSA signature over the verification token. Only required if a public key was provided during the verification step. */
2720
- clientSignature?: string;
3154
+ /** @description Optional signature proving authorization for this login. The signature is over the verification token ID and the public key. Only required if a public key was provided during the verification step. */
3155
+ clientSignature?: definitions["v1ClientSignature"];
2721
3156
  };
2722
3157
  v1OtpLoginRequest: {
2723
3158
  /** @enum {string} */
@@ -2727,6 +3162,7 @@ export type definitions = {
2727
3162
  /** @description Unique identifier for a given Organization. */
2728
3163
  organizationId: string;
2729
3164
  parameters: definitions["v1OtpLoginIntent"];
3165
+ generateAppProofs?: boolean;
2730
3166
  };
2731
3167
  v1OtpLoginResult: {
2732
3168
  /** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */
@@ -2820,6 +3256,7 @@ export type definitions = {
2820
3256
  /** @description Unique identifier for a given Organization. */
2821
3257
  organizationId: string;
2822
3258
  parameters: definitions["v1RecoverUserIntent"];
3259
+ generateAppProofs?: boolean;
2823
3260
  };
2824
3261
  v1RecoverUserResult: {
2825
3262
  /** @description ID of the authenticator created. */
@@ -2837,6 +3274,7 @@ export type definitions = {
2837
3274
  /** @description Unique identifier for a given Organization. */
2838
3275
  organizationId: string;
2839
3276
  parameters: definitions["v1RejectActivityIntent"];
3277
+ generateAppProofs?: boolean;
2840
3278
  };
2841
3279
  v1RemoveOrganizationFeatureIntent: {
2842
3280
  /** @description Name of the feature to remove */
@@ -2850,6 +3288,7 @@ export type definitions = {
2850
3288
  /** @description Unique identifier for a given Organization. */
2851
3289
  organizationId: string;
2852
3290
  parameters: definitions["v1RemoveOrganizationFeatureIntent"];
3291
+ generateAppProofs?: boolean;
2853
3292
  };
2854
3293
  v1RemoveOrganizationFeatureResult: {
2855
3294
  /** @description Resulting list of organization features. */
@@ -2945,6 +3384,11 @@ export type definitions = {
2945
3384
  deleteWalletAccountsResult?: definitions["v1DeleteWalletAccountsResult"];
2946
3385
  deletePoliciesResult?: definitions["v1DeletePoliciesResult"];
2947
3386
  ethSendRawTransactionResult?: definitions["v1EthSendRawTransactionResult"];
3387
+ createFiatOnRampCredentialResult?: definitions["v1CreateFiatOnRampCredentialResult"];
3388
+ updateFiatOnRampCredentialResult?: definitions["v1UpdateFiatOnRampCredentialResult"];
3389
+ deleteFiatOnRampCredentialResult?: definitions["v1DeleteFiatOnRampCredentialResult"];
3390
+ ethSendTransactionResult?: definitions["v1EthSendTransactionResult"];
3391
+ upsertGasUsageConfigResult?: definitions["v1UpsertGasUsageConfigResult"];
2948
3392
  };
2949
3393
  v1RootUserParams: {
2950
3394
  /** @description Human-readable name for a User. */
@@ -3018,6 +3462,7 @@ export type definitions = {
3018
3462
  /** @description Unique identifier for a given Organization. */
3019
3463
  organizationId: string;
3020
3464
  parameters: definitions["v1SetOrganizationFeatureIntent"];
3465
+ generateAppProofs?: boolean;
3021
3466
  };
3022
3467
  v1SetOrganizationFeatureResult: {
3023
3468
  /** @description Resulting list of organization features. */
@@ -3051,6 +3496,7 @@ export type definitions = {
3051
3496
  /** @description Unique identifier for a given Organization. */
3052
3497
  organizationId: string;
3053
3498
  parameters: definitions["v1SignRawPayloadIntentV2"];
3499
+ generateAppProofs?: boolean;
3054
3500
  };
3055
3501
  v1SignRawPayloadResult: {
3056
3502
  /** @description Component of an ECSDA signature. */
@@ -3078,6 +3524,7 @@ export type definitions = {
3078
3524
  /** @description Unique identifier for a given Organization. */
3079
3525
  organizationId: string;
3080
3526
  parameters: definitions["v1SignRawPayloadsIntent"];
3527
+ generateAppProofs?: boolean;
3081
3528
  };
3082
3529
  v1SignRawPayloadsResult: {
3083
3530
  signatures?: definitions["v1SignRawPayloadResult"][];
@@ -3104,35 +3551,23 @@ export type definitions = {
3104
3551
  /** @description Unique identifier for a given Organization. */
3105
3552
  organizationId: string;
3106
3553
  parameters: definitions["v1SignTransactionIntentV2"];
3554
+ generateAppProofs?: boolean;
3107
3555
  };
3108
3556
  v1SignTransactionResult: {
3109
3557
  signedTransaction: string;
3110
3558
  };
3111
- /** @enum {string} */
3112
- v1SignatureScheme: "SIGNATURE_SCHEME_EPHEMERAL_KEY_P256";
3559
+ v1SignupUsage: {
3560
+ email?: string;
3561
+ phoneNumber?: string;
3562
+ apiKeys?: definitions["v1ApiKeyParamsV2"][];
3563
+ authenticators?: definitions["v1AuthenticatorParamsV2"][];
3564
+ oauthProviders?: definitions["v1OauthProviderParams"][];
3565
+ };
3113
3566
  v1SimpleClientExtensionResults: {
3114
3567
  appid?: boolean;
3115
3568
  appidExclude?: boolean;
3116
3569
  credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"];
3117
3570
  };
3118
- v1SmartContractInterface: {
3119
- /** @description The Organization the Smart Contract Interface belongs to. */
3120
- organizationId: string;
3121
- /** @description Unique identifier for a given Smart Contract Interface (ABI or IDL). */
3122
- smartContractInterfaceId: string;
3123
- /** @description The address corresponding to the Smart Contract or Program. */
3124
- smartContractAddress: string;
3125
- /** @description The JSON corresponding to the Smart Contract Interface (ABI or IDL). */
3126
- smartContractInterface: string;
3127
- /** @description The type corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
3128
- type: string;
3129
- /** @description The label corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
3130
- label: string;
3131
- /** @description The notes corresponding to the Smart Contract Interface (either ETHEREUM or SOLANA). */
3132
- notes: string;
3133
- createdAt: definitions["externaldatav1Timestamp"];
3134
- updatedAt: definitions["externaldatav1Timestamp"];
3135
- };
3136
3571
  v1SmartContractInterfaceReference: {
3137
3572
  smartContractInterfaceId?: string;
3138
3573
  smartContractAddress?: string;
@@ -3160,6 +3595,7 @@ export type definitions = {
3160
3595
  /** @description Unique identifier for a given Organization. */
3161
3596
  organizationId: string;
3162
3597
  parameters: definitions["v1StampLoginIntent"];
3598
+ generateAppProofs?: boolean;
3163
3599
  };
3164
3600
  v1StampLoginResult: {
3165
3601
  /** @description Signed JWT containing an expiry, public key, session type, user id, and organization id */
@@ -3181,6 +3617,14 @@ export type definitions = {
3181
3617
  v1TestRateLimitsResponse: {
3182
3618
  [key: string]: unknown;
3183
3619
  };
3620
+ v1TokenUsage: {
3621
+ /** @description Type of token usage */
3622
+ type: definitions["v1UsageType"];
3623
+ /** @description Unique identifier for the verification token */
3624
+ tokenId: string;
3625
+ signup?: definitions["v1SignupUsage"];
3626
+ login?: definitions["v1LoginUsage"];
3627
+ };
3184
3628
  /** @enum {string} */
3185
3629
  v1TransactionType: "TRANSACTION_TYPE_ETHEREUM" | "TRANSACTION_TYPE_SOLANA" | "TRANSACTION_TYPE_TRON" | "TRANSACTION_TYPE_BITCOIN";
3186
3630
  v1UpdateAllowedOriginsIntent: {
@@ -3203,7 +3647,7 @@ export type definitions = {
3203
3647
  emailAuthTemplateId?: string;
3204
3648
  /** @description Template ID for OTP SMS messages. */
3205
3649
  otpTemplateId?: string;
3206
- /** @description Overrides for auth-related email content. */
3650
+ /** @description Optional parameters for customizing emails. If not provided, the default email will be used. */
3207
3651
  emailCustomizationParams?: definitions["v1EmailCustomizationParams"];
3208
3652
  /** @description Overrides for auth-related SMS content. */
3209
3653
  smsCustomizationParams?: definitions["v1SmsCustomizationParams"];
@@ -3240,6 +3684,34 @@ export type definitions = {
3240
3684
  /** @description Unique identifier for a given User. (representing the turnkey signer user id) */
3241
3685
  configId?: string;
3242
3686
  };
3687
+ v1UpdateFiatOnRampCredentialIntent: {
3688
+ /** @description The ID of the fiat on-ramp credential to update */
3689
+ fiatOnrampCredentialId: string;
3690
+ /** @description The fiat on-ramp provider */
3691
+ onrampProvider: definitions["v1FiatOnRampProvider"];
3692
+ /** @description Project ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier. */
3693
+ projectId?: string;
3694
+ /** @description Publishable API key for the on-ramp provider */
3695
+ publishableApiKey: string;
3696
+ /** @description Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key */
3697
+ encryptedSecretApiKey: string;
3698
+ /** @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. */
3699
+ encryptedPrivateApiKey?: string;
3700
+ };
3701
+ v1UpdateFiatOnRampCredentialRequest: {
3702
+ /** @enum {string} */
3703
+ type: "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL";
3704
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
3705
+ timestampMs: string;
3706
+ /** @description Unique identifier for a given Organization. */
3707
+ organizationId: string;
3708
+ parameters: definitions["v1UpdateFiatOnRampCredentialIntent"];
3709
+ generateAppProofs?: boolean;
3710
+ };
3711
+ v1UpdateFiatOnRampCredentialResult: {
3712
+ /** @description Unique identifier of the Fiat On-Ramp credential that was updated */
3713
+ fiatOnRampCredentialId: string;
3714
+ };
3243
3715
  v1UpdateOauth2CredentialIntent: {
3244
3716
  /** @description The ID of the OAuth 2.0 credential to update */
3245
3717
  oauth2CredentialId: string;
@@ -3258,6 +3730,7 @@ export type definitions = {
3258
3730
  /** @description Unique identifier for a given Organization. */
3259
3731
  organizationId: string;
3260
3732
  parameters: definitions["v1UpdateOauth2CredentialIntent"];
3733
+ generateAppProofs?: boolean;
3261
3734
  };
3262
3735
  v1UpdateOauth2CredentialResult: {
3263
3736
  /** @description Unique identifier of the OAuth 2.0 credential that was updated */
@@ -3299,6 +3772,7 @@ export type definitions = {
3299
3772
  /** @description Unique identifier for a given Organization. */
3300
3773
  organizationId: string;
3301
3774
  parameters: definitions["v1UpdatePolicyIntentV2"];
3775
+ generateAppProofs?: boolean;
3302
3776
  };
3303
3777
  v1UpdatePolicyResult: {
3304
3778
  /** @description Unique identifier for a given Policy. */
@@ -3326,6 +3800,7 @@ export type definitions = {
3326
3800
  /** @description Unique identifier for a given Organization. */
3327
3801
  organizationId: string;
3328
3802
  parameters: definitions["v1UpdatePrivateKeyTagIntent"];
3803
+ generateAppProofs?: boolean;
3329
3804
  };
3330
3805
  v1UpdatePrivateKeyTagResult: {
3331
3806
  /** @description Unique identifier for a given Private Key Tag. */
@@ -3348,6 +3823,7 @@ export type definitions = {
3348
3823
  /** @description Unique identifier for a given Organization. */
3349
3824
  organizationId: string;
3350
3825
  parameters: definitions["v1UpdateRootQuorumIntent"];
3826
+ generateAppProofs?: boolean;
3351
3827
  };
3352
3828
  v1UpdateRootQuorumResult: {
3353
3829
  [key: string]: unknown;
@@ -3368,6 +3844,7 @@ export type definitions = {
3368
3844
  /** @description Unique identifier for a given Organization. */
3369
3845
  organizationId: string;
3370
3846
  parameters: definitions["v1UpdateUserEmailIntent"];
3847
+ generateAppProofs?: boolean;
3371
3848
  };
3372
3849
  v1UpdateUserEmailResult: {
3373
3850
  /** @description Unique identifier of the User whose email was updated. */
@@ -3399,6 +3876,7 @@ export type definitions = {
3399
3876
  /** @description Unique identifier for a given Organization. */
3400
3877
  organizationId: string;
3401
3878
  parameters: definitions["v1UpdateUserNameIntent"];
3879
+ generateAppProofs?: boolean;
3402
3880
  };
3403
3881
  v1UpdateUserNameResult: {
3404
3882
  /** @description Unique identifier of the User whose name was updated. */
@@ -3420,6 +3898,7 @@ export type definitions = {
3420
3898
  /** @description Unique identifier for a given Organization. */
3421
3899
  organizationId: string;
3422
3900
  parameters: definitions["v1UpdateUserPhoneNumberIntent"];
3901
+ generateAppProofs?: boolean;
3423
3902
  };
3424
3903
  v1UpdateUserPhoneNumberResult: {
3425
3904
  /** @description Unique identifier of the User whose phone number was updated. */
@@ -3433,6 +3912,7 @@ export type definitions = {
3433
3912
  /** @description Unique identifier for a given Organization. */
3434
3913
  organizationId: string;
3435
3914
  parameters: definitions["v1UpdateUserIntent"];
3915
+ generateAppProofs?: boolean;
3436
3916
  };
3437
3917
  v1UpdateUserResult: {
3438
3918
  /** @description A User ID. */
@@ -3456,6 +3936,7 @@ export type definitions = {
3456
3936
  /** @description Unique identifier for a given Organization. */
3457
3937
  organizationId: string;
3458
3938
  parameters: definitions["v1UpdateUserTagIntent"];
3939
+ generateAppProofs?: boolean;
3459
3940
  };
3460
3941
  v1UpdateUserTagResult: {
3461
3942
  /** @description Unique identifier for a given User Tag. */
@@ -3475,11 +3956,26 @@ export type definitions = {
3475
3956
  /** @description Unique identifier for a given Organization. */
3476
3957
  organizationId: string;
3477
3958
  parameters: definitions["v1UpdateWalletIntent"];
3959
+ generateAppProofs?: boolean;
3478
3960
  };
3479
3961
  v1UpdateWalletResult: {
3480
3962
  /** @description A Wallet ID. */
3481
3963
  walletId: string;
3482
3964
  };
3965
+ v1UpsertGasUsageConfigIntent: {
3966
+ /** @description Gas sponsorship USD limit for the billing organization window. */
3967
+ orgWindowLimitUsd: string;
3968
+ /** @description Gas sponsorship USD limit for sub-organizations under the billing organization. */
3969
+ subOrgWindowLimitUsd: string;
3970
+ /** @description Rolling sponsorship window duration, expressed in minutes. */
3971
+ windowDurationMinutes: string;
3972
+ };
3973
+ v1UpsertGasUsageConfigResult: {
3974
+ /** @description Unique identifier for the gas usage configuration that was created or updated. */
3975
+ gasUsageConfigId: string;
3976
+ };
3977
+ /** @enum {string} */
3978
+ v1UsageType: "USAGE_TYPE_SIGNUP" | "USAGE_TYPE_LOGIN";
3483
3979
  v1User: {
3484
3980
  /** @description Unique identifier for a given User. */
3485
3981
  userId: string;
@@ -3560,6 +4056,7 @@ export type definitions = {
3560
4056
  /** @description Unique identifier for a given Organization. */
3561
4057
  organizationId: string;
3562
4058
  parameters: definitions["v1VerifyOtpIntent"];
4059
+ generateAppProofs?: boolean;
3563
4060
  };
3564
4061
  v1VerifyOtpResult: {
3565
4062
  /** @description Signed JWT containing a unique id, expiry, verification type, contact. Verification status of a user is updated when the token is consumed (in OTP_LOGIN requests) */
@@ -3805,6 +4302,24 @@ export type operations = {
3805
4302
  };
3806
4303
  };
3807
4304
  };
4305
+ /** Get gas usage and gas limits for either the parent organization or a sub-organization. */
4306
+ PublicApiService_GetGasUsage: {
4307
+ parameters: {
4308
+ body: {
4309
+ body: definitions["v1GetGasUsageRequest"];
4310
+ };
4311
+ };
4312
+ responses: {
4313
+ /** A successful response. */
4314
+ 200: {
4315
+ schema: definitions["v1GetGasUsageResponse"];
4316
+ };
4317
+ /** An unexpected error response. */
4318
+ default: {
4319
+ schema: definitions["rpcStatus"];
4320
+ };
4321
+ };
4322
+ };
3808
4323
  /** Get the latest boot proof for a given enclave app name. */
3809
4324
  PublicApiService_GetLatestBootProof: {
3810
4325
  parameters: {
@@ -3823,6 +4338,24 @@ export type operations = {
3823
4338
  };
3824
4339
  };
3825
4340
  };
4341
+ /** Get nonce values for an address on a given network. Can fetch the standard on-chain nonce and/or the gas station nonce used for sponsored transactions. */
4342
+ PublicApiService_GetNonces: {
4343
+ parameters: {
4344
+ body: {
4345
+ body: definitions["v1GetNoncesRequest"];
4346
+ };
4347
+ };
4348
+ responses: {
4349
+ /** A successful response. */
4350
+ 200: {
4351
+ schema: definitions["v1GetNoncesResponse"];
4352
+ };
4353
+ /** An unexpected error response. */
4354
+ default: {
4355
+ schema: definitions["rpcStatus"];
4356
+ };
4357
+ };
4358
+ };
3826
4359
  /** Get details about an OAuth 2.0 credential. */
3827
4360
  PublicApiService_GetOauth2Credential: {
3828
4361
  parameters: {
@@ -3859,6 +4392,24 @@ export type operations = {
3859
4392
  };
3860
4393
  };
3861
4394
  };
4395
+ /** Get the status of an on ramp transaction. */
4396
+ PublicApiService_GetOnRampTransactionStatus: {
4397
+ parameters: {
4398
+ body: {
4399
+ body: definitions["v1GetOnRampTransactionStatusRequest"];
4400
+ };
4401
+ };
4402
+ responses: {
4403
+ /** A successful response. */
4404
+ 200: {
4405
+ schema: definitions["v1GetOnRampTransactionStatusResponse"];
4406
+ };
4407
+ /** An unexpected error response. */
4408
+ default: {
4409
+ schema: definitions["rpcStatus"];
4410
+ };
4411
+ };
4412
+ };
3862
4413
  /** Get details about an organization. */
3863
4414
  PublicApiService_GetOrganization: {
3864
4415
  parameters: {
@@ -3949,6 +4500,24 @@ export type operations = {
3949
4500
  };
3950
4501
  };
3951
4502
  };
4503
+ /** Get the status of a send transaction request. */
4504
+ PublicApiService_GetSendTransactionStatus: {
4505
+ parameters: {
4506
+ body: {
4507
+ body: definitions["v1GetSendTransactionStatusRequest"];
4508
+ };
4509
+ };
4510
+ responses: {
4511
+ /** A successful response. */
4512
+ 200: {
4513
+ schema: definitions["v1GetSendTransactionStatusResponse"];
4514
+ };
4515
+ /** An unexpected error response. */
4516
+ default: {
4517
+ schema: definitions["rpcStatus"];
4518
+ };
4519
+ };
4520
+ };
3952
4521
  /** Get details about a smart contract interface. */
3953
4522
  PublicApiService_GetSmartContractInterface: {
3954
4523
  parameters: {
@@ -4039,7 +4608,7 @@ export type operations = {
4039
4608
  };
4040
4609
  };
4041
4610
  };
4042
- /** List the app proofs for the given activity. */
4611
+ /** List the App Proofs for the given activity. */
4043
4612
  PublicApiService_GetAppProofs: {
4044
4613
  parameters: {
4045
4614
  body: {
@@ -4057,6 +4626,24 @@ export type operations = {
4057
4626
  };
4058
4627
  };
4059
4628
  };
4629
+ /** List all fiat on ramp provider credentials within an organization. */
4630
+ PublicApiService_ListFiatOnRampCredentials: {
4631
+ parameters: {
4632
+ body: {
4633
+ body: definitions["v1ListFiatOnRampCredentialsRequest"];
4634
+ };
4635
+ };
4636
+ responses: {
4637
+ /** A successful response. */
4638
+ 200: {
4639
+ schema: definitions["v1ListFiatOnRampCredentialsResponse"];
4640
+ };
4641
+ /** An unexpected error response. */
4642
+ default: {
4643
+ schema: definitions["rpcStatus"];
4644
+ };
4645
+ };
4646
+ };
4060
4647
  /** List all OAuth 2.0 credentials within an organization. */
4061
4648
  PublicApiService_ListOauth2Credentials: {
4062
4649
  parameters: {
@@ -4345,6 +4932,24 @@ export type operations = {
4345
4932
  };
4346
4933
  };
4347
4934
  };
4935
+ /** Create a fiat on ramp provider credential */
4936
+ PublicApiService_CreateFiatOnRampCredential: {
4937
+ parameters: {
4938
+ body: {
4939
+ body: definitions["v1CreateFiatOnRampCredentialRequest"];
4940
+ };
4941
+ };
4942
+ responses: {
4943
+ /** A successful response. */
4944
+ 200: {
4945
+ schema: definitions["v1ActivityResponse"];
4946
+ };
4947
+ /** An unexpected error response. */
4948
+ default: {
4949
+ schema: definitions["rpcStatus"];
4950
+ };
4951
+ };
4952
+ };
4348
4953
  /** Create invitations to join an existing organization. */
4349
4954
  PublicApiService_CreateInvitations: {
4350
4955
  parameters: {
@@ -4651,6 +5256,24 @@ export type operations = {
4651
5256
  };
4652
5257
  };
4653
5258
  };
5259
+ /** Delete a fiat on ramp provider credential */
5260
+ PublicApiService_DeleteFiatOnRampCredential: {
5261
+ parameters: {
5262
+ body: {
5263
+ body: definitions["v1DeleteFiatOnRampCredentialRequest"];
5264
+ };
5265
+ };
5266
+ responses: {
5267
+ /** A successful response. */
5268
+ 200: {
5269
+ schema: definitions["v1ActivityResponse"];
5270
+ };
5271
+ /** An unexpected error response. */
5272
+ default: {
5273
+ schema: definitions["rpcStatus"];
5274
+ };
5275
+ };
5276
+ };
4654
5277
  /** Delete an existing invitation. */
4655
5278
  PublicApiService_DeleteInvitation: {
4656
5279
  parameters: {
@@ -4921,6 +5544,24 @@ export type operations = {
4921
5544
  };
4922
5545
  };
4923
5546
  };
5547
+ /** Submit a transaction intent describing a transaction you would like to broadcast. */
5548
+ PublicApiService_EthSendTransaction: {
5549
+ parameters: {
5550
+ body: {
5551
+ body: definitions["v1EthSendTransactionRequest"];
5552
+ };
5553
+ };
5554
+ responses: {
5555
+ /** A successful response. */
5556
+ 200: {
5557
+ schema: definitions["v1ActivityResponse"];
5558
+ };
5559
+ /** An unexpected error response. */
5560
+ default: {
5561
+ schema: definitions["rpcStatus"];
5562
+ };
5563
+ };
5564
+ };
4924
5565
  /** Export a private key. */
4925
5566
  PublicApiService_ExportPrivateKey: {
4926
5567
  parameters: {
@@ -5353,6 +5994,24 @@ export type operations = {
5353
5994
  };
5354
5995
  };
5355
5996
  };
5997
+ /** Update a fiat on ramp provider credential */
5998
+ PublicApiService_UpdateFiatOnRampCredential: {
5999
+ parameters: {
6000
+ body: {
6001
+ body: definitions["v1UpdateFiatOnRampCredentialRequest"];
6002
+ };
6003
+ };
6004
+ responses: {
6005
+ /** A successful response. */
6006
+ 200: {
6007
+ schema: definitions["v1ActivityResponse"];
6008
+ };
6009
+ /** An unexpected error response. */
6010
+ default: {
6011
+ schema: definitions["rpcStatus"];
6012
+ };
6013
+ };
6014
+ };
5356
6015
  /** Update an OAuth 2.0 provider credential */
5357
6016
  PublicApiService_UpdateOauth2Credential: {
5358
6017
  parameters: {