@turnkey/http 3.17.1 → 3.18.1

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,6 +15,10 @@ 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_app_status": {
19
+ /** Get live runtime status for a TVC App from the cluster. */
20
+ post: operations["PublicApiService_GetAppStatus"];
21
+ };
18
22
  "/public/v1/query/get_authenticator": {
19
23
  /** Get details about an authenticator. */
20
24
  post: operations["PublicApiService_GetAuthenticator"];
@@ -51,10 +55,6 @@ export type paths = {
51
55
  /** Get the status of an on ramp transaction. */
52
56
  post: operations["PublicApiService_GetOnRampTransactionStatus"];
53
57
  };
54
- "/public/v1/query/get_organization": {
55
- /** Get details about an organization. */
56
- post: operations["PublicApiService_GetOrganization"];
57
- };
58
58
  "/public/v1/query/get_organization_configs": {
59
59
  /** Get quorum settings and features for an organization. */
60
60
  post: operations["PublicApiService_GetOrganizationConfigs"];
@@ -79,14 +79,6 @@ export type paths = {
79
79
  /** Get details about a smart contract interface. */
80
80
  post: operations["PublicApiService_GetSmartContractInterface"];
81
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
- };
90
82
  "/public/v1/query/get_user": {
91
83
  /** Get details about a user. */
92
84
  post: operations["PublicApiService_GetUser"];
@@ -100,7 +92,7 @@ export type paths = {
100
92
  post: operations["PublicApiService_GetWalletAccount"];
101
93
  };
102
94
  "/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. */
95
+ /** Get balances of supported assets for an address on the specified network. Only non-zero balances are returned. This feature is in beta - please contact support for access. */
104
96
  post: operations["PublicApiService_GetWalletAddressBalances"];
105
97
  };
106
98
  "/public/v1/query/list_activities": {
@@ -140,17 +132,9 @@ export type paths = {
140
132
  post: operations["PublicApiService_GetSubOrgIds"];
141
133
  };
142
134
  "/public/v1/query/list_supported_assets": {
143
- /** List supported assets for the specified network */
135
+ /** List supported assets for the specified network. This feature is in beta - please contact support for access. */
144
136
  post: operations["PublicApiService_ListSupportedAssets"];
145
137
  };
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
- };
154
138
  "/public/v1/query/list_user_tags": {
155
139
  /** List all user tags within an organization. */
156
140
  post: operations["PublicApiService_ListUserTags"];
@@ -171,6 +155,10 @@ export type paths = {
171
155
  /** List all wallets within an organization. */
172
156
  post: operations["PublicApiService_GetWallets"];
173
157
  };
158
+ "/public/v1/query/list_webhook_endpoints": {
159
+ /** List webhook endpoints within an organization. */
160
+ post: operations["PublicApiService_ListWebhookEndpoints"];
161
+ };
174
162
  "/public/v1/query/whoami": {
175
163
  /** Get basic information about your current API or WebAuthN user and their organization. Affords sub-organization look ups via parent organization for WebAuthN or API key users. */
176
164
  post: operations["PublicApiService_GetWhoami"];
@@ -239,18 +227,6 @@ export type paths = {
239
227
  /** Create a new sub-organization. */
240
228
  post: operations["PublicApiService_CreateSubOrganization"];
241
229
  };
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
- };
254
230
  "/public/v1/submit/create_user_tag": {
255
231
  /** Create a user tag and add it to users. */
256
232
  post: operations["PublicApiService_CreateUserTag"];
@@ -267,6 +243,10 @@ export type paths = {
267
243
  /** Derive additional addresses using an existing wallet. */
268
244
  post: operations["PublicApiService_CreateWalletAccounts"];
269
245
  };
246
+ "/public/v1/submit/create_webhook_endpoint": {
247
+ /** Create a webhook endpoint for an organization. */
248
+ post: operations["PublicApiService_CreateWebhookEndpoint"];
249
+ };
270
250
  "/public/v1/submit/delete_api_keys": {
271
251
  /** Remove api keys from a user. */
272
252
  post: operations["PublicApiService_DeleteApiKeys"];
@@ -331,14 +311,14 @@ export type paths = {
331
311
  /** Delete wallets for an organization. */
332
312
  post: operations["PublicApiService_DeleteWallets"];
333
313
  };
314
+ "/public/v1/submit/delete_webhook_endpoint": {
315
+ /** Delete a webhook endpoint for an organization. */
316
+ post: operations["PublicApiService_DeleteWebhookEndpoint"];
317
+ };
334
318
  "/public/v1/submit/email_auth": {
335
319
  /** Authenticate a user via email. */
336
320
  post: operations["PublicApiService_EmailAuth"];
337
321
  };
338
- "/public/v1/submit/eth_send_raw_transaction": {
339
- /** Submit a raw transaction (serialized and signed) for broadcasting to the network. */
340
- post: operations["PublicApiService_EthSendRawTransaction"];
341
- };
342
322
  "/public/v1/submit/eth_send_transaction": {
343
323
  /** Submit a transaction intent describing an EVM transaction you would like to broadcast. */
344
324
  post: operations["PublicApiService_EthSendTransaction"];
@@ -451,6 +431,10 @@ export type paths = {
451
431
  /** Update an OAuth 2.0 provider credential */
452
432
  post: operations["PublicApiService_UpdateOauth2Credential"];
453
433
  };
434
+ "/public/v1/submit/update_organization_name": {
435
+ /** Update the name of an organization. */
436
+ post: operations["PublicApiService_UpdateOrganizationName"];
437
+ };
454
438
  "/public/v1/submit/update_policy": {
455
439
  /** Update an existing policy. */
456
440
  post: operations["PublicApiService_UpdatePolicy"];
@@ -487,6 +471,10 @@ export type paths = {
487
471
  /** Update a wallet for an organization. */
488
472
  post: operations["PublicApiService_UpdateWallet"];
489
473
  };
474
+ "/public/v1/submit/update_webhook_endpoint": {
475
+ /** Update a webhook endpoint for an organization. */
476
+ post: operations["PublicApiService_UpdateWebhookEndpoint"];
477
+ };
490
478
  "/public/v1/submit/verify_otp": {
491
479
  /** Verify a generic OTP. */
492
480
  post: operations["PublicApiService_VerifyOtp"];
@@ -494,14 +482,6 @@ export type paths = {
494
482
  "/tkhq/api/v1/noop-codegen-anchor": {
495
483
  post: operations["PublicApiService_NOOPCodegenAnchor"];
496
484
  };
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
- };
501
- "/tkhq/api/v1/test_rate_limits": {
502
- /** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
503
- post: operations["PublicApiService_TestRateLimits"];
504
- };
505
485
  };
506
486
  export type definitions = {
507
487
  apiApiKeyParams: {
@@ -698,7 +678,7 @@ export type definitions = {
698
678
  /** @enum {string} */
699
679
  v1ActivityStatus: "ACTIVITY_STATUS_CREATED" | "ACTIVITY_STATUS_PENDING" | "ACTIVITY_STATUS_COMPLETED" | "ACTIVITY_STATUS_FAILED" | "ACTIVITY_STATUS_CONSENSUS_NEEDED" | "ACTIVITY_STATUS_REJECTED";
700
680
  /** @enum {string} */
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";
681
+ 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" | "ACTIVITY_TYPE_UPDATE_ORGANIZATION_NAME" | "ACTIVITY_TYPE_CREATE_WEBHOOK_ENDPOINT" | "ACTIVITY_TYPE_UPDATE_WEBHOOK_ENDPOINT" | "ACTIVITY_TYPE_DELETE_WEBHOOK_ENDPOINT";
702
682
  /** @enum {string} */
703
683
  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";
704
684
  v1ApiKey: {
@@ -748,6 +728,14 @@ export type definitions = {
748
728
  /** @description Signature over hashed proof_payload. */
749
729
  signature: string;
750
730
  };
731
+ v1AppStatus: {
732
+ /** @description Unique identifier for this TVC App */
733
+ appId: string;
734
+ /** @description List of deployment statuses for this app */
735
+ deployments: definitions["v1DeploymentStatus"][];
736
+ /** @description The deployment ID currently serving traffic for this app */
737
+ targetedDeploymentId: string;
738
+ };
751
739
  v1ApproveActivityIntent: {
752
740
  /** @description An artifact verifying a User's action. */
753
741
  fingerprint: string;
@@ -776,6 +764,8 @@ export type definitions = {
776
764
  decimals?: number;
777
765
  /** @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
766
  display?: definitions["v1AssetBalanceDisplay"];
767
+ /** @description The asset name */
768
+ name?: string;
779
769
  };
780
770
  v1AssetBalanceDisplay: {
781
771
  /** @description USD value for display purposes only. Do not do any arithmetic or calculations with these, as the results could be imprecise. */
@@ -784,11 +774,19 @@ export type definitions = {
784
774
  crypto?: string;
785
775
  };
786
776
  v1AssetMetadata: {
777
+ /** @description The caip-19 asset identifier */
787
778
  caip19?: string;
779
+ /** @description The asset symbol */
788
780
  symbol?: string;
789
- /** Format: int32 */
781
+ /**
782
+ * Format: int32
783
+ * @description The number of decimals this asset uses
784
+ */
790
785
  decimals?: number;
786
+ /** @description The url of the asset logo */
791
787
  logoUrl?: string;
788
+ /** @description The asset name */
789
+ name?: string;
792
790
  };
793
791
  v1Attestation: {
794
792
  /** @description The cbor encoded then base64 url encoded id of the credential. */
@@ -1447,17 +1445,8 @@ export type definitions = {
1447
1445
  shareSetId?: string;
1448
1446
  /** @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
1447
  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"];
1448
+ /** @description Enables network egress for this TVC app. Default if not provided: false. */
1449
+ enableEgress?: boolean;
1461
1450
  };
1462
1451
  v1CreateTvcAppResult: {
1463
1452
  /** @description The unique identifier for the TVC application */
@@ -1485,12 +1474,6 @@ export type definitions = {
1485
1474
  pivotArgs: string[];
1486
1475
  /** @description Digest of the pivot binary in the pivot container. This value will be inserted in the QOS manifest to ensure application integrity. */
1487
1476
  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
1477
  /**
1495
1478
  * Format: int64
1496
1479
  * @description Optional nonce to ensure uniqueness of the deployment manifest. If not provided, it defaults to the current Unix timestamp in seconds.
@@ -1498,17 +1481,20 @@ export type definitions = {
1498
1481
  nonce?: number;
1499
1482
  /** @description Optional encrypted pull secret to authorize Turnkey to pull the pivot container image. If your image is public, leave this empty. */
1500
1483
  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"];
1484
+ /** @description Optional flag to indicate whether to deploy the TVC app in debug mode, which includes additional logging and debugging tools. Default is false. */
1485
+ debugMode?: boolean;
1486
+ /** @description Heath check type (TVC_HEALTH_CHECK_TYPE_HTTP or TVC_HEALTH_CHECK_TYPE_GRPC). HTTP health checks are made with a GET request on /health, and gRPC health checks follow the standard gRPC health checking protocol. */
1487
+ healthCheckType: definitions["v1TvcHealthCheckType"];
1488
+ /**
1489
+ * Format: int64
1490
+ * @description Port to use for health checks.
1491
+ */
1492
+ healthCheckPort: number;
1493
+ /**
1494
+ * Format: int64
1495
+ * @description Port to use for public ingress.
1496
+ */
1497
+ publicIngressPort: number;
1512
1498
  };
1513
1499
  v1CreateTvcDeploymentResult: {
1514
1500
  /** @description The unique identifier for the TVC deployment */
@@ -1522,15 +1508,6 @@ export type definitions = {
1522
1508
  /** @description List of manifest approvals */
1523
1509
  approvals: definitions["v1TvcManifestApproval"][];
1524
1510
  };
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
1511
  v1CreateTvcManifestApprovalsResult: {
1535
1512
  /** @description The unique identifier(s) for the manifest approvals */
1536
1513
  approvalIds: string[];
@@ -1632,6 +1609,30 @@ export type definitions = {
1632
1609
  /** @description A list of account addresses. */
1633
1610
  addresses: string[];
1634
1611
  };
1612
+ v1CreateWebhookEndpointIntent: {
1613
+ /** @description The destination URL for webhook delivery. */
1614
+ url: string;
1615
+ /** @description Human-readable name for this webhook endpoint. */
1616
+ name: string;
1617
+ /** @description Event subscriptions to create for this endpoint. */
1618
+ subscriptions?: definitions["v1WebhookSubscriptionParams"][];
1619
+ };
1620
+ v1CreateWebhookEndpointRequest: {
1621
+ /** @enum {string} */
1622
+ type: "ACTIVITY_TYPE_CREATE_WEBHOOK_ENDPOINT";
1623
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1624
+ timestampMs: string;
1625
+ /** @description Unique identifier for a given Organization. */
1626
+ organizationId: string;
1627
+ parameters: definitions["v1CreateWebhookEndpointIntent"];
1628
+ generateAppProofs?: boolean;
1629
+ };
1630
+ v1CreateWebhookEndpointResult: {
1631
+ /** @description Unique identifier of the created webhook endpoint. */
1632
+ endpointId: string;
1633
+ /** @description The created webhook endpoint data. */
1634
+ webhookEndpoint: definitions["v1WebhookEndpointData"];
1635
+ };
1635
1636
  v1CredPropsAuthenticationExtensionsClientOutputs: {
1636
1637
  rk: boolean;
1637
1638
  };
@@ -1957,6 +1958,40 @@ export type definitions = {
1957
1958
  /** @description A list of wallet unique identifiers that were removed */
1958
1959
  walletIds: string[];
1959
1960
  };
1961
+ v1DeleteWebhookEndpointIntent: {
1962
+ /** @description Unique identifier of the webhook endpoint to delete. */
1963
+ endpointId: string;
1964
+ };
1965
+ v1DeleteWebhookEndpointRequest: {
1966
+ /** @enum {string} */
1967
+ type: "ACTIVITY_TYPE_DELETE_WEBHOOK_ENDPOINT";
1968
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
1969
+ timestampMs: string;
1970
+ /** @description Unique identifier for a given Organization. */
1971
+ organizationId: string;
1972
+ parameters: definitions["v1DeleteWebhookEndpointIntent"];
1973
+ generateAppProofs?: boolean;
1974
+ };
1975
+ v1DeleteWebhookEndpointResult: {
1976
+ /** @description Unique identifier of the deleted webhook endpoint. */
1977
+ endpointId: string;
1978
+ };
1979
+ v1DeploymentStatus: {
1980
+ /** @description Unique identifier for this deployment (corresponds to k8s deployment label) */
1981
+ deploymentId: string;
1982
+ /**
1983
+ * Format: int32
1984
+ * @description Number of ready replicas
1985
+ */
1986
+ readyReplicas: number;
1987
+ /**
1988
+ * Format: int32
1989
+ * @description Desired number of replicas
1990
+ */
1991
+ desiredReplicas: number;
1992
+ /** @description Last time this deployment was updated */
1993
+ lastUpdatedTime: definitions["externaldatav1Timestamp"];
1994
+ };
1960
1995
  v1DisableAuthProxyIntent: {
1961
1996
  [key: string]: unknown;
1962
1997
  };
@@ -2090,6 +2125,10 @@ export type definitions = {
2090
2125
  /** @description A User ID with permission to initiate authentication. */
2091
2126
  userId: string;
2092
2127
  };
2128
+ v1EthFailureDetails: {
2129
+ /** @description Ethereum revert chain, ordered from outermost to innermost. */
2130
+ revertChain?: definitions["v1RevertChainEntry"][];
2131
+ };
2093
2132
  v1EthSendRawTransactionIntent: {
2094
2133
  /** @description The raw, signed transaction to be sent. */
2095
2134
  signedTransaction: string;
@@ -2097,17 +2136,7 @@ export type definitions = {
2097
2136
  * @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
2098
2137
  * @enum {string}
2099
2138
  */
2100
- caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532";
2101
- };
2102
- v1EthSendRawTransactionRequest: {
2103
- /** @enum {string} */
2104
- type: "ACTIVITY_TYPE_ETH_SEND_RAW_TRANSACTION";
2105
- /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
2106
- timestampMs: string;
2107
- /** @description Unique identifier for a given Organization. */
2108
- organizationId: string;
2109
- parameters: definitions["v1EthSendRawTransactionIntent"];
2110
- generateAppProofs?: boolean;
2139
+ caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532" | "eip155:137" | "eip155:80002";
2111
2140
  };
2112
2141
  v1EthSendRawTransactionResult: {
2113
2142
  /** @description The transaction hash of the sent transaction */
@@ -2231,7 +2260,7 @@ export type definitions = {
2231
2260
  value?: string;
2232
2261
  };
2233
2262
  /** @enum {string} */
2234
- 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";
2263
+ 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" | "FEATURE_NAME_SOLANA_RENT_PREFUND_ENABLED";
2235
2264
  /** @enum {string} */
2236
2265
  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";
2237
2266
  v1FiatOnRampCredential: {
@@ -2311,6 +2340,16 @@ export type definitions = {
2311
2340
  v1GetAppProofsResponse: {
2312
2341
  appProofs: definitions["v1AppProof"][];
2313
2342
  };
2343
+ v1GetAppStatusRequest: {
2344
+ /** @description Unique identifier for a given Organization. */
2345
+ organizationId: string;
2346
+ /** @description Unique identifier for a given TVC App. */
2347
+ appId: string;
2348
+ };
2349
+ v1GetAppStatusResponse: {
2350
+ /** @description Live runtime status for the TVC App */
2351
+ appStatus: definitions["v1AppStatus"];
2352
+ };
2314
2353
  v1GetAuthenticatorRequest: {
2315
2354
  /** @description Unique identifier for a given organization. */
2316
2355
  organizationId: string;
@@ -2363,8 +2402,11 @@ export type definitions = {
2363
2402
  organizationId: string;
2364
2403
  /** @description The Ethereum address to query nonces for. */
2365
2404
  address: string;
2366
- /** @description The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet). */
2367
- caip2: string;
2405
+ /**
2406
+ * @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet).
2407
+ * @enum {string}
2408
+ */
2409
+ caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532" | "eip155:137" | "eip155:80002";
2368
2410
  /** @description Whether to fetch the standard on-chain nonce. */
2369
2411
  nonce?: boolean;
2370
2412
  /** @description Whether to fetch the gas station nonce used for sponsored transactions. */
@@ -2421,14 +2463,6 @@ export type definitions = {
2421
2463
  /** @description Organization configs including quorum settings and organization features. */
2422
2464
  configs: definitions["v1Config"];
2423
2465
  };
2424
- v1GetOrganizationRequest: {
2425
- /** @description Unique identifier for a given organization. */
2426
- organizationId: string;
2427
- };
2428
- v1GetOrganizationResponse: {
2429
- /** @description Object representing the full current and deleted / disabled collection of users, policies, private keys, and invitations attributable to a particular organization. */
2430
- organizationData: definitions["v1OrganizationData"];
2431
- };
2432
2466
  v1GetPoliciesRequest: {
2433
2467
  /** @description Unique identifier for a given organization. */
2434
2468
  organizationId: string;
@@ -2485,6 +2519,8 @@ export type definitions = {
2485
2519
  txStatus: string;
2486
2520
  /** @description Ethereum-specific transaction status. */
2487
2521
  eth?: definitions["v1EthSendTransactionStatus"];
2522
+ /** @description Solana-specific transaction status. */
2523
+ solana?: definitions["v1SolanaSendTransactionStatus"];
2488
2524
  /** @description The error encountered when broadcasting or confirming the transaction, if any. */
2489
2525
  txError?: string;
2490
2526
  /** @description Structured error information including revert details, if available. */
@@ -2522,44 +2558,6 @@ export type definitions = {
2522
2558
  /** @description List of unique identifiers for the matching sub-organizations. */
2523
2559
  organizationIds: string[];
2524
2560
  };
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
- };
2563
2561
  v1GetUserRequest: {
2564
2562
  /** @description Unique identifier for a given organization. */
2565
2563
  organizationId: string;
@@ -2625,8 +2623,11 @@ export type definitions = {
2625
2623
  organizationId: string;
2626
2624
  /** @description Address corresponding to a wallet account. */
2627
2625
  address: string;
2628
- /** @description The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet). */
2629
- caip2: string;
2626
+ /**
2627
+ * @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet or 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp' for Solana mainnet). Human-readable Solana aliases ('solana:mainnet', 'solana:devnet') are also accepted and normalized to canonical CAIP-2 values.
2628
+ * @enum {string}
2629
+ */
2630
+ caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532" | "eip155:137" | "eip155:80002" | "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp" | "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1";
2630
2631
  };
2631
2632
  v1GetWalletAddressBalancesResponse: {
2632
2633
  /** @description List of asset balances */
@@ -2721,7 +2722,7 @@ export type definitions = {
2721
2722
  addresses: string[];
2722
2723
  };
2723
2724
  v1InitFiatOnRampIntent: {
2724
- /** @description Enum to specifiy which on-ramp provider to use */
2725
+ /** @description Enum to specify which on-ramp provider to use */
2725
2726
  onrampProvider: definitions["v1FiatOnRampProvider"];
2726
2727
  /** @description Destination wallet address for the buy transaction. */
2727
2728
  walletAddress: string;
@@ -2799,7 +2800,7 @@ export type definitions = {
2799
2800
  importBundle: string;
2800
2801
  };
2801
2802
  v1InitOtpAuthIntent: {
2802
- /** @description Enum to specifiy whether to send OTP via SMS or email */
2803
+ /** @description Enum to specify whether to send OTP via SMS or email */
2803
2804
  otpType: string;
2804
2805
  /** @description Email or phone number to send the OTP code to */
2805
2806
  contact: string;
@@ -2817,7 +2818,7 @@ export type definitions = {
2817
2818
  replyToEmailAddress?: string;
2818
2819
  };
2819
2820
  v1InitOtpAuthIntentV2: {
2820
- /** @description Enum to specifiy whether to send OTP via SMS or email */
2821
+ /** @description Enum to specify whether to send OTP via SMS or email */
2821
2822
  otpType: string;
2822
2823
  /** @description Email or phone number to send the OTP code to */
2823
2824
  contact: string;
@@ -3122,24 +3123,10 @@ export type definitions = {
3122
3123
  createTvcDeploymentIntent?: definitions["v1CreateTvcDeploymentIntent"];
3123
3124
  createTvcManifestApprovalsIntent?: definitions["v1CreateTvcManifestApprovalsIntent"];
3124
3125
  solSendTransactionIntent?: definitions["v1SolSendTransactionIntent"];
3125
- };
3126
- v1Invitation: {
3127
- /** @description Unique identifier for a given Invitation object. */
3128
- invitationId: string;
3129
- /** @description The name of the intended Invitation recipient. */
3130
- receiverUserName: string;
3131
- /** @description The email address of the intended Invitation recipient. */
3132
- receiverEmail: string;
3133
- /** @description A list of tags assigned to the Invitation recipient. */
3134
- receiverUserTags: string[];
3135
- /** @description The User's permissible access method(s). */
3136
- accessType: definitions["v1AccessType"];
3137
- /** @description The current processing status of a specified Invitation. */
3138
- status: definitions["v1InvitationStatus"];
3139
- createdAt: definitions["externaldatav1Timestamp"];
3140
- updatedAt: definitions["externaldatav1Timestamp"];
3141
- /** @description Unique identifier for the Sender of an Invitation. */
3142
- senderUserId: string;
3126
+ updateOrganizationNameIntent?: definitions["v1UpdateOrganizationNameIntent"];
3127
+ createWebhookEndpointIntent?: definitions["v1CreateWebhookEndpointIntent"];
3128
+ updateWebhookEndpointIntent?: definitions["v1UpdateWebhookEndpointIntent"];
3129
+ deleteWebhookEndpointIntent?: definitions["v1DeleteWebhookEndpointIntent"];
3143
3130
  };
3144
3131
  v1InvitationParams: {
3145
3132
  /** @description The name of the intended Invitation recipient. */
@@ -3153,8 +3140,6 @@ export type definitions = {
3153
3140
  /** @description Unique identifier for the Sender of an Invitation. */
3154
3141
  senderUserId: string;
3155
3142
  };
3156
- /** @enum {string} */
3157
- v1InvitationStatus: "INVITATION_STATUS_CREATED" | "INVITATION_STATUS_ACCEPTED" | "INVITATION_STATUS_REVOKED";
3158
3143
  v1ListFiatOnRampCredentialsRequest: {
3159
3144
  /** @description Unique identifier for a given Organization. */
3160
3145
  organizationId: string;
@@ -3180,10 +3165,14 @@ export type definitions = {
3180
3165
  v1ListSupportedAssetsRequest: {
3181
3166
  /** @description Unique identifier for a given organization. */
3182
3167
  organizationId: string;
3183
- /** @description The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet). */
3184
- caip2: string;
3168
+ /**
3169
+ * @description CAIP-2 chain ID (e.g., 'eip155:1' for Ethereum mainnet or 'solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp' for Solana mainnet). Human-readable Solana aliases ('solana:mainnet', 'solana:devnet') are also accepted and normalized to canonical CAIP-2 values.
3170
+ * @enum {string}
3171
+ */
3172
+ caip2: "eip155:1" | "eip155:11155111" | "eip155:8453" | "eip155:84532" | "eip155:137" | "eip155:80002" | "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp" | "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1";
3185
3173
  };
3186
3174
  v1ListSupportedAssetsResponse: {
3175
+ /** @description List of asset metadata */
3187
3176
  assets?: definitions["v1AssetMetadata"][];
3188
3177
  };
3189
3178
  v1ListUserTagsRequest: {
@@ -3194,6 +3183,13 @@ export type definitions = {
3194
3183
  /** @description A list of user tags. */
3195
3184
  userTags: definitions["datav1Tag"][];
3196
3185
  };
3186
+ v1ListWebhookEndpointsRequest: {
3187
+ /** @description Unique identifier for a given Organization. */
3188
+ organizationId: string;
3189
+ };
3190
+ v1ListWebhookEndpointsResponse: {
3191
+ webhookEndpoints: definitions["v1WebhookEndpointData"][];
3192
+ };
3197
3193
  v1LoginUsage: {
3198
3194
  /** @description Public key for authentication */
3199
3195
  publicKey: string;
@@ -3335,19 +3331,6 @@ export type definitions = {
3335
3331
  };
3336
3332
  /** @enum {string} */
3337
3333
  v1Operator: "OPERATOR_EQUAL" | "OPERATOR_MORE_THAN" | "OPERATOR_MORE_THAN_OR_EQUAL" | "OPERATOR_LESS_THAN" | "OPERATOR_LESS_THAN_OR_EQUAL" | "OPERATOR_CONTAINS" | "OPERATOR_NOT_EQUAL" | "OPERATOR_IN" | "OPERATOR_NOT_IN" | "OPERATOR_CONTAINS_ONE" | "OPERATOR_CONTAINS_ALL";
3338
- v1OrganizationData: {
3339
- organizationId?: string;
3340
- name?: string;
3341
- users?: definitions["v1User"][];
3342
- policies?: definitions["v1Policy"][];
3343
- privateKeys?: definitions["v1PrivateKey"][];
3344
- invitations?: definitions["v1Invitation"][];
3345
- tags?: definitions["datav1Tag"][];
3346
- rootQuorum?: definitions["externaldatav1Quorum"];
3347
- features?: definitions["v1Feature"][];
3348
- wallets?: definitions["v1Wallet"][];
3349
- smartContractInterfaceReferences?: definitions["v1SmartContractInterfaceReference"][];
3350
- };
3351
3334
  v1OtpAuthIntent: {
3352
3335
  /** @description ID representing the result of an init OTP activity. */
3353
3336
  otpId: string;
@@ -3500,12 +3483,6 @@ export type definitions = {
3500
3483
  /** @description ID of the authenticator created. */
3501
3484
  authenticatorId: string[];
3502
3485
  };
3503
- v1RefreshFeatureFlagsRequest: {
3504
- [key: string]: unknown;
3505
- };
3506
- v1RefreshFeatureFlagsResponse: {
3507
- [key: string]: unknown;
3508
- };
3509
3486
  v1RejectActivityIntent: {
3510
3487
  /** @description An artifact verifying a User's action. */
3511
3488
  fingerprint: string;
@@ -3637,6 +3614,10 @@ export type definitions = {
3637
3614
  createTvcDeploymentResult?: definitions["v1CreateTvcDeploymentResult"];
3638
3615
  createTvcManifestApprovalsResult?: definitions["v1CreateTvcManifestApprovalsResult"];
3639
3616
  solSendTransactionResult?: definitions["v1SolSendTransactionResult"];
3617
+ updateOrganizationNameResult?: definitions["v1UpdateOrganizationNameResult"];
3618
+ createWebhookEndpointResult?: definitions["v1CreateWebhookEndpointResult"];
3619
+ updateWebhookEndpointResult?: definitions["v1UpdateWebhookEndpointResult"];
3620
+ deleteWebhookEndpointResult?: definitions["v1DeleteWebhookEndpointResult"];
3640
3621
  };
3641
3622
  v1RevertChainEntry: {
3642
3623
  /** @description The contract address where the revert occurred. */
@@ -3830,11 +3811,6 @@ export type definitions = {
3830
3811
  appidExclude?: boolean;
3831
3812
  credProps?: definitions["v1CredPropsAuthenticationExtensionsClientOutputs"];
3832
3813
  };
3833
- v1SmartContractInterfaceReference: {
3834
- smartContractInterfaceId?: string;
3835
- smartContractAddress?: string;
3836
- digest?: string;
3837
- };
3838
3814
  /** @enum {string} */
3839
3815
  v1SmartContractInterfaceType: "SMART_CONTRACT_INTERFACE_TYPE_ETHEREUM" | "SMART_CONTRACT_INTERFACE_TYPE_SOLANA";
3840
3816
  v1SmsCustomizationParams: {
@@ -3870,6 +3846,36 @@ export type definitions = {
3870
3846
  /** @description The send_transaction_status ID associated with the transaction submission */
3871
3847
  sendTransactionStatusId: string;
3872
3848
  };
3849
+ v1SolanaConfig: {
3850
+ /** @description Whether Solana rent prefunding is enabled for the organization. When omitted, the existing rent-prefund state is left unchanged. */
3851
+ rentPrefundEnabled?: boolean;
3852
+ };
3853
+ v1SolanaFailureDetails: {
3854
+ /** @description Where the Solana failure occurred, such as simulation or preflight. */
3855
+ source?: string;
3856
+ /**
3857
+ * Format: int32
3858
+ * @description The Solana JSON-RPC error code, if available.
3859
+ */
3860
+ rpcCode?: number;
3861
+ /** @description The Solana JSON-RPC error message, if available. */
3862
+ rpcMessage?: string;
3863
+ /** @description The raw Solana transaction error object serialized as JSON, if available. */
3864
+ transactionErrorJson?: string;
3865
+ /** @description Program logs returned by Solana simulation or preflight, if available. */
3866
+ logs?: string[];
3867
+ /**
3868
+ * Format: uint64
3869
+ * @description Compute units consumed during simulation or preflight, if available.
3870
+ */
3871
+ unitsConsumed?: string;
3872
+ /** @description The raw Solana inner instructions payload serialized as JSON, if available. */
3873
+ innerInstructionsJson?: string;
3874
+ };
3875
+ v1SolanaSendTransactionStatus: {
3876
+ /** @description The Solana transaction signature, if available. */
3877
+ signature?: string;
3878
+ };
3873
3879
  v1StampLoginIntent: {
3874
3880
  /** @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 */
3875
3881
  publicKey: string;
@@ -3894,20 +3900,6 @@ export type definitions = {
3894
3900
  };
3895
3901
  /** @enum {string} */
3896
3902
  v1TagType: "TAG_TYPE_USER" | "TAG_TYPE_PRIVATE_KEY";
3897
- v1TestRateLimitsRequest: {
3898
- /** @description Unique identifier for a given organization. If the request is being made by a WebAuthN user and their sub-organization ID is unknown, this can be the parent organization ID; using the sub-organization ID when possible is preferred due to performance reasons. */
3899
- organizationId: string;
3900
- /** @description Whether or not to set a limit on this request. */
3901
- isSetLimit: boolean;
3902
- /**
3903
- * Format: int64
3904
- * @description Rate limit to set for org, if is_set_limit is set to true.
3905
- */
3906
- limit: number;
3907
- };
3908
- v1TestRateLimitsResponse: {
3909
- [key: string]: unknown;
3910
- };
3911
3903
  v1TokenUsage: {
3912
3904
  /** @description Type of token usage */
3913
3905
  type: definitions["v1UsageType"];
@@ -3918,127 +3910,20 @@ export type definitions = {
3918
3910
  };
3919
3911
  /** @enum {string} */
3920
3912
  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
3913
  /** @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
- };
3914
+ v1TvcHealthCheckType: "TVC_HEALTH_CHECK_TYPE_HTTP" | "TVC_HEALTH_CHECK_TYPE_GRPC";
3988
3915
  v1TvcManifestApproval: {
3989
3916
  /** @description Unique identifier of the operator providing this approval */
3990
3917
  operatorId: string;
3991
3918
  /** @description Signature from the operator approving the manifest */
3992
3919
  signature: string;
3993
3920
  };
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
3921
  v1TvcOperatorParams: {
4020
3922
  /** @description The name for this new operator */
4021
3923
  name: string;
4022
3924
  /** @description Public key for this operator */
4023
3925
  publicKey: string;
4024
3926
  };
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
3927
  v1TvcOperatorSetParams: {
4043
3928
  /** @description Short description for this new operator set */
4044
3929
  name: string;
@@ -4057,6 +3942,10 @@ export type definitions = {
4057
3942
  message?: string;
4058
3943
  /** @description Chain of revert errors from nested contract calls, ordered from outermost to innermost. */
4059
3944
  revertChain?: definitions["v1RevertChainEntry"][];
3945
+ /** @description Solana-specific failure details for simulation or preflight errors, if available. */
3946
+ solana?: definitions["v1SolanaFailureDetails"];
3947
+ /** @description Ethereum-specific failure details, if available. */
3948
+ eth?: definitions["v1EthFailureDetails"];
4060
3949
  };
4061
3950
  v1UnknownRevertError: {
4062
3951
  /** @description The 4-byte error selector, if available. */
@@ -4173,6 +4062,25 @@ export type definitions = {
4173
4062
  /** @description Unique identifier of the OAuth 2.0 credential that was updated */
4174
4063
  oauth2CredentialId: string;
4175
4064
  };
4065
+ v1UpdateOrganizationNameIntent: {
4066
+ /** @description New name for the Organization. */
4067
+ organizationName: string;
4068
+ };
4069
+ v1UpdateOrganizationNameRequest: {
4070
+ /** @enum {string} */
4071
+ type: "ACTIVITY_TYPE_UPDATE_ORGANIZATION_NAME";
4072
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
4073
+ timestampMs: string;
4074
+ /** @description Unique identifier for a given Organization. */
4075
+ organizationId: string;
4076
+ parameters: definitions["v1UpdateOrganizationNameIntent"];
4077
+ };
4078
+ v1UpdateOrganizationNameResult: {
4079
+ /** @description Unique identifier for the Organization. */
4080
+ organizationId: string;
4081
+ /** @description The updated organization name. */
4082
+ organizationName: string;
4083
+ };
4176
4084
  v1UpdatePolicyIntent: {
4177
4085
  /** @description Unique identifier for a given Policy. */
4178
4086
  policyId: string;
@@ -4399,6 +4307,32 @@ export type definitions = {
4399
4307
  /** @description A Wallet ID. */
4400
4308
  walletId: string;
4401
4309
  };
4310
+ v1UpdateWebhookEndpointIntent: {
4311
+ /** @description Unique identifier of the webhook endpoint to update. */
4312
+ endpointId: string;
4313
+ /** @description Updated destination URL for webhook delivery. */
4314
+ url?: string;
4315
+ /** @description Updated human-readable name for this webhook endpoint. */
4316
+ name?: string;
4317
+ /** @description Whether this webhook endpoint is active. */
4318
+ isActive?: boolean;
4319
+ };
4320
+ v1UpdateWebhookEndpointRequest: {
4321
+ /** @enum {string} */
4322
+ type: "ACTIVITY_TYPE_UPDATE_WEBHOOK_ENDPOINT";
4323
+ /** @description Timestamp (in milliseconds) of the request, used to verify liveness of user requests. */
4324
+ timestampMs: string;
4325
+ /** @description Unique identifier for a given Organization. */
4326
+ organizationId: string;
4327
+ parameters: definitions["v1UpdateWebhookEndpointIntent"];
4328
+ generateAppProofs?: boolean;
4329
+ };
4330
+ v1UpdateWebhookEndpointResult: {
4331
+ /** @description Unique identifier of the updated webhook endpoint. */
4332
+ endpointId: string;
4333
+ /** @description The updated webhook endpoint data. */
4334
+ webhookEndpoint: definitions["v1WebhookEndpointData"];
4335
+ };
4402
4336
  v1UpsertGasUsageConfigIntent: {
4403
4337
  /** @description Gas sponsorship USD limit for the billing organization window. */
4404
4338
  orgWindowLimitUsd: string;
@@ -4408,6 +4342,8 @@ export type definitions = {
4408
4342
  windowDurationMinutes: string;
4409
4343
  /** @description Whether gas sponsorship is enabled for the organization. */
4410
4344
  enabled?: boolean;
4345
+ /** @description Optional Solana sponsorship settings. If omitted, the existing Solana sponsorship state is left unchanged. */
4346
+ solanaConfig?: definitions["v1SolanaConfig"];
4411
4347
  };
4412
4348
  v1UpsertGasUsageConfigResult: {
4413
4349
  /** @description Unique identifier for the gas usage configuration that was created or updated. */
@@ -4613,6 +4549,28 @@ export type definitions = {
4613
4549
  /** @description The base64 url encoded signature bytes contained within the WebAuthn assertion response. */
4614
4550
  signature: string;
4615
4551
  };
4552
+ v1WebhookEndpointData: {
4553
+ /** @description Unique identifier of the webhook endpoint. */
4554
+ endpointId: string;
4555
+ /** @description Unique identifier for a given Organization. */
4556
+ organizationId: string;
4557
+ /** @description The destination URL for webhook delivery. */
4558
+ url: string;
4559
+ /** @description Human-readable name for this webhook endpoint. */
4560
+ name: string;
4561
+ /** @description Whether this webhook endpoint is active. */
4562
+ isActive: boolean;
4563
+ /** @description Current subscriptions attached to this endpoint. */
4564
+ subscriptions?: definitions["v1WebhookSubscriptionParams"][];
4565
+ };
4566
+ v1WebhookSubscriptionParams: {
4567
+ /** @description The event type to subscribe to (for example, ACTIVITY_UPDATES or BALANCE_UPDATES). */
4568
+ eventType: string;
4569
+ /** @description JSON-encoded filter criteria for this subscription. */
4570
+ filtersJson?: string;
4571
+ /** @description Whether this subscription is active. */
4572
+ isActive?: boolean;
4573
+ };
4616
4574
  };
4617
4575
  export type operations = {
4618
4576
  /** Get details about an activity. */
@@ -4669,6 +4627,24 @@ export type operations = {
4669
4627
  };
4670
4628
  };
4671
4629
  };
4630
+ /** Get live runtime status for a TVC App from the cluster. */
4631
+ PublicApiService_GetAppStatus: {
4632
+ parameters: {
4633
+ body: {
4634
+ body: definitions["v1GetAppStatusRequest"];
4635
+ };
4636
+ };
4637
+ responses: {
4638
+ /** A successful response. */
4639
+ 200: {
4640
+ schema: definitions["v1GetAppStatusResponse"];
4641
+ };
4642
+ /** An unexpected error response. */
4643
+ default: {
4644
+ schema: definitions["rpcStatus"];
4645
+ };
4646
+ };
4647
+ };
4672
4648
  /** Get details about an authenticator. */
4673
4649
  PublicApiService_GetAuthenticator: {
4674
4650
  parameters: {
@@ -4831,24 +4807,6 @@ export type operations = {
4831
4807
  };
4832
4808
  };
4833
4809
  };
4834
- /** Get details about an organization. */
4835
- PublicApiService_GetOrganization: {
4836
- parameters: {
4837
- body: {
4838
- body: definitions["v1GetOrganizationRequest"];
4839
- };
4840
- };
4841
- responses: {
4842
- /** A successful response. */
4843
- 200: {
4844
- schema: definitions["v1GetOrganizationResponse"];
4845
- };
4846
- /** An unexpected error response. */
4847
- default: {
4848
- schema: definitions["rpcStatus"];
4849
- };
4850
- };
4851
- };
4852
4810
  /** Get quorum settings and features for an organization. */
4853
4811
  PublicApiService_GetOrganizationConfigs: {
4854
4812
  parameters: {
@@ -4957,42 +4915,6 @@ export type operations = {
4957
4915
  };
4958
4916
  };
4959
4917
  };
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
- };
4996
4918
  /** Get details about a user. */
4997
4919
  PublicApiService_GetUser: {
4998
4920
  parameters: {
@@ -5047,7 +4969,7 @@ export type operations = {
5047
4969
  };
5048
4970
  };
5049
4971
  };
5050
- /** Get non-zero balances of supported assets for a single wallet account address on the specified network. */
4972
+ /** Get balances of supported assets for an address on the specified network. Only non-zero balances are returned. This feature is in beta - please contact support for access. */
5051
4973
  PublicApiService_GetWalletAddressBalances: {
5052
4974
  parameters: {
5053
4975
  body: {
@@ -5227,7 +5149,7 @@ export type operations = {
5227
5149
  };
5228
5150
  };
5229
5151
  };
5230
- /** List supported assets for the specified network */
5152
+ /** List supported assets for the specified network. This feature is in beta - please contact support for access. */
5231
5153
  PublicApiService_ListSupportedAssets: {
5232
5154
  parameters: {
5233
5155
  body: {
@@ -5245,42 +5167,6 @@ export type operations = {
5245
5167
  };
5246
5168
  };
5247
5169
  };
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
- };
5284
5170
  /** List all user tags within an organization. */
5285
5171
  PublicApiService_ListUserTags: {
5286
5172
  parameters: {
@@ -5371,6 +5257,24 @@ export type operations = {
5371
5257
  };
5372
5258
  };
5373
5259
  };
5260
+ /** List webhook endpoints within an organization. */
5261
+ PublicApiService_ListWebhookEndpoints: {
5262
+ parameters: {
5263
+ body: {
5264
+ body: definitions["v1ListWebhookEndpointsRequest"];
5265
+ };
5266
+ };
5267
+ responses: {
5268
+ /** A successful response. */
5269
+ 200: {
5270
+ schema: definitions["v1ListWebhookEndpointsResponse"];
5271
+ };
5272
+ /** An unexpected error response. */
5273
+ default: {
5274
+ schema: definitions["rpcStatus"];
5275
+ };
5276
+ };
5277
+ };
5374
5278
  /** Get basic information about your current API or WebAuthN user and their organization. Affords sub-organization look ups via parent organization for WebAuthN or API key users. */
5375
5279
  PublicApiService_GetWhoami: {
5376
5280
  parameters: {
@@ -5677,47 +5581,11 @@ export type operations = {
5677
5581
  };
5678
5582
  };
5679
5583
  };
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: {
5584
+ /** Create a user tag and add it to users. */
5585
+ PublicApiService_CreateUserTag: {
5718
5586
  parameters: {
5719
5587
  body: {
5720
- body: definitions["v1CreateTvcManifestApprovalsRequest"];
5588
+ body: definitions["v1CreateUserTagRequest"];
5721
5589
  };
5722
5590
  };
5723
5591
  responses: {
@@ -5731,11 +5599,11 @@ export type operations = {
5731
5599
  };
5732
5600
  };
5733
5601
  };
5734
- /** Create a user tag and add it to users. */
5735
- PublicApiService_CreateUserTag: {
5602
+ /** Create users in an existing organization. */
5603
+ PublicApiService_CreateUsers: {
5736
5604
  parameters: {
5737
5605
  body: {
5738
- body: definitions["v1CreateUserTagRequest"];
5606
+ body: definitions["v1CreateUsersRequest"];
5739
5607
  };
5740
5608
  };
5741
5609
  responses: {
@@ -5749,11 +5617,11 @@ export type operations = {
5749
5617
  };
5750
5618
  };
5751
5619
  };
5752
- /** Create users in an existing organization. */
5753
- PublicApiService_CreateUsers: {
5620
+ /** Create a wallet and derive addresses. */
5621
+ PublicApiService_CreateWallet: {
5754
5622
  parameters: {
5755
5623
  body: {
5756
- body: definitions["v1CreateUsersRequest"];
5624
+ body: definitions["v1CreateWalletRequest"];
5757
5625
  };
5758
5626
  };
5759
5627
  responses: {
@@ -5767,11 +5635,11 @@ export type operations = {
5767
5635
  };
5768
5636
  };
5769
5637
  };
5770
- /** Create a wallet and derive addresses. */
5771
- PublicApiService_CreateWallet: {
5638
+ /** Derive additional addresses using an existing wallet. */
5639
+ PublicApiService_CreateWalletAccounts: {
5772
5640
  parameters: {
5773
5641
  body: {
5774
- body: definitions["v1CreateWalletRequest"];
5642
+ body: definitions["v1CreateWalletAccountsRequest"];
5775
5643
  };
5776
5644
  };
5777
5645
  responses: {
@@ -5785,11 +5653,11 @@ export type operations = {
5785
5653
  };
5786
5654
  };
5787
5655
  };
5788
- /** Derive additional addresses using an existing wallet. */
5789
- PublicApiService_CreateWalletAccounts: {
5656
+ /** Create a webhook endpoint for an organization. */
5657
+ PublicApiService_CreateWebhookEndpoint: {
5790
5658
  parameters: {
5791
5659
  body: {
5792
- body: definitions["v1CreateWalletAccountsRequest"];
5660
+ body: definitions["v1CreateWebhookEndpointRequest"];
5793
5661
  };
5794
5662
  };
5795
5663
  responses: {
@@ -6091,11 +5959,11 @@ export type operations = {
6091
5959
  };
6092
5960
  };
6093
5961
  };
6094
- /** Authenticate a user via email. */
6095
- PublicApiService_EmailAuth: {
5962
+ /** Delete a webhook endpoint for an organization. */
5963
+ PublicApiService_DeleteWebhookEndpoint: {
6096
5964
  parameters: {
6097
5965
  body: {
6098
- body: definitions["v1EmailAuthRequest"];
5966
+ body: definitions["v1DeleteWebhookEndpointRequest"];
6099
5967
  };
6100
5968
  };
6101
5969
  responses: {
@@ -6109,11 +5977,11 @@ export type operations = {
6109
5977
  };
6110
5978
  };
6111
5979
  };
6112
- /** Submit a raw transaction (serialized and signed) for broadcasting to the network. */
6113
- PublicApiService_EthSendRawTransaction: {
5980
+ /** Authenticate a user via email. */
5981
+ PublicApiService_EmailAuth: {
6114
5982
  parameters: {
6115
5983
  body: {
6116
- body: definitions["v1EthSendRawTransactionRequest"];
5984
+ body: definitions["v1EmailAuthRequest"];
6117
5985
  };
6118
5986
  };
6119
5987
  responses: {
@@ -6631,6 +6499,24 @@ export type operations = {
6631
6499
  };
6632
6500
  };
6633
6501
  };
6502
+ /** Update the name of an organization. */
6503
+ PublicApiService_UpdateOrganizationName: {
6504
+ parameters: {
6505
+ body: {
6506
+ body: definitions["v1UpdateOrganizationNameRequest"];
6507
+ };
6508
+ };
6509
+ responses: {
6510
+ /** A successful response. */
6511
+ 200: {
6512
+ schema: definitions["v1ActivityResponse"];
6513
+ };
6514
+ /** An unexpected error response. */
6515
+ default: {
6516
+ schema: definitions["rpcStatus"];
6517
+ };
6518
+ };
6519
+ };
6634
6520
  /** Update an existing policy. */
6635
6521
  PublicApiService_UpdatePolicy: {
6636
6522
  parameters: {
@@ -6793,11 +6679,11 @@ export type operations = {
6793
6679
  };
6794
6680
  };
6795
6681
  };
6796
- /** Verify a generic OTP. */
6797
- PublicApiService_VerifyOtp: {
6682
+ /** Update a webhook endpoint for an organization. */
6683
+ PublicApiService_UpdateWebhookEndpoint: {
6798
6684
  parameters: {
6799
6685
  body: {
6800
- body: definitions["v1VerifyOtpRequest"];
6686
+ body: definitions["v1UpdateWebhookEndpointRequest"];
6801
6687
  };
6802
6688
  };
6803
6689
  responses: {
@@ -6811,29 +6697,17 @@ export type operations = {
6811
6697
  };
6812
6698
  };
6813
6699
  };
6814
- PublicApiService_NOOPCodegenAnchor: {
6815
- responses: {
6816
- /** A successful response. */
6817
- 200: {
6818
- schema: definitions["v1NOOPCodegenAnchorResponse"];
6819
- };
6820
- /** An unexpected error response. */
6821
- default: {
6822
- schema: definitions["rpcStatus"];
6823
- };
6824
- };
6825
- };
6826
- /** Refresh feature flags by triggering a DB read to flush the in-memory cache. */
6827
- PublicApiService_RefreshFeatureFlags: {
6700
+ /** Verify a generic OTP. */
6701
+ PublicApiService_VerifyOtp: {
6828
6702
  parameters: {
6829
6703
  body: {
6830
- body: definitions["v1RefreshFeatureFlagsRequest"];
6704
+ body: definitions["v1VerifyOtpRequest"];
6831
6705
  };
6832
6706
  };
6833
6707
  responses: {
6834
6708
  /** A successful response. */
6835
6709
  200: {
6836
- schema: definitions["v1RefreshFeatureFlagsResponse"];
6710
+ schema: definitions["v1ActivityResponse"];
6837
6711
  };
6838
6712
  /** An unexpected error response. */
6839
6713
  default: {
@@ -6841,17 +6715,11 @@ export type operations = {
6841
6715
  };
6842
6716
  };
6843
6717
  };
6844
- /** Set a rate local rate limit just on the current endpoint, for purposes of testing with Vivosuite. */
6845
- PublicApiService_TestRateLimits: {
6846
- parameters: {
6847
- body: {
6848
- body: definitions["v1TestRateLimitsRequest"];
6849
- };
6850
- };
6718
+ PublicApiService_NOOPCodegenAnchor: {
6851
6719
  responses: {
6852
6720
  /** A successful response. */
6853
6721
  200: {
6854
- schema: definitions["v1TestRateLimitsResponse"];
6722
+ schema: definitions["v1NOOPCodegenAnchorResponse"];
6855
6723
  };
6856
6724
  /** An unexpected error response. */
6857
6725
  default: {