@opengeni/contracts 0.44.1 → 0.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atlassian.js +10 -8
- package/dist/canonical-human-identities.d.ts +157 -0
- package/dist/canonical-human-identities.js +23 -0
- package/dist/canonical-human-identities.js.map +1 -0
- package/dist/chunk-CM6BMECR.js +24 -0
- package/dist/chunk-CM6BMECR.js.map +1 -0
- package/dist/{chunk-FJBG5E4O.js → chunk-JBCIY7QD.js} +12 -12
- package/dist/chunk-JUFK3T4Q.js +80 -0
- package/dist/chunk-JUFK3T4Q.js.map +1 -0
- package/dist/{chunk-H5BVCZKF.js → chunk-LW7OH6CS.js} +2 -2
- package/dist/{chunk-52SGB2QO.js → chunk-M5ZGRVIQ.js} +37 -6
- package/dist/chunk-M5ZGRVIQ.js.map +1 -0
- package/dist/{chunk-VA22KRHS.js → chunk-Q6A7XT2N.js} +6371 -4814
- package/dist/chunk-Q6A7XT2N.js.map +1 -0
- package/dist/codex-provider-account-authority.d.ts +23 -0
- package/dist/codex-provider-account-authority.js +23 -0
- package/dist/codex-provider-account-authority.js.map +1 -0
- package/dist/editable-artifact-codec-registry.js +5 -5
- package/dist/editable-artifact-live.js +3 -3
- package/dist/editable-artifact-serialized-commit.js +4 -4
- package/dist/editable-artifacts.js +27 -27
- package/dist/google-drive.js +11 -9
- package/dist/google-drive.js.map +1 -1
- package/dist/index.d.ts +1318 -128
- package/dist/index.js +400 -80
- package/dist/interaction.d.ts +1415 -20
- package/dist/knowledge.d.ts +543 -0
- package/dist/slack-task-policy.d.ts +294 -0
- package/dist/task-notes.d.ts +128 -0
- package/dist/video-generation.d.ts +48 -0
- package/dist/video-generation.js +9 -1
- package/dist/xai-provider-account-authority.d.ts +23 -0
- package/dist/xai-provider-account-authority.js +9 -0
- package/dist/xai-provider-account-authority.js.map +1 -0
- package/package.json +13 -1
- package/src/artifacts.ts +1 -1
- package/src/canonical-human-identities.ts +93 -0
- package/src/codex-provider-account-authority.ts +37 -0
- package/src/index.ts +731 -138
- package/src/interaction.ts +886 -5
- package/src/knowledge.ts +207 -0
- package/src/slack-task-policy.ts +215 -0
- package/src/task-notes.ts +92 -0
- package/src/video-generation.ts +43 -6
- package/src/xai-provider-account-authority.ts +37 -0
- package/dist/chunk-52SGB2QO.js.map +0 -1
- package/dist/chunk-VA22KRHS.js.map +0 -1
- /package/dist/{chunk-FJBG5E4O.js.map → chunk-JBCIY7QD.js.map} +0 -0
- /package/dist/{chunk-H5BVCZKF.js.map → chunk-LW7OH6CS.js.map} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import { type SessionEventBoundarySurface } from "./event-preview.js";
|
|
3
3
|
export * from "./slack-bot-scopes.js";
|
|
4
|
+
export * from "./slack-task-policy.js";
|
|
4
5
|
export * from "./atlassian.js";
|
|
5
6
|
export * from "./connector-destinations.js";
|
|
6
7
|
export * from "./memory-slack-delivery.js";
|
|
@@ -101,7 +102,7 @@ export type CapabilityDescriptor = {
|
|
|
101
102
|
};
|
|
102
103
|
Terminal: {
|
|
103
104
|
available: boolean;
|
|
104
|
-
transport: "sse-events" | "pty-ws" | null;
|
|
105
|
+
transport: "sse-events" | "pty-ws" | "relay-pty" | null;
|
|
105
106
|
pty: boolean;
|
|
106
107
|
};
|
|
107
108
|
Git: {
|
|
@@ -195,6 +196,7 @@ export declare const ErrorEnvelope: z.ZodObject<{
|
|
|
195
196
|
}>;
|
|
196
197
|
message: z.ZodString;
|
|
197
198
|
retryable: z.ZodBoolean;
|
|
199
|
+
outcomeUnknown: z.ZodOptional<z.ZodBoolean>;
|
|
198
200
|
requestId: z.ZodOptional<z.ZodString>;
|
|
199
201
|
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
200
202
|
}, z.core.$strip>;
|
|
@@ -306,7 +308,7 @@ export declare const DEFAULT_FIRST_PARTY_MCP_PERMISSIONS: readonly ["workspace:r
|
|
|
306
308
|
* `files_get_download_url` intentionally is not in this catalog. It belongs to
|
|
307
309
|
* the dedicated `files` MCP server.
|
|
308
310
|
*/
|
|
309
|
-
export declare const FIRST_PARTY_MCP_TOOL_NAMES: readonly ["set_session_title", "goal_set", "goal_update", "goal_complete", "goal_pause", "memory_search", "memory_save", "memory_correct", "preference_registry_summary", "preference_registry_get", "sandboxes_list", "sandbox_attach", "sandbox_swap", "run_on", "sandbox_provision", "connected_machine_remove", "rig_list", "rig_get", "rig_propose_change", "rig_verify", "rig_promote", "sessions_list", "session_get", "session_events", "session_create", "session_send_message", "session_pause", "session_resume", "session_steer", "set_other_session_title", "interaction_discover", "browser_open", "browser_tabs", "browser_observe", "browser_act", "browser_debug", "browser_identity", "browser_publish", "browser_lifecycle", "computer_open", "computer_targets", "computer_observe", "computer_act", "computer_lifecycle", "variable_set_list", "environment_list", "variable_set_get_variable", "variable_set_set_variable", "environment_set_variable", "capability_catalog_search", "capability_authorization_request", "github_connect_link", "github_repositories_list", "social_connections_list", "social_posts_recent", "social_daily_analysis_context", "social_search_live", "social_mentions_live", "social_thread_fetch", "social_posts_sync", "social_post_reply", "x_accounts_list", "x_search_live", "x_mentions_live", "x_thread_fetch", "x_posts_sync", "x_post_reply", "reddit_accounts_list", "reddit_search_live", "reddit_mentions_live", "reddit_thread_fetch", "reddit_posts_sync", "reddit_post_reply", "scheduled_tasks_list", "scheduled_tasks_get", "scheduled_tasks_create", "scheduled_tasks_update", "scheduled_tasks_pause", "scheduled_tasks_resume", "scheduled_tasks_trigger", "scheduled_tasks_delete", "scheduled_task_runs_list", "slack_bot_list_channels", "slack_bot_channel_history", "slack_bot_thread_replies", "slack_bot_list_users", "slack_bot_list_files", "slack_bot_file_info", "slack_bot_file_content", "slack_bot_post_message", "slack_bot_delete_message", "atlassian_sources_list", "atlassian_search", "atlassian_get", "artifacts_list", "artifacts_get_source", "artifacts_create", "artifacts_publish", "artifacts_rollback", "editable_artifact_list", "editable_artifact_create", "editable_artifact_import", "editable_artifact_get", "editable_artifact_inspect", "editable_artifact_apply", "editable_artifact_export", "editable_artifact_export_status"];
|
|
311
|
+
export declare const FIRST_PARTY_MCP_TOOL_NAMES: readonly ["set_session_title", "goal_set", "goal_update", "goal_progress", "goal_complete", "goal_pause", "memory_search", "memory_save", "memory_correct", "preference_registry_summary", "preference_registry_get", "task_notes_list", "task_note_save", "task_note_archive", "sandboxes_list", "sandbox_attach", "sandbox_swap", "run_on", "sandbox_provision", "connected_machine_remove", "rig_list", "rig_get", "rig_propose_change", "rig_verify", "rig_promote", "sessions_list", "session_get", "session_events", "session_create", "session_send_message", "session_pause", "session_resume", "session_steer", "set_other_session_title", "interaction_discover", "browser_open", "browser_tabs", "browser_observe", "browser_act", "browser_clipboard", "browser_debug", "browser_auth", "interaction_request_human", "browser_identity", "browser_publish", "browser_lifecycle", "computer_open", "computer_targets", "computer_observe", "computer_clipboard", "computer_act", "computer_lifecycle", "variable_set_list", "environment_list", "variable_set_get_variable", "variable_set_set_variable", "environment_set_variable", "capability_catalog_search", "capability_authorization_request", "github_connect_link", "github_repositories_list", "social_connections_list", "social_posts_recent", "social_daily_analysis_context", "social_search_live", "social_mentions_live", "social_thread_fetch", "social_posts_sync", "social_post_reply", "x_accounts_list", "x_search_live", "x_mentions_live", "x_thread_fetch", "x_posts_sync", "x_post_reply", "reddit_accounts_list", "reddit_search_live", "reddit_mentions_live", "reddit_thread_fetch", "reddit_posts_sync", "reddit_post_reply", "scheduled_tasks_list", "scheduled_tasks_get", "scheduled_tasks_create", "scheduled_tasks_update", "scheduled_tasks_pause", "scheduled_tasks_resume", "scheduled_tasks_trigger", "scheduled_tasks_delete", "scheduled_task_runs_list", "slack_bot_list_channels", "slack_bot_channel_history", "slack_bot_thread_replies", "slack_bot_list_users", "slack_bot_list_files", "slack_bot_file_info", "slack_bot_file_content", "slack_bot_post_message", "slack_bot_delete_message", "fiken_companies_list", "fiken_contacts_list", "fiken_contact_create", "fiken_products_list", "fiken_invoices_list", "fiken_invoice_get", "fiken_invoice_draft_create", "fiken_bank_accounts_list", "fiken_purchases_list", "fiken_sales_list", "atlassian_sources_list", "atlassian_search", "atlassian_get", "artifacts_list", "artifacts_get_source", "artifacts_create", "artifacts_publish", "artifacts_rollback", "editable_artifact_list", "editable_artifact_create", "editable_artifact_import", "editable_artifact_get", "editable_artifact_inspect", "editable_artifact_apply", "editable_artifact_export", "editable_artifact_export_status"];
|
|
310
312
|
export declare const FirstPartyMcpToolName: z.ZodEnum<{
|
|
311
313
|
artifacts_create: "artifacts_create";
|
|
312
314
|
artifacts_get_source: "artifacts_get_source";
|
|
@@ -317,6 +319,8 @@ export declare const FirstPartyMcpToolName: z.ZodEnum<{
|
|
|
317
319
|
atlassian_search: "atlassian_search";
|
|
318
320
|
atlassian_sources_list: "atlassian_sources_list";
|
|
319
321
|
browser_act: "browser_act";
|
|
322
|
+
browser_auth: "browser_auth";
|
|
323
|
+
browser_clipboard: "browser_clipboard";
|
|
320
324
|
browser_debug: "browser_debug";
|
|
321
325
|
browser_identity: "browser_identity";
|
|
322
326
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -327,6 +331,7 @@ export declare const FirstPartyMcpToolName: z.ZodEnum<{
|
|
|
327
331
|
capability_authorization_request: "capability_authorization_request";
|
|
328
332
|
capability_catalog_search: "capability_catalog_search";
|
|
329
333
|
computer_act: "computer_act";
|
|
334
|
+
computer_clipboard: "computer_clipboard";
|
|
330
335
|
computer_lifecycle: "computer_lifecycle";
|
|
331
336
|
computer_observe: "computer_observe";
|
|
332
337
|
computer_open: "computer_open";
|
|
@@ -342,13 +347,25 @@ export declare const FirstPartyMcpToolName: z.ZodEnum<{
|
|
|
342
347
|
editable_artifact_list: "editable_artifact_list";
|
|
343
348
|
environment_list: "environment_list";
|
|
344
349
|
environment_set_variable: "environment_set_variable";
|
|
350
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
351
|
+
fiken_companies_list: "fiken_companies_list";
|
|
352
|
+
fiken_contact_create: "fiken_contact_create";
|
|
353
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
354
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
355
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
356
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
357
|
+
fiken_products_list: "fiken_products_list";
|
|
358
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
359
|
+
fiken_sales_list: "fiken_sales_list";
|
|
345
360
|
github_connect_link: "github_connect_link";
|
|
346
361
|
github_repositories_list: "github_repositories_list";
|
|
347
362
|
goal_complete: "goal_complete";
|
|
348
363
|
goal_pause: "goal_pause";
|
|
364
|
+
goal_progress: "goal_progress";
|
|
349
365
|
goal_set: "goal_set";
|
|
350
366
|
goal_update: "goal_update";
|
|
351
367
|
interaction_discover: "interaction_discover";
|
|
368
|
+
interaction_request_human: "interaction_request_human";
|
|
352
369
|
memory_correct: "memory_correct";
|
|
353
370
|
memory_save: "memory_save";
|
|
354
371
|
memory_search: "memory_search";
|
|
@@ -406,6 +423,9 @@ export declare const FirstPartyMcpToolName: z.ZodEnum<{
|
|
|
406
423
|
social_posts_sync: "social_posts_sync";
|
|
407
424
|
social_search_live: "social_search_live";
|
|
408
425
|
social_thread_fetch: "social_thread_fetch";
|
|
426
|
+
task_note_archive: "task_note_archive";
|
|
427
|
+
task_note_save: "task_note_save";
|
|
428
|
+
task_notes_list: "task_notes_list";
|
|
409
429
|
variable_set_get_variable: "variable_set_get_variable";
|
|
410
430
|
variable_set_list: "variable_set_list";
|
|
411
431
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -422,9 +442,9 @@ export type FirstPartyMcpToolName = z.infer<typeof FirstPartyMcpToolName>;
|
|
|
422
442
|
* registered on the remote `opengeni` MCP server. They still belong to the
|
|
423
443
|
* same user-selectable first-party catalog and use the same attempt executor.
|
|
424
444
|
*/
|
|
425
|
-
export declare const FIRST_PARTY_IN_PROCESS_TOOL_NAMES: readonly ["interaction_discover", "browser_open", "browser_tabs", "browser_observe", "browser_act", "browser_debug", "browser_identity", "browser_publish", "browser_lifecycle", "computer_open", "computer_targets", "computer_observe", "computer_act", "computer_lifecycle"];
|
|
445
|
+
export declare const FIRST_PARTY_IN_PROCESS_TOOL_NAMES: readonly ["interaction_discover", "browser_open", "browser_tabs", "browser_observe", "browser_act", "browser_clipboard", "browser_debug", "browser_auth", "interaction_request_human", "browser_identity", "browser_publish", "browser_lifecycle", "computer_open", "computer_targets", "computer_observe", "computer_clipboard", "computer_act", "computer_lifecycle"];
|
|
426
446
|
/** Exact catalog registered by the remote first-party `opengeni` MCP server. */
|
|
427
|
-
export declare const FIRST_PARTY_REMOTE_MCP_TOOL_NAMES: ("artifacts_create" | "artifacts_get_source" | "artifacts_list" | "artifacts_publish" | "artifacts_rollback" | "atlassian_get" | "atlassian_search" | "atlassian_sources_list" | "browser_act" | "browser_debug" | "browser_identity" | "browser_lifecycle" | "browser_observe" | "browser_open" | "browser_publish" | "browser_tabs" | "capability_authorization_request" | "capability_catalog_search" | "computer_act" | "computer_lifecycle" | "computer_observe" | "computer_open" | "computer_targets" | "connected_machine_remove" | "editable_artifact_apply" | "editable_artifact_create" | "editable_artifact_export" | "editable_artifact_export_status" | "editable_artifact_get" | "editable_artifact_import" | "editable_artifact_inspect" | "editable_artifact_list" | "environment_list" | "environment_set_variable" | "github_connect_link" | "github_repositories_list" | "goal_complete" | "goal_pause" | "goal_set" | "goal_update" | "interaction_discover" | "memory_correct" | "memory_save" | "memory_search" | "preference_registry_get" | "preference_registry_summary" | "reddit_accounts_list" | "reddit_mentions_live" | "reddit_post_reply" | "reddit_posts_sync" | "reddit_search_live" | "reddit_thread_fetch" | "rig_get" | "rig_list" | "rig_promote" | "rig_propose_change" | "rig_verify" | "run_on" | "sandbox_attach" | "sandbox_provision" | "sandbox_swap" | "sandboxes_list" | "scheduled_task_runs_list" | "scheduled_tasks_create" | "scheduled_tasks_delete" | "scheduled_tasks_get" | "scheduled_tasks_list" | "scheduled_tasks_pause" | "scheduled_tasks_resume" | "scheduled_tasks_trigger" | "scheduled_tasks_update" | "session_create" | "session_events" | "session_get" | "session_pause" | "session_resume" | "session_send_message" | "session_steer" | "sessions_list" | "set_other_session_title" | "set_session_title" | "slack_bot_channel_history" | "slack_bot_delete_message" | "slack_bot_file_content" | "slack_bot_file_info" | "slack_bot_list_channels" | "slack_bot_list_files" | "slack_bot_list_users" | "slack_bot_post_message" | "slack_bot_thread_replies" | "social_connections_list" | "social_daily_analysis_context" | "social_mentions_live" | "social_post_reply" | "social_posts_recent" | "social_posts_sync" | "social_search_live" | "social_thread_fetch" | "variable_set_get_variable" | "variable_set_list" | "variable_set_set_variable" | "x_accounts_list" | "x_mentions_live" | "x_post_reply" | "x_posts_sync" | "x_search_live" | "x_thread_fetch")[];
|
|
447
|
+
export declare const FIRST_PARTY_REMOTE_MCP_TOOL_NAMES: ("artifacts_create" | "artifacts_get_source" | "artifacts_list" | "artifacts_publish" | "artifacts_rollback" | "atlassian_get" | "atlassian_search" | "atlassian_sources_list" | "browser_act" | "browser_auth" | "browser_clipboard" | "browser_debug" | "browser_identity" | "browser_lifecycle" | "browser_observe" | "browser_open" | "browser_publish" | "browser_tabs" | "capability_authorization_request" | "capability_catalog_search" | "computer_act" | "computer_clipboard" | "computer_lifecycle" | "computer_observe" | "computer_open" | "computer_targets" | "connected_machine_remove" | "editable_artifact_apply" | "editable_artifact_create" | "editable_artifact_export" | "editable_artifact_export_status" | "editable_artifact_get" | "editable_artifact_import" | "editable_artifact_inspect" | "editable_artifact_list" | "environment_list" | "environment_set_variable" | "fiken_bank_accounts_list" | "fiken_companies_list" | "fiken_contact_create" | "fiken_contacts_list" | "fiken_invoice_draft_create" | "fiken_invoice_get" | "fiken_invoices_list" | "fiken_products_list" | "fiken_purchases_list" | "fiken_sales_list" | "github_connect_link" | "github_repositories_list" | "goal_complete" | "goal_pause" | "goal_progress" | "goal_set" | "goal_update" | "interaction_discover" | "interaction_request_human" | "memory_correct" | "memory_save" | "memory_search" | "preference_registry_get" | "preference_registry_summary" | "reddit_accounts_list" | "reddit_mentions_live" | "reddit_post_reply" | "reddit_posts_sync" | "reddit_search_live" | "reddit_thread_fetch" | "rig_get" | "rig_list" | "rig_promote" | "rig_propose_change" | "rig_verify" | "run_on" | "sandbox_attach" | "sandbox_provision" | "sandbox_swap" | "sandboxes_list" | "scheduled_task_runs_list" | "scheduled_tasks_create" | "scheduled_tasks_delete" | "scheduled_tasks_get" | "scheduled_tasks_list" | "scheduled_tasks_pause" | "scheduled_tasks_resume" | "scheduled_tasks_trigger" | "scheduled_tasks_update" | "session_create" | "session_events" | "session_get" | "session_pause" | "session_resume" | "session_send_message" | "session_steer" | "sessions_list" | "set_other_session_title" | "set_session_title" | "slack_bot_channel_history" | "slack_bot_delete_message" | "slack_bot_file_content" | "slack_bot_file_info" | "slack_bot_list_channels" | "slack_bot_list_files" | "slack_bot_list_users" | "slack_bot_post_message" | "slack_bot_thread_replies" | "social_connections_list" | "social_daily_analysis_context" | "social_mentions_live" | "social_post_reply" | "social_posts_recent" | "social_posts_sync" | "social_search_live" | "social_thread_fetch" | "task_note_archive" | "task_note_save" | "task_notes_list" | "variable_set_get_variable" | "variable_set_list" | "variable_set_set_variable" | "x_accounts_list" | "x_mentions_live" | "x_post_reply" | "x_posts_sync" | "x_search_live" | "x_thread_fetch")[];
|
|
428
448
|
/** Authored CodeMode paths for the canonical collaborative artifact surface. */
|
|
429
449
|
export declare const EDITABLE_ARTIFACT_MCP_CODEMODE_PATHS: {
|
|
430
450
|
readonly editable_artifact_list: readonly ["artifacts", "list"];
|
|
@@ -441,7 +461,7 @@ export declare const EDITABLE_ARTIFACT_MCP_CODEMODE_PATHS: {
|
|
|
441
461
|
* the non-connector catalog, while an explicit session policy may still select
|
|
442
462
|
* any catalogued connector tool and remains independently permission-gated.
|
|
443
463
|
*/
|
|
444
|
-
export declare const DEFAULT_FIRST_PARTY_MCP_TOOLS: ("artifacts_create" | "artifacts_get_source" | "artifacts_list" | "artifacts_publish" | "artifacts_rollback" | "atlassian_get" | "atlassian_search" | "atlassian_sources_list" | "browser_act" | "browser_debug" | "browser_identity" | "browser_lifecycle" | "browser_observe" | "browser_open" | "browser_publish" | "browser_tabs" | "capability_authorization_request" | "capability_catalog_search" | "computer_act" | "computer_lifecycle" | "computer_observe" | "computer_open" | "computer_targets" | "connected_machine_remove" | "editable_artifact_apply" | "editable_artifact_create" | "editable_artifact_export" | "editable_artifact_export_status" | "editable_artifact_get" | "editable_artifact_import" | "editable_artifact_inspect" | "editable_artifact_list" | "environment_list" | "environment_set_variable" | "github_connect_link" | "github_repositories_list" | "goal_complete" | "goal_pause" | "goal_set" | "goal_update" | "interaction_discover" | "memory_correct" | "memory_save" | "memory_search" | "preference_registry_get" | "preference_registry_summary" | "reddit_accounts_list" | "reddit_mentions_live" | "reddit_post_reply" | "reddit_posts_sync" | "reddit_search_live" | "reddit_thread_fetch" | "rig_get" | "rig_list" | "rig_promote" | "rig_propose_change" | "rig_verify" | "run_on" | "sandbox_attach" | "sandbox_provision" | "sandbox_swap" | "sandboxes_list" | "scheduled_task_runs_list" | "scheduled_tasks_create" | "scheduled_tasks_delete" | "scheduled_tasks_get" | "scheduled_tasks_list" | "scheduled_tasks_pause" | "scheduled_tasks_resume" | "scheduled_tasks_trigger" | "scheduled_tasks_update" | "session_create" | "session_events" | "session_get" | "session_pause" | "session_resume" | "session_send_message" | "session_steer" | "sessions_list" | "set_other_session_title" | "set_session_title" | "slack_bot_channel_history" | "slack_bot_delete_message" | "slack_bot_file_content" | "slack_bot_file_info" | "slack_bot_list_channels" | "slack_bot_list_files" | "slack_bot_list_users" | "slack_bot_post_message" | "slack_bot_thread_replies" | "social_connections_list" | "social_daily_analysis_context" | "social_mentions_live" | "social_post_reply" | "social_posts_recent" | "social_posts_sync" | "social_search_live" | "social_thread_fetch" | "variable_set_get_variable" | "variable_set_list" | "variable_set_set_variable" | "x_accounts_list" | "x_mentions_live" | "x_post_reply" | "x_posts_sync" | "x_search_live" | "x_thread_fetch")[];
|
|
464
|
+
export declare const DEFAULT_FIRST_PARTY_MCP_TOOLS: ("artifacts_create" | "artifacts_get_source" | "artifacts_list" | "artifacts_publish" | "artifacts_rollback" | "atlassian_get" | "atlassian_search" | "atlassian_sources_list" | "browser_act" | "browser_auth" | "browser_clipboard" | "browser_debug" | "browser_identity" | "browser_lifecycle" | "browser_observe" | "browser_open" | "browser_publish" | "browser_tabs" | "capability_authorization_request" | "capability_catalog_search" | "computer_act" | "computer_clipboard" | "computer_lifecycle" | "computer_observe" | "computer_open" | "computer_targets" | "connected_machine_remove" | "editable_artifact_apply" | "editable_artifact_create" | "editable_artifact_export" | "editable_artifact_export_status" | "editable_artifact_get" | "editable_artifact_import" | "editable_artifact_inspect" | "editable_artifact_list" | "environment_list" | "environment_set_variable" | "fiken_bank_accounts_list" | "fiken_companies_list" | "fiken_contact_create" | "fiken_contacts_list" | "fiken_invoice_draft_create" | "fiken_invoice_get" | "fiken_invoices_list" | "fiken_products_list" | "fiken_purchases_list" | "fiken_sales_list" | "github_connect_link" | "github_repositories_list" | "goal_complete" | "goal_pause" | "goal_progress" | "goal_set" | "goal_update" | "interaction_discover" | "interaction_request_human" | "memory_correct" | "memory_save" | "memory_search" | "preference_registry_get" | "preference_registry_summary" | "reddit_accounts_list" | "reddit_mentions_live" | "reddit_post_reply" | "reddit_posts_sync" | "reddit_search_live" | "reddit_thread_fetch" | "rig_get" | "rig_list" | "rig_promote" | "rig_propose_change" | "rig_verify" | "run_on" | "sandbox_attach" | "sandbox_provision" | "sandbox_swap" | "sandboxes_list" | "scheduled_task_runs_list" | "scheduled_tasks_create" | "scheduled_tasks_delete" | "scheduled_tasks_get" | "scheduled_tasks_list" | "scheduled_tasks_pause" | "scheduled_tasks_resume" | "scheduled_tasks_trigger" | "scheduled_tasks_update" | "session_create" | "session_events" | "session_get" | "session_pause" | "session_resume" | "session_send_message" | "session_steer" | "sessions_list" | "set_other_session_title" | "set_session_title" | "slack_bot_channel_history" | "slack_bot_delete_message" | "slack_bot_file_content" | "slack_bot_file_info" | "slack_bot_list_channels" | "slack_bot_list_files" | "slack_bot_list_users" | "slack_bot_post_message" | "slack_bot_thread_replies" | "social_connections_list" | "social_daily_analysis_context" | "social_mentions_live" | "social_post_reply" | "social_posts_recent" | "social_posts_sync" | "social_search_live" | "social_thread_fetch" | "task_note_archive" | "task_note_save" | "task_notes_list" | "variable_set_get_variable" | "variable_set_list" | "variable_set_set_variable" | "x_accounts_list" | "x_mentions_live" | "x_post_reply" | "x_posts_sync" | "x_search_live" | "x_thread_fetch")[];
|
|
445
465
|
export declare function prefixedMcpToolName(registryId: string, toolName: string): string;
|
|
446
466
|
export declare const ProductAccessMode: z.ZodEnum<{
|
|
447
467
|
configured: "configured";
|
|
@@ -472,6 +492,247 @@ export declare const AccountRole: z.ZodEnum<{
|
|
|
472
492
|
owner: "owner";
|
|
473
493
|
}>;
|
|
474
494
|
export type AccountRole = z.infer<typeof AccountRole>;
|
|
495
|
+
/**
|
|
496
|
+
* Settled tenancy vocabulary for resources that may outlive or be used from
|
|
497
|
+
* more than one workspace. This names authority only; parsing one of these
|
|
498
|
+
* contracts never authorizes access by itself.
|
|
499
|
+
*/
|
|
500
|
+
export declare const ResourceAuthorityScope: z.ZodEnum<{
|
|
501
|
+
organization: "organization";
|
|
502
|
+
user: "user";
|
|
503
|
+
workspace: "workspace";
|
|
504
|
+
}>;
|
|
505
|
+
export type ResourceAuthorityScope = z.infer<typeof ResourceAuthorityScope>;
|
|
506
|
+
export declare const ResourceAuthorityListScope: z.ZodEnum<{
|
|
507
|
+
effective: "effective";
|
|
508
|
+
organization: "organization";
|
|
509
|
+
user: "user";
|
|
510
|
+
workspace: "workspace";
|
|
511
|
+
}>;
|
|
512
|
+
export type ResourceAuthorityListScope = z.infer<typeof ResourceAuthorityListScope>;
|
|
513
|
+
export declare const OrganizationMembershipStatus: z.ZodEnum<{
|
|
514
|
+
active: "active";
|
|
515
|
+
provisioning: "provisioning";
|
|
516
|
+
revoked: "revoked";
|
|
517
|
+
suspended: "suspended";
|
|
518
|
+
}>;
|
|
519
|
+
export type OrganizationMembershipStatus = z.infer<typeof OrganizationMembershipStatus>;
|
|
520
|
+
export declare const PersonalResourceRetentionMode: z.ZodEnum<{
|
|
521
|
+
delete_after: "delete_after";
|
|
522
|
+
retain: "retain";
|
|
523
|
+
}>;
|
|
524
|
+
export type PersonalResourceRetentionMode = z.infer<typeof PersonalResourceRetentionMode>;
|
|
525
|
+
export declare const SessionTenancyVisibility: z.ZodEnum<{
|
|
526
|
+
user_private: "user_private";
|
|
527
|
+
workspace_shared: "workspace_shared";
|
|
528
|
+
}>;
|
|
529
|
+
export type SessionTenancyVisibility = z.infer<typeof SessionTenancyVisibility>;
|
|
530
|
+
/** Public/session API vocabulary. Persistence keeps the explicit tenancy names. */
|
|
531
|
+
export declare const SessionVisibility: z.ZodEnum<{
|
|
532
|
+
private: "private";
|
|
533
|
+
workspace: "workspace";
|
|
534
|
+
}>;
|
|
535
|
+
export type SessionVisibility = z.infer<typeof SessionVisibility>;
|
|
536
|
+
export declare function sessionVisibilityToPublic(value: SessionTenancyVisibility): SessionVisibility;
|
|
537
|
+
export declare function sessionVisibilityFromPublic(value: SessionVisibility): SessionTenancyVisibility;
|
|
538
|
+
export declare const UserResourceGrantMode: z.ZodEnum<{
|
|
539
|
+
always: "always";
|
|
540
|
+
once: "once";
|
|
541
|
+
session: "session";
|
|
542
|
+
}>;
|
|
543
|
+
export type UserResourceGrantMode = z.infer<typeof UserResourceGrantMode>;
|
|
544
|
+
/** Canonical non-wildcard action named by a personal-resource grant. */
|
|
545
|
+
export declare const UserResourceGrantAction: z.ZodString;
|
|
546
|
+
export type UserResourceGrantAction = z.infer<typeof UserResourceGrantAction>;
|
|
547
|
+
export declare const UserResourceGrantStatus: z.ZodEnum<{
|
|
548
|
+
active: "active";
|
|
549
|
+
consumed: "consumed";
|
|
550
|
+
expired: "expired";
|
|
551
|
+
revoked: "revoked";
|
|
552
|
+
}>;
|
|
553
|
+
export type UserResourceGrantStatus = z.infer<typeof UserResourceGrantStatus>;
|
|
554
|
+
/** Self-only organization membership projection; no subject identifier leaks. */
|
|
555
|
+
export declare const OrganizationMembershipProjection: z.ZodObject<{
|
|
556
|
+
id: z.ZodString;
|
|
557
|
+
organizationId: z.ZodString;
|
|
558
|
+
status: z.ZodEnum<{
|
|
559
|
+
active: "active";
|
|
560
|
+
provisioning: "provisioning";
|
|
561
|
+
revoked: "revoked";
|
|
562
|
+
suspended: "suspended";
|
|
563
|
+
}>;
|
|
564
|
+
personalWorkspaceId: z.ZodNullable<z.ZodString>;
|
|
565
|
+
personalRetentionUntil: z.ZodNullable<z.ZodString>;
|
|
566
|
+
}, z.core.$strip>;
|
|
567
|
+
export type OrganizationMembershipProjection = z.infer<typeof OrganizationMembershipProjection>;
|
|
568
|
+
/**
|
|
569
|
+
* Exact active-membership facts returned by managed-human login provisioning.
|
|
570
|
+
* Retention is intentionally absent because the narrow provisioning capability
|
|
571
|
+
* neither reads nor mutates offboarding policy.
|
|
572
|
+
*/
|
|
573
|
+
export declare const ManagedOrganizationMembershipProjection: z.ZodObject<{
|
|
574
|
+
id: z.ZodString;
|
|
575
|
+
organizationId: z.ZodString;
|
|
576
|
+
status: z.ZodLiteral<"active">;
|
|
577
|
+
personalWorkspaceId: z.ZodString;
|
|
578
|
+
}, z.core.$strip>;
|
|
579
|
+
export type ManagedOrganizationMembershipProjection = z.infer<typeof ManagedOrganizationMembershipProjection>;
|
|
580
|
+
export declare const ListManagedOrganizationMembershipsResponse: z.ZodObject<{
|
|
581
|
+
memberships: z.ZodArray<z.ZodObject<{
|
|
582
|
+
id: z.ZodString;
|
|
583
|
+
organizationId: z.ZodString;
|
|
584
|
+
status: z.ZodLiteral<"active">;
|
|
585
|
+
personalWorkspaceId: z.ZodString;
|
|
586
|
+
}, z.core.$strip>>;
|
|
587
|
+
}, z.core.$strip>;
|
|
588
|
+
export type ListManagedOrganizationMembershipsResponse = z.infer<typeof ListManagedOrganizationMembershipsResponse>;
|
|
589
|
+
/**
|
|
590
|
+
* Opaque user-resource authority projection. Ownership is represented by the
|
|
591
|
+
* server-issued authority id, never a raw subject or membership id.
|
|
592
|
+
*/
|
|
593
|
+
export declare const UserResourceAuthorityProjection: z.ZodObject<{
|
|
594
|
+
id: z.ZodString;
|
|
595
|
+
organizationId: z.ZodString;
|
|
596
|
+
scope: z.ZodLiteral<"user">;
|
|
597
|
+
resourceKind: z.ZodString;
|
|
598
|
+
originWorkspaceId: z.ZodNullable<z.ZodString>;
|
|
599
|
+
generation: z.ZodNumber;
|
|
600
|
+
status: z.ZodEnum<{
|
|
601
|
+
active: "active";
|
|
602
|
+
retained: "retained";
|
|
603
|
+
revoked: "revoked";
|
|
604
|
+
}>;
|
|
605
|
+
}, z.core.$strip>;
|
|
606
|
+
export type UserResourceAuthorityProjection = z.infer<typeof UserResourceAuthorityProjection>;
|
|
607
|
+
/**
|
|
608
|
+
* Opaque grant projection. A grant is still inert until a server-side access
|
|
609
|
+
* boundary proves the organization, owner, workspace, session context, and
|
|
610
|
+
* current authority epoch.
|
|
611
|
+
*/
|
|
612
|
+
export declare const UserResourceGrantProjection: z.ZodObject<{
|
|
613
|
+
id: z.ZodString;
|
|
614
|
+
authorityId: z.ZodString;
|
|
615
|
+
organizationId: z.ZodString;
|
|
616
|
+
workspaceId: z.ZodString;
|
|
617
|
+
sessionId: z.ZodNullable<z.ZodString>;
|
|
618
|
+
action: z.ZodString;
|
|
619
|
+
mode: z.ZodEnum<{
|
|
620
|
+
always: "always";
|
|
621
|
+
once: "once";
|
|
622
|
+
session: "session";
|
|
623
|
+
}>;
|
|
624
|
+
context: z.ZodEnum<{
|
|
625
|
+
user_private: "user_private";
|
|
626
|
+
workspace_shared: "workspace_shared";
|
|
627
|
+
}>;
|
|
628
|
+
authorityEpoch: z.ZodNullable<z.ZodNumber>;
|
|
629
|
+
generation: z.ZodNumber;
|
|
630
|
+
status: z.ZodEnum<{
|
|
631
|
+
active: "active";
|
|
632
|
+
consumed: "consumed";
|
|
633
|
+
expired: "expired";
|
|
634
|
+
revoked: "revoked";
|
|
635
|
+
}>;
|
|
636
|
+
expiresAt: z.ZodNullable<z.ZodString>;
|
|
637
|
+
}, z.core.$strip>;
|
|
638
|
+
export type UserResourceGrantProjection = z.infer<typeof UserResourceGrantProjection>;
|
|
639
|
+
/**
|
|
640
|
+
* Extensible immutable delegation payload for accepted work. It contains only
|
|
641
|
+
* opaque authority/grant identity and execution fences, never owner identity
|
|
642
|
+
* or credential material.
|
|
643
|
+
*/
|
|
644
|
+
export declare const UserResourceDelegation: z.ZodObject<{
|
|
645
|
+
authorityId: z.ZodString;
|
|
646
|
+
grantId: z.ZodString;
|
|
647
|
+
organizationId: z.ZodString;
|
|
648
|
+
workspaceId: z.ZodString;
|
|
649
|
+
sessionId: z.ZodNullable<z.ZodString>;
|
|
650
|
+
action: z.ZodString;
|
|
651
|
+
mode: z.ZodEnum<{
|
|
652
|
+
always: "always";
|
|
653
|
+
once: "once";
|
|
654
|
+
session: "session";
|
|
655
|
+
}>;
|
|
656
|
+
context: z.ZodEnum<{
|
|
657
|
+
user_private: "user_private";
|
|
658
|
+
workspace_shared: "workspace_shared";
|
|
659
|
+
}>;
|
|
660
|
+
authorityEpoch: z.ZodNullable<z.ZodNumber>;
|
|
661
|
+
authorityGeneration: z.ZodNumber;
|
|
662
|
+
grantGeneration: z.ZodNumber;
|
|
663
|
+
resourceVersionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
664
|
+
}, z.core.$strip>;
|
|
665
|
+
export type UserResourceDelegation = z.infer<typeof UserResourceDelegation>;
|
|
666
|
+
/**
|
|
667
|
+
* Compatibility envelope for future resource selectors. Omitted scope and
|
|
668
|
+
* authority parse to workspace-only behavior; user authority is impossible
|
|
669
|
+
* without one complete opaque delegation.
|
|
670
|
+
*/
|
|
671
|
+
export declare const ResourceAuthorityEnvelope: z.ZodObject<{
|
|
672
|
+
scope: z.ZodDefault<z.ZodEnum<{
|
|
673
|
+
organization: "organization";
|
|
674
|
+
user: "user";
|
|
675
|
+
workspace: "workspace";
|
|
676
|
+
}>>;
|
|
677
|
+
userDelegation: z.ZodOptional<z.ZodObject<{
|
|
678
|
+
authorityId: z.ZodString;
|
|
679
|
+
grantId: z.ZodString;
|
|
680
|
+
organizationId: z.ZodString;
|
|
681
|
+
workspaceId: z.ZodString;
|
|
682
|
+
sessionId: z.ZodNullable<z.ZodString>;
|
|
683
|
+
action: z.ZodString;
|
|
684
|
+
mode: z.ZodEnum<{
|
|
685
|
+
always: "always";
|
|
686
|
+
once: "once";
|
|
687
|
+
session: "session";
|
|
688
|
+
}>;
|
|
689
|
+
context: z.ZodEnum<{
|
|
690
|
+
user_private: "user_private";
|
|
691
|
+
workspace_shared: "workspace_shared";
|
|
692
|
+
}>;
|
|
693
|
+
authorityEpoch: z.ZodNullable<z.ZodNumber>;
|
|
694
|
+
authorityGeneration: z.ZodNumber;
|
|
695
|
+
grantGeneration: z.ZodNumber;
|
|
696
|
+
resourceVersionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
697
|
+
}, z.core.$strip>>;
|
|
698
|
+
}, z.core.$strip>;
|
|
699
|
+
export type ResourceAuthorityEnvelope = z.infer<typeof ResourceAuthorityEnvelope>;
|
|
700
|
+
/** Secret-safe generic session tenancy metadata for an authorized viewer. */
|
|
701
|
+
export declare const SessionTenancyProjection: z.ZodObject<{
|
|
702
|
+
visibility: z.ZodEnum<{
|
|
703
|
+
user_private: "user_private";
|
|
704
|
+
workspace_shared: "workspace_shared";
|
|
705
|
+
}>;
|
|
706
|
+
authorityEpoch: z.ZodNumber;
|
|
707
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
708
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
709
|
+
sourceVisibility: z.ZodEnum<{
|
|
710
|
+
user_private: "user_private";
|
|
711
|
+
workspace_shared: "workspace_shared";
|
|
712
|
+
}>;
|
|
713
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
714
|
+
forkedAt: z.ZodString;
|
|
715
|
+
}, z.core.$strip>>;
|
|
716
|
+
}, z.core.$strip>;
|
|
717
|
+
export type SessionTenancyProjection = z.infer<typeof SessionTenancyProjection>;
|
|
718
|
+
/** Secret-safe public projection used by activated session APIs. */
|
|
719
|
+
export declare const SessionTenancyPublicProjection: z.ZodObject<{
|
|
720
|
+
visibility: z.ZodEnum<{
|
|
721
|
+
private: "private";
|
|
722
|
+
workspace: "workspace";
|
|
723
|
+
}>;
|
|
724
|
+
authorityEpoch: z.ZodNumber;
|
|
725
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
726
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
727
|
+
sourceVisibility: z.ZodEnum<{
|
|
728
|
+
private: "private";
|
|
729
|
+
workspace: "workspace";
|
|
730
|
+
}>;
|
|
731
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
732
|
+
forkedAt: z.ZodString;
|
|
733
|
+
}, z.core.$strip>>;
|
|
734
|
+
}, z.core.$strip>;
|
|
735
|
+
export type SessionTenancyPublicProjection = z.infer<typeof SessionTenancyPublicProjection>;
|
|
475
736
|
export declare const ManagedAccount: z.ZodObject<{
|
|
476
737
|
id: z.ZodString;
|
|
477
738
|
name: z.ZodString;
|
|
@@ -858,8 +1119,17 @@ export declare const DEFAULT_WORKSPACE_SLACK_REACTION_SUMMON_SETTINGS: {
|
|
|
858
1119
|
readonly mode: "bot_member";
|
|
859
1120
|
};
|
|
860
1121
|
};
|
|
1122
|
+
export declare const WorkspaceMemoryPromptMode: z.ZodEnum<{
|
|
1123
|
+
legacy_standing: "legacy_standing";
|
|
1124
|
+
retrieval_only: "retrieval_only";
|
|
1125
|
+
}>;
|
|
1126
|
+
export type WorkspaceMemoryPromptMode = z.infer<typeof WorkspaceMemoryPromptMode>;
|
|
861
1127
|
export declare const WorkspaceSettingsSchema: z.ZodObject<{
|
|
862
1128
|
memoryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1129
|
+
memoryPromptMode: z.ZodOptional<z.ZodEnum<{
|
|
1130
|
+
legacy_standing: "legacy_standing";
|
|
1131
|
+
retrieval_only: "retrieval_only";
|
|
1132
|
+
}>>;
|
|
863
1133
|
voiceInput: z.ZodOptional<z.ZodObject<{
|
|
864
1134
|
enabled: z.ZodBoolean;
|
|
865
1135
|
}, z.core.$strict>>;
|
|
@@ -934,6 +1204,8 @@ export declare const WorkspaceSettingsSchema: z.ZodObject<{
|
|
|
934
1204
|
}, z.core.$loose>;
|
|
935
1205
|
export type WorkspaceSettings = z.infer<typeof WorkspaceSettingsSchema>;
|
|
936
1206
|
export declare function resolveWorkspaceMemoryEnabled(settings: unknown): boolean;
|
|
1207
|
+
/** Reversible Memory V1 prompt rollout. Absent preserves legacy composition. */
|
|
1208
|
+
export declare function resolveWorkspaceMemoryPromptMode(settings: unknown): WorkspaceMemoryPromptMode;
|
|
937
1209
|
/** Default Codex compaction mode for new Codex sessions (remote_v2 when unset). */
|
|
938
1210
|
export declare function resolveWorkspaceCodexCompactionDefault(settings: unknown): CodexCompactionMode;
|
|
939
1211
|
/** Whether agents may request structured human input (enabled when unset). */
|
|
@@ -951,6 +1223,10 @@ export declare function resolveWorkspaceSlackReactionSummonSettings(settings: un
|
|
|
951
1223
|
export declare function workspaceSlackReactionChannelAllowed(settings: WorkspaceSlackReactionSummonSettings, channelId: string): boolean;
|
|
952
1224
|
export declare const UpdateWorkspaceSettingsRequest: z.ZodObject<{
|
|
953
1225
|
memoryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1226
|
+
memoryPromptMode: z.ZodOptional<z.ZodEnum<{
|
|
1227
|
+
legacy_standing: "legacy_standing";
|
|
1228
|
+
retrieval_only: "retrieval_only";
|
|
1229
|
+
}>>;
|
|
954
1230
|
voiceInput: z.ZodOptional<z.ZodObject<{
|
|
955
1231
|
enabled: z.ZodBoolean;
|
|
956
1232
|
}, z.core.$strict>>;
|
|
@@ -1414,6 +1690,8 @@ export declare const DelegatedAccessTokenPayload: z.ZodObject<{
|
|
|
1414
1690
|
atlassian_search: "atlassian_search";
|
|
1415
1691
|
atlassian_sources_list: "atlassian_sources_list";
|
|
1416
1692
|
browser_act: "browser_act";
|
|
1693
|
+
browser_auth: "browser_auth";
|
|
1694
|
+
browser_clipboard: "browser_clipboard";
|
|
1417
1695
|
browser_debug: "browser_debug";
|
|
1418
1696
|
browser_identity: "browser_identity";
|
|
1419
1697
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -1424,6 +1702,7 @@ export declare const DelegatedAccessTokenPayload: z.ZodObject<{
|
|
|
1424
1702
|
capability_authorization_request: "capability_authorization_request";
|
|
1425
1703
|
capability_catalog_search: "capability_catalog_search";
|
|
1426
1704
|
computer_act: "computer_act";
|
|
1705
|
+
computer_clipboard: "computer_clipboard";
|
|
1427
1706
|
computer_lifecycle: "computer_lifecycle";
|
|
1428
1707
|
computer_observe: "computer_observe";
|
|
1429
1708
|
computer_open: "computer_open";
|
|
@@ -1439,13 +1718,25 @@ export declare const DelegatedAccessTokenPayload: z.ZodObject<{
|
|
|
1439
1718
|
editable_artifact_list: "editable_artifact_list";
|
|
1440
1719
|
environment_list: "environment_list";
|
|
1441
1720
|
environment_set_variable: "environment_set_variable";
|
|
1721
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
1722
|
+
fiken_companies_list: "fiken_companies_list";
|
|
1723
|
+
fiken_contact_create: "fiken_contact_create";
|
|
1724
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
1725
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
1726
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
1727
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
1728
|
+
fiken_products_list: "fiken_products_list";
|
|
1729
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
1730
|
+
fiken_sales_list: "fiken_sales_list";
|
|
1442
1731
|
github_connect_link: "github_connect_link";
|
|
1443
1732
|
github_repositories_list: "github_repositories_list";
|
|
1444
1733
|
goal_complete: "goal_complete";
|
|
1445
1734
|
goal_pause: "goal_pause";
|
|
1735
|
+
goal_progress: "goal_progress";
|
|
1446
1736
|
goal_set: "goal_set";
|
|
1447
1737
|
goal_update: "goal_update";
|
|
1448
1738
|
interaction_discover: "interaction_discover";
|
|
1739
|
+
interaction_request_human: "interaction_request_human";
|
|
1449
1740
|
memory_correct: "memory_correct";
|
|
1450
1741
|
memory_save: "memory_save";
|
|
1451
1742
|
memory_search: "memory_search";
|
|
@@ -1503,6 +1794,9 @@ export declare const DelegatedAccessTokenPayload: z.ZodObject<{
|
|
|
1503
1794
|
social_posts_sync: "social_posts_sync";
|
|
1504
1795
|
social_search_live: "social_search_live";
|
|
1505
1796
|
social_thread_fetch: "social_thread_fetch";
|
|
1797
|
+
task_note_archive: "task_note_archive";
|
|
1798
|
+
task_note_save: "task_note_save";
|
|
1799
|
+
task_notes_list: "task_notes_list";
|
|
1506
1800
|
variable_set_get_variable: "variable_set_get_variable";
|
|
1507
1801
|
variable_set_list: "variable_set_list";
|
|
1508
1802
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -1513,6 +1807,8 @@ export declare const DelegatedAccessTokenPayload: z.ZodObject<{
|
|
|
1513
1807
|
x_search_live: "x_search_live";
|
|
1514
1808
|
x_thread_fetch: "x_thread_fetch";
|
|
1515
1809
|
}>>>;
|
|
1810
|
+
nestedAgentDepth: z.ZodOptional<z.ZodNumber>;
|
|
1811
|
+
effectiveMaxNestedAgentDepth: z.ZodOptional<z.ZodNumber>;
|
|
1516
1812
|
turnId: z.ZodOptional<z.ZodString>;
|
|
1517
1813
|
attemptId: z.ZodOptional<z.ZodString>;
|
|
1518
1814
|
executionGeneration: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4392,6 +4688,86 @@ export declare const SessionGoalCreatedBy: z.ZodEnum<{
|
|
|
4392
4688
|
scheduled_task: "scheduled_task";
|
|
4393
4689
|
}>;
|
|
4394
4690
|
export type SessionGoalCreatedBy = z.infer<typeof SessionGoalCreatedBy>;
|
|
4691
|
+
export declare const SessionGoalMutationPolicy: z.ZodEnum<{
|
|
4692
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
4693
|
+
preserve_intent: "preserve_intent";
|
|
4694
|
+
review_changes: "review_changes";
|
|
4695
|
+
}>;
|
|
4696
|
+
export type SessionGoalMutationPolicy = z.infer<typeof SessionGoalMutationPolicy>;
|
|
4697
|
+
export declare const SessionGoalChangeKind: z.ZodEnum<{
|
|
4698
|
+
adaptation: "adaptation";
|
|
4699
|
+
refinement: "refinement";
|
|
4700
|
+
replacement: "replacement";
|
|
4701
|
+
}>;
|
|
4702
|
+
export type SessionGoalChangeKind = z.infer<typeof SessionGoalChangeKind>;
|
|
4703
|
+
export declare const SESSION_GOAL_TEXT_MAX_BYTES: number;
|
|
4704
|
+
export declare const SESSION_GOAL_SUCCESS_CRITERIA_MAX_BYTES: number;
|
|
4705
|
+
export declare const SESSION_GOAL_RATIONALE_MAX_BYTES: number;
|
|
4706
|
+
export declare const SESSION_GOAL_PROGRESS_MAX_BYTES: number;
|
|
4707
|
+
export declare function sessionGoalUtf8Bytes(value: string): number;
|
|
4708
|
+
export declare const SessionGoalSnapshot: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4709
|
+
state: z.ZodLiteral<"none">;
|
|
4710
|
+
capturedAt: z.ZodString;
|
|
4711
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4712
|
+
state: z.ZodEnum<{
|
|
4713
|
+
active: "active";
|
|
4714
|
+
completed: "completed";
|
|
4715
|
+
paused: "paused";
|
|
4716
|
+
}>;
|
|
4717
|
+
goalId: z.ZodString;
|
|
4718
|
+
objectiveRevision: z.ZodNumber;
|
|
4719
|
+
text: z.ZodString;
|
|
4720
|
+
successCriteria: z.ZodNullable<z.ZodString>;
|
|
4721
|
+
mutationPolicy: z.ZodEnum<{
|
|
4722
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
4723
|
+
preserve_intent: "preserve_intent";
|
|
4724
|
+
review_changes: "review_changes";
|
|
4725
|
+
}>;
|
|
4726
|
+
capturedAt: z.ZodString;
|
|
4727
|
+
}, z.core.$strip>], "state">;
|
|
4728
|
+
export type SessionGoalSnapshot = z.infer<typeof SessionGoalSnapshot>;
|
|
4729
|
+
export declare const SessionGoalRevision: z.ZodObject<{
|
|
4730
|
+
id: z.ZodString;
|
|
4731
|
+
accountId: z.ZodString;
|
|
4732
|
+
workspaceId: z.ZodString;
|
|
4733
|
+
sessionId: z.ZodString;
|
|
4734
|
+
goalId: z.ZodString;
|
|
4735
|
+
disposition: z.ZodEnum<{
|
|
4736
|
+
applied: "applied";
|
|
4737
|
+
proposed: "proposed";
|
|
4738
|
+
rejected: "rejected";
|
|
4739
|
+
}>;
|
|
4740
|
+
changeKind: z.ZodEnum<{
|
|
4741
|
+
adaptation: "adaptation";
|
|
4742
|
+
refinement: "refinement";
|
|
4743
|
+
replacement: "replacement";
|
|
4744
|
+
}>;
|
|
4745
|
+
baseObjectiveRevision: z.ZodNumber;
|
|
4746
|
+
resultObjectiveRevision: z.ZodNullable<z.ZodNumber>;
|
|
4747
|
+
text: z.ZodString;
|
|
4748
|
+
successCriteria: z.ZodNullable<z.ZodString>;
|
|
4749
|
+
mutationPolicy: z.ZodEnum<{
|
|
4750
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
4751
|
+
preserve_intent: "preserve_intent";
|
|
4752
|
+
review_changes: "review_changes";
|
|
4753
|
+
}>;
|
|
4754
|
+
rationale: z.ZodString;
|
|
4755
|
+
actor: z.ZodEnum<{
|
|
4756
|
+
agent: "agent";
|
|
4757
|
+
api: "api";
|
|
4758
|
+
scheduled_task: "scheduled_task";
|
|
4759
|
+
}>;
|
|
4760
|
+
actorTurnId: z.ZodNullable<z.ZodString>;
|
|
4761
|
+
actorAttemptId: z.ZodNullable<z.ZodString>;
|
|
4762
|
+
proposalId: z.ZodNullable<z.ZodString>;
|
|
4763
|
+
createdAt: z.ZodString;
|
|
4764
|
+
}, z.core.$strip>;
|
|
4765
|
+
export type SessionGoalRevision = z.infer<typeof SessionGoalRevision>;
|
|
4766
|
+
export declare const ApplySessionGoalRevisionRequest: z.ZodObject<{
|
|
4767
|
+
expectedObjectiveRevision: z.ZodNumber;
|
|
4768
|
+
rationale: z.ZodOptional<z.ZodString>;
|
|
4769
|
+
}, z.core.$strip>;
|
|
4770
|
+
export type ApplySessionGoalRevisionRequest = z.infer<typeof ApplySessionGoalRevisionRequest>;
|
|
4395
4771
|
export declare const SessionGoalPausedReason: z.ZodEnum<{
|
|
4396
4772
|
agent: "agent";
|
|
4397
4773
|
api: "api";
|
|
@@ -4473,6 +4849,12 @@ export declare const SessionGoal: z.ZodObject<{
|
|
|
4473
4849
|
scheduled_task: "scheduled_task";
|
|
4474
4850
|
}>;
|
|
4475
4851
|
version: z.ZodNumber;
|
|
4852
|
+
objectiveRevision: z.ZodNumber;
|
|
4853
|
+
mutationPolicy: z.ZodEnum<{
|
|
4854
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
4855
|
+
preserve_intent: "preserve_intent";
|
|
4856
|
+
review_changes: "review_changes";
|
|
4857
|
+
}>;
|
|
4476
4858
|
autoContinuations: z.ZodNumber;
|
|
4477
4859
|
noProgressStreak: z.ZodNumber;
|
|
4478
4860
|
maxAutoContinuations: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4512,15 +4894,30 @@ export declare const GoalSpec: z.ZodObject<{
|
|
|
4512
4894
|
text: z.ZodString;
|
|
4513
4895
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
4514
4896
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
4897
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
4898
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
4899
|
+
preserve_intent: "preserve_intent";
|
|
4900
|
+
review_changes: "review_changes";
|
|
4901
|
+
}>>;
|
|
4515
4902
|
}, z.core.$strip>;
|
|
4516
4903
|
export type GoalSpec = z.infer<typeof GoalSpec>;
|
|
4517
|
-
export declare const UpdateSessionGoalRequest: z.ZodObject<{
|
|
4904
|
+
export declare const UpdateSessionGoalRequest: z.ZodUnion<readonly [z.ZodObject<{
|
|
4518
4905
|
status: z.ZodEnum<{
|
|
4519
4906
|
active: "active";
|
|
4520
4907
|
paused: "paused";
|
|
4521
4908
|
}>;
|
|
4522
4909
|
rationale: z.ZodOptional<z.ZodString>;
|
|
4523
|
-
}, z.core.$strip
|
|
4910
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4911
|
+
text: z.ZodString;
|
|
4912
|
+
successCriteria: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4913
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
4914
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
4915
|
+
preserve_intent: "preserve_intent";
|
|
4916
|
+
review_changes: "review_changes";
|
|
4917
|
+
}>>;
|
|
4918
|
+
rationale: z.ZodString;
|
|
4919
|
+
expectedObjectiveRevision: z.ZodNumber;
|
|
4920
|
+
}, z.core.$strip>]>;
|
|
4524
4921
|
export type UpdateSessionGoalRequest = z.infer<typeof UpdateSessionGoalRequest>;
|
|
4525
4922
|
export declare const UpdateSessionRequest: z.ZodObject<{
|
|
4526
4923
|
title: z.ZodString;
|
|
@@ -4551,6 +4948,8 @@ export declare const UpdateSessionToolPolicyRequest: z.ZodUnion<readonly [z.ZodO
|
|
|
4551
4948
|
atlassian_search: "atlassian_search";
|
|
4552
4949
|
atlassian_sources_list: "atlassian_sources_list";
|
|
4553
4950
|
browser_act: "browser_act";
|
|
4951
|
+
browser_auth: "browser_auth";
|
|
4952
|
+
browser_clipboard: "browser_clipboard";
|
|
4554
4953
|
browser_debug: "browser_debug";
|
|
4555
4954
|
browser_identity: "browser_identity";
|
|
4556
4955
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -4561,6 +4960,7 @@ export declare const UpdateSessionToolPolicyRequest: z.ZodUnion<readonly [z.ZodO
|
|
|
4561
4960
|
capability_authorization_request: "capability_authorization_request";
|
|
4562
4961
|
capability_catalog_search: "capability_catalog_search";
|
|
4563
4962
|
computer_act: "computer_act";
|
|
4963
|
+
computer_clipboard: "computer_clipboard";
|
|
4564
4964
|
computer_lifecycle: "computer_lifecycle";
|
|
4565
4965
|
computer_observe: "computer_observe";
|
|
4566
4966
|
computer_open: "computer_open";
|
|
@@ -4576,13 +4976,25 @@ export declare const UpdateSessionToolPolicyRequest: z.ZodUnion<readonly [z.ZodO
|
|
|
4576
4976
|
editable_artifact_list: "editable_artifact_list";
|
|
4577
4977
|
environment_list: "environment_list";
|
|
4578
4978
|
environment_set_variable: "environment_set_variable";
|
|
4979
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
4980
|
+
fiken_companies_list: "fiken_companies_list";
|
|
4981
|
+
fiken_contact_create: "fiken_contact_create";
|
|
4982
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
4983
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
4984
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
4985
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
4986
|
+
fiken_products_list: "fiken_products_list";
|
|
4987
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
4988
|
+
fiken_sales_list: "fiken_sales_list";
|
|
4579
4989
|
github_connect_link: "github_connect_link";
|
|
4580
4990
|
github_repositories_list: "github_repositories_list";
|
|
4581
4991
|
goal_complete: "goal_complete";
|
|
4582
4992
|
goal_pause: "goal_pause";
|
|
4993
|
+
goal_progress: "goal_progress";
|
|
4583
4994
|
goal_set: "goal_set";
|
|
4584
4995
|
goal_update: "goal_update";
|
|
4585
4996
|
interaction_discover: "interaction_discover";
|
|
4997
|
+
interaction_request_human: "interaction_request_human";
|
|
4586
4998
|
memory_correct: "memory_correct";
|
|
4587
4999
|
memory_save: "memory_save";
|
|
4588
5000
|
memory_search: "memory_search";
|
|
@@ -4640,6 +5052,9 @@ export declare const UpdateSessionToolPolicyRequest: z.ZodUnion<readonly [z.ZodO
|
|
|
4640
5052
|
social_posts_sync: "social_posts_sync";
|
|
4641
5053
|
social_search_live: "social_search_live";
|
|
4642
5054
|
social_thread_fetch: "social_thread_fetch";
|
|
5055
|
+
task_note_archive: "task_note_archive";
|
|
5056
|
+
task_note_save: "task_note_save";
|
|
5057
|
+
task_notes_list: "task_notes_list";
|
|
4643
5058
|
variable_set_get_variable: "variable_set_get_variable";
|
|
4644
5059
|
variable_set_list: "variable_set_list";
|
|
4645
5060
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -5015,6 +5430,7 @@ export declare const SessionRealtimeModel: z.ZodEnum<{
|
|
|
5015
5430
|
"opengeni-gateway/openai/gpt-realtime-2.1": "opengeni-gateway/openai/gpt-realtime-2.1";
|
|
5016
5431
|
"opengeni-gateway/openai/gpt-realtime-mini": "opengeni-gateway/openai/gpt-realtime-mini";
|
|
5017
5432
|
"opengeni-gateway/xai/grok-voice-think-fast-2.0": "opengeni-gateway/xai/grok-voice-think-fast-2.0";
|
|
5433
|
+
"supergrok/grok-voice-think-fast-2.0": "supergrok/grok-voice-think-fast-2.0";
|
|
5018
5434
|
"workspace-gateway/openai/gpt-realtime-2.1": "workspace-gateway/openai/gpt-realtime-2.1";
|
|
5019
5435
|
"workspace-gateway/openai/gpt-realtime-mini": "workspace-gateway/openai/gpt-realtime-mini";
|
|
5020
5436
|
"workspace-gateway/xai/grok-voice-think-fast-2.0": "workspace-gateway/xai/grok-voice-think-fast-2.0";
|
|
@@ -5026,6 +5442,7 @@ export declare const WorkspaceRealtimeModelCatalogItem: z.ZodObject<{
|
|
|
5026
5442
|
"opengeni-gateway/openai/gpt-realtime-2.1": "opengeni-gateway/openai/gpt-realtime-2.1";
|
|
5027
5443
|
"opengeni-gateway/openai/gpt-realtime-mini": "opengeni-gateway/openai/gpt-realtime-mini";
|
|
5028
5444
|
"opengeni-gateway/xai/grok-voice-think-fast-2.0": "opengeni-gateway/xai/grok-voice-think-fast-2.0";
|
|
5445
|
+
"supergrok/grok-voice-think-fast-2.0": "supergrok/grok-voice-think-fast-2.0";
|
|
5029
5446
|
"workspace-gateway/openai/gpt-realtime-2.1": "workspace-gateway/openai/gpt-realtime-2.1";
|
|
5030
5447
|
"workspace-gateway/openai/gpt-realtime-mini": "workspace-gateway/openai/gpt-realtime-mini";
|
|
5031
5448
|
"workspace-gateway/xai/grok-voice-think-fast-2.0": "workspace-gateway/xai/grok-voice-think-fast-2.0";
|
|
@@ -5033,6 +5450,7 @@ export declare const WorkspaceRealtimeModelCatalogItem: z.ZodObject<{
|
|
|
5033
5450
|
label: z.ZodString;
|
|
5034
5451
|
provider: z.ZodEnum<{
|
|
5035
5452
|
"Connected Codex": "Connected Codex";
|
|
5453
|
+
"Connected SuperGrok": "Connected SuperGrok";
|
|
5036
5454
|
OpenGeni: "OpenGeni";
|
|
5037
5455
|
"Your Gateway": "Your Gateway";
|
|
5038
5456
|
}>;
|
|
@@ -5049,6 +5467,7 @@ export declare const WorkspaceRealtimeModelCatalogResponse: z.ZodObject<{
|
|
|
5049
5467
|
"opengeni-gateway/openai/gpt-realtime-2.1": "opengeni-gateway/openai/gpt-realtime-2.1";
|
|
5050
5468
|
"opengeni-gateway/openai/gpt-realtime-mini": "opengeni-gateway/openai/gpt-realtime-mini";
|
|
5051
5469
|
"opengeni-gateway/xai/grok-voice-think-fast-2.0": "opengeni-gateway/xai/grok-voice-think-fast-2.0";
|
|
5470
|
+
"supergrok/grok-voice-think-fast-2.0": "supergrok/grok-voice-think-fast-2.0";
|
|
5052
5471
|
"workspace-gateway/openai/gpt-realtime-2.1": "workspace-gateway/openai/gpt-realtime-2.1";
|
|
5053
5472
|
"workspace-gateway/openai/gpt-realtime-mini": "workspace-gateway/openai/gpt-realtime-mini";
|
|
5054
5473
|
"workspace-gateway/xai/grok-voice-think-fast-2.0": "workspace-gateway/xai/grok-voice-think-fast-2.0";
|
|
@@ -5056,6 +5475,7 @@ export declare const WorkspaceRealtimeModelCatalogResponse: z.ZodObject<{
|
|
|
5056
5475
|
label: z.ZodString;
|
|
5057
5476
|
provider: z.ZodEnum<{
|
|
5058
5477
|
"Connected Codex": "Connected Codex";
|
|
5478
|
+
"Connected SuperGrok": "Connected SuperGrok";
|
|
5059
5479
|
OpenGeni: "OpenGeni";
|
|
5060
5480
|
"Your Gateway": "Your Gateway";
|
|
5061
5481
|
}>;
|
|
@@ -5087,6 +5507,7 @@ export declare const SessionRealtimeMode: z.ZodObject<{
|
|
|
5087
5507
|
"opengeni-gateway/openai/gpt-realtime-2.1": "opengeni-gateway/openai/gpt-realtime-2.1";
|
|
5088
5508
|
"opengeni-gateway/openai/gpt-realtime-mini": "opengeni-gateway/openai/gpt-realtime-mini";
|
|
5089
5509
|
"opengeni-gateway/xai/grok-voice-think-fast-2.0": "opengeni-gateway/xai/grok-voice-think-fast-2.0";
|
|
5510
|
+
"supergrok/grok-voice-think-fast-2.0": "supergrok/grok-voice-think-fast-2.0";
|
|
5090
5511
|
"workspace-gateway/openai/gpt-realtime-2.1": "workspace-gateway/openai/gpt-realtime-2.1";
|
|
5091
5512
|
"workspace-gateway/openai/gpt-realtime-mini": "workspace-gateway/openai/gpt-realtime-mini";
|
|
5092
5513
|
"workspace-gateway/xai/grok-voice-think-fast-2.0": "workspace-gateway/xai/grok-voice-think-fast-2.0";
|
|
@@ -5117,6 +5538,7 @@ export declare const BeginSessionRealtimeRequest: z.ZodObject<{
|
|
|
5117
5538
|
"opengeni-gateway/openai/gpt-realtime-2.1": "opengeni-gateway/openai/gpt-realtime-2.1";
|
|
5118
5539
|
"opengeni-gateway/openai/gpt-realtime-mini": "opengeni-gateway/openai/gpt-realtime-mini";
|
|
5119
5540
|
"opengeni-gateway/xai/grok-voice-think-fast-2.0": "opengeni-gateway/xai/grok-voice-think-fast-2.0";
|
|
5541
|
+
"supergrok/grok-voice-think-fast-2.0": "supergrok/grok-voice-think-fast-2.0";
|
|
5120
5542
|
"workspace-gateway/openai/gpt-realtime-2.1": "workspace-gateway/openai/gpt-realtime-2.1";
|
|
5121
5543
|
"workspace-gateway/openai/gpt-realtime-mini": "workspace-gateway/openai/gpt-realtime-mini";
|
|
5122
5544
|
"workspace-gateway/xai/grok-voice-think-fast-2.0": "workspace-gateway/xai/grok-voice-think-fast-2.0";
|
|
@@ -5150,6 +5572,7 @@ export declare const SessionRealtimeMutationResponse: z.ZodObject<{
|
|
|
5150
5572
|
"opengeni-gateway/openai/gpt-realtime-2.1": "opengeni-gateway/openai/gpt-realtime-2.1";
|
|
5151
5573
|
"opengeni-gateway/openai/gpt-realtime-mini": "opengeni-gateway/openai/gpt-realtime-mini";
|
|
5152
5574
|
"opengeni-gateway/xai/grok-voice-think-fast-2.0": "opengeni-gateway/xai/grok-voice-think-fast-2.0";
|
|
5575
|
+
"supergrok/grok-voice-think-fast-2.0": "supergrok/grok-voice-think-fast-2.0";
|
|
5153
5576
|
"workspace-gateway/openai/gpt-realtime-2.1": "workspace-gateway/openai/gpt-realtime-2.1";
|
|
5154
5577
|
"workspace-gateway/openai/gpt-realtime-mini": "workspace-gateway/openai/gpt-realtime-mini";
|
|
5155
5578
|
"workspace-gateway/xai/grok-voice-think-fast-2.0": "workspace-gateway/xai/grok-voice-think-fast-2.0";
|
|
@@ -5177,6 +5600,7 @@ export declare const SessionAuthorizationOperation: z.ZodEnum<{
|
|
|
5177
5600
|
"session.append": "session.append";
|
|
5178
5601
|
"session.approval.write": "session.approval.write";
|
|
5179
5602
|
"session.capture.read": "session.capture.read";
|
|
5603
|
+
"session.channel.write": "session.channel.write";
|
|
5180
5604
|
"session.child.create": "session.child.create";
|
|
5181
5605
|
"session.codemode.call": "session.codemode.call";
|
|
5182
5606
|
"session.codex_account.write": "session.codex_account.write";
|
|
@@ -5188,6 +5612,7 @@ export declare const SessionAuthorizationOperation: z.ZodEnum<{
|
|
|
5188
5612
|
"session.files.read": "session.files.read";
|
|
5189
5613
|
"session.files.write": "session.files.write";
|
|
5190
5614
|
"session.first_party_mcp.call": "session.first_party_mcp.call";
|
|
5615
|
+
"session.fork.create": "session.fork.create";
|
|
5191
5616
|
"session.git.read": "session.git.read";
|
|
5192
5617
|
"session.goal.read": "session.goal.read";
|
|
5193
5618
|
"session.goal.write": "session.goal.write";
|
|
@@ -5212,6 +5637,7 @@ export declare const SessionAuthorizationOperation: z.ZodEnum<{
|
|
|
5212
5637
|
"session.turns.read": "session.turns.read";
|
|
5213
5638
|
"session.viewer.control": "session.viewer.control";
|
|
5214
5639
|
"session.viewer.read": "session.viewer.read";
|
|
5640
|
+
"session.visibility.write": "session.visibility.write";
|
|
5215
5641
|
}>;
|
|
5216
5642
|
export type SessionAuthorizationOperation = z.infer<typeof SessionAuthorizationOperation>;
|
|
5217
5643
|
export declare const SessionAuthorizationActor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -5968,6 +6394,11 @@ export declare const NewSessionDraftOptions: z.ZodObject<{
|
|
|
5968
6394
|
text: z.ZodString;
|
|
5969
6395
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
5970
6396
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
6397
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
6398
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
6399
|
+
preserve_intent: "preserve_intent";
|
|
6400
|
+
review_changes: "review_changes";
|
|
6401
|
+
}>>;
|
|
5971
6402
|
}, z.core.$strip>>;
|
|
5972
6403
|
firstPartyMcpPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5973
6404
|
"account:admin": "account:admin";
|
|
@@ -6027,6 +6458,8 @@ export declare const NewSessionDraftOptions: z.ZodObject<{
|
|
|
6027
6458
|
atlassian_search: "atlassian_search";
|
|
6028
6459
|
atlassian_sources_list: "atlassian_sources_list";
|
|
6029
6460
|
browser_act: "browser_act";
|
|
6461
|
+
browser_auth: "browser_auth";
|
|
6462
|
+
browser_clipboard: "browser_clipboard";
|
|
6030
6463
|
browser_debug: "browser_debug";
|
|
6031
6464
|
browser_identity: "browser_identity";
|
|
6032
6465
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -6037,6 +6470,7 @@ export declare const NewSessionDraftOptions: z.ZodObject<{
|
|
|
6037
6470
|
capability_authorization_request: "capability_authorization_request";
|
|
6038
6471
|
capability_catalog_search: "capability_catalog_search";
|
|
6039
6472
|
computer_act: "computer_act";
|
|
6473
|
+
computer_clipboard: "computer_clipboard";
|
|
6040
6474
|
computer_lifecycle: "computer_lifecycle";
|
|
6041
6475
|
computer_observe: "computer_observe";
|
|
6042
6476
|
computer_open: "computer_open";
|
|
@@ -6052,13 +6486,25 @@ export declare const NewSessionDraftOptions: z.ZodObject<{
|
|
|
6052
6486
|
editable_artifact_list: "editable_artifact_list";
|
|
6053
6487
|
environment_list: "environment_list";
|
|
6054
6488
|
environment_set_variable: "environment_set_variable";
|
|
6489
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
6490
|
+
fiken_companies_list: "fiken_companies_list";
|
|
6491
|
+
fiken_contact_create: "fiken_contact_create";
|
|
6492
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
6493
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
6494
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
6495
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
6496
|
+
fiken_products_list: "fiken_products_list";
|
|
6497
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
6498
|
+
fiken_sales_list: "fiken_sales_list";
|
|
6055
6499
|
github_connect_link: "github_connect_link";
|
|
6056
6500
|
github_repositories_list: "github_repositories_list";
|
|
6057
6501
|
goal_complete: "goal_complete";
|
|
6058
6502
|
goal_pause: "goal_pause";
|
|
6503
|
+
goal_progress: "goal_progress";
|
|
6059
6504
|
goal_set: "goal_set";
|
|
6060
6505
|
goal_update: "goal_update";
|
|
6061
6506
|
interaction_discover: "interaction_discover";
|
|
6507
|
+
interaction_request_human: "interaction_request_human";
|
|
6062
6508
|
memory_correct: "memory_correct";
|
|
6063
6509
|
memory_save: "memory_save";
|
|
6064
6510
|
memory_search: "memory_search";
|
|
@@ -6116,6 +6562,9 @@ export declare const NewSessionDraftOptions: z.ZodObject<{
|
|
|
6116
6562
|
social_posts_sync: "social_posts_sync";
|
|
6117
6563
|
social_search_live: "social_search_live";
|
|
6118
6564
|
social_thread_fetch: "social_thread_fetch";
|
|
6565
|
+
task_note_archive: "task_note_archive";
|
|
6566
|
+
task_note_save: "task_note_save";
|
|
6567
|
+
task_notes_list: "task_notes_list";
|
|
6119
6568
|
variable_set_get_variable: "variable_set_get_variable";
|
|
6120
6569
|
variable_set_list: "variable_set_list";
|
|
6121
6570
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -6202,6 +6651,11 @@ export declare const NewSessionDraft: z.ZodObject<{
|
|
|
6202
6651
|
text: z.ZodString;
|
|
6203
6652
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
6204
6653
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
6654
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
6655
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
6656
|
+
preserve_intent: "preserve_intent";
|
|
6657
|
+
review_changes: "review_changes";
|
|
6658
|
+
}>>;
|
|
6205
6659
|
}, z.core.$strip>>;
|
|
6206
6660
|
firstPartyMcpPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6207
6661
|
"account:admin": "account:admin";
|
|
@@ -6261,6 +6715,8 @@ export declare const NewSessionDraft: z.ZodObject<{
|
|
|
6261
6715
|
atlassian_search: "atlassian_search";
|
|
6262
6716
|
atlassian_sources_list: "atlassian_sources_list";
|
|
6263
6717
|
browser_act: "browser_act";
|
|
6718
|
+
browser_auth: "browser_auth";
|
|
6719
|
+
browser_clipboard: "browser_clipboard";
|
|
6264
6720
|
browser_debug: "browser_debug";
|
|
6265
6721
|
browser_identity: "browser_identity";
|
|
6266
6722
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -6271,6 +6727,7 @@ export declare const NewSessionDraft: z.ZodObject<{
|
|
|
6271
6727
|
capability_authorization_request: "capability_authorization_request";
|
|
6272
6728
|
capability_catalog_search: "capability_catalog_search";
|
|
6273
6729
|
computer_act: "computer_act";
|
|
6730
|
+
computer_clipboard: "computer_clipboard";
|
|
6274
6731
|
computer_lifecycle: "computer_lifecycle";
|
|
6275
6732
|
computer_observe: "computer_observe";
|
|
6276
6733
|
computer_open: "computer_open";
|
|
@@ -6286,13 +6743,25 @@ export declare const NewSessionDraft: z.ZodObject<{
|
|
|
6286
6743
|
editable_artifact_list: "editable_artifact_list";
|
|
6287
6744
|
environment_list: "environment_list";
|
|
6288
6745
|
environment_set_variable: "environment_set_variable";
|
|
6746
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
6747
|
+
fiken_companies_list: "fiken_companies_list";
|
|
6748
|
+
fiken_contact_create: "fiken_contact_create";
|
|
6749
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
6750
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
6751
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
6752
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
6753
|
+
fiken_products_list: "fiken_products_list";
|
|
6754
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
6755
|
+
fiken_sales_list: "fiken_sales_list";
|
|
6289
6756
|
github_connect_link: "github_connect_link";
|
|
6290
6757
|
github_repositories_list: "github_repositories_list";
|
|
6291
6758
|
goal_complete: "goal_complete";
|
|
6292
6759
|
goal_pause: "goal_pause";
|
|
6760
|
+
goal_progress: "goal_progress";
|
|
6293
6761
|
goal_set: "goal_set";
|
|
6294
6762
|
goal_update: "goal_update";
|
|
6295
6763
|
interaction_discover: "interaction_discover";
|
|
6764
|
+
interaction_request_human: "interaction_request_human";
|
|
6296
6765
|
memory_correct: "memory_correct";
|
|
6297
6766
|
memory_save: "memory_save";
|
|
6298
6767
|
memory_search: "memory_search";
|
|
@@ -6350,6 +6819,9 @@ export declare const NewSessionDraft: z.ZodObject<{
|
|
|
6350
6819
|
social_posts_sync: "social_posts_sync";
|
|
6351
6820
|
social_search_live: "social_search_live";
|
|
6352
6821
|
social_thread_fetch: "social_thread_fetch";
|
|
6822
|
+
task_note_archive: "task_note_archive";
|
|
6823
|
+
task_note_save: "task_note_save";
|
|
6824
|
+
task_notes_list: "task_notes_list";
|
|
6353
6825
|
variable_set_get_variable: "variable_set_get_variable";
|
|
6354
6826
|
variable_set_list: "variable_set_list";
|
|
6355
6827
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -6436,6 +6908,11 @@ export declare const SaveNewSessionDraftRequest: z.ZodObject<{
|
|
|
6436
6908
|
text: z.ZodString;
|
|
6437
6909
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
6438
6910
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
6911
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
6912
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
6913
|
+
preserve_intent: "preserve_intent";
|
|
6914
|
+
review_changes: "review_changes";
|
|
6915
|
+
}>>;
|
|
6439
6916
|
}, z.core.$strip>>;
|
|
6440
6917
|
firstPartyMcpPermissions: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6441
6918
|
"account:admin": "account:admin";
|
|
@@ -6495,6 +6972,8 @@ export declare const SaveNewSessionDraftRequest: z.ZodObject<{
|
|
|
6495
6972
|
atlassian_search: "atlassian_search";
|
|
6496
6973
|
atlassian_sources_list: "atlassian_sources_list";
|
|
6497
6974
|
browser_act: "browser_act";
|
|
6975
|
+
browser_auth: "browser_auth";
|
|
6976
|
+
browser_clipboard: "browser_clipboard";
|
|
6498
6977
|
browser_debug: "browser_debug";
|
|
6499
6978
|
browser_identity: "browser_identity";
|
|
6500
6979
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -6505,6 +6984,7 @@ export declare const SaveNewSessionDraftRequest: z.ZodObject<{
|
|
|
6505
6984
|
capability_authorization_request: "capability_authorization_request";
|
|
6506
6985
|
capability_catalog_search: "capability_catalog_search";
|
|
6507
6986
|
computer_act: "computer_act";
|
|
6987
|
+
computer_clipboard: "computer_clipboard";
|
|
6508
6988
|
computer_lifecycle: "computer_lifecycle";
|
|
6509
6989
|
computer_observe: "computer_observe";
|
|
6510
6990
|
computer_open: "computer_open";
|
|
@@ -6520,13 +7000,25 @@ export declare const SaveNewSessionDraftRequest: z.ZodObject<{
|
|
|
6520
7000
|
editable_artifact_list: "editable_artifact_list";
|
|
6521
7001
|
environment_list: "environment_list";
|
|
6522
7002
|
environment_set_variable: "environment_set_variable";
|
|
7003
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
7004
|
+
fiken_companies_list: "fiken_companies_list";
|
|
7005
|
+
fiken_contact_create: "fiken_contact_create";
|
|
7006
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
7007
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
7008
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
7009
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
7010
|
+
fiken_products_list: "fiken_products_list";
|
|
7011
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
7012
|
+
fiken_sales_list: "fiken_sales_list";
|
|
6523
7013
|
github_connect_link: "github_connect_link";
|
|
6524
7014
|
github_repositories_list: "github_repositories_list";
|
|
6525
7015
|
goal_complete: "goal_complete";
|
|
6526
7016
|
goal_pause: "goal_pause";
|
|
7017
|
+
goal_progress: "goal_progress";
|
|
6527
7018
|
goal_set: "goal_set";
|
|
6528
7019
|
goal_update: "goal_update";
|
|
6529
7020
|
interaction_discover: "interaction_discover";
|
|
7021
|
+
interaction_request_human: "interaction_request_human";
|
|
6530
7022
|
memory_correct: "memory_correct";
|
|
6531
7023
|
memory_save: "memory_save";
|
|
6532
7024
|
memory_search: "memory_search";
|
|
@@ -6584,6 +7076,9 @@ export declare const SaveNewSessionDraftRequest: z.ZodObject<{
|
|
|
6584
7076
|
social_posts_sync: "social_posts_sync";
|
|
6585
7077
|
social_search_live: "social_search_live";
|
|
6586
7078
|
social_thread_fetch: "social_thread_fetch";
|
|
7079
|
+
task_note_archive: "task_note_archive";
|
|
7080
|
+
task_note_save: "task_note_save";
|
|
7081
|
+
task_notes_list: "task_notes_list";
|
|
6587
7082
|
variable_set_get_variable: "variable_set_get_variable";
|
|
6588
7083
|
variable_set_list: "variable_set_list";
|
|
6589
7084
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -7827,6 +8322,31 @@ export declare const UpdateRigRequest: z.ZodObject<{
|
|
|
7827
8322
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7828
8323
|
}, z.core.$strip>;
|
|
7829
8324
|
export type UpdateRigRequest = z.infer<typeof UpdateRigRequest>;
|
|
8325
|
+
export declare const Channel: z.ZodObject<{
|
|
8326
|
+
id: z.ZodString;
|
|
8327
|
+
accountId: z.ZodString;
|
|
8328
|
+
workspaceId: z.ZodString;
|
|
8329
|
+
name: z.ZodString;
|
|
8330
|
+
description: z.ZodNullable<z.ZodString>;
|
|
8331
|
+
createdBy: z.ZodNullable<z.ZodString>;
|
|
8332
|
+
createdAt: z.ZodString;
|
|
8333
|
+
updatedAt: z.ZodString;
|
|
8334
|
+
}, z.core.$strip>;
|
|
8335
|
+
export type Channel = z.infer<typeof Channel>;
|
|
8336
|
+
export declare const CreateChannelRequest: z.ZodObject<{
|
|
8337
|
+
name: z.ZodString;
|
|
8338
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8339
|
+
}, z.core.$strip>;
|
|
8340
|
+
export type CreateChannelRequest = z.infer<typeof CreateChannelRequest>;
|
|
8341
|
+
export declare const UpdateChannelRequest: z.ZodObject<{
|
|
8342
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8343
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8344
|
+
}, z.core.$strip>;
|
|
8345
|
+
export type UpdateChannelRequest = z.infer<typeof UpdateChannelRequest>;
|
|
8346
|
+
export declare const UpdateSessionChannelRequest: z.ZodObject<{
|
|
8347
|
+
channelId: z.ZodNullable<z.ZodString>;
|
|
8348
|
+
}, z.core.$strip>;
|
|
8349
|
+
export type UpdateSessionChannelRequest = z.infer<typeof UpdateSessionChannelRequest>;
|
|
7830
8350
|
export declare const RigSetupAppendPayload: z.ZodObject<{
|
|
7831
8351
|
command: z.ZodString;
|
|
7832
8352
|
note: z.ZodOptional<z.ZodString>;
|
|
@@ -8116,6 +8636,11 @@ export declare const ScheduledTaskAgentConfig: z.ZodObject<{
|
|
|
8116
8636
|
text: z.ZodString;
|
|
8117
8637
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
8118
8638
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
8639
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
8640
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
8641
|
+
preserve_intent: "preserve_intent";
|
|
8642
|
+
review_changes: "review_changes";
|
|
8643
|
+
}>>;
|
|
8119
8644
|
}, z.core.$strip>>;
|
|
8120
8645
|
maxNestedAgentDepth: z.ZodOptional<z.ZodNumber>;
|
|
8121
8646
|
}, z.core.$strip>;
|
|
@@ -8276,6 +8801,11 @@ export declare const ScheduledTask: z.ZodObject<{
|
|
|
8276
8801
|
text: z.ZodString;
|
|
8277
8802
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
8278
8803
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
8804
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
8805
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
8806
|
+
preserve_intent: "preserve_intent";
|
|
8807
|
+
review_changes: "review_changes";
|
|
8808
|
+
}>>;
|
|
8279
8809
|
}, z.core.$strip>>;
|
|
8280
8810
|
maxNestedAgentDepth: z.ZodOptional<z.ZodNumber>;
|
|
8281
8811
|
}, z.core.$strip>;
|
|
@@ -8779,6 +9309,11 @@ export declare const CreateScheduledTaskRequest: z.ZodUnion<readonly [z.ZodPipe<
|
|
|
8779
9309
|
text: z.ZodString;
|
|
8780
9310
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
8781
9311
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
9312
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
9313
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
9314
|
+
preserve_intent: "preserve_intent";
|
|
9315
|
+
review_changes: "review_changes";
|
|
9316
|
+
}>>;
|
|
8782
9317
|
}, z.core.$strip>>;
|
|
8783
9318
|
maxNestedAgentDepth: z.ZodOptional<z.ZodNumber>;
|
|
8784
9319
|
}, z.core.$strip>;
|
|
@@ -8941,6 +9476,11 @@ export declare const UpdateScheduledTaskRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
8941
9476
|
text: z.ZodString;
|
|
8942
9477
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
8943
9478
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
9479
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
9480
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
9481
|
+
preserve_intent: "preserve_intent";
|
|
9482
|
+
review_changes: "review_changes";
|
|
9483
|
+
}>>;
|
|
8944
9484
|
}, z.core.$strip>>;
|
|
8945
9485
|
maxNestedAgentDepth: z.ZodOptional<z.ZodNumber>;
|
|
8946
9486
|
}, z.core.$strip>>;
|
|
@@ -9110,10 +9650,10 @@ export declare const CapabilityPackComponentReference: z.ZodDiscriminatedUnion<[
|
|
|
9110
9650
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
9111
9651
|
}, z.core.$strict>, z.ZodObject<{
|
|
9112
9652
|
key: z.ZodString;
|
|
9113
|
-
kind: z.ZodLiteral<"
|
|
9653
|
+
kind: z.ZodLiteral<"facet">;
|
|
9114
9654
|
capabilityId: z.ZodString;
|
|
9115
9655
|
instanceKey: z.ZodString;
|
|
9116
|
-
|
|
9656
|
+
facetKey: z.ZodString;
|
|
9117
9657
|
bindingKey: z.ZodString;
|
|
9118
9658
|
configDigest: z.ZodString;
|
|
9119
9659
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9170,10 +9710,10 @@ export declare const CapabilityPack: z.ZodPreprocess<z.ZodObject<{
|
|
|
9170
9710
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
9171
9711
|
}, z.core.$strict>, z.ZodObject<{
|
|
9172
9712
|
key: z.ZodString;
|
|
9173
|
-
kind: z.ZodLiteral<"
|
|
9713
|
+
kind: z.ZodLiteral<"facet">;
|
|
9174
9714
|
capabilityId: z.ZodString;
|
|
9175
9715
|
instanceKey: z.ZodString;
|
|
9176
|
-
|
|
9716
|
+
facetKey: z.ZodString;
|
|
9177
9717
|
bindingKey: z.ZodString;
|
|
9178
9718
|
configDigest: z.ZodString;
|
|
9179
9719
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9305,10 +9845,10 @@ export declare const RegisterCapabilityPackRequest: z.ZodPreprocess<z.ZodObject<
|
|
|
9305
9845
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
9306
9846
|
}, z.core.$strict>, z.ZodObject<{
|
|
9307
9847
|
key: z.ZodString;
|
|
9308
|
-
kind: z.ZodLiteral<"
|
|
9848
|
+
kind: z.ZodLiteral<"facet">;
|
|
9309
9849
|
capabilityId: z.ZodString;
|
|
9310
9850
|
instanceKey: z.ZodString;
|
|
9311
|
-
|
|
9851
|
+
facetKey: z.ZodString;
|
|
9312
9852
|
bindingKey: z.ZodString;
|
|
9313
9853
|
configDigest: z.ZodString;
|
|
9314
9854
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9443,10 +9983,10 @@ export declare const WorkspaceRegisteredPack: z.ZodObject<{
|
|
|
9443
9983
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
9444
9984
|
}, z.core.$strict>, z.ZodObject<{
|
|
9445
9985
|
key: z.ZodString;
|
|
9446
|
-
kind: z.ZodLiteral<"
|
|
9986
|
+
kind: z.ZodLiteral<"facet">;
|
|
9447
9987
|
capabilityId: z.ZodString;
|
|
9448
9988
|
instanceKey: z.ZodString;
|
|
9449
|
-
|
|
9989
|
+
facetKey: z.ZodString;
|
|
9450
9990
|
bindingKey: z.ZodString;
|
|
9451
9991
|
configDigest: z.ZodString;
|
|
9452
9992
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9600,10 +10140,10 @@ export declare const PackInstallation: z.ZodObject<{
|
|
|
9600
10140
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
9601
10141
|
}, z.core.$strict>, z.ZodObject<{
|
|
9602
10142
|
key: z.ZodString;
|
|
9603
|
-
kind: z.ZodLiteral<"
|
|
10143
|
+
kind: z.ZodLiteral<"facet">;
|
|
9604
10144
|
capabilityId: z.ZodString;
|
|
9605
10145
|
instanceKey: z.ZodString;
|
|
9606
|
-
|
|
10146
|
+
facetKey: z.ZodString;
|
|
9607
10147
|
bindingKey: z.ZodString;
|
|
9608
10148
|
configDigest: z.ZodString;
|
|
9609
10149
|
required: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9713,7 +10253,7 @@ export type PackComponentResolutionStatus = z.infer<typeof PackComponentResoluti
|
|
|
9713
10253
|
export declare const PackComponentResolution: z.ZodObject<{
|
|
9714
10254
|
key: z.ZodString;
|
|
9715
10255
|
kind: z.ZodEnum<{
|
|
9716
|
-
|
|
10256
|
+
facet: "facet";
|
|
9717
10257
|
inline_skill: "inline_skill";
|
|
9718
10258
|
integration: "integration";
|
|
9719
10259
|
plugin: "plugin";
|
|
@@ -9768,7 +10308,7 @@ export declare const PackInstallationPreview: z.ZodObject<{
|
|
|
9768
10308
|
components: z.ZodArray<z.ZodObject<{
|
|
9769
10309
|
key: z.ZodString;
|
|
9770
10310
|
kind: z.ZodEnum<{
|
|
9771
|
-
|
|
10311
|
+
facet: "facet";
|
|
9772
10312
|
inline_skill: "inline_skill";
|
|
9773
10313
|
integration: "integration";
|
|
9774
10314
|
plugin: "plugin";
|
|
@@ -9822,7 +10362,7 @@ export declare const PackUninstallPreview: z.ZodObject<{
|
|
|
9822
10362
|
components: z.ZodArray<z.ZodObject<{
|
|
9823
10363
|
key: z.ZodString;
|
|
9824
10364
|
kind: z.ZodEnum<{
|
|
9825
|
-
|
|
10365
|
+
facet: "facet";
|
|
9826
10366
|
inline_skill: "inline_skill";
|
|
9827
10367
|
integration: "integration";
|
|
9828
10368
|
plugin: "plugin";
|
|
@@ -10011,6 +10551,42 @@ export declare const OpenGeniSlackBotConnectionMetadata: z.ZodObject<{
|
|
|
10011
10551
|
verifiedAt: z.ZodString;
|
|
10012
10552
|
}, z.core.$loose>;
|
|
10013
10553
|
export type OpenGeniSlackBotConnectionMetadata = z.infer<typeof OpenGeniSlackBotConnectionMetadata>;
|
|
10554
|
+
export declare const FIKEN_PROVIDER_DOMAIN: "fiken.no";
|
|
10555
|
+
export declare const FIKEN_CREDENTIAL_ROLE: "fiken_api_token";
|
|
10556
|
+
export declare const FIKEN_CREDENTIAL_LABEL: "Fiken API token";
|
|
10557
|
+
export declare const FikenCompanySummary: z.ZodObject<{
|
|
10558
|
+
slug: z.ZodString;
|
|
10559
|
+
name: z.ZodString;
|
|
10560
|
+
organizationNumber: z.ZodNullable<z.ZodString>;
|
|
10561
|
+
}, z.core.$strip>;
|
|
10562
|
+
export type FikenCompanySummary = z.infer<typeof FikenCompanySummary>;
|
|
10563
|
+
export declare const FikenConnectionMetadata: z.ZodObject<{
|
|
10564
|
+
credentialRole: z.ZodLiteral<"fiken_api_token">;
|
|
10565
|
+
credentialLabel: z.ZodLiteral<"Fiken API token">;
|
|
10566
|
+
companies: z.ZodArray<z.ZodObject<{
|
|
10567
|
+
slug: z.ZodString;
|
|
10568
|
+
name: z.ZodString;
|
|
10569
|
+
organizationNumber: z.ZodNullable<z.ZodString>;
|
|
10570
|
+
}, z.core.$strip>>;
|
|
10571
|
+
defaultCompanySlug: z.ZodNullable<z.ZodString>;
|
|
10572
|
+
verifiedAt: z.ZodString;
|
|
10573
|
+
}, z.core.$loose>;
|
|
10574
|
+
export type FikenConnectionMetadata = z.infer<typeof FikenConnectionMetadata>;
|
|
10575
|
+
export declare const FikenInstallRequest: z.ZodObject<{
|
|
10576
|
+
apiToken: z.ZodString;
|
|
10577
|
+
defaultCompanySlug: z.ZodOptional<z.ZodString>;
|
|
10578
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
10579
|
+
}, z.core.$strip>;
|
|
10580
|
+
export type FikenInstallRequest = z.infer<typeof FikenInstallRequest>;
|
|
10581
|
+
export declare const FikenOAuthStartRequest: z.ZodObject<{
|
|
10582
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
10583
|
+
}, z.core.$strip>;
|
|
10584
|
+
export type FikenOAuthStartRequest = z.infer<typeof FikenOAuthStartRequest>;
|
|
10585
|
+
export declare const FikenOAuthStartResponse: z.ZodObject<{
|
|
10586
|
+
authorizationUrl: z.ZodString;
|
|
10587
|
+
expiresAt: z.ZodString;
|
|
10588
|
+
}, z.core.$strip>;
|
|
10589
|
+
export type FikenOAuthStartResponse = z.infer<typeof FikenOAuthStartResponse>;
|
|
10014
10590
|
export declare const ConnectionMetadata: z.ZodObject<{
|
|
10015
10591
|
id: z.ZodString;
|
|
10016
10592
|
accountId: z.ZodString;
|
|
@@ -10566,12 +11142,7 @@ export declare const CapabilityInstallation: z.ZodObject<{
|
|
|
10566
11142
|
export type CapabilityInstallation = z.infer<typeof CapabilityInstallation>;
|
|
10567
11143
|
export declare const CreateCapabilityCatalogItemRequest: z.ZodObject<{
|
|
10568
11144
|
id: z.ZodOptional<z.ZodString>;
|
|
10569
|
-
kind: z.
|
|
10570
|
-
api: "api";
|
|
10571
|
-
mcp: "mcp";
|
|
10572
|
-
plugin: "plugin";
|
|
10573
|
-
skill: "skill";
|
|
10574
|
-
}>;
|
|
11145
|
+
kind: z.ZodLiteral<"mcp">;
|
|
10575
11146
|
source: z.ZodDefault<z.ZodEnum<{
|
|
10576
11147
|
built_in: "built_in";
|
|
10577
11148
|
configured: "configured";
|
|
@@ -10591,7 +11162,7 @@ export declare const CreateCapabilityCatalogItemRequest: z.ZodObject<{
|
|
|
10591
11162
|
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10592
11163
|
}, z.core.$strip>;
|
|
10593
11164
|
export type CreateCapabilityCatalogItemRequest = z.infer<typeof CreateCapabilityCatalogItemRequest>;
|
|
10594
|
-
export declare const EnableCapabilityRequest: z.
|
|
11165
|
+
export declare const EnableCapabilityRequest: z.ZodObject<{
|
|
10595
11166
|
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10596
11167
|
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10597
11168
|
connectionRef: z.ZodOptional<z.ZodObject<{
|
|
@@ -10616,9 +11187,7 @@ export declare const EnableCapabilityRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
10616
11187
|
}>>;
|
|
10617
11188
|
}, z.core.$strict>>;
|
|
10618
11189
|
headers: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10619
|
-
|
|
10620
|
-
environmentId: z.ZodOptional<z.ZodString>;
|
|
10621
|
-
}, z.core.$strip>>;
|
|
11190
|
+
}, z.core.$strip>;
|
|
10622
11191
|
export type EnableCapabilityRequest = z.infer<typeof EnableCapabilityRequest>;
|
|
10623
11192
|
export declare const CapabilityCatalogResponse: z.ZodObject<{
|
|
10624
11193
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -10892,6 +11461,13 @@ export declare const SkillImportSource: z.ZodEnum<{
|
|
|
10892
11461
|
skills_sh: "skills_sh";
|
|
10893
11462
|
}>;
|
|
10894
11463
|
export type SkillImportSource = z.infer<typeof SkillImportSource>;
|
|
11464
|
+
export declare const SkillInstallationSource: z.ZodEnum<{
|
|
11465
|
+
github: "github";
|
|
11466
|
+
library: "library";
|
|
11467
|
+
pack: "pack";
|
|
11468
|
+
skills_sh: "skills_sh";
|
|
11469
|
+
}>;
|
|
11470
|
+
export type SkillInstallationSource = z.infer<typeof SkillInstallationSource>;
|
|
10895
11471
|
export declare const PreviewSkillImportRequest: z.ZodObject<{
|
|
10896
11472
|
url: z.ZodString;
|
|
10897
11473
|
}, z.core.$strip>;
|
|
@@ -10934,6 +11510,12 @@ export declare const InstallSkillRequest: z.ZodObject<{
|
|
|
10934
11510
|
expectedInstallationVersion: z.ZodOptional<z.ZodNumber>;
|
|
10935
11511
|
}, z.core.$strip>;
|
|
10936
11512
|
export type InstallSkillRequest = z.infer<typeof InstallSkillRequest>;
|
|
11513
|
+
export declare const InstallLibrarySkillRequest: z.ZodObject<{
|
|
11514
|
+
expectedVersion: z.ZodString;
|
|
11515
|
+
expectedContentSha256: z.ZodString;
|
|
11516
|
+
expectedInstallationVersion: z.ZodOptional<z.ZodNumber>;
|
|
11517
|
+
}, z.core.$strict>;
|
|
11518
|
+
export type InstallLibrarySkillRequest = z.infer<typeof InstallLibrarySkillRequest>;
|
|
10937
11519
|
export declare const InstalledSkill: z.ZodObject<{
|
|
10938
11520
|
capabilityId: z.ZodString;
|
|
10939
11521
|
pluginId: z.ZodString;
|
|
@@ -10944,8 +11526,11 @@ export declare const InstalledSkill: z.ZodObject<{
|
|
|
10944
11526
|
installationVersion: z.ZodNumber;
|
|
10945
11527
|
source: z.ZodEnum<{
|
|
10946
11528
|
github: "github";
|
|
11529
|
+
library: "library";
|
|
11530
|
+
pack: "pack";
|
|
10947
11531
|
skills_sh: "skills_sh";
|
|
10948
11532
|
}>;
|
|
11533
|
+
version: z.ZodString;
|
|
10949
11534
|
sourceUrl: z.ZodString;
|
|
10950
11535
|
sourceCommit: z.ZodString;
|
|
10951
11536
|
contentSha256: z.ZodString;
|
|
@@ -10964,11 +11549,33 @@ export declare const CapabilityComponentOwner: z.ZodObject<{
|
|
|
10964
11549
|
removable: z.ZodBoolean;
|
|
10965
11550
|
}, z.core.$strip>;
|
|
10966
11551
|
export type CapabilityComponentOwner = z.infer<typeof CapabilityComponentOwner>;
|
|
10967
|
-
export declare const
|
|
11552
|
+
export declare const InstalledSkillSummary: z.ZodObject<{
|
|
10968
11553
|
capabilityId: z.ZodString;
|
|
10969
|
-
|
|
10970
|
-
installationVersion: z.
|
|
10971
|
-
|
|
11554
|
+
pluginKey: z.ZodString;
|
|
11555
|
+
installationVersion: z.ZodNumber;
|
|
11556
|
+
name: z.ZodString;
|
|
11557
|
+
description: z.ZodString;
|
|
11558
|
+
category: z.ZodString;
|
|
11559
|
+
tags: z.ZodArray<z.ZodString>;
|
|
11560
|
+
provenance: z.ZodString;
|
|
11561
|
+
source: z.ZodEnum<{
|
|
11562
|
+
github: "github";
|
|
11563
|
+
library: "library";
|
|
11564
|
+
pack: "pack";
|
|
11565
|
+
skills_sh: "skills_sh";
|
|
11566
|
+
}>;
|
|
11567
|
+
version: z.ZodString;
|
|
11568
|
+
sourceUrl: z.ZodString;
|
|
11569
|
+
repositoryUrl: z.ZodString;
|
|
11570
|
+
sourceCommit: z.ZodString;
|
|
11571
|
+
sourcePath: z.ZodString;
|
|
11572
|
+
contentSha256: z.ZodString;
|
|
11573
|
+
fileCount: z.ZodNumber;
|
|
11574
|
+
totalBytes: z.ZodNumber;
|
|
11575
|
+
license: z.ZodNullable<z.ZodString>;
|
|
11576
|
+
installedAt: z.ZodString;
|
|
11577
|
+
updatedAt: z.ZodString;
|
|
11578
|
+
owners: z.ZodArray<z.ZodObject<{
|
|
10972
11579
|
kind: z.ZodEnum<{
|
|
10973
11580
|
direct: "direct";
|
|
10974
11581
|
migration: "migration";
|
|
@@ -10978,24 +11585,80 @@ export declare const SkillUninstallPreview: z.ZodObject<{
|
|
|
10978
11585
|
id: z.ZodString;
|
|
10979
11586
|
removable: z.ZodBoolean;
|
|
10980
11587
|
}, z.core.$strip>>;
|
|
10981
|
-
|
|
10982
|
-
|
|
10983
|
-
|
|
10984
|
-
|
|
11588
|
+
}, z.core.$strict>;
|
|
11589
|
+
export type InstalledSkillSummary = z.infer<typeof InstalledSkillSummary>;
|
|
11590
|
+
export declare const ListInstalledSkillsResponse: z.ZodObject<{
|
|
11591
|
+
skills: z.ZodArray<z.ZodObject<{
|
|
11592
|
+
capabilityId: z.ZodString;
|
|
11593
|
+
pluginKey: z.ZodString;
|
|
11594
|
+
installationVersion: z.ZodNumber;
|
|
11595
|
+
name: z.ZodString;
|
|
11596
|
+
description: z.ZodString;
|
|
11597
|
+
category: z.ZodString;
|
|
11598
|
+
tags: z.ZodArray<z.ZodString>;
|
|
11599
|
+
provenance: z.ZodString;
|
|
11600
|
+
source: z.ZodEnum<{
|
|
11601
|
+
github: "github";
|
|
11602
|
+
library: "library";
|
|
10985
11603
|
pack: "pack";
|
|
10986
|
-
|
|
11604
|
+
skills_sh: "skills_sh";
|
|
10987
11605
|
}>;
|
|
10988
|
-
|
|
10989
|
-
|
|
10990
|
-
|
|
10991
|
-
|
|
10992
|
-
|
|
10993
|
-
|
|
10994
|
-
|
|
10995
|
-
|
|
10996
|
-
|
|
10997
|
-
|
|
10998
|
-
|
|
11606
|
+
version: z.ZodString;
|
|
11607
|
+
sourceUrl: z.ZodString;
|
|
11608
|
+
repositoryUrl: z.ZodString;
|
|
11609
|
+
sourceCommit: z.ZodString;
|
|
11610
|
+
sourcePath: z.ZodString;
|
|
11611
|
+
contentSha256: z.ZodString;
|
|
11612
|
+
fileCount: z.ZodNumber;
|
|
11613
|
+
totalBytes: z.ZodNumber;
|
|
11614
|
+
license: z.ZodNullable<z.ZodString>;
|
|
11615
|
+
installedAt: z.ZodString;
|
|
11616
|
+
updatedAt: z.ZodString;
|
|
11617
|
+
owners: z.ZodArray<z.ZodObject<{
|
|
11618
|
+
kind: z.ZodEnum<{
|
|
11619
|
+
direct: "direct";
|
|
11620
|
+
migration: "migration";
|
|
11621
|
+
pack: "pack";
|
|
11622
|
+
plugin: "plugin";
|
|
11623
|
+
}>;
|
|
11624
|
+
id: z.ZodString;
|
|
11625
|
+
removable: z.ZodBoolean;
|
|
11626
|
+
}, z.core.$strip>>;
|
|
11627
|
+
}, z.core.$strict>>;
|
|
11628
|
+
}, z.core.$strict>;
|
|
11629
|
+
export type ListInstalledSkillsResponse = z.infer<typeof ListInstalledSkillsResponse>;
|
|
11630
|
+
export declare const SkillUninstallPreview: z.ZodObject<{
|
|
11631
|
+
capabilityId: z.ZodString;
|
|
11632
|
+
installed: z.ZodBoolean;
|
|
11633
|
+
installationVersion: z.ZodNullable<z.ZodNumber>;
|
|
11634
|
+
directOwner: z.ZodNullable<z.ZodObject<{
|
|
11635
|
+
kind: z.ZodEnum<{
|
|
11636
|
+
direct: "direct";
|
|
11637
|
+
migration: "migration";
|
|
11638
|
+
pack: "pack";
|
|
11639
|
+
plugin: "plugin";
|
|
11640
|
+
}>;
|
|
11641
|
+
id: z.ZodString;
|
|
11642
|
+
removable: z.ZodBoolean;
|
|
11643
|
+
}, z.core.$strip>>;
|
|
11644
|
+
remainingOwners: z.ZodArray<z.ZodObject<{
|
|
11645
|
+
kind: z.ZodEnum<{
|
|
11646
|
+
direct: "direct";
|
|
11647
|
+
migration: "migration";
|
|
11648
|
+
pack: "pack";
|
|
11649
|
+
plugin: "plugin";
|
|
11650
|
+
}>;
|
|
11651
|
+
id: z.ZodString;
|
|
11652
|
+
removable: z.ZodBoolean;
|
|
11653
|
+
}, z.core.$strip>>;
|
|
11654
|
+
removesRuntimeSkill: z.ZodBoolean;
|
|
11655
|
+
}, z.core.$strip>;
|
|
11656
|
+
export type SkillUninstallPreview = z.infer<typeof SkillUninstallPreview>;
|
|
11657
|
+
export declare const UninstallSkillRequest: z.ZodObject<{
|
|
11658
|
+
expectedInstallationVersion: z.ZodNumber;
|
|
11659
|
+
}, z.core.$strip>;
|
|
11660
|
+
export type UninstallSkillRequest = z.infer<typeof UninstallSkillRequest>;
|
|
11661
|
+
export declare const UninstallSkillResult: z.ZodObject<{
|
|
10999
11662
|
capabilityId: z.ZodString;
|
|
11000
11663
|
status: z.ZodEnum<{
|
|
11001
11664
|
not_installed: "not_installed";
|
|
@@ -11019,25 +11682,30 @@ export declare const ApiIntegrationProtocol: z.ZodEnum<{
|
|
|
11019
11682
|
openapi: "openapi";
|
|
11020
11683
|
}>;
|
|
11021
11684
|
export type ApiIntegrationProtocol = z.infer<typeof ApiIntegrationProtocol>;
|
|
11022
|
-
export declare const
|
|
11023
|
-
|
|
11024
|
-
|
|
11685
|
+
export declare const IntegrationDefinitionProvenance: z.ZodEnum<{
|
|
11686
|
+
curated: "curated";
|
|
11687
|
+
workspace: "workspace";
|
|
11688
|
+
}>;
|
|
11689
|
+
export type IntegrationDefinitionProvenance = z.infer<typeof IntegrationDefinitionProvenance>;
|
|
11690
|
+
export declare const IntegrationFacetKey: z.ZodString;
|
|
11691
|
+
export type IntegrationFacetKey = z.infer<typeof IntegrationFacetKey>;
|
|
11692
|
+
export declare const IntegrationFacetKind: z.ZodEnum<{
|
|
11025
11693
|
delivery_destination: "delivery_destination";
|
|
11026
11694
|
identity_link: "identity_link";
|
|
11027
11695
|
inbound_trigger: "inbound_trigger";
|
|
11028
11696
|
knowledge_source: "knowledge_source";
|
|
11029
11697
|
tools: "tools";
|
|
11030
11698
|
}>;
|
|
11031
|
-
export type
|
|
11032
|
-
export declare const
|
|
11699
|
+
export type IntegrationFacetKind = z.infer<typeof IntegrationFacetKind>;
|
|
11700
|
+
export declare const IntegrationFacetStatus: z.ZodEnum<{
|
|
11033
11701
|
active: "active";
|
|
11034
11702
|
disabled: "disabled";
|
|
11035
11703
|
needs_attention: "needs_attention";
|
|
11036
11704
|
paused: "paused";
|
|
11037
11705
|
}>;
|
|
11038
|
-
export type
|
|
11039
|
-
export declare const
|
|
11040
|
-
|
|
11706
|
+
export type IntegrationFacetStatus = z.infer<typeof IntegrationFacetStatus>;
|
|
11707
|
+
export declare const IntegrationFacetDefinitionSummary: z.ZodObject<{
|
|
11708
|
+
facetKey: z.ZodString;
|
|
11041
11709
|
kind: z.ZodEnum<{
|
|
11042
11710
|
delivery_destination: "delivery_destination";
|
|
11043
11711
|
identity_link: "identity_link";
|
|
@@ -11047,20 +11715,25 @@ export declare const IntegrationFeatureDefinitionSummary: z.ZodObject<{
|
|
|
11047
11715
|
configSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11048
11716
|
capabilities: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11049
11717
|
}, z.core.$strict>;
|
|
11050
|
-
export type
|
|
11051
|
-
export declare const
|
|
11718
|
+
export type IntegrationFacetDefinitionSummary = z.infer<typeof IntegrationFacetDefinitionSummary>;
|
|
11719
|
+
export declare const IntegrationDefinitionSummary: z.ZodObject<{
|
|
11052
11720
|
id: z.ZodString;
|
|
11053
11721
|
name: z.ZodString;
|
|
11054
11722
|
summary: z.ZodString;
|
|
11055
|
-
family: z.ZodEnum<{
|
|
11056
|
-
google: "google";
|
|
11057
|
-
microsoft: "microsoft";
|
|
11058
|
-
}>;
|
|
11059
11723
|
protocol: z.ZodLiteral<"openapi">;
|
|
11060
|
-
|
|
11061
|
-
|
|
11062
|
-
|
|
11063
|
-
|
|
11724
|
+
provider: z.ZodObject<{
|
|
11725
|
+
id: z.ZodEnum<{
|
|
11726
|
+
google: "google";
|
|
11727
|
+
microsoft: "microsoft";
|
|
11728
|
+
}>;
|
|
11729
|
+
domain: z.ZodString;
|
|
11730
|
+
}, z.core.$strict>;
|
|
11731
|
+
authentication: z.ZodObject<{
|
|
11732
|
+
kind: z.ZodLiteral<"oauth2">;
|
|
11733
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
11734
|
+
}, z.core.$strict>;
|
|
11735
|
+
facets: z.ZodArray<z.ZodObject<{
|
|
11736
|
+
facetKey: z.ZodString;
|
|
11064
11737
|
kind: z.ZodEnum<{
|
|
11065
11738
|
delivery_destination: "delivery_destination";
|
|
11066
11739
|
identity_link: "identity_link";
|
|
@@ -11071,21 +11744,26 @@ export declare const ApiIntegrationPresetSummary: z.ZodObject<{
|
|
|
11071
11744
|
capabilities: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
11072
11745
|
}, z.core.$strict>>;
|
|
11073
11746
|
}, z.core.$strict>;
|
|
11074
|
-
export type
|
|
11075
|
-
export declare const
|
|
11076
|
-
|
|
11747
|
+
export type IntegrationDefinitionSummary = z.infer<typeof IntegrationDefinitionSummary>;
|
|
11748
|
+
export declare const ListIntegrationDefinitionsResponse: z.ZodObject<{
|
|
11749
|
+
definitions: z.ZodArray<z.ZodObject<{
|
|
11077
11750
|
id: z.ZodString;
|
|
11078
11751
|
name: z.ZodString;
|
|
11079
11752
|
summary: z.ZodString;
|
|
11080
|
-
family: z.ZodEnum<{
|
|
11081
|
-
google: "google";
|
|
11082
|
-
microsoft: "microsoft";
|
|
11083
|
-
}>;
|
|
11084
11753
|
protocol: z.ZodLiteral<"openapi">;
|
|
11085
|
-
|
|
11086
|
-
|
|
11087
|
-
|
|
11088
|
-
|
|
11754
|
+
provider: z.ZodObject<{
|
|
11755
|
+
id: z.ZodEnum<{
|
|
11756
|
+
google: "google";
|
|
11757
|
+
microsoft: "microsoft";
|
|
11758
|
+
}>;
|
|
11759
|
+
domain: z.ZodString;
|
|
11760
|
+
}, z.core.$strict>;
|
|
11761
|
+
authentication: z.ZodObject<{
|
|
11762
|
+
kind: z.ZodLiteral<"oauth2">;
|
|
11763
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
11764
|
+
}, z.core.$strict>;
|
|
11765
|
+
facets: z.ZodArray<z.ZodObject<{
|
|
11766
|
+
facetKey: z.ZodString;
|
|
11089
11767
|
kind: z.ZodEnum<{
|
|
11090
11768
|
delivery_destination: "delivery_destination";
|
|
11091
11769
|
identity_link: "identity_link";
|
|
@@ -11097,12 +11775,12 @@ export declare const ListApiIntegrationPresetsResponse: z.ZodObject<{
|
|
|
11097
11775
|
}, z.core.$strict>>;
|
|
11098
11776
|
}, z.core.$strict>>;
|
|
11099
11777
|
}, z.core.$strict>;
|
|
11100
|
-
export type
|
|
11778
|
+
export type ListIntegrationDefinitionsResponse = z.infer<typeof ListIntegrationDefinitionsResponse>;
|
|
11101
11779
|
export declare const IntegrationInstanceKey: z.ZodString;
|
|
11102
11780
|
export type IntegrationInstanceKey = z.infer<typeof IntegrationInstanceKey>;
|
|
11103
|
-
export declare const
|
|
11781
|
+
export declare const IntegrationFacetBindingSummary: z.ZodObject<{
|
|
11104
11782
|
id: z.ZodString;
|
|
11105
|
-
|
|
11783
|
+
facetKey: z.ZodString;
|
|
11106
11784
|
kind: z.ZodEnum<{
|
|
11107
11785
|
delivery_destination: "delivery_destination";
|
|
11108
11786
|
identity_link: "identity_link";
|
|
@@ -11126,15 +11804,15 @@ export declare const IntegrationFeatureBindingSummary: z.ZodObject<{
|
|
|
11126
11804
|
createdAt: z.ZodString;
|
|
11127
11805
|
updatedAt: z.ZodString;
|
|
11128
11806
|
}, z.core.$strict>;
|
|
11129
|
-
export type
|
|
11130
|
-
export declare const
|
|
11807
|
+
export type IntegrationFacetBindingSummary = z.infer<typeof IntegrationFacetBindingSummary>;
|
|
11808
|
+
export declare const IntegrationInstanceFacetsResponse: z.ZodObject<{
|
|
11131
11809
|
capabilityId: z.ZodString;
|
|
11132
11810
|
instanceKey: z.ZodString;
|
|
11133
11811
|
providerDomain: z.ZodString;
|
|
11134
11812
|
connectionId: z.ZodNullable<z.ZodString>;
|
|
11135
|
-
|
|
11813
|
+
facets: z.ZodArray<z.ZodObject<{
|
|
11136
11814
|
definition: z.ZodObject<{
|
|
11137
|
-
|
|
11815
|
+
facetKey: z.ZodString;
|
|
11138
11816
|
kind: z.ZodEnum<{
|
|
11139
11817
|
delivery_destination: "delivery_destination";
|
|
11140
11818
|
identity_link: "identity_link";
|
|
@@ -11146,7 +11824,7 @@ export declare const IntegrationInstanceFeaturesResponse: z.ZodObject<{
|
|
|
11146
11824
|
}, z.core.$strict>;
|
|
11147
11825
|
binding: z.ZodNullable<z.ZodObject<{
|
|
11148
11826
|
id: z.ZodString;
|
|
11149
|
-
|
|
11827
|
+
facetKey: z.ZodString;
|
|
11150
11828
|
kind: z.ZodEnum<{
|
|
11151
11829
|
delivery_destination: "delivery_destination";
|
|
11152
11830
|
identity_link: "identity_link";
|
|
@@ -11172,23 +11850,23 @@ export declare const IntegrationInstanceFeaturesResponse: z.ZodObject<{
|
|
|
11172
11850
|
}, z.core.$strict>>;
|
|
11173
11851
|
}, z.core.$strict>>;
|
|
11174
11852
|
}, z.core.$strict>;
|
|
11175
|
-
export type
|
|
11176
|
-
export declare const
|
|
11853
|
+
export type IntegrationInstanceFacetsResponse = z.infer<typeof IntegrationInstanceFacetsResponse>;
|
|
11854
|
+
export declare const UpsertIntegrationFacetRequest: z.ZodObject<{
|
|
11177
11855
|
displayName: z.ZodString;
|
|
11178
11856
|
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11179
11857
|
expectedVersion: z.ZodOptional<z.ZodNumber>;
|
|
11180
11858
|
idempotencyKey: z.ZodString;
|
|
11181
11859
|
}, z.core.$strict>;
|
|
11182
|
-
export type
|
|
11183
|
-
export declare const
|
|
11860
|
+
export type UpsertIntegrationFacetRequest = z.infer<typeof UpsertIntegrationFacetRequest>;
|
|
11861
|
+
export declare const MutateIntegrationFacetRequest: z.ZodObject<{
|
|
11184
11862
|
expectedVersion: z.ZodNumber;
|
|
11185
11863
|
idempotencyKey: z.ZodString;
|
|
11186
11864
|
}, z.core.$strict>;
|
|
11187
|
-
export type
|
|
11188
|
-
export declare const
|
|
11865
|
+
export type MutateIntegrationFacetRequest = z.infer<typeof MutateIntegrationFacetRequest>;
|
|
11866
|
+
export declare const IntegrationFacetMutationResult: z.ZodObject<{
|
|
11189
11867
|
capabilityId: z.ZodString;
|
|
11190
11868
|
instanceKey: z.ZodString;
|
|
11191
|
-
|
|
11869
|
+
facetKey: z.ZodString;
|
|
11192
11870
|
status: z.ZodEnum<{
|
|
11193
11871
|
active: "active";
|
|
11194
11872
|
configured: "configured";
|
|
@@ -11196,7 +11874,7 @@ export declare const IntegrationFeatureMutationResult: z.ZodObject<{
|
|
|
11196
11874
|
}>;
|
|
11197
11875
|
binding: z.ZodObject<{
|
|
11198
11876
|
id: z.ZodString;
|
|
11199
|
-
|
|
11877
|
+
facetKey: z.ZodString;
|
|
11200
11878
|
kind: z.ZodEnum<{
|
|
11201
11879
|
delivery_destination: "delivery_destination";
|
|
11202
11880
|
identity_link: "identity_link";
|
|
@@ -11221,11 +11899,11 @@ export declare const IntegrationFeatureMutationResult: z.ZodObject<{
|
|
|
11221
11899
|
updatedAt: z.ZodString;
|
|
11222
11900
|
}, z.core.$strict>;
|
|
11223
11901
|
}, z.core.$strict>;
|
|
11224
|
-
export type
|
|
11225
|
-
export declare const
|
|
11902
|
+
export type IntegrationFacetMutationResult = z.infer<typeof IntegrationFacetMutationResult>;
|
|
11903
|
+
export declare const IntegrationFacetRemovalResult: z.ZodObject<{
|
|
11226
11904
|
capabilityId: z.ZodString;
|
|
11227
11905
|
instanceKey: z.ZodString;
|
|
11228
|
-
|
|
11906
|
+
facetKey: z.ZodString;
|
|
11229
11907
|
status: z.ZodEnum<{
|
|
11230
11908
|
not_configured: "not_configured";
|
|
11231
11909
|
removed: "removed";
|
|
@@ -11233,7 +11911,7 @@ export declare const IntegrationFeatureRemovalResult: z.ZodObject<{
|
|
|
11233
11911
|
}>;
|
|
11234
11912
|
binding: z.ZodNullable<z.ZodObject<{
|
|
11235
11913
|
id: z.ZodString;
|
|
11236
|
-
|
|
11914
|
+
facetKey: z.ZodString;
|
|
11237
11915
|
kind: z.ZodEnum<{
|
|
11238
11916
|
delivery_destination: "delivery_destination";
|
|
11239
11917
|
identity_link: "identity_link";
|
|
@@ -11268,10 +11946,10 @@ export declare const IntegrationFeatureRemovalResult: z.ZodObject<{
|
|
|
11268
11946
|
removable: z.ZodBoolean;
|
|
11269
11947
|
}, z.core.$strip>>;
|
|
11270
11948
|
}, z.core.$strict>;
|
|
11271
|
-
export type
|
|
11272
|
-
export declare const
|
|
11273
|
-
kind: z.ZodLiteral<"
|
|
11274
|
-
|
|
11949
|
+
export type IntegrationFacetRemovalResult = z.infer<typeof IntegrationFacetRemovalResult>;
|
|
11950
|
+
export declare const IntegrationSource: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11951
|
+
kind: z.ZodLiteral<"definition">;
|
|
11952
|
+
definitionId: z.ZodString;
|
|
11275
11953
|
}, z.core.$strict>, z.ZodObject<{
|
|
11276
11954
|
kind: z.ZodLiteral<"openapi">;
|
|
11277
11955
|
url: z.ZodString;
|
|
@@ -11285,11 +11963,11 @@ export declare const ApiIntegrationSource: z.ZodDiscriminatedUnion<[z.ZodObject<
|
|
|
11285
11963
|
url: z.ZodString;
|
|
11286
11964
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
11287
11965
|
}, z.core.$strict>], "kind">;
|
|
11288
|
-
export type
|
|
11966
|
+
export type IntegrationSource = z.infer<typeof IntegrationSource>;
|
|
11289
11967
|
export declare const PreviewApiIntegrationRequest: z.ZodObject<{
|
|
11290
11968
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11291
|
-
kind: z.ZodLiteral<"
|
|
11292
|
-
|
|
11969
|
+
kind: z.ZodLiteral<"definition">;
|
|
11970
|
+
definitionId: z.ZodString;
|
|
11293
11971
|
}, z.core.$strict>, z.ZodObject<{
|
|
11294
11972
|
kind: z.ZodLiteral<"openapi">;
|
|
11295
11973
|
url: z.ZodString;
|
|
@@ -11311,7 +11989,7 @@ export declare const PreviewApiIntegrationRequest: z.ZodObject<{
|
|
|
11311
11989
|
}, z.core.$strict>;
|
|
11312
11990
|
export type PreviewApiIntegrationRequest = z.infer<typeof PreviewApiIntegrationRequest>;
|
|
11313
11991
|
export declare const ApiIntegrationOAuthStartRequest: z.ZodObject<{
|
|
11314
|
-
|
|
11992
|
+
definitionId: z.ZodString;
|
|
11315
11993
|
ownership: z.ZodOptional<z.ZodEnum<{
|
|
11316
11994
|
personal: "personal";
|
|
11317
11995
|
workspace: "workspace";
|
|
@@ -11330,7 +12008,7 @@ export declare const ApiIntegrationOAuthConnectionMetadata: z.ZodObject<{
|
|
|
11330
12008
|
providerPrincipalId: z.ZodString;
|
|
11331
12009
|
providerEmail: z.ZodNullable<z.ZodString>;
|
|
11332
12010
|
providerDisplayName: z.ZodNullable<z.ZodString>;
|
|
11333
|
-
|
|
12011
|
+
authorizedDefinitionIds: z.ZodArray<z.ZodString>;
|
|
11334
12012
|
verifiedAt: z.ZodString;
|
|
11335
12013
|
}, z.core.$loose>;
|
|
11336
12014
|
export type ApiIntegrationOAuthConnectionMetadata = z.infer<typeof ApiIntegrationOAuthConnectionMetadata>;
|
|
@@ -11374,8 +12052,8 @@ export declare const ApiIntegrationToolPreview: z.ZodObject<{
|
|
|
11374
12052
|
export type ApiIntegrationToolPreview = z.infer<typeof ApiIntegrationToolPreview>;
|
|
11375
12053
|
export declare const ApiIntegrationPreview: z.ZodObject<{
|
|
11376
12054
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11377
|
-
kind: z.ZodLiteral<"
|
|
11378
|
-
|
|
12055
|
+
kind: z.ZodLiteral<"definition">;
|
|
12056
|
+
definitionId: z.ZodString;
|
|
11379
12057
|
}, z.core.$strict>, z.ZodObject<{
|
|
11380
12058
|
kind: z.ZodLiteral<"openapi">;
|
|
11381
12059
|
url: z.ZodString;
|
|
@@ -11389,12 +12067,15 @@ export declare const ApiIntegrationPreview: z.ZodObject<{
|
|
|
11389
12067
|
url: z.ZodString;
|
|
11390
12068
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
11391
12069
|
}, z.core.$strict>], "kind">;
|
|
11392
|
-
|
|
12070
|
+
definitionId: z.ZodString;
|
|
12071
|
+
definitionProvenance: z.ZodEnum<{
|
|
12072
|
+
curated: "curated";
|
|
12073
|
+
workspace: "workspace";
|
|
12074
|
+
}>;
|
|
11393
12075
|
protocol: z.ZodEnum<{
|
|
11394
12076
|
graphql: "graphql";
|
|
11395
12077
|
openapi: "openapi";
|
|
11396
12078
|
}>;
|
|
11397
|
-
integrationId: z.ZodString;
|
|
11398
12079
|
capabilityId: z.ZodString;
|
|
11399
12080
|
pluginKey: z.ZodString;
|
|
11400
12081
|
serverId: z.ZodString;
|
|
@@ -11452,8 +12133,8 @@ export declare const ApiIntegrationPreview: z.ZodObject<{
|
|
|
11452
12133
|
export type ApiIntegrationPreview = z.infer<typeof ApiIntegrationPreview>;
|
|
11453
12134
|
export declare const InstallApiIntegrationRequest: z.ZodObject<{
|
|
11454
12135
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11455
|
-
kind: z.ZodLiteral<"
|
|
11456
|
-
|
|
12136
|
+
kind: z.ZodLiteral<"definition">;
|
|
12137
|
+
definitionId: z.ZodString;
|
|
11457
12138
|
}, z.core.$strict>, z.ZodObject<{
|
|
11458
12139
|
kind: z.ZodLiteral<"openapi">;
|
|
11459
12140
|
url: z.ZodString;
|
|
@@ -11514,7 +12195,11 @@ export declare const ApiIntegrationInstallationSummary: z.ZodObject<{
|
|
|
11514
12195
|
graphql: "graphql";
|
|
11515
12196
|
openapi: "openapi";
|
|
11516
12197
|
}>;
|
|
11517
|
-
|
|
12198
|
+
definitionId: z.ZodString;
|
|
12199
|
+
definitionProvenance: z.ZodEnum<{
|
|
12200
|
+
curated: "curated";
|
|
12201
|
+
workspace: "workspace";
|
|
12202
|
+
}>;
|
|
11518
12203
|
providerDomain: z.ZodString;
|
|
11519
12204
|
baseUrl: z.ZodString;
|
|
11520
12205
|
sourceUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -11549,7 +12234,11 @@ export declare const ListApiIntegrationsResponse: z.ZodObject<{
|
|
|
11549
12234
|
graphql: "graphql";
|
|
11550
12235
|
openapi: "openapi";
|
|
11551
12236
|
}>;
|
|
11552
|
-
|
|
12237
|
+
definitionId: z.ZodString;
|
|
12238
|
+
definitionProvenance: z.ZodEnum<{
|
|
12239
|
+
curated: "curated";
|
|
12240
|
+
workspace: "workspace";
|
|
12241
|
+
}>;
|
|
11553
12242
|
providerDomain: z.ZodString;
|
|
11554
12243
|
baseUrl: z.ZodString;
|
|
11555
12244
|
sourceUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -11645,8 +12334,8 @@ export declare const PluginManifest: z.ZodObject<{
|
|
|
11645
12334
|
key: z.ZodString;
|
|
11646
12335
|
kind: z.ZodLiteral<"integration">;
|
|
11647
12336
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11648
|
-
kind: z.ZodLiteral<"
|
|
11649
|
-
|
|
12337
|
+
kind: z.ZodLiteral<"definition">;
|
|
12338
|
+
definitionId: z.ZodString;
|
|
11650
12339
|
}, z.core.$strict>, z.ZodObject<{
|
|
11651
12340
|
kind: z.ZodLiteral<"openapi">;
|
|
11652
12341
|
url: z.ZodString;
|
|
@@ -11726,8 +12415,8 @@ export declare const PluginPreview: z.ZodObject<{
|
|
|
11726
12415
|
key: z.ZodString;
|
|
11727
12416
|
kind: z.ZodLiteral<"integration">;
|
|
11728
12417
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
11729
|
-
kind: z.ZodLiteral<"
|
|
11730
|
-
|
|
12418
|
+
kind: z.ZodLiteral<"definition">;
|
|
12419
|
+
definitionId: z.ZodString;
|
|
11731
12420
|
}, z.core.$strict>, z.ZodObject<{
|
|
11732
12421
|
kind: z.ZodLiteral<"openapi">;
|
|
11733
12422
|
url: z.ZodString;
|
|
@@ -11988,6 +12677,22 @@ export declare const Session: z.ZodObject<{
|
|
|
11988
12677
|
idsTruncated: z.ZodBoolean;
|
|
11989
12678
|
}, z.core.$strict>>;
|
|
11990
12679
|
metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12680
|
+
tenancy: z.ZodOptional<z.ZodObject<{
|
|
12681
|
+
visibility: z.ZodEnum<{
|
|
12682
|
+
private: "private";
|
|
12683
|
+
workspace: "workspace";
|
|
12684
|
+
}>;
|
|
12685
|
+
authorityEpoch: z.ZodNumber;
|
|
12686
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
12687
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
12688
|
+
sourceVisibility: z.ZodEnum<{
|
|
12689
|
+
private: "private";
|
|
12690
|
+
workspace: "workspace";
|
|
12691
|
+
}>;
|
|
12692
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
12693
|
+
forkedAt: z.ZodString;
|
|
12694
|
+
}, z.core.$strip>>;
|
|
12695
|
+
}, z.core.$strip>>;
|
|
11991
12696
|
createdBy: z.ZodObject<{
|
|
11992
12697
|
subjectId: z.ZodString;
|
|
11993
12698
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -12024,6 +12729,7 @@ export declare const Session: z.ZodObject<{
|
|
|
12024
12729
|
environmentId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12025
12730
|
rigId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12026
12731
|
rigVersionId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12732
|
+
channelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12027
12733
|
firstPartyMcpPermissions: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
12028
12734
|
"account:admin": "account:admin";
|
|
12029
12735
|
"account:read": "account:read";
|
|
@@ -12082,6 +12788,8 @@ export declare const Session: z.ZodObject<{
|
|
|
12082
12788
|
atlassian_search: "atlassian_search";
|
|
12083
12789
|
atlassian_sources_list: "atlassian_sources_list";
|
|
12084
12790
|
browser_act: "browser_act";
|
|
12791
|
+
browser_auth: "browser_auth";
|
|
12792
|
+
browser_clipboard: "browser_clipboard";
|
|
12085
12793
|
browser_debug: "browser_debug";
|
|
12086
12794
|
browser_identity: "browser_identity";
|
|
12087
12795
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -12092,6 +12800,7 @@ export declare const Session: z.ZodObject<{
|
|
|
12092
12800
|
capability_authorization_request: "capability_authorization_request";
|
|
12093
12801
|
capability_catalog_search: "capability_catalog_search";
|
|
12094
12802
|
computer_act: "computer_act";
|
|
12803
|
+
computer_clipboard: "computer_clipboard";
|
|
12095
12804
|
computer_lifecycle: "computer_lifecycle";
|
|
12096
12805
|
computer_observe: "computer_observe";
|
|
12097
12806
|
computer_open: "computer_open";
|
|
@@ -12107,13 +12816,25 @@ export declare const Session: z.ZodObject<{
|
|
|
12107
12816
|
editable_artifact_list: "editable_artifact_list";
|
|
12108
12817
|
environment_list: "environment_list";
|
|
12109
12818
|
environment_set_variable: "environment_set_variable";
|
|
12819
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
12820
|
+
fiken_companies_list: "fiken_companies_list";
|
|
12821
|
+
fiken_contact_create: "fiken_contact_create";
|
|
12822
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
12823
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
12824
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
12825
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
12826
|
+
fiken_products_list: "fiken_products_list";
|
|
12827
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
12828
|
+
fiken_sales_list: "fiken_sales_list";
|
|
12110
12829
|
github_connect_link: "github_connect_link";
|
|
12111
12830
|
github_repositories_list: "github_repositories_list";
|
|
12112
12831
|
goal_complete: "goal_complete";
|
|
12113
12832
|
goal_pause: "goal_pause";
|
|
12833
|
+
goal_progress: "goal_progress";
|
|
12114
12834
|
goal_set: "goal_set";
|
|
12115
12835
|
goal_update: "goal_update";
|
|
12116
12836
|
interaction_discover: "interaction_discover";
|
|
12837
|
+
interaction_request_human: "interaction_request_human";
|
|
12117
12838
|
memory_correct: "memory_correct";
|
|
12118
12839
|
memory_save: "memory_save";
|
|
12119
12840
|
memory_search: "memory_search";
|
|
@@ -12171,6 +12892,9 @@ export declare const Session: z.ZodObject<{
|
|
|
12171
12892
|
social_posts_sync: "social_posts_sync";
|
|
12172
12893
|
social_search_live: "social_search_live";
|
|
12173
12894
|
social_thread_fetch: "social_thread_fetch";
|
|
12895
|
+
task_note_archive: "task_note_archive";
|
|
12896
|
+
task_note_save: "task_note_save";
|
|
12897
|
+
task_notes_list: "task_notes_list";
|
|
12174
12898
|
variable_set_get_variable: "variable_set_get_variable";
|
|
12175
12899
|
variable_set_list: "variable_set_list";
|
|
12176
12900
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -12445,6 +13169,22 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
12445
13169
|
idsTruncated: z.ZodBoolean;
|
|
12446
13170
|
}, z.core.$strict>>;
|
|
12447
13171
|
metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13172
|
+
tenancy: z.ZodOptional<z.ZodObject<{
|
|
13173
|
+
visibility: z.ZodEnum<{
|
|
13174
|
+
private: "private";
|
|
13175
|
+
workspace: "workspace";
|
|
13176
|
+
}>;
|
|
13177
|
+
authorityEpoch: z.ZodNumber;
|
|
13178
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
13179
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
13180
|
+
sourceVisibility: z.ZodEnum<{
|
|
13181
|
+
private: "private";
|
|
13182
|
+
workspace: "workspace";
|
|
13183
|
+
}>;
|
|
13184
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
13185
|
+
forkedAt: z.ZodString;
|
|
13186
|
+
}, z.core.$strip>>;
|
|
13187
|
+
}, z.core.$strip>>;
|
|
12448
13188
|
createdBy: z.ZodObject<{
|
|
12449
13189
|
subjectId: z.ZodString;
|
|
12450
13190
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -12481,6 +13221,7 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
12481
13221
|
environmentId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12482
13222
|
rigId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12483
13223
|
rigVersionId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13224
|
+
channelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12484
13225
|
firstPartyMcpPermissions: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
12485
13226
|
"account:admin": "account:admin";
|
|
12486
13227
|
"account:read": "account:read";
|
|
@@ -12539,6 +13280,8 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
12539
13280
|
atlassian_search: "atlassian_search";
|
|
12540
13281
|
atlassian_sources_list: "atlassian_sources_list";
|
|
12541
13282
|
browser_act: "browser_act";
|
|
13283
|
+
browser_auth: "browser_auth";
|
|
13284
|
+
browser_clipboard: "browser_clipboard";
|
|
12542
13285
|
browser_debug: "browser_debug";
|
|
12543
13286
|
browser_identity: "browser_identity";
|
|
12544
13287
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -12549,6 +13292,7 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
12549
13292
|
capability_authorization_request: "capability_authorization_request";
|
|
12550
13293
|
capability_catalog_search: "capability_catalog_search";
|
|
12551
13294
|
computer_act: "computer_act";
|
|
13295
|
+
computer_clipboard: "computer_clipboard";
|
|
12552
13296
|
computer_lifecycle: "computer_lifecycle";
|
|
12553
13297
|
computer_observe: "computer_observe";
|
|
12554
13298
|
computer_open: "computer_open";
|
|
@@ -12564,13 +13308,25 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
12564
13308
|
editable_artifact_list: "editable_artifact_list";
|
|
12565
13309
|
environment_list: "environment_list";
|
|
12566
13310
|
environment_set_variable: "environment_set_variable";
|
|
13311
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
13312
|
+
fiken_companies_list: "fiken_companies_list";
|
|
13313
|
+
fiken_contact_create: "fiken_contact_create";
|
|
13314
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
13315
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
13316
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
13317
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
13318
|
+
fiken_products_list: "fiken_products_list";
|
|
13319
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
13320
|
+
fiken_sales_list: "fiken_sales_list";
|
|
12567
13321
|
github_connect_link: "github_connect_link";
|
|
12568
13322
|
github_repositories_list: "github_repositories_list";
|
|
12569
13323
|
goal_complete: "goal_complete";
|
|
12570
13324
|
goal_pause: "goal_pause";
|
|
13325
|
+
goal_progress: "goal_progress";
|
|
12571
13326
|
goal_set: "goal_set";
|
|
12572
13327
|
goal_update: "goal_update";
|
|
12573
13328
|
interaction_discover: "interaction_discover";
|
|
13329
|
+
interaction_request_human: "interaction_request_human";
|
|
12574
13330
|
memory_correct: "memory_correct";
|
|
12575
13331
|
memory_save: "memory_save";
|
|
12576
13332
|
memory_search: "memory_search";
|
|
@@ -12628,6 +13384,9 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
12628
13384
|
social_posts_sync: "social_posts_sync";
|
|
12629
13385
|
social_search_live: "social_search_live";
|
|
12630
13386
|
social_thread_fetch: "social_thread_fetch";
|
|
13387
|
+
task_note_archive: "task_note_archive";
|
|
13388
|
+
task_note_save: "task_note_save";
|
|
13389
|
+
task_notes_list: "task_notes_list";
|
|
12631
13390
|
variable_set_get_variable: "variable_set_get_variable";
|
|
12632
13391
|
variable_set_list: "variable_set_list";
|
|
12633
13392
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -12908,6 +13667,22 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
12908
13667
|
idsTruncated: z.ZodBoolean;
|
|
12909
13668
|
}, z.core.$strict>>;
|
|
12910
13669
|
metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13670
|
+
tenancy: z.ZodOptional<z.ZodObject<{
|
|
13671
|
+
visibility: z.ZodEnum<{
|
|
13672
|
+
private: "private";
|
|
13673
|
+
workspace: "workspace";
|
|
13674
|
+
}>;
|
|
13675
|
+
authorityEpoch: z.ZodNumber;
|
|
13676
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
13677
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
13678
|
+
sourceVisibility: z.ZodEnum<{
|
|
13679
|
+
private: "private";
|
|
13680
|
+
workspace: "workspace";
|
|
13681
|
+
}>;
|
|
13682
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
13683
|
+
forkedAt: z.ZodString;
|
|
13684
|
+
}, z.core.$strip>>;
|
|
13685
|
+
}, z.core.$strip>>;
|
|
12911
13686
|
createdBy: z.ZodObject<{
|
|
12912
13687
|
subjectId: z.ZodString;
|
|
12913
13688
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -12944,6 +13719,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
12944
13719
|
environmentId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12945
13720
|
rigId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12946
13721
|
rigVersionId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13722
|
+
channelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
12947
13723
|
firstPartyMcpPermissions: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
12948
13724
|
"account:admin": "account:admin";
|
|
12949
13725
|
"account:read": "account:read";
|
|
@@ -13002,6 +13778,8 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13002
13778
|
atlassian_search: "atlassian_search";
|
|
13003
13779
|
atlassian_sources_list: "atlassian_sources_list";
|
|
13004
13780
|
browser_act: "browser_act";
|
|
13781
|
+
browser_auth: "browser_auth";
|
|
13782
|
+
browser_clipboard: "browser_clipboard";
|
|
13005
13783
|
browser_debug: "browser_debug";
|
|
13006
13784
|
browser_identity: "browser_identity";
|
|
13007
13785
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -13012,6 +13790,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13012
13790
|
capability_authorization_request: "capability_authorization_request";
|
|
13013
13791
|
capability_catalog_search: "capability_catalog_search";
|
|
13014
13792
|
computer_act: "computer_act";
|
|
13793
|
+
computer_clipboard: "computer_clipboard";
|
|
13015
13794
|
computer_lifecycle: "computer_lifecycle";
|
|
13016
13795
|
computer_observe: "computer_observe";
|
|
13017
13796
|
computer_open: "computer_open";
|
|
@@ -13027,13 +13806,25 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13027
13806
|
editable_artifact_list: "editable_artifact_list";
|
|
13028
13807
|
environment_list: "environment_list";
|
|
13029
13808
|
environment_set_variable: "environment_set_variable";
|
|
13809
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
13810
|
+
fiken_companies_list: "fiken_companies_list";
|
|
13811
|
+
fiken_contact_create: "fiken_contact_create";
|
|
13812
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
13813
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
13814
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
13815
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
13816
|
+
fiken_products_list: "fiken_products_list";
|
|
13817
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
13818
|
+
fiken_sales_list: "fiken_sales_list";
|
|
13030
13819
|
github_connect_link: "github_connect_link";
|
|
13031
13820
|
github_repositories_list: "github_repositories_list";
|
|
13032
13821
|
goal_complete: "goal_complete";
|
|
13033
13822
|
goal_pause: "goal_pause";
|
|
13823
|
+
goal_progress: "goal_progress";
|
|
13034
13824
|
goal_set: "goal_set";
|
|
13035
13825
|
goal_update: "goal_update";
|
|
13036
13826
|
interaction_discover: "interaction_discover";
|
|
13827
|
+
interaction_request_human: "interaction_request_human";
|
|
13037
13828
|
memory_correct: "memory_correct";
|
|
13038
13829
|
memory_save: "memory_save";
|
|
13039
13830
|
memory_search: "memory_search";
|
|
@@ -13091,6 +13882,9 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13091
13882
|
social_posts_sync: "social_posts_sync";
|
|
13092
13883
|
social_search_live: "social_search_live";
|
|
13093
13884
|
social_thread_fetch: "social_thread_fetch";
|
|
13885
|
+
task_note_archive: "task_note_archive";
|
|
13886
|
+
task_note_save: "task_note_save";
|
|
13887
|
+
task_notes_list: "task_notes_list";
|
|
13094
13888
|
variable_set_get_variable: "variable_set_get_variable";
|
|
13095
13889
|
variable_set_list: "variable_set_list";
|
|
13096
13890
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -13360,6 +14154,22 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13360
14154
|
idsTruncated: z.ZodBoolean;
|
|
13361
14155
|
}, z.core.$strict>>;
|
|
13362
14156
|
metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
14157
|
+
tenancy: z.ZodOptional<z.ZodObject<{
|
|
14158
|
+
visibility: z.ZodEnum<{
|
|
14159
|
+
private: "private";
|
|
14160
|
+
workspace: "workspace";
|
|
14161
|
+
}>;
|
|
14162
|
+
authorityEpoch: z.ZodNumber;
|
|
14163
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
14164
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
14165
|
+
sourceVisibility: z.ZodEnum<{
|
|
14166
|
+
private: "private";
|
|
14167
|
+
workspace: "workspace";
|
|
14168
|
+
}>;
|
|
14169
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
14170
|
+
forkedAt: z.ZodString;
|
|
14171
|
+
}, z.core.$strip>>;
|
|
14172
|
+
}, z.core.$strip>>;
|
|
13363
14173
|
createdBy: z.ZodObject<{
|
|
13364
14174
|
subjectId: z.ZodString;
|
|
13365
14175
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -13396,6 +14206,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13396
14206
|
environmentId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13397
14207
|
rigId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13398
14208
|
rigVersionId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
14209
|
+
channelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13399
14210
|
firstPartyMcpPermissions: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
13400
14211
|
"account:admin": "account:admin";
|
|
13401
14212
|
"account:read": "account:read";
|
|
@@ -13454,6 +14265,8 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13454
14265
|
atlassian_search: "atlassian_search";
|
|
13455
14266
|
atlassian_sources_list: "atlassian_sources_list";
|
|
13456
14267
|
browser_act: "browser_act";
|
|
14268
|
+
browser_auth: "browser_auth";
|
|
14269
|
+
browser_clipboard: "browser_clipboard";
|
|
13457
14270
|
browser_debug: "browser_debug";
|
|
13458
14271
|
browser_identity: "browser_identity";
|
|
13459
14272
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -13464,6 +14277,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13464
14277
|
capability_authorization_request: "capability_authorization_request";
|
|
13465
14278
|
capability_catalog_search: "capability_catalog_search";
|
|
13466
14279
|
computer_act: "computer_act";
|
|
14280
|
+
computer_clipboard: "computer_clipboard";
|
|
13467
14281
|
computer_lifecycle: "computer_lifecycle";
|
|
13468
14282
|
computer_observe: "computer_observe";
|
|
13469
14283
|
computer_open: "computer_open";
|
|
@@ -13479,13 +14293,25 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13479
14293
|
editable_artifact_list: "editable_artifact_list";
|
|
13480
14294
|
environment_list: "environment_list";
|
|
13481
14295
|
environment_set_variable: "environment_set_variable";
|
|
14296
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
14297
|
+
fiken_companies_list: "fiken_companies_list";
|
|
14298
|
+
fiken_contact_create: "fiken_contact_create";
|
|
14299
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
14300
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
14301
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
14302
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
14303
|
+
fiken_products_list: "fiken_products_list";
|
|
14304
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
14305
|
+
fiken_sales_list: "fiken_sales_list";
|
|
13482
14306
|
github_connect_link: "github_connect_link";
|
|
13483
14307
|
github_repositories_list: "github_repositories_list";
|
|
13484
14308
|
goal_complete: "goal_complete";
|
|
13485
14309
|
goal_pause: "goal_pause";
|
|
14310
|
+
goal_progress: "goal_progress";
|
|
13486
14311
|
goal_set: "goal_set";
|
|
13487
14312
|
goal_update: "goal_update";
|
|
13488
14313
|
interaction_discover: "interaction_discover";
|
|
14314
|
+
interaction_request_human: "interaction_request_human";
|
|
13489
14315
|
memory_correct: "memory_correct";
|
|
13490
14316
|
memory_save: "memory_save";
|
|
13491
14317
|
memory_search: "memory_search";
|
|
@@ -13543,6 +14369,9 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
13543
14369
|
social_posts_sync: "social_posts_sync";
|
|
13544
14370
|
social_search_live: "social_search_live";
|
|
13545
14371
|
social_thread_fetch: "social_thread_fetch";
|
|
14372
|
+
task_note_archive: "task_note_archive";
|
|
14373
|
+
task_note_save: "task_note_save";
|
|
14374
|
+
task_notes_list: "task_notes_list";
|
|
13546
14375
|
variable_set_get_variable: "variable_set_get_variable";
|
|
13547
14376
|
variable_set_list: "variable_set_list";
|
|
13548
14377
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -13930,6 +14759,22 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
13930
14759
|
idsTruncated: z.ZodBoolean;
|
|
13931
14760
|
}, z.core.$strict>>;
|
|
13932
14761
|
metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
14762
|
+
tenancy: z.ZodOptional<z.ZodObject<{
|
|
14763
|
+
visibility: z.ZodEnum<{
|
|
14764
|
+
private: "private";
|
|
14765
|
+
workspace: "workspace";
|
|
14766
|
+
}>;
|
|
14767
|
+
authorityEpoch: z.ZodNumber;
|
|
14768
|
+
ownedByCurrentUser: z.ZodBoolean;
|
|
14769
|
+
fork: z.ZodNullable<z.ZodObject<{
|
|
14770
|
+
sourceVisibility: z.ZodEnum<{
|
|
14771
|
+
private: "private";
|
|
14772
|
+
workspace: "workspace";
|
|
14773
|
+
}>;
|
|
14774
|
+
sourceAuthorityEpoch: z.ZodNumber;
|
|
14775
|
+
forkedAt: z.ZodString;
|
|
14776
|
+
}, z.core.$strip>>;
|
|
14777
|
+
}, z.core.$strip>>;
|
|
13933
14778
|
createdBy: z.ZodObject<{
|
|
13934
14779
|
subjectId: z.ZodString;
|
|
13935
14780
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -13966,6 +14811,7 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
13966
14811
|
environmentId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13967
14812
|
rigId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13968
14813
|
rigVersionId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
14814
|
+
channelId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13969
14815
|
firstPartyMcpPermissions: z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
13970
14816
|
"account:admin": "account:admin";
|
|
13971
14817
|
"account:read": "account:read";
|
|
@@ -14024,6 +14870,8 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
14024
14870
|
atlassian_search: "atlassian_search";
|
|
14025
14871
|
atlassian_sources_list: "atlassian_sources_list";
|
|
14026
14872
|
browser_act: "browser_act";
|
|
14873
|
+
browser_auth: "browser_auth";
|
|
14874
|
+
browser_clipboard: "browser_clipboard";
|
|
14027
14875
|
browser_debug: "browser_debug";
|
|
14028
14876
|
browser_identity: "browser_identity";
|
|
14029
14877
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -14034,6 +14882,7 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
14034
14882
|
capability_authorization_request: "capability_authorization_request";
|
|
14035
14883
|
capability_catalog_search: "capability_catalog_search";
|
|
14036
14884
|
computer_act: "computer_act";
|
|
14885
|
+
computer_clipboard: "computer_clipboard";
|
|
14037
14886
|
computer_lifecycle: "computer_lifecycle";
|
|
14038
14887
|
computer_observe: "computer_observe";
|
|
14039
14888
|
computer_open: "computer_open";
|
|
@@ -14049,13 +14898,25 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
14049
14898
|
editable_artifact_list: "editable_artifact_list";
|
|
14050
14899
|
environment_list: "environment_list";
|
|
14051
14900
|
environment_set_variable: "environment_set_variable";
|
|
14901
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
14902
|
+
fiken_companies_list: "fiken_companies_list";
|
|
14903
|
+
fiken_contact_create: "fiken_contact_create";
|
|
14904
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
14905
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
14906
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
14907
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
14908
|
+
fiken_products_list: "fiken_products_list";
|
|
14909
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
14910
|
+
fiken_sales_list: "fiken_sales_list";
|
|
14052
14911
|
github_connect_link: "github_connect_link";
|
|
14053
14912
|
github_repositories_list: "github_repositories_list";
|
|
14054
14913
|
goal_complete: "goal_complete";
|
|
14055
14914
|
goal_pause: "goal_pause";
|
|
14915
|
+
goal_progress: "goal_progress";
|
|
14056
14916
|
goal_set: "goal_set";
|
|
14057
14917
|
goal_update: "goal_update";
|
|
14058
14918
|
interaction_discover: "interaction_discover";
|
|
14919
|
+
interaction_request_human: "interaction_request_human";
|
|
14059
14920
|
memory_correct: "memory_correct";
|
|
14060
14921
|
memory_save: "memory_save";
|
|
14061
14922
|
memory_search: "memory_search";
|
|
@@ -14113,6 +14974,9 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
14113
14974
|
social_posts_sync: "social_posts_sync";
|
|
14114
14975
|
social_search_live: "social_search_live";
|
|
14115
14976
|
social_thread_fetch: "social_thread_fetch";
|
|
14977
|
+
task_note_archive: "task_note_archive";
|
|
14978
|
+
task_note_save: "task_note_save";
|
|
14979
|
+
task_notes_list: "task_notes_list";
|
|
14116
14980
|
variable_set_get_variable: "variable_set_get_variable";
|
|
14117
14981
|
variable_set_list: "variable_set_list";
|
|
14118
14982
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -14293,7 +15157,10 @@ export declare const SessionEventType: z.ZodEnum<{
|
|
|
14293
15157
|
"goal.completed": "goal.completed";
|
|
14294
15158
|
"goal.continuation": "goal.continuation";
|
|
14295
15159
|
"goal.paused": "goal.paused";
|
|
15160
|
+
"goal.progress": "goal.progress";
|
|
14296
15161
|
"goal.resumed": "goal.resumed";
|
|
15162
|
+
"goal.rewrite.proposed": "goal.rewrite.proposed";
|
|
15163
|
+
"goal.rewrite.rejected": "goal.rewrite.rejected";
|
|
14297
15164
|
"goal.set": "goal.set";
|
|
14298
15165
|
"goal.updated": "goal.updated";
|
|
14299
15166
|
"machine.link.lost": "machine.link.lost";
|
|
@@ -14341,6 +15208,7 @@ export declare const SessionEventType: z.ZodEnum<{
|
|
|
14341
15208
|
"session.status.changed": "session.status.changed";
|
|
14342
15209
|
"session.title_set": "session.title_set";
|
|
14343
15210
|
"session.tool_policy.updated": "session.tool_policy.updated";
|
|
15211
|
+
"session.visibility.changed": "session.visibility.changed";
|
|
14344
15212
|
"stream.closed": "stream.closed";
|
|
14345
15213
|
"stream.opened": "stream.opened";
|
|
14346
15214
|
"stream.revoked": "stream.revoked";
|
|
@@ -14427,7 +15295,7 @@ export declare const SessionEventReadDirection: z.ZodEnum<{
|
|
|
14427
15295
|
export type SessionEventReadDirection = z.infer<typeof SessionEventReadDirection>;
|
|
14428
15296
|
export declare const SESSION_EVENT_RAW_DELTA_TYPES: readonly ["agent.message.delta", "agent.reasoning.delta", "sandbox.command.output.delta", "terminal.pty.output.delta"];
|
|
14429
15297
|
export declare const SESSION_EVENT_SEMANTIC_CLASS_TYPES: {
|
|
14430
|
-
readonly control: readonly ["session.status.changed", "session.requiresAction", "session.humanInput.requested", "user.pause", "user.approvalDecision", "user.humanInputResponse", "goal.set", "goal.updated", "goal.completed", "goal.paused", "goal.resumed", "goal.cleared", "goal.continuation", "system.update.pending", "system.update.delivered", "system.update.superseded", "system.update.cancelled", "system.update.settled", "session.control.paused", "session.control.resumed", "session.control.steer_requested", "workspace.inference.paused", "workspace.inference.resumed", "session.queue.changed", "session.queue.prompt.cancelled", "session.mcp.approval_policy.updated", "session.tool_policy.updated"];
|
|
15298
|
+
readonly control: readonly ["session.status.changed", "session.requiresAction", "session.humanInput.requested", "user.pause", "user.approvalDecision", "user.humanInputResponse", "goal.set", "goal.updated", "goal.progress", "goal.rewrite.proposed", "goal.rewrite.rejected", "goal.completed", "goal.paused", "goal.resumed", "goal.cleared", "goal.continuation", "system.update.pending", "system.update.delivered", "system.update.superseded", "system.update.cancelled", "system.update.settled", "session.control.paused", "session.control.resumed", "session.control.steer_requested", "workspace.inference.paused", "workspace.inference.resumed", "session.queue.changed", "session.queue.prompt.cancelled", "session.mcp.approval_policy.updated", "session.tool_policy.updated"];
|
|
14431
15299
|
readonly terminal: readonly ["turn.completed", "agent.message.completed", "turn.failed", "turn.cancelled", "turn.superseded", "goal.completed", "goal.paused", "rig.setup.completed", "rig.setup.skipped", "rig.setup.failed", "sandbox.operation.completed", "sandbox.operation.failed", "recording.available", "recording.failed", "terminal.pty.exited"];
|
|
14432
15300
|
readonly failure: readonly ["session.event.envelope_omitted", "turn.failed", "tool.auth_needed", "credential.auth_needed", "rig.setup.failed", "sandbox.operation.failed", "recording.failed", "sandbox.box.lost", "workspace.revision.degraded", "machine.op.failed", "machine.link.lost"];
|
|
14433
15301
|
readonly checkpoint: readonly ["session.context.compaction.requested", "session.context.compaction.started", "session.context.compacted", "session.context.compaction.skipped", "session.context.cleared", "turn.recovery.requested", "session.queue.history", "sandbox.box.snapshot", "workspace.revision.captured"];
|
|
@@ -16042,7 +16910,10 @@ export declare const SessionEvent: z.ZodObject<{
|
|
|
16042
16910
|
"goal.completed": "goal.completed";
|
|
16043
16911
|
"goal.continuation": "goal.continuation";
|
|
16044
16912
|
"goal.paused": "goal.paused";
|
|
16913
|
+
"goal.progress": "goal.progress";
|
|
16045
16914
|
"goal.resumed": "goal.resumed";
|
|
16915
|
+
"goal.rewrite.proposed": "goal.rewrite.proposed";
|
|
16916
|
+
"goal.rewrite.rejected": "goal.rewrite.rejected";
|
|
16046
16917
|
"goal.set": "goal.set";
|
|
16047
16918
|
"goal.updated": "goal.updated";
|
|
16048
16919
|
"machine.link.lost": "machine.link.lost";
|
|
@@ -16090,6 +16961,7 @@ export declare const SessionEvent: z.ZodObject<{
|
|
|
16090
16961
|
"session.status.changed": "session.status.changed";
|
|
16091
16962
|
"session.title_set": "session.title_set";
|
|
16092
16963
|
"session.tool_policy.updated": "session.tool_policy.updated";
|
|
16964
|
+
"session.visibility.changed": "session.visibility.changed";
|
|
16093
16965
|
"stream.closed": "stream.closed";
|
|
16094
16966
|
"stream.opened": "stream.opened";
|
|
16095
16967
|
"stream.revoked": "stream.revoked";
|
|
@@ -17001,10 +17873,16 @@ export declare const CreateSessionRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
17001
17873
|
variableSetId: z.ZodOptional<z.ZodString>;
|
|
17002
17874
|
environmentId: z.ZodOptional<z.ZodString>;
|
|
17003
17875
|
rigId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17876
|
+
channelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17004
17877
|
goal: z.ZodOptional<z.ZodObject<{
|
|
17005
17878
|
text: z.ZodString;
|
|
17006
17879
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
17007
17880
|
maxAutoContinuations: z.ZodOptional<z.ZodNumber>;
|
|
17881
|
+
mutationPolicy: z.ZodOptional<z.ZodEnum<{
|
|
17882
|
+
autonomous_adaptation: "autonomous_adaptation";
|
|
17883
|
+
preserve_intent: "preserve_intent";
|
|
17884
|
+
review_changes: "review_changes";
|
|
17885
|
+
}>>;
|
|
17008
17886
|
}, z.core.$strip>>;
|
|
17009
17887
|
clientEventId: z.ZodOptional<z.ZodString>;
|
|
17010
17888
|
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
@@ -17068,6 +17946,8 @@ export declare const CreateSessionRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
17068
17946
|
atlassian_search: "atlassian_search";
|
|
17069
17947
|
atlassian_sources_list: "atlassian_sources_list";
|
|
17070
17948
|
browser_act: "browser_act";
|
|
17949
|
+
browser_auth: "browser_auth";
|
|
17950
|
+
browser_clipboard: "browser_clipboard";
|
|
17071
17951
|
browser_debug: "browser_debug";
|
|
17072
17952
|
browser_identity: "browser_identity";
|
|
17073
17953
|
browser_lifecycle: "browser_lifecycle";
|
|
@@ -17078,6 +17958,7 @@ export declare const CreateSessionRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
17078
17958
|
capability_authorization_request: "capability_authorization_request";
|
|
17079
17959
|
capability_catalog_search: "capability_catalog_search";
|
|
17080
17960
|
computer_act: "computer_act";
|
|
17961
|
+
computer_clipboard: "computer_clipboard";
|
|
17081
17962
|
computer_lifecycle: "computer_lifecycle";
|
|
17082
17963
|
computer_observe: "computer_observe";
|
|
17083
17964
|
computer_open: "computer_open";
|
|
@@ -17093,13 +17974,25 @@ export declare const CreateSessionRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
17093
17974
|
editable_artifact_list: "editable_artifact_list";
|
|
17094
17975
|
environment_list: "environment_list";
|
|
17095
17976
|
environment_set_variable: "environment_set_variable";
|
|
17977
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
17978
|
+
fiken_companies_list: "fiken_companies_list";
|
|
17979
|
+
fiken_contact_create: "fiken_contact_create";
|
|
17980
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
17981
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
17982
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
17983
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
17984
|
+
fiken_products_list: "fiken_products_list";
|
|
17985
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
17986
|
+
fiken_sales_list: "fiken_sales_list";
|
|
17096
17987
|
github_connect_link: "github_connect_link";
|
|
17097
17988
|
github_repositories_list: "github_repositories_list";
|
|
17098
17989
|
goal_complete: "goal_complete";
|
|
17099
17990
|
goal_pause: "goal_pause";
|
|
17991
|
+
goal_progress: "goal_progress";
|
|
17100
17992
|
goal_set: "goal_set";
|
|
17101
17993
|
goal_update: "goal_update";
|
|
17102
17994
|
interaction_discover: "interaction_discover";
|
|
17995
|
+
interaction_request_human: "interaction_request_human";
|
|
17103
17996
|
memory_correct: "memory_correct";
|
|
17104
17997
|
memory_save: "memory_save";
|
|
17105
17998
|
memory_search: "memory_search";
|
|
@@ -17157,6 +18050,9 @@ export declare const CreateSessionRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
17157
18050
|
social_posts_sync: "social_posts_sync";
|
|
17158
18051
|
social_search_live: "social_search_live";
|
|
17159
18052
|
social_thread_fetch: "social_thread_fetch";
|
|
18053
|
+
task_note_archive: "task_note_archive";
|
|
18054
|
+
task_note_save: "task_note_save";
|
|
18055
|
+
task_notes_list: "task_notes_list";
|
|
17160
18056
|
variable_set_get_variable: "variable_set_get_variable";
|
|
17161
18057
|
variable_set_list: "variable_set_list";
|
|
17162
18058
|
variable_set_set_variable: "variable_set_set_variable";
|
|
@@ -17665,7 +18561,10 @@ export declare const SteerSessionMessageResponse: z.ZodObject<{
|
|
|
17665
18561
|
"goal.completed": "goal.completed";
|
|
17666
18562
|
"goal.continuation": "goal.continuation";
|
|
17667
18563
|
"goal.paused": "goal.paused";
|
|
18564
|
+
"goal.progress": "goal.progress";
|
|
17668
18565
|
"goal.resumed": "goal.resumed";
|
|
18566
|
+
"goal.rewrite.proposed": "goal.rewrite.proposed";
|
|
18567
|
+
"goal.rewrite.rejected": "goal.rewrite.rejected";
|
|
17669
18568
|
"goal.set": "goal.set";
|
|
17670
18569
|
"goal.updated": "goal.updated";
|
|
17671
18570
|
"machine.link.lost": "machine.link.lost";
|
|
@@ -17713,6 +18612,7 @@ export declare const SteerSessionMessageResponse: z.ZodObject<{
|
|
|
17713
18612
|
"session.status.changed": "session.status.changed";
|
|
17714
18613
|
"session.title_set": "session.title_set";
|
|
17715
18614
|
"session.tool_policy.updated": "session.tool_policy.updated";
|
|
18615
|
+
"session.visibility.changed": "session.visibility.changed";
|
|
17716
18616
|
"stream.closed": "stream.closed";
|
|
17717
18617
|
"stream.opened": "stream.opened";
|
|
17718
18618
|
"stream.revoked": "stream.revoked";
|
|
@@ -17936,7 +18836,10 @@ export declare const SessionBusMessage: z.ZodObject<{
|
|
|
17936
18836
|
"goal.completed": "goal.completed";
|
|
17937
18837
|
"goal.continuation": "goal.continuation";
|
|
17938
18838
|
"goal.paused": "goal.paused";
|
|
18839
|
+
"goal.progress": "goal.progress";
|
|
17939
18840
|
"goal.resumed": "goal.resumed";
|
|
18841
|
+
"goal.rewrite.proposed": "goal.rewrite.proposed";
|
|
18842
|
+
"goal.rewrite.rejected": "goal.rewrite.rejected";
|
|
17940
18843
|
"goal.set": "goal.set";
|
|
17941
18844
|
"goal.updated": "goal.updated";
|
|
17942
18845
|
"machine.link.lost": "machine.link.lost";
|
|
@@ -17984,6 +18887,7 @@ export declare const SessionBusMessage: z.ZodObject<{
|
|
|
17984
18887
|
"session.status.changed": "session.status.changed";
|
|
17985
18888
|
"session.title_set": "session.title_set";
|
|
17986
18889
|
"session.tool_policy.updated": "session.tool_policy.updated";
|
|
18890
|
+
"session.visibility.changed": "session.visibility.changed";
|
|
17987
18891
|
"stream.closed": "stream.closed";
|
|
17988
18892
|
"stream.opened": "stream.opened";
|
|
17989
18893
|
"stream.revoked": "stream.revoked";
|
|
@@ -18235,6 +19139,7 @@ export declare const SessionCapabilities: z.ZodObject<{
|
|
|
18235
19139
|
Terminal: z.ZodObject<{
|
|
18236
19140
|
transport: z.ZodNullable<z.ZodEnum<{
|
|
18237
19141
|
"pty-ws": "pty-ws";
|
|
19142
|
+
"relay-pty": "relay-pty";
|
|
18238
19143
|
"sse-events": "sse-events";
|
|
18239
19144
|
}>>;
|
|
18240
19145
|
ptyCapable: z.ZodBoolean;
|
|
@@ -18407,7 +19312,10 @@ export declare const AttachViewerResponse: z.ZodObject<{
|
|
|
18407
19312
|
terminalUrl: z.ZodNullable<z.ZodString>;
|
|
18408
19313
|
terminalToken: z.ZodNullable<z.ZodString>;
|
|
18409
19314
|
terminalExpiresAt: z.ZodNullable<z.ZodString>;
|
|
18410
|
-
terminalTransport: z.ZodNullable<z.
|
|
19315
|
+
terminalTransport: z.ZodNullable<z.ZodEnum<{
|
|
19316
|
+
"pty-ws": "pty-ws";
|
|
19317
|
+
"relay-pty": "relay-pty";
|
|
19318
|
+
}>>;
|
|
18411
19319
|
}, z.core.$strip>;
|
|
18412
19320
|
export type AttachViewerResponse = z.infer<typeof AttachViewerResponse>;
|
|
18413
19321
|
export declare const AcknowledgeStreamRequest: z.ZodObject<{
|
|
@@ -19049,7 +19957,10 @@ export declare const ModelCredentialSourceV1: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
19049
19957
|
}>;
|
|
19050
19958
|
}, z.core.$strict>, z.ZodObject<{
|
|
19051
19959
|
kind: z.ZodLiteral<"connected_subscription">;
|
|
19052
|
-
provider: z.
|
|
19960
|
+
provider: z.ZodEnum<{
|
|
19961
|
+
codex: "codex";
|
|
19962
|
+
xai: "xai";
|
|
19963
|
+
}>;
|
|
19053
19964
|
}, z.core.$strict>, z.ZodObject<{
|
|
19054
19965
|
kind: z.ZodLiteral<"workspace_connection">;
|
|
19055
19966
|
mechanism: z.ZodLiteral<"api_key">;
|
|
@@ -19150,7 +20061,10 @@ export declare const TurnExecutionPolicyV1: z.ZodObject<{
|
|
|
19150
20061
|
}>;
|
|
19151
20062
|
}, z.core.$strict>, z.ZodObject<{
|
|
19152
20063
|
kind: z.ZodLiteral<"connected_subscription">;
|
|
19153
|
-
provider: z.
|
|
20064
|
+
provider: z.ZodEnum<{
|
|
20065
|
+
codex: "codex";
|
|
20066
|
+
xai: "xai";
|
|
20067
|
+
}>;
|
|
19154
20068
|
}, z.core.$strict>, z.ZodObject<{
|
|
19155
20069
|
kind: z.ZodLiteral<"workspace_connection">;
|
|
19156
20070
|
mechanism: z.ZodLiteral<"api_key">;
|
|
@@ -19235,6 +20149,7 @@ export declare const ClientModel: z.ZodObject<{
|
|
|
19235
20149
|
source: z.ZodOptional<z.ZodEnum<{
|
|
19236
20150
|
codex: "codex";
|
|
19237
20151
|
opengeni: "opengeni";
|
|
20152
|
+
supergrok: "supergrok";
|
|
19238
20153
|
workspace_gateway: "workspace_gateway";
|
|
19239
20154
|
}>>;
|
|
19240
20155
|
contextWindowTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19261,7 +20176,10 @@ export declare const ClientModel: z.ZodObject<{
|
|
|
19261
20176
|
}>;
|
|
19262
20177
|
}, z.core.$strict>, z.ZodObject<{
|
|
19263
20178
|
kind: z.ZodLiteral<"connected_subscription">;
|
|
19264
|
-
provider: z.
|
|
20179
|
+
provider: z.ZodEnum<{
|
|
20180
|
+
codex: "codex";
|
|
20181
|
+
xai: "xai";
|
|
20182
|
+
}>;
|
|
19265
20183
|
}, z.core.$strict>, z.ZodObject<{
|
|
19266
20184
|
kind: z.ZodLiteral<"workspace_connection">;
|
|
19267
20185
|
mechanism: z.ZodLiteral<"api_key">;
|
|
@@ -19486,6 +20404,7 @@ export declare const WorkspaceModelCatalogModel: z.ZodObject<{
|
|
|
19486
20404
|
source: z.ZodOptional<z.ZodEnum<{
|
|
19487
20405
|
codex: "codex";
|
|
19488
20406
|
opengeni: "opengeni";
|
|
20407
|
+
supergrok: "supergrok";
|
|
19489
20408
|
workspace_gateway: "workspace_gateway";
|
|
19490
20409
|
}>>;
|
|
19491
20410
|
contextWindowTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19512,7 +20431,10 @@ export declare const WorkspaceModelCatalogModel: z.ZodObject<{
|
|
|
19512
20431
|
}>;
|
|
19513
20432
|
}, z.core.$strict>, z.ZodObject<{
|
|
19514
20433
|
kind: z.ZodLiteral<"connected_subscription">;
|
|
19515
|
-
provider: z.
|
|
20434
|
+
provider: z.ZodEnum<{
|
|
20435
|
+
codex: "codex";
|
|
20436
|
+
xai: "xai";
|
|
20437
|
+
}>;
|
|
19516
20438
|
}, z.core.$strict>, z.ZodObject<{
|
|
19517
20439
|
kind: z.ZodLiteral<"workspace_connection">;
|
|
19518
20440
|
mechanism: z.ZodLiteral<"api_key">;
|
|
@@ -19736,6 +20658,7 @@ export declare const WorkspaceModelCatalogResponse: z.ZodObject<{
|
|
|
19736
20658
|
source: z.ZodOptional<z.ZodEnum<{
|
|
19737
20659
|
codex: "codex";
|
|
19738
20660
|
opengeni: "opengeni";
|
|
20661
|
+
supergrok: "supergrok";
|
|
19739
20662
|
workspace_gateway: "workspace_gateway";
|
|
19740
20663
|
}>>;
|
|
19741
20664
|
contextWindowTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19762,7 +20685,10 @@ export declare const WorkspaceModelCatalogResponse: z.ZodObject<{
|
|
|
19762
20685
|
}>;
|
|
19763
20686
|
}, z.core.$strict>, z.ZodObject<{
|
|
19764
20687
|
kind: z.ZodLiteral<"connected_subscription">;
|
|
19765
|
-
provider: z.
|
|
20688
|
+
provider: z.ZodEnum<{
|
|
20689
|
+
codex: "codex";
|
|
20690
|
+
xai: "xai";
|
|
20691
|
+
}>;
|
|
19766
20692
|
}, z.core.$strict>, z.ZodObject<{
|
|
19767
20693
|
kind: z.ZodLiteral<"workspace_connection">;
|
|
19768
20694
|
mechanism: z.ZodLiteral<"api_key">;
|
|
@@ -20004,6 +20930,7 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
20004
20930
|
source: z.ZodOptional<z.ZodEnum<{
|
|
20005
20931
|
codex: "codex";
|
|
20006
20932
|
opengeni: "opengeni";
|
|
20933
|
+
supergrok: "supergrok";
|
|
20007
20934
|
workspace_gateway: "workspace_gateway";
|
|
20008
20935
|
}>>;
|
|
20009
20936
|
contextWindowTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -20030,7 +20957,10 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
20030
20957
|
}>;
|
|
20031
20958
|
}, z.core.$strict>, z.ZodObject<{
|
|
20032
20959
|
kind: z.ZodLiteral<"connected_subscription">;
|
|
20033
|
-
provider: z.
|
|
20960
|
+
provider: z.ZodEnum<{
|
|
20961
|
+
codex: "codex";
|
|
20962
|
+
xai: "xai";
|
|
20963
|
+
}>;
|
|
20034
20964
|
}, z.core.$strict>, z.ZodObject<{
|
|
20035
20965
|
kind: z.ZodLiteral<"workspace_connection">;
|
|
20036
20966
|
mechanism: z.ZodLiteral<"api_key">;
|
|
@@ -20222,6 +21152,262 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
20222
21152
|
id: z.ZodString;
|
|
20223
21153
|
name: z.ZodString;
|
|
20224
21154
|
}, z.core.$strip>>>;
|
|
21155
|
+
firstPartyMcpTools: z.ZodDefault<z.ZodObject<{
|
|
21156
|
+
default: z.ZodArray<z.ZodEnum<{
|
|
21157
|
+
artifacts_create: "artifacts_create";
|
|
21158
|
+
artifacts_get_source: "artifacts_get_source";
|
|
21159
|
+
artifacts_list: "artifacts_list";
|
|
21160
|
+
artifacts_publish: "artifacts_publish";
|
|
21161
|
+
artifacts_rollback: "artifacts_rollback";
|
|
21162
|
+
atlassian_get: "atlassian_get";
|
|
21163
|
+
atlassian_search: "atlassian_search";
|
|
21164
|
+
atlassian_sources_list: "atlassian_sources_list";
|
|
21165
|
+
browser_act: "browser_act";
|
|
21166
|
+
browser_auth: "browser_auth";
|
|
21167
|
+
browser_clipboard: "browser_clipboard";
|
|
21168
|
+
browser_debug: "browser_debug";
|
|
21169
|
+
browser_identity: "browser_identity";
|
|
21170
|
+
browser_lifecycle: "browser_lifecycle";
|
|
21171
|
+
browser_observe: "browser_observe";
|
|
21172
|
+
browser_open: "browser_open";
|
|
21173
|
+
browser_publish: "browser_publish";
|
|
21174
|
+
browser_tabs: "browser_tabs";
|
|
21175
|
+
capability_authorization_request: "capability_authorization_request";
|
|
21176
|
+
capability_catalog_search: "capability_catalog_search";
|
|
21177
|
+
computer_act: "computer_act";
|
|
21178
|
+
computer_clipboard: "computer_clipboard";
|
|
21179
|
+
computer_lifecycle: "computer_lifecycle";
|
|
21180
|
+
computer_observe: "computer_observe";
|
|
21181
|
+
computer_open: "computer_open";
|
|
21182
|
+
computer_targets: "computer_targets";
|
|
21183
|
+
connected_machine_remove: "connected_machine_remove";
|
|
21184
|
+
editable_artifact_apply: "editable_artifact_apply";
|
|
21185
|
+
editable_artifact_create: "editable_artifact_create";
|
|
21186
|
+
editable_artifact_export: "editable_artifact_export";
|
|
21187
|
+
editable_artifact_export_status: "editable_artifact_export_status";
|
|
21188
|
+
editable_artifact_get: "editable_artifact_get";
|
|
21189
|
+
editable_artifact_import: "editable_artifact_import";
|
|
21190
|
+
editable_artifact_inspect: "editable_artifact_inspect";
|
|
21191
|
+
editable_artifact_list: "editable_artifact_list";
|
|
21192
|
+
environment_list: "environment_list";
|
|
21193
|
+
environment_set_variable: "environment_set_variable";
|
|
21194
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
21195
|
+
fiken_companies_list: "fiken_companies_list";
|
|
21196
|
+
fiken_contact_create: "fiken_contact_create";
|
|
21197
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
21198
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
21199
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
21200
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
21201
|
+
fiken_products_list: "fiken_products_list";
|
|
21202
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
21203
|
+
fiken_sales_list: "fiken_sales_list";
|
|
21204
|
+
github_connect_link: "github_connect_link";
|
|
21205
|
+
github_repositories_list: "github_repositories_list";
|
|
21206
|
+
goal_complete: "goal_complete";
|
|
21207
|
+
goal_pause: "goal_pause";
|
|
21208
|
+
goal_progress: "goal_progress";
|
|
21209
|
+
goal_set: "goal_set";
|
|
21210
|
+
goal_update: "goal_update";
|
|
21211
|
+
interaction_discover: "interaction_discover";
|
|
21212
|
+
interaction_request_human: "interaction_request_human";
|
|
21213
|
+
memory_correct: "memory_correct";
|
|
21214
|
+
memory_save: "memory_save";
|
|
21215
|
+
memory_search: "memory_search";
|
|
21216
|
+
preference_registry_get: "preference_registry_get";
|
|
21217
|
+
preference_registry_summary: "preference_registry_summary";
|
|
21218
|
+
reddit_accounts_list: "reddit_accounts_list";
|
|
21219
|
+
reddit_mentions_live: "reddit_mentions_live";
|
|
21220
|
+
reddit_post_reply: "reddit_post_reply";
|
|
21221
|
+
reddit_posts_sync: "reddit_posts_sync";
|
|
21222
|
+
reddit_search_live: "reddit_search_live";
|
|
21223
|
+
reddit_thread_fetch: "reddit_thread_fetch";
|
|
21224
|
+
rig_get: "rig_get";
|
|
21225
|
+
rig_list: "rig_list";
|
|
21226
|
+
rig_promote: "rig_promote";
|
|
21227
|
+
rig_propose_change: "rig_propose_change";
|
|
21228
|
+
rig_verify: "rig_verify";
|
|
21229
|
+
run_on: "run_on";
|
|
21230
|
+
sandbox_attach: "sandbox_attach";
|
|
21231
|
+
sandbox_provision: "sandbox_provision";
|
|
21232
|
+
sandbox_swap: "sandbox_swap";
|
|
21233
|
+
sandboxes_list: "sandboxes_list";
|
|
21234
|
+
scheduled_task_runs_list: "scheduled_task_runs_list";
|
|
21235
|
+
scheduled_tasks_create: "scheduled_tasks_create";
|
|
21236
|
+
scheduled_tasks_delete: "scheduled_tasks_delete";
|
|
21237
|
+
scheduled_tasks_get: "scheduled_tasks_get";
|
|
21238
|
+
scheduled_tasks_list: "scheduled_tasks_list";
|
|
21239
|
+
scheduled_tasks_pause: "scheduled_tasks_pause";
|
|
21240
|
+
scheduled_tasks_resume: "scheduled_tasks_resume";
|
|
21241
|
+
scheduled_tasks_trigger: "scheduled_tasks_trigger";
|
|
21242
|
+
scheduled_tasks_update: "scheduled_tasks_update";
|
|
21243
|
+
session_create: "session_create";
|
|
21244
|
+
session_events: "session_events";
|
|
21245
|
+
session_get: "session_get";
|
|
21246
|
+
session_pause: "session_pause";
|
|
21247
|
+
session_resume: "session_resume";
|
|
21248
|
+
session_send_message: "session_send_message";
|
|
21249
|
+
session_steer: "session_steer";
|
|
21250
|
+
sessions_list: "sessions_list";
|
|
21251
|
+
set_other_session_title: "set_other_session_title";
|
|
21252
|
+
set_session_title: "set_session_title";
|
|
21253
|
+
slack_bot_channel_history: "slack_bot_channel_history";
|
|
21254
|
+
slack_bot_delete_message: "slack_bot_delete_message";
|
|
21255
|
+
slack_bot_file_content: "slack_bot_file_content";
|
|
21256
|
+
slack_bot_file_info: "slack_bot_file_info";
|
|
21257
|
+
slack_bot_list_channels: "slack_bot_list_channels";
|
|
21258
|
+
slack_bot_list_files: "slack_bot_list_files";
|
|
21259
|
+
slack_bot_list_users: "slack_bot_list_users";
|
|
21260
|
+
slack_bot_post_message: "slack_bot_post_message";
|
|
21261
|
+
slack_bot_thread_replies: "slack_bot_thread_replies";
|
|
21262
|
+
social_connections_list: "social_connections_list";
|
|
21263
|
+
social_daily_analysis_context: "social_daily_analysis_context";
|
|
21264
|
+
social_mentions_live: "social_mentions_live";
|
|
21265
|
+
social_post_reply: "social_post_reply";
|
|
21266
|
+
social_posts_recent: "social_posts_recent";
|
|
21267
|
+
social_posts_sync: "social_posts_sync";
|
|
21268
|
+
social_search_live: "social_search_live";
|
|
21269
|
+
social_thread_fetch: "social_thread_fetch";
|
|
21270
|
+
task_note_archive: "task_note_archive";
|
|
21271
|
+
task_note_save: "task_note_save";
|
|
21272
|
+
task_notes_list: "task_notes_list";
|
|
21273
|
+
variable_set_get_variable: "variable_set_get_variable";
|
|
21274
|
+
variable_set_list: "variable_set_list";
|
|
21275
|
+
variable_set_set_variable: "variable_set_set_variable";
|
|
21276
|
+
x_accounts_list: "x_accounts_list";
|
|
21277
|
+
x_mentions_live: "x_mentions_live";
|
|
21278
|
+
x_post_reply: "x_post_reply";
|
|
21279
|
+
x_posts_sync: "x_posts_sync";
|
|
21280
|
+
x_search_live: "x_search_live";
|
|
21281
|
+
x_thread_fetch: "x_thread_fetch";
|
|
21282
|
+
}>>;
|
|
21283
|
+
allowed: z.ZodArray<z.ZodEnum<{
|
|
21284
|
+
artifacts_create: "artifacts_create";
|
|
21285
|
+
artifacts_get_source: "artifacts_get_source";
|
|
21286
|
+
artifacts_list: "artifacts_list";
|
|
21287
|
+
artifacts_publish: "artifacts_publish";
|
|
21288
|
+
artifacts_rollback: "artifacts_rollback";
|
|
21289
|
+
atlassian_get: "atlassian_get";
|
|
21290
|
+
atlassian_search: "atlassian_search";
|
|
21291
|
+
atlassian_sources_list: "atlassian_sources_list";
|
|
21292
|
+
browser_act: "browser_act";
|
|
21293
|
+
browser_auth: "browser_auth";
|
|
21294
|
+
browser_clipboard: "browser_clipboard";
|
|
21295
|
+
browser_debug: "browser_debug";
|
|
21296
|
+
browser_identity: "browser_identity";
|
|
21297
|
+
browser_lifecycle: "browser_lifecycle";
|
|
21298
|
+
browser_observe: "browser_observe";
|
|
21299
|
+
browser_open: "browser_open";
|
|
21300
|
+
browser_publish: "browser_publish";
|
|
21301
|
+
browser_tabs: "browser_tabs";
|
|
21302
|
+
capability_authorization_request: "capability_authorization_request";
|
|
21303
|
+
capability_catalog_search: "capability_catalog_search";
|
|
21304
|
+
computer_act: "computer_act";
|
|
21305
|
+
computer_clipboard: "computer_clipboard";
|
|
21306
|
+
computer_lifecycle: "computer_lifecycle";
|
|
21307
|
+
computer_observe: "computer_observe";
|
|
21308
|
+
computer_open: "computer_open";
|
|
21309
|
+
computer_targets: "computer_targets";
|
|
21310
|
+
connected_machine_remove: "connected_machine_remove";
|
|
21311
|
+
editable_artifact_apply: "editable_artifact_apply";
|
|
21312
|
+
editable_artifact_create: "editable_artifact_create";
|
|
21313
|
+
editable_artifact_export: "editable_artifact_export";
|
|
21314
|
+
editable_artifact_export_status: "editable_artifact_export_status";
|
|
21315
|
+
editable_artifact_get: "editable_artifact_get";
|
|
21316
|
+
editable_artifact_import: "editable_artifact_import";
|
|
21317
|
+
editable_artifact_inspect: "editable_artifact_inspect";
|
|
21318
|
+
editable_artifact_list: "editable_artifact_list";
|
|
21319
|
+
environment_list: "environment_list";
|
|
21320
|
+
environment_set_variable: "environment_set_variable";
|
|
21321
|
+
fiken_bank_accounts_list: "fiken_bank_accounts_list";
|
|
21322
|
+
fiken_companies_list: "fiken_companies_list";
|
|
21323
|
+
fiken_contact_create: "fiken_contact_create";
|
|
21324
|
+
fiken_contacts_list: "fiken_contacts_list";
|
|
21325
|
+
fiken_invoice_draft_create: "fiken_invoice_draft_create";
|
|
21326
|
+
fiken_invoice_get: "fiken_invoice_get";
|
|
21327
|
+
fiken_invoices_list: "fiken_invoices_list";
|
|
21328
|
+
fiken_products_list: "fiken_products_list";
|
|
21329
|
+
fiken_purchases_list: "fiken_purchases_list";
|
|
21330
|
+
fiken_sales_list: "fiken_sales_list";
|
|
21331
|
+
github_connect_link: "github_connect_link";
|
|
21332
|
+
github_repositories_list: "github_repositories_list";
|
|
21333
|
+
goal_complete: "goal_complete";
|
|
21334
|
+
goal_pause: "goal_pause";
|
|
21335
|
+
goal_progress: "goal_progress";
|
|
21336
|
+
goal_set: "goal_set";
|
|
21337
|
+
goal_update: "goal_update";
|
|
21338
|
+
interaction_discover: "interaction_discover";
|
|
21339
|
+
interaction_request_human: "interaction_request_human";
|
|
21340
|
+
memory_correct: "memory_correct";
|
|
21341
|
+
memory_save: "memory_save";
|
|
21342
|
+
memory_search: "memory_search";
|
|
21343
|
+
preference_registry_get: "preference_registry_get";
|
|
21344
|
+
preference_registry_summary: "preference_registry_summary";
|
|
21345
|
+
reddit_accounts_list: "reddit_accounts_list";
|
|
21346
|
+
reddit_mentions_live: "reddit_mentions_live";
|
|
21347
|
+
reddit_post_reply: "reddit_post_reply";
|
|
21348
|
+
reddit_posts_sync: "reddit_posts_sync";
|
|
21349
|
+
reddit_search_live: "reddit_search_live";
|
|
21350
|
+
reddit_thread_fetch: "reddit_thread_fetch";
|
|
21351
|
+
rig_get: "rig_get";
|
|
21352
|
+
rig_list: "rig_list";
|
|
21353
|
+
rig_promote: "rig_promote";
|
|
21354
|
+
rig_propose_change: "rig_propose_change";
|
|
21355
|
+
rig_verify: "rig_verify";
|
|
21356
|
+
run_on: "run_on";
|
|
21357
|
+
sandbox_attach: "sandbox_attach";
|
|
21358
|
+
sandbox_provision: "sandbox_provision";
|
|
21359
|
+
sandbox_swap: "sandbox_swap";
|
|
21360
|
+
sandboxes_list: "sandboxes_list";
|
|
21361
|
+
scheduled_task_runs_list: "scheduled_task_runs_list";
|
|
21362
|
+
scheduled_tasks_create: "scheduled_tasks_create";
|
|
21363
|
+
scheduled_tasks_delete: "scheduled_tasks_delete";
|
|
21364
|
+
scheduled_tasks_get: "scheduled_tasks_get";
|
|
21365
|
+
scheduled_tasks_list: "scheduled_tasks_list";
|
|
21366
|
+
scheduled_tasks_pause: "scheduled_tasks_pause";
|
|
21367
|
+
scheduled_tasks_resume: "scheduled_tasks_resume";
|
|
21368
|
+
scheduled_tasks_trigger: "scheduled_tasks_trigger";
|
|
21369
|
+
scheduled_tasks_update: "scheduled_tasks_update";
|
|
21370
|
+
session_create: "session_create";
|
|
21371
|
+
session_events: "session_events";
|
|
21372
|
+
session_get: "session_get";
|
|
21373
|
+
session_pause: "session_pause";
|
|
21374
|
+
session_resume: "session_resume";
|
|
21375
|
+
session_send_message: "session_send_message";
|
|
21376
|
+
session_steer: "session_steer";
|
|
21377
|
+
sessions_list: "sessions_list";
|
|
21378
|
+
set_other_session_title: "set_other_session_title";
|
|
21379
|
+
set_session_title: "set_session_title";
|
|
21380
|
+
slack_bot_channel_history: "slack_bot_channel_history";
|
|
21381
|
+
slack_bot_delete_message: "slack_bot_delete_message";
|
|
21382
|
+
slack_bot_file_content: "slack_bot_file_content";
|
|
21383
|
+
slack_bot_file_info: "slack_bot_file_info";
|
|
21384
|
+
slack_bot_list_channels: "slack_bot_list_channels";
|
|
21385
|
+
slack_bot_list_files: "slack_bot_list_files";
|
|
21386
|
+
slack_bot_list_users: "slack_bot_list_users";
|
|
21387
|
+
slack_bot_post_message: "slack_bot_post_message";
|
|
21388
|
+
slack_bot_thread_replies: "slack_bot_thread_replies";
|
|
21389
|
+
social_connections_list: "social_connections_list";
|
|
21390
|
+
social_daily_analysis_context: "social_daily_analysis_context";
|
|
21391
|
+
social_mentions_live: "social_mentions_live";
|
|
21392
|
+
social_post_reply: "social_post_reply";
|
|
21393
|
+
social_posts_recent: "social_posts_recent";
|
|
21394
|
+
social_posts_sync: "social_posts_sync";
|
|
21395
|
+
social_search_live: "social_search_live";
|
|
21396
|
+
social_thread_fetch: "social_thread_fetch";
|
|
21397
|
+
task_note_archive: "task_note_archive";
|
|
21398
|
+
task_note_save: "task_note_save";
|
|
21399
|
+
task_notes_list: "task_notes_list";
|
|
21400
|
+
variable_set_get_variable: "variable_set_get_variable";
|
|
21401
|
+
variable_set_list: "variable_set_list";
|
|
21402
|
+
variable_set_set_variable: "variable_set_set_variable";
|
|
21403
|
+
x_accounts_list: "x_accounts_list";
|
|
21404
|
+
x_mentions_live: "x_mentions_live";
|
|
21405
|
+
x_post_reply: "x_post_reply";
|
|
21406
|
+
x_posts_sync: "x_posts_sync";
|
|
21407
|
+
x_search_live: "x_search_live";
|
|
21408
|
+
x_thread_fetch: "x_thread_fetch";
|
|
21409
|
+
}>>;
|
|
21410
|
+
}, z.core.$strip>>;
|
|
20225
21411
|
fileUploads: z.ZodObject<{
|
|
20226
21412
|
enabled: z.ZodBoolean;
|
|
20227
21413
|
maxSizeBytes: z.ZodNumber;
|
|
@@ -20309,9 +21495,13 @@ export declare function evaluateWorkspaceModelPolicy(policy: WorkspaceModelPolic
|
|
|
20309
21495
|
modelId: string;
|
|
20310
21496
|
}): WorkspaceModelPolicyVerdict;
|
|
20311
21497
|
export * from "./codex-fleet-policy.js";
|
|
21498
|
+
export * from "./xai-provider-account-authority.js";
|
|
20312
21499
|
export * from "./workspace-instruction-policies.js";
|
|
20313
21500
|
export * from "./company-profile.js";
|
|
20314
21501
|
export * from "./workspace-learning-policy.js";
|
|
20315
21502
|
export * from "./workspace-state.js";
|
|
20316
21503
|
export * from "./preference-registry.js";
|
|
20317
21504
|
export * from "./scoped-knowledge.js";
|
|
21505
|
+
export * from "./knowledge.js";
|
|
21506
|
+
export * from "./task-notes.js";
|
|
21507
|
+
export * from "./canonical-human-identities.js";
|