@turnkey/http 3.16.3 → 3.17.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.
@@ -15,10 +15,6 @@ export type paths = {
15
15
  /** Get details about API keys for a user. */
16
16
  post: operations["PublicApiService_GetApiKeys"];
17
17
  };
18
- "/public/v1/query/get_attestation": {
19
- /** Get the attestation document corresponding to an enclave. */
20
- post: operations["PublicApiService_GetAttestationDocument"];
21
- };
22
18
  "/public/v1/query/get_authenticator": {
23
19
  /** Get details about an authenticator. */
24
20
  post: operations["PublicApiService_GetAuthenticator"];
@@ -83,6 +79,14 @@ export type paths = {
83
79
  /** Get details about a smart contract interface. */
84
80
  post: operations["PublicApiService_GetSmartContractInterface"];
85
81
  };
82
+ "/public/v1/query/get_tvc_app": {
83
+ /** Get details about a single TVC App */
84
+ post: operations["PublicApiService_GetTvcApp"];
85
+ };
86
+ "/public/v1/query/get_tvc_deployment": {
87
+ /** Get details about a single TVC Deployment */
88
+ post: operations["PublicApiService_GetTvcDeployment"];
89
+ };
86
90
  "/public/v1/query/get_user": {
87
91
  /** Get details about a user. */
88
92
  post: operations["PublicApiService_GetUser"];
@@ -95,6 +99,10 @@ export type paths = {
95
99
  /** Get a single wallet account. */
96
100
  post: operations["PublicApiService_GetWalletAccount"];
97
101
  };
102
+ "/public/v1/query/get_wallet_address_balances": {
103
+ /** Get non-zero balances of supported assets for a single wallet account address on the specified network. */
104
+ post: operations["PublicApiService_GetWalletAddressBalances"];
105
+ };
98
106
  "/public/v1/query/list_activities": {
99
107
  /** List all activities within an organization. */
100
108
  post: operations["PublicApiService_GetActivities"];
@@ -131,6 +139,18 @@ export type paths = {
131
139
  /** Get all suborg IDs associated given a parent org ID and an optional filter. */
132
140
  post: operations["PublicApiService_GetSubOrgIds"];
133
141
  };
142
+ "/public/v1/query/list_supported_assets": {
143
+ /** List supported assets for the specified network */
144
+ post: operations["PublicApiService_ListSupportedAssets"];
145
+ };
146
+ "/public/v1/query/list_tvc_app_deployments": {
147
+ /** List all deployments for a given TVC App */
148
+ post: operations["PublicApiService_GetTvcAppDeployments"];
149
+ };
150
+ "/public/v1/query/list_tvc_apps": {
151
+ /** List all TVC Apps within an organization. */
152
+ post: operations["PublicApiService_GetTvcApps"];
153
+ };
134
154
  "/public/v1/query/list_user_tags": {
135
155
  /** List all user tags within an organization. */
136
156
  post: operations["PublicApiService_ListUserTags"];
@@ -219,6 +239,18 @@ export type paths = {
219
239
  /** Create a new sub-organization. */
220
240
  post: operations["PublicApiService_CreateSubOrganization"];
221
241
  };
242
+ "/public/v1/submit/create_tvc_app": {
243
+ /** Create a new TVC application */
244
+ post: operations["PublicApiService_CreateTvcApp"];
245
+ };
246
+ "/public/v1/submit/create_tvc_deployment": {
247
+ /** Create a new TVC Deployment */
248
+ post: operations["PublicApiService_CreateTvcDeployment"];
249
+ };
250
+ "/public/v1/submit/create_tvc_manifest_approvals": {
251
+ /** Post one or more manifest approvals for a TVC Manifest */
252
+ post: operations["PublicApiService_CreateTvcManifestApprovals"];
253
+ };
222
254
  "/public/v1/submit/create_user_tag": {
223
255
  /** Create a user tag and add it to users. */
224
256
  post: operations["PublicApiService_CreateUserTag"];
@@ -308,7 +340,7 @@ export type paths = {
308
340
  post: operations["PublicApiService_EthSendRawTransaction"];
309
341
  };
310
342
  "/public/v1/submit/eth_send_transaction": {
311
- /** Submit a transaction intent describing a transaction you would like to broadcast. */
343
+ /** Submit a transaction intent describing an EVM transaction you would like to broadcast. */
312
344
  post: operations["PublicApiService_EthSendTransaction"];
313
345
  };
314
346
  "/public/v1/submit/export_private_key": {
@@ -403,6 +435,10 @@ export type paths = {
403
435
  /** Sign a transaction. */
404
436
  post: operations["PublicApiService_SignTransaction"];
405
437
  };
438
+ "/public/v1/submit/sol_send_transaction": {
439
+ /** Submit a transaction intent describing an SVM transaction you would like to broadcast. */
440
+ post: operations["PublicApiService_SolSendTransaction"];
441
+ };
406
442
  "/public/v1/submit/stamp_login": {
407
443
  /** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
408
444
  post: operations["PublicApiService_StampLogin"];
@@ -458,6 +494,10 @@ export type paths = {
458
494
  "/tkhq/api/v1/noop-codegen-anchor": {
459
495
  post: operations["PublicApiService_NOOPCodegenAnchor"];
460
496
  };
497
+ "/tkhq/api/v1/refresh_feature_flags": {
498
+ /** Refresh feature flags by triggering a DB read to flush the in-memory cache. */
499
+ post: operations["PublicApiService_RefreshFeatureFlags"];
500
+ };
461
501
  "/tkhq/api/v1/test_rate_limits": {
462
502
  /** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
463
503
  post: operations["PublicApiService_TestRateLimits"];
@@ -658,7 +698,7 @@ export type definitions = {
658
698
  /** @enum {string} */
659
699
  v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
660
700
  /** @enum {string} */
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";
701
+ 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" | "ACTIVITY_TYPE_CREATE_TVC_APP" | "ACTIVITY_TYPE_CREATE_TVC_DEPLOYMENT" | "ACTIVITY_TYPE_CREATE_TVC_MANIFEST_APPROVALS" | "ACTIVITY_TYPE_SOL_SEND_TRANSACTION";
662
702
  /** @enum {string} */
663
703
  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";
664
704
  v1ApiKey: {
@@ -722,6 +762,34 @@ export type definitions = {
722
762
  parameters: definitions["v1ApproveActivityIntent"];
723
763
  generateAppProofs?: boolean;
724
764
  };
765
+ v1AssetBalance: {
766
+ /** @description The caip-19 asset identifier */
767
+ caip19?: string;
768
+ /** @description The asset symbol */
769
+ symbol?: string;
770
+ /** @description The balance in atomic units */
771
+ balance?: string;
772
+ /**
773
+ * Format: int32
774
+ * @description The number of decimals this asset uses
775
+ */
776
+ decimals?: number;
777
+ /** @description Normalized balance values for display purposes only. Do not do any arithmetic or calculations with these, as the results could be imprecise. Use the balance field instead. */
778
+ display?: definitions["v1AssetBalanceDisplay"];
779
+ };
780
+ v1AssetBalanceDisplay: {
781
+ /** @description USD value for display purposes only. Do not do any arithmetic or calculations with these, as the results could be imprecise. */
782
+ usd?: string;
783
+ /** @description Normalized crypto value for display purposes only. Do not do any arithmetic or calculations with these, as the results could be imprecise. */
784
+ crypto?: string;
785
+ };
786
+ v1AssetMetadata: {
787
+ caip19?: string;
788
+ symbol?: string;
789
+ /** Format: int32 */
790
+ decimals?: number;
791
+ logoUrl?: string;
792
+ };
725
793
  v1Attestation: {
726
794
  /** @description The cbor encoded then base64 url encoded id of the credential. */
727
795
  credentialId: string;
@@ -1366,6 +1434,107 @@ export type definitions = {
1366
1434
  wallet?: definitions["v1WalletResult"];
1367
1435
  rootUserIds?: string[];
1368
1436
  };
1437
+ v1CreateTvcAppIntent: {
1438
+ /** @description The name of the new TVC application */
1439
+ name: string;
1440
+ /** @description Quorum public key to use for this application */
1441
+ quorumPublicKey: string;
1442
+ /** @description Unique identifier for an existing TVC operator set to use as the Manifest Set for this TVC application. If left empty, a new Manifest Set configuration is required */
1443
+ manifestSetId?: string;
1444
+ /** @description Configuration to create a new TVC operator set, used as the Manifest Set for this TVC application. If left empty, a Manifest Set ID is required */
1445
+ manifestSetParams?: definitions["v1TvcOperatorSetParams"];
1446
+ /** @description Unique identifier for an existing TVC operator set to use as the Share Set for this TVC application. If left empty, a new Share Set configuration is required */
1447
+ shareSetId?: string;
1448
+ /** @description Configuration to create a new TVC operator set, used as the Share Set for this TVC application. If left empty, a Share Set ID is required */
1449
+ shareSetParams?: definitions["v1TvcOperatorSetParams"];
1450
+ /** @description Enables external connectivity for this TVC app. Default if not provided: false. */
1451
+ externalConnectivity?: boolean;
1452
+ };
1453
+ v1CreateTvcAppRequest: {
1454
+ /** @enum {string} */
1455
+ type: "ACTIVITY_TYPE_CREATE_TVC_APP";
1456
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1457
+ timestampMs: string;
1458
+ /** @description Unique identifier for a given Organization. */
1459
+ organizationId: string;
1460
+ parameters: definitions["v1CreateTvcAppIntent"];
1461
+ };
1462
+ v1CreateTvcAppResult: {
1463
+ /** @description The unique identifier for the TVC application */
1464
+ appId: string;
1465
+ /** @description The unique identifier for the TVC manifest set */
1466
+ manifestSetId: string;
1467
+ /** @description The unique identifier(s) of the manifest set operators */
1468
+ manifestSetOperatorIds: string[];
1469
+ /**
1470
+ * Format: int64
1471
+ * @description The required number of approvals for the manifest set
1472
+ */
1473
+ manifestSetThreshold: number;
1474
+ };
1475
+ v1CreateTvcDeploymentIntent: {
1476
+ /** @description The unique identifier of the to-be-deployed TVC application */
1477
+ appId: string;
1478
+ /** @description The QuorumOS version to use to deploy this application */
1479
+ qosVersion: string;
1480
+ /** @description URL of the container containing the pivot binary */
1481
+ pivotContainerImageUrl: string;
1482
+ /** @description Location of the binary in the pivot container */
1483
+ pivotPath: string;
1484
+ /** @description Arguments to pass to the pivot binary at startup. Encoded as a list of strings, for example ["--foo", "bar"] */
1485
+ pivotArgs: string[];
1486
+ /** @description Digest of the pivot binary in the pivot container. This value will be inserted in the QOS manifest to ensure application integrity. */
1487
+ expectedPivotDigest: string;
1488
+ /** @description URL of the container containing the host binary */
1489
+ hostContainerImageUrl: string;
1490
+ /** @description Location of the binary inside the host container */
1491
+ hostPath: string;
1492
+ /** @description Arguments to pass to the host binary at startup. Encoded as a list of strings, for example ["--foo", "bar"] */
1493
+ hostArgs: string[];
1494
+ /**
1495
+ * Format: int64
1496
+ * @description Optional nonce to ensure uniqueness of the deployment manifest. If not provided, it defaults to the current Unix timestamp in seconds.
1497
+ */
1498
+ nonce?: number;
1499
+ /** @description Optional encrypted pull secret to authorize Turnkey to pull the pivot container image. If your image is public, leave this empty. */
1500
+ pivotContainerEncryptedPullSecret?: string;
1501
+ /** @description Optional encrypted pull secret to authorize Turnkey to pull the host container image. If your image is public, leave this empty. */
1502
+ hostContainerEncryptedPullSecret?: string;
1503
+ };
1504
+ v1CreateTvcDeploymentRequest: {
1505
+ /** @enum {string} */
1506
+ type: "ACTIVITY_TYPE_CREATE_TVC_DEPLOYMENT";
1507
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1508
+ timestampMs: string;
1509
+ /** @description Unique identifier for a given Organization. */
1510
+ organizationId: string;
1511
+ parameters: definitions["v1CreateTvcDeploymentIntent"];
1512
+ };
1513
+ v1CreateTvcDeploymentResult: {
1514
+ /** @description The unique identifier for the TVC deployment */
1515
+ deploymentId: string;
1516
+ /** @description The unique identifier for the TVC manifest */
1517
+ manifestId: string;
1518
+ };
1519
+ v1CreateTvcManifestApprovalsIntent: {
1520
+ /** @description Unique identifier of the TVC deployment to approve */
1521
+ manifestId: string;
1522
+ /** @description List of manifest approvals */
1523
+ approvals: definitions["v1TvcManifestApproval"][];
1524
+ };
1525
+ v1CreateTvcManifestApprovalsRequest: {
1526
+ /** @enum {string} */
1527
+ type: "ACTIVITY_TYPE_APPROVE_TVC_DEPLOYMENT";
1528
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1529
+ timestampMs: string;
1530
+ /** @description Unique identifier for a given Organization. */
1531
+ organizationId: string;
1532
+ parameters: definitions["v1CreateTvcManifestApprovalsIntent"];
1533
+ };
1534
+ v1CreateTvcManifestApprovalsResult: {
1535
+ /** @description The unique identifier(s) for the manifest approvals */
1536
+ approvalIds: string[];
1537
+ };
1369
1538
  v1CreateUserTagIntent: {
1370
1539
  /** @description Human-readable name for a User Tag. */
1371
1540
  userTagName: string;
@@ -1469,7 +1638,13 @@ export type definitions = {
1469
1638
  /** @enum {string} */
1470
1639
  v1CredentialType: "CREDENTIAL_TYPE_WEBAUTHN_AUTHENTICATOR" | "CREDENTIAL_TYPE_API_KEY_P256" | "CREDENTIAL_TYPE_RECOVER_USER_KEY_P256" | "CREDENTIAL_TYPE_API_KEY_SECP256K1" | "CREDENTIAL_TYPE_EMAIL_AUTH_KEY_P256" | "CREDENTIAL_TYPE_API_KEY_ED25519" | "CREDENTIAL_TYPE_OTP_AUTH_KEY_P256" | "CREDENTIAL_TYPE_READ_WRITE_SESSION_KEY_P256" | "CREDENTIAL_TYPE_OAUTH_KEY_P256" | "CREDENTIAL_TYPE_LOGIN";
1471
1640
  /** @enum {string} */
1472
- v1Curve: "CURVE_SECP256K1" | "CURVE_ED25519";
1641
+ v1Curve: "CURVE_SECP256K1" | "CURVE_ED25519" | "CURVE_P256";
1642
+ v1CustomRevertError: {
1643
+ /** @description The name of the custom error. */
1644
+ errorName?: string;
1645
+ /** @description The decoded parameters as a JSON object. */
1646
+ paramsJson?: string;
1647
+ };
1473
1648
  v1DeleteApiKeysIntent: {
1474
1649
  /** @description Unique identifier for a given User. */
1475
1650
  userId: string;
@@ -1976,7 +2151,7 @@ export type definitions = {
1976
2151
  generateAppProofs?: boolean;
1977
2152
  };
1978
2153
  v1EthSendTransactionResult: {
1979
- /** @description The send_transaction_status ID associated with the transaction submission for sponsored transactions */
2154
+ /** @description The send_transaction_status ID associated with the transaction submission */
1980
2155
  sendTransactionStatusId: string;
1981
2156
  };
1982
2157
  v1EthSendTransactionStatus: {
@@ -2136,19 +2311,6 @@ export type definitions = {
2136
2311
  v1GetAppProofsResponse: {
2137
2312
  appProofs: definitions["v1AppProof"][];
2138
2313
  };
2139
- v1GetAttestationDocumentRequest: {
2140
- /** @description Unique identifier for a given organization. */
2141
- organizationId: string;
2142
- /** @description The enclave type, one of: ump, notarizer, signer, evm-parser. */
2143
- enclaveType: string;
2144
- };
2145
- v1GetAttestationDocumentResponse: {
2146
- /**
2147
- * Format: byte
2148
- * @description Raw (CBOR-encoded) attestation document.
2149
- */
2150
- attestationDocument: string;
2151
- };
2152
2314
  v1GetAuthenticatorRequest: {
2153
2315
  /** @description Unique identifier for a given organization. */
2154
2316
  organizationId: string;
@@ -2325,6 +2487,8 @@ export type definitions = {
2325
2487
  eth?: definitions["v1EthSendTransactionStatus"];
2326
2488
  /** @description The error encountered when broadcasting or confirming the transaction, if any. */
2327
2489
  txError?: string;
2490
+ /** @description Structured error information including revert details, if available. */
2491
+ error?: definitions["v1TxError"];
2328
2492
  };
2329
2493
  v1GetSmartContractInterfaceRequest: {
2330
2494
  /** @description Unique identifier for a given organization. */
@@ -2358,6 +2522,44 @@ export type definitions = {
2358
2522
  /** @description List of unique identifiers for the matching sub-organizations. */
2359
2523
  organizationIds: string[];
2360
2524
  };
2525
+ v1GetTvcAppDeploymentsRequest: {
2526
+ /** @description Unique identifier for a given organization. */
2527
+ organizationId: string;
2528
+ /** @description Unique identifier for a given TVC App. */
2529
+ appId: string;
2530
+ };
2531
+ v1GetTvcAppDeploymentsResponse: {
2532
+ /** @description List of deployments for this TVC App */
2533
+ tvcDeployments: definitions["v1TvcDeployment"][];
2534
+ };
2535
+ v1GetTvcAppRequest: {
2536
+ /** @description Unique identifier for a given organization. */
2537
+ organizationId: string;
2538
+ /** @description Unique identifier for a given TVC App. */
2539
+ tvcAppId: string;
2540
+ };
2541
+ v1GetTvcAppResponse: {
2542
+ /** @description Details about a single TVC App */
2543
+ tvcApp: definitions["v1TvcApp"];
2544
+ };
2545
+ v1GetTvcAppsRequest: {
2546
+ /** @description Unique identifier for a given organization. */
2547
+ organizationId: string;
2548
+ };
2549
+ v1GetTvcAppsResponse: {
2550
+ /** @description A list of TVC Apps. */
2551
+ tvcApps: definitions["v1TvcApp"][];
2552
+ };
2553
+ v1GetTvcDeploymentRequest: {
2554
+ /** @description Unique identifier for a given organization. */
2555
+ organizationId: string;
2556
+ /** @description Unique identifier for a given TVC Deployment. */
2557
+ deploymentId: string;
2558
+ };
2559
+ v1GetTvcDeploymentResponse: {
2560
+ /** @description Details about a single TVC Deployment */
2561
+ tvcDeployment: definitions["v1TvcDeployment"];
2562
+ };
2361
2563
  v1GetUserRequest: {
2362
2564
  /** @description Unique identifier for a given organization. */
2363
2565
  organizationId: string;
@@ -2418,6 +2620,18 @@ export type definitions = {
2418
2620
  /** @description A list of accounts generated from a wallet that share a common seed. */
2419
2621
  accounts: definitions["v1WalletAccount"][];
2420
2622
  };
2623
+ v1GetWalletAddressBalancesRequest: {
2624
+ /** @description Unique identifier for a given organization. */
2625
+ organizationId: string;
2626
+ /** @description Address corresponding to a wallet account. */
2627
+ address: string;
2628
+ /** @description The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet). */
2629
+ caip2: string;
2630
+ };
2631
+ v1GetWalletAddressBalancesResponse: {
2632
+ /** @description List of asset balances */
2633
+ balances?: definitions["v1AssetBalance"][];
2634
+ };
2421
2635
  v1GetWalletRequest: {
2422
2636
  /** @description Unique identifier for a given organization. */
2423
2637
  organizationId: string;
@@ -2904,6 +3118,10 @@ export type definitions = {
2904
3118
  initOtpIntentV2?: definitions["v1InitOtpIntentV2"];
2905
3119
  initOtpAuthIntentV3?: definitions["v1InitOtpAuthIntentV3"];
2906
3120
  upsertGasUsageConfigIntent?: definitions["v1UpsertGasUsageConfigIntent"];
3121
+ createTvcAppIntent?: definitions["v1CreateTvcAppIntent"];
3122
+ createTvcDeploymentIntent?: definitions["v1CreateTvcDeploymentIntent"];
3123
+ createTvcManifestApprovalsIntent?: definitions["v1CreateTvcManifestApprovalsIntent"];
3124
+ solSendTransactionIntent?: definitions["v1SolSendTransactionIntent"];
2907
3125
  };
2908
3126
  v1Invitation: {
2909
3127
  /** @description Unique identifier for a given Invitation object. */
@@ -2959,6 +3177,15 @@ export type definitions = {
2959
3177
  /** @description A list of private key tags. */
2960
3178
  privateKeyTags: definitions["datav1Tag"][];
2961
3179
  };
3180
+ v1ListSupportedAssetsRequest: {
3181
+ /** @description Unique identifier for a given organization. */
3182
+ organizationId: string;
3183
+ /** @description The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet). */
3184
+ caip2: string;
3185
+ };
3186
+ v1ListSupportedAssetsResponse: {
3187
+ assets?: definitions["v1AssetMetadata"][];
3188
+ };
2962
3189
  v1ListUserTagsRequest: {
2963
3190
  /** @description Unique identifier for a given organization. */
2964
3191
  organizationId: string;
@@ -2977,6 +3204,17 @@ export type definitions = {
2977
3204
  stamp: definitions["v1WebAuthnStamp"];
2978
3205
  tokenUsage?: definitions["v1TokenUsage"];
2979
3206
  };
3207
+ v1NativeRevertError: {
3208
+ /** @description The type of native error: 'error_string', 'panic', or 'execution_reverted'. */
3209
+ nativeType?: string;
3210
+ /** @description The error message for Error(string) reverts. */
3211
+ message?: string;
3212
+ /**
3213
+ * Format: uint64
3214
+ * @description The panic code for Panic(uint256) reverts.
3215
+ */
3216
+ panicCode?: string;
3217
+ };
2980
3218
  v1Oauth2AuthenticateIntent: {
2981
3219
  /** @description The OAuth 2.0 credential id whose client_id and client_secret will be used in the OAuth 2.0 flow */
2982
3220
  oauth2CredentialId: string;
@@ -3262,6 +3500,12 @@ export type definitions = {
3262
3500
  /** @description ID of the authenticator created. */
3263
3501
  authenticatorId: string[];
3264
3502
  };
3503
+ v1RefreshFeatureFlagsRequest: {
3504
+ [key: string]: unknown;
3505
+ };
3506
+ v1RefreshFeatureFlagsResponse: {
3507
+ [key: string]: unknown;
3508
+ };
3265
3509
  v1RejectActivityIntent: {
3266
3510
  /** @description An artifact verifying a User's action. */
3267
3511
  fingerprint: string;
@@ -3389,6 +3633,24 @@ export type definitions = {
3389
3633
  deleteFiatOnRampCredentialResult?: definitions["v1DeleteFiatOnRampCredentialResult"];
3390
3634
  ethSendTransactionResult?: definitions["v1EthSendTransactionResult"];
3391
3635
  upsertGasUsageConfigResult?: definitions["v1UpsertGasUsageConfigResult"];
3636
+ createTvcAppResult?: definitions["v1CreateTvcAppResult"];
3637
+ createTvcDeploymentResult?: definitions["v1CreateTvcDeploymentResult"];
3638
+ createTvcManifestApprovalsResult?: definitions["v1CreateTvcManifestApprovalsResult"];
3639
+ solSendTransactionResult?: definitions["v1SolSendTransactionResult"];
3640
+ };
3641
+ v1RevertChainEntry: {
3642
+ /** @description The contract address where the revert occurred. */
3643
+ address?: string;
3644
+ /** @description Type of error: 'unknown', 'native', or 'custom'. */
3645
+ errorType?: string;
3646
+ /** @description Human-readable message describing this revert. */
3647
+ displayMessage?: string;
3648
+ /** @description Details for unknown error types. */
3649
+ unknown?: definitions["v1UnknownRevertError"];
3650
+ /** @description Details for native Solidity errors (Error, Panic, execution reverted). */
3651
+ native?: definitions["v1NativeRevertError"];
3652
+ /** @description Details for custom contract errors. */
3653
+ custom?: definitions["v1CustomRevertError"];
3392
3654
  };
3393
3655
  v1RootUserParams: {
3394
3656
  /** @description Human-readable name for a User. */
@@ -3579,6 +3841,35 @@ export type definitions = {
3579
3841
  /** @description Template containing references to .OtpCode i.e Your OTP is {{.OtpCode}} */
3580
3842
  template?: string;
3581
3843
  };
3844
+ v1SolSendTransactionIntent: {
3845
+ /** @description Base64-encoded serialized unsigned Solana transaction */
3846
+ unsignedTransaction: string;
3847
+ /** @description A wallet or private key address to sign with. This does not support private key IDs. */
3848
+ signWith: string;
3849
+ /** @description Whether to sponsor this transaction via Gas Station. */
3850
+ sponsor?: boolean;
3851
+ /**
3852
+ * @description CAIP-2 chain ID (e.g., 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp' for Solana mainnet).
3853
+ * @enum {string}
3854
+ */
3855
+ caip2: "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp" | "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1wcaWoxPkrZBG" | "solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3zQawwpjk2NsNY";
3856
+ /** @description user-provided blockhash for replay protection / deadline control. If omitted and sponsor=true, we fetch a fresh blockhash during execution */
3857
+ recentBlockhash?: string;
3858
+ };
3859
+ v1SolSendTransactionRequest: {
3860
+ /** @enum {string} */
3861
+ type: "ACTIVITY_TYPE_SOL_SEND_TRANSACTION";
3862
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
3863
+ timestampMs: string;
3864
+ /** @description Unique identifier for a given Organization. */
3865
+ organizationId: string;
3866
+ parameters: definitions["v1SolSendTransactionIntent"];
3867
+ generateAppProofs?: boolean;
3868
+ };
3869
+ v1SolSendTransactionResult: {
3870
+ /** @description The send_transaction_status ID associated with the transaction submission */
3871
+ sendTransactionStatusId: string;
3872
+ };
3582
3873
  v1StampLoginIntent: {
3583
3874
  /** @description Client-side public key generated by the user, which will be conditionally added to org data based on the passkey stamp associated with this request */
3584
3875
  publicKey: string;
@@ -3626,7 +3917,153 @@ export type definitions = {
3626
3917
  login?: definitions["v1LoginUsage"];
3627
3918
  };
3628
3919
  /** @enum {string} */
3629
- v1TransactionType: "TRANSACTION_TYPE_ETHEREUM" | "TRANSACTION_TYPE_SOLANA" | "TRANSACTION_TYPE_TRON" | "TRANSACTION_TYPE_BITCOIN";
3920
+ v1TransactionType: "TRANSACTION_TYPE_ETHEREUM" | "TRANSACTION_TYPE_SOLANA" | "TRANSACTION_TYPE_TRON" | "TRANSACTION_TYPE_BITCOIN" | "TRANSACTION_TYPE_TEMPO";
3921
+ v1TvcApp: {
3922
+ /** @description Unique Identifier for this TVC App. */
3923
+ id: string;
3924
+ /** @description Unique Identifier of the Organization for this TVC App */
3925
+ organizationId: string;
3926
+ /** @description Name for this TVC App. */
3927
+ name: string;
3928
+ /** @description Public key for the Quorum Key associated with this TVC App */
3929
+ quorumPublicKey: string;
3930
+ /** @description Manifest Set (people who can approve manifests) */
3931
+ manifestSet: definitions["v1TvcOperatorSet"];
3932
+ /** @description Share Set (people who have a share of the Quorum Key) */
3933
+ shareSet: definitions["v1TvcOperatorSet"];
3934
+ /** @description Whether or not this TVC App has external connectivity enabled. */
3935
+ externalConnectivity: boolean;
3936
+ createdAt: definitions["externaldatav1Timestamp"];
3937
+ updatedAt: definitions["externaldatav1Timestamp"];
3938
+ };
3939
+ v1TvcContainerSpec: {
3940
+ /** @description The URL for this container image. */
3941
+ containerUrl: string;
3942
+ /** @description The path (in-container) to the executable binary. */
3943
+ path: string;
3944
+ /** @description The arguments to pass to the executable. */
3945
+ args: string[];
3946
+ /** @description Whether or not this container requires a pull secret to access. */
3947
+ hasPullSecret: boolean;
3948
+ };
3949
+ v1TvcDeployment: {
3950
+ /** @description Unique Identifier for this TVC Deployment. */
3951
+ id: string;
3952
+ /** @description Unique Identifier of the Organization for this TVC Deployment */
3953
+ organizationId: string;
3954
+ /** @description Unique Identifier of the TVC App for this deployment */
3955
+ appId: string;
3956
+ /** @description Set of TVC operators who can approve this deployment */
3957
+ manifestSet: definitions["v1TvcOperatorSet"];
3958
+ /** @description Set of TVC operators who have a share of the Quorum Key */
3959
+ shareSet: definitions["v1TvcOperatorSet"];
3960
+ /** @description The manifest used for this deployment */
3961
+ manifest: definitions["v1TvcManifest"];
3962
+ /** @description List of operator approvals for this manifest */
3963
+ manifestApprovals: definitions["v1TvcOperatorApproval"][];
3964
+ /** @description QOS Version used for this deployment */
3965
+ qosVersion: string;
3966
+ /** @description The pivot container spec for this deployment */
3967
+ pivotContainer: definitions["v1TvcContainerSpec"];
3968
+ /** @description The pivot container spec for this deployment */
3969
+ hostContainer: definitions["v1TvcContainerSpec"];
3970
+ /** @description Current stage for this deployment */
3971
+ stage: definitions["v1TvcDeploymentStage"];
3972
+ createdAt: definitions["externaldatav1Timestamp"];
3973
+ updatedAt: definitions["externaldatav1Timestamp"];
3974
+ };
3975
+ /** @enum {string} */
3976
+ v1TvcDeploymentStage: "TVC_DEPLOYMENT_STAGE_APPROVE" | "TVC_DEPLOYMENT_STAGE_PROVISION" | "TVC_DEPLOYMENT_STAGE_LIVE" | "TVC_DEPLOYMENT_STAGE_DELETE";
3977
+ v1TvcManifest: {
3978
+ /** @description Unique Identifier for this TVC Manifest. */
3979
+ id: string;
3980
+ /**
3981
+ * Format: byte
3982
+ * @description The manifest content (raw UTF-8 JSON bytes)
3983
+ */
3984
+ manifest: string;
3985
+ createdAt: definitions["externaldatav1Timestamp"];
3986
+ updatedAt: definitions["externaldatav1Timestamp"];
3987
+ };
3988
+ v1TvcManifestApproval: {
3989
+ /** @description Unique identifier of the operator providing this approval */
3990
+ operatorId: string;
3991
+ /** @description Signature from the operator approving the manifest */
3992
+ signature: string;
3993
+ };
3994
+ v1TvcOperator: {
3995
+ /** @description Unique Identifier for this TVC Operator. */
3996
+ id: string;
3997
+ /** @description Name of this TVC Operator. */
3998
+ name: string;
3999
+ /** @description Public key for this TVC Operator. */
4000
+ publicKey: string;
4001
+ createdAt: definitions["externaldatav1Timestamp"];
4002
+ updatedAt: definitions["externaldatav1Timestamp"];
4003
+ };
4004
+ v1TvcOperatorApproval: {
4005
+ /** @description Unique ID for this approval */
4006
+ id: string;
4007
+ /** @description Unique Identifier of the TVC Manifest being approved */
4008
+ manifestId: string;
4009
+ /** @description The TVC Operator who made this approval */
4010
+ operator: definitions["v1TvcOperator"];
4011
+ /**
4012
+ * Format: byte
4013
+ * @description Signature of the operator over the deployment manifest
4014
+ */
4015
+ approval: string;
4016
+ createdAt: definitions["externaldatav1Timestamp"];
4017
+ updatedAt: definitions["externaldatav1Timestamp"];
4018
+ };
4019
+ v1TvcOperatorParams: {
4020
+ /** @description The name for this new operator */
4021
+ name: string;
4022
+ /** @description Public key for this operator */
4023
+ publicKey: string;
4024
+ };
4025
+ v1TvcOperatorSet: {
4026
+ /** @description Unique Identifier for this TVC Operator Set. */
4027
+ id: string;
4028
+ /** @description Name of this TVC Operator Set. */
4029
+ name: string;
4030
+ /** @description Unique Identifier of the Organization for this TVC Operator Set */
4031
+ organizationId: string;
4032
+ /** @description List of TVC Operators in this set */
4033
+ operators: definitions["v1TvcOperator"][];
4034
+ /**
4035
+ * Format: int64
4036
+ * @description Threshold number of operators required for quorum.
4037
+ */
4038
+ threshold: number;
4039
+ createdAt: definitions["externaldatav1Timestamp"];
4040
+ updatedAt: definitions["externaldatav1Timestamp"];
4041
+ };
4042
+ v1TvcOperatorSetParams: {
4043
+ /** @description Short description for this new operator set */
4044
+ name: string;
4045
+ /** @description Operators to create as part of this new operator set */
4046
+ newOperators?: definitions["v1TvcOperatorParams"][];
4047
+ /** @description Existing operators to use as part of this new operator set */
4048
+ existingOperatorIds?: string[];
4049
+ /**
4050
+ * Format: int64
4051
+ * @description The threshold of operators needed to reach consensus in this new Operator Set
4052
+ */
4053
+ threshold: number;
4054
+ };
4055
+ v1TxError: {
4056
+ /** @description Human-readable error message describing what went wrong. */
4057
+ message?: string;
4058
+ /** @description Chain of revert errors from nested contract calls, ordered from outermost to innermost. */
4059
+ revertChain?: definitions["v1RevertChainEntry"][];
4060
+ };
4061
+ v1UnknownRevertError: {
4062
+ /** @description The 4-byte error selector, if available. */
4063
+ selector?: string;
4064
+ /** @description The raw error data, hex-encoded. */
4065
+ data?: string;
4066
+ };
3630
4067
  v1UpdateAllowedOriginsIntent: {
3631
4068
  /** @description Additional origins requests are allowed from besides Turnkey origins */
3632
4069
  allowedOrigins: string[];
@@ -3969,6 +4406,8 @@ export type definitions = {
3969
4406
  subOrgWindowLimitUsd: string;
3970
4407
  /** @description Rolling sponsorship window duration, expressed in minutes. */
3971
4408
  windowDurationMinutes: string;
4409
+ /** @description Whether gas sponsorship is enabled for the organization. */
4410
+ enabled?: boolean;
3972
4411
  };
3973
4412
  v1UpsertGasUsageConfigResult: {
3974
4413
  /** @description Unique identifier for the gas usage configuration that was created or updated. */
@@ -4230,24 +4669,6 @@ export type operations = {
4230
4669
  };
4231
4670
  };
4232
4671
  };
4233
- /** Get the attestation document corresponding to an enclave. */
4234
- PublicApiService_GetAttestationDocument: {
4235
- parameters: {
4236
- body: {
4237
- body: definitions["v1GetAttestationDocumentRequest"];
4238
- };
4239
- };
4240
- responses: {
4241
- /** A successful response. */
4242
- 200: {
4243
- schema: definitions["v1GetAttestationDocumentResponse"];
4244
- };
4245
- /** An unexpected error response. */
4246
- default: {
4247
- schema: definitions["rpcStatus"];
4248
- };
4249
- };
4250
- };
4251
4672
  /** Get details about an authenticator. */
4252
4673
  PublicApiService_GetAuthenticator: {
4253
4674
  parameters: {
@@ -4536,6 +4957,42 @@ export type operations = {
4536
4957
  };
4537
4958
  };
4538
4959
  };
4960
+ /** Get details about a single TVC App */
4961
+ PublicApiService_GetTvcApp: {
4962
+ parameters: {
4963
+ body: {
4964
+ body: definitions["v1GetTvcAppRequest"];
4965
+ };
4966
+ };
4967
+ responses: {
4968
+ /** A successful response. */
4969
+ 200: {
4970
+ schema: definitions["v1GetTvcAppResponse"];
4971
+ };
4972
+ /** An unexpected error response. */
4973
+ default: {
4974
+ schema: definitions["rpcStatus"];
4975
+ };
4976
+ };
4977
+ };
4978
+ /** Get details about a single TVC Deployment */
4979
+ PublicApiService_GetTvcDeployment: {
4980
+ parameters: {
4981
+ body: {
4982
+ body: definitions["v1GetTvcDeploymentRequest"];
4983
+ };
4984
+ };
4985
+ responses: {
4986
+ /** A successful response. */
4987
+ 200: {
4988
+ schema: definitions["v1GetTvcDeploymentResponse"];
4989
+ };
4990
+ /** An unexpected error response. */
4991
+ default: {
4992
+ schema: definitions["rpcStatus"];
4993
+ };
4994
+ };
4995
+ };
4539
4996
  /** Get details about a user. */
4540
4997
  PublicApiService_GetUser: {
4541
4998
  parameters: {
@@ -4590,6 +5047,24 @@ export type operations = {
4590
5047
  };
4591
5048
  };
4592
5049
  };
5050
+ /** Get non-zero balances of supported assets for a single wallet account address on the specified network. */
5051
+ PublicApiService_GetWalletAddressBalances: {
5052
+ parameters: {
5053
+ body: {
5054
+ body: definitions["v1GetWalletAddressBalancesRequest"];
5055
+ };
5056
+ };
5057
+ responses: {
5058
+ /** A successful response. */
5059
+ 200: {
5060
+ schema: definitions["v1GetWalletAddressBalancesResponse"];
5061
+ };
5062
+ /** An unexpected error response. */
5063
+ default: {
5064
+ schema: definitions["rpcStatus"];
5065
+ };
5066
+ };
5067
+ };
4593
5068
  /** List all activities within an organization. */
4594
5069
  PublicApiService_GetActivities: {
4595
5070
  parameters: {
@@ -4752,6 +5227,60 @@ export type operations = {
4752
5227
  };
4753
5228
  };
4754
5229
  };
5230
+ /** List supported assets for the specified network */
5231
+ PublicApiService_ListSupportedAssets: {
5232
+ parameters: {
5233
+ body: {
5234
+ body: definitions["v1ListSupportedAssetsRequest"];
5235
+ };
5236
+ };
5237
+ responses: {
5238
+ /** A successful response. */
5239
+ 200: {
5240
+ schema: definitions["v1ListSupportedAssetsResponse"];
5241
+ };
5242
+ /** An unexpected error response. */
5243
+ default: {
5244
+ schema: definitions["rpcStatus"];
5245
+ };
5246
+ };
5247
+ };
5248
+ /** List all deployments for a given TVC App */
5249
+ PublicApiService_GetTvcAppDeployments: {
5250
+ parameters: {
5251
+ body: {
5252
+ body: definitions["v1GetTvcAppDeploymentsRequest"];
5253
+ };
5254
+ };
5255
+ responses: {
5256
+ /** A successful response. */
5257
+ 200: {
5258
+ schema: definitions["v1GetTvcAppDeploymentsResponse"];
5259
+ };
5260
+ /** An unexpected error response. */
5261
+ default: {
5262
+ schema: definitions["rpcStatus"];
5263
+ };
5264
+ };
5265
+ };
5266
+ /** List all TVC Apps within an organization. */
5267
+ PublicApiService_GetTvcApps: {
5268
+ parameters: {
5269
+ body: {
5270
+ body: definitions["v1GetTvcAppsRequest"];
5271
+ };
5272
+ };
5273
+ responses: {
5274
+ /** A successful response. */
5275
+ 200: {
5276
+ schema: definitions["v1GetTvcAppsResponse"];
5277
+ };
5278
+ /** An unexpected error response. */
5279
+ default: {
5280
+ schema: definitions["rpcStatus"];
5281
+ };
5282
+ };
5283
+ };
4755
5284
  /** List all user tags within an organization. */
4756
5285
  PublicApiService_ListUserTags: {
4757
5286
  parameters: {
@@ -5148,6 +5677,60 @@ export type operations = {
5148
5677
  };
5149
5678
  };
5150
5679
  };
5680
+ /** Create a new TVC application */
5681
+ PublicApiService_CreateTvcApp: {
5682
+ parameters: {
5683
+ body: {
5684
+ body: definitions["v1CreateTvcAppRequest"];
5685
+ };
5686
+ };
5687
+ responses: {
5688
+ /** A successful response. */
5689
+ 200: {
5690
+ schema: definitions["v1ActivityResponse"];
5691
+ };
5692
+ /** An unexpected error response. */
5693
+ default: {
5694
+ schema: definitions["rpcStatus"];
5695
+ };
5696
+ };
5697
+ };
5698
+ /** Create a new TVC Deployment */
5699
+ PublicApiService_CreateTvcDeployment: {
5700
+ parameters: {
5701
+ body: {
5702
+ body: definitions["v1CreateTvcDeploymentRequest"];
5703
+ };
5704
+ };
5705
+ responses: {
5706
+ /** A successful response. */
5707
+ 200: {
5708
+ schema: definitions["v1ActivityResponse"];
5709
+ };
5710
+ /** An unexpected error response. */
5711
+ default: {
5712
+ schema: definitions["rpcStatus"];
5713
+ };
5714
+ };
5715
+ };
5716
+ /** Post one or more manifest approvals for a TVC Manifest */
5717
+ PublicApiService_CreateTvcManifestApprovals: {
5718
+ parameters: {
5719
+ body: {
5720
+ body: definitions["v1CreateTvcManifestApprovalsRequest"];
5721
+ };
5722
+ };
5723
+ responses: {
5724
+ /** A successful response. */
5725
+ 200: {
5726
+ schema: definitions["v1ActivityResponse"];
5727
+ };
5728
+ /** An unexpected error response. */
5729
+ default: {
5730
+ schema: definitions["rpcStatus"];
5731
+ };
5732
+ };
5733
+ };
5151
5734
  /** Create a user tag and add it to users. */
5152
5735
  PublicApiService_CreateUserTag: {
5153
5736
  parameters: {
@@ -5544,7 +6127,7 @@ export type operations = {
5544
6127
  };
5545
6128
  };
5546
6129
  };
5547
- /** Submit a transaction intent describing a transaction you would like to broadcast. */
6130
+ /** Submit a transaction intent describing an EVM transaction you would like to broadcast. */
5548
6131
  PublicApiService_EthSendTransaction: {
5549
6132
  parameters: {
5550
6133
  body: {
@@ -5976,6 +6559,24 @@ export type operations = {
5976
6559
  };
5977
6560
  };
5978
6561
  };
6562
+ /** Submit a transaction intent describing an SVM transaction you would like to broadcast. */
6563
+ PublicApiService_SolSendTransaction: {
6564
+ parameters: {
6565
+ body: {
6566
+ body: definitions["v1SolSendTransactionRequest"];
6567
+ };
6568
+ };
6569
+ responses: {
6570
+ /** A successful response. */
6571
+ 200: {
6572
+ schema: definitions["v1ActivityResponse"];
6573
+ };
6574
+ /** An unexpected error response. */
6575
+ default: {
6576
+ schema: definitions["rpcStatus"];
6577
+ };
6578
+ };
6579
+ };
5979
6580
  /** Create a session for a user through stamping client side (API key, wallet client, or passkey client). */
5980
6581
  PublicApiService_StampLogin: {
5981
6582
  parameters: {
@@ -6222,6 +6823,24 @@ export type operations = {
6222
6823
  };
6223
6824
  };
6224
6825
  };
6826
+ /** Refresh feature flags by triggering a DB read to flush the in-memory cache. */
6827
+ PublicApiService_RefreshFeatureFlags: {
6828
+ parameters: {
6829
+ body: {
6830
+ body: definitions["v1RefreshFeatureFlagsRequest"];
6831
+ };
6832
+ };
6833
+ responses: {
6834
+ /** A successful response. */
6835
+ 200: {
6836
+ schema: definitions["v1RefreshFeatureFlagsResponse"];
6837
+ };
6838
+ /** An unexpected error response. */
6839
+ default: {
6840
+ schema: definitions["rpcStatus"];
6841
+ };
6842
+ };
6843
+ };
6225
6844
  /** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
6226
6845
  PublicApiService_TestRateLimits: {
6227
6846
  parameters: {