@openclaw/gateway-protocol 2026.8.1-beta.3 → 2026.9.1-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,21 @@
1
- import { r as ErrorShape } from "./frames-BKvowx_k.mjs";
2
- import { n as ErrorCode, s as MissingScopeErrorDetails } from "./gateway-error-details-DR-CyzeW.mjs";
1
+ import { r as ErrorShape } from "./frames-BmksHL6e.mjs";
2
+ import { n as ErrorCode, s as MissingScopeErrorDetails } from "./gateway-error-details-yO9RdEKe.mjs";
3
3
  import { Static, TSchema, Type } from "typebox";
4
-
4
+ //#region src/server-capabilities.d.ts
5
+ /** Stable feature names advertised in Gateway hello responses. */
6
+ declare const GATEWAY_SERVER_CAPS: {
7
+ readonly BOARD_WIDGET_PUT_CANVAS_DOC: "board-widget-put-canvas-doc";
8
+ readonly CHAT_SEND_ROUTING_CONTRACT: "chat-send-routing-contract";
9
+ readonly GATEWAY_RESTART_TARGET_SAFE: "gateway-restart-target-safe-v1";
10
+ readonly NODE_WORKER_BUNDLE_RETENTION: "node-worker-bundle-retention-v1";
11
+ readonly NODE_WORKER_BUNDLE_STATUS: "node-worker-bundle-status-v1";
12
+ readonly NODE_WORKER_PORTAL_STREAM: "node-worker-portal-stream-v1";
13
+ readonly SESSION_UNREAD_ACK_CONTRACT: "session-unread-ack-contract";
14
+ readonly SYSTEM_AGENT_WIZARD_CANCEL: "openclaw-chat-wizard-cancel";
15
+ readonly SYSTEM_AGENT_SETUP_MODEL_REF: "openclaw-setup-model-ref";
16
+ readonly TASK_SUGGESTIONS_ACCEPT_MODES: "taskSuggestions.acceptModes";
17
+ };
18
+ //#endregion
5
19
  //#region src/schema/error-codes.d.ts
6
20
  declare const CronJobNotFoundErrorDetailsSchema: Type.TObject<{
7
21
  code: Type.TLiteral<"CRON_JOB_NOT_FOUND">;
@@ -174,14 +188,15 @@ declare const LiveSequenceSchema: Type.TInteger;
174
188
  declare const WORKER_RPC_SET_VERSION = 1;
175
189
  declare const WORKER_BUNDLE_PREWARM_VERSION = 1;
176
190
  declare const WORKER_HEARTBEAT_INTERVAL_MS = 15000;
177
- declare const WORKER_PROTOCOL_METHODS: readonly ["worker.heartbeat", "worker.transcript.commit", "worker.live-event", "worker.sessions.spawn", "worker.sessions.send", "worker.github.publish"];
191
+ declare const WORKER_PROTOCOL_METHODS: readonly ["worker.heartbeat", "worker.transcript.commit", "worker.live-event", "worker.sessions.spawn", "worker.sessions.send", "worker.github.publish", "worker.portal"];
178
192
  declare const WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE = "worker-transcript-commit-v1";
179
193
  declare const WORKER_LIVE_EVENT_PROTOCOL_FEATURE = "worker-live-event-v1";
180
194
  declare const WORKER_LAUNCH_V2_PROTOCOL_FEATURE = "worker-launch-v2";
181
195
  declare const WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE = "worker-execution-context-v2";
182
196
  declare const WORKER_SESSION_TOOLS_PROTOCOL_FEATURE = "worker-session-tools-v1";
183
197
  declare const WORKER_GITHUB_PUBLICATION_PROTOCOL_FEATURE = "worker-github-publication-v1";
184
- declare const WORKER_PROTOCOL_FEATURES: readonly ["worker-heartbeat-v1", "worker-transcript-commit-v1", "worker-live-event-v1", "worker-execution-context-v2", "worker-session-tools-v1", "worker-github-publication-v1", "worker-inference-v1"];
198
+ declare const WORKER_PORTAL_PROTOCOL_FEATURE = "worker-portal-v1";
199
+ declare const WORKER_PROTOCOL_FEATURES: readonly ["worker-heartbeat-v1", "worker-transcript-commit-v1", "worker-live-event-v1", "worker-execution-context-v2", "worker-session-tools-v1", "worker-github-publication-v1", "worker-portal-v1", "worker-inference-v1"];
185
200
  declare const WORKER_PROTOCOL_MAX_METHOD_LENGTH = 64;
186
201
  declare const WORKER_PROTOCOL_MAX_FEATURES = 64;
187
202
  declare const WORKER_PROTOCOL_MAX_FEATURE_LENGTH = 128;
@@ -384,6 +399,15 @@ declare const WorkerGitHubPublishParamsSchema: Type.TObject<{
384
399
  title: Type.TOptional<Type.TString>;
385
400
  body: Type.TOptional<Type.TString>;
386
401
  }>;
402
+ declare const WorkerPortalParamsSchema: Type.TObject<{
403
+ toolCallId: Type.TString;
404
+ action: Type.TUnion<[Type.TLiteral<"open">, Type.TLiteral<"list">, Type.TLiteral<"close">]>;
405
+ port: Type.TOptional<Type.TInteger>;
406
+ title: Type.TOptional<Type.TString>;
407
+ description: Type.TOptional<Type.TString>;
408
+ path: Type.TOptional<Type.TString>;
409
+ id: Type.TOptional<Type.TString>;
410
+ }>;
387
411
  declare const WorkerSessionToolResultSchema: Type.TObject<{
388
412
  resultJson: Type.TString;
389
413
  }>;
@@ -450,6 +474,27 @@ declare const WorkerGitHubPublishResponseFrameSchema: Type.TUnion<[Type.TObject<
450
474
  retryAfterMs: Type.TOptional<Type.TInteger>;
451
475
  }>;
452
476
  }>]>;
477
+ declare const WorkerPortalResponseFrameSchema: Type.TUnion<[Type.TObject<{
478
+ type: Type.TLiteral<"res">;
479
+ id: Type.TString;
480
+ ok: Type.TLiteral<true>;
481
+ payload: Type.TObject<{
482
+ resultJson: Type.TString;
483
+ }>;
484
+ }>, Type.TObject<{
485
+ type: Type.TLiteral<"res">;
486
+ id: Type.TString;
487
+ ok: Type.TLiteral<false>;
488
+ error: Type.TObject<{
489
+ code: Type.TUnion<[Type.TLiteral<"INVALID_REQUEST">, Type.TLiteral<"UNAVAILABLE">]>;
490
+ message: Type.TString;
491
+ details: Type.TObject<{
492
+ reason: Type.TUnion<[Type.TUnion<[Type.TLiteral<"invalid-credential">, Type.TLiteral<"credential-expired">, Type.TLiteral<"environment-mismatch">, Type.TLiteral<"environment-unavailable">, Type.TLiteral<"bundle-mismatch">, Type.TLiteral<"version-mismatch">, Type.TLiteral<"session-mismatch">, Type.TLiteral<"placement-mismatch">, Type.TLiteral<"owner-epoch-mismatch">, Type.TLiteral<"rpc-set-mismatch">, Type.TLiteral<"protocol-features-mismatch">]>, Type.TLiteral<"admission-rejected">, Type.TLiteral<"invalid-handshake">, Type.TLiteral<"protocol-mismatch">, Type.TLiteral<"gateway-unavailable">, Type.TLiteral<"invalid-frame">, Type.TLiteral<"slow-consumer">, Type.TLiteral<"method-not-allowed">, Type.TLiteral<"invalid-heartbeat">, Type.TLiteral<"credential-replaced">, Type.TLiteral<"gateway-shutdown">]>;
493
+ }>;
494
+ retryable: Type.TOptional<Type.TBoolean>;
495
+ retryAfterMs: Type.TOptional<Type.TInteger>;
496
+ }>;
497
+ }>]>;
453
498
  declare const WorkerProviderReplayStateSchema: Type.TObject<{
454
499
  v: Type.TLiteral<1>;
455
500
  type: Type.TString;
@@ -1073,10 +1118,12 @@ type WorkerHeartbeatResponseFrame = Static<typeof WorkerHeartbeatResponseFrameSc
1073
1118
  type WorkerSessionsSpawnParams = Static<typeof WorkerSessionsSpawnParamsSchema>;
1074
1119
  type WorkerSessionsSendParams = Static<typeof WorkerSessionsSendParamsSchema>;
1075
1120
  type WorkerGitHubPublishParams = Static<typeof WorkerGitHubPublishParamsSchema>;
1121
+ type WorkerPortalParams = Static<typeof WorkerPortalParamsSchema>;
1076
1122
  type WorkerSessionToolResult = Static<typeof WorkerSessionToolResultSchema>;
1077
1123
  type WorkerSessionsSpawnResponseFrame = Static<typeof WorkerSessionsSpawnResponseFrameSchema>;
1078
1124
  type WorkerSessionsSendResponseFrame = Static<typeof WorkerSessionsSendResponseFrameSchema>;
1079
1125
  type WorkerGitHubPublishResponseFrame = Static<typeof WorkerGitHubPublishResponseFrameSchema>;
1126
+ type WorkerPortalResponseFrame = Static<typeof WorkerPortalResponseFrameSchema>;
1080
1127
  type WorkerTranscriptMessage = Static<typeof WorkerTranscriptMessageSchema>;
1081
1128
  type WorkerProviderReplayState = Static<typeof WorkerProviderReplayStateSchema>;
1082
1129
  type WorkerTranscriptCommitParams = Static<typeof WorkerTranscriptCommitParamsSchema>;
@@ -1096,10 +1143,15 @@ type WorkerLiveEventResponseFrame = Static<typeof WorkerLiveEventResponseFrameSc
1096
1143
  //#region src/validation-errors.d.ts
1097
1144
  /** Normalized validation error shape exposed by every protocol validator. */
1098
1145
  type ValidationError = {
1099
- /** Failed schema keyword, when the validator can report one. */keyword?: string; /** JSON-pointer path to the failing data location. */
1100
- instancePath?: string; /** JSON-pointer path to the failing schema location. */
1101
- schemaPath?: string; /** Validator-specific keyword parameters for richer diagnostics. */
1102
- params?: Record<string, unknown>; /** Human-readable validation message. */
1146
+ /** Failed schema keyword, when the validator can report one. */
1147
+ keyword?: string;
1148
+ /** JSON-pointer path to the failing data location. */
1149
+ instancePath?: string;
1150
+ /** JSON-pointer path to the failing schema location. */
1151
+ schemaPath?: string;
1152
+ /** Validator-specific keyword parameters for richer diagnostics. */
1153
+ params?: Record<string, unknown>;
1154
+ /** Human-readable validation message. */
1103
1155
  message?: string;
1104
1156
  };
1105
1157
  /** Convert validator errors into compact operator-facing failure text. */
@@ -1108,7 +1160,8 @@ declare function formatValidationErrors(errors: ValidationError[] | null | undef
1108
1160
  //#region src/protocol-validator.d.ts
1109
1161
  /** Runtime validator shape shared by gateway clients and server handlers. */
1110
1162
  type ProtocolValidator<T = unknown> = ((data: unknown) => data is T) & {
1111
- errors: ValidationError[] | null; /** Original schema used by the validator, exposed for diagnostics/tests. */
1163
+ errors: ValidationError[] | null;
1164
+ /** Original schema used by the validator, exposed for diagnostics/tests. */
1112
1165
  schema: unknown;
1113
1166
  };
1114
1167
  //#endregion
@@ -1135,6 +1188,47 @@ declare const ApprovalExpiredReasonSchema: Type.TUnion<[Type.TLiteral<"timeout">
1135
1188
  declare const ApprovalCancelledReasonSchema: Type.TUnion<[Type.TLiteral<"run-aborted">, Type.TLiteral<"gateway-restart">]>;
1136
1189
  /** Reviewer-facing severity for plugin-owned approval requests. */
1137
1190
  declare const PluginApprovalSeveritySchema: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
1191
+ /** Message/email delivery blast radius declared by the approval owner. */
1192
+ declare const MessageSendApprovalScopeSchema: Type.TObject<{
1193
+ kind: Type.TLiteral<"message-send">;
1194
+ target: Type.TString;
1195
+ recipientCount: Type.TInteger;
1196
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1197
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1198
+ }>;
1199
+ /** Payment blast radius declared by the approval owner. */
1200
+ declare const PaymentApprovalScopeSchema: Type.TObject<{
1201
+ kind: Type.TLiteral<"payment">;
1202
+ amount: Type.TString;
1203
+ currency: Type.TString;
1204
+ target: Type.TString;
1205
+ }>;
1206
+ /** External publication blast radius declared by the approval owner. */
1207
+ declare const ExternalPostApprovalScopeSchema: Type.TObject<{
1208
+ kind: Type.TLiteral<"external-post">;
1209
+ target: Type.TString;
1210
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1211
+ }>;
1212
+ /**
1213
+ * Owner-declared blast-radius facts for a pending approval. Variants are
1214
+ * named schemas so native protocol generators emit the discriminated union.
1215
+ */
1216
+ declare const ApprovalScopeSchema: Type.TUnion<[Type.TObject<{
1217
+ kind: Type.TLiteral<"message-send">;
1218
+ target: Type.TString;
1219
+ recipientCount: Type.TInteger;
1220
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1221
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1222
+ }>, Type.TObject<{
1223
+ kind: Type.TLiteral<"payment">;
1224
+ amount: Type.TString;
1225
+ currency: Type.TString;
1226
+ target: Type.TString;
1227
+ }>, Type.TObject<{
1228
+ kind: Type.TLiteral<"external-post">;
1229
+ target: Type.TString;
1230
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1231
+ }>]>;
1138
1232
  /** Redacted exec details safe to persist and render outside the requesting runtime. */
1139
1233
  declare const ExecApprovalPresentationSchema: Type.TObject<{
1140
1234
  kind: Type.TLiteral<"exec">;
@@ -1144,6 +1238,22 @@ declare const ExecApprovalPresentationSchema: Type.TObject<{
1144
1238
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1145
1239
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1146
1240
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1241
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1242
+ kind: Type.TLiteral<"message-send">;
1243
+ target: Type.TString;
1244
+ recipientCount: Type.TInteger;
1245
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1246
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1247
+ }>, Type.TObject<{
1248
+ kind: Type.TLiteral<"payment">;
1249
+ amount: Type.TString;
1250
+ currency: Type.TString;
1251
+ target: Type.TString;
1252
+ }>, Type.TObject<{
1253
+ kind: Type.TLiteral<"external-post">;
1254
+ target: Type.TString;
1255
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1256
+ }>]>>;
1147
1257
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1148
1258
  }>;
1149
1259
  /** Plugin-supplied reviewer text safe to persist and render across surfaces. */
@@ -1156,6 +1266,22 @@ declare const PluginApprovalPresentationSchema: Type.TObject<{
1156
1266
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1157
1267
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1158
1268
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1269
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1270
+ kind: Type.TLiteral<"message-send">;
1271
+ target: Type.TString;
1272
+ recipientCount: Type.TInteger;
1273
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1274
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1275
+ }>, Type.TObject<{
1276
+ kind: Type.TLiteral<"payment">;
1277
+ amount: Type.TString;
1278
+ currency: Type.TString;
1279
+ target: Type.TString;
1280
+ }>, Type.TObject<{
1281
+ kind: Type.TLiteral<"external-post">;
1282
+ target: Type.TString;
1283
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1284
+ }>]>>;
1159
1285
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1160
1286
  }>;
1161
1287
  /** Reviewer-safe OpenClaw system change. Exact operation stays host-local. */
@@ -1176,6 +1302,22 @@ declare const ApprovalPresentationSchema: Type.TUnion<[Type.TObject<{
1176
1302
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1177
1303
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1178
1304
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1305
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1306
+ kind: Type.TLiteral<"message-send">;
1307
+ target: Type.TString;
1308
+ recipientCount: Type.TInteger;
1309
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1310
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1311
+ }>, Type.TObject<{
1312
+ kind: Type.TLiteral<"payment">;
1313
+ amount: Type.TString;
1314
+ currency: Type.TString;
1315
+ target: Type.TString;
1316
+ }>, Type.TObject<{
1317
+ kind: Type.TLiteral<"external-post">;
1318
+ target: Type.TString;
1319
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1320
+ }>]>>;
1179
1321
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1180
1322
  }>, Type.TObject<{
1181
1323
  kind: Type.TLiteral<"plugin">;
@@ -1186,6 +1328,22 @@ declare const ApprovalPresentationSchema: Type.TUnion<[Type.TObject<{
1186
1328
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1187
1329
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1188
1330
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1331
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1332
+ kind: Type.TLiteral<"message-send">;
1333
+ target: Type.TString;
1334
+ recipientCount: Type.TInteger;
1335
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1336
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1337
+ }>, Type.TObject<{
1338
+ kind: Type.TLiteral<"payment">;
1339
+ amount: Type.TString;
1340
+ currency: Type.TString;
1341
+ target: Type.TString;
1342
+ }>, Type.TObject<{
1343
+ kind: Type.TLiteral<"external-post">;
1344
+ target: Type.TString;
1345
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1346
+ }>]>>;
1189
1347
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1190
1348
  }>, Type.TObject<{
1191
1349
  kind: Type.TLiteral<"system-agent">;
@@ -1210,6 +1368,22 @@ declare const PendingApprovalSnapshotSchema: Type.TObject<{
1210
1368
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1211
1369
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1212
1370
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1371
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1372
+ kind: Type.TLiteral<"message-send">;
1373
+ target: Type.TString;
1374
+ recipientCount: Type.TInteger;
1375
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1376
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1377
+ }>, Type.TObject<{
1378
+ kind: Type.TLiteral<"payment">;
1379
+ amount: Type.TString;
1380
+ currency: Type.TString;
1381
+ target: Type.TString;
1382
+ }>, Type.TObject<{
1383
+ kind: Type.TLiteral<"external-post">;
1384
+ target: Type.TString;
1385
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1386
+ }>]>>;
1213
1387
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1214
1388
  }>, Type.TObject<{
1215
1389
  kind: Type.TLiteral<"plugin">;
@@ -1220,6 +1394,22 @@ declare const PendingApprovalSnapshotSchema: Type.TObject<{
1220
1394
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1221
1395
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1222
1396
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1397
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1398
+ kind: Type.TLiteral<"message-send">;
1399
+ target: Type.TString;
1400
+ recipientCount: Type.TInteger;
1401
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1402
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1403
+ }>, Type.TObject<{
1404
+ kind: Type.TLiteral<"payment">;
1405
+ amount: Type.TString;
1406
+ currency: Type.TString;
1407
+ target: Type.TString;
1408
+ }>, Type.TObject<{
1409
+ kind: Type.TLiteral<"external-post">;
1410
+ target: Type.TString;
1411
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1412
+ }>]>>;
1223
1413
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1224
1414
  }>, Type.TObject<{
1225
1415
  kind: Type.TLiteral<"system-agent">;
@@ -1256,6 +1446,22 @@ declare const AllowedApprovalSnapshotSchema: Type.TObject<{
1256
1446
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1257
1447
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1258
1448
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1449
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1450
+ kind: Type.TLiteral<"message-send">;
1451
+ target: Type.TString;
1452
+ recipientCount: Type.TInteger;
1453
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1454
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1455
+ }>, Type.TObject<{
1456
+ kind: Type.TLiteral<"payment">;
1457
+ amount: Type.TString;
1458
+ currency: Type.TString;
1459
+ target: Type.TString;
1460
+ }>, Type.TObject<{
1461
+ kind: Type.TLiteral<"external-post">;
1462
+ target: Type.TString;
1463
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1464
+ }>]>>;
1259
1465
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1260
1466
  }>, Type.TObject<{
1261
1467
  kind: Type.TLiteral<"plugin">;
@@ -1266,6 +1472,22 @@ declare const AllowedApprovalSnapshotSchema: Type.TObject<{
1266
1472
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1267
1473
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1268
1474
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1475
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1476
+ kind: Type.TLiteral<"message-send">;
1477
+ target: Type.TString;
1478
+ recipientCount: Type.TInteger;
1479
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1480
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1481
+ }>, Type.TObject<{
1482
+ kind: Type.TLiteral<"payment">;
1483
+ amount: Type.TString;
1484
+ currency: Type.TString;
1485
+ target: Type.TString;
1486
+ }>, Type.TObject<{
1487
+ kind: Type.TLiteral<"external-post">;
1488
+ target: Type.TString;
1489
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1490
+ }>]>>;
1269
1491
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1270
1492
  }>, Type.TObject<{
1271
1493
  kind: Type.TLiteral<"system-agent">;
@@ -1302,6 +1524,22 @@ declare const DeniedApprovalSnapshotSchema: Type.TObject<{
1302
1524
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1303
1525
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1304
1526
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1527
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1528
+ kind: Type.TLiteral<"message-send">;
1529
+ target: Type.TString;
1530
+ recipientCount: Type.TInteger;
1531
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1532
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1533
+ }>, Type.TObject<{
1534
+ kind: Type.TLiteral<"payment">;
1535
+ amount: Type.TString;
1536
+ currency: Type.TString;
1537
+ target: Type.TString;
1538
+ }>, Type.TObject<{
1539
+ kind: Type.TLiteral<"external-post">;
1540
+ target: Type.TString;
1541
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1542
+ }>]>>;
1305
1543
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1306
1544
  }>, Type.TObject<{
1307
1545
  kind: Type.TLiteral<"plugin">;
@@ -1312,6 +1550,22 @@ declare const DeniedApprovalSnapshotSchema: Type.TObject<{
1312
1550
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1313
1551
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1314
1552
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1553
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1554
+ kind: Type.TLiteral<"message-send">;
1555
+ target: Type.TString;
1556
+ recipientCount: Type.TInteger;
1557
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1558
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1559
+ }>, Type.TObject<{
1560
+ kind: Type.TLiteral<"payment">;
1561
+ amount: Type.TString;
1562
+ currency: Type.TString;
1563
+ target: Type.TString;
1564
+ }>, Type.TObject<{
1565
+ kind: Type.TLiteral<"external-post">;
1566
+ target: Type.TString;
1567
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1568
+ }>]>>;
1315
1569
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1316
1570
  }>, Type.TObject<{
1317
1571
  kind: Type.TLiteral<"system-agent">;
@@ -1347,6 +1601,22 @@ declare const ExpiredApprovalSnapshotSchema: Type.TObject<{
1347
1601
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1348
1602
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1349
1603
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1604
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1605
+ kind: Type.TLiteral<"message-send">;
1606
+ target: Type.TString;
1607
+ recipientCount: Type.TInteger;
1608
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1609
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1610
+ }>, Type.TObject<{
1611
+ kind: Type.TLiteral<"payment">;
1612
+ amount: Type.TString;
1613
+ currency: Type.TString;
1614
+ target: Type.TString;
1615
+ }>, Type.TObject<{
1616
+ kind: Type.TLiteral<"external-post">;
1617
+ target: Type.TString;
1618
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1619
+ }>]>>;
1350
1620
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1351
1621
  }>, Type.TObject<{
1352
1622
  kind: Type.TLiteral<"plugin">;
@@ -1357,6 +1627,22 @@ declare const ExpiredApprovalSnapshotSchema: Type.TObject<{
1357
1627
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1358
1628
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1359
1629
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1630
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1631
+ kind: Type.TLiteral<"message-send">;
1632
+ target: Type.TString;
1633
+ recipientCount: Type.TInteger;
1634
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1635
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1636
+ }>, Type.TObject<{
1637
+ kind: Type.TLiteral<"payment">;
1638
+ amount: Type.TString;
1639
+ currency: Type.TString;
1640
+ target: Type.TString;
1641
+ }>, Type.TObject<{
1642
+ kind: Type.TLiteral<"external-post">;
1643
+ target: Type.TString;
1644
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1645
+ }>]>>;
1360
1646
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1361
1647
  }>, Type.TObject<{
1362
1648
  kind: Type.TLiteral<"system-agent">;
@@ -1392,6 +1678,22 @@ declare const CancelledApprovalSnapshotSchema: Type.TObject<{
1392
1678
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1393
1679
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1394
1680
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1681
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1682
+ kind: Type.TLiteral<"message-send">;
1683
+ target: Type.TString;
1684
+ recipientCount: Type.TInteger;
1685
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1686
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1687
+ }>, Type.TObject<{
1688
+ kind: Type.TLiteral<"payment">;
1689
+ amount: Type.TString;
1690
+ currency: Type.TString;
1691
+ target: Type.TString;
1692
+ }>, Type.TObject<{
1693
+ kind: Type.TLiteral<"external-post">;
1694
+ target: Type.TString;
1695
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1696
+ }>]>>;
1395
1697
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1396
1698
  }>, Type.TObject<{
1397
1699
  kind: Type.TLiteral<"plugin">;
@@ -1402,6 +1704,22 @@ declare const CancelledApprovalSnapshotSchema: Type.TObject<{
1402
1704
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1403
1705
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1404
1706
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1707
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1708
+ kind: Type.TLiteral<"message-send">;
1709
+ target: Type.TString;
1710
+ recipientCount: Type.TInteger;
1711
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1712
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1713
+ }>, Type.TObject<{
1714
+ kind: Type.TLiteral<"payment">;
1715
+ amount: Type.TString;
1716
+ currency: Type.TString;
1717
+ target: Type.TString;
1718
+ }>, Type.TObject<{
1719
+ kind: Type.TLiteral<"external-post">;
1720
+ target: Type.TString;
1721
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1722
+ }>]>>;
1405
1723
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1406
1724
  }>, Type.TObject<{
1407
1725
  kind: Type.TLiteral<"system-agent">;
@@ -1427,6 +1745,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1427
1745
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1428
1746
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1429
1747
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1748
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1749
+ kind: Type.TLiteral<"message-send">;
1750
+ target: Type.TString;
1751
+ recipientCount: Type.TInteger;
1752
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1753
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1754
+ }>, Type.TObject<{
1755
+ kind: Type.TLiteral<"payment">;
1756
+ amount: Type.TString;
1757
+ currency: Type.TString;
1758
+ target: Type.TString;
1759
+ }>, Type.TObject<{
1760
+ kind: Type.TLiteral<"external-post">;
1761
+ target: Type.TString;
1762
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1763
+ }>]>>;
1430
1764
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1431
1765
  }>, Type.TObject<{
1432
1766
  kind: Type.TLiteral<"plugin">;
@@ -1437,6 +1771,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1437
1771
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1438
1772
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1439
1773
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1774
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1775
+ kind: Type.TLiteral<"message-send">;
1776
+ target: Type.TString;
1777
+ recipientCount: Type.TInteger;
1778
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1779
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1780
+ }>, Type.TObject<{
1781
+ kind: Type.TLiteral<"payment">;
1782
+ amount: Type.TString;
1783
+ currency: Type.TString;
1784
+ target: Type.TString;
1785
+ }>, Type.TObject<{
1786
+ kind: Type.TLiteral<"external-post">;
1787
+ target: Type.TString;
1788
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1789
+ }>]>>;
1440
1790
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1441
1791
  }>, Type.TObject<{
1442
1792
  kind: Type.TLiteral<"system-agent">;
@@ -1471,6 +1821,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1471
1821
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1472
1822
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1473
1823
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1824
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1825
+ kind: Type.TLiteral<"message-send">;
1826
+ target: Type.TString;
1827
+ recipientCount: Type.TInteger;
1828
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1829
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1830
+ }>, Type.TObject<{
1831
+ kind: Type.TLiteral<"payment">;
1832
+ amount: Type.TString;
1833
+ currency: Type.TString;
1834
+ target: Type.TString;
1835
+ }>, Type.TObject<{
1836
+ kind: Type.TLiteral<"external-post">;
1837
+ target: Type.TString;
1838
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1839
+ }>]>>;
1474
1840
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1475
1841
  }>, Type.TObject<{
1476
1842
  kind: Type.TLiteral<"plugin">;
@@ -1481,6 +1847,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1481
1847
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1482
1848
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1483
1849
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1850
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1851
+ kind: Type.TLiteral<"message-send">;
1852
+ target: Type.TString;
1853
+ recipientCount: Type.TInteger;
1854
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1855
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1856
+ }>, Type.TObject<{
1857
+ kind: Type.TLiteral<"payment">;
1858
+ amount: Type.TString;
1859
+ currency: Type.TString;
1860
+ target: Type.TString;
1861
+ }>, Type.TObject<{
1862
+ kind: Type.TLiteral<"external-post">;
1863
+ target: Type.TString;
1864
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1865
+ }>]>>;
1484
1866
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1485
1867
  }>, Type.TObject<{
1486
1868
  kind: Type.TLiteral<"system-agent">;
@@ -1515,6 +1897,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1515
1897
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1516
1898
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1517
1899
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1900
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1901
+ kind: Type.TLiteral<"message-send">;
1902
+ target: Type.TString;
1903
+ recipientCount: Type.TInteger;
1904
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1905
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1906
+ }>, Type.TObject<{
1907
+ kind: Type.TLiteral<"payment">;
1908
+ amount: Type.TString;
1909
+ currency: Type.TString;
1910
+ target: Type.TString;
1911
+ }>, Type.TObject<{
1912
+ kind: Type.TLiteral<"external-post">;
1913
+ target: Type.TString;
1914
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1915
+ }>]>>;
1518
1916
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1519
1917
  }>, Type.TObject<{
1520
1918
  kind: Type.TLiteral<"plugin">;
@@ -1525,6 +1923,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1525
1923
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1526
1924
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1527
1925
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1926
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1927
+ kind: Type.TLiteral<"message-send">;
1928
+ target: Type.TString;
1929
+ recipientCount: Type.TInteger;
1930
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1931
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1932
+ }>, Type.TObject<{
1933
+ kind: Type.TLiteral<"payment">;
1934
+ amount: Type.TString;
1935
+ currency: Type.TString;
1936
+ target: Type.TString;
1937
+ }>, Type.TObject<{
1938
+ kind: Type.TLiteral<"external-post">;
1939
+ target: Type.TString;
1940
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1941
+ }>]>>;
1528
1942
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1529
1943
  }>, Type.TObject<{
1530
1944
  kind: Type.TLiteral<"system-agent">;
@@ -1558,6 +1972,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1558
1972
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1559
1973
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1560
1974
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1975
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
1976
+ kind: Type.TLiteral<"message-send">;
1977
+ target: Type.TString;
1978
+ recipientCount: Type.TInteger;
1979
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
1980
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
1981
+ }>, Type.TObject<{
1982
+ kind: Type.TLiteral<"payment">;
1983
+ amount: Type.TString;
1984
+ currency: Type.TString;
1985
+ target: Type.TString;
1986
+ }>, Type.TObject<{
1987
+ kind: Type.TLiteral<"external-post">;
1988
+ target: Type.TString;
1989
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
1990
+ }>]>>;
1561
1991
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1562
1992
  }>, Type.TObject<{
1563
1993
  kind: Type.TLiteral<"plugin">;
@@ -1568,6 +1998,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1568
1998
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1569
1999
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1570
2000
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2001
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2002
+ kind: Type.TLiteral<"message-send">;
2003
+ target: Type.TString;
2004
+ recipientCount: Type.TInteger;
2005
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2006
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2007
+ }>, Type.TObject<{
2008
+ kind: Type.TLiteral<"payment">;
2009
+ amount: Type.TString;
2010
+ currency: Type.TString;
2011
+ target: Type.TString;
2012
+ }>, Type.TObject<{
2013
+ kind: Type.TLiteral<"external-post">;
2014
+ target: Type.TString;
2015
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2016
+ }>]>>;
1571
2017
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1572
2018
  }>, Type.TObject<{
1573
2019
  kind: Type.TLiteral<"system-agent">;
@@ -1601,6 +2047,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1601
2047
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1602
2048
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1603
2049
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2050
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2051
+ kind: Type.TLiteral<"message-send">;
2052
+ target: Type.TString;
2053
+ recipientCount: Type.TInteger;
2054
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2055
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2056
+ }>, Type.TObject<{
2057
+ kind: Type.TLiteral<"payment">;
2058
+ amount: Type.TString;
2059
+ currency: Type.TString;
2060
+ target: Type.TString;
2061
+ }>, Type.TObject<{
2062
+ kind: Type.TLiteral<"external-post">;
2063
+ target: Type.TString;
2064
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2065
+ }>]>>;
1604
2066
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1605
2067
  }>, Type.TObject<{
1606
2068
  kind: Type.TLiteral<"plugin">;
@@ -1611,6 +2073,22 @@ declare const ApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1611
2073
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1612
2074
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1613
2075
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2076
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2077
+ kind: Type.TLiteral<"message-send">;
2078
+ target: Type.TString;
2079
+ recipientCount: Type.TInteger;
2080
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2081
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2082
+ }>, Type.TObject<{
2083
+ kind: Type.TLiteral<"payment">;
2084
+ amount: Type.TString;
2085
+ currency: Type.TString;
2086
+ target: Type.TString;
2087
+ }>, Type.TObject<{
2088
+ kind: Type.TLiteral<"external-post">;
2089
+ target: Type.TString;
2090
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2091
+ }>]>>;
1614
2092
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1615
2093
  }>, Type.TObject<{
1616
2094
  kind: Type.TLiteral<"system-agent">;
@@ -1647,6 +2125,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1647
2125
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1648
2126
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1649
2127
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2128
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2129
+ kind: Type.TLiteral<"message-send">;
2130
+ target: Type.TString;
2131
+ recipientCount: Type.TInteger;
2132
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2133
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2134
+ }>, Type.TObject<{
2135
+ kind: Type.TLiteral<"payment">;
2136
+ amount: Type.TString;
2137
+ currency: Type.TString;
2138
+ target: Type.TString;
2139
+ }>, Type.TObject<{
2140
+ kind: Type.TLiteral<"external-post">;
2141
+ target: Type.TString;
2142
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2143
+ }>]>>;
1650
2144
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1651
2145
  }>, Type.TObject<{
1652
2146
  kind: Type.TLiteral<"plugin">;
@@ -1657,6 +2151,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1657
2151
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1658
2152
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1659
2153
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2154
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2155
+ kind: Type.TLiteral<"message-send">;
2156
+ target: Type.TString;
2157
+ recipientCount: Type.TInteger;
2158
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2159
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2160
+ }>, Type.TObject<{
2161
+ kind: Type.TLiteral<"payment">;
2162
+ amount: Type.TString;
2163
+ currency: Type.TString;
2164
+ target: Type.TString;
2165
+ }>, Type.TObject<{
2166
+ kind: Type.TLiteral<"external-post">;
2167
+ target: Type.TString;
2168
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2169
+ }>]>>;
1660
2170
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1661
2171
  }>, Type.TObject<{
1662
2172
  kind: Type.TLiteral<"system-agent">;
@@ -1691,6 +2201,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1691
2201
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1692
2202
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1693
2203
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2204
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2205
+ kind: Type.TLiteral<"message-send">;
2206
+ target: Type.TString;
2207
+ recipientCount: Type.TInteger;
2208
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2209
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2210
+ }>, Type.TObject<{
2211
+ kind: Type.TLiteral<"payment">;
2212
+ amount: Type.TString;
2213
+ currency: Type.TString;
2214
+ target: Type.TString;
2215
+ }>, Type.TObject<{
2216
+ kind: Type.TLiteral<"external-post">;
2217
+ target: Type.TString;
2218
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2219
+ }>]>>;
1694
2220
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1695
2221
  }>, Type.TObject<{
1696
2222
  kind: Type.TLiteral<"plugin">;
@@ -1701,6 +2227,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1701
2227
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1702
2228
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1703
2229
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2230
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2231
+ kind: Type.TLiteral<"message-send">;
2232
+ target: Type.TString;
2233
+ recipientCount: Type.TInteger;
2234
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2235
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2236
+ }>, Type.TObject<{
2237
+ kind: Type.TLiteral<"payment">;
2238
+ amount: Type.TString;
2239
+ currency: Type.TString;
2240
+ target: Type.TString;
2241
+ }>, Type.TObject<{
2242
+ kind: Type.TLiteral<"external-post">;
2243
+ target: Type.TString;
2244
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2245
+ }>]>>;
1704
2246
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1705
2247
  }>, Type.TObject<{
1706
2248
  kind: Type.TLiteral<"system-agent">;
@@ -1734,6 +2276,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1734
2276
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1735
2277
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1736
2278
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2279
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2280
+ kind: Type.TLiteral<"message-send">;
2281
+ target: Type.TString;
2282
+ recipientCount: Type.TInteger;
2283
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2284
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2285
+ }>, Type.TObject<{
2286
+ kind: Type.TLiteral<"payment">;
2287
+ amount: Type.TString;
2288
+ currency: Type.TString;
2289
+ target: Type.TString;
2290
+ }>, Type.TObject<{
2291
+ kind: Type.TLiteral<"external-post">;
2292
+ target: Type.TString;
2293
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2294
+ }>]>>;
1737
2295
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1738
2296
  }>, Type.TObject<{
1739
2297
  kind: Type.TLiteral<"plugin">;
@@ -1744,6 +2302,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1744
2302
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1745
2303
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1746
2304
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2305
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2306
+ kind: Type.TLiteral<"message-send">;
2307
+ target: Type.TString;
2308
+ recipientCount: Type.TInteger;
2309
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2310
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2311
+ }>, Type.TObject<{
2312
+ kind: Type.TLiteral<"payment">;
2313
+ amount: Type.TString;
2314
+ currency: Type.TString;
2315
+ target: Type.TString;
2316
+ }>, Type.TObject<{
2317
+ kind: Type.TLiteral<"external-post">;
2318
+ target: Type.TString;
2319
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2320
+ }>]>>;
1747
2321
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1748
2322
  }>, Type.TObject<{
1749
2323
  kind: Type.TLiteral<"system-agent">;
@@ -1777,6 +2351,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1777
2351
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1778
2352
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1779
2353
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2354
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2355
+ kind: Type.TLiteral<"message-send">;
2356
+ target: Type.TString;
2357
+ recipientCount: Type.TInteger;
2358
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2359
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2360
+ }>, Type.TObject<{
2361
+ kind: Type.TLiteral<"payment">;
2362
+ amount: Type.TString;
2363
+ currency: Type.TString;
2364
+ target: Type.TString;
2365
+ }>, Type.TObject<{
2366
+ kind: Type.TLiteral<"external-post">;
2367
+ target: Type.TString;
2368
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2369
+ }>]>>;
1780
2370
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1781
2371
  }>, Type.TObject<{
1782
2372
  kind: Type.TLiteral<"plugin">;
@@ -1787,6 +2377,22 @@ declare const TerminalApprovalSnapshotSchema: Type.TUnion<[Type.TObject<{
1787
2377
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1788
2378
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1789
2379
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2380
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2381
+ kind: Type.TLiteral<"message-send">;
2382
+ target: Type.TString;
2383
+ recipientCount: Type.TInteger;
2384
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2385
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2386
+ }>, Type.TObject<{
2387
+ kind: Type.TLiteral<"payment">;
2388
+ amount: Type.TString;
2389
+ currency: Type.TString;
2390
+ target: Type.TString;
2391
+ }>, Type.TObject<{
2392
+ kind: Type.TLiteral<"external-post">;
2393
+ target: Type.TString;
2394
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2395
+ }>]>>;
1790
2396
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1791
2397
  }>, Type.TObject<{
1792
2398
  kind: Type.TLiteral<"system-agent">;
@@ -1817,6 +2423,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1817
2423
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1818
2424
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1819
2425
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2426
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2427
+ kind: Type.TLiteral<"message-send">;
2428
+ target: Type.TString;
2429
+ recipientCount: Type.TInteger;
2430
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2431
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2432
+ }>, Type.TObject<{
2433
+ kind: Type.TLiteral<"payment">;
2434
+ amount: Type.TString;
2435
+ currency: Type.TString;
2436
+ target: Type.TString;
2437
+ }>, Type.TObject<{
2438
+ kind: Type.TLiteral<"external-post">;
2439
+ target: Type.TString;
2440
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2441
+ }>]>>;
1820
2442
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1821
2443
  }>, Type.TObject<{
1822
2444
  kind: Type.TLiteral<"plugin">;
@@ -1827,6 +2449,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1827
2449
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1828
2450
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1829
2451
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2452
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2453
+ kind: Type.TLiteral<"message-send">;
2454
+ target: Type.TString;
2455
+ recipientCount: Type.TInteger;
2456
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2457
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2458
+ }>, Type.TObject<{
2459
+ kind: Type.TLiteral<"payment">;
2460
+ amount: Type.TString;
2461
+ currency: Type.TString;
2462
+ target: Type.TString;
2463
+ }>, Type.TObject<{
2464
+ kind: Type.TLiteral<"external-post">;
2465
+ target: Type.TString;
2466
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2467
+ }>]>>;
1830
2468
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1831
2469
  }>, Type.TObject<{
1832
2470
  kind: Type.TLiteral<"system-agent">;
@@ -1861,6 +2499,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1861
2499
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1862
2500
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1863
2501
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2502
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2503
+ kind: Type.TLiteral<"message-send">;
2504
+ target: Type.TString;
2505
+ recipientCount: Type.TInteger;
2506
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2507
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2508
+ }>, Type.TObject<{
2509
+ kind: Type.TLiteral<"payment">;
2510
+ amount: Type.TString;
2511
+ currency: Type.TString;
2512
+ target: Type.TString;
2513
+ }>, Type.TObject<{
2514
+ kind: Type.TLiteral<"external-post">;
2515
+ target: Type.TString;
2516
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2517
+ }>]>>;
1864
2518
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1865
2519
  }>, Type.TObject<{
1866
2520
  kind: Type.TLiteral<"plugin">;
@@ -1871,6 +2525,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1871
2525
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1872
2526
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1873
2527
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2528
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2529
+ kind: Type.TLiteral<"message-send">;
2530
+ target: Type.TString;
2531
+ recipientCount: Type.TInteger;
2532
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2533
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2534
+ }>, Type.TObject<{
2535
+ kind: Type.TLiteral<"payment">;
2536
+ amount: Type.TString;
2537
+ currency: Type.TString;
2538
+ target: Type.TString;
2539
+ }>, Type.TObject<{
2540
+ kind: Type.TLiteral<"external-post">;
2541
+ target: Type.TString;
2542
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2543
+ }>]>>;
1874
2544
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1875
2545
  }>, Type.TObject<{
1876
2546
  kind: Type.TLiteral<"system-agent">;
@@ -1905,6 +2575,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1905
2575
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1906
2576
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1907
2577
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2578
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2579
+ kind: Type.TLiteral<"message-send">;
2580
+ target: Type.TString;
2581
+ recipientCount: Type.TInteger;
2582
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2583
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2584
+ }>, Type.TObject<{
2585
+ kind: Type.TLiteral<"payment">;
2586
+ amount: Type.TString;
2587
+ currency: Type.TString;
2588
+ target: Type.TString;
2589
+ }>, Type.TObject<{
2590
+ kind: Type.TLiteral<"external-post">;
2591
+ target: Type.TString;
2592
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2593
+ }>]>>;
1908
2594
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1909
2595
  }>, Type.TObject<{
1910
2596
  kind: Type.TLiteral<"plugin">;
@@ -1915,6 +2601,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1915
2601
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1916
2602
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1917
2603
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2604
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2605
+ kind: Type.TLiteral<"message-send">;
2606
+ target: Type.TString;
2607
+ recipientCount: Type.TInteger;
2608
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2609
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2610
+ }>, Type.TObject<{
2611
+ kind: Type.TLiteral<"payment">;
2612
+ amount: Type.TString;
2613
+ currency: Type.TString;
2614
+ target: Type.TString;
2615
+ }>, Type.TObject<{
2616
+ kind: Type.TLiteral<"external-post">;
2617
+ target: Type.TString;
2618
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2619
+ }>]>>;
1918
2620
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1919
2621
  }>, Type.TObject<{
1920
2622
  kind: Type.TLiteral<"system-agent">;
@@ -1948,6 +2650,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1948
2650
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1949
2651
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1950
2652
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2653
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2654
+ kind: Type.TLiteral<"message-send">;
2655
+ target: Type.TString;
2656
+ recipientCount: Type.TInteger;
2657
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2658
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2659
+ }>, Type.TObject<{
2660
+ kind: Type.TLiteral<"payment">;
2661
+ amount: Type.TString;
2662
+ currency: Type.TString;
2663
+ target: Type.TString;
2664
+ }>, Type.TObject<{
2665
+ kind: Type.TLiteral<"external-post">;
2666
+ target: Type.TString;
2667
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2668
+ }>]>>;
1951
2669
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1952
2670
  }>, Type.TObject<{
1953
2671
  kind: Type.TLiteral<"plugin">;
@@ -1958,6 +2676,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1958
2676
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1959
2677
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1960
2678
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2679
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2680
+ kind: Type.TLiteral<"message-send">;
2681
+ target: Type.TString;
2682
+ recipientCount: Type.TInteger;
2683
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2684
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2685
+ }>, Type.TObject<{
2686
+ kind: Type.TLiteral<"payment">;
2687
+ amount: Type.TString;
2688
+ currency: Type.TString;
2689
+ target: Type.TString;
2690
+ }>, Type.TObject<{
2691
+ kind: Type.TLiteral<"external-post">;
2692
+ target: Type.TString;
2693
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2694
+ }>]>>;
1961
2695
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1962
2696
  }>, Type.TObject<{
1963
2697
  kind: Type.TLiteral<"system-agent">;
@@ -1991,6 +2725,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
1991
2725
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1992
2726
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
1993
2727
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2728
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2729
+ kind: Type.TLiteral<"message-send">;
2730
+ target: Type.TString;
2731
+ recipientCount: Type.TInteger;
2732
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2733
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2734
+ }>, Type.TObject<{
2735
+ kind: Type.TLiteral<"payment">;
2736
+ amount: Type.TString;
2737
+ currency: Type.TString;
2738
+ target: Type.TString;
2739
+ }>, Type.TObject<{
2740
+ kind: Type.TLiteral<"external-post">;
2741
+ target: Type.TString;
2742
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2743
+ }>]>>;
1994
2744
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
1995
2745
  }>, Type.TObject<{
1996
2746
  kind: Type.TLiteral<"plugin">;
@@ -2001,6 +2751,22 @@ declare const ApprovalGetResultSchema: Type.TObject<{
2001
2751
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2002
2752
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2003
2753
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2754
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2755
+ kind: Type.TLiteral<"message-send">;
2756
+ target: Type.TString;
2757
+ recipientCount: Type.TInteger;
2758
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2759
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2760
+ }>, Type.TObject<{
2761
+ kind: Type.TLiteral<"payment">;
2762
+ amount: Type.TString;
2763
+ currency: Type.TString;
2764
+ target: Type.TString;
2765
+ }>, Type.TObject<{
2766
+ kind: Type.TLiteral<"external-post">;
2767
+ target: Type.TString;
2768
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2769
+ }>]>>;
2004
2770
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2005
2771
  }>, Type.TObject<{
2006
2772
  kind: Type.TLiteral<"system-agent">;
@@ -2045,6 +2811,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2045
2811
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2046
2812
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2047
2813
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2814
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2815
+ kind: Type.TLiteral<"message-send">;
2816
+ target: Type.TString;
2817
+ recipientCount: Type.TInteger;
2818
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2819
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2820
+ }>, Type.TObject<{
2821
+ kind: Type.TLiteral<"payment">;
2822
+ amount: Type.TString;
2823
+ currency: Type.TString;
2824
+ target: Type.TString;
2825
+ }>, Type.TObject<{
2826
+ kind: Type.TLiteral<"external-post">;
2827
+ target: Type.TString;
2828
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2829
+ }>]>>;
2048
2830
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2049
2831
  }>, Type.TObject<{
2050
2832
  kind: Type.TLiteral<"plugin">;
@@ -2055,6 +2837,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2055
2837
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2056
2838
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2057
2839
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2840
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2841
+ kind: Type.TLiteral<"message-send">;
2842
+ target: Type.TString;
2843
+ recipientCount: Type.TInteger;
2844
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2845
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2846
+ }>, Type.TObject<{
2847
+ kind: Type.TLiteral<"payment">;
2848
+ amount: Type.TString;
2849
+ currency: Type.TString;
2850
+ target: Type.TString;
2851
+ }>, Type.TObject<{
2852
+ kind: Type.TLiteral<"external-post">;
2853
+ target: Type.TString;
2854
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2855
+ }>]>>;
2058
2856
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2059
2857
  }>, Type.TObject<{
2060
2858
  kind: Type.TLiteral<"system-agent">;
@@ -2089,6 +2887,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2089
2887
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2090
2888
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2091
2889
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2890
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2891
+ kind: Type.TLiteral<"message-send">;
2892
+ target: Type.TString;
2893
+ recipientCount: Type.TInteger;
2894
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2895
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2896
+ }>, Type.TObject<{
2897
+ kind: Type.TLiteral<"payment">;
2898
+ amount: Type.TString;
2899
+ currency: Type.TString;
2900
+ target: Type.TString;
2901
+ }>, Type.TObject<{
2902
+ kind: Type.TLiteral<"external-post">;
2903
+ target: Type.TString;
2904
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2905
+ }>]>>;
2092
2906
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2093
2907
  }>, Type.TObject<{
2094
2908
  kind: Type.TLiteral<"plugin">;
@@ -2099,6 +2913,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2099
2913
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2100
2914
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2101
2915
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2916
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2917
+ kind: Type.TLiteral<"message-send">;
2918
+ target: Type.TString;
2919
+ recipientCount: Type.TInteger;
2920
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2921
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2922
+ }>, Type.TObject<{
2923
+ kind: Type.TLiteral<"payment">;
2924
+ amount: Type.TString;
2925
+ currency: Type.TString;
2926
+ target: Type.TString;
2927
+ }>, Type.TObject<{
2928
+ kind: Type.TLiteral<"external-post">;
2929
+ target: Type.TString;
2930
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2931
+ }>]>>;
2102
2932
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2103
2933
  }>, Type.TObject<{
2104
2934
  kind: Type.TLiteral<"system-agent">;
@@ -2132,6 +2962,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2132
2962
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2133
2963
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2134
2964
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2965
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2966
+ kind: Type.TLiteral<"message-send">;
2967
+ target: Type.TString;
2968
+ recipientCount: Type.TInteger;
2969
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2970
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2971
+ }>, Type.TObject<{
2972
+ kind: Type.TLiteral<"payment">;
2973
+ amount: Type.TString;
2974
+ currency: Type.TString;
2975
+ target: Type.TString;
2976
+ }>, Type.TObject<{
2977
+ kind: Type.TLiteral<"external-post">;
2978
+ target: Type.TString;
2979
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
2980
+ }>]>>;
2135
2981
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2136
2982
  }>, Type.TObject<{
2137
2983
  kind: Type.TLiteral<"plugin">;
@@ -2142,6 +2988,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2142
2988
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2143
2989
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2144
2990
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2991
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
2992
+ kind: Type.TLiteral<"message-send">;
2993
+ target: Type.TString;
2994
+ recipientCount: Type.TInteger;
2995
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
2996
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
2997
+ }>, Type.TObject<{
2998
+ kind: Type.TLiteral<"payment">;
2999
+ amount: Type.TString;
3000
+ currency: Type.TString;
3001
+ target: Type.TString;
3002
+ }>, Type.TObject<{
3003
+ kind: Type.TLiteral<"external-post">;
3004
+ target: Type.TString;
3005
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3006
+ }>]>>;
2145
3007
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2146
3008
  }>, Type.TObject<{
2147
3009
  kind: Type.TLiteral<"system-agent">;
@@ -2175,6 +3037,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2175
3037
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2176
3038
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2177
3039
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3040
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3041
+ kind: Type.TLiteral<"message-send">;
3042
+ target: Type.TString;
3043
+ recipientCount: Type.TInteger;
3044
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3045
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3046
+ }>, Type.TObject<{
3047
+ kind: Type.TLiteral<"payment">;
3048
+ amount: Type.TString;
3049
+ currency: Type.TString;
3050
+ target: Type.TString;
3051
+ }>, Type.TObject<{
3052
+ kind: Type.TLiteral<"external-post">;
3053
+ target: Type.TString;
3054
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3055
+ }>]>>;
2178
3056
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2179
3057
  }>, Type.TObject<{
2180
3058
  kind: Type.TLiteral<"plugin">;
@@ -2185,6 +3063,22 @@ declare const ApprovalHistoryResultSchema: Type.TObject<{
2185
3063
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2186
3064
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2187
3065
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3066
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3067
+ kind: Type.TLiteral<"message-send">;
3068
+ target: Type.TString;
3069
+ recipientCount: Type.TInteger;
3070
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3071
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3072
+ }>, Type.TObject<{
3073
+ kind: Type.TLiteral<"payment">;
3074
+ amount: Type.TString;
3075
+ currency: Type.TString;
3076
+ target: Type.TString;
3077
+ }>, Type.TObject<{
3078
+ kind: Type.TLiteral<"external-post">;
3079
+ target: Type.TString;
3080
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3081
+ }>]>>;
2188
3082
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2189
3083
  }>, Type.TObject<{
2190
3084
  kind: Type.TLiteral<"system-agent">;
@@ -2241,6 +3135,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2241
3135
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2242
3136
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2243
3137
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3138
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3139
+ kind: Type.TLiteral<"message-send">;
3140
+ target: Type.TString;
3141
+ recipientCount: Type.TInteger;
3142
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3143
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3144
+ }>, Type.TObject<{
3145
+ kind: Type.TLiteral<"payment">;
3146
+ amount: Type.TString;
3147
+ currency: Type.TString;
3148
+ target: Type.TString;
3149
+ }>, Type.TObject<{
3150
+ kind: Type.TLiteral<"external-post">;
3151
+ target: Type.TString;
3152
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3153
+ }>]>>;
2244
3154
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2245
3155
  }>, Type.TObject<{
2246
3156
  kind: Type.TLiteral<"plugin">;
@@ -2251,6 +3161,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2251
3161
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2252
3162
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2253
3163
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3164
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3165
+ kind: Type.TLiteral<"message-send">;
3166
+ target: Type.TString;
3167
+ recipientCount: Type.TInteger;
3168
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3169
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3170
+ }>, Type.TObject<{
3171
+ kind: Type.TLiteral<"payment">;
3172
+ amount: Type.TString;
3173
+ currency: Type.TString;
3174
+ target: Type.TString;
3175
+ }>, Type.TObject<{
3176
+ kind: Type.TLiteral<"external-post">;
3177
+ target: Type.TString;
3178
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3179
+ }>]>>;
2254
3180
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2255
3181
  }>, Type.TObject<{
2256
3182
  kind: Type.TLiteral<"system-agent">;
@@ -2285,6 +3211,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2285
3211
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2286
3212
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2287
3213
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3214
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3215
+ kind: Type.TLiteral<"message-send">;
3216
+ target: Type.TString;
3217
+ recipientCount: Type.TInteger;
3218
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3219
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3220
+ }>, Type.TObject<{
3221
+ kind: Type.TLiteral<"payment">;
3222
+ amount: Type.TString;
3223
+ currency: Type.TString;
3224
+ target: Type.TString;
3225
+ }>, Type.TObject<{
3226
+ kind: Type.TLiteral<"external-post">;
3227
+ target: Type.TString;
3228
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3229
+ }>]>>;
2288
3230
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2289
3231
  }>, Type.TObject<{
2290
3232
  kind: Type.TLiteral<"plugin">;
@@ -2295,6 +3237,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2295
3237
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2296
3238
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2297
3239
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3240
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3241
+ kind: Type.TLiteral<"message-send">;
3242
+ target: Type.TString;
3243
+ recipientCount: Type.TInteger;
3244
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3245
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3246
+ }>, Type.TObject<{
3247
+ kind: Type.TLiteral<"payment">;
3248
+ amount: Type.TString;
3249
+ currency: Type.TString;
3250
+ target: Type.TString;
3251
+ }>, Type.TObject<{
3252
+ kind: Type.TLiteral<"external-post">;
3253
+ target: Type.TString;
3254
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3255
+ }>]>>;
2298
3256
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2299
3257
  }>, Type.TObject<{
2300
3258
  kind: Type.TLiteral<"system-agent">;
@@ -2328,6 +3286,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2328
3286
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2329
3287
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2330
3288
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3289
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3290
+ kind: Type.TLiteral<"message-send">;
3291
+ target: Type.TString;
3292
+ recipientCount: Type.TInteger;
3293
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3294
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3295
+ }>, Type.TObject<{
3296
+ kind: Type.TLiteral<"payment">;
3297
+ amount: Type.TString;
3298
+ currency: Type.TString;
3299
+ target: Type.TString;
3300
+ }>, Type.TObject<{
3301
+ kind: Type.TLiteral<"external-post">;
3302
+ target: Type.TString;
3303
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3304
+ }>]>>;
2331
3305
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2332
3306
  }>, Type.TObject<{
2333
3307
  kind: Type.TLiteral<"plugin">;
@@ -2338,6 +3312,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2338
3312
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2339
3313
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2340
3314
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3315
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3316
+ kind: Type.TLiteral<"message-send">;
3317
+ target: Type.TString;
3318
+ recipientCount: Type.TInteger;
3319
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3320
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3321
+ }>, Type.TObject<{
3322
+ kind: Type.TLiteral<"payment">;
3323
+ amount: Type.TString;
3324
+ currency: Type.TString;
3325
+ target: Type.TString;
3326
+ }>, Type.TObject<{
3327
+ kind: Type.TLiteral<"external-post">;
3328
+ target: Type.TString;
3329
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3330
+ }>]>>;
2341
3331
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2342
3332
  }>, Type.TObject<{
2343
3333
  kind: Type.TLiteral<"system-agent">;
@@ -2371,6 +3361,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2371
3361
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2372
3362
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2373
3363
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3364
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3365
+ kind: Type.TLiteral<"message-send">;
3366
+ target: Type.TString;
3367
+ recipientCount: Type.TInteger;
3368
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3369
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3370
+ }>, Type.TObject<{
3371
+ kind: Type.TLiteral<"payment">;
3372
+ amount: Type.TString;
3373
+ currency: Type.TString;
3374
+ target: Type.TString;
3375
+ }>, Type.TObject<{
3376
+ kind: Type.TLiteral<"external-post">;
3377
+ target: Type.TString;
3378
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3379
+ }>]>>;
2374
3380
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2375
3381
  }>, Type.TObject<{
2376
3382
  kind: Type.TLiteral<"plugin">;
@@ -2381,6 +3387,22 @@ declare const ApprovalResolveResultSchema: Type.TObject<{
2381
3387
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2382
3388
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2383
3389
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3390
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3391
+ kind: Type.TLiteral<"message-send">;
3392
+ target: Type.TString;
3393
+ recipientCount: Type.TInteger;
3394
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3395
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3396
+ }>, Type.TObject<{
3397
+ kind: Type.TLiteral<"payment">;
3398
+ amount: Type.TString;
3399
+ currency: Type.TString;
3400
+ target: Type.TString;
3401
+ }>, Type.TObject<{
3402
+ kind: Type.TLiteral<"external-post">;
3403
+ target: Type.TString;
3404
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3405
+ }>]>>;
2384
3406
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2385
3407
  }>, Type.TObject<{
2386
3408
  kind: Type.TLiteral<"system-agent">;
@@ -2409,6 +3431,22 @@ declare const PendingSessionApprovalEventSchema: Type.TObject<{
2409
3431
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2410
3432
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2411
3433
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3434
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3435
+ kind: Type.TLiteral<"message-send">;
3436
+ target: Type.TString;
3437
+ recipientCount: Type.TInteger;
3438
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3439
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3440
+ }>, Type.TObject<{
3441
+ kind: Type.TLiteral<"payment">;
3442
+ amount: Type.TString;
3443
+ currency: Type.TString;
3444
+ target: Type.TString;
3445
+ }>, Type.TObject<{
3446
+ kind: Type.TLiteral<"external-post">;
3447
+ target: Type.TString;
3448
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3449
+ }>]>>;
2412
3450
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2413
3451
  }>, Type.TObject<{
2414
3452
  kind: Type.TLiteral<"plugin">;
@@ -2419,6 +3457,22 @@ declare const PendingSessionApprovalEventSchema: Type.TObject<{
2419
3457
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2420
3458
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2421
3459
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3460
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3461
+ kind: Type.TLiteral<"message-send">;
3462
+ target: Type.TString;
3463
+ recipientCount: Type.TInteger;
3464
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3465
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3466
+ }>, Type.TObject<{
3467
+ kind: Type.TLiteral<"payment">;
3468
+ amount: Type.TString;
3469
+ currency: Type.TString;
3470
+ target: Type.TString;
3471
+ }>, Type.TObject<{
3472
+ kind: Type.TLiteral<"external-post">;
3473
+ target: Type.TString;
3474
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3475
+ }>]>>;
2422
3476
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2423
3477
  }>, Type.TObject<{
2424
3478
  kind: Type.TLiteral<"system-agent">;
@@ -2461,6 +3515,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2461
3515
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2462
3516
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2463
3517
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3518
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3519
+ kind: Type.TLiteral<"message-send">;
3520
+ target: Type.TString;
3521
+ recipientCount: Type.TInteger;
3522
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3523
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3524
+ }>, Type.TObject<{
3525
+ kind: Type.TLiteral<"payment">;
3526
+ amount: Type.TString;
3527
+ currency: Type.TString;
3528
+ target: Type.TString;
3529
+ }>, Type.TObject<{
3530
+ kind: Type.TLiteral<"external-post">;
3531
+ target: Type.TString;
3532
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3533
+ }>]>>;
2464
3534
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2465
3535
  }>, Type.TObject<{
2466
3536
  kind: Type.TLiteral<"plugin">;
@@ -2471,6 +3541,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2471
3541
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2472
3542
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2473
3543
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3544
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3545
+ kind: Type.TLiteral<"message-send">;
3546
+ target: Type.TString;
3547
+ recipientCount: Type.TInteger;
3548
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3549
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3550
+ }>, Type.TObject<{
3551
+ kind: Type.TLiteral<"payment">;
3552
+ amount: Type.TString;
3553
+ currency: Type.TString;
3554
+ target: Type.TString;
3555
+ }>, Type.TObject<{
3556
+ kind: Type.TLiteral<"external-post">;
3557
+ target: Type.TString;
3558
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3559
+ }>]>>;
2474
3560
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2475
3561
  }>, Type.TObject<{
2476
3562
  kind: Type.TLiteral<"system-agent">;
@@ -2505,6 +3591,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2505
3591
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2506
3592
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2507
3593
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3594
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3595
+ kind: Type.TLiteral<"message-send">;
3596
+ target: Type.TString;
3597
+ recipientCount: Type.TInteger;
3598
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3599
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3600
+ }>, Type.TObject<{
3601
+ kind: Type.TLiteral<"payment">;
3602
+ amount: Type.TString;
3603
+ currency: Type.TString;
3604
+ target: Type.TString;
3605
+ }>, Type.TObject<{
3606
+ kind: Type.TLiteral<"external-post">;
3607
+ target: Type.TString;
3608
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3609
+ }>]>>;
2508
3610
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2509
3611
  }>, Type.TObject<{
2510
3612
  kind: Type.TLiteral<"plugin">;
@@ -2515,6 +3617,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2515
3617
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2516
3618
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2517
3619
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3620
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3621
+ kind: Type.TLiteral<"message-send">;
3622
+ target: Type.TString;
3623
+ recipientCount: Type.TInteger;
3624
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3625
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3626
+ }>, Type.TObject<{
3627
+ kind: Type.TLiteral<"payment">;
3628
+ amount: Type.TString;
3629
+ currency: Type.TString;
3630
+ target: Type.TString;
3631
+ }>, Type.TObject<{
3632
+ kind: Type.TLiteral<"external-post">;
3633
+ target: Type.TString;
3634
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3635
+ }>]>>;
2518
3636
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2519
3637
  }>, Type.TObject<{
2520
3638
  kind: Type.TLiteral<"system-agent">;
@@ -2548,6 +3666,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2548
3666
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2549
3667
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2550
3668
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3669
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3670
+ kind: Type.TLiteral<"message-send">;
3671
+ target: Type.TString;
3672
+ recipientCount: Type.TInteger;
3673
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3674
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3675
+ }>, Type.TObject<{
3676
+ kind: Type.TLiteral<"payment">;
3677
+ amount: Type.TString;
3678
+ currency: Type.TString;
3679
+ target: Type.TString;
3680
+ }>, Type.TObject<{
3681
+ kind: Type.TLiteral<"external-post">;
3682
+ target: Type.TString;
3683
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3684
+ }>]>>;
2551
3685
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2552
3686
  }>, Type.TObject<{
2553
3687
  kind: Type.TLiteral<"plugin">;
@@ -2558,6 +3692,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2558
3692
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2559
3693
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2560
3694
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3695
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3696
+ kind: Type.TLiteral<"message-send">;
3697
+ target: Type.TString;
3698
+ recipientCount: Type.TInteger;
3699
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3700
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3701
+ }>, Type.TObject<{
3702
+ kind: Type.TLiteral<"payment">;
3703
+ amount: Type.TString;
3704
+ currency: Type.TString;
3705
+ target: Type.TString;
3706
+ }>, Type.TObject<{
3707
+ kind: Type.TLiteral<"external-post">;
3708
+ target: Type.TString;
3709
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3710
+ }>]>>;
2561
3711
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2562
3712
  }>, Type.TObject<{
2563
3713
  kind: Type.TLiteral<"system-agent">;
@@ -2591,6 +3741,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2591
3741
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2592
3742
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2593
3743
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3744
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3745
+ kind: Type.TLiteral<"message-send">;
3746
+ target: Type.TString;
3747
+ recipientCount: Type.TInteger;
3748
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3749
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3750
+ }>, Type.TObject<{
3751
+ kind: Type.TLiteral<"payment">;
3752
+ amount: Type.TString;
3753
+ currency: Type.TString;
3754
+ target: Type.TString;
3755
+ }>, Type.TObject<{
3756
+ kind: Type.TLiteral<"external-post">;
3757
+ target: Type.TString;
3758
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3759
+ }>]>>;
2594
3760
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2595
3761
  }>, Type.TObject<{
2596
3762
  kind: Type.TLiteral<"plugin">;
@@ -2601,6 +3767,22 @@ declare const TerminalSessionApprovalEventSchema: Type.TObject<{
2601
3767
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2602
3768
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2603
3769
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3770
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3771
+ kind: Type.TLiteral<"message-send">;
3772
+ target: Type.TString;
3773
+ recipientCount: Type.TInteger;
3774
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3775
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3776
+ }>, Type.TObject<{
3777
+ kind: Type.TLiteral<"payment">;
3778
+ amount: Type.TString;
3779
+ currency: Type.TString;
3780
+ target: Type.TString;
3781
+ }>, Type.TObject<{
3782
+ kind: Type.TLiteral<"external-post">;
3783
+ target: Type.TString;
3784
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3785
+ }>]>>;
2604
3786
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2605
3787
  }>, Type.TObject<{
2606
3788
  kind: Type.TLiteral<"system-agent">;
@@ -2632,6 +3814,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2632
3814
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2633
3815
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2634
3816
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3817
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3818
+ kind: Type.TLiteral<"message-send">;
3819
+ target: Type.TString;
3820
+ recipientCount: Type.TInteger;
3821
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3822
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3823
+ }>, Type.TObject<{
3824
+ kind: Type.TLiteral<"payment">;
3825
+ amount: Type.TString;
3826
+ currency: Type.TString;
3827
+ target: Type.TString;
3828
+ }>, Type.TObject<{
3829
+ kind: Type.TLiteral<"external-post">;
3830
+ target: Type.TString;
3831
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3832
+ }>]>>;
2635
3833
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2636
3834
  }>, Type.TObject<{
2637
3835
  kind: Type.TLiteral<"plugin">;
@@ -2642,6 +3840,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2642
3840
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2643
3841
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2644
3842
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3843
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3844
+ kind: Type.TLiteral<"message-send">;
3845
+ target: Type.TString;
3846
+ recipientCount: Type.TInteger;
3847
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3848
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3849
+ }>, Type.TObject<{
3850
+ kind: Type.TLiteral<"payment">;
3851
+ amount: Type.TString;
3852
+ currency: Type.TString;
3853
+ target: Type.TString;
3854
+ }>, Type.TObject<{
3855
+ kind: Type.TLiteral<"external-post">;
3856
+ target: Type.TString;
3857
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3858
+ }>]>>;
2645
3859
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2646
3860
  }>, Type.TObject<{
2647
3861
  kind: Type.TLiteral<"system-agent">;
@@ -2682,6 +3896,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2682
3896
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2683
3897
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2684
3898
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3899
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3900
+ kind: Type.TLiteral<"message-send">;
3901
+ target: Type.TString;
3902
+ recipientCount: Type.TInteger;
3903
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3904
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3905
+ }>, Type.TObject<{
3906
+ kind: Type.TLiteral<"payment">;
3907
+ amount: Type.TString;
3908
+ currency: Type.TString;
3909
+ target: Type.TString;
3910
+ }>, Type.TObject<{
3911
+ kind: Type.TLiteral<"external-post">;
3912
+ target: Type.TString;
3913
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3914
+ }>]>>;
2685
3915
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2686
3916
  }>, Type.TObject<{
2687
3917
  kind: Type.TLiteral<"plugin">;
@@ -2692,6 +3922,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2692
3922
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2693
3923
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2694
3924
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3925
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3926
+ kind: Type.TLiteral<"message-send">;
3927
+ target: Type.TString;
3928
+ recipientCount: Type.TInteger;
3929
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3930
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3931
+ }>, Type.TObject<{
3932
+ kind: Type.TLiteral<"payment">;
3933
+ amount: Type.TString;
3934
+ currency: Type.TString;
3935
+ target: Type.TString;
3936
+ }>, Type.TObject<{
3937
+ kind: Type.TLiteral<"external-post">;
3938
+ target: Type.TString;
3939
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3940
+ }>]>>;
2695
3941
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2696
3942
  }>, Type.TObject<{
2697
3943
  kind: Type.TLiteral<"system-agent">;
@@ -2726,6 +3972,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2726
3972
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2727
3973
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2728
3974
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
3975
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
3976
+ kind: Type.TLiteral<"message-send">;
3977
+ target: Type.TString;
3978
+ recipientCount: Type.TInteger;
3979
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
3980
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
3981
+ }>, Type.TObject<{
3982
+ kind: Type.TLiteral<"payment">;
3983
+ amount: Type.TString;
3984
+ currency: Type.TString;
3985
+ target: Type.TString;
3986
+ }>, Type.TObject<{
3987
+ kind: Type.TLiteral<"external-post">;
3988
+ target: Type.TString;
3989
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
3990
+ }>]>>;
2729
3991
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2730
3992
  }>, Type.TObject<{
2731
3993
  kind: Type.TLiteral<"plugin">;
@@ -2736,6 +3998,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2736
3998
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2737
3999
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2738
4000
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4001
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4002
+ kind: Type.TLiteral<"message-send">;
4003
+ target: Type.TString;
4004
+ recipientCount: Type.TInteger;
4005
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4006
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4007
+ }>, Type.TObject<{
4008
+ kind: Type.TLiteral<"payment">;
4009
+ amount: Type.TString;
4010
+ currency: Type.TString;
4011
+ target: Type.TString;
4012
+ }>, Type.TObject<{
4013
+ kind: Type.TLiteral<"external-post">;
4014
+ target: Type.TString;
4015
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4016
+ }>]>>;
2739
4017
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2740
4018
  }>, Type.TObject<{
2741
4019
  kind: Type.TLiteral<"system-agent">;
@@ -2769,6 +4047,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2769
4047
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2770
4048
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2771
4049
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4050
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4051
+ kind: Type.TLiteral<"message-send">;
4052
+ target: Type.TString;
4053
+ recipientCount: Type.TInteger;
4054
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4055
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4056
+ }>, Type.TObject<{
4057
+ kind: Type.TLiteral<"payment">;
4058
+ amount: Type.TString;
4059
+ currency: Type.TString;
4060
+ target: Type.TString;
4061
+ }>, Type.TObject<{
4062
+ kind: Type.TLiteral<"external-post">;
4063
+ target: Type.TString;
4064
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4065
+ }>]>>;
2772
4066
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2773
4067
  }>, Type.TObject<{
2774
4068
  kind: Type.TLiteral<"plugin">;
@@ -2779,6 +4073,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2779
4073
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2780
4074
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2781
4075
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4076
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4077
+ kind: Type.TLiteral<"message-send">;
4078
+ target: Type.TString;
4079
+ recipientCount: Type.TInteger;
4080
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4081
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4082
+ }>, Type.TObject<{
4083
+ kind: Type.TLiteral<"payment">;
4084
+ amount: Type.TString;
4085
+ currency: Type.TString;
4086
+ target: Type.TString;
4087
+ }>, Type.TObject<{
4088
+ kind: Type.TLiteral<"external-post">;
4089
+ target: Type.TString;
4090
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4091
+ }>]>>;
2782
4092
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2783
4093
  }>, Type.TObject<{
2784
4094
  kind: Type.TLiteral<"system-agent">;
@@ -2812,6 +4122,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2812
4122
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2813
4123
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2814
4124
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4125
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4126
+ kind: Type.TLiteral<"message-send">;
4127
+ target: Type.TString;
4128
+ recipientCount: Type.TInteger;
4129
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4130
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4131
+ }>, Type.TObject<{
4132
+ kind: Type.TLiteral<"payment">;
4133
+ amount: Type.TString;
4134
+ currency: Type.TString;
4135
+ target: Type.TString;
4136
+ }>, Type.TObject<{
4137
+ kind: Type.TLiteral<"external-post">;
4138
+ target: Type.TString;
4139
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4140
+ }>]>>;
2815
4141
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2816
4142
  }>, Type.TObject<{
2817
4143
  kind: Type.TLiteral<"plugin">;
@@ -2822,6 +4148,22 @@ declare const SessionApprovalEventSchema: Type.TUnion<[Type.TObject<{
2822
4148
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2823
4149
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2824
4150
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4151
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4152
+ kind: Type.TLiteral<"message-send">;
4153
+ target: Type.TString;
4154
+ recipientCount: Type.TInteger;
4155
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4156
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4157
+ }>, Type.TObject<{
4158
+ kind: Type.TLiteral<"payment">;
4159
+ amount: Type.TString;
4160
+ currency: Type.TString;
4161
+ target: Type.TString;
4162
+ }>, Type.TObject<{
4163
+ kind: Type.TLiteral<"external-post">;
4164
+ target: Type.TString;
4165
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4166
+ }>]>>;
2825
4167
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2826
4168
  }>, Type.TObject<{
2827
4169
  kind: Type.TLiteral<"system-agent">;
@@ -2854,6 +4196,22 @@ declare const SessionApprovalReplaySchema: Type.TObject<{
2854
4196
  host: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2855
4197
  nodeId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2856
4198
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4199
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4200
+ kind: Type.TLiteral<"message-send">;
4201
+ target: Type.TString;
4202
+ recipientCount: Type.TInteger;
4203
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4204
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4205
+ }>, Type.TObject<{
4206
+ kind: Type.TLiteral<"payment">;
4207
+ amount: Type.TString;
4208
+ currency: Type.TString;
4209
+ target: Type.TString;
4210
+ }>, Type.TObject<{
4211
+ kind: Type.TLiteral<"external-post">;
4212
+ target: Type.TString;
4213
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4214
+ }>]>>;
2857
4215
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2858
4216
  }>, Type.TObject<{
2859
4217
  kind: Type.TLiteral<"plugin">;
@@ -2864,6 +4222,22 @@ declare const SessionApprovalReplaySchema: Type.TObject<{
2864
4222
  pluginId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2865
4223
  toolName: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
2866
4224
  agentId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
4225
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
4226
+ kind: Type.TLiteral<"message-send">;
4227
+ target: Type.TString;
4228
+ recipientCount: Type.TInteger;
4229
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
4230
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
4231
+ }>, Type.TObject<{
4232
+ kind: Type.TLiteral<"payment">;
4233
+ amount: Type.TString;
4234
+ currency: Type.TString;
4235
+ target: Type.TString;
4236
+ }>, Type.TObject<{
4237
+ kind: Type.TLiteral<"external-post">;
4238
+ target: Type.TString;
4239
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
4240
+ }>]>>;
2867
4241
  allowedDecisions: Type.TArray<Type.TUnion<[Type.TLiteral<"allow-once">, Type.TLiteral<"allow-always">, Type.TLiteral<"deny">]>>;
2868
4242
  }>, Type.TObject<{
2869
4243
  kind: Type.TLiteral<"system-agent">;
@@ -2881,6 +4255,7 @@ type ApprovalDecision = Static<typeof ApprovalDecisionSchema>;
2881
4255
  type ApprovalAllowDecision = Static<typeof ApprovalAllowDecisionSchema>;
2882
4256
  type ApprovalTerminalReason = Static<typeof ApprovalTerminalReasonSchema>;
2883
4257
  type PluginApprovalSeverity = Static<typeof PluginApprovalSeveritySchema>;
4258
+ type ApprovalScope = Static<typeof ApprovalScopeSchema>;
2884
4259
  type ExecApprovalPresentation = Static<typeof ExecApprovalPresentationSchema>;
2885
4260
  type PluginApprovalPresentation = Static<typeof PluginApprovalPresentationSchema>;
2886
4261
  type SystemAgentApprovalPresentation = Static<typeof SystemAgentApprovalPresentationSchema>;
@@ -3984,6 +5359,8 @@ declare const BoardWidgetSchema: Type.TObject<{
3984
5359
  tabId: Type.TString;
3985
5360
  title: Type.TOptional<Type.TString>;
3986
5361
  contentKind: Type.TUnion<[Type.TLiteral<"html">, Type.TLiteral<"mcp-app">, Type.TLiteral<"plugin">]>;
5362
+ contentOwner: Type.TOptional<Type.TEnum<["html", "mcp-app", "plugin", "registered"]>>;
5363
+ registeredContentKind: Type.TOptional<Type.TString>;
3987
5364
  pluginKind: Type.TOptional<Type.TString>;
3988
5365
  props: Type.TOptional<Type.TRecord<"^.*$", Type.TUnknown>>;
3989
5366
  presentation: Type.TOptional<Type.TUnion<[Type.TLiteral<"card">, Type.TLiteral<"full-bleed">, Type.TLiteral<"frameless">]>>;
@@ -4023,6 +5400,8 @@ declare const BoardSnapshotSchema: Type.TObject<{
4023
5400
  tabId: Type.TString;
4024
5401
  title: Type.TOptional<Type.TString>;
4025
5402
  contentKind: Type.TUnion<[Type.TLiteral<"html">, Type.TLiteral<"mcp-app">, Type.TLiteral<"plugin">]>;
5403
+ contentOwner: Type.TOptional<Type.TEnum<["html", "mcp-app", "plugin", "registered"]>>;
5404
+ registeredContentKind: Type.TOptional<Type.TString>;
4026
5405
  pluginKind: Type.TOptional<Type.TString>;
4027
5406
  props: Type.TOptional<Type.TRecord<"^.*$", Type.TUnknown>>;
4028
5407
  presentation: Type.TOptional<Type.TUnion<[Type.TLiteral<"card">, Type.TLiteral<"full-bleed">, Type.TLiteral<"frameless">]>>;
@@ -4310,6 +5689,8 @@ declare const BoardWidgetPutResultSchema: Type.TObject<{
4310
5689
  tabId: Type.TString;
4311
5690
  title: Type.TOptional<Type.TString>;
4312
5691
  contentKind: Type.TUnion<[Type.TLiteral<"html">, Type.TLiteral<"mcp-app">, Type.TLiteral<"plugin">]>;
5692
+ contentOwner: Type.TOptional<Type.TEnum<["html", "mcp-app", "plugin", "registered"]>>;
5693
+ registeredContentKind: Type.TOptional<Type.TString>;
4313
5694
  pluginKind: Type.TOptional<Type.TString>;
4314
5695
  props: Type.TOptional<Type.TRecord<"^.*$", Type.TUnknown>>;
4315
5696
  presentation: Type.TOptional<Type.TUnion<[Type.TLiteral<"card">, Type.TLiteral<"full-bleed">, Type.TLiteral<"frameless">]>>;
@@ -4523,7 +5904,8 @@ declare const SessionToolOverridesSchema: Type.TObject<{
4523
5904
  declare const SessionCreatedActorSchema: Type.TObject<{
4524
5905
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4525
5906
  id: Type.TOptional<Type.TString>;
4526
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
5907
+ label: Type.TOptional<Type.TString>;
5908
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4527
5909
  avatarUrl: Type.TOptional<Type.TString>;
4528
5910
  }>;
4529
5911
  /** Mutable responsibility for one session; actor display data is projected at read time. */
@@ -4531,13 +5913,15 @@ declare const SessionOwnerSchema: Type.TObject<{
4531
5913
  actor: Type.TObject<{
4532
5914
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4533
5915
  id: Type.TOptional<Type.TString>;
4534
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
5916
+ label: Type.TOptional<Type.TString>;
5917
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4535
5918
  avatarUrl: Type.TOptional<Type.TString>;
4536
5919
  }>;
4537
5920
  assignedBy: Type.TOptional<Type.TObject<{
4538
5921
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4539
5922
  id: Type.TOptional<Type.TString>;
4540
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
5923
+ label: Type.TOptional<Type.TString>;
5924
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4541
5925
  avatarUrl: Type.TOptional<Type.TString>;
4542
5926
  }>>;
4543
5927
  assignedAt: Type.TOptional<Type.TNumber>;
@@ -4555,7 +5939,8 @@ declare const SessionRowSchema: Type.TObject<{
4555
5939
  displayName: Type.TOptional<Type.TString>;
4556
5940
  derivedTitle: Type.TOptional<Type.TString>;
4557
5941
  lastMessagePreview: Type.TOptional<Type.TString>;
4558
- channel: Type.TOptional<Type.TString>; /** Stable non-sensitive facts derived from the canonical session route. */
5942
+ channel: Type.TOptional<Type.TString>;
5943
+ /** Stable non-sensitive facts derived from the canonical session route. */
4559
5944
  classification: Type.TOptional<Type.TString>;
4560
5945
  agentId: Type.TOptional<Type.TString>;
4561
5946
  accountId: Type.TOptional<Type.TString>;
@@ -4569,17 +5954,20 @@ declare const SessionRowSchema: Type.TObject<{
4569
5954
  archivedBy: Type.TOptional<Type.TObject<{
4570
5955
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4571
5956
  id: Type.TOptional<Type.TString>;
4572
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
5957
+ label: Type.TOptional<Type.TString>;
5958
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4573
5959
  avatarUrl: Type.TOptional<Type.TString>;
4574
5960
  }>>;
4575
5961
  pinned: Type.TOptional<Type.TBoolean>;
4576
5962
  pinnedAt: Type.TOptional<Type.TNumber>;
4577
5963
  unread: Type.TOptional<Type.TBoolean>;
4578
5964
  lastReadAt: Type.TOptional<Type.TNumber>;
5965
+ markedUnreadAt: Type.TOptional<Type.TNumber>;
4579
5966
  lastActivityAt: Type.TOptional<Type.TNumber>;
4580
5967
  lastInteractionAt: Type.TOptional<Type.TNumber>;
4581
5968
  status: Type.TOptional<Type.TUnion<[Type.TLiteral<"queued">, Type.TLiteral<"running">, Type.TLiteral<"done">, Type.TLiteral<"failed">, Type.TLiteral<"killed">, Type.TLiteral<"timeout">]>>;
4582
- lastRunError: Type.TOptional<Type.TString>; /** Exact run that produced the latest terminal lifecycle projection. */
5969
+ lastRunError: Type.TOptional<Type.TString>;
5970
+ /** Exact run that produced the latest terminal lifecycle projection. */
4583
5971
  lastRunId: Type.TOptional<Type.TString>;
4584
5972
  restartRecoveryStatus: Type.TOptional<Type.TLiteral<"tombstoned">>;
4585
5973
  activeLeafEntryId: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -4607,20 +5995,23 @@ declare const SessionRowSchema: Type.TObject<{
4607
5995
  createdActor: Type.TOptional<Type.TObject<{
4608
5996
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4609
5997
  id: Type.TOptional<Type.TString>;
4610
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
5998
+ label: Type.TOptional<Type.TString>;
5999
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4611
6000
  avatarUrl: Type.TOptional<Type.TString>;
4612
6001
  }>>;
4613
6002
  owner: Type.TOptional<Type.TObject<{
4614
6003
  actor: Type.TObject<{
4615
6004
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4616
6005
  id: Type.TOptional<Type.TString>;
4617
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
6006
+ label: Type.TOptional<Type.TString>;
6007
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4618
6008
  avatarUrl: Type.TOptional<Type.TString>;
4619
6009
  }>;
4620
6010
  assignedBy: Type.TOptional<Type.TObject<{
4621
6011
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4622
6012
  id: Type.TOptional<Type.TString>;
4623
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
6013
+ label: Type.TOptional<Type.TString>;
6014
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4624
6015
  avatarUrl: Type.TOptional<Type.TString>;
4625
6016
  }>>;
4626
6017
  assignedAt: Type.TOptional<Type.TNumber>;
@@ -4628,7 +6019,8 @@ declare const SessionRowSchema: Type.TObject<{
4628
6019
  participants: Type.TOptional<Type.TArray<Type.TObject<{
4629
6020
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
4630
6021
  id: Type.TOptional<Type.TString>;
4631
- label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
6022
+ label: Type.TOptional<Type.TString>;
6023
+ /** Durable profile avatar route; absent for actors without a stored profile avatar. */
4632
6024
  avatarUrl: Type.TOptional<Type.TString>;
4633
6025
  }>>>;
4634
6026
  participantCount: Type.TOptional<Type.TInteger>;
@@ -4649,6 +6041,8 @@ declare const SessionRowSchema: Type.TObject<{
4649
6041
  estimatedCostUsd: Type.TOptional<Type.TNumber>;
4650
6042
  model: Type.TOptional<Type.TString>;
4651
6043
  modelProvider: Type.TOptional<Type.TString>;
6044
+ /** Persisted override provenance; null means inherited, omission means not projected. */
6045
+ modelOverrideSource: Type.TOptional<Type.TUnion<[Type.TLiteral<"user">, Type.TLiteral<"auto">, Type.TNull]>>;
4652
6046
  toolOverrides: Type.TOptional<Type.TObject<{
4653
6047
  mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
4654
6048
  mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
@@ -4845,6 +6239,56 @@ type WorktreePreservationReason = Static<typeof WorktreePreservationReasonSchema
4845
6239
  type PreservedSessionWorktree = Static<typeof PreservedSessionWorktreeSchema>;
4846
6240
  type SessionsDeleteResult = Static<typeof SessionsDeleteResultSchema>;
4847
6241
  //#endregion
6242
+ //#region src/schema/sessions-create.d.ts
6243
+ declare const SESSION_CREATE_RETRY_WINDOW_MS: number;
6244
+ declare const SESSION_CREATE_IDEMPOTENCY_RETENTION_MS: number;
6245
+ /** Creates or adopts a session with optional model, thinking, label, and parent linkage. */
6246
+ declare const SessionsCreateParamsSchema: Type.TObject<{
6247
+ key: Type.TOptional<Type.TString>;
6248
+ idempotencyKey: Type.TOptional<Type.TString>;
6249
+ agentId: Type.TOptional<Type.TString>;
6250
+ label: Type.TOptional<Type.TString>;
6251
+ category: Type.TOptional<Type.TString>;
6252
+ model: Type.TOptional<Type.TString>;
6253
+ contextWindow: Type.TOptional<Type.TString>;
6254
+ thinkingLevel: Type.TOptional<Type.TString>;
6255
+ permissionMode: Type.TOptional<Type.TUnion<[Type.TLiteral<"read-only">, Type.TLiteral<"guarded">, Type.TLiteral<"workspace">, Type.TLiteral<"full">]>>;
6256
+ toolOverrides: Type.TOptional<Type.TObject<{
6257
+ mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
6258
+ mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
6259
+ skills: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
6260
+ webSearch: Type.TOptional<Type.TBoolean>;
6261
+ }>>;
6262
+ incognito: Type.TOptional<Type.TBoolean>;
6263
+ visibility: Type.TOptional<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
6264
+ catalogId: Type.TOptional<Type.TString>;
6265
+ parentSessionKey: Type.TOptional<Type.TString>;
6266
+ spawnDepth: Type.TOptional<Type.TInteger>;
6267
+ fork: Type.TOptional<Type.TBoolean>;
6268
+ forkFrom: Type.TOptional<Type.TLiteral<"last-completed">>;
6269
+ emitCommandHooks: Type.TOptional<Type.TBoolean>;
6270
+ succeedsParent: Type.TOptional<Type.TBoolean>;
6271
+ task: Type.TOptional<Type.TString>;
6272
+ message: Type.TOptional<Type.TString>;
6273
+ attachments: Type.TOptional<Type.TArray<Type.TObject<{
6274
+ type: Type.TOptional<Type.TString>;
6275
+ mimeType: Type.TOptional<Type.TString>;
6276
+ fileName: Type.TOptional<Type.TString>;
6277
+ content: Type.TOptional<Type.TUnknown>;
6278
+ sizeBytes: Type.TOptional<Type.TNumber>;
6279
+ durationMs: Type.TOptional<Type.TNumber>;
6280
+ width: Type.TOptional<Type.TNumber>;
6281
+ height: Type.TOptional<Type.TNumber>;
6282
+ }>>>;
6283
+ projectId: Type.TOptional<Type.TString>;
6284
+ projectGitUrl: Type.TOptional<Type.TString>;
6285
+ worktree: Type.TOptional<Type.TBoolean>;
6286
+ worktreeBaseRef: Type.TOptional<Type.TString>;
6287
+ worktreeName: Type.TOptional<Type.TString>;
6288
+ execNode: Type.TOptional<Type.TString>;
6289
+ cwd: Type.TOptional<Type.TString>;
6290
+ }>;
6291
+ //#endregion
4848
6292
  //#region src/schema/projects.d.ts
4849
6293
  declare const PROJECTS_LIST_DEFAULT_LIMIT = 50;
4850
6294
  declare const PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT = 50;
@@ -5742,20 +7186,30 @@ declare const SendParamsSchema: Type.TObject<{
5742
7186
  to: Type.TString;
5743
7187
  message: Type.TOptional<Type.TString>;
5744
7188
  mediaUrl: Type.TOptional<Type.TString>;
5745
- mediaUrls: Type.TOptional<Type.TArray<Type.TString>>; /** Base64 attachment payload for gateway-local media materialization. */
5746
- buffer: Type.TOptional<Type.TString>; /** Optional filename for a base64 attachment payload. */
5747
- filename: Type.TOptional<Type.TString>; /** Optional MIME type for a base64 attachment payload. */
7189
+ mediaUrls: Type.TOptional<Type.TArray<Type.TString>>;
7190
+ /** Base64 attachment payload for gateway-local media materialization. */
7191
+ buffer: Type.TOptional<Type.TString>;
7192
+ /** Optional filename for a base64 attachment payload. */
7193
+ filename: Type.TOptional<Type.TString>;
7194
+ /** Optional MIME type for a base64 attachment payload. */
5748
7195
  contentType: Type.TOptional<Type.TString>;
5749
7196
  asVoice: Type.TOptional<Type.TBoolean>;
5750
7197
  gifPlayback: Type.TOptional<Type.TBoolean>;
5751
7198
  channel: Type.TOptional<Type.TString>;
5752
- accountId: Type.TOptional<Type.TString>; /** Optional agent id for per-agent media root resolution on gateway sends. */
5753
- agentId: Type.TOptional<Type.TString>; /** Reply target message id for native quoted/threaded sends where supported. */
5754
- replyToId: Type.TOptional<Type.TString>; /** Thread id (channel-specific meaning, e.g. Telegram forum topic id). */
5755
- threadId: Type.TOptional<Type.TString>; /** Force document-style media sends where supported. */
5756
- forceDocument: Type.TOptional<Type.TBoolean>; /** Send silently (no notification) where supported. */
5757
- silent: Type.TOptional<Type.TBoolean>; /** Channel-specific parse mode for formatted text. */
5758
- parseMode: Type.TOptional<Type.TLiteral<"HTML">>; /** Optional session key for mirroring delivered output back into the transcript. */
7199
+ accountId: Type.TOptional<Type.TString>;
7200
+ /** Optional agent id for per-agent media root resolution on gateway sends. */
7201
+ agentId: Type.TOptional<Type.TString>;
7202
+ /** Reply target message id for native quoted/threaded sends where supported. */
7203
+ replyToId: Type.TOptional<Type.TString>;
7204
+ /** Thread id (channel-specific meaning, e.g. Telegram forum topic id). */
7205
+ threadId: Type.TOptional<Type.TString>;
7206
+ /** Force document-style media sends where supported. */
7207
+ forceDocument: Type.TOptional<Type.TBoolean>;
7208
+ /** Send silently (no notification) where supported. */
7209
+ silent: Type.TOptional<Type.TBoolean>;
7210
+ /** Channel-specific parse mode for formatted text. */
7211
+ parseMode: Type.TOptional<Type.TLiteral<"HTML">>;
7212
+ /** Optional session key for mirroring delivered output back into the transcript. */
5759
7213
  sessionKey: Type.TOptional<Type.TString>;
5760
7214
  idempotencyKey: Type.TString;
5761
7215
  }>;
@@ -5866,11 +7320,15 @@ declare const PollParamsSchema: Type.TObject<{
5866
7320
  to: Type.TString;
5867
7321
  question: Type.TString;
5868
7322
  options: Type.TArray<Type.TString>;
5869
- maxSelections: Type.TOptional<Type.TInteger>; /** Poll duration in seconds (channel-specific limits may apply). */
7323
+ maxSelections: Type.TOptional<Type.TInteger>;
7324
+ /** Poll duration in seconds (channel-specific limits may apply). */
5870
7325
  durationSeconds: Type.TOptional<Type.TInteger>;
5871
- durationHours: Type.TOptional<Type.TInteger>; /** Send silently (no notification) where supported. */
5872
- silent: Type.TOptional<Type.TBoolean>; /** Poll anonymity where supported (e.g. Telegram polls default to anonymous). */
5873
- isAnonymous: Type.TOptional<Type.TBoolean>; /** Thread id (channel-specific meaning, e.g. Telegram forum topic id). */
7326
+ durationHours: Type.TOptional<Type.TInteger>;
7327
+ /** Send silently (no notification) where supported. */
7328
+ silent: Type.TOptional<Type.TBoolean>;
7329
+ /** Poll anonymity where supported (e.g. Telegram polls default to anonymous). */
7330
+ isAnonymous: Type.TOptional<Type.TBoolean>;
7331
+ /** Thread id (channel-specific meaning, e.g. Telegram forum topic id). */
5874
7332
  threadId: Type.TOptional<Type.TString>;
5875
7333
  channel: Type.TOptional<Type.TString>;
5876
7334
  accountId: Type.TOptional<Type.TString>;
@@ -5910,7 +7368,8 @@ declare const AgentParamsSchema: Type.TObject<{
5910
7368
  bootstrapContextRunKind: Type.TOptional<Type.TUnion<[Type.TLiteral<"default">, Type.TLiteral<"heartbeat">, Type.TLiteral<"cron">]>>;
5911
7369
  acpTurnSource: Type.TOptional<Type.TLiteral<"manual_spawn">>;
5912
7370
  internalRuntimeHandoffId: Type.TOptional<Type.TString>;
5913
- internalExecutionIdentityRetry: Type.TOptional<Type.TBoolean>; /** Exact durable recovery attempt that owns any post-admission identity bind. */
7371
+ internalExecutionIdentityRetry: Type.TOptional<Type.TBoolean>;
7372
+ /** Exact durable recovery attempt that owns any post-admission identity bind. */
5914
7373
  internalExecutionIdentityRecoveryAttempt: Type.TOptional<Type.TInteger>;
5915
7374
  execApprovalFollowupExpectedSessionId: Type.TOptional<Type.TString>;
5916
7375
  internalEvents: Type.TOptional<Type.TArray<Type.TObject<{
@@ -6280,8 +7739,10 @@ declare const AgentsFilesSetResultSchema: Type.TObject<{
6280
7739
  /** Model catalog request with optional visibility scope. */
6281
7740
  declare const ModelsListParamsSchema: Type.TObject<{
6282
7741
  agentId: Type.TOptional<Type.TString>;
6283
- includeProviderCapabilities: Type.TOptional<Type.TBoolean>; /** Reuse prepared/cached facts without starting provider discovery. */
6284
- preparedOnly: Type.TOptional<Type.TBoolean>; /** Force replacement of a completed full-catalog generation. */
7742
+ includeProviderCapabilities: Type.TOptional<Type.TBoolean>;
7743
+ /** Reuse prepared/cached facts without starting provider discovery. */
7744
+ preparedOnly: Type.TOptional<Type.TBoolean>;
7745
+ /** Force replacement of a completed full-catalog generation. */
6285
7746
  refresh: Type.TOptional<Type.TBoolean>;
6286
7747
  view: Type.TOptional<Type.TUnion<[Type.TLiteral<"default">, Type.TLiteral<"configured">, Type.TLiteral<"provider-config">, Type.TLiteral<"all">]>>;
6287
7748
  }>;
@@ -7272,12 +8733,28 @@ declare const SkillsProposalRecordResultSchema: Type.TObject<{
7272
8733
  }>]>>;
7273
8734
  }>>;
7274
8735
  }>;
7275
- /** Reads persisted skill lifecycle curation state. */
8736
+ /** Reads persisted skill usage and collection review state. */
7276
8737
  declare const SkillsCuratorStatusParamsSchema: Type.TObject<{}>;
7277
8738
  declare const SkillsCuratorStatusResultSchema: Type.TObject<{
7278
8739
  lastAttemptAtMs: Type.TUnion<[Type.TNumber, Type.TNull]>;
7279
8740
  lastSuccessAtMs: Type.TUnion<[Type.TNumber, Type.TNull]>;
7280
8741
  lastError: Type.TUnion<[Type.TString, Type.TNull]>;
8742
+ collectionReview: Type.TOptional<Type.TRecord<"^.*$", Type.TObject<{
8743
+ attemptedAtMs: Type.TNumber;
8744
+ succeededAtMs: Type.TOptional<Type.TNumber>;
8745
+ error: Type.TOptional<Type.TString>;
8746
+ }>>>;
8747
+ experienceReview: Type.TOptional<Type.TRecord<"^.*$", Type.TObject<{
8748
+ attemptedAtMs: Type.TNumber;
8749
+ outcome: Type.TUnion<[Type.TLiteral<"applied">, Type.TLiteral<"proposed">, Type.TLiteral<"nothing">, Type.TLiteral<"failed">]>;
8750
+ proposalId: Type.TOptional<Type.TString>;
8751
+ error: Type.TOptional<Type.TString>;
8752
+ usage: Type.TOptional<Type.TObject<{
8753
+ inputTokens: Type.TNumber;
8754
+ cachedInputTokens: Type.TNumber;
8755
+ outputTokens: Type.TNumber;
8756
+ }>>;
8757
+ }>>>;
7281
8758
  counts: Type.TObject<{
7282
8759
  active: Type.TNumber;
7283
8760
  stale: Type.TNumber;
@@ -7301,7 +8778,7 @@ declare const SkillsCuratorStatusResultSchema: Type.TObject<{
7301
8778
  score: Type.TNumber;
7302
8779
  }>>;
7303
8780
  }>;
7304
- /** Pins, unpins, or explicitly restores one curated skill. */
8781
+ /** Preserves retired curator action methods so clients receive an actionable error. */
7305
8782
  declare const SkillsCuratorActionParamsSchema: Type.TObject<{
7306
8783
  skill: Type.TString;
7307
8784
  }>;
@@ -8415,7 +9892,7 @@ declare const DecisionReceiptDisplayV1Schema: Type.TObject<{
8415
9892
  }>;
8416
9893
  provenance: Type.TUnion<[Type.TObject<{
8417
9894
  state: Type.TLiteral<"verified">;
8418
- producer: Type.TUnion<[Type.TLiteral<"run-admission">, Type.TLiteral<"operator-approval">, Type.TLiteral<"message-delivery">]>;
9895
+ producer: Type.TUnion<[Type.TLiteral<"run-admission">, Type.TLiteral<"operator-approval">, Type.TLiteral<"message-delivery">, Type.TLiteral<"cron-lifecycle">, Type.TLiteral<"task-lifecycle">, Type.TLiteral<"flow-lifecycle">]>;
8419
9896
  }>, Type.TObject<{
8420
9897
  state: Type.TLiteral<"unverified">;
8421
9898
  }>]>;
@@ -8818,7 +10295,7 @@ declare const AuditRunInspectResultSchema: Type.TObject<{
8818
10295
  }>;
8819
10296
  provenance: Type.TUnion<[Type.TObject<{
8820
10297
  state: Type.TLiteral<"verified">;
8821
- producer: Type.TUnion<[Type.TLiteral<"run-admission">, Type.TLiteral<"operator-approval">, Type.TLiteral<"message-delivery">]>;
10298
+ producer: Type.TUnion<[Type.TLiteral<"run-admission">, Type.TLiteral<"operator-approval">, Type.TLiteral<"message-delivery">, Type.TLiteral<"cron-lifecycle">, Type.TLiteral<"task-lifecycle">, Type.TLiteral<"flow-lifecycle">]>;
8822
10299
  }>, Type.TObject<{
8823
10300
  state: Type.TLiteral<"unverified">;
8824
10301
  }>]>;
@@ -8921,6 +10398,15 @@ type AuditEvent = Static<typeof AuditEventSchema>;
8921
10398
  type AuditListParams = Static<typeof AuditListParamsSchema>;
8922
10399
  type AuditListResult = Static<typeof AuditListResultSchema>;
8923
10400
  //#endregion
10401
+ //#region src/schema/ui-appearance-preferences.d.ts
10402
+ declare const UI_APPEARANCE_PREFERENCE_KEYS: {
10403
+ readonly theme: "ui.theme";
10404
+ readonly themeMode: "ui.themeMode";
10405
+ readonly accent: "ui.accent";
10406
+ };
10407
+ type UiAppearancePreferenceKey = (typeof UI_APPEARANCE_PREFERENCE_KEYS)[keyof typeof UI_APPEARANCE_PREFERENCE_KEYS];
10408
+ declare function normalizeUiAppearancePreference(key: UiAppearancePreferenceKey, value: unknown): string | undefined;
10409
+ //#endregion
8924
10410
  //#region src/schema/users.d.ts
8925
10411
  declare const USER_PREFS_ENTRY_LIMIT = 32;
8926
10412
  declare const USER_PREFS_PROFILE_KEY_LIMIT = 128;
@@ -8946,6 +10432,7 @@ declare const UserProfileSchema: Type.TObject<{
8946
10432
  avatarUrl: Type.TString;
8947
10433
  }>, Type.TNull]>;
8948
10434
  hasAvatar: Type.TBoolean;
10435
+ role: Type.TOptional<Type.TString>;
8949
10436
  }>;
8950
10437
  declare const UsersListParamsSchema: Type.TObject<{}>;
8951
10438
  declare const UsersListResultSchema: Type.TObject<{
@@ -8963,6 +10450,7 @@ declare const UsersListResultSchema: Type.TObject<{
8963
10450
  avatarUrl: Type.TString;
8964
10451
  }>, Type.TNull]>;
8965
10452
  hasAvatar: Type.TBoolean;
10453
+ role: Type.TOptional<Type.TString>;
8966
10454
  }>>;
8967
10455
  }>;
8968
10456
  declare const UsersSelfParamsSchema: Type.TObject<{}>;
@@ -8981,6 +10469,7 @@ declare const UsersSelfResultSchema: Type.TObject<{
8981
10469
  avatarUrl: Type.TString;
8982
10470
  }>, Type.TNull]>;
8983
10471
  hasAvatar: Type.TBoolean;
10472
+ role: Type.TOptional<Type.TString>;
8984
10473
  }>;
8985
10474
  }>;
8986
10475
  declare const UsersLinkEmailParamsSchema: Type.TObject<{
@@ -9002,6 +10491,7 @@ declare const UsersLinkEmailResultSchema: Type.TObject<{
9002
10491
  avatarUrl: Type.TString;
9003
10492
  }>, Type.TNull]>;
9004
10493
  hasAvatar: Type.TBoolean;
10494
+ role: Type.TOptional<Type.TString>;
9005
10495
  }>;
9006
10496
  }>;
9007
10497
  declare const UsersSetDisplayNameParamsSchema: Type.TObject<{
@@ -9023,6 +10513,29 @@ declare const UsersSetDisplayNameResultSchema: Type.TObject<{
9023
10513
  avatarUrl: Type.TString;
9024
10514
  }>, Type.TNull]>;
9025
10515
  hasAvatar: Type.TBoolean;
10516
+ role: Type.TOptional<Type.TString>;
10517
+ }>;
10518
+ }>;
10519
+ declare const UsersSetRoleParamsSchema: Type.TObject<{
10520
+ profileId: Type.TString;
10521
+ role: Type.TUnion<[Type.TString, Type.TNull]>;
10522
+ }>;
10523
+ declare const UsersSetRoleResultSchema: Type.TObject<{
10524
+ profile: Type.TObject<{
10525
+ id: Type.TString;
10526
+ displayName: Type.TUnion<[Type.TString, Type.TNull]>;
10527
+ avatarMime: Type.TUnion<[Type.TUnion<[Type.TLiteral<"image/png">, Type.TLiteral<"image/jpeg">, Type.TLiteral<"image/webp">]>, Type.TNull]>;
10528
+ mergedInto: Type.TUnion<[Type.TString, Type.TNull]>;
10529
+ createdAt: Type.TInteger;
10530
+ updatedAt: Type.TInteger;
10531
+ emails: Type.TArray<Type.TString>;
10532
+ githubIdentity: Type.TUnion<[Type.TObject<{
10533
+ login: Type.TString;
10534
+ profileUrl: Type.TString;
10535
+ avatarUrl: Type.TString;
10536
+ }>, Type.TNull]>;
10537
+ hasAvatar: Type.TBoolean;
10538
+ role: Type.TOptional<Type.TString>;
9026
10539
  }>;
9027
10540
  }>;
9028
10541
  declare const UsersSetAvatarParamsSchema: Type.TObject<{
@@ -9045,6 +10558,7 @@ declare const UsersSetAvatarResultSchema: Type.TObject<{
9045
10558
  avatarUrl: Type.TString;
9046
10559
  }>, Type.TNull]>;
9047
10560
  hasAvatar: Type.TBoolean;
10561
+ role: Type.TOptional<Type.TString>;
9048
10562
  }>;
9049
10563
  avatarRevision: Type.TString;
9050
10564
  }>;
@@ -9065,6 +10579,10 @@ declare const UsersPrefsSetResultSchema: Type.TUnion<[Type.TObject<{
9065
10579
  }>, Type.TObject<{
9066
10580
  status: Type.TLiteral<"no_durable_identity">;
9067
10581
  }>]>;
10582
+ declare const UsersPrefsChangedEventSchema: Type.TObject<{
10583
+ profileId: Type.TString;
10584
+ keys: Type.TArray<Type.TString>;
10585
+ }>;
9068
10586
  type UserProfile = Static<typeof UserProfileSchema>;
9069
10587
  type UserProfileGitHubIdentity = Static<typeof UserProfileGitHubIdentitySchema>;
9070
10588
  type UsersListParams = Static<typeof UsersListParamsSchema>;
@@ -9075,12 +10593,15 @@ type UsersLinkEmailParams = Static<typeof UsersLinkEmailParamsSchema>;
9075
10593
  type UsersLinkEmailResult = Static<typeof UsersLinkEmailResultSchema>;
9076
10594
  type UsersSetDisplayNameParams = Static<typeof UsersSetDisplayNameParamsSchema>;
9077
10595
  type UsersSetDisplayNameResult = Static<typeof UsersSetDisplayNameResultSchema>;
10596
+ type UsersSetRoleParams = Static<typeof UsersSetRoleParamsSchema>;
10597
+ type UsersSetRoleResult = Static<typeof UsersSetRoleResultSchema>;
9078
10598
  type UsersSetAvatarParams = Static<typeof UsersSetAvatarParamsSchema>;
9079
10599
  type UsersSetAvatarResult = Static<typeof UsersSetAvatarResultSchema>;
9080
10600
  type UsersPrefsGetParams = Static<typeof UsersPrefsGetParamsSchema>;
9081
10601
  type UsersPrefsGetResult = Static<typeof UsersPrefsGetResultSchema>;
9082
10602
  type UsersPrefsSetParams = Static<typeof UsersPrefsSetParamsSchema>;
9083
10603
  type UsersPrefsSetResult = Static<typeof UsersPrefsSetResultSchema>;
10604
+ type UsersPrefsChangedEvent = Static<typeof UsersPrefsChangedEventSchema>;
9084
10605
  //#endregion
9085
10606
  //#region src/schema/channels.d.ts
9086
10607
  /**
@@ -9834,8 +11355,10 @@ declare const CommandEntrySchema: Type.TObject<{
9834
11355
  textAliases: Type.TOptional<Type.TArray<Type.TString>>;
9835
11356
  description: Type.TString;
9836
11357
  category: Type.TOptional<Type.TUnion<[Type.TLiteral<"session">, Type.TLiteral<"options">, Type.TLiteral<"status">, Type.TLiteral<"management">, Type.TLiteral<"media">, Type.TLiteral<"tools">, Type.TLiteral<"docks">]>>;
9837
- source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>; /** Human-readable skill title used by client display surfaces. */
9838
- skillDisplayName: Type.TOptional<Type.TString>; /** Whether a skill command is also present in the model-visible skill catalog. */
11358
+ source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>;
11359
+ /** Human-readable skill title used by client display surfaces. */
11360
+ skillDisplayName: Type.TOptional<Type.TString>;
11361
+ /** Whether a skill command is also present in the model-visible skill catalog. */
9839
11362
  skillModelVisible: Type.TOptional<Type.TBoolean>;
9840
11363
  scope: Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"native">, Type.TLiteral<"both">]>;
9841
11364
  acceptsArgs: Type.TBoolean;
@@ -9872,8 +11395,10 @@ declare const CommandsListResultSchema: Type.TObject<{
9872
11395
  textAliases: Type.TOptional<Type.TArray<Type.TString>>;
9873
11396
  description: Type.TString;
9874
11397
  category: Type.TOptional<Type.TUnion<[Type.TLiteral<"session">, Type.TLiteral<"options">, Type.TLiteral<"status">, Type.TLiteral<"management">, Type.TLiteral<"media">, Type.TLiteral<"tools">, Type.TLiteral<"docks">]>>;
9875
- source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>; /** Human-readable skill title used by client display surfaces. */
9876
- skillDisplayName: Type.TOptional<Type.TString>; /** Whether a skill command is also present in the model-visible skill catalog. */
11398
+ source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>;
11399
+ /** Human-readable skill title used by client display surfaces. */
11400
+ skillDisplayName: Type.TOptional<Type.TString>;
11401
+ /** Whether a skill command is also present in the model-visible skill catalog. */
9877
11402
  skillModelVisible: Type.TOptional<Type.TBoolean>;
9878
11403
  scope: Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"native">, Type.TLiteral<"both">]>;
9879
11404
  acceptsArgs: Type.TBoolean;
@@ -10167,6 +11692,11 @@ declare const UpdateRunParamsSchema: Type.TObject<{
10167
11692
  continuationMessage: Type.TOptional<Type.TString>;
10168
11693
  restartDelayMs: Type.TOptional<Type.TInteger>;
10169
11694
  timeoutMs: Type.TOptional<Type.TInteger>;
11695
+ target: Type.TOptional<Type.TObject<{
11696
+ kind: Type.TLiteral<"git">;
11697
+ upstreamRef: Type.TString;
11698
+ upstreamSha: Type.TString;
11699
+ }>>;
10170
11700
  }>;
10171
11701
  /** Full generated config schema response. */
10172
11702
  declare const ConfigSchemaResponseSchema: Type.TObject<{
@@ -10247,7 +11777,8 @@ type UpdateRunParams = Static<typeof UpdateRunParamsSchema>;
10247
11777
  //#endregion
10248
11778
  //#region src/schema/openclaw.d.ts
10249
11779
  declare const SystemAgentWizardCancelSchema: Type.TObject<{
10250
- /** The visible step this action belongs to; stale controls must not affect a newer step. */stepId: Type.TString;
11780
+ /** The visible step this action belongs to; stale controls must not affect a newer step. */
11781
+ stepId: Type.TString;
10251
11782
  }>;
10252
11783
  /**
10253
11784
  * OpenClaw chat lets clients (macOS app onboarding, future UIs) hold the
@@ -10256,20 +11787,28 @@ declare const SystemAgentWizardCancelSchema: Type.TObject<{
10256
11787
  * returns the welcome/greeting for a verified fresh session without input.
10257
11788
  */
10258
11789
  declare const SystemAgentChatParamsSchema: Type.TObject<{
10259
- sessionId: Type.TString; /** Free-text input for conversational and text-only clients. */
10260
- message: Type.TOptional<Type.TString>; /** Typed answer from a client rendering the current `WizardStep`. */
11790
+ sessionId: Type.TString;
11791
+ /** Free-text input for conversational and text-only clients. */
11792
+ message: Type.TOptional<Type.TString>;
11793
+ /** Typed answer from a client rendering the current `WizardStep`. */
10261
11794
  wizardAnswer: Type.TOptional<Type.TObject<{
10262
11795
  stepId: Type.TString;
10263
11796
  value: Type.TOptional<Type.TUnknown>;
10264
- }>>; /** Direct client control for cancelling the currently rendered hosted wizard. */
11797
+ }>>;
11798
+ /** Direct client control for cancelling the currently rendered hosted wizard. */
10265
11799
  wizardCancel: Type.TOptional<Type.TObject<{
10266
- /** The visible step this action belongs to; stale controls must not affect a newer step. */stepId: Type.TString;
10267
- }>>; /** Seeds a purpose-specific first greeting for a fresh conversation. */
10268
- welcomeVariant: Type.TOptional<Type.TUnion<[Type.TLiteral<"onboarding">, Type.TLiteral<"new-agent">]>>; /** Drop any in-flight approval/wizard state and start the session over. */
10269
- reset: Type.TOptional<Type.TBoolean>; /** Ephemeral Control UI location hint for interpreting the current user turn. */
11800
+ /** The visible step this action belongs to; stale controls must not affect a newer step. */
11801
+ stepId: Type.TString;
11802
+ }>>;
11803
+ /** Seeds a purpose-specific first greeting for a fresh conversation. */
11804
+ welcomeVariant: Type.TOptional<Type.TUnion<[Type.TLiteral<"onboarding">, Type.TLiteral<"new-agent">]>>;
11805
+ /** Drop any in-flight approval/wizard state and start the session over. */
11806
+ reset: Type.TOptional<Type.TBoolean>;
11807
+ /** Ephemeral Control UI location hint for interpreting the current user turn. */
10270
11808
  context: Type.TOptional<Type.TObject<{
10271
11809
  page: Type.TString;
10272
- }>>; /** Host-only regular-agent delegation context. Never model-authored. */
11810
+ }>>;
11811
+ /** Host-only regular-agent delegation context. Never model-authored. */
10273
11812
  delegation: Type.TOptional<Type.TObject<{
10274
11813
  agentId: Type.TOptional<Type.TString>;
10275
11814
  sessionKey: Type.TOptional<Type.TString>;
@@ -10291,20 +11830,27 @@ declare const SystemAgentChatQuestionSchema: Type.TObject<{
10291
11830
  options: Type.TArray<Type.TObject<{
10292
11831
  label: Type.TString;
10293
11832
  description: Type.TOptional<Type.TString>;
10294
- recommended: Type.TOptional<Type.TBoolean>; /** Message text a client sends when this option is chosen; defaults to label. */
11833
+ recommended: Type.TOptional<Type.TBoolean>;
11834
+ /** Message text a client sends when this option is chosen; defaults to label. */
10295
11835
  reply: Type.TOptional<Type.TString>;
10296
- }>>; /** Free-text answers are also accepted for this question. */
10297
- isOther: Type.TOptional<Type.TBoolean>; /** Client-owned action for the visible skip control; omitted means send a reply. */
11836
+ }>>;
11837
+ /** Free-text answers are also accepted for this question. */
11838
+ isOther: Type.TOptional<Type.TBoolean>;
11839
+ /** Client-owned action for the visible skip control; omitted means send a reply. */
10298
11840
  skipAction: Type.TOptional<Type.TLiteral<"exit">>;
10299
11841
  }>;
10300
11842
  /** One OpenClaw reply; `action` tells clients about conversation handoffs. */
10301
11843
  declare const SystemAgentChatResultSchema: Type.TObject<{
10302
11844
  sessionId: Type.TString;
10303
- reply: Type.TString; /** The next reply is a hosted-wizard secret and clients must mask its input/echo. */
10304
- sensitive: Type.TOptional<Type.TBoolean>; /** The hosted wizard will consume the next message as its current step answer. */
11845
+ reply: Type.TString;
11846
+ /** The next reply is a hosted-wizard secret and clients must mask its input/echo. */
11847
+ sensitive: Type.TOptional<Type.TBoolean>;
11848
+ /** The hosted wizard will consume the next message as its current step answer. */
10305
11849
  wizardInputPending: Type.TOptional<Type.TBoolean>;
10306
- action: Type.TUnion<[Type.TLiteral<"none">, Type.TLiteral<"open-agent">, Type.TLiteral<"exit">]>; /** Optional localized-draft intent for an `open-agent` handoff. */
10307
- agentDraft: Type.TOptional<Type.TLiteral<"hatch">>; /** Destination agent for a specific `open-agent` handoff. */
11850
+ action: Type.TUnion<[Type.TLiteral<"none">, Type.TLiteral<"open-agent">, Type.TLiteral<"exit">]>;
11851
+ /** Optional localized-draft intent for an `open-agent` handoff. */
11852
+ agentDraft: Type.TOptional<Type.TLiteral<"hatch">>;
11853
+ /** Destination agent for a specific `open-agent` handoff. */
10308
11854
  agentId: Type.TOptional<Type.TString>;
10309
11855
  needsApproval: Type.TOptional<Type.TBoolean>;
10310
11856
  proposalId: Type.TOptional<Type.TString>;
@@ -10315,10 +11861,13 @@ declare const SystemAgentChatResultSchema: Type.TObject<{
10315
11861
  options: Type.TArray<Type.TObject<{
10316
11862
  label: Type.TString;
10317
11863
  description: Type.TOptional<Type.TString>;
10318
- recommended: Type.TOptional<Type.TBoolean>; /** Message text a client sends when this option is chosen; defaults to label. */
11864
+ recommended: Type.TOptional<Type.TBoolean>;
11865
+ /** Message text a client sends when this option is chosen; defaults to label. */
10319
11866
  reply: Type.TOptional<Type.TString>;
10320
- }>>; /** Free-text answers are also accepted for this question. */
10321
- isOther: Type.TOptional<Type.TBoolean>; /** Client-owned action for the visible skip control; omitted means send a reply. */
11867
+ }>>;
11868
+ /** Free-text answers are also accepted for this question. */
11869
+ isOther: Type.TOptional<Type.TBoolean>;
11870
+ /** Client-owned action for the visible skip control; omitted means send a reply. */
10322
11871
  skipAction: Type.TOptional<Type.TLiteral<"exit">>;
10323
11872
  }>>;
10324
11873
  /**
@@ -10400,22 +11949,26 @@ declare const SystemChangesListResultSchema: Type.TObject<{
10400
11949
  * broken default model behind.
10401
11950
  */
10402
11951
  declare const SystemAgentSetupDetectParamsSchema: Type.TObject<{
10403
- /** Agent whose model, credentials, and workspace are being inspected. */agentId: Type.TOptional<Type.TString>;
11952
+ /** Agent whose model, credentials, and workspace are being inspected. */
11953
+ agentId: Type.TOptional<Type.TString>;
10404
11954
  }>;
10405
11955
  declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
10406
11956
  candidates: Type.TArray<Type.TObject<{
10407
- kind: Type.TUnion<[Type.TLiteral<"existing-model">, Type.TLiteral<"openai-api-key">, Type.TLiteral<"anthropic-api-key">, Type.TLiteral<"claude-cli">, Type.TLiteral<"codex-cli">, Type.TLiteral<"gemini-cli">, Type.TTemplateLiteral<"^provider-auto:.*$">]>; /** Canonical provider identity for clients with bundled brand artwork. */
11957
+ kind: Type.TUnion<[Type.TLiteral<"existing-model">, Type.TLiteral<"openai-api-key">, Type.TLiteral<"anthropic-api-key">, Type.TLiteral<"claude-cli">, Type.TLiteral<"codex-cli">, Type.TLiteral<"gemini-cli">, Type.TTemplateLiteral<"^provider-auto:.*$">]>;
11958
+ /** Canonical provider identity for clients with bundled brand artwork. */
10408
11959
  brandId: Type.TOptional<Type.TString>;
10409
11960
  label: Type.TString;
10410
11961
  detail: Type.TString;
10411
11962
  modelRef: Type.TString;
10412
- recommended: Type.TBoolean; /** true: verified; false: definitively logged out; absent: unknown. */
11963
+ recommended: Type.TBoolean;
11964
+ /** true: verified; false: definitively logged out; absent: unknown. */
10413
11965
  credentials: Type.TOptional<Type.TBoolean>;
10414
11966
  icon: Type.TOptional<Type.TString>;
10415
11967
  website: Type.TOptional<Type.TString>;
10416
11968
  }>>;
10417
11969
  unavailableCandidates: Type.TOptional<Type.TArray<Type.TObject<{
10418
- id: Type.TString; /** Canonical provider identity for clients with bundled brand artwork. */
11970
+ id: Type.TString;
11971
+ /** Canonical provider identity for clients with bundled brand artwork. */
10419
11972
  brandId: Type.TOptional<Type.TString>;
10420
11973
  label: Type.TString;
10421
11974
  detail: Type.TString;
@@ -10424,18 +11977,24 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
10424
11977
  manualProviderId: Type.TOptional<Type.TString>;
10425
11978
  icon: Type.TOptional<Type.TString>;
10426
11979
  website: Type.TOptional<Type.TString>;
10427
- }>>>; /** Text-inference key/token methods exposed by the Gateway provider registry. */
11980
+ }>>>;
11981
+ /** Text-inference key/token methods exposed by the Gateway provider registry. */
10428
11982
  manualProviders: Type.TArray<Type.TObject<{
10429
- /** Opaque provider-auth choice sent back during activation. */id: Type.TString; /** Canonical provider identity for clients with bundled brand artwork. */
10430
- brandId: Type.TOptional<Type.TString>; /** Provider family shown above the specific credential method. */
11983
+ /** Opaque provider-auth choice sent back during activation. */
11984
+ id: Type.TString;
11985
+ /** Canonical provider identity for clients with bundled brand artwork. */
11986
+ brandId: Type.TOptional<Type.TString>;
11987
+ /** Provider family shown above the specific credential method. */
10431
11988
  groupLabel: Type.TOptional<Type.TString>;
10432
11989
  label: Type.TString;
10433
11990
  hint: Type.TOptional<Type.TString>;
10434
11991
  icon: Type.TOptional<Type.TString>;
10435
11992
  website: Type.TOptional<Type.TString>;
10436
- }>>; /** Provider-owned browser and device-code login methods. */
11993
+ }>>;
11994
+ /** Provider-owned browser and device-code login methods. */
10437
11995
  authOptions: Type.TOptional<Type.TArray<Type.TObject<{
10438
- id: Type.TString; /** Canonical provider identity for clients with bundled brand artwork. */
11996
+ id: Type.TString;
11997
+ /** Canonical provider identity for clients with bundled brand artwork. */
10439
11998
  brandId: Type.TOptional<Type.TString>;
10440
11999
  label: Type.TString;
10441
12000
  hint: Type.TOptional<Type.TString>;
@@ -10444,9 +12003,11 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
10444
12003
  website: Type.TOptional<Type.TString>;
10445
12004
  kind: Type.TUnion<[Type.TLiteral<"oauth">, Type.TLiteral<"device-code">]>;
10446
12005
  featured: Type.TBoolean;
10447
- }>>>; /** Provider-owned app-guided local model setup methods. */
12006
+ }>>>;
12007
+ /** Provider-owned app-guided local model setup methods. */
10448
12008
  prepareOptions: Type.TOptional<Type.TArray<Type.TObject<{
10449
- id: Type.TString; /** Canonical provider identity for clients with bundled brand artwork. */
12009
+ id: Type.TString;
12010
+ /** Canonical provider identity for clients with bundled brand artwork. */
10450
12011
  brandId: Type.TOptional<Type.TString>;
10451
12012
  label: Type.TString;
10452
12013
  hint: Type.TOptional<Type.TString>;
@@ -10455,7 +12016,8 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
10455
12016
  website: Type.TOptional<Type.TString>;
10456
12017
  }>>>;
10457
12018
  recommendedInstalls: Type.TOptional<Type.TArray<Type.TObject<{
10458
- id: Type.TString; /** Canonical provider or tool identity for bundled client artwork. */
12019
+ id: Type.TString;
12020
+ /** Canonical provider or tool identity for bundled client artwork. */
10459
12021
  brandId: Type.TOptional<Type.TString>;
10460
12022
  label: Type.TString;
10461
12023
  hint: Type.TString;
@@ -10469,7 +12031,8 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
10469
12031
  }>;
10470
12032
  /** Live verification of the Gateway's current default-agent inference route. */
10471
12033
  declare const SystemAgentSetupVerifyParamsSchema: Type.TObject<{
10472
- /** Agent whose configured inference route is being verified. */agentId: Type.TOptional<Type.TString>;
12034
+ /** Agent whose configured inference route is being verified. */
12035
+ agentId: Type.TOptional<Type.TString>;
10473
12036
  }>;
10474
12037
  declare const SystemAgentSetupVerifyResultSchema: Type.TUnion<[Type.TObject<{
10475
12038
  ok: Type.TLiteral<true>;
@@ -10481,25 +12044,35 @@ declare const SystemAgentSetupVerifyResultSchema: Type.TUnion<[Type.TObject<{
10481
12044
  error: Type.TString;
10482
12045
  }>]>;
10483
12046
  declare const SystemAgentSetupActivateParamsSchema: Type.TObject<{
10484
- /** Agent that owns the verified and persisted inference route. */agentId: Type.TOptional<Type.TString>;
10485
- kind: Type.TUnion<[Type.TLiteral<"existing-model">, Type.TLiteral<"openai-api-key">, Type.TLiteral<"anthropic-api-key">, Type.TLiteral<"claude-cli">, Type.TLiteral<"codex-cli">, Type.TLiteral<"gemini-cli">, Type.TTemplateLiteral<"^provider-auto:.*$">, Type.TLiteral<"api-key">]>; /** Exact detected model for this route; prevents detect/activate drift. */
10486
- modelRef: Type.TOptional<Type.TString>; /** Manual step only: opaque provider-auth choice returned by detection. */
10487
- authChoice: Type.TOptional<Type.TString>; /** Manual step only: the pasted API key or token; masked by clients, never echoed. */
12047
+ /** Agent that owns the verified and persisted inference route. */
12048
+ agentId: Type.TOptional<Type.TString>;
12049
+ kind: Type.TUnion<[Type.TLiteral<"existing-model">, Type.TLiteral<"openai-api-key">, Type.TLiteral<"anthropic-api-key">, Type.TLiteral<"claude-cli">, Type.TLiteral<"codex-cli">, Type.TLiteral<"gemini-cli">, Type.TTemplateLiteral<"^provider-auto:.*$">, Type.TLiteral<"api-key">]>;
12050
+ /** Exact detected model for this route; prevents detect/activate drift. */
12051
+ modelRef: Type.TOptional<Type.TString>;
12052
+ /** Manual step only: opaque provider-auth choice returned by detection. */
12053
+ authChoice: Type.TOptional<Type.TString>;
12054
+ /** Manual step only: the pasted API key or token; masked by clients, never echoed. */
10488
12055
  apiKey: Type.TOptional<Type.TString>;
10489
12056
  workspace: Type.TOptional<Type.TString>;
10490
12057
  }>;
10491
12058
  declare const SystemAgentSetupActivateResultSchema: Type.TObject<{
10492
- ok: Type.TBoolean; /** Present on success: the model ref that answered the live test. */
12059
+ ok: Type.TBoolean;
12060
+ /** Present on success: the model ref that answered the live test. */
10493
12061
  modelRef: Type.TOptional<Type.TString>;
10494
- latencyMs: Type.TOptional<Type.TNumber>; /** Human-readable setup summary lines (workspace, model, gateway). */
10495
- lines: Type.TOptional<Type.TArray<Type.TString>>; /** The committed plugin source requires clients to reconnect before continuing. */
10496
- gatewayRestartRequired: Type.TOptional<Type.TLiteral<true>>; /** Present on failure: coarse bucket for client copy + docs links. */
12062
+ latencyMs: Type.TOptional<Type.TNumber>;
12063
+ /** Human-readable setup summary lines (workspace, model, gateway). */
12064
+ lines: Type.TOptional<Type.TArray<Type.TString>>;
12065
+ /** The committed plugin source requires clients to reconnect before continuing. */
12066
+ gatewayRestartRequired: Type.TOptional<Type.TLiteral<true>>;
12067
+ /** Present on failure: coarse bucket for client copy + docs links. */
10497
12068
  status: Type.TOptional<Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"auth">, Type.TLiteral<"rate_limit">, Type.TLiteral<"billing">, Type.TLiteral<"timeout">, Type.TLiteral<"format">, Type.TLiteral<"unavailable">, Type.TLiteral<"unknown">]>>;
10498
12069
  error: Type.TOptional<Type.TString>;
10499
12070
  }>;
10500
12071
  /** Starts one provider-owned interactive login as a gateway wizard session. */
10501
12072
  declare const SystemAgentSetupAuthStartParamsSchema: Type.TObject<{
10502
- /** Client-generated so cancellation remains possible if the start reply is lost. */sessionId: Type.TString; /** Agent that owns credentials and model selection created by this setup flow. */
12073
+ /** Client-generated so cancellation remains possible if the start reply is lost. */
12074
+ sessionId: Type.TString;
12075
+ /** Agent that owns credentials and model selection created by this setup flow. */
10503
12076
  agentId: Type.TOptional<Type.TString>;
10504
12077
  authChoice: Type.TString;
10505
12078
  workspace: Type.TOptional<Type.TString>;
@@ -10688,7 +12261,8 @@ declare const CronJobSchema: Type.TObject<{
10688
12261
  enabled: Type.TBoolean;
10689
12262
  deleteAfterRun: Type.TOptional<Type.TBoolean>;
10690
12263
  createdAtMs: Type.TInteger;
10691
- updatedAtMs: Type.TInteger; /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
12264
+ updatedAtMs: Type.TInteger;
12265
+ /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
10692
12266
  configRevision: Type.TOptional<Type.TString>;
10693
12267
  schedule: Type.TUnion<[Type.TObject<{
10694
12268
  kind: Type.TLiteral<"at">;
@@ -10761,6 +12335,8 @@ declare const CronJobSchema: Type.TObject<{
10761
12335
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
10762
12336
  }>, Type.TObject<{
10763
12337
  kind: Type.TLiteral<"heartbeat">;
12338
+ }>, Type.TObject<{
12339
+ kind: Type.TLiteral<"skillCollectionReview">;
10764
12340
  }>]>;
10765
12341
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
10766
12342
  to: Type.TOptional<Type.TString>;
@@ -11109,7 +12685,8 @@ declare const CronDeclarativeAddResultSchema: Type.TObject<{
11109
12685
  enabled: Type.TBoolean;
11110
12686
  deleteAfterRun: Type.TOptional<Type.TBoolean>;
11111
12687
  createdAtMs: Type.TInteger;
11112
- updatedAtMs: Type.TInteger; /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
12688
+ updatedAtMs: Type.TInteger;
12689
+ /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
11113
12690
  configRevision: Type.TOptional<Type.TString>;
11114
12691
  schedule: Type.TUnion<[Type.TObject<{
11115
12692
  kind: Type.TLiteral<"at">;
@@ -11182,6 +12759,8 @@ declare const CronDeclarativeAddResultSchema: Type.TObject<{
11182
12759
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
11183
12760
  }>, Type.TObject<{
11184
12761
  kind: Type.TLiteral<"heartbeat">;
12762
+ }>, Type.TObject<{
12763
+ kind: Type.TLiteral<"skillCollectionReview">;
11185
12764
  }>]>;
11186
12765
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
11187
12766
  to: Type.TOptional<Type.TString>;
@@ -11325,7 +12904,8 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
11325
12904
  enabled: Type.TBoolean;
11326
12905
  deleteAfterRun: Type.TOptional<Type.TBoolean>;
11327
12906
  createdAtMs: Type.TInteger;
11328
- updatedAtMs: Type.TInteger; /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
12907
+ updatedAtMs: Type.TInteger;
12908
+ /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
11329
12909
  configRevision: Type.TOptional<Type.TString>;
11330
12910
  schedule: Type.TUnion<[Type.TObject<{
11331
12911
  kind: Type.TLiteral<"at">;
@@ -11398,6 +12978,8 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
11398
12978
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
11399
12979
  }>, Type.TObject<{
11400
12980
  kind: Type.TLiteral<"heartbeat">;
12981
+ }>, Type.TObject<{
12982
+ kind: Type.TLiteral<"skillCollectionReview">;
11401
12983
  }>]>;
11402
12984
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
11403
12985
  to: Type.TOptional<Type.TString>;
@@ -11541,7 +13123,8 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
11541
13123
  enabled: Type.TBoolean;
11542
13124
  deleteAfterRun: Type.TOptional<Type.TBoolean>;
11543
13125
  createdAtMs: Type.TInteger;
11544
- updatedAtMs: Type.TInteger; /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
13126
+ updatedAtMs: Type.TInteger;
13127
+ /** Opaque Gateway-computed token for the job definition, excluding scheduler state. */
11545
13128
  configRevision: Type.TOptional<Type.TString>;
11546
13129
  schedule: Type.TUnion<[Type.TObject<{
11547
13130
  kind: Type.TLiteral<"at">;
@@ -11614,6 +13197,8 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
11614
13197
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
11615
13198
  }>, Type.TObject<{
11616
13199
  kind: Type.TLiteral<"heartbeat">;
13200
+ }>, Type.TObject<{
13201
+ kind: Type.TLiteral<"skillCollectionReview">;
11617
13202
  }>]>;
11618
13203
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
11619
13204
  to: Type.TOptional<Type.TString>;
@@ -12013,6 +13598,7 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
12013
13598
  providerId: Type.TString;
12014
13599
  trust: Type.TOptional<Type.TString>;
12015
13600
  executionMode: Type.TOptional<Type.TUnion<[Type.TLiteral<"worker-turn">, Type.TLiteral<"remote-exec">]>>;
13601
+ executionModes: Type.TOptional<Type.TUnion<[Type.TTuple<[Type.TUnion<[Type.TLiteral<"worker-turn">, Type.TLiteral<"remote-exec">]>]>, Type.TTuple<[Type.TLiteral<"worker-turn">, Type.TLiteral<"remote-exec">]>]>>;
12016
13602
  machines: Type.TOptional<Type.TArray<Type.TObject<{
12017
13603
  id: Type.TString;
12018
13604
  label: Type.TString;
@@ -12436,6 +14022,22 @@ declare const ExecApprovalRequestParamsSchema: Type.TObject<{
12436
14022
  security: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
12437
14023
  ask: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
12438
14024
  warningText: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14025
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
14026
+ kind: Type.TLiteral<"message-send">;
14027
+ target: Type.TString;
14028
+ recipientCount: Type.TInteger;
14029
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
14030
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
14031
+ }>, Type.TObject<{
14032
+ kind: Type.TLiteral<"payment">;
14033
+ amount: Type.TString;
14034
+ currency: Type.TString;
14035
+ target: Type.TString;
14036
+ }>, Type.TObject<{
14037
+ kind: Type.TLiteral<"external-post">;
14038
+ target: Type.TString;
14039
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
14040
+ }>]>>;
12439
14041
  unavailableDecisions: Type.TOptional<Type.TArray<Type.TString>>;
12440
14042
  commandSpans: Type.TOptional<Type.TArray<Type.TObject<{
12441
14043
  startIndex: Type.TInteger;
@@ -12454,6 +14056,7 @@ declare const ExecApprovalRequestParamsSchema: Type.TObject<{
12454
14056
  approvalReviewerDeviceIds: Type.TOptional<Type.TArray<Type.TString>>;
12455
14057
  requireDeliveryRoute: Type.TOptional<Type.TBoolean>;
12456
14058
  suppressDelivery: Type.TOptional<Type.TBoolean>;
14059
+ deliverToApprovalClientsOnly: Type.TOptional<Type.TBoolean>;
12457
14060
  timeoutMs: Type.TOptional<Type.TInteger>;
12458
14061
  twoPhase: Type.TOptional<Type.TBoolean>;
12459
14062
  }>;
@@ -12753,21 +14356,28 @@ type DesktopLaunchParams = Static<typeof DesktopLaunchParamsSchema>;
12753
14356
  //#endregion
12754
14357
  //#region src/schema/fs.d.ts
12755
14358
  declare const FsListDirParamsSchema: Type.TObject<{
12756
- /** Absolute directory to list; for non-admin Gateway callers, omission means the first configured agent workspace. */path: Type.TOptional<Type.TString>; /** Connected node host to browse; omitted means the Gateway host. */
14359
+ /** Absolute directory to list; for non-admin Gateway callers, omission means the first configured agent workspace. */
14360
+ path: Type.TOptional<Type.TString>;
14361
+ /** Connected node host to browse; omitted means the Gateway host. */
12757
14362
  nodeId: Type.TOptional<Type.TString>;
12758
14363
  }>;
12759
14364
  declare const FsDirEntrySchema: Type.TObject<{
12760
14365
  name: Type.TString;
12761
- path: Type.TString; /** Dot-prefixed directories; clients render them dimmed after visible ones. */
14366
+ path: Type.TString;
14367
+ /** Dot-prefixed directories; clients render them dimmed after visible ones. */
12762
14368
  hidden: Type.TOptional<Type.TBoolean>;
12763
14369
  }>;
12764
14370
  declare const FsListDirResultSchema: Type.TObject<{
12765
- /** Resolved absolute path that was listed. */path: Type.TString; /** Absent at the filesystem root. */
12766
- parent: Type.TOptional<Type.TString>; /** Selected host's home directory, for the picker's "home" shortcut. */
14371
+ /** Resolved absolute path that was listed. */
14372
+ path: Type.TString;
14373
+ /** Absent at the filesystem root. */
14374
+ parent: Type.TOptional<Type.TString>;
14375
+ /** Selected host's home directory, for the picker's "home" shortcut. */
12767
14376
  home: Type.TString;
12768
14377
  entries: Type.TArray<Type.TObject<{
12769
14378
  name: Type.TString;
12770
- path: Type.TString; /** Dot-prefixed directories; clients render them dimmed after visible ones. */
14379
+ path: Type.TString;
14380
+ /** Dot-prefixed directories; clients render them dimmed after visible ones. */
12771
14381
  hidden: Type.TOptional<Type.TBoolean>;
12772
14382
  }>>;
12773
14383
  }>;
@@ -12800,6 +14410,7 @@ declare const GatewaySuspendBlockerSchema: Type.TObject<{
12800
14410
  declare const GatewaySuspendPrepareParamsSchema: Type.TObject<{
12801
14411
  requestId: Type.TString;
12802
14412
  terminalPolicy: Type.TOptional<Type.TUnion<[Type.TLiteral<"preserve">, Type.TLiteral<"terminate">]>>;
14413
+ drain: Type.TOptional<Type.TBoolean>;
12803
14414
  }>;
12804
14415
  declare const GatewaySuspendPrepareBusyResultSchema: Type.TObject<{
12805
14416
  status: Type.TLiteral<"busy">;
@@ -12820,6 +14431,26 @@ declare const GatewaySuspendPrepareBusyResultSchema: Type.TObject<{
12820
14431
  }>>;
12821
14432
  }>>;
12822
14433
  }>;
14434
+ declare const GatewaySuspendPrepareDrainingResultSchema: Type.TObject<{
14435
+ status: Type.TLiteral<"draining">;
14436
+ suspensionId: Type.TString;
14437
+ expiresAtMs: Type.TInteger;
14438
+ retryAfterMs: Type.TInteger;
14439
+ activeCount: Type.TInteger;
14440
+ blockers: Type.TArray<Type.TObject<{
14441
+ kind: Type.TUnion<[Type.TLiteral<"queue">, Type.TLiteral<"reply">, Type.TLiteral<"embedded-run">, Type.TLiteral<"background-exec">, Type.TLiteral<"cron-run">, Type.TLiteral<"task">, Type.TLiteral<"root-request">, Type.TLiteral<"session-admission">, Type.TLiteral<"session-mutation">, Type.TLiteral<"chat-run">, Type.TLiteral<"queued-turn">, Type.TLiteral<"terminal-persistence">, Type.TLiteral<"terminal-session">]>;
14442
+ count: Type.TInteger;
14443
+ message: Type.TString;
14444
+ task: Type.TOptional<Type.TObject<{
14445
+ taskId: Type.TString;
14446
+ status: Type.TLiteral<"running">;
14447
+ runtime: Type.TUnion<[Type.TLiteral<"subagent">, Type.TLiteral<"acp">, Type.TLiteral<"cli">, Type.TLiteral<"cron">]>;
14448
+ runId: Type.TOptional<Type.TString>;
14449
+ label: Type.TOptional<Type.TString>;
14450
+ title: Type.TOptional<Type.TString>;
14451
+ }>>;
14452
+ }>>;
14453
+ }>;
12823
14454
  declare const GatewaySuspendPrepareReadyResultSchema: Type.TObject<{
12824
14455
  status: Type.TLiteral<"ready">;
12825
14456
  suspensionId: Type.TString;
@@ -12857,6 +14488,25 @@ declare const GatewaySuspendPrepareResultSchema: Type.TUnion<[Type.TObject<{
12857
14488
  title: Type.TOptional<Type.TString>;
12858
14489
  }>>;
12859
14490
  }>>;
14491
+ }>, Type.TObject<{
14492
+ status: Type.TLiteral<"draining">;
14493
+ suspensionId: Type.TString;
14494
+ expiresAtMs: Type.TInteger;
14495
+ retryAfterMs: Type.TInteger;
14496
+ activeCount: Type.TInteger;
14497
+ blockers: Type.TArray<Type.TObject<{
14498
+ kind: Type.TUnion<[Type.TLiteral<"queue">, Type.TLiteral<"reply">, Type.TLiteral<"embedded-run">, Type.TLiteral<"background-exec">, Type.TLiteral<"cron-run">, Type.TLiteral<"task">, Type.TLiteral<"root-request">, Type.TLiteral<"session-admission">, Type.TLiteral<"session-mutation">, Type.TLiteral<"chat-run">, Type.TLiteral<"queued-turn">, Type.TLiteral<"terminal-persistence">, Type.TLiteral<"terminal-session">]>;
14499
+ count: Type.TInteger;
14500
+ message: Type.TString;
14501
+ task: Type.TOptional<Type.TObject<{
14502
+ taskId: Type.TString;
14503
+ status: Type.TLiteral<"running">;
14504
+ runtime: Type.TUnion<[Type.TLiteral<"subagent">, Type.TLiteral<"acp">, Type.TLiteral<"cli">, Type.TLiteral<"cron">]>;
14505
+ runId: Type.TOptional<Type.TString>;
14506
+ label: Type.TOptional<Type.TString>;
14507
+ title: Type.TOptional<Type.TString>;
14508
+ }>>;
14509
+ }>>;
12860
14510
  }>, Type.TObject<{
12861
14511
  status: Type.TLiteral<"ready">;
12862
14512
  suspensionId: Type.TString;
@@ -12882,12 +14532,49 @@ declare const GatewaySuspendStatusParamsSchema: Type.TObject<{
12882
14532
  declare const GatewaySuspendStatusRunningResultSchema: Type.TObject<{
12883
14533
  status: Type.TLiteral<"running">;
12884
14534
  }>;
14535
+ declare const GatewaySuspendStatusDrainingResultSchema: Type.TObject<{
14536
+ status: Type.TLiteral<"draining">;
14537
+ expiresAtMs: Type.TInteger;
14538
+ retryAfterMs: Type.TInteger;
14539
+ activeCount: Type.TInteger;
14540
+ blockers: Type.TArray<Type.TObject<{
14541
+ kind: Type.TUnion<[Type.TLiteral<"queue">, Type.TLiteral<"reply">, Type.TLiteral<"embedded-run">, Type.TLiteral<"background-exec">, Type.TLiteral<"cron-run">, Type.TLiteral<"task">, Type.TLiteral<"root-request">, Type.TLiteral<"session-admission">, Type.TLiteral<"session-mutation">, Type.TLiteral<"chat-run">, Type.TLiteral<"queued-turn">, Type.TLiteral<"terminal-persistence">, Type.TLiteral<"terminal-session">]>;
14542
+ count: Type.TInteger;
14543
+ message: Type.TString;
14544
+ task: Type.TOptional<Type.TObject<{
14545
+ taskId: Type.TString;
14546
+ status: Type.TLiteral<"running">;
14547
+ runtime: Type.TUnion<[Type.TLiteral<"subagent">, Type.TLiteral<"acp">, Type.TLiteral<"cli">, Type.TLiteral<"cron">]>;
14548
+ runId: Type.TOptional<Type.TString>;
14549
+ label: Type.TOptional<Type.TString>;
14550
+ title: Type.TOptional<Type.TString>;
14551
+ }>>;
14552
+ }>>;
14553
+ }>;
12885
14554
  declare const GatewaySuspendStatusReadyResultSchema: Type.TObject<{
12886
14555
  status: Type.TLiteral<"ready">;
12887
14556
  expiresAtMs: Type.TInteger;
12888
14557
  }>;
12889
14558
  declare const GatewaySuspendStatusResultSchema: Type.TUnion<[Type.TObject<{
12890
14559
  status: Type.TLiteral<"running">;
14560
+ }>, Type.TObject<{
14561
+ status: Type.TLiteral<"draining">;
14562
+ expiresAtMs: Type.TInteger;
14563
+ retryAfterMs: Type.TInteger;
14564
+ activeCount: Type.TInteger;
14565
+ blockers: Type.TArray<Type.TObject<{
14566
+ kind: Type.TUnion<[Type.TLiteral<"queue">, Type.TLiteral<"reply">, Type.TLiteral<"embedded-run">, Type.TLiteral<"background-exec">, Type.TLiteral<"cron-run">, Type.TLiteral<"task">, Type.TLiteral<"root-request">, Type.TLiteral<"session-admission">, Type.TLiteral<"session-mutation">, Type.TLiteral<"chat-run">, Type.TLiteral<"queued-turn">, Type.TLiteral<"terminal-persistence">, Type.TLiteral<"terminal-session">]>;
14567
+ count: Type.TInteger;
14568
+ message: Type.TString;
14569
+ task: Type.TOptional<Type.TObject<{
14570
+ taskId: Type.TString;
14571
+ status: Type.TLiteral<"running">;
14572
+ runtime: Type.TUnion<[Type.TLiteral<"subagent">, Type.TLiteral<"acp">, Type.TLiteral<"cli">, Type.TLiteral<"cron">]>;
14573
+ runId: Type.TOptional<Type.TString>;
14574
+ label: Type.TOptional<Type.TString>;
14575
+ title: Type.TOptional<Type.TString>;
14576
+ }>>;
14577
+ }>>;
12891
14578
  }>, Type.TObject<{
12892
14579
  status: Type.TLiteral<"ready">;
12893
14580
  expiresAtMs: Type.TInteger;
@@ -12954,6 +14641,7 @@ declare const ChatHistoryDeltaResultSchema: Type.TObject<{
12954
14641
  deltaCursor: Type.TString;
12955
14642
  sessionInfo: Type.TUnknown;
12956
14643
  agentsList: Type.TOptional<Type.TUnknown>;
14644
+ inFlightRun: Type.TOptional<Type.TUnknown>;
12957
14645
  metadata: Type.TOptional<Type.TUnknown>;
12958
14646
  }>;
12959
14647
  /** Normal cursor discontinuity; clients recover with a fresh tail request. */
@@ -12967,6 +14655,7 @@ declare const ChatHistoryCursorResultSchema: Type.TUnion<[Type.TObject<{
12967
14655
  deltaCursor: Type.TString;
12968
14656
  sessionInfo: Type.TUnknown;
12969
14657
  agentsList: Type.TOptional<Type.TUnknown>;
14658
+ inFlightRun: Type.TOptional<Type.TUnknown>;
12970
14659
  metadata: Type.TOptional<Type.TUnknown>;
12971
14660
  }>, Type.TObject<{
12972
14661
  kind: Type.TLiteral<"reset">;
@@ -13504,6 +15193,16 @@ declare const QuestionOptionSchema: Type.TObject<{
13504
15193
  label: Type.TString;
13505
15194
  description: Type.TOptional<Type.TString>;
13506
15195
  }>;
15196
+ declare const QuestionSecretStoreBindingSchema: Type.TObject<{
15197
+ name: Type.TString;
15198
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15199
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15200
+ reason: Type.TOptional<Type.TString>;
15201
+ }>;
15202
+ declare const QuestionSecretStoreExistingSchema: Type.TObject<{
15203
+ updatedAtMs: Type.TInteger;
15204
+ updatedBy: Type.TOptional<Type.TString>;
15205
+ }>;
13507
15206
  /** Unnormalized question accepted by question.request. */
13508
15207
  declare const QuestionRequestQuestionSchema: Type.TObject<{
13509
15208
  questionId: Type.TString;
@@ -13516,9 +15215,19 @@ declare const QuestionRequestQuestionSchema: Type.TObject<{
13516
15215
  multiSelect: Type.TOptional<Type.TBoolean>;
13517
15216
  isOther: Type.TOptional<Type.TBoolean>;
13518
15217
  isSecret: Type.TOptional<Type.TBoolean>;
15218
+ secretStore: Type.TOptional<Type.TObject<{
15219
+ name: Type.TString;
15220
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15221
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15222
+ reason: Type.TOptional<Type.TString>;
15223
+ }>>;
13519
15224
  }>;
13520
15225
  /** Canonical normalized question shown to an operator. */
13521
15226
  declare const QuestionSchema: Type.TObject<{
15227
+ secretStoreExisting: Type.TOptional<Type.TObject<{
15228
+ updatedAtMs: Type.TInteger;
15229
+ updatedBy: Type.TOptional<Type.TString>;
15230
+ }>>;
13522
15231
  questionId: Type.TString;
13523
15232
  header: Type.TString;
13524
15233
  question: Type.TString;
@@ -13529,6 +15238,12 @@ declare const QuestionSchema: Type.TObject<{
13529
15238
  multiSelect: Type.TOptional<Type.TBoolean>;
13530
15239
  isOther: Type.TOptional<Type.TBoolean>;
13531
15240
  isSecret: Type.TOptional<Type.TBoolean>;
15241
+ secretStore: Type.TOptional<Type.TObject<{
15242
+ name: Type.TString;
15243
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15244
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15245
+ reason: Type.TOptional<Type.TString>;
15246
+ }>>;
13532
15247
  }>;
13533
15248
  declare const QuestionAnswersSchema: Type.TObject<{
13534
15249
  answers: Type.TRecord<"^.*$", Type.TArray<Type.TString>>;
@@ -13543,6 +15258,10 @@ declare const QuestionStatusSchema: Type.TUnion<[Type.TLiteral<"pending">, Type.
13543
15258
  declare const QuestionRecordSchema: Type.TObject<{
13544
15259
  id: Type.TString;
13545
15260
  questions: Type.TArray<Type.TObject<{
15261
+ secretStoreExisting: Type.TOptional<Type.TObject<{
15262
+ updatedAtMs: Type.TInteger;
15263
+ updatedBy: Type.TOptional<Type.TString>;
15264
+ }>>;
13546
15265
  questionId: Type.TString;
13547
15266
  header: Type.TString;
13548
15267
  question: Type.TString;
@@ -13553,6 +15272,12 @@ declare const QuestionRecordSchema: Type.TObject<{
13553
15272
  multiSelect: Type.TOptional<Type.TBoolean>;
13554
15273
  isOther: Type.TOptional<Type.TBoolean>;
13555
15274
  isSecret: Type.TOptional<Type.TBoolean>;
15275
+ secretStore: Type.TOptional<Type.TObject<{
15276
+ name: Type.TString;
15277
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15278
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15279
+ reason: Type.TOptional<Type.TString>;
15280
+ }>>;
13556
15281
  }>>;
13557
15282
  agentId: Type.TOptional<Type.TString>;
13558
15283
  sessionKey: Type.TOptional<Type.TString>;
@@ -13578,6 +15303,12 @@ declare const QuestionRequestParamsSchema: Type.TObject<{
13578
15303
  multiSelect: Type.TOptional<Type.TBoolean>;
13579
15304
  isOther: Type.TOptional<Type.TBoolean>;
13580
15305
  isSecret: Type.TOptional<Type.TBoolean>;
15306
+ secretStore: Type.TOptional<Type.TObject<{
15307
+ name: Type.TString;
15308
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15309
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15310
+ reason: Type.TOptional<Type.TString>;
15311
+ }>>;
13581
15312
  }>>;
13582
15313
  agentId: Type.TOptional<Type.TString>;
13583
15314
  sessionKey: Type.TOptional<Type.TString>;
@@ -13609,6 +15340,7 @@ declare const QuestionResolveParamsSchema: Type.TUnion<[Type.TObject<{
13609
15340
  answers: Type.TObject<{
13610
15341
  answers: Type.TRecord<"^.*$", Type.TArray<Type.TString>>;
13611
15342
  }>;
15343
+ secretStoreAllowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
13612
15344
  resolvedBy: Type.TOptional<Type.TString>;
13613
15345
  }>, Type.TObject<{
13614
15346
  id: Type.TString;
@@ -13630,6 +15362,10 @@ declare const QuestionGetResultSchema: Type.TObject<{
13630
15362
  question: Type.TObject<{
13631
15363
  id: Type.TString;
13632
15364
  questions: Type.TArray<Type.TObject<{
15365
+ secretStoreExisting: Type.TOptional<Type.TObject<{
15366
+ updatedAtMs: Type.TInteger;
15367
+ updatedBy: Type.TOptional<Type.TString>;
15368
+ }>>;
13633
15369
  questionId: Type.TString;
13634
15370
  header: Type.TString;
13635
15371
  question: Type.TString;
@@ -13640,6 +15376,12 @@ declare const QuestionGetResultSchema: Type.TObject<{
13640
15376
  multiSelect: Type.TOptional<Type.TBoolean>;
13641
15377
  isOther: Type.TOptional<Type.TBoolean>;
13642
15378
  isSecret: Type.TOptional<Type.TBoolean>;
15379
+ secretStore: Type.TOptional<Type.TObject<{
15380
+ name: Type.TString;
15381
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15382
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15383
+ reason: Type.TOptional<Type.TString>;
15384
+ }>>;
13643
15385
  }>>;
13644
15386
  agentId: Type.TOptional<Type.TString>;
13645
15387
  sessionKey: Type.TOptional<Type.TString>;
@@ -13658,6 +15400,10 @@ declare const QuestionListResultSchema: Type.TObject<{
13658
15400
  questions: Type.TArray<Type.TObject<{
13659
15401
  id: Type.TString;
13660
15402
  questions: Type.TArray<Type.TObject<{
15403
+ secretStoreExisting: Type.TOptional<Type.TObject<{
15404
+ updatedAtMs: Type.TInteger;
15405
+ updatedBy: Type.TOptional<Type.TString>;
15406
+ }>>;
13661
15407
  questionId: Type.TString;
13662
15408
  header: Type.TString;
13663
15409
  question: Type.TString;
@@ -13668,6 +15414,12 @@ declare const QuestionListResultSchema: Type.TObject<{
13668
15414
  multiSelect: Type.TOptional<Type.TBoolean>;
13669
15415
  isOther: Type.TOptional<Type.TBoolean>;
13670
15416
  isSecret: Type.TOptional<Type.TBoolean>;
15417
+ secretStore: Type.TOptional<Type.TObject<{
15418
+ name: Type.TString;
15419
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15420
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15421
+ reason: Type.TOptional<Type.TString>;
15422
+ }>>;
13671
15423
  }>>;
13672
15424
  agentId: Type.TOptional<Type.TString>;
13673
15425
  sessionKey: Type.TOptional<Type.TString>;
@@ -13684,6 +15436,10 @@ declare const QuestionListResultSchema: Type.TObject<{
13684
15436
  declare const QuestionRequestedEventSchema: Type.TObject<{
13685
15437
  id: Type.TString;
13686
15438
  questions: Type.TArray<Type.TObject<{
15439
+ secretStoreExisting: Type.TOptional<Type.TObject<{
15440
+ updatedAtMs: Type.TInteger;
15441
+ updatedBy: Type.TOptional<Type.TString>;
15442
+ }>>;
13687
15443
  questionId: Type.TString;
13688
15444
  header: Type.TString;
13689
15445
  question: Type.TString;
@@ -13694,6 +15450,12 @@ declare const QuestionRequestedEventSchema: Type.TObject<{
13694
15450
  multiSelect: Type.TOptional<Type.TBoolean>;
13695
15451
  isOther: Type.TOptional<Type.TBoolean>;
13696
15452
  isSecret: Type.TOptional<Type.TBoolean>;
15453
+ secretStore: Type.TOptional<Type.TObject<{
15454
+ name: Type.TString;
15455
+ kind: Type.TUnion<[Type.TLiteral<"secret">, Type.TLiteral<"env">]>;
15456
+ allowedHosts: Type.TOptional<Type.TArray<Type.TString>>;
15457
+ reason: Type.TOptional<Type.TString>;
15458
+ }>>;
13697
15459
  }>>;
13698
15460
  agentId: Type.TOptional<Type.TString>;
13699
15461
  sessionKey: Type.TOptional<Type.TString>;
@@ -13890,6 +15652,7 @@ declare const SessionPlacementDiskSpaceSchema: Type.TObject<{
13890
15652
  declare const SessionPlacementRunnerSchema: Type.TObject<{
13891
15653
  kind: Type.TLiteral<"device">;
13892
15654
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
15655
+ deviceId: Type.TOptional<Type.TString>;
13893
15656
  }>;
13894
15657
  /** Gateway-visible placement projection; `state` remains the closed discriminator. */
13895
15658
  declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
@@ -13933,6 +15696,7 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
13933
15696
  runner: Type.TOptional<Type.TObject<{
13934
15697
  kind: Type.TLiteral<"device">;
13935
15698
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
15699
+ deviceId: Type.TOptional<Type.TString>;
13936
15700
  }>>;
13937
15701
  diskSpace: Type.TOptional<Type.TObject<{
13938
15702
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
@@ -14048,16 +15812,18 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
14048
15812
  state: Type.TLiteral<"failed">;
14049
15813
  }>]>;
14050
15814
  /**
14051
- * Requests one-way dispatch to an explicit device (`operator.write`), an explicit profile
14052
- * (`operator.admin`), or an `operator.admin`-only `cloudWorkers.projectProfiles` lookup when no
14053
- * target is supplied. Explicit targets take precedence. An absent, unmatched, or invalid mapping
14054
- * is rejected with `INVALID_REQUEST` instead of provisioning or falling back to another target.
15815
+ * Requests one-way dispatch to an explicit or automatically selected device (`operator.write`),
15816
+ * an explicit profile (`operator.admin`), or an `operator.admin`-only
15817
+ * `cloudWorkers.projectProfiles` lookup when no target is supplied. Target modes are exclusive.
15818
+ * An absent, unmatched, or invalid mapping is rejected with `INVALID_REQUEST` instead of
15819
+ * provisioning or falling back to another target.
14055
15820
  */
14056
15821
  declare const SessionsDispatchParamsSchema: Type.TObject<{
14057
15822
  key: Type.TString;
14058
15823
  agentId: Type.TOptional<Type.TString>;
14059
15824
  profileId: Type.TOptional<Type.TString>;
14060
15825
  deviceId: Type.TOptional<Type.TString>;
15826
+ autoDevice: Type.TOptional<Type.TLiteral<true>>;
14061
15827
  machineClass: Type.TOptional<Type.TString>;
14062
15828
  }>;
14063
15829
  /** Result returned once session dispatch reaches durable worker ownership. */
@@ -14069,6 +15835,7 @@ declare const SessionsDispatchResultSchema: Type.TObject<{
14069
15835
  runner: Type.TOptional<Type.TObject<{
14070
15836
  kind: Type.TLiteral<"device">;
14071
15837
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
15838
+ deviceId: Type.TOptional<Type.TString>;
14072
15839
  }>>;
14073
15840
  diskSpace: Type.TOptional<Type.TObject<{
14074
15841
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
@@ -14257,6 +16024,7 @@ declare const SessionPlacementProtocolSchemas: {
14257
16024
  readonly SessionPlacementRunner: Type.TObject<{
14258
16025
  kind: Type.TLiteral<"device">;
14259
16026
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
16027
+ deviceId: Type.TOptional<Type.TString>;
14260
16028
  }>;
14261
16029
  readonly LocalSessionPlacement: Type.TObject<{
14262
16030
  generation: Type.TInteger;
@@ -14304,6 +16072,7 @@ declare const SessionPlacementProtocolSchemas: {
14304
16072
  runner: Type.TOptional<Type.TObject<{
14305
16073
  kind: Type.TLiteral<"device">;
14306
16074
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
16075
+ deviceId: Type.TOptional<Type.TString>;
14307
16076
  }>>;
14308
16077
  diskSpace: Type.TOptional<Type.TObject<{
14309
16078
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
@@ -14463,6 +16232,7 @@ declare const SessionPlacementProtocolSchemas: {
14463
16232
  runner: Type.TOptional<Type.TObject<{
14464
16233
  kind: Type.TLiteral<"device">;
14465
16234
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
16235
+ deviceId: Type.TOptional<Type.TString>;
14466
16236
  }>>;
14467
16237
  diskSpace: Type.TOptional<Type.TObject<{
14468
16238
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
@@ -14582,6 +16352,7 @@ declare const SessionPlacementProtocolSchemas: {
14582
16352
  agentId: Type.TOptional<Type.TString>;
14583
16353
  profileId: Type.TOptional<Type.TString>;
14584
16354
  deviceId: Type.TOptional<Type.TString>;
16355
+ autoDevice: Type.TOptional<Type.TLiteral<true>>;
14585
16356
  machineClass: Type.TOptional<Type.TString>;
14586
16357
  }>;
14587
16358
  readonly SessionsDispatchResult: Type.TObject<{
@@ -14592,6 +16363,7 @@ declare const SessionPlacementProtocolSchemas: {
14592
16363
  runner: Type.TOptional<Type.TObject<{
14593
16364
  kind: Type.TLiteral<"device">;
14594
16365
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
16366
+ deviceId: Type.TOptional<Type.TString>;
14595
16367
  }>>;
14596
16368
  diskSpace: Type.TOptional<Type.TObject<{
14597
16369
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
@@ -14805,46 +16577,6 @@ type SessionDiscussionOpenParams = Static<typeof SessionDiscussionOpenParamsSche
14805
16577
  type SessionDiscussionInfoResult = Static<typeof SessionDiscussionInfoResultSchema>;
14806
16578
  type SessionDiscussionOpenResult = Static<typeof SessionDiscussionOpenResultSchema>;
14807
16579
  //#endregion
14808
- //#region src/schema/sessions-create.d.ts
14809
- /** Creates or adopts a session with optional model, thinking, label, and parent linkage. */
14810
- declare const SessionsCreateParamsSchema: Type.TObject<{
14811
- key: Type.TOptional<Type.TString>;
14812
- agentId: Type.TOptional<Type.TString>;
14813
- label: Type.TOptional<Type.TString>;
14814
- category: Type.TOptional<Type.TString>;
14815
- model: Type.TOptional<Type.TString>;
14816
- contextWindow: Type.TOptional<Type.TString>;
14817
- thinkingLevel: Type.TOptional<Type.TString>;
14818
- permissionMode: Type.TOptional<Type.TUnion<[Type.TLiteral<"read-only">, Type.TLiteral<"guarded">, Type.TLiteral<"workspace">, Type.TLiteral<"full">]>>;
14819
- incognito: Type.TOptional<Type.TBoolean>;
14820
- visibility: Type.TOptional<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
14821
- catalogId: Type.TOptional<Type.TString>;
14822
- parentSessionKey: Type.TOptional<Type.TString>;
14823
- spawnDepth: Type.TOptional<Type.TInteger>;
14824
- fork: Type.TOptional<Type.TBoolean>;
14825
- forkFrom: Type.TOptional<Type.TLiteral<"last-completed">>;
14826
- emitCommandHooks: Type.TOptional<Type.TBoolean>;
14827
- succeedsParent: Type.TOptional<Type.TBoolean>;
14828
- task: Type.TOptional<Type.TString>;
14829
- message: Type.TOptional<Type.TString>;
14830
- attachments: Type.TOptional<Type.TArray<Type.TObject<{
14831
- type: Type.TOptional<Type.TString>;
14832
- mimeType: Type.TOptional<Type.TString>;
14833
- fileName: Type.TOptional<Type.TString>;
14834
- content: Type.TOptional<Type.TUnknown>;
14835
- sizeBytes: Type.TOptional<Type.TNumber>;
14836
- durationMs: Type.TOptional<Type.TNumber>;
14837
- width: Type.TOptional<Type.TNumber>;
14838
- height: Type.TOptional<Type.TNumber>;
14839
- }>>>;
14840
- projectId: Type.TOptional<Type.TString>;
14841
- worktree: Type.TOptional<Type.TBoolean>;
14842
- worktreeBaseRef: Type.TOptional<Type.TString>;
14843
- worktreeName: Type.TOptional<Type.TString>;
14844
- execNode: Type.TOptional<Type.TString>;
14845
- cwd: Type.TOptional<Type.TString>;
14846
- }>;
14847
- //#endregion
14848
16580
  //#region src/schema/sessions-recover.d.ts
14849
16581
  /** Recovers one restart-tombstoned session into a fresh same-agent session. */
14850
16582
  declare const SessionsRecoverParamsSchema: Type.TObject<{
@@ -14870,28 +16602,13 @@ declare const SessionsRecoverResultSchema: Type.TObject<{
14870
16602
  }>]>;
14871
16603
  }>;
14872
16604
  //#endregion
14873
- //#region src/schema/sessions-resolve.d.ts
14874
- /** Resolves a session by key, raw session id, label, short URL id, or parent/agent scope. */
14875
- declare const SessionsResolveParamsSchema: Type.TObject<{
14876
- key: Type.TOptional<Type.TString>;
14877
- sessionId: Type.TOptional<Type.TString>;
14878
- label: Type.TOptional<Type.TString>; /** Bare 8-32 character hexadecimal prefix of a session key's trailing UUID. */
14879
- shortId: Type.TOptional<Type.TString>; /** Optional display-name slug used only to narrow ambiguous shortId matches. */
14880
- slugHint: Type.TOptional<Type.TString>;
14881
- agentId: Type.TOptional<Type.TString>;
14882
- spawnedBy: Type.TOptional<Type.TString>;
14883
- includeGlobal: Type.TOptional<Type.TBoolean>;
14884
- includeUnknown: Type.TOptional<Type.TBoolean>; /** Return a successful `{ ok: false }` response when the selector does not match a session. */
14885
- allowMissing: Type.TOptional<Type.TBoolean>;
14886
- }>;
14887
- type SessionsResolveParams = Static<typeof SessionsResolveParamsSchema>;
14888
- //#endregion
14889
16605
  //#region src/schema/sessions-patch.d.ts
14890
16606
  declare const SESSIONS_PATCH_MANY_MAX_TARGETS = 100;
14891
16607
  /** Mutable per-session preferences and routing metadata. */
14892
16608
  declare const SessionsPatchParamsSchema: Type.TObject<{
14893
16609
  label: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14894
- icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>; /** User-defined organization bucket ("category", not chat-group); null clears it. */
16610
+ icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
16611
+ /** User-defined organization bucket ("category", not chat-group); null clears it. */
14895
16612
  category: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14896
16613
  boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
14897
16614
  statusNote: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -14927,13 +16644,16 @@ declare const SessionsPatchParamsSchema: Type.TObject<{
14927
16644
  sendPolicy: Type.TOptional<Type.TUnion<[Type.TLiteral<"allow">, Type.TLiteral<"deny">, Type.TNull]>>;
14928
16645
  groupActivation: Type.TOptional<Type.TUnion<[Type.TLiteral<"mention">, Type.TLiteral<"always">, Type.TNull]>>;
14929
16646
  key: Type.TString;
14930
- agentId: Type.TOptional<Type.TString>; /** Reject the mutation if the session was reset or replaced before it commits. */
16647
+ agentId: Type.TOptional<Type.TString>;
16648
+ /** Reject the mutation if the session was reset or replaced before it commits. */
14931
16649
  expectedSessionId: Type.TOptional<Type.TString>;
14932
16650
  expectedLifecycleRevision: Type.TOptional<Type.TString>;
16651
+ expectedMarkedUnreadAt: Type.TOptional<Type.TUnion<[Type.TNumber, Type.TNull]>>;
14933
16652
  }>;
14934
16653
  declare const SessionsPatchMutationSchema: Type.TObject<{
14935
16654
  label: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14936
- icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>; /** User-defined organization bucket ("category", not chat-group); null clears it. */
16655
+ icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
16656
+ /** User-defined organization bucket ("category", not chat-group); null clears it. */
14937
16657
  category: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14938
16658
  boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
14939
16659
  statusNote: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -14984,7 +16704,8 @@ declare const SessionsPatchManyParamsSchema: Type.TObject<{
14984
16704
  }>>;
14985
16705
  patch: Type.TObject<{
14986
16706
  label: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14987
- icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>; /** User-defined organization bucket ("category", not chat-group); null clears it. */
16707
+ icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
16708
+ /** User-defined organization bucket ("category", not chat-group); null clears it. */
14988
16709
  category: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
14989
16710
  boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
14990
16711
  statusNote: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -15209,7 +16930,8 @@ declare const SessionsFilesListParamsSchema: Type.TObject<{
15209
16930
  /** File references visible in one session workspace. */
15210
16931
  declare const SessionsFilesListResultSchema: Type.TObject<{
15211
16932
  sessionKey: Type.TString;
15212
- root: Type.TOptional<Type.TString>; /** Whether the session workspace directory is inside a git checkout; absent when the workspace root is unknown or the gateway predates the field. */
16933
+ root: Type.TOptional<Type.TString>;
16934
+ /** Whether the session workspace directory is inside a git checkout; absent when the workspace root is unknown or the gateway predates the field. */
15213
16935
  gitCheckout: Type.TOptional<Type.TBoolean>;
15214
16936
  files: Type.TArray<Type.TObject<{
15215
16937
  path: Type.TString;
@@ -15313,7 +17035,8 @@ declare const SessionDiffFileSchema: Type.TObject<{
15313
17035
  additions: Type.TInteger;
15314
17036
  deletions: Type.TInteger;
15315
17037
  binary: Type.TOptional<Type.TBoolean>;
15316
- untracked: Type.TOptional<Type.TBoolean>; /** Per-file unified patch text; absent for binary or oversized files. */
17038
+ untracked: Type.TOptional<Type.TBoolean>;
17039
+ /** Per-file unified patch text; absent for binary or oversized files. */
15317
17040
  patch: Type.TOptional<Type.TString>;
15318
17041
  truncated: Type.TOptional<Type.TBoolean>;
15319
17042
  }>;
@@ -15335,13 +17058,17 @@ declare const SessionsDiffParamsSchema: Type.TObject<{
15335
17058
  declare const SessionsDiffResultSchema: Type.TObject<{
15336
17059
  sessionKey: Type.TString;
15337
17060
  root: Type.TOptional<Type.TString>;
15338
- branch: Type.TOptional<Type.TString>; /** Display label of the diff base: the default branch name or "HEAD". */
15339
- baseRef: Type.TOptional<Type.TString>; /** Number of commits between the resolved branch merge base and HEAD. */
15340
- aheadCount: Type.TOptional<Type.TInteger>; /** Newest-first commits between the resolved branch merge base and HEAD. */
17061
+ branch: Type.TOptional<Type.TString>;
17062
+ /** Display label of the diff base: the default branch name or "HEAD". */
17063
+ baseRef: Type.TOptional<Type.TString>;
17064
+ /** Number of commits between the resolved branch merge base and HEAD. */
17065
+ aheadCount: Type.TOptional<Type.TInteger>;
17066
+ /** Newest-first commits between the resolved branch merge base and HEAD. */
15341
17067
  commits: Type.TOptional<Type.TArray<Type.TObject<{
15342
17068
  sha: Type.TString;
15343
17069
  subject: Type.TString;
15344
- }>>>; /** The resolved branch merge-base commit. */
17070
+ }>>>;
17071
+ /** The resolved branch merge-base commit. */
15345
17072
  mergeBase: Type.TOptional<Type.TObject<{
15346
17073
  sha: Type.TString;
15347
17074
  subject: Type.TString;
@@ -15353,7 +17080,8 @@ declare const SessionsDiffResultSchema: Type.TObject<{
15353
17080
  additions: Type.TInteger;
15354
17081
  deletions: Type.TInteger;
15355
17082
  binary: Type.TOptional<Type.TBoolean>;
15356
- untracked: Type.TOptional<Type.TBoolean>; /** Per-file unified patch text; absent for binary or oversized files. */
17083
+ untracked: Type.TOptional<Type.TBoolean>;
17084
+ /** Per-file unified patch text; absent for binary or oversized files. */
15357
17085
  patch: Type.TOptional<Type.TString>;
15358
17086
  truncated: Type.TOptional<Type.TBoolean>;
15359
17087
  }>>;
@@ -15364,13 +17092,16 @@ declare const SessionsDiffResultSchema: Type.TObject<{
15364
17092
  }>;
15365
17093
  /** Lists sessions with optional scope, activity, label, and preview filters. */
15366
17094
  declare const SessionsListParamsSchema: Type.TObject<{
15367
- /** Maximum rows to return; omitted Gateway RPC calls use a bounded default. */limit: Type.TOptional<Type.TInteger>;
17095
+ /** Maximum rows to return; omitted Gateway RPC calls use a bounded default. */
17096
+ limit: Type.TOptional<Type.TInteger>;
15368
17097
  offset: Type.TOptional<Type.TInteger>;
15369
- activeMinutes: Type.TOptional<Type.TInteger>; /** Require a real user/channel interaction; excludes synthetic isolated heartbeat rows. */
17098
+ activeMinutes: Type.TOptional<Type.TInteger>;
17099
+ /** Require a real user/channel interaction; excludes synthetic isolated heartbeat rows. */
15370
17100
  requireLastInteraction: Type.TOptional<Type.TBoolean>;
15371
17101
  sortBy: Type.TOptional<Type.TUnion<[Type.TLiteral<"updatedAt">, Type.TLiteral<"lastInteractionAt">]>>;
15372
17102
  includeGlobal: Type.TOptional<Type.TBoolean>;
15373
- includeUnknown: Type.TOptional<Type.TBoolean>; /** Limit agent-scoped rows to agents currently present in config. */
17103
+ includeUnknown: Type.TOptional<Type.TBoolean>;
17104
+ /** Limit agent-scoped rows to agents currently present in config. */
15374
17105
  configuredAgentsOnly: Type.TOptional<Type.TBoolean>;
15375
17106
  /**
15376
17107
  * Read a bounded transcript head projection to derive a title from the first user message.
@@ -15382,10 +17113,16 @@ declare const SessionsListParamsSchema: Type.TObject<{
15382
17113
  * The returned short preview excludes tool, system, reasoning, and silent rows.
15383
17114
  */
15384
17115
  includeLastMessage: Type.TOptional<Type.TBoolean>;
15385
- label: Type.TOptional<Type.TString>; /** Limit rows to sessions with an explicitly stored Control UI face preference. */
15386
- boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>; /** Filter rows by their immutable creator provenance. */
15387
- creatorId: Type.TOptional<Type.TString>; /** Filter rows by their current assignable owner identity. */
15388
- ownerId: Type.TOptional<Type.TString>; /** Limit rows to sessions owned by or previously prompted by the authenticated viewer. */
17116
+ label: Type.TOptional<Type.TString>;
17117
+ /** Limit rows to sessions with an explicitly stored Control UI face preference. */
17118
+ boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
17119
+ /** Filter rows by their immutable creator provenance. */
17120
+ creatorId: Type.TOptional<Type.TString>;
17121
+ /** Filter rows by their current assignable owner identity. */
17122
+ ownerId: Type.TOptional<Type.TString>;
17123
+ /** Prepend the authenticated viewer's owned rows to the normal first page. */
17124
+ ownerFirst: Type.TOptional<Type.TBoolean>;
17125
+ /** Limit rows to sessions owned by or previously prompted by the authenticated viewer. */
15389
17126
  involvingMe: Type.TOptional<Type.TBoolean>;
15390
17127
  spawnedBy: Type.TOptional<Type.TString>;
15391
17128
  agentId: Type.TOptional<Type.TString>;
@@ -15497,7 +17234,8 @@ declare const SessionsSendParamsSchema: Type.TObject<{
15497
17234
  /** Subscribes a client to live message updates for one session. */
15498
17235
  declare const SessionsMessagesSubscribeParamsSchema: Type.TObject<{
15499
17236
  key: Type.TString;
15500
- agentId: Type.TOptional<Type.TString>; /** Opt in to sanitized durable approval events for this session and its descendants. */
17237
+ agentId: Type.TOptional<Type.TString>;
17238
+ /** Opt in to sanitized durable approval events for this session and its descendants. */
15501
17239
  includeApprovals: Type.TOptional<Type.TLiteral<true>>;
15502
17240
  }>;
15503
17241
  /** Removes a live message subscription for one session. */
@@ -15509,7 +17247,8 @@ declare const SessionsMessagesUnsubscribeParamsSchema: Type.TObject<{
15509
17247
  declare const SessionsAbortParamsSchema: Type.TObject<{
15510
17248
  key: Type.TOptional<Type.TString>;
15511
17249
  runId: Type.TOptional<Type.TString>;
15512
- agentId: Type.TOptional<Type.TString>; /** Also discard followup and lane queues for a key-only non-global session abort. */
17250
+ agentId: Type.TOptional<Type.TString>;
17251
+ /** Also discard followup and lane queues for a key-only non-global session abort. */
15513
17252
  clearQueued: Type.TOptional<Type.TBoolean>;
15514
17253
  }>;
15515
17254
  /** Updates or clears one plugin namespace value on a session record. */
@@ -15809,18 +17548,31 @@ declare const SessionsCompactionRestoreResultSchema: Type.TObject<{
15809
17548
  }>;
15810
17549
  /** Usage report query across one session, one agent, or all agent sessions. */
15811
17550
  declare const SessionsUsageParamsSchema: Type.TObject<{
15812
- /** Specific session key to analyze; if omitted returns sessions for the effective agent. */key: Type.TOptional<Type.TString>; /** Agent scope for list-style usage queries. */
15813
- agentId: Type.TOptional<Type.TString>; /** Explicit all-agent scope for list-style usage queries. */
15814
- agentScope: Type.TOptional<Type.TLiteral<"all">>; /** Start date for range filter (YYYY-MM-DD). */
15815
- startDate: Type.TOptional<Type.TString>; /** End date for range filter (YYYY-MM-DD). */
15816
- endDate: Type.TOptional<Type.TString>; /** How start/end dates should be interpreted. Defaults to UTC when omitted. */
15817
- mode: Type.TOptional<Type.TUnion<[Type.TLiteral<"utc">, Type.TLiteral<"gateway">, Type.TLiteral<"specific">]>>; /** Preset range for usage queries when explicit start/end dates are omitted. */
15818
- range: Type.TOptional<Type.TUnion<[Type.TLiteral<"7d">, Type.TLiteral<"30d">, Type.TLiteral<"90d">, Type.TLiteral<"1y">, Type.TLiteral<"all">]>>; /** Usage row grouping. `family` rolls up known rotated session ids for a logical key. */
15819
- groupBy: Type.TOptional<Type.TUnion<[Type.TLiteral<"instance">, Type.TLiteral<"family">]>>; /** Backward-compatible alias for requesting family grouping. */
15820
- includeHistorical: Type.TOptional<Type.TBoolean>; /** UTC offset to use when mode is `specific` (for example, UTC-4 or UTC+5:30). */
15821
- utcOffset: Type.TOptional<Type.TString>; /** IANA time zone for `specific`; preferred over `utcOffset`, which remains a compatibility fallback. */
15822
- timeZone: Type.TOptional<Type.TString>; /** Maximum sessions to return (default 50). */
15823
- limit: Type.TOptional<Type.TInteger>; /** Include context weight breakdown (systemPromptReport). */
17551
+ /** Specific session key to analyze; if omitted returns sessions for the effective agent. */
17552
+ key: Type.TOptional<Type.TString>;
17553
+ /** Agent scope for list-style usage queries. */
17554
+ agentId: Type.TOptional<Type.TString>;
17555
+ /** Explicit all-agent scope for list-style usage queries. */
17556
+ agentScope: Type.TOptional<Type.TLiteral<"all">>;
17557
+ /** Start date for range filter (YYYY-MM-DD). */
17558
+ startDate: Type.TOptional<Type.TString>;
17559
+ /** End date for range filter (YYYY-MM-DD). */
17560
+ endDate: Type.TOptional<Type.TString>;
17561
+ /** How start/end dates should be interpreted. Defaults to UTC when omitted. */
17562
+ mode: Type.TOptional<Type.TUnion<[Type.TLiteral<"utc">, Type.TLiteral<"gateway">, Type.TLiteral<"specific">]>>;
17563
+ /** Preset range for usage queries when explicit start/end dates are omitted. */
17564
+ range: Type.TOptional<Type.TUnion<[Type.TLiteral<"7d">, Type.TLiteral<"30d">, Type.TLiteral<"90d">, Type.TLiteral<"1y">, Type.TLiteral<"all">]>>;
17565
+ /** Usage row grouping. `family` rolls up known rotated session ids for a logical key. */
17566
+ groupBy: Type.TOptional<Type.TUnion<[Type.TLiteral<"instance">, Type.TLiteral<"family">]>>;
17567
+ /** Backward-compatible alias for requesting family grouping. */
17568
+ includeHistorical: Type.TOptional<Type.TBoolean>;
17569
+ /** UTC offset to use when mode is `specific` (for example, UTC-4 or UTC+5:30). */
17570
+ utcOffset: Type.TOptional<Type.TString>;
17571
+ /** IANA time zone for `specific`; preferred over `utcOffset`, which remains a compatibility fallback. */
17572
+ timeZone: Type.TOptional<Type.TString>;
17573
+ /** Maximum sessions to return (default 50). */
17574
+ limit: Type.TOptional<Type.TInteger>;
17575
+ /** Include context weight breakdown (systemPromptReport). */
15824
17576
  includeContextWeight: Type.TOptional<Type.TBoolean>;
15825
17577
  }>;
15826
17578
  type SessionsListParams = Static<typeof SessionsListParamsSchema>;
@@ -15909,6 +17661,48 @@ type SessionDiffScope = Static<typeof SessionDiffScopeSchema>;
15909
17661
  type SessionsDiffParams = Static<typeof SessionsDiffParamsSchema>;
15910
17662
  type SessionsDiffResult = Static<typeof SessionsDiffResultSchema>;
15911
17663
  //#endregion
17664
+ //#region src/schema/sessions-resolve.d.ts
17665
+ /** Resolves a session by key, raw session id, label, short URL id, or parent/agent scope. */
17666
+ declare const SessionsResolveParamsSchema: Type.TObject<{
17667
+ key: Type.TOptional<Type.TString>;
17668
+ sessionId: Type.TOptional<Type.TString>;
17669
+ label: Type.TOptional<Type.TString>;
17670
+ /** Bare 8-32 character hexadecimal prefix of a session key's trailing UUID. */
17671
+ shortId: Type.TOptional<Type.TString>;
17672
+ /** Optional display-name slug used only to narrow ambiguous shortId matches. */
17673
+ slugHint: Type.TOptional<Type.TString>;
17674
+ agentId: Type.TOptional<Type.TString>;
17675
+ spawnedBy: Type.TOptional<Type.TString>;
17676
+ includeGlobal: Type.TOptional<Type.TBoolean>;
17677
+ includeUnknown: Type.TOptional<Type.TBoolean>;
17678
+ /** Return a successful `{ ok: false }` response when the selector does not match a session. */
17679
+ allowMissing: Type.TOptional<Type.TBoolean>;
17680
+ }>;
17681
+ type SessionsResolveParams = Static<typeof SessionsResolveParamsSchema>;
17682
+ declare const SessionsResolveCandidateSchema: Type.TObject<{
17683
+ key: Type.TString;
17684
+ agentId: Type.TString;
17685
+ displayName: Type.TOptional<Type.TString>;
17686
+ boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
17687
+ }>;
17688
+ declare const SessionsResolveResultSchema: Type.TUnion<[Type.TObject<{
17689
+ key: Type.TString;
17690
+ agentId: Type.TString;
17691
+ displayName: Type.TOptional<Type.TString>;
17692
+ boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
17693
+ ok: Type.TLiteral<true>;
17694
+ }>, Type.TObject<{
17695
+ ok: Type.TLiteral<false>;
17696
+ candidates: Type.TOptional<Type.TArray<Type.TObject<{
17697
+ key: Type.TString;
17698
+ agentId: Type.TString;
17699
+ displayName: Type.TOptional<Type.TString>;
17700
+ boardFace: Type.TOptional<Type.TUnion<[Type.TLiteral<"chat">, Type.TLiteral<"dashboard">]>>;
17701
+ }>>>;
17702
+ }>]>;
17703
+ type SessionsResolveCandidate = Static<typeof SessionsResolveCandidateSchema>;
17704
+ type SessionsResolveResult = Static<typeof SessionsResolveResultSchema>;
17705
+ //#endregion
15912
17706
  //#region src/schema/sessions-viewer-presence.d.ts
15913
17707
  /** Maximum sessions one connection may declare as concurrently visible. */
15914
17708
  declare const SESSION_VIEWER_PRESENCE_MAX_KEYS = 32;
@@ -15959,6 +17753,17 @@ declare const SessionMemberSchema: Type.TObject<{
15959
17753
  addedBy: Type.TString;
15960
17754
  addedAt: Type.TInteger;
15961
17755
  }>;
17756
+ declare const SessionMemberEvidenceSchema: Type.TObject<{
17757
+ identityId: Type.TString;
17758
+ addedBy: Type.TOptional<Type.TString>;
17759
+ /** Explicit principal-less evidence; omission means no actor evidence was supplied. */
17760
+ addedByState: Type.TOptional<Type.TLiteral<"unknown">>;
17761
+ addedAt: Type.TInteger;
17762
+ }> & {
17763
+ not: {
17764
+ required: string[];
17765
+ };
17766
+ };
15962
17767
  declare const SessionMembersListResultSchema: Type.TObject<{
15963
17768
  sessionKey: Type.TString;
15964
17769
  owner: Type.TOptional<Type.TObject<{
@@ -15981,6 +17786,34 @@ declare const SessionMembersListResultSchema: Type.TObject<{
15981
17786
  role: Type.TUnion<[Type.TLiteral<"admin">, Type.TLiteral<"owner">, Type.TLiteral<"member">, Type.TLiteral<"viewer">]>;
15982
17787
  allowedVisibilities: Type.TArray<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
15983
17788
  }>;
17789
+ declare const SessionMembersListEvidenceResultSchema: Type.TObject<{
17790
+ sessionKey: Type.TString;
17791
+ owner: Type.TOptional<Type.TObject<{
17792
+ id: Type.TString;
17793
+ type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
17794
+ label: Type.TOptional<Type.TString>;
17795
+ avatarUrl: Type.TOptional<Type.TString>;
17796
+ }>>;
17797
+ members: Type.TArray<Type.TObject<{
17798
+ identityId: Type.TString;
17799
+ addedBy: Type.TOptional<Type.TString>;
17800
+ /** Explicit principal-less evidence; omission means no actor evidence was supplied. */
17801
+ addedByState: Type.TOptional<Type.TLiteral<"unknown">>;
17802
+ addedAt: Type.TInteger;
17803
+ }> & {
17804
+ not: {
17805
+ required: string[];
17806
+ };
17807
+ }>;
17808
+ identities: Type.TArray<Type.TObject<{
17809
+ id: Type.TString;
17810
+ type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
17811
+ label: Type.TOptional<Type.TString>;
17812
+ avatarUrl: Type.TOptional<Type.TString>;
17813
+ }>>;
17814
+ role: Type.TUnion<[Type.TLiteral<"admin">, Type.TLiteral<"owner">, Type.TLiteral<"member">, Type.TLiteral<"viewer">]>;
17815
+ allowedVisibilities: Type.TArray<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
17816
+ }>;
15984
17817
  declare const SessionMemberAddParamsSchema: Type.TObject<{
15985
17818
  identityId: Type.TString;
15986
17819
  sessionKey: Type.TString;
@@ -15996,19 +17829,31 @@ declare const SessionMemberMutationResultSchema: Type.TObject<{
15996
17829
  sessionKey: Type.TString;
15997
17830
  identityId: Type.TString;
15998
17831
  }>;
17832
+ /** Original sharing event contract. Older generated clients require `actor`. */
15999
17833
  declare const SessionSharingEventSchema: Type.TObject<{
16000
- action: Type.TUnion<[Type.TLiteral<"visibility">, Type.TLiteral<"member-added">, Type.TLiteral<"member-removed">]>;
16001
- sessionKey: Type.TString;
16002
- agentId: Type.TString;
17834
+ visibility: Type.TOptional<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
17835
+ identityId: Type.TOptional<Type.TString>;
17836
+ ts: Type.TInteger;
16003
17837
  actor: Type.TObject<{
16004
17838
  id: Type.TString;
16005
17839
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
16006
17840
  label: Type.TOptional<Type.TString>;
16007
17841
  avatarUrl: Type.TOptional<Type.TString>;
16008
17842
  }>;
17843
+ action: Type.TUnion<[Type.TLiteral<"visibility">, Type.TLiteral<"member-added">, Type.TLiteral<"member-removed">]>;
17844
+ sessionKey: Type.TString;
17845
+ agentId: Type.TString;
17846
+ }>;
17847
+ /** Principal-less sharing changes use a distinct additive event name. */
17848
+ declare const SessionSharingEvidenceEventSchema: Type.TObject<{
16009
17849
  visibility: Type.TOptional<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
16010
17850
  identityId: Type.TOptional<Type.TString>;
16011
17851
  ts: Type.TInteger;
17852
+ /** Explicit principal-less evidence; omission means no actor evidence was supplied. */
17853
+ actorState: Type.TOptional<Type.TLiteral<"unknown">>;
17854
+ action: Type.TUnion<[Type.TLiteral<"visibility">, Type.TLiteral<"member-added">, Type.TLiteral<"member-removed">]>;
17855
+ sessionKey: Type.TString;
17856
+ agentId: Type.TString;
16012
17857
  }>;
16013
17858
  type SessionSharingIdentity = Static<typeof SessionSharingIdentitySchema>;
16014
17859
  type SessionSharingAction = Static<typeof SessionSharingActionSchema>;
@@ -16016,11 +17861,14 @@ type SessionVisibilitySetParams = Static<typeof SessionVisibilitySetParamsSchema
16016
17861
  type SessionVisibilitySetResult = Static<typeof SessionVisibilitySetResultSchema>;
16017
17862
  type SessionMembersListParams = Static<typeof SessionMembersListParamsSchema>;
16018
17863
  type SessionMember = Static<typeof SessionMemberSchema>;
17864
+ type SessionMemberEvidence = Static<typeof SessionMemberEvidenceSchema>;
16019
17865
  type SessionMembersListResult = Static<typeof SessionMembersListResultSchema>;
17866
+ type SessionMembersListEvidenceResult = Static<typeof SessionMembersListEvidenceResultSchema>;
16020
17867
  type SessionMemberAddParams = Static<typeof SessionMemberAddParamsSchema>;
16021
17868
  type SessionMemberRemoveParams = Static<typeof SessionMemberRemoveParamsSchema>;
16022
17869
  type SessionMemberMutationResult = Static<typeof SessionMemberMutationResultSchema>;
16023
17870
  type SessionSharingEvent = Static<typeof SessionSharingEventSchema>;
17871
+ type SessionSharingEvidenceEvent = Static<typeof SessionSharingEvidenceEventSchema>;
16024
17872
  //#endregion
16025
17873
  //#region src/schema/snapshot.d.ts
16026
17874
  /**
@@ -16037,6 +17885,7 @@ declare const PresenceEntrySchema: Type.TObject<{
16037
17885
  platform: Type.TOptional<Type.TString>;
16038
17886
  deviceFamily: Type.TOptional<Type.TString>;
16039
17887
  modelIdentifier: Type.TOptional<Type.TString>;
17888
+ timeZone: Type.TOptional<Type.TString>;
16040
17889
  mode: Type.TOptional<Type.TString>;
16041
17890
  lastInputSeconds: Type.TOptional<Type.TInteger>;
16042
17891
  reason: Type.TOptional<Type.TString>;
@@ -16048,11 +17897,13 @@ declare const PresenceEntrySchema: Type.TObject<{
16048
17897
  scopes: Type.TOptional<Type.TArray<Type.TString>>;
16049
17898
  instanceId: Type.TOptional<Type.TString>;
16050
17899
  user: Type.TOptional<Type.TObject<{
16051
- /** Opaque identity key: authenticated email today, durable profile id later. Clients group presence by this. */id: Type.TString;
17900
+ /** Opaque identity key: authenticated email today, durable profile id later. Clients group presence by this. */
17901
+ id: Type.TString;
16052
17902
  email: Type.TOptional<Type.TString>;
16053
17903
  name: Type.TOptional<Type.TString>;
16054
17904
  avatarUrl: Type.TOptional<Type.TString>;
16055
- }>>; /** Session keys this connection is actively subscribed to (watching). Sorted lexicographically for deterministic snapshots. */
17905
+ }>>;
17906
+ /** Session keys this connection is actively subscribed to (watching). Sorted lexicographically for deterministic snapshots. */
16056
17907
  watchedSessions: Type.TOptional<Type.TArray<Type.TString>>;
16057
17908
  }>;
16058
17909
  /** Monotonic version counters for snapshot subtrees. */
@@ -16069,6 +17920,7 @@ declare const SnapshotSchema: Type.TObject<{
16069
17920
  platform: Type.TOptional<Type.TString>;
16070
17921
  deviceFamily: Type.TOptional<Type.TString>;
16071
17922
  modelIdentifier: Type.TOptional<Type.TString>;
17923
+ timeZone: Type.TOptional<Type.TString>;
16072
17924
  mode: Type.TOptional<Type.TString>;
16073
17925
  lastInputSeconds: Type.TOptional<Type.TInteger>;
16074
17926
  reason: Type.TOptional<Type.TString>;
@@ -16080,11 +17932,13 @@ declare const SnapshotSchema: Type.TObject<{
16080
17932
  scopes: Type.TOptional<Type.TArray<Type.TString>>;
16081
17933
  instanceId: Type.TOptional<Type.TString>;
16082
17934
  user: Type.TOptional<Type.TObject<{
16083
- /** Opaque identity key: authenticated email today, durable profile id later. Clients group presence by this. */id: Type.TString;
17935
+ /** Opaque identity key: authenticated email today, durable profile id later. Clients group presence by this. */
17936
+ id: Type.TString;
16084
17937
  email: Type.TOptional<Type.TString>;
16085
17938
  name: Type.TOptional<Type.TString>;
16086
17939
  avatarUrl: Type.TOptional<Type.TString>;
16087
- }>>; /** Session keys this connection is actively subscribed to (watching). Sorted lexicographically for deterministic snapshots. */
17940
+ }>>;
17941
+ /** Session keys this connection is actively subscribed to (watching). Sorted lexicographically for deterministic snapshots. */
16088
17942
  watchedSessions: Type.TOptional<Type.TArray<Type.TString>>;
16089
17943
  }>>;
16090
17944
  health: Type.TObject<{
@@ -16210,7 +18064,8 @@ declare const SnapshotSchema: Type.TObject<{
16210
18064
  presence: Type.TInteger;
16211
18065
  health: Type.TInteger;
16212
18066
  }>;
16213
- uptimeMs: Type.TInteger; /** Resolved source-config revision accepted by the active Gateway runtime. */
18067
+ uptimeMs: Type.TInteger;
18068
+ /** Resolved source-config revision accepted by the active Gateway runtime. */
16214
18069
  appliedConfigHash: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
16215
18070
  configPath: Type.TOptional<Type.TString>;
16216
18071
  stateDir: Type.TOptional<Type.TString>;
@@ -16312,7 +18167,8 @@ declare const SystemInfoResultSchema: Type.TObject<{
16312
18167
  lanAddress: Type.TOptional<Type.TString>;
16313
18168
  port: Type.TOptional<Type.TInteger>;
16314
18169
  nodeVersion: Type.TString;
16315
- pid: Type.TInteger; /** Process-start identity for invalidating work that cannot survive a Gateway restart. */
18170
+ pid: Type.TInteger;
18171
+ /** Process-start identity for invalidating work that cannot survive a Gateway restart. */
16316
18172
  processInstanceId: Type.TOptional<Type.TString>;
16317
18173
  uptimeMs: Type.TInteger;
16318
18174
  cpuCount: Type.TInteger;
@@ -16322,7 +18178,8 @@ declare const SystemInfoResultSchema: Type.TObject<{
16322
18178
  memoryFreeBytes: Type.TInteger;
16323
18179
  diskTotalBytes: Type.TOptional<Type.TInteger>;
16324
18180
  diskAvailableBytes: Type.TOptional<Type.TInteger>;
16325
- diskPath: Type.TOptional<Type.TString>; /** Resolved utility model for the configured default agent. */
18181
+ diskPath: Type.TOptional<Type.TString>;
18182
+ /** Resolved utility model for the configured default agent. */
16326
18183
  defaultAgentUtilityModel: Type.TOptional<Type.TUnion<[Type.TObject<{
16327
18184
  status: Type.TLiteral<"auto">;
16328
18185
  model: Type.TString;
@@ -16498,8 +18355,10 @@ declare const TaskSummarySchema: Type.TObject<{
16498
18355
  terminalSummary: Type.TOptional<Type.TString>;
16499
18356
  error: Type.TOptional<Type.TString>;
16500
18357
  deliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"delivered">, Type.TLiteral<"session_queued">, Type.TLiteral<"failed">, Type.TLiteral<"dismissed">, Type.TLiteral<"parent_missing">, Type.TLiteral<"not_applicable">]>>;
16501
- terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>; /** Bounded canonical completion result. Returned only by tasks.get. */
16502
- result: Type.TOptional<Type.TString>; /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
18358
+ terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>;
18359
+ /** Bounded canonical completion result. Returned only by tasks.get. */
18360
+ result: Type.TOptional<Type.TString>;
18361
+ /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
16503
18362
  prompt: Type.TOptional<Type.TString>;
16504
18363
  }>;
16505
18364
  /** Task list filters with bounded pagination. */
@@ -16543,8 +18402,10 @@ declare const TasksListResultSchema: Type.TObject<{
16543
18402
  terminalSummary: Type.TOptional<Type.TString>;
16544
18403
  error: Type.TOptional<Type.TString>;
16545
18404
  deliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"delivered">, Type.TLiteral<"session_queued">, Type.TLiteral<"failed">, Type.TLiteral<"dismissed">, Type.TLiteral<"parent_missing">, Type.TLiteral<"not_applicable">]>>;
16546
- terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>; /** Bounded canonical completion result. Returned only by tasks.get. */
16547
- result: Type.TOptional<Type.TString>; /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
18405
+ terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>;
18406
+ /** Bounded canonical completion result. Returned only by tasks.get. */
18407
+ result: Type.TOptional<Type.TString>;
18408
+ /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
16548
18409
  prompt: Type.TOptional<Type.TString>;
16549
18410
  }>>;
16550
18411
  nextCursor: Type.TOptional<Type.TString>;
@@ -16586,8 +18447,10 @@ declare const TasksGetResultSchema: Type.TObject<{
16586
18447
  terminalSummary: Type.TOptional<Type.TString>;
16587
18448
  error: Type.TOptional<Type.TString>;
16588
18449
  deliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"delivered">, Type.TLiteral<"session_queued">, Type.TLiteral<"failed">, Type.TLiteral<"dismissed">, Type.TLiteral<"parent_missing">, Type.TLiteral<"not_applicable">]>>;
16589
- terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>; /** Bounded canonical completion result. Returned only by tasks.get. */
16590
- result: Type.TOptional<Type.TString>; /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
18450
+ terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>;
18451
+ /** Bounded canonical completion result. Returned only by tasks.get. */
18452
+ result: Type.TOptional<Type.TString>;
18453
+ /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
16591
18454
  prompt: Type.TOptional<Type.TString>;
16592
18455
  }>;
16593
18456
  }>;
@@ -16632,8 +18495,10 @@ declare const TasksCancelResultSchema: Type.TObject<{
16632
18495
  terminalSummary: Type.TOptional<Type.TString>;
16633
18496
  error: Type.TOptional<Type.TString>;
16634
18497
  deliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"delivered">, Type.TLiteral<"session_queued">, Type.TLiteral<"failed">, Type.TLiteral<"dismissed">, Type.TLiteral<"parent_missing">, Type.TLiteral<"not_applicable">]>>;
16635
- terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>; /** Bounded canonical completion result. Returned only by tasks.get. */
16636
- result: Type.TOptional<Type.TString>; /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
18498
+ terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>;
18499
+ /** Bounded canonical completion result. Returned only by tasks.get. */
18500
+ result: Type.TOptional<Type.TString>;
18501
+ /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
16637
18502
  prompt: Type.TOptional<Type.TString>;
16638
18503
  }>>;
16639
18504
  }>;
@@ -16677,8 +18542,10 @@ declare const TasksRecoveryResultSchema: Type.TObject<{
16677
18542
  terminalSummary: Type.TOptional<Type.TString>;
16678
18543
  error: Type.TOptional<Type.TString>;
16679
18544
  deliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"delivered">, Type.TLiteral<"session_queued">, Type.TLiteral<"failed">, Type.TLiteral<"dismissed">, Type.TLiteral<"parent_missing">, Type.TLiteral<"not_applicable">]>>;
16680
- terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>; /** Bounded canonical completion result. Returned only by tasks.get. */
16681
- result: Type.TOptional<Type.TString>; /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
18545
+ terminalOutcome: Type.TOptional<Type.TUnion<[Type.TLiteral<"succeeded">, Type.TLiteral<"blocked">]>>;
18546
+ /** Bounded canonical completion result. Returned only by tasks.get. */
18547
+ result: Type.TOptional<Type.TString>;
18548
+ /** Bounded task input. Returned by tasks.get; omitted from list/event summaries. */
16682
18549
  prompt: Type.TOptional<Type.TString>;
16683
18550
  }>>;
16684
18551
  }>>;
@@ -16775,8 +18642,10 @@ declare const TerminalSessionInfoSchema: Type.TObject<{
16775
18642
  agentId: Type.TString;
16776
18643
  shell: Type.TString;
16777
18644
  cwd: Type.TString;
16778
- confined: Type.TBoolean; /** False while the session is detached (no connection owns its stream). */
16779
- attached: Type.TBoolean; /** Connection-owned session, or the trusted agent session key that owns it. */
18645
+ confined: Type.TBoolean;
18646
+ /** False while the session is detached (no connection owns its stream). */
18647
+ attached: Type.TBoolean;
18648
+ /** Connection-owned session, or the trusted agent session key that owns it. */
16780
18649
  owner: Type.TOptional<Type.TUnion<[Type.TLiteral<"conn">, Type.TString]>>;
16781
18650
  createdAtMs: Type.TInteger;
16782
18651
  }>;
@@ -16792,8 +18661,10 @@ declare const TerminalListResultSchema: Type.TObject<{
16792
18661
  agentId: Type.TString;
16793
18662
  shell: Type.TString;
16794
18663
  cwd: Type.TString;
16795
- confined: Type.TBoolean; /** False while the session is detached (no connection owns its stream). */
16796
- attached: Type.TBoolean; /** Connection-owned session, or the trusted agent session key that owns it. */
18664
+ confined: Type.TBoolean;
18665
+ /** False while the session is detached (no connection owns its stream). */
18666
+ attached: Type.TBoolean;
18667
+ /** Connection-owned session, or the trusted agent session key that owns it. */
16797
18668
  owner: Type.TOptional<Type.TUnion<[Type.TLiteral<"conn">, Type.TString]>>;
16798
18669
  createdAtMs: Type.TInteger;
16799
18670
  }>>;
@@ -16842,6 +18713,22 @@ declare const PluginApprovalRequestParamsSchema: Type.TObject<{
16842
18713
  description: Type.TString;
16843
18714
  detail: Type.TOptional<Type.TString>;
16844
18715
  severity: Type.TOptional<Type.TString>;
18716
+ scope: Type.TOptional<Type.TUnion<[Type.TObject<{
18717
+ kind: Type.TLiteral<"message-send">;
18718
+ target: Type.TString;
18719
+ recipientCount: Type.TInteger;
18720
+ recipients: Type.TOptional<Type.TArray<Type.TString>>;
18721
+ audience: Type.TOptional<Type.TUnion<[Type.TLiteral<"internal">, Type.TLiteral<"external">]>>;
18722
+ }>, Type.TObject<{
18723
+ kind: Type.TLiteral<"payment">;
18724
+ amount: Type.TString;
18725
+ currency: Type.TString;
18726
+ target: Type.TString;
18727
+ }>, Type.TObject<{
18728
+ kind: Type.TLiteral<"external-post">;
18729
+ target: Type.TString;
18730
+ visibility: Type.TUnion<[Type.TLiteral<"public">, Type.TLiteral<"restricted">]>;
18731
+ }>]>>;
16845
18732
  toolName: Type.TOptional<Type.TString>;
16846
18733
  toolCallId: Type.TOptional<Type.TString>;
16847
18734
  allowedDecisions: Type.TOptional<Type.TArray<Type.TString>>;
@@ -16971,7 +18858,8 @@ declare const PluginCatalogEntrySchema: Type.TObject<{
16971
18858
  state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
16972
18859
  featured: Type.TOptional<Type.TBoolean>;
16973
18860
  featuredAt: Type.TOptional<Type.TInteger>;
16974
- order: Type.TOptional<Type.TNumber>; /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
18861
+ order: Type.TOptional<Type.TNumber>;
18862
+ /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
16975
18863
  hasIcon: Type.TOptional<Type.TBoolean>;
16976
18864
  install: Type.TOptional<Type.TUnion<[Type.TObject<{
16977
18865
  source: Type.TLiteral<"clawhub">;
@@ -16980,8 +18868,10 @@ declare const PluginCatalogEntrySchema: Type.TObject<{
16980
18868
  source: Type.TLiteral<"official">;
16981
18869
  pluginId: Type.TString;
16982
18870
  }>]>>;
16983
- error: Type.TOptional<Type.TString>; /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
16984
- category: Type.TOptional<Type.TString>; /** True when the plugin has an install record and can be removed via plugins.uninstall. */
18871
+ error: Type.TOptional<Type.TString>;
18872
+ /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
18873
+ category: Type.TOptional<Type.TString>;
18874
+ /** True when the plugin has an install record and can be removed via plugins.uninstall. */
16985
18875
  removable: Type.TOptional<Type.TBoolean>;
16986
18876
  }>;
16987
18877
  /** Empty request payload for the cold plugin catalog. */
@@ -17001,7 +18891,8 @@ declare const PluginsListResultSchema: Type.TObject<{
17001
18891
  state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
17002
18892
  featured: Type.TOptional<Type.TBoolean>;
17003
18893
  featuredAt: Type.TOptional<Type.TInteger>;
17004
- order: Type.TOptional<Type.TNumber>; /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
18894
+ order: Type.TOptional<Type.TNumber>;
18895
+ /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
17005
18896
  hasIcon: Type.TOptional<Type.TBoolean>;
17006
18897
  install: Type.TOptional<Type.TUnion<[Type.TObject<{
17007
18898
  source: Type.TLiteral<"clawhub">;
@@ -17010,8 +18901,10 @@ declare const PluginsListResultSchema: Type.TObject<{
17010
18901
  source: Type.TLiteral<"official">;
17011
18902
  pluginId: Type.TString;
17012
18903
  }>]>>;
17013
- error: Type.TOptional<Type.TString>; /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
17014
- category: Type.TOptional<Type.TString>; /** True when the plugin has an install record and can be removed via plugins.uninstall. */
18904
+ error: Type.TOptional<Type.TString>;
18905
+ /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
18906
+ category: Type.TOptional<Type.TString>;
18907
+ /** True when the plugin has an install record and can be removed via plugins.uninstall. */
17015
18908
  removable: Type.TOptional<Type.TBoolean>;
17016
18909
  }>>;
17017
18910
  diagnostics: Type.TArray<Type.TUnknown>;
@@ -17097,7 +18990,8 @@ declare const PluginsInstallResultSchema: Type.TObject<{
17097
18990
  state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
17098
18991
  featured: Type.TOptional<Type.TBoolean>;
17099
18992
  featuredAt: Type.TOptional<Type.TInteger>;
17100
- order: Type.TOptional<Type.TNumber>; /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
18993
+ order: Type.TOptional<Type.TNumber>;
18994
+ /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
17101
18995
  hasIcon: Type.TOptional<Type.TBoolean>;
17102
18996
  install: Type.TOptional<Type.TUnion<[Type.TObject<{
17103
18997
  source: Type.TLiteral<"clawhub">;
@@ -17106,8 +19000,10 @@ declare const PluginsInstallResultSchema: Type.TObject<{
17106
19000
  source: Type.TLiteral<"official">;
17107
19001
  pluginId: Type.TString;
17108
19002
  }>]>>;
17109
- error: Type.TOptional<Type.TString>; /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
17110
- category: Type.TOptional<Type.TString>; /** True when the plugin has an install record and can be removed via plugins.uninstall. */
19003
+ error: Type.TOptional<Type.TString>;
19004
+ /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
19005
+ category: Type.TOptional<Type.TString>;
19006
+ /** True when the plugin has an install record and can be removed via plugins.uninstall. */
17111
19007
  removable: Type.TOptional<Type.TBoolean>;
17112
19008
  }>;
17113
19009
  restartRequired: Type.TLiteral<true>;
@@ -17152,7 +19048,8 @@ declare const PluginsSetEnabledResultSchema: Type.TObject<{
17152
19048
  state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
17153
19049
  featured: Type.TOptional<Type.TBoolean>;
17154
19050
  featuredAt: Type.TOptional<Type.TInteger>;
17155
- order: Type.TOptional<Type.TNumber>; /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
19051
+ order: Type.TOptional<Type.TNumber>;
19052
+ /** True when the gateway can resolve a manifest or catalog icon for this plugin identity. */
17156
19053
  hasIcon: Type.TOptional<Type.TBoolean>;
17157
19054
  install: Type.TOptional<Type.TUnion<[Type.TObject<{
17158
19055
  source: Type.TLiteral<"clawhub">;
@@ -17161,8 +19058,10 @@ declare const PluginsSetEnabledResultSchema: Type.TObject<{
17161
19058
  source: Type.TLiteral<"official">;
17162
19059
  pluginId: Type.TString;
17163
19060
  }>]>>;
17164
- error: Type.TOptional<Type.TString>; /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
17165
- category: Type.TOptional<Type.TString>; /** True when the plugin has an install record and can be removed via plugins.uninstall. */
19061
+ error: Type.TOptional<Type.TString>;
19062
+ /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
19063
+ category: Type.TOptional<Type.TString>;
19064
+ /** True when the plugin has an install record and can be removed via plugins.uninstall. */
17166
19065
  removable: Type.TOptional<Type.TBoolean>;
17167
19066
  }>;
17168
19067
  restartRequired: Type.TBoolean;
@@ -17192,6 +19091,7 @@ declare const PortalSummarySchema: Type.TObject<{
17192
19091
  publicUrl: Type.TString;
17193
19092
  path: Type.TOptional<Type.TString>;
17194
19093
  description: Type.TOptional<Type.TString>;
19094
+ origin: Type.TOptional<Type.TString>;
17195
19095
  createdAtMs: Type.TInteger;
17196
19096
  tokenQuery: Type.TOptional<Type.TString>;
17197
19097
  url: Type.TOptional<Type.TString>;
@@ -17206,6 +19106,7 @@ declare const PortalListResultSchema: Type.TObject<{
17206
19106
  publicUrl: Type.TString;
17207
19107
  path: Type.TOptional<Type.TString>;
17208
19108
  description: Type.TOptional<Type.TString>;
19109
+ origin: Type.TOptional<Type.TString>;
17209
19110
  createdAtMs: Type.TInteger;
17210
19111
  tokenQuery: Type.TOptional<Type.TString>;
17211
19112
  url: Type.TOptional<Type.TString>;
@@ -17225,6 +19126,7 @@ declare const PortalOpenResultSchema: Type.TObject<{
17225
19126
  publicUrl: Type.TString;
17226
19127
  path: Type.TOptional<Type.TString>;
17227
19128
  description: Type.TOptional<Type.TString>;
19129
+ origin: Type.TOptional<Type.TString>;
17228
19130
  createdAtMs: Type.TInteger;
17229
19131
  tokenQuery: Type.TString;
17230
19132
  url: Type.TString;
@@ -17244,6 +19146,7 @@ declare const PortalChangedEventSchema: Type.TObject<{
17244
19146
  publicUrl: Type.TString;
17245
19147
  path: Type.TOptional<Type.TString>;
17246
19148
  description: Type.TOptional<Type.TString>;
19149
+ origin: Type.TOptional<Type.TString>;
17247
19150
  createdAtMs: Type.TInteger;
17248
19151
  tokenQuery: Type.TOptional<Type.TString>;
17249
19152
  url: Type.TOptional<Type.TString>;
@@ -17460,7 +19363,8 @@ declare const WorktreesRemoveParamsSchema: Type.TObject<{
17460
19363
  }>;
17461
19364
  declare const WorktreesRemoveResultSchema: Type.TObject<{
17462
19365
  removed: Type.TBoolean;
17463
- snapshotRef: Type.TOptional<Type.TString>; /** Why the pre-removal snapshot failed; removal may have stopped or continued without one. */
19366
+ snapshotRef: Type.TOptional<Type.TString>;
19367
+ /** Why the pre-removal snapshot failed; removal may have stopped or continued without one. */
17464
19368
  snapshotError: Type.TOptional<Type.TString>;
17465
19369
  }>;
17466
19370
  declare const WORKTREE_REPOSITORY_STATUSES: readonly ["git", "not_git", "unavailable"];
@@ -17505,4 +19409,4 @@ type WorktreeRepositoryStatus = (typeof WORKTREE_REPOSITORY_STATUSES)[number];
17505
19409
  type WorktreesBranchesParams = Static<typeof WorktreesBranchesParamsSchema>;
17506
19410
  type WorktreesBranchesResult = Static<typeof WorktreesBranchesResultSchema>;
17507
19411
  //#endregion
17508
- export { PortalListResult as $, WorkerAdmissionFailureReason as $A, MessageActionParamsSchema as $C, BoardWidgetDeclared as $D, ProgressCardStepStatusSchema as $E, WorkerInferenceCancelParams as $O, ToolsGitHubAuthorizePollParamsSchema as $S, SessionSuggestionEvent as $T, UserProfileSchema as $_, SessionsFilesListParamsSchema as $a, SkillProposalEvaluationSchema as $b, QuestionListParamsSchema as $c, DesktopObserveResult as $d, ExecApprovalsNodeGetParamsSchema as $f, TalkClientSteerParams as $g, COMMAND_ARG_CHOICES_MAX_ITEMS as $h, SessionsAssignOwnerParams as $i, WorkerTranscriptCommitRequestFrame as $j, ApprovalResolveParamsSchema as $k, NodeInvokeResultParamsSchema as $l, SystemAgentSetupAuthStartResult as $m, TaskSuggestionResolutionSchema as $n, SessionsResetParamsSchema as $o, CronAddParams as $p, SessionSharingRole as $r, SessionPlacement as $s, PluginApprovalResolveParams as $t, ChatHistoryResetResultSchema as $u, AUDIT_ACTIVITY_KINDS as $v, MemoryMigrationItem as $w, SkillsProposalsListResultSchema as $x, AgentsDeleteParamsSchema as $y, WizardCancelParamsSchema as A, isWellFormedApprovalId as AA, AgentWaitParams as AC, BoardPromptAuthorizeParamsSchema as AD, SessionRow as AE, MissingScopeErrorDetailsSchema as AM, UiCommandParams as AO, ToolsCatalogResult as AS, ProjectsRegisterResultSchema as AT, TalkSessionSteerParamsSchema as A_, SessionsCompanionAskResultSchema as Aa, GitHubIdentityScopeSchema as Ab, SecretsReloadParamsSchema as Ac, GatewaySuspendPrepareResultSchema as Ad, DeviceTokenRotateParamsSchema as Af, ChannelsLogoutParamsSchema as Ag, ConfigSchemaLookupResultSchema as Ah, SessionFileEntrySchema as Ai, WorkerLiveEventResponseFrameSchema as Aj, ApprovalAllowDecision as Ak, PushTestResultSchema as Al, CronScratchSchema as Am, TerminalUploadResultSchema as An, SessionsGroupsUpdateParams as Ao, WorkerDesktopAppId as Ap, SessionMember as Ar, SessionDiscussionInfo as As, PluginsSearchParamsSchema as At, NodeRenameParams as Au, AuditListParams as Av, SessionsCatalogArchiveParams as Aw, SkillsProposalEvaluateResult as Ax, ArtifactsListResultSchema as Ay, WizardStatusParamsSchema as B, WORKER_PROTOCOL_FEATURES as BA, ConversationSendResult as BC, BoardTabUpdateOpSchema as BD, ProgressCardChangedEventSchema as BE, SkillsProposalHistoryScanParams as BO, ToolsEffectiveResult as BS, RemoteProjectSchema as BT, TtsSpeakResultSchema as B_, SessionsCreateResult as Ba, ModelsAuthStatusParams as Bb, SecretsStoreListResultSchema as Bc, GatewaySuspendStatusRunningResultSchema as Bd, ScopeUpgradeResult as Bf, TalkAgentControlResultSchema as Bg, UpdateHoldParamsSchema as Bh, SessionGroupSchema as Bi, WorkerSessionsSendParamsSchema as Bj, ApprovalGetParams as Bk, NodeDescribeParamsSchema as Bl, SystemAgentChatHistoryTurnSchema as Bm, TasksGetResultSchema as Bn, SessionsObserverVisibilityParams as Bo, WorkerEnvironmentMetadata as Bp, SessionMembersListResult as Br, SessionDiscussionState as Bs, PluginsSetEnabledParamsSchema as Bt, ChatAttachmentsSchema as Bu, AuditRunInspectParams as Bv, SessionsCatalogListParams as Bw, SkillsProposalRecordResult as Bx, AgentsWorkspaceListParamsSchema as By, WorktreesRemoveResult as C, SessionApprovalReplay as CA, AgentEvent as CC, BoardLegacyEventParamsSchema as CD, SessionTypingResultSchema as CE, SessionGitHubPublicationResult as CM, BoardWidgetRegisteredContentSchema as CO, ToolCatalogEntrySchema as CS, ProjectsListParams as CT, TalkSessionCreateParams as C_, SessionsCompactionRestoreParams as Ca, AgentsUpdateResultSchema as Cb, SessionPlacementState as Cc, GatewaySuspendBlocker as Cd, DevicePairSetupStatusParams as Cf, ChannelsPairingDismissResultSchema as Cg, ConfigGetParams as Ch, SessionFileBrowserEntry as Ci, WorkerLiveEventErrorShape as Cj, validateWorkerInferenceCancelParams as Ck, QuestionWaitAnswerParams as Cl, CronPacingSchema as Cm, TerminalResizeParams as Cn, SessionsGroupsListResultSchema as Co, EnvironmentsListResultSchema as Cp, SystemInfoResultSchema as Cr, SessionsPatchParams as Cs, PluginsListResult as Ct, NodePluginToolsUpdateParamsSchema as Cu, UsersSetAvatarResultSchema as Cv, SessionCatalogPullRequestSummary as Cw, SkillsProposalApplyResultSchema as Cx, ArtifactsGetParams as Cy, WizardAnswer as D, TerminalApprovalSnapshot as DA, AgentIdentityResult as DC, BoardOpSchema as DD, SessionOwnerSchema as DE, CronJobNotFoundErrorDetailsSchema as DM, BoardWidgetSchema as DO, ToolCatalogProfileSchema as DS, ProjectsRegisterParams as DT, TalkSessionOkResult as D_, SessionsCompanionAskParams as Da, GitHubAuthorSchema as Db, SecretStoreEntrySchema as Dc, GatewaySuspendPrepareParamsSchema as Dd, DeviceTokenRevokeParams as Df, ChannelsPairingListResultSchema as Dg, ConfigSchemaLookupParams as Dh, SessionFileContentEncoding as Di, WorkerLiveEventRequestFrame as Dj, validateWorkerInferenceTerminalOutcome as Dk, PushTestParams as Dl, CronRunsParamsSchema as Dm, TerminalUploadParams as Dn, SessionsGroupsPutParamsSchema as Do, EnvironmentsStatusResultSchema as Dp, SnapshotSchema as Dr, SessionsRecoverParamsSchema as Ds, PluginsRefreshResult as Dt, NodePresenceAlivePayloadSchema as Du, UsersSetDisplayNameResultSchema as Dv, SessionCatalogSessionSchema as Dw, SkillsProposalDecisionParamsSchema as Dx, ArtifactsListParams as Dy, WorktreesRestoreParamsSchema as E, SystemAgentApprovalPresentationSchema as EA, AgentIdentityParamsSchema as EC, BoardOp as ED, SessionOwner as EE, SessionGitHubPublishParamsSchema as EM, BoardWidgetResizeOpSchema as EO, ToolCatalogProfile as ES, ProjectsListResultSchema as ET, TalkSessionCreateResultSchema as E_, SessionsCompactionRestoreResultSchema as Ea, GatewayAgentRuntime as Eb, SecretStoreEntry as Ec, GatewaySuspendPrepareParams as Ed, DevicePairSetupStatusResultSchema as Ef, ChannelsPairingListResult as Eg, ConfigPatchParamsSchema as Eh, SessionFileBrowserResultSchema as Ei, WorkerLiveEventParamsSchema as Ej, validateWorkerInferenceTerminalFrame as Ek, QuestionWaitAnswerResultSchema as El, CronRunParamsSchema as Em, TerminalSessionInfoSchema as En, SessionsGroupsPutParams as Eo, EnvironmentsStatusResult as Ep, Snapshot as Er, SessionsResolveParamsSchema as Es, PluginsRefreshParamsSchema as Et, NodePresenceAlivePayload as Eu, UsersSetDisplayNameResult as Ev, SessionCatalogSession as Ew, SkillsProposalDecisionParams as Ex, ArtifactsGetResultSchema as Ey, WizardStartParams as F, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE as FA, ConversationListParamsSchema as FC, BoardTab as FD, PROGRESS_CARD_MAX_STEPS as FE, UserPrefsLimitExceededErrorDetailsSchema as FM, UiFocusCommandSchema as FO, ToolsEffectiveGroupSchema as FS, ProjectsSearchRemoteParams as FT, TalkSpeakResult as F_, SessionsCompanionStateParams as Fa, ModelCatalogProviderOutcomeSchema as Fb, SecretsResolveResultSchema as Fc, GatewaySuspendStatusParams as Fd, ScopeUpgradeRegistration as Ff, ChannelsStatusResult as Fg, ConfigSetParams as Fh, SessionFileRelevance as Fi, WorkerProviderReplayState as Fj, ApprovalChannelReviewerSchema as Fk, WebPushUnsubscribeParams as Fl, SystemAgentChatHistoryParams as Fm, TasksCancelResult as Fn, SessionsListParamsSchema as Fo, WorkerDesktopLaunchResultSchema as Fp, SessionMemberRemoveParams as Fr, SessionDiscussionInfoSchema as Fs, PluginsSessionActionParamsSchema as Ft, NodeSkillsUpdateParamsSchema as Fu, AuditRunIdentityPresentV1Schema as Fv, SessionsCatalogContinueParamsSchema as Fw, SkillsProposalEventsListResultSchema as Fx, AgentsWorkspaceGetParams as Fy, PortalChangedEvent as G, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES as GA, ConversationTurnCancelResultSchema as GC, BoardViewTicketSchema as GD, ProgressCardPutParams as GE, SkillsProposalHistoryStatusParamsSchema as GO, ToolsGitHubAuthorizeCancelResult as GS, SessionsDeleteResult as GT, GIT_COAUTHOR_PREFERENCE_KEY as G_, SessionsDiffParamsSchema as Ga, ModelsListResultSchema as Gb, Question as Gc, FsListDirParams as Gd, ExecApprovalGetParamsSchema as Gf, TalkClientCloseParams as Gg, UpdateScheduleState as Gh, SessionObserverPlanProgress as Gi, WorkerSessionsSpawnResponseFrame as Gj, ApprovalHistoryParamsSchema as Gk, NodeInvokeInputEvent as Gl, SystemAgentChatResult as Gm, TasksRecoveryParams as Gn, SessionsPluginPatchParamsSchema as Go, WorkerExecutionModeSchema as Gp, SessionSharingEventSchema as Gr, SessionMoveGatewayTargetSchema as Gs, PluginsUiDescriptorsResult as Gt, ChatFinalEventSchema as Gu, DecisionReceiptDisplayV1Schema as Gv, SessionsCatalogReadParamsSchema as Gw, SkillsProposalRequestRevisionResultSchema as Gx, AgentOwnershipSchema as Gy, WizardStatusResultSchema as H, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as HA, ConversationTurnCancelParams as HC, BoardTicketEventParamsSchema as HD, ProgressCardGetParamsSchema as HE, SkillsProposalHistoryScanResult as HO, ToolsGitHubAuthorizeAccessDeniedResultSchema as HS, PreservedSessionWorktreeSchema as HT, WebLoginStartParamsSchema as H_, SessionsDescribeParams as Ha, ModelsListParams as Hb, SecretsStoreMutationResultSchema as Hc, GatewaySuspendTaskBlockerSchema as Hd, ScopeUpgradeWait as Hf, TalkCatalogParamsSchema as Hg, UpdateHoldResultSchema as Hh, SessionObserverDigestSchema as Hi, WorkerSessionsSendResponseFrameSchema as Hj, ApprovalGetResult as Hk, NodeEventParamsSchema as Hl, SystemAgentChatParamsSchema as Hm, TasksListParamsSchema as Hn, SessionsObserverVisibilityResult as Ho, WorkerEnvironmentState as Hp, SessionSharingAction as Hr, SessionMoveDeviceTargetSchema as Hs, PluginsSetEnabledResultSchema as Ht, ChatErrorEventSchema as Hu, AuditRunInspectResult as Hv, SessionsCatalogListResult as Hw, SkillsProposalRequestRevisionParams as Hx, AgentsWorkspaceListResultSchema as Hy, WizardStartParamsSchema as I, WORKER_GITHUB_PUBLICATION_PROTOCOL_FEATURE as IA, ConversationListResult as IC, BoardTabCreateOpSchema as ID, PROGRESS_CARD_MAX_STEP_UTF8_BYTES as IE, WizardNotFoundErrorDetailsSchema as IM, UiNavigateCommandSchema as IO, ToolsEffectiveNotice as IS, ProjectsSearchRemoteParamsSchema as IT, TalkSpeakResultSchema as I_, SessionsCompanionStateParamsSchema as Ia, ModelChoice as Ib, SecretsStoreDeleteParams as Ic, GatewaySuspendStatusParamsSchema as Id, ScopeUpgradeRegistrationSchema as If, ChannelsStatusResultSchema as Ig, ConfigSetParamsSchema as Ih, SessionFileRelevanceSchema as Ii, WorkerProviderReplayStateSchema as Ij, ApprovalDecision as Ik, WebPushUnsubscribeParamsSchema as Il, SystemAgentChatHistoryParamsSchema as Im, TasksCancelResultSchema as In, SessionsMessagesSubscribeParams as Io, WorkerDesktopObserveParams as Ip, SessionMemberRemoveParamsSchema as Ir, SessionDiscussionOpenParams as Is, PluginsSessionActionResult as It, ChatAbortParams as Iu, AuditRunIdentityUnknownV1Schema as Iv, SessionsCatalogContinueResult as Iw, SkillsProposalInspectParams as Ix, AgentsWorkspaceGetParamsSchema as Iy, PortalCloseParamsSchema as J, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH as JA, ConversationTurnReply as JC, BoardWidgetAppViewParamsSchema as JD, ProgressCardPutResultSchema as JE, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as JO, ToolsGitHubAuthorizeFailedResultSchema as JS, WorktreePreservationReason as JT, USER_PREFS_VALUE_BYTES as J_, SessionsFilesGetParams as Ja, ModelsProbeResult as Jb, QuestionGetParams as Jc, FsListDirResultSchema as Jd, ExecApprovalResolveParams as Jf, TalkClientCreateParamsSchema as Jg, UpdateStatusParamsSchema as Jh, SessionOperationEventSchema as Ji, WorkerTranscriptCommitErrorReasonSchema as Jj, ApprovalKind as Jk, NodeInvokeParamsSchema as Jl, SystemAgentSetupActivateParamsSchema as Jm, TasksRecoveryResultSchema as Jn, SessionsPreviewParams as Jo, WorkerMachineOptionsSchema as Jp, SessionVisibilitySetParams as Jr, SessionMovePlacementState as Js, PluginsUninstallParamsSchema as Jt, ChatHistoryDeltaResult as Ju, ExecutionIdentityContextV1 as Jv, SessionsCatalogStartTerminalParams as Jw, SkillsProposalUpdateParams as Jx, AgentsCreateParams as Jy, PortalChangedEventSchema as K, WORKER_RPC_SET_VERSION as KA, ConversationTurnParams as KC, BoardWidget as KD, ProgressCardPutParamsSchema as KE, validateSkillsProposalHistoryScanParams as KO, ToolsGitHubAuthorizeCancelResultSchema as KS, SessionsDeleteResultSchema as KT, USER_PREFS_ENTRY_LIMIT as K_, SessionsDiffResult as Ka, ModelsProbeParams as Kb, QuestionAnswers as Kc, FsListDirParamsSchema as Kd, ExecApprovalRequestParams as Kf, TalkClientCloseParamsSchema as Kg, UpdateScheduleStateSchema as Kh, SessionObserverPlanProgressSchema as Ki, WorkerSessionsSpawnResponseFrameSchema as Kj, ApprovalHistoryResult as Kk, NodeInvokeInputEventSchema as Kl, SystemAgentChatResultSchema as Km, TasksRecoveryParamsSchema as Kn, SessionsPluginPatchResult as Ko, WorkerMachineOption as Kp, SessionSharingIdentity as Kr, SessionMovePlacement as Ks, PluginsUiDescriptorsResultSchema as Kt, ChatHistoryCursorResult as Ku, DecisionReceiptV1 as Kv, SessionsCatalogReadResult as Kw, SkillsProposalReviseParams as Kx, AgentSummary as Ky, WizardStartResult as L, WORKER_HEARTBEAT_INTERVAL_MS as LA, ConversationListResultSchema as LC, BoardTabDeleteOpSchema as LD, PROGRESS_CARD_MAX_UTF8_BYTES as LE, buildMissingScopeErrorDetails as LM, UiPanelCommandSchema as LO, ToolsEffectiveNoticeSchema as LS, ProjectsSearchRemoteResult as LT, TtsSpeakParams as L_, SessionsCompanionStateResult as La, ModelChoiceSchema as Lb, SecretsStoreDeleteParamsSchema as Lc, GatewaySuspendStatusReadyResultSchema as Ld, ScopeUpgradeRejectedSchema as Lf, ChannelsStopParams as Lg, UpdateAvailable as Lh, SessionGroup as Li, WorkerSessionToolResult as Lj, ApprovalDecisionSchema as Lk, WebPushVapidPublicKeyParams as Ll, SystemAgentChatHistoryResult as Lm, TasksGetParams as Ln, SessionsMessagesSubscribeParamsSchema as Lo, WorkerDesktopObserveParamsSchema as Lp, SessionMemberSchema as Lr, SessionDiscussionOpenParamsSchema as Ls, PluginsSessionActionResultSchema as Lt, ChatAbortParamsSchema as Lu, AuditRunIdentityUnsupportedV1Schema as Lv, SessionsCatalogContinueResultSchema as Lw, SkillsProposalInspectParamsSchema as Lx, AgentsWorkspaceGetResult as Ly, WizardNextParamsSchema as M, ValidationError as MA, ConversationListItem as MC, BoardSizeSchema as MD, SessionRunStatus as ME, ProjectCloneErrorDetailsSchema as MM, UiCommandResult as MO, ToolsEffectiveEntry as MS, ProjectsRemoveParamsSchema as MT, TalkSessionSubmitToolResultParamsSchema as M_, SessionsCompanionResetParamsSchema as Ma, GitHubSelectedIdentity as Mb, SecretsResolveParams as Mc, GatewaySuspendResumeParamsSchema as Md, DeviceTokenRotateResultSchema as Mf, ChannelsStartParamsSchema as Mg, ConfigSchemaParamsSchema as Mh, SessionFileKindSchema as Mi, WorkerLiveEventResultSchema as Mj, ApprovalAllowedReasonSchema as Mk, WebPushSubscribeParamsSchema as Ml, CronScratchSetResultSchema as Mm, TaskSummarySchema as Mn, SessionsGroupsUpdateResult as Mo, WorkerDesktopLaunchParams as Mp, SessionMemberAddParamsSchema as Mr, SessionDiscussionInfoParamsSchema as Ms, PluginsSearchResultSchema as Mt, NodeSkillDescriptor as Mu, AuditListResult as Mv, SessionsCatalogArchiveResult as Mw, SkillsProposalEventsListParams as Mx, AgentsWorkspaceEntrySchema as My, WizardNextResult as N, formatValidationErrors as NA, ConversationListItemSchema as NC, BoardSnapshot as ND, SessionToolOverrides as NE, SkillProposalRevisionChangedErrorDetailsSchema as NM, UiCommandResultSchema as NO, ToolsEffectiveEntrySchema as NS, ProjectsRemoveResult as NT, TalkSpeakParams as N_, SessionsCompanionResetResult as Na, GitHubSelectedIdentitySchema as Nb, SecretsResolveParamsSchema as Nc, GatewaySuspendResumeResult as Nd, ScopeUpgradeApprovedSchema as Nf, ChannelsStatusParams as Ng, ConfigSchemaResponse as Nh, SessionFilePreviewKind as Ni, WorkerLiveEventSchema as Nj, ApprovalCancelledReasonSchema as Nk, WebPushTestParams as Nl, CronStatusParamsSchema as Nm, TasksCancelParams as Nn, SessionsGroupsUpdateResultSchema as No, WorkerDesktopLaunchParamsSchema as Np, SessionMemberMutationResult as Nr, SessionDiscussionInfoResult as Ns, PluginsSessionActionFailureResultSchema as Nt, NodeSkillDescriptorSchema as Nu, AuditListResultSchema as Nv, SessionsCatalogArchiveResultSchema as Nw, SkillsProposalEventsListParamsSchema as Nx, AgentsWorkspaceFile as Ny, WizardAnswerSchema as O, TerminalApprovalSnapshotSchema as OA, AgentIdentityResultSchema as OC, BoardPluginActionParamsSchema as OD, SessionPermissionMode as OE, GatewayErrorDetailsSchema as OM, UiClosePaneCommandSchema as OO, ToolsCatalogParams as OS, ProjectsRegisterParamsSchema as OT, TalkSessionOkResultSchema as O_, SessionsCompanionAskParamsSchema as Oa, GitHubIdentityFacts as Ob, SecretStoreEnvEntrySchema as Oc, GatewaySuspendPrepareReadyResultSchema as Od, DeviceTokenRevokeParamsSchema as Of, ChannelsPairingRequest as Og, ConfigSchemaLookupParamsSchema as Oh, SessionFileContentEncodingSchema as Oi, WorkerLiveEventRequestFrameSchema as Oj, AllowedApprovalSnapshot as Ok, PushTestParamsSchema as Ol, CronScratchGetParamsSchema as Om, TerminalUploadParamsSchema as On, SessionsGroupsRenameParams as Oo, RuntimeTargetIssue as Op, StateVersion as Or, SessionsRecoverResultSchema as Os, PluginsRefreshResultSchema as Ot, NodePresenceAliveReason as Ou, AuditEvent as Ov, SessionCatalogTranscriptItem as Ow, SkillsProposalEvaluateParams as Ox, ArtifactsListParamsSchema as Oy, WizardNextResultSchema as P, WORKER_BUNDLE_PREWARM_VERSION as PA, ConversationListParams as PC, BoardSnapshotSchema as PD, SessionToolOverridesSchema as PE, UnknownAgentIdErrorDetailsSchema as PM, UiCommandSchema as PO, ToolsEffectiveGroup as PS, ProjectsRemoveResultSchema as PT, TalkSpeakParamsSchema as P_, SessionsCompanionResetResultSchema as Pa, ModelCatalogProviderOutcome as Pb, SecretsResolveResult as Pc, GatewaySuspendResumeResultSchema as Pd, ScopeUpgradeExpiredSchema as Pf, ChannelsStatusParamsSchema as Pg, ConfigSchemaResponseSchema as Ph, SessionFilePreviewKindSchema as Pi, WorkerProtocolCloseReason as Pj, ApprovalChannelReviewer as Pk, WebPushTestParamsSchema as Pl, CronUpdateParamsSchema as Pm, TasksCancelParamsSchema as Pn, SessionsListParams as Po, WorkerDesktopLaunchResult as Pp, SessionMemberMutationResultSchema as Pr, SessionDiscussionInfoResultSchema as Ps, PluginsSessionActionParams as Pt, NodeSkillsUpdateParams as Pu, AuditRunIdentityAmbiguousV1Schema as Pv, SessionsCatalogContinueParams as Pw, SkillsProposalEventsListResult as Px, AgentsWorkspaceFileSchema as Py, PortalListParamsSchema as Q, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as QA, MessageActionParams as QC, BoardWidgetContentSchema as QD, ProgressCardStepStatus as QE, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as QO, ToolsGitHubAuthorizePollParams as QS, SessionSuggestionActionSchema as QT, UserProfileGitHubIdentitySchema as Q_, SessionsFilesListParams as Qa, SkillProposalEvaluation as Qb, QuestionListParams as Qc, DesktopObserveParamsSchema as Qd, ExecApprovalsNodeGetParams as Qf, TalkClientMutationResultSchema as Qg, COMMAND_ARGS_MAX_ITEMS as Qh, SessionsAbortParamsSchema as Qi, WorkerTranscriptCommitParamsSchema as Qj, ApprovalResolveParams as Qk, NodeInvokeResultParams as Ql, SystemAgentSetupAuthStartParamsSchema as Qm, TaskSuggestionResolution as Qn, SessionsResetParams as Qo, WorkerTunnelStatusSchema as Qp, SESSION_VISIBILITY_VALUES as Qr, SessionMoveTargetSchema as Qs, PluginApprovalRequestParamsSchema as Qt, ChatHistoryResetResult as Qu, AUDIT_ACTIVITY_DIRECTIONS as Qv, MAX_MEMORY_MIGRATION_ITEMS as Qw, SkillsProposalsListResult as Qx, AgentsDeleteParams as Qy, WizardStartResultSchema as R, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as RA, ConversationSendParams as RC, BoardTabIdSchema as RD, ProgressCard as RE, errorShape as RM, UiSidebarCommandSchema as RO, ToolsEffectiveParams as RS, ProjectsSearchRemoteResultSchema as RT, TtsSpeakParamsSchema as R_, SessionsCompanionStateResultSchema as Ra, ModelsAuthLogoutParams as Rb, SecretsStoreListParamsSchema as Rc, GatewaySuspendStatusResult as Rd, ScopeUpgradeRequest as Rf, ChannelsStopParamsSchema as Rg, UpdateAvailableSchema as Rh, SessionGroupDefaults as Ri, WorkerSessionToolResultSchema as Rj, ApprovalDeniedReasonSchema as Rk, WebPushVapidPublicKeyParamsSchema as Rl, SystemAgentChatHistoryResultSchema as Rm, TasksGetParamsSchema as Rn, SessionsMessagesUnsubscribeParams as Ro, WorkerDesktopObserveResult as Rp, SessionMembersListParams as Rr, SessionDiscussionOpenResult as Rs, PluginsSessionActionSuccessResultSchema as Rt, ChatAbortedEventSchema as Ru, AuditRunIdentityV1 as Rv, SessionsCatalogHostEvent as Rw, SkillsProposalInspectResult as Rx, AgentsWorkspaceGetResultSchema as Ry, WorktreesRemoveParamsSchema as S, SessionApprovalEventSchema as SA, ToolsInvokeResultSchema as SC, BoardGetParamsSchema as SD, SessionTypingResult as SE, SessionGitHubPublicationRequestedSchema as SM, BoardWidgetPutResultSchema as SO, ToolCatalogEntry as SS, ProjectsAddResultSchema as ST, TalkSessionCloseParamsSchema as S_, SessionsCompactionListResultSchema as Sa, AgentsUpdateResult as Sb, SessionsReclaimResultSchema as Sc, HooksStatusParamsSchema as Sd, DevicePairSetupDeliveryUncertainEventSchema as Sf, ChannelsPairingDismissResult as Sg, ConfigApplyParamsSchema as Sh, SessionDiffScopeSchema as Si, WorkerLiveEventErrorDetailsSchema as Sj, WorkerInferenceTerminalParams as Sk, QuestionStatusSchema as Sl, CronListParamsSchema as Sm, TerminalOpenResultSchema as Sn, SessionsGroupsListResult as So, EnvironmentsListResult as Sp, SystemInfoResult as Sr, SessionsPatchMutationSchema as Ss, PluginsListParamsSchema as St, NodePluginToolsUpdateParams as Su, UsersSetAvatarResult as Sv, SessionCatalogLocatorSchema as Sw, SkillsProposalApplyResult as Sx, ArtifactsDownloadResultSchema as Sy, WorktreesRestoreParams as T, SystemAgentApprovalPresentation as TA, AgentIdentityParams as TC, BoardMcpAppDescriptorSchema as TD, SessionCreatedActorSchema as TE, SessionGitHubPublishParams as TM, BoardWidgetRemoveOpSchema as TO, ToolCatalogGroupSchema as TS, ProjectsListResult as TT, TalkSessionCreateResult as T_, SessionsCompactionRestoreResult as Ta, AuthProbeStatusSchema as Tb, GitHubSetupHandleSchema as Tc, GatewaySuspendPrepareBusyResultSchema as Td, DevicePairSetupStatusResult as Tf, ChannelsPairingListParamsSchema as Tg, ConfigPatchParams as Th, SessionFileBrowserResult as Ti, WorkerLiveEventParams as Tj, validateWorkerInferenceStartParams as Tk, QuestionWaitAnswerResult as Tl, CronRunLogEntrySchema as Tm, TerminalSessionInfo as Tn, SessionsGroupsMutationResultSchema as To, EnvironmentsStatusParamsSchema as Tp, PresenceEntrySchema as Tr, SessionsResolveParams as Ts, PluginsRefreshParams as Tt, NodePresenceActivityPayloadSchema as Tu, UsersSetDisplayNameParamsSchema as Tv, SessionCatalogSchema as Tw, SkillsProposalCreateParamsSchema as Tx, ArtifactsGetResult as Ty, WizardStep as U, WORKER_PROTOCOL_MAX_METHOD_LENGTH as UA, ConversationTurnCancelParamsSchema as UC, BoardUpdateParams as UD, ProgressCardGetResult as UE, SkillsProposalHistoryScanResultSchema as UO, ToolsGitHubAuthorizeCancelParams as US, SessionsDeleteParams as UT, WebLoginWaitParams as U_, SessionsDescribeParamsSchema as Ua, ModelsListParamsSchema as Ub, SecretsStoreSetParams as Uc, FsDirEntry as Ud, ScopeUpgradeWaitSchema as Uf, TalkCatalogResult as Ug, UpdateRunParams as Uh, SessionObserverHealth as Ui, WorkerSessionsSpawnParams as Uj, ApprovalGetResultSchema as Uk, NodeEventResult as Ul, SystemAgentChatQuestion as Um, TasksListResult as Un, SessionsObserverVisibilityResultSchema as Uo, WorkerEnvironmentStateSchema as Up, SessionSharingActionSchema as Ur, SessionMoveExpectedSource as Us, PluginsUiDescriptorsParams as Ut, ChatEvent as Uu, AuditRunInspectResultSchema as Uv, SessionsCatalogListResultSchema as Uw, SkillsProposalRequestRevisionParamsSchema as Ux, AgentKind as Uy, WizardStatusResult as V, WORKER_PROTOCOL_MAX_FEATURES as VA, ConversationSendResultSchema as VC, BoardTabsReorderOpSchema as VD, ProgressCardGetParams as VE, SkillsProposalHistoryScanParamsSchema as VO, ToolsEffectiveResultSchema as VS, PreservedSessionWorktree as VT, WebLoginStartParams as V_, SessionsCreateResultSchema as Va, ModelsAuthStatusParamsSchema as Vb, SecretsStoreMutationResult as Vc, GatewaySuspendTaskBlocker as Vd, ScopeUpgradeResultSchema as Vf, TalkCatalogParams as Vg, UpdateHoldResult as Vh, SessionObserverDigest as Vi, WorkerSessionsSendResponseFrame as Vj, ApprovalGetParamsSchema as Vk, NodeEventParams as Vl, SystemAgentChatParams as Vm, TasksListParams as Vn, SessionsObserverVisibilityParamsSchema as Vo, WorkerEnvironmentMetadataSchema as Vp, SessionMembersListResultSchema as Vr, SessionDiscussionStateSchema as Vs, PluginsSetEnabledResult as Vt, ChatDeltaEventSchema as Vu, AuditRunInspectParamsSchema as Vv, SessionsCatalogListParamsSchema as Vw, SkillsProposalRecordResultSchema as Vx, AgentsWorkspaceListResult as Vy, WizardStepSchema as W, WORKER_PROTOCOL_METHODS as WA, ConversationTurnCancelResult as WC, BoardUpdateParamsSchema as WD, ProgressCardGetResultSchema as WE, SkillsProposalHistoryStatusParams as WO, ToolsGitHubAuthorizeCancelParamsSchema as WS, SessionsDeleteParamsSchema as WT, WebLoginWaitParamsSchema as W_, SessionsDiffParams as Wa, ModelsListResult as Wb, SecretsStoreSetParamsSchema as Wc, FsDirEntrySchema as Wd, ExecApprovalGetParams as Wf, TalkCatalogResultSchema as Wg, UpdateRunParamsSchema as Wh, SessionObserverHealthSchema as Wi, WorkerSessionsSpawnParamsSchema as Wj, ApprovalHistoryParams as Wk, NodeEventResultSchema as Wl, SystemAgentChatQuestionSchema as Wm, TasksListResultSchema as Wn, SessionsPluginPatchParams as Wo, WorkerExecutionMode as Wp, SessionSharingEvent as Wr, SessionMoveExpectedSourceSchema as Ws, PluginsUiDescriptorsParamsSchema as Wt, ChatEventSchema as Wu, DecisionReceiptDisplayV1 as Wv, SessionsCatalogReadParams as Ww, SkillsProposalRequestRevisionResult as Wx, AgentKindSchema as Wy, PortalCloseResultSchema as X, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as XA, ConversationTurnResult as XC, BoardWidgetAppViewResultSchema as XD, ProgressCardStep as XE, WORKER_INFERENCE_METHODS as XO, ToolsGitHubAuthorizeNetworkErrorResultSchema as XS, SessionSuggestion as XT, UserProfileAvatarMimeSchema as X_, SessionsFilesGetResult as Xa, ModelsProbeTargetResult as Xb, QuestionGetResult as Xc, DesktopLaunchParamsSchema as Xd, ExecApprovalsGetParams as Xf, TalkClientCreateResultSchema as Xg, UpdateStatusResultSchema as Xh, SessionWorktreeInfoSchema as Xi, WorkerTranscriptCommitErrorShapeSchema as Xj, ApprovalPresentation as Xk, NodeInvokeProgressParamsSchema as Xl, SystemAgentSetupActivateResultSchema as Xm, TaskSuggestionEvent as Xn, SessionsRecoverParams as Xo, WorkerSlotSummarySchema as Xp, SessionVisibilitySetResult as Xr, SessionMoveProfileTargetSchema as Xs, PluginsUninstallResultSchema as Xt, ChatHistoryParams as Xu, PrincipalRefV1 as Xv, SessionsCatalogStartTerminalResult as Xw, SkillsProposalsListParams as Xx, AgentsCreateResult as Xy, PortalCloseResult as Y, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as YA, ConversationTurnReplySchema as YC, BoardWidgetAppViewResult as YD, ProgressCardSchema as YE, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as YO, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema as YS, WorktreePreservationReasonSchema as YT, UserProfile as Y_, SessionsFilesGetParamsSchema as Ya, ModelsProbeResultSchema as Yb, QuestionGetParamsSchema as Yc, DesktopLaunchParams as Yd, ExecApprovalResolveParamsSchema as Yf, TalkClientCreateResult as Yg, UpdateStatusResult as Yh, SessionWorktreeInfo as Yi, WorkerTranscriptCommitErrorShape as Yj, ApprovalKindSchema as Yk, NodeInvokeProgressParams as Yl, SystemAgentSetupActivateResult as Ym, TaskSuggestion as Yn, SessionsPreviewParamsSchema as Yo, WorkerSlotSummary as Yp, SessionVisibilitySetParamsSchema as Yr, SessionMovePlacementStateSchema as Ys, PluginsUninstallResult as Yt, ChatHistoryDeltaResultSchema as Yu, ExecutionIdentityContextV1Schema as Yv, SessionsCatalogStartTerminalParamsSchema as Yw, SkillsProposalUpdateParamsSchema as Yx, AgentsCreateParamsSchema as Yy, PortalListParams as Z, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as ZA, ConversationTurnResultSchema as ZC, BoardWidgetContent as ZD, ProgressCardStepSchema as ZE, WORKER_INFERENCE_PROTOCOL_FEATURE as ZO, ToolsGitHubAuthorizePendingResultSchema as ZS, SessionSuggestionAction as ZT, UserProfileGitHubIdentity as Z_, SessionsFilesGetResultSchema as Za, ModelsProbeTargetResultSchema as Zb, QuestionGetResultSchema as Zc, DesktopObserveParams as Zd, ExecApprovalsGetParamsSchema as Zf, TalkClientMutationResult as Zg, COMMAND_ALIAS_MAX_ITEMS as Zh, SessionsAbortParams as Zi, WorkerTranscriptCommitParams as Zj, ApprovalPresentationSchema as Zk, NodeInvokeRequestEventSchema as Zl, SystemAgentSetupAuthStartParams as Zm, TaskSuggestionEventSchema as Zn, SessionsRecoverResult as Zo, WorkerTunnelStatus as Zp, SessionVisibilitySetResultSchema as Zr, SessionMoveTarget as Zs, PluginApprovalRequestParams as Zt, ChatHistoryParamsSchema as Zu, PrincipalRefV1Schema as Zv, SessionsCatalogStartTerminalResultSchema as Zw, SkillsProposalsListParamsSchema as Zx, AgentsCreateResultSchema as Zy, WorktreesListParams as _, PluginApprovalPresentation as _A, ToolsGitHubStatusResultSchema as _C, BoardDataReadParamsSchema as _D, SessionSuggestionsResolveResultSchema as _E, SessionGitHubPublicationPublished as _M, BoardWidgetPutContent as _O, SkillsUploadBeginParamsSchema as _S, ProjectSummary as _T, TalkSessionCancelOutputParams as __, SessionsCompactionBranchResult as _a, AgentsListParamsSchema as _b, SessionsReclaimParams as _c, LogsTailParamsSchema as _d, DevicePairSetupCodeResult as _f, ChannelsPairingApproveParamsSchema as _g, SystemChangesListParams as _h, SessionDiffFile as _i, WorkerHeartbeatResponseFrameSchema as _j, WorkerInferenceStartResponseFrame as _k, QuestionResolveResultSchema as _l, CronDeclarativeAddResultSchema as _m, TerminalListResult as _n, SessionsGroupsDefaultsResultSchema as _o, EnvironmentsDestroyParamsSchema as _p, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as _r, SessionsPatchManyResult as _s, PluginsInstallParams as _t, NodePendingEnqueueParamsSchema as _u, UsersSelfParamsSchema as _v, SessionCatalogDescriptor as _w, SkillsDetailResultSchema as _x, ArtifactSummary as _y, WorktreeRepositoryStatus as a, ApprovalTerminalReasonSchema as aA, ToolsGitHubAuthorizeStartResult as aC, BoardActionParamsSchema as aD, SessionSuggestionStateSchema as aE, WorkerTranscriptMessage as aM, BoardWidgetHeightModeSchema as aO, SkillsSecurityVerdictsParamsSchema as aS, MigrationsMemoryPlanResult as aT, TalkClientTranscriptParams as a_, SessionsBranchesListResult as aa, AgentsFilesGetParamsSchema as ab, SessionPlacementRunner as ac, ChatMetadataParams as ad, DevicePairListParams as af, COMMAND_LIST_MAX_ITEMS as ag, SystemAgentSetupVerifyParams as ah, SessionsViewerPresenceSetParamsSchema as ai, WorkerConnectRequestFrame as aj, WorkerInferenceContext as ak, QuestionRecordSchema as al, CronRemoveParams as am, TerminalAttachResult as an, SessionsFilesRevealResultSchema as ao, ExecApprovalsSetParamsSchema as ap, TaskSuggestionsCreateParams as ar, SessionsSearchHitSchema as as, PortalSummary as at, NodePairListParamsSchema as au, UsersListParamsSchema as av, CHAT_SEND_SESSION_KEY_MAX_LENGTH as aw, SkillsBinsResultSchema as ax, AuditActivityEventV1Schema as ay, WorktreesListResultSchema as b, PluginApprovalSeveritySchema as bA, ToolsInvokeParamsSchema as bC, BoardFocusTabCommandSchema as bD, SessionTypingParams as bE, SessionGitHubPublicationPublishingSchema as bM, BoardWidgetPutParamsSchema as bO, SkillsUploadCommitParams as bS, ProjectsAddParamsSchema as bT, TalkSessionCancelOutputResultSchema as b_, SessionsCompactionListParamsSchema as ba, AgentsUpdateParams as bb, SessionsReclaimResultPlacement as bc, QueueMode as bd, DevicePairSetupCompletedEventSchema as bf, ChannelsPairingDismissParams as bg, SystemChangesListResultSchema as bh, SessionDiffFileStatusSchema as bi, WorkerLiveEvent as bj, WorkerInferenceTerminalFrame as bk, QuestionSchema as bl, CronJobSchema as bm, TerminalOpenParamsSchema as bn, SessionsGroupsListParams as bo, EnvironmentsListParams as bp, SystemInfoParams as br, SessionsPatchManyTargetSchema as bs, PluginsInstallResultSchema as bt, NodePluginToolDescriptor as bu, UsersSetAvatarParams as bv, SessionCatalogHostSchema as bw, SkillsProposalActionParams as bx, ArtifactsDownloadParamsSchema as by, WorktreesBranchesParamsSchema as c, DeniedApprovalSnapshot as cA, ToolsGitHubConfigureParams as cC, BoardChangedEvent as cD, SessionSuggestionsAddResult as cE, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as cM, BoardWidgetMaterializedPutParams as cO, SkillsSkillCardParams as cS, PROJECTS_LIST_MAX_IDENTITY_PROBES as cT, TalkConfigParamsSchema as c_, SessionsBranchesSwitchParamsSchema as ca, AgentsFilesListParams as cb, SessionPlacementStateSchema as cc, ChatRunStartupPhaseSchema as cd, DevicePairRejectParamsSchema as cf, CommandEntrySchema as cg, SystemAgentSetupVerifyResultSchema as ch, SESSION_OBSERVER_HEALTH_VALUES as ci, WorkerGitHubPublishParams as cj, WorkerInferenceEventFrame as ck, QuestionRequestQuestion as cl, CronRunsParams as cm, TerminalCloseParamsSchema as cn, SessionsFilesSetResult as co, EnvironmentStatus as cp, TaskSuggestionsCreateResultSchema as cr, SessionsSearchResult as cs, PluginCatalogEntry as ct, NodePairRemoveParams as cu, UsersPrefsGetParams as cv, GatewayClientModeSchema as cw, SkillsCuratorActionResult as cx, AuditActivityListParams as cy, WorktreesCreateParams as d, ExecApprovalPresentationSchema as dA, ToolsGitHubInheritConfigureParamsSchema as dC, BoardCommand as dD, SessionSuggestionsListParamsSchema as dE, WorkerAdmissionFailureReasonSchema as dM, BoardWidgetMoveOpSchema as dO, SkillsSkillCardResultSchema as dS, ProjectRecent as dT, TalkEvent as d_, SessionsCleanupParams as da, AgentsFilesListResultSchema as db, SessionsDispatchResult as dc, ChatStatusEventSchema as dd, DevicePairRenameParams as df, CommandsListResult as dg, SystemChangeEntry as dh, SessionCompactionCheckpoint as di, WorkerGitHubPublishResponseFrameSchema as dj, WorkerInferenceModelRefSchema as dk, QuestionRequestResultSchema as dl, CronScratchSetParams as dm, TerminalEvent as dn, SessionsForkParamsSchema as do, EnvironmentSummarySchema as dp, TaskSuggestionsDismissResult as dr, SessionsSendParamsSchema as ds, PluginCatalogOfficialInstallSchema as dt, NodePendingAckParamsSchema as du, UsersPrefsGetResultSchema as dv, SecretInputSchema as dw, SkillsCuratorStatusParamsSchema as dx, AuditActivityListResultSchema as dy, ApprovalResolveResult as eA, ToolsGitHubAuthorizePollResult as eC, BOARD_CRON_JOB_ID_MAX_LENGTH as eD, SessionSuggestionEventSchema as eE, WorkerTranscriptCommitRequestFrameSchema as eM, BoardWidgetDeclaredSchema as eO, SkillsSearchParams as eS, MemoryMigrationProviderPlan as eT, TalkClientSteerParamsSchema as e_, SessionsAssignOwnerParamsSchema as ea, AgentsDeleteResult as eb, SessionPlacementDiskSpace as ec, ChatInjectParams as ed, DesktopObserveResultSchema as ef, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as eg, SystemAgentSetupAuthStartResultSchema as eh, SessionSharingRoleSchema as ei, WorkerAdmissionHandshake as ej, WorkerInferenceCancelRequestFrame as ek, QuestionListResult as el, CronAddResult as em, PluginApprovalResolveParamsSchema as en, SessionsFilesListResult as eo, ExecApprovalsNodeSetParams as ep, TaskSuggestionSchema as er, SessionsRewindParams as es, PortalListResultSchema as et, NodeListParams as eu, UsersLinkEmailParams as ev, PollParams as ew, SkillProposalLifecycleEvent as ex, AUDIT_ACTIVITY_MESSAGE_KIND as ey, WorktreesCreateParamsSchema as f, ExpiredApprovalSnapshot as fA, ToolsGitHubManagedConfigureParams as fC, BoardCommandEvent as fD, SessionSuggestionsListResult as fE, WorkerProtocolCloseReasonSchema as fM, BoardWidgetNameSchema as fO, SkillsStatusParams as fS, ProjectRecentFolderSchema as fT, TalkEventSchema as f_, SessionsCleanupParamsSchema as fa, AgentsFilesSetParams as fb, SessionsDispatchResultSchema as fc, ChatToolTitlesParams as fd, DevicePairRenameParamsSchema as ff, CommandsListResultSchema as fg, SystemChangeEntrySchema as fh, SessionCompactionCheckpointSchema as fi, WorkerHeartbeatParams as fj, WorkerInferenceOptions as fk, QuestionRequestedEvent as fl, CronScratchSetResult as fm, TerminalEventSchema as fn, SessionsForkResult as fo, EnvironmentsCreateParams as fp, TaskSuggestionsDismissResultSchema as fr, SessionsUsageParams as fs, PluginControlUiDescriptor as ft, NodePendingDrainParams as fu, UsersPrefsSetParams as fv, SecretRefSchema as fw, SkillsCuratorStatusResult as fx, AuditActivityOutboundMessageV1 as fy, WorktreesGcResultSchema as g, PendingSessionApprovalEventSchema as gA, ToolsGitHubStatusResult as gC, BoardDataReadParams as gD, SessionSuggestionsResolveResult as gE, SessionGitHubPublicationFailedSchema as gM, BoardWidgetPresentationSchema as gO, SkillsUploadBeginParams as gS, ProjectRecordSchema as gT, TalkSessionAppendAudioParamsSchema as g_, SessionsCompactionBranchParamsSchema as ga, AgentsListParams as gb, SessionsMoveResultSchema as gc, LogsTailParams as gd, DevicePairSetupCodeParamsSchema as gf, ChannelsPairingApproveParams as gg, SystemChangeSourceSchema as gh, SessionDiffCommitSchema as gi, WorkerHeartbeatResponseFrame as gj, WorkerInferenceStartRequestFrameSchema as gk, QuestionResolveResult as gl, CronAddResultSchema as gm, TerminalInputParamsSchema as gn, SessionsGroupsDefaultsResult as go, EnvironmentsDestroyParams as gp, TaskSuggestionsListResultSchema as gr, SessionsPatchManyParamsSchema as gs, PluginSearchResultEntrySchema as gt, NodePendingEnqueueParams as gu, UsersSelfParams as gv, SessionCatalogCapabilitiesSchema as gw, SkillsDetailResult as gx, findAuditActivityFilterConflict as gy, WorktreesGcResult as h, PendingApprovalSnapshotSchema as hA, ToolsGitHubStatusParamsSchema as hC, BoardCronActionParamsSchema as hD, SessionSuggestionsResolveParamsSchema as hE, SessionGitHubPublicationFailed as hM, BoardWidgetPluginPropsSchema as hO, SkillsUpdateParamsSchema as hS, ProjectRecord as hT, TalkSessionAppendAudioParams as h_, SessionsCompactionBranchParams as ha, AgentsFilesSetResultSchema as hb, SessionsMoveResult as hc, ChatToolTitlesResultSchema as hd, DevicePairSetupCodeParams as hf, ChannelsPairingAccount as hg, SystemChangeSource as hh, SessionDiffCommit as hi, WorkerHeartbeatRequestFrameSchema as hj, WorkerInferenceStartRequestFrame as hk, QuestionResolveParamsSchema as hl, CronAddParamsSchema as hm, TerminalInputParams as hn, SessionsGroupsDefaultsParamsSchema as ho, EnvironmentsCreateResultSchema as hp, TaskSuggestionsListResult as hr, SessionsPatchManyParams as hs, PluginSearchPackageSchema as ht, NodePendingDrainResultSchema as hu, UsersPrefsSetResultSchema as hv, SessionCatalogCapabilities as hw, SkillsDetailParamsSchema as hx, AuditActivityToolActionV1Schema as hy, WorktreeRecordSchema as i, ApprovalTerminalReason as iA, ToolsGitHubAuthorizeStartParamsSchema as iC, BoardActionParams as iD, SessionSuggestionState as iE, WorkerTranscriptCommitResultSchema as iM, BoardWidgetGrantParamsSchema as iO, SkillsSecurityVerdictsParams as iS, MigrationsMemoryPlanParamsSchema as iT, TalkClientToolCallResultSchema as i_, SessionsBranchesListParamsSchema as ia, AgentsFilesGetParams as ib, SessionPlacementProtocolSchemas as ic, ChatMessageGetResultSchema as id, DevicePairApproveParamsSchema as if, COMMAND_DESCRIPTION_MAX_LENGTH as ig, SystemAgentSetupDetectResultSchema as ih, SessionsViewerPresenceSetParams as ii, WorkerConnectParams as ij, WorkerInferenceCancelResult as ik, QuestionRecord as il, CronListParams as im, TerminalAttachParamsSchema as in, SessionsFilesRevealResult as io, ExecApprovalsSetParams as ip, TaskSuggestionsAcceptResultSchema as ir, SessionsSearchHit as is, PortalOpenResultSchema as it, NodePairListParams as iu, UsersListParams as iv, WakeParamsSchema as iw, SkillsBinsResult as ix, AuditActivityEventV1 as iy, WizardNextParams as j, ProtocolValidator as jA, AgentWaitParamsSchema as jC, BoardSetChatDockCommandSchema as jD, SessionRowSchema as jE, OutboundDeliveryQueuedErrorDetailsSchema as jM, UiCommandParamsSchema as jO, ToolsCatalogResultSchema as jS, ProjectsRemoveParams as jT, TalkSessionSubmitToolResultParams as j_, SessionsCompanionResetParams as ja, GitHubIdentitySourceSchema as jb, SecretsResolveAssignmentSchema as jc, GatewaySuspendResumeParams as jd, DeviceTokenRotateResult as jf, ChannelsStartParams as jg, ConfigSchemaParams as jh, SessionFileKind as ji, WorkerLiveEventResult as jj, ApprovalAllowDecisionSchema as jk, WebPushSubscribeParams as jl, CronScratchSetParamsSchema as jm, TaskSummary as jn, SessionsGroupsUpdateParamsSchema as jo, WorkerDesktopAppIdSchema as jp, SessionMemberAddParams as jr, SessionDiscussionInfoParams as js, PluginsSearchResult as jt, NodeRenameParamsSchema as ju, AuditListParamsSchema as jv, SessionsCatalogArchiveParamsSchema as jw, SkillsProposalEvaluateResultSchema as jx, AgentsWorkspaceEntry as jy, WizardCancelParams as k, TerminalSessionApprovalEventSchema as kA, AgentParamsSchema as kC, BoardPromptAuthorizeParams as kD, SessionPermissionModeSchema as kE, McpAppViewExpiredErrorDetailsSchema as kM, UiCommand as kO, ToolsCatalogParamsSchema as kS, ProjectsRegisterResult as kT, TalkSessionSteerParams as k_, SessionsCompanionAskResult as ka, GitHubIdentityFactsSchema as kb, SecretStoreSecretEntrySchema as kc, GatewaySuspendPrepareResult as kd, DeviceTokenRotateParams as kf, ChannelsLogoutParams as kg, ConfigSchemaLookupResult as kh, SessionFileEntry as ki, WorkerLiveEventResponseFrame as kj, AllowedApprovalSnapshotSchema as kk, PushTestResult as kl, CronScratchGetResultSchema as km, TerminalUploadResult as kn, SessionsGroupsRenameParamsSchema as ko, RuntimeTargetIssueSchema as kp, StateVersionSchema as kr, SessionsCreateParamsSchema as ks, PluginsSearchParams as kt, NodePresenceAliveReasonSchema as ku, AuditEventSchema as kv, SessionCatalogTranscriptItemSchema as kw, SkillsProposalEvaluateParamsSchema as kx, ArtifactsListResult as ky, WorktreesBranchesResult as l, DeniedApprovalSnapshotSchema as lA, ToolsGitHubConfigureParamsSchema as lC, BoardChangedEventSchema as lD, SessionSuggestionsAddResultSchema as lE, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as lM, BoardWidgetMcpAppContentSchema as lO, SkillsSkillCardParamsSchema as lS, ProjectCheckout as lT, TalkConfigResult as l_, SessionsBranchesSwitchResult as la, AgentsFilesListParamsSchema as lb, SessionsDispatchParams as lc, ChatSendParamsSchema as ld, DevicePairRemoveParams as lf, CommandsListParams as lg, SystemAgentWizardCancel as lh, SessionBranch as li, WorkerGitHubPublishParamsSchema as lj, WorkerInferenceEventParams as lk, QuestionRequestQuestionSchema as ll, CronScratchGetParams as lm, TerminalDataEvent as ln, SessionsFilesSetResultSchema as lo, EnvironmentStatusSchema as lp, TaskSuggestionsDismissParams as lr, SessionsSearchResultSchema as ls, PluginCatalogEntrySchema as lt, NodePairRemoveParamsSchema as lu, UsersPrefsGetParamsSchema as lv, InputProvenanceSchema as lw, SkillsCuratorActionResultSchema as lx, AuditActivityListParamsSchema as ly, WorktreesGcParamsSchema as m, PendingApprovalSnapshot as mA, ToolsGitHubStatusParams as mC, BoardCommandSchema as mD, SessionSuggestionsResolveParams as mE, GitHubPublicationTitleSchema as mM, BoardWidgetPluginKindSchema as mO, SkillsUpdateParams as mS, ProjectRecentSchema as mT, TalkModeParamsSchema as m_, SessionsCompactParamsSchema as ma, AgentsFilesSetResult as mb, SessionsMoveParamsSchema as mc, ChatToolTitlesResult as md, DevicePairResolvedEventSchema as mf, TalkSessionAcknowledgeMarkParamsSchema as mg, SystemChangeKindSchema as mh, SessionCompanionExchangeSchema as mi, WorkerHeartbeatRequestFrame as mj, WorkerInferenceStartParams as mk, QuestionResolveParams as ml, CronUpdateParams as mm, TerminalExitEventSchema as mn, SessionsGroupsDefaultsParams as mo, EnvironmentsCreateResult as mp, TaskSuggestionsListParamsSchema as mr, SESSIONS_PATCH_MANY_MAX_TARGETS as ms, PluginJsonValueSchema as mt, NodePendingDrainResult as mu, UsersPrefsSetResult as mv, SessionCatalog as mw, SkillsDetailParams as mx, AuditActivityToolActionV1 as my, WorktreeBranchSchema as n, ApprovalSnapshot as nA, ToolsGitHubAuthorizeSlowDownResultSchema as nC, BOARD_DATA_BINDING_ID_MAX_LENGTH as nD, SessionSuggestionResolutionSchema as nE, WorkerTranscriptCommitResponseFrameSchema as nM, BoardWidgetGeneratedIdentitySchema as nO, SkillsSearchResult as nS, MigrationsMemoryApplyParamsSchema as nT, TalkClientToolCallParamsSchema as n_, SessionsAssignOwnerResultSchema as na, AgentsFileEntry as nb, SessionPlacementMove as nc, ChatMessageGetParamsSchema as nd, DesktopSourceSchema as nf, COMMAND_CHOICE_LABEL_MAX_LENGTH as ng, SystemAgentSetupDetectParamsSchema as nh, SessionVisibilitySchema as ni, WorkerAdmissionResponseFrame as nj, WorkerInferenceCancelResponseFrame as nk, QuestionOption as nl, CronGetParams as nm, TerminalAckResultSchema as nn, SessionsFilesRevealParams as no, ExecApprovalsNodeSnapshot as np, TaskSuggestionsAcceptParamsSchema as nr, SessionsRewindResult as ns, PortalOpenParamsSchema as nt, NodePairApproveParams as nu, UsersLinkEmailResult as nv, SendParamsSchema as nw, SkillsBinsParams as nx, AuditActivityAgentRunV1 as ny, WorktreeRepositoryStatusSchema as o, CancelledApprovalSnapshot as oA, ToolsGitHubAuthorizeStartResultSchema as oC, BoardCanvasDocumentSource as oD, SessionSuggestionsAddParams as oE, WorkerTranscriptMessageSchema as oM, BoardWidgetHtmlContentSchema as oO, SkillsSecurityVerdictsResult as oS, PROJECTS_LIST_DEFAULT_LIMIT as oT, TalkClientTranscriptParamsSchema as o_, SessionsBranchesListResultSchema as oa, AgentsFilesGetResult as ob, SessionPlacementRunnerSchema as oc, ChatMetadataParamsSchema as od, DevicePairListParamsSchema as of, COMMAND_NAME_MAX_LENGTH as og, SystemAgentSetupVerifyParamsSchema as oh, SessionsViewerPresenceSetResult as oi, WorkerConnectRequestFrameSchema as oj, WorkerInferenceErrorReason as ok, QuestionRequestParams as ol, CronRunLogEntry as om, TerminalAttachResultSchema as on, SessionsFilesSetParams as oo, ExecApprovalsSnapshot as op, TaskSuggestionsCreateParamsSchema as or, SessionsSearchParams as os, PortalSummarySchema as ot, NodePairRejectParams as ou, UsersListResult as ov, ChatSendSessionKeyString as ow, SkillsCuratorActionParams as ox, AuditActivityInboundMessageV1 as oy, WorktreesGcParams as p, ExpiredApprovalSnapshotSchema as pA, ToolsGitHubManagedConfigureParamsSchema as pC, BoardCommandEventSchema as pD, SessionSuggestionsListResultSchema as pE, GitHubPublicationBodySchema as pM, BoardWidgetPluginContentSchema as pO, SkillsStatusParamsSchema as pS, ProjectRecentProjectSchema as pT, TalkModeParams as p_, SessionsCompactParams as pa, AgentsFilesSetParamsSchema as pb, SessionsMoveParams as pc, ChatToolTitlesParamsSchema as pd, DevicePairRequestedEventSchema as pf, TalkSessionAcknowledgeMarkParams as pg, SystemChangeKind as ph, SessionCompanionExchange as pi, WorkerHeartbeatParamsSchema as pj, WorkerInferenceOptionsSchema as pk, QuestionRequestedEventSchema as pl, CronStatusParams as pm, TerminalExitEvent as pn, SessionsForkResultSchema as po, EnvironmentsCreateParamsSchema as pp, TaskSuggestionsListParams as pr, SessionsUsageParamsSchema as ps, PluginControlUiDescriptorSchema as pt, NodePendingDrainParamsSchema as pu, UsersPrefsSetParamsSchema as pv, SessionLabelString as pw, SkillsCuratorStatusResultSchema as px, AuditActivityOutboundMessageV1Schema as py, PortalCloseParams as q, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE as qA, ConversationTurnParamsSchema as qC, BoardWidgetAppViewParams as qD, ProgressCardPutResult as qE, validateSkillsProposalHistoryStatusParams as qO, ToolsGitHubAuthorizeExpiredResultSchema as qS, WORKTREE_PRESERVATION_REASONS as qT, USER_PREFS_PROFILE_KEY_LIMIT as q_, SessionsDiffResultSchema as qa, ModelsProbeParamsSchema as qb, QuestionAnswersSchema as qc, FsListDirResult as qd, ExecApprovalRequestParamsSchema as qf, TalkClientCreateParams as qg, UpdateStatusParams as qh, SessionOperationEvent as qi, WorkerTranscriptCommitErrorReason as qj, ApprovalHistoryResultSchema as qk, NodeInvokeParams as ql, SystemAgentSetupActivateParams as qm, TasksRecoveryResult as qn, SessionsPluginPatchResultSchema as qo, WorkerMachineOptionSchema as qp, SessionSharingIdentitySchema as qr, SessionMovePlacementSchema as qs, PluginsUninstallParams as qt, ChatHistoryCursorResultSchema as qu, DecisionReceiptV1Schema as qv, SessionsCatalogReadResultSchema as qw, SkillsProposalReviseParamsSchema as qx, AgentSummarySchema as qy, WorktreeRecord as r, ApprovalSnapshotSchema as rA, ToolsGitHubAuthorizeStartParams as rC, BOARD_WIDGET_TOOL_MAX_LENGTH as rD, SessionSuggestionSchema as rE, WorkerTranscriptCommitResult as rM, BoardWidgetGrantParams as rO, SkillsSearchResultSchema as rS, MigrationsMemoryApplyResult as rT, TalkClientToolCallResult as r_, SessionsBranchesListParams as ra, AgentsFileEntrySchema as rb, SessionPlacementMoveSchema as rc, ChatMessageGetResult as rd, DevicePairApproveParams as rf, COMMAND_CHOICE_VALUE_MAX_LENGTH as rg, SystemAgentSetupDetectResult as rh, SESSION_VIEWER_PRESENCE_MAX_KEYS as ri, WorkerAdmissionResponseFrameSchema as rj, WorkerInferenceCancelResponseFrameSchema as rk, QuestionOptionSchema as rl, CronJob as rm, TerminalAttachParams as rn, SessionsFilesRevealParamsSchema as ro, ExecApprovalsNodeSnapshotSchema as rp, TaskSuggestionsAcceptResult as rr, SessionsRewindResultSchema as rs, PortalOpenResult as rt, NodePairApproveParamsSchema as ru, UsersLinkEmailResultSchema as rv, WakeParams as rw, SkillsBinsParamsSchema as rx, AuditActivityAgentRunV1Schema as ry, WorktreesBranchesParams as s, CancelledApprovalSnapshotSchema as sA, ToolsGitHubAuthorizeSuccessResultSchema as sC, BoardCanvasDocumentSourceSchema as sD, SessionSuggestionsAddParamsSchema as sE, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as sM, BoardWidgetMaterializedContent as sO, SkillsSecurityVerdictsResultSchema as sS, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT as sT, TalkConfigParams as s_, SessionsBranchesSwitchParams as sa, AgentsFilesGetResultSchema as sb, SessionPlacementSchema as sc, ChatRunStartupPhase as sd, DevicePairRejectParams as sf, CommandEntry as sg, SystemAgentSetupVerifyResult as sh, SessionsViewerPresenceSetResultSchema as si, WorkerErrorShape as sj, WorkerInferenceErrorShape as sk, QuestionRequestParamsSchema as sl, CronRunParams as sm, TerminalCloseParams as sn, SessionsFilesSetParamsSchema as so, ExecApprovalsSnapshotSchema as sp, TaskSuggestionsCreateResult as sr, SessionsSearchParamsSchema as ss, PluginCatalogClawHubInstallSchema as st, NodePairRejectParamsSchema as su, UsersListResultSchema as sv, GatewayClientIdSchema as sw, SkillsCuratorActionParamsSchema as sx, AuditActivityInboundMessageV1Schema as sy, WorktreeBranch as t, ApprovalResolveResultSchema as tA, ToolsGitHubAuthorizePollResultSchema as tC, BOARD_CRON_TRIGGER_PREFIX as tD, SessionSuggestionResolution as tE, WorkerTranscriptCommitResponseFrame as tM, BoardWidgetGeneratedIdentity as tO, SkillsSearchParamsSchema as tS, MigrationProtocolSchemas as tT, TalkClientToolCallParams as t_, SessionsAssignOwnerResult as ta, AgentsDeleteResultSchema as tb, SessionPlacementDiskSpaceSchema as tc, ChatInjectParamsSchema as td, DesktopSource as tf, COMMAND_ARG_NAME_MAX_LENGTH as tg, SystemAgentSetupDetectParams as th, SessionVisibility as ti, WorkerAdmissionHandshakeSchema as tj, WorkerInferenceCancelRequestFrameSchema as tk, QuestionListResultSchema as tl, CronDeclarativeAddResult as tm, TerminalAckResult as tn, SessionsFilesListResultSchema as to, ExecApprovalsNodeSetParamsSchema as tp, TaskSuggestionsAcceptParams as tr, SessionsRewindParamsSchema as ts, PortalOpenParams as tt, NodeListParamsSchema as tu, UsersLinkEmailParamsSchema as tv, PollParamsSchema as tw, SkillProposalLifecycleEventSchema as tx, AUDIT_ACTIVITY_STATUSES as ty, WorktreesBranchesResultSchema as u, ExecApprovalPresentation as uA, ToolsGitHubInheritConfigureParams as uC, BoardChatDockSchema as uD, SessionSuggestionsListParams as uE, WORKER_PUBLIC_INGRESS_PATH as uM, BoardWidgetMcpAppPutContentSchema as uO, SkillsSkillCardResult as uS, ProjectCheckoutSchema as uT, TalkConfigResultSchema as u_, SessionsBranchesSwitchResultSchema as ua, AgentsFilesListResult as ub, SessionsDispatchParamsSchema as uc, ChatStatusEvent as ud, DevicePairRemoveParamsSchema as uf, CommandsListParamsSchema as ug, SystemAgentWizardCancelSchema as uh, SessionBranchSchema as ui, WorkerGitHubPublishResponseFrame as uj, WorkerInferenceModelRef as uk, QuestionRequestResult as ul, CronScratchGetResult as um, TerminalDataEventSchema as un, SessionsForkParams as uo, EnvironmentSummary as up, TaskSuggestionsDismissParamsSchema as ur, SessionsSendParams as us, PluginCatalogInstallActionSchema as ut, NodePendingAckParams as uu, UsersPrefsGetResult as uv, NonEmptyString as uw, SkillsCuratorStatusParams as ux, AuditActivityListResult as uy, WorktreesListParamsSchema as v, PluginApprovalPresentationSchema as vA, ToolsInvokeErrorSchema as vC, BoardEventParams as vD, SessionTypingEvent as vE, SessionGitHubPublicationPublishedSchema as vM, BoardWidgetPutContentSchema as vO, SkillsUploadChunkParams as vS, ProjectSummarySchema as vT, TalkSessionCancelOutputParamsSchema as v_, SessionsCompactionBranchResultSchema as va, AgentsListResult as vb, SessionsReclaimParamsSchema as vc, LogsTailResult as vd, DevicePairSetupCodeResultSchema as vf, ChannelsPairingApproveResult as vg, SystemChangesListParamsSchema as vh, SessionDiffFileSchema as vi, WorkerHeartbeatResult as vj, WorkerInferenceStartResponseFrameSchema as vk, QuestionResolvedEvent as vl, CronDeliverySchema as vm, TerminalListResultSchema as vn, SessionsGroupsDeleteParams as vo, EnvironmentsDestroyResult as vp, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as vr, SessionsPatchManyResultSchema as vs, PluginsInstallParamsSchema as vt, NodePendingEnqueueResult as vu, UsersSelfResult as vv, SessionCatalogDescriptorSchema as vw, SkillsInstallParams as vx, ArtifactSummarySchema as vy, WorktreesRemoveResultSchema as w, SessionApprovalReplaySchema as wA, AgentEventSchema as wC, BoardMcpAppDescriptor as wD, SessionCreatedActor as wE, SessionGitHubPublicationResultSchema as wM, BoardWidgetRegisteredMaterializedContent as wO, ToolCatalogGroup as wS, ProjectsListParamsSchema as wT, TalkSessionCreateParamsSchema as w_, SessionsCompactionRestoreParamsSchema as wa, AuthProbeStatus as wb, isCloudWorkerPlacementState as wc, GatewaySuspendBlockerSchema as wd, DevicePairSetupStatusParamsSchema as wf, ChannelsPairingListParams as wg, ConfigGetParamsSchema as wh, SessionFileBrowserEntrySchema as wi, WorkerLiveEventErrorShapeSchema as wj, validateWorkerInferenceEventFrame as wk, QuestionWaitAnswerParamsSchema as wl, CronRemoveParamsSchema as wm, TerminalResizeParamsSchema as wn, SessionsGroupsMutationResult as wo, EnvironmentsStatusParams as wp, PresenceEntry as wr, SessionsPatchParamsSchema as ws, PluginsListResultSchema as wt, NodePresenceActivityPayload as wu, UsersSetDisplayNameParams as wv, SessionCatalogPullRequestSummarySchema as ww, SkillsProposalCreateParams as wx, ArtifactsGetParamsSchema as wy, WorktreesRemoveParams as x, SessionApprovalEvent as xA, ToolsInvokeResult as xC, BoardGetParams as xD, SessionTypingParamsSchema as xE, SessionGitHubPublicationRequested as xM, BoardWidgetPutResult as xO, SkillsUploadCommitParamsSchema as xS, ProjectsAddResult as xT, TalkSessionCloseParams as x_, SessionsCompactionListResult as xa, AgentsUpdateParamsSchema as xb, SessionsReclaimResultPlacementSchema as xc, HooksStatusParams as xd, DevicePairSetupDeliveryUncertainEvent as xf, ChannelsPairingDismissParamsSchema as xg, ConfigApplyParams as xh, SessionDiffScope as xi, WorkerLiveEventErrorDetails as xj, WorkerInferenceTerminalOutcome as xk, QuestionStatus as xl, CronJobStateSchema as xm, TerminalOpenResult as xn, SessionsGroupsListParamsSchema as xo, EnvironmentsListParamsSchema as xp, SystemInfoParamsSchema as xr, SessionsPatchMutation as xs, PluginsListParams as xt, NodePluginToolDescriptorSchema as xu, UsersSetAvatarParamsSchema as xv, SessionCatalogLocator as xw, SkillsProposalActionParamsSchema as xx, ArtifactsDownloadResult as xy, WorktreesListResult as y, PluginApprovalSeverity as yA, ToolsInvokeParams as yC, BoardEventParamsSchema as yD, SessionTypingEventSchema as yE, SessionGitHubPublicationPublishing as yM, BoardWidgetPutParams as yO, SkillsUploadChunkParamsSchema as yS, ProjectsAddParams as yT, TalkSessionCancelOutputResult as y_, SessionsCompactionListParams as ya, AgentsListResultSchema as yb, SessionsReclaimResult as yc, LogsTailResultSchema as yd, DevicePairSetupCompletedEvent as yf, ChannelsPairingApproveResultSchema as yg, SystemChangesListResult as yh, SessionDiffFileStatus as yi, WorkerHelloOk as yj, WorkerInferenceStartResult as yk, QuestionResolvedEventSchema as yl, CronGetParamsSchema as ym, TerminalOpenParams as yn, SessionsGroupsDeleteParamsSchema as yo, EnvironmentsDestroyResultSchema as yp, validateSystemEventParams as yr, SessionsPatchManyTarget as ys, PluginsInstallResult as yt, NodePendingEnqueueResultSchema as yu, UsersSelfResultSchema as yv, SessionCatalogHost as yw, SkillsInstallParamsSchema as yx, ArtifactsDownloadParams as yy, WizardStatusParams as z, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as zA, ConversationSendParamsSchema as zC, BoardTabSchema as zD, ProgressCardChangedEvent as zE, missingScopeErrorShape as zM, UiSplitCommandSchema as zO, ToolsEffectiveParamsSchema as zS, RemoteProject as zT, TtsSpeakResult as z_, SessionsCreateParams as za, ModelsAuthLogoutParamsSchema as zb, SecretsStoreListResult as zc, GatewaySuspendStatusResultSchema as zd, ScopeUpgradeRequestSchema as zf, TalkAgentControlResult as zg, UpdateHoldParams as zh, SessionGroupDefaultsSchema as zi, WorkerSessionsSendParams as zj, ApprovalExpiredReasonSchema as zk, NodeDescribeParams as zl, SystemAgentChatHistoryTurn as zm, TasksGetResult as zn, SessionsMessagesUnsubscribeParamsSchema as zo, WorkerDesktopObserveResultSchema as zp, SessionMembersListParamsSchema as zr, SessionDiscussionOpenResultSchema as zs, PluginsSetEnabledParams as zt, ChatAttachmentSchema as zu, AuditRunIdentityV1Schema as zv, SessionsCatalogHostEventSchema as zw, SkillsProposalInspectResultSchema as zx, AgentsWorkspaceListParams as zy };
19412
+ export { PortalListResult as $, SessionApprovalReplay as $A, AgentWaitParamsSchema as $C, BoardPluginActionParamsSchema as $D, SessionPermissionMode as $E, SessionGitHubPublicationPublishedSchema as $M, UiClosePaneCommandSchema as $O, ToolsCatalogResultSchema as $S, ProjectsRemoveParams as $T, TtsSpeakResultSchema as $_, SessionsCreateResultSchema as $a, GitHubIdentitySourceSchema as $b, SecretsStoreSetParamsSchema as $c, GatewaySuspendStatusRunningResultSchema as $d, ScopeUpgradeResult as $f, TalkAgentControlResultSchema as $g, UpdateHoldParamsSchema as $h, SessionObserverDigest as $i, WorkerLiveEventErrorDetailsSchema as $j, AllowedApprovalSnapshot as $k, NodeEventParamsSchema as $l, SystemAgentChatHistoryTurnSchema as $m, TaskSuggestionResolutionSchema as $n, SessionsObserverVisibilityParamsSchema as $o, WorkerEnvironmentMetadata as $p, SessionSharingIdentitySchema as $r, SessionMoveExpectedSourceSchema as $s, PluginApprovalResolveParams as $t, ChatErrorEventSchema as $u, AuditListParamsSchema as $v, SessionsCatalogArchiveParamsSchema as $w, SkillsProposalEvaluateResultSchema as $x, AgentsWorkspaceEntry as $y, WizardCancelParamsSchema as A, ApprovalSnapshotSchema as AA, ToolsGitHubConfigureParams as AC, BoardActionParamsSchema as AD, SessionSuggestionStateSchema as AE, WorkerTranscriptCommitErrorShape as AM, BoardWidgetHeightModeSchema as AO, SkillsSkillCardParams as AS, PROJECTS_LIST_MAX_IDENTITY_PROBES as AT, TalkSessionCancelOutputParams as A_, SessionsCompactionBranchResultSchema as Aa, AgentsFilesListParams as Ab, SessionsReclaimResultPlacementSchema as Ac, LogsTailResultSchema as Ad, DevicePairSetupCodeResult as Af, ChannelsPairingApproveParamsSchema as Ag, SystemChangesListParams as Ah, SessionDiffFileSchema as Ai, WorkerAdmissionFailureReason as Aj, WorkerInferenceContext as Ak, QuestionSecretStoreBindingSchema as Al, CronDeclarativeAddResultSchema as Am, TerminalUploadResultSchema as An, SessionsGroupsDeleteParams as Ao, EnvironmentsDestroyParamsSchema as Ap, SessionMember as Ar, SessionsPatchManyResultSchema as As, PluginsSearchParamsSchema as At, NodePendingEnqueueResultSchema as Au, UsersPrefsSetResultSchema as Av, GatewayClientModeSchema as Aw, SkillsCuratorActionResult as Ax, AuditActivityListParams as Ay, WizardStatusParamsSchema as B, ExpiredApprovalSnapshotSchema as BA, ToolsInvokeErrorSchema as BC, BoardCronActionParamsSchema as BD, SessionSuggestionsResolveParamsSchema as BE, WorkerTranscriptMessage as BM, BoardWidgetPluginPropsSchema as BO, SkillsUploadChunkParams as BS, ProjectSummarySchema as BT, TalkSessionOkResult as B_, SessionsCompanionAskParamsSchema as Ba, AgentsListResult as Bb, SecretsResolveAssignmentSchema as Bc, GatewaySuspendPrepareReadyResultSchema as Bd, DeviceTokenRevokeParams as Bf, ChannelsPairingListResultSchema as Bg, ConfigSchemaLookupParams as Bh, SessionFileContentEncodingSchema as Bi, WorkerGitHubPublishParamsSchema as Bj, WorkerInferenceStartRequestFrame as Bk, PushTestResult as Bl, CronRunsParamsSchema as Bm, TasksGetResultSchema as Bn, SessionsGroupsRenameParams as Bo, EnvironmentsStatusResultSchema as Bp, SessionMembersListEvidenceResult as Br, SessionDiscussionInfoParams as Bs, PluginsSetEnabledParamsSchema as Bt, NodePresenceAliveReasonSchema as Bu, UsersSetDisplayNameParamsSchema as Bv, SessionCatalogDescriptorSchema as Bw, SkillsInstallParams as Bx, ArtifactSummarySchema as By, WorktreesRemoveResult as C, ApprovalResolveParams as CA, ToolsGitHubAuthorizePollResultSchema as CC, ProgressCardStepStatus as CD, SessionSuggestionActionSchema as CE, WorkerSessionsSendResponseFrameSchema as CM, BoardWidgetContentSchema as CO, SkillsSearchParamsSchema as CS, MigrationProtocolSchemas as CT, TalkConfigResultSchema as C_, SessionsCleanupParams as Ca, AgentsDeleteResultSchema as Cb, SessionsMoveParamsSchema as Cc, ChatToolTitlesParams as Cd, DevicePairRemoveParamsSchema as Cf, CommandsListParamsSchema as Cg, SystemAgentWizardCancelSchema as Ch, SessionCompactionCheckpoint as Ci, WORKER_RPC_SET_VERSION as Cj, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as Ck, QuestionResolveParams as Cl, CronScratchGetResult as Cm, TerminalResizeParams as Cn, SessionsForkParamsSchema as Co, EnvironmentSummary as Cp, SystemInfoResultSchema as Cr, SessionsSendParamsSchema as Cs, PluginsListResult as Ct, NodePendingDrainParams as Cu, UsersPrefsGetParams as Cv, PollParamsSchema as Cw, SkillProposalLifecycleEventSchema as Cx, AUDIT_ACTIVITY_STATUSES as Cy, WizardAnswer as D, ApprovalScope as DA, ToolsGitHubAuthorizeStartResult as DC, BOARD_DATA_BINDING_ID_MAX_LENGTH as DD, SessionSuggestionResolutionSchema as DE, WorkerSessionsSpawnResponseFrameSchema as DM, BoardWidgetGeneratedIdentitySchema as DO, SkillsSecurityVerdictsParamsSchema as DS, MigrationsMemoryPlanResult as DT, TalkModeParamsSchema as D_, SessionsCompactionBranchParams as Da, AgentsFilesGetParamsSchema as Db, SessionsReclaimParamsSchema as Dc, LogsTailParams as Dd, DevicePairResolvedEventSchema as Df, TalkSessionAcknowledgeMarkParamsSchema as Dg, SystemChangeKindSchema as Dh, SessionDiffCommit as Di, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as Dj, WorkerInferenceCancelResponseFrame as Dk, QuestionResolvedEvent as Dl, CronUpdateParams as Dm, TerminalUploadParams as Dn, SessionsGroupsDefaultsParamsSchema as Do, EnvironmentsCreateResult as Dp, SnapshotSchema as Dr, SessionsPatchManyParams as Ds, PluginsRefreshResult as Dt, NodePendingEnqueueParams as Du, UsersPrefsSetParams as Dv, CHAT_SEND_SESSION_KEY_MAX_LENGTH as Dw, SkillsBinsResultSchema as Dx, AuditActivityEventV1Schema as Dy, WorktreesRestoreParamsSchema as E, ApprovalResolveResultSchema as EA, ToolsGitHubAuthorizeStartParamsSchema as EC, BOARD_CRON_TRIGGER_PREFIX as ED, SessionSuggestionResolution as EE, WorkerSessionsSpawnResponseFrame as EM, BoardWidgetGeneratedIdentity as EO, SkillsSecurityVerdictsParams as ES, MigrationsMemoryPlanParamsSchema as ET, TalkModeParams as E_, SessionsCompactParamsSchema as Ea, AgentsFilesGetParams as Eb, SessionsReclaimParams as Ec, ChatToolTitlesResultSchema as Ed, DevicePairRequestedEventSchema as Ef, TalkSessionAcknowledgeMarkParams as Eg, SystemChangeKind as Eh, SessionCompanionExchangeSchema as Ei, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as Ej, WorkerInferenceCancelRequestFrameSchema as Ek, QuestionResolveResultSchema as El, CronStatusParams as Em, TerminalSessionInfoSchema as En, SessionsGroupsDefaultsParams as Eo, EnvironmentsCreateParamsSchema as Ep, Snapshot as Er, SESSIONS_PATCH_MANY_MAX_TARGETS as Es, PluginsRefreshParamsSchema as Et, NodePendingDrainResultSchema as Eu, UsersPrefsGetResultSchema as Ev, WakeParamsSchema as Ew, SkillsBinsResult as Ex, AuditActivityEventV1 as Ey, WizardStartParams as F, DeniedApprovalSnapshot as FA, ToolsGitHubManagedConfigureParamsSchema as FC, BoardChatDockSchema as FD, SessionSuggestionsListParams as FE, WorkerTranscriptCommitRequestFrameSchema as FM, BoardWidgetMcpAppPutContentSchema as FO, SkillsStatusParamsSchema as FS, ProjectRecentProjectSchema as FT, TalkSessionCloseParamsSchema as F_, SessionsCompactionRestoreParams as Fa, AgentsFilesSetParamsSchema as Fb, SecretStoreEntry as Fc, GatewaySuspendBlockerSchema as Fd, DevicePairSetupDeliveryUncertainEventSchema as Ff, ChannelsPairingDismissResult as Fg, ConfigApplyParamsSchema as Fh, SessionFileBrowserEntry as Fi, WorkerConnectParams as Fj, WorkerInferenceModelRef as Fk, QuestionWaitAnswerParamsSchema as Fl, CronListParamsSchema as Fm, TasksCancelResult as Fn, SessionsGroupsListResultSchema as Fo, EnvironmentsListResult as Fp, SessionMemberMutationResult as Fr, SessionsPatchParams as Fs, PluginsSessionActionParamsSchema as Ft, NodePresenceActivityPayload as Fu, UsersSetAvatarParams as Fv, SessionLabelString as Fw, SkillsCuratorStatusResultSchema as Fx, AuditActivityOutboundMessageV1Schema as Fy, PortalChangedEvent as G, PendingApprovalSnapshotSchema as GA, AgentEvent as GC, BoardFocusTabCommandSchema as GD, SessionTypingParams as GE, WORKER_PUBLIC_INGRESS_PATH as GM, BoardWidgetPutParamsSchema as GO, ToolCatalogEntrySchema as GS, ProjectsListParams as GT, TalkSessionSubmitToolResultParamsSchema as G_, SessionsCompanionResetResult as Ga, AgentsUpdateResultSchema as Gb, SecretsStoreDeleteParams as Gc, GatewaySuspendResumeResult as Gd, DeviceTokenRotateResultSchema as Gf, ChannelsStartParamsSchema as Gg, ConfigSchemaParamsSchema as Gh, SessionFilePreviewKind as Gi, WorkerHeartbeatRequestFrame as Gj, WorkerInferenceTerminalFrame as Gk, WebPushTestParamsSchema as Gl, CronScratchSetResultSchema as Gm, TasksRecoveryParams as Gn, SessionsGroupsUpdateResultSchema as Go, WorkerDesktopLaunchParams as Gp, SessionMembersListResultSchema as Gr, SessionDiscussionOpenParams as Gs, PluginsUiDescriptorsResult as Gt, NodeSkillsUpdateParams as Gu, UsersSetRoleResult as Gv, SessionCatalogPullRequestSummary as Gw, SkillsProposalApplyResultSchema as Gx, ArtifactsGetParams as Gy, WizardStatusResultSchema as H, MessageSendApprovalScopeSchema as HA, ToolsInvokeParamsSchema as HC, BoardDataReadParamsSchema as HD, SessionSuggestionsResolveResultSchema as HE, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as HM, BoardWidgetPutContent as HO, SkillsUploadCommitParams as HS, ProjectsAddParamsSchema as HT, TalkSessionSteerParams as H_, SessionsCompanionAskResultSchema as Ha, AgentsUpdateParams as Hb, SecretsResolveParamsSchema as Hc, GatewaySuspendPrepareResultSchema as Hd, DeviceTokenRotateParams as Hf, ChannelsLogoutParams as Hg, ConfigSchemaLookupResult as Hh, SessionFileEntrySchema as Hi, WorkerGitHubPublishResponseFrameSchema as Hj, WorkerInferenceStartResponseFrame as Hk, WebPushSubscribeParams as Hl, CronScratchGetResultSchema as Hm, TasksListParamsSchema as Hn, SessionsGroupsUpdateParams as Ho, RuntimeTargetIssueSchema as Hp, SessionMembersListParams as Hr, SessionDiscussionInfoResult as Hs, PluginsSetEnabledResultSchema as Ht, NodeRenameParamsSchema as Hu, UsersSetDisplayNameResultSchema as Hv, SessionCatalogHostSchema as Hw, SkillsProposalActionParams as Hx, ArtifactsDownloadParamsSchema as Hy, WizardStartParamsSchema as I, DeniedApprovalSnapshotSchema as IA, ToolsGitHubStatusParams as IC, BoardCommand as ID, SessionSuggestionsListParamsSchema as IE, WorkerTranscriptCommitResponseFrame as IM, BoardWidgetMoveOpSchema as IO, SkillsUpdateParams as IS, ProjectRecentSchema as IT, TalkSessionCreateParams as I_, SessionsCompactionRestoreParamsSchema as Ia, AgentsFilesSetResult as Ib, SecretStoreEntrySchema as Ic, GatewaySuspendPrepareBusyResultSchema as Id, DevicePairSetupStatusParams as If, ChannelsPairingDismissResultSchema as Ig, ConfigGetParams as Ih, SessionFileBrowserEntrySchema as Ii, WorkerConnectRequestFrame as Ij, WorkerInferenceModelRefSchema as Ik, QuestionWaitAnswerResult as Il, CronPacingSchema as Im, TasksCancelResultSchema as In, SessionsGroupsMutationResult as Io, EnvironmentsListResultSchema as Ip, SessionMemberMutationResultSchema as Ir, SessionsPatchParamsSchema as Is, PluginsSessionActionResult as It, NodePresenceActivityPayloadSchema as Iu, UsersSetAvatarParamsSchema as Iv, SessionCatalog as Iw, SkillsDetailParams as Ix, AuditActivityToolActionV1 as Iy, PortalCloseParamsSchema as J, PluginApprovalPresentationSchema as JA, AgentIdentityParamsSchema as JC, BoardLegacyEventParamsSchema as JD, SessionTypingResultSchema as JE, GitHubPublicationBodySchema as JM, BoardWidgetRegisteredContentSchema as JO, ToolCatalogProfile as JS, ProjectsListResultSchema as JT, TalkSpeakResult as J_, SessionsCompanionStateParamsSchema as Ja, GatewayAgentRuntime as Jb, SecretsStoreListResult as Jc, GatewaySuspendStatusParams as Jd, ScopeUpgradeRegistration as Jf, ChannelsStatusResult as Jg, ConfigSetParams as Jh, SessionFileRelevanceSchema as Ji, WorkerHeartbeatResponseFrameSchema as Jj, validateWorkerInferenceCancelParams as Jk, WebPushVapidPublicKeyParams as Jl, SystemAgentChatHistoryParams as Jm, TasksRecoveryResultSchema as Jn, SessionsMessagesSubscribeParams as Jo, WorkerDesktopLaunchResultSchema as Jp, SessionSharingEvent as Jr, SessionDiscussionOpenResultSchema as Js, PluginsUninstallParamsSchema as Jt, ChatAbortParamsSchema as Ju, UiAppearancePreferenceKey as Jv, SessionCatalogSession as Jw, SkillsProposalDecisionParams as Jx, ArtifactsGetResultSchema as Jy, PortalChangedEventSchema as K, PendingSessionApprovalEventSchema as KA, AgentEventSchema as KC, BoardGetParams as KD, SessionTypingParamsSchema as KE, WorkerAdmissionFailureReasonSchema as KM, BoardWidgetPutResult as KO, ToolCatalogGroup as KS, ProjectsListParamsSchema as KT, TalkSpeakParams as K_, SessionsCompanionResetResultSchema as Ka, AuthProbeStatus as Kb, SecretsStoreDeleteParamsSchema as Kc, GatewaySuspendResumeResultSchema as Kd, ScopeUpgradeApprovedSchema as Kf, ChannelsStatusParams as Kg, ConfigSchemaResponse as Kh, SessionFilePreviewKindSchema as Ki, WorkerHeartbeatRequestFrameSchema as Kj, WorkerInferenceTerminalOutcome as Kk, WebPushUnsubscribeParams as Kl, CronStatusParamsSchema as Km, TasksRecoveryParamsSchema as Kn, SessionsListParams as Ko, WorkerDesktopLaunchParamsSchema as Kp, SessionSharingAction as Kr, SessionDiscussionOpenParamsSchema as Ks, PluginsUiDescriptorsResultSchema as Kt, NodeSkillsUpdateParamsSchema as Ku, UsersSetRoleResultSchema as Kv, SessionCatalogPullRequestSummarySchema as Kw, SkillsProposalCreateParams as Kx, ArtifactsGetParamsSchema as Ky, WizardStartResult as L, ExecApprovalPresentation as LA, ToolsGitHubStatusParamsSchema as LC, BoardCommandEvent as LD, SessionSuggestionsListResult as LE, WorkerTranscriptCommitResponseFrameSchema as LM, BoardWidgetNameSchema as LO, SkillsUpdateParamsSchema as LS, ProjectRecord as LT, TalkSessionCreateParamsSchema as L_, SessionsCompactionRestoreResult as La, AgentsFilesSetResultSchema as Lb, SecretStoreEnvEntrySchema as Lc, GatewaySuspendPrepareDrainingResultSchema as Ld, DevicePairSetupStatusParamsSchema as Lf, ChannelsPairingListParams as Lg, ConfigGetParamsSchema as Lh, SessionFileBrowserResult as Li, WorkerConnectRequestFrameSchema as Lj, WorkerInferenceOptions as Lk, QuestionWaitAnswerResultSchema as Ll, CronRemoveParamsSchema as Lm, TasksGetParams as Ln, SessionsGroupsMutationResultSchema as Lo, EnvironmentsStatusParams as Lp, SessionMemberRemoveParams as Lr, SessionsRecoverParamsSchema as Ls, PluginsSessionActionResultSchema as Lt, NodePresenceAlivePayload as Lu, UsersSetAvatarResult as Lv, SessionCatalogCapabilities as Lw, SkillsDetailParamsSchema as Lx, AuditActivityToolActionV1Schema as Ly, WizardNextParamsSchema as M, ApprovalTerminalReasonSchema as MA, ToolsGitHubInheritConfigureParams as MC, BoardCanvasDocumentSourceSchema as MD, SessionSuggestionsAddParamsSchema as ME, WorkerTranscriptCommitParams as MM, BoardWidgetMaterializedContent as MO, SkillsSkillCardResult as MS, ProjectCheckoutSchema as MT, TalkSessionCancelOutputResult as M_, SessionsCompactionListParamsSchema as Ma, AgentsFilesListResult as Mb, SessionPlacementState as Mc, HooksStatusParams as Md, DevicePairSetupCompletedEvent as Mf, ChannelsPairingApproveResultSchema as Mg, SystemChangesListResult as Mh, SessionDiffFileStatusSchema as Mi, WorkerAdmissionHandshakeSchema as Mj, WorkerInferenceErrorShape as Mk, QuestionStatus as Ml, CronGetParamsSchema as Mm, TaskSummarySchema as Mn, SessionsGroupsListParams as Mo, EnvironmentsDestroyResultSchema as Mp, SessionMemberAddParamsSchema as Mr, SessionsPatchManyTargetSchema as Ms, PluginsSearchResultSchema as Mt, NodePluginToolDescriptorSchema as Mu, UsersSelfParamsSchema as Mv, NonEmptyString as Mw, SkillsCuratorStatusParams as Mx, AuditActivityListResult as My, WizardNextResult as N, CancelledApprovalSnapshot as NA, ToolsGitHubInheritConfigureParamsSchema as NC, BoardChangedEvent as ND, SessionSuggestionsAddResult as NE, WorkerTranscriptCommitParamsSchema as NM, BoardWidgetMaterializedPutParams as NO, SkillsSkillCardResultSchema as NS, ProjectRecent as NT, TalkSessionCancelOutputResultSchema as N_, SessionsCompactionListResult as Na, AgentsFilesListResultSchema as Nb, isCloudWorkerPlacementState as Nc, HooksStatusParamsSchema as Nd, DevicePairSetupCompletedEventSchema as Nf, ChannelsPairingDismissParams as Ng, SystemChangesListResultSchema as Nh, SessionDiffScope as Ni, WorkerAdmissionResponseFrame as Nj, WorkerInferenceEventFrame as Nk, QuestionStatusSchema as Nl, CronJobSchema as Nm, TasksCancelParams as Nn, SessionsGroupsListParamsSchema as No, EnvironmentsListParams as Np, SessionMemberEvidence as Nr, SessionsPatchMutation as Ns, PluginsSessionActionFailureResultSchema as Nt, NodePluginToolsUpdateParams as Nu, UsersSelfResult as Nv, SecretInputSchema as Nw, SkillsCuratorStatusParamsSchema as Nx, AuditActivityListResultSchema as Ny, WizardAnswerSchema as O, ApprovalScopeSchema as OA, ToolsGitHubAuthorizeStartResultSchema as OC, BOARD_WIDGET_TOOL_MAX_LENGTH as OD, SessionSuggestionSchema as OE, WorkerTranscriptCommitErrorReason as OM, BoardWidgetGrantParams as OO, SkillsSecurityVerdictsResult as OS, PROJECTS_LIST_DEFAULT_LIMIT as OT, TalkSessionAppendAudioParams as O_, SessionsCompactionBranchParamsSchema as Oa, AgentsFilesGetResult as Ob, SessionsReclaimResult as Oc, LogsTailParamsSchema as Od, DevicePairSetupCodeParams as Of, ChannelsPairingAccount as Og, SystemChangeSource as Oh, SessionDiffCommitSchema as Oi, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as Oj, WorkerInferenceCancelResponseFrameSchema as Ok, QuestionResolvedEventSchema as Ol, CronAddParamsSchema as Om, TerminalUploadParamsSchema as On, SessionsGroupsDefaultsResult as Oo, EnvironmentsCreateResultSchema as Op, StateVersion as Or, SessionsPatchManyParamsSchema as Os, PluginsRefreshResultSchema as Ot, NodePendingEnqueueParamsSchema as Ou, UsersPrefsSetParamsSchema as Ov, ChatSendSessionKeyString as Ow, SkillsCuratorActionParams as Ox, AuditActivityInboundMessageV1 as Oy, WizardNextResultSchema as P, CancelledApprovalSnapshotSchema as PA, ToolsGitHubManagedConfigureParams as PC, BoardChangedEventSchema as PD, SessionSuggestionsAddResultSchema as PE, WorkerTranscriptCommitRequestFrame as PM, BoardWidgetMcpAppContentSchema as PO, SkillsStatusParams as PS, ProjectRecentFolderSchema as PT, TalkSessionCloseParams as P_, SessionsCompactionListResultSchema as Pa, AgentsFilesSetParams as Pb, GitHubSetupHandleSchema as Pc, GatewaySuspendBlocker as Pd, DevicePairSetupDeliveryUncertainEvent as Pf, ChannelsPairingDismissParamsSchema as Pg, ConfigApplyParams as Ph, SessionDiffScopeSchema as Pi, WorkerAdmissionResponseFrameSchema as Pj, WorkerInferenceEventParams as Pk, QuestionWaitAnswerParams as Pl, CronJobStateSchema as Pm, TasksCancelParamsSchema as Pn, SessionsGroupsListResult as Po, EnvironmentsListParamsSchema as Pp, SessionMemberEvidenceSchema as Pr, SessionsPatchMutationSchema as Ps, PluginsSessionActionParams as Pt, NodePluginToolsUpdateParamsSchema as Pu, UsersSelfResultSchema as Pv, SecretRefSchema as Pw, SkillsCuratorStatusResult as Px, AuditActivityOutboundMessageV1 as Py, PortalListParamsSchema as Q, SessionApprovalEventSchema as QA, AgentWaitParams as QC, BoardOpSchema as QD, SessionOwnerSchema as QE, SessionGitHubPublicationPublished as QM, BoardWidgetSchema as QO, ToolsCatalogResult as QS, ProjectsRegisterResultSchema as QT, TtsSpeakResult as Q_, SessionsCreateResult as Qa, GitHubIdentityScopeSchema as Qb, SecretsStoreSetParams as Qc, GatewaySuspendStatusResultSchema as Qd, ScopeUpgradeRequestSchema as Qf, TalkAgentControlResult as Qg, UpdateHoldParams as Qh, SessionGroupSchema as Qi, WorkerLiveEventErrorDetails as Qj, validateWorkerInferenceTerminalOutcome as Qk, NodeEventParams as Ql, SystemAgentChatHistoryTurn as Qm, TaskSuggestionResolution as Qn, SessionsObserverVisibilityParams as Qo, WorkerDesktopObserveResultSchema as Qp, SessionSharingIdentity as Qr, SessionMoveExpectedSource as Qs, PluginApprovalRequestParamsSchema as Qt, ChatDeltaEventSchema as Qu, AuditListParams as Qv, SessionsCatalogArchiveParams as Qw, SkillsProposalEvaluateResult as Qx, ArtifactsListResultSchema as Qy, WizardStartResultSchema as R, ExecApprovalPresentationSchema as RA, ToolsGitHubStatusResult as RC, BoardCommandEventSchema as RD, SessionSuggestionsListResultSchema as RE, WorkerTranscriptCommitResult as RM, BoardWidgetPluginContentSchema as RO, SkillsUploadBeginParams as RS, ProjectRecordSchema as RT, TalkSessionCreateResult as R_, SessionsCompactionRestoreResultSchema as Ra, AgentsListParams as Rb, SecretStoreSecretEntrySchema as Rc, GatewaySuspendPrepareParams as Rd, DevicePairSetupStatusResult as Rf, ChannelsPairingListParamsSchema as Rg, ConfigPatchParams as Rh, SessionFileBrowserResultSchema as Ri, WorkerErrorShape as Rj, WorkerInferenceOptionsSchema as Rk, PushTestParams as Rl, CronRunLogEntrySchema as Rm, TasksGetParamsSchema as Rn, SessionsGroupsPutParams as Ro, EnvironmentsStatusParamsSchema as Rp, SessionMemberRemoveParamsSchema as Rr, SessionsRecoverResultSchema as Rs, PluginsSessionActionSuccessResultSchema as Rt, NodePresenceAlivePayloadSchema as Ru, UsersSetAvatarResultSchema as Rv, SessionCatalogCapabilitiesSchema as Rw, SkillsDetailResult as Rx, findAuditActivityFilterConflict as Ry, WorktreesRemoveParamsSchema as S, ApprovalPresentationSchema as SA, ToolsGitHubAuthorizePollResult as SC, ProgressCardStepSchema as SD, SessionSuggestionAction as SE, WorkerSessionsSendResponseFrame as SM, BoardWidgetContent as SO, SkillsSearchParams as SS, MemoryMigrationProviderPlan as ST, TalkConfigResult as S_, SessionsBranchesSwitchResultSchema as Sa, AgentsDeleteResult as Sb, SessionsMoveParams as Sc, ChatStatusEventSchema as Sd, DevicePairRemoveParams as Sf, CommandsListParams as Sg, SystemAgentWizardCancel as Sh, SessionBranchSchema as Si, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES as Sj, WORKER_INFERENCE_PROTOCOL_FEATURE as Sk, QuestionRequestedEventSchema as Sl, CronScratchGetParams as Sm, TerminalOpenResultSchema as Sn, SessionsForkParams as So, EnvironmentStatusSchema as Sp, SystemInfoResult as Sr, SessionsSendParams as Ss, PluginsListParamsSchema as St, NodePendingAckParamsSchema as Su, UsersPrefsChangedEventSchema as Sv, PollParams as Sw, SkillProposalLifecycleEvent as Sx, AUDIT_ACTIVITY_MESSAGE_KIND as Sy, WorktreesRestoreParams as T, ApprovalResolveResult as TA, ToolsGitHubAuthorizeStartParams as TC, BOARD_CRON_JOB_ID_MAX_LENGTH as TD, SessionSuggestionEventSchema as TE, WorkerSessionsSpawnParamsSchema as TM, BoardWidgetDeclaredSchema as TO, SkillsSearchResultSchema as TS, MigrationsMemoryApplyResult as TT, TalkEventSchema as T_, SessionsCompactParams as Ta, AgentsFileEntrySchema as Tb, SessionsMoveResultSchema as Tc, ChatToolTitlesResult as Td, DevicePairRenameParamsSchema as Tf, CommandsListResultSchema as Tg, SystemChangeEntrySchema as Th, SessionCompanionExchange as Ti, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH as Tj, WorkerInferenceCancelRequestFrame as Tk, QuestionResolveResult as Tl, CronScratchSetResult as Tm, TerminalSessionInfo as Tn, SessionsForkResultSchema as To, EnvironmentsCreateParams as Tp, PresenceEntrySchema as Tr, SessionsUsageParamsSchema as Ts, PluginsRefreshParams as Tt, NodePendingDrainResult as Tu, UsersPrefsGetResult as Tv, WakeParams as Tw, SkillsBinsParamsSchema as Tx, AuditActivityAgentRunV1Schema as Ty, WizardStep as U, PaymentApprovalScopeSchema as UA, ToolsInvokeResult as UC, BoardEventParams as UD, SessionTypingEvent as UE, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as UM, BoardWidgetPutContentSchema as UO, SkillsUploadCommitParamsSchema as US, ProjectsAddResult as UT, TalkSessionSteerParamsSchema as U_, SessionsCompanionResetParams as Ua, AgentsUpdateParamsSchema as Ub, SecretsResolveResult as Uc, GatewaySuspendResumeParams as Ud, DeviceTokenRotateParamsSchema as Uf, ChannelsLogoutParamsSchema as Ug, ConfigSchemaLookupResultSchema as Uh, SessionFileKind as Ui, WorkerHeartbeatParams as Uj, WorkerInferenceStartResponseFrameSchema as Uk, WebPushSubscribeParamsSchema as Ul, CronScratchSchema as Um, TasksListResult as Un, SessionsGroupsUpdateParamsSchema as Uo, WorkerDesktopAppId as Up, SessionMembersListParamsSchema as Ur, SessionDiscussionInfoResultSchema as Us, PluginsUiDescriptorsParams as Ut, NodeSkillDescriptor as Uu, UsersSetRoleParams as Uv, SessionCatalogLocator as Uw, SkillsProposalActionParamsSchema as Ux, ArtifactsDownloadResult as Uy, WizardStatusResult as V, ExternalPostApprovalScopeSchema as VA, ToolsInvokeParams as VC, BoardDataReadParams as VD, SessionSuggestionsResolveResult as VE, WorkerTranscriptMessageSchema as VM, BoardWidgetPresentationSchema as VO, SkillsUploadChunkParamsSchema as VS, ProjectsAddParams as VT, TalkSessionOkResultSchema as V_, SessionsCompanionAskResult as Va, AgentsListResultSchema as Vb, SecretsResolveParams as Vc, GatewaySuspendPrepareResult as Vd, DeviceTokenRevokeParamsSchema as Vf, ChannelsPairingRequest as Vg, ConfigSchemaLookupParamsSchema as Vh, SessionFileEntry as Vi, WorkerGitHubPublishResponseFrame as Vj, WorkerInferenceStartRequestFrameSchema as Vk, PushTestResultSchema as Vl, CronScratchGetParamsSchema as Vm, TasksListParams as Vn, SessionsGroupsRenameParamsSchema as Vo, RuntimeTargetIssue as Vp, SessionMembersListEvidenceResultSchema as Vr, SessionDiscussionInfoParamsSchema as Vs, PluginsSetEnabledResult as Vt, NodeRenameParams as Vu, UsersSetDisplayNameResult as Vv, SessionCatalogHost as Vw, SkillsInstallParamsSchema as Vx, ArtifactsDownloadParams as Vy, WizardStepSchema as W, PendingApprovalSnapshot as WA, ToolsInvokeResultSchema as WC, BoardEventParamsSchema as WD, SessionTypingEventSchema as WE, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as WM, BoardWidgetPutParams as WO, ToolCatalogEntry as WS, ProjectsAddResultSchema as WT, TalkSessionSubmitToolResultParams as W_, SessionsCompanionResetParamsSchema as Wa, AgentsUpdateResult as Wb, SecretsResolveResultSchema as Wc, GatewaySuspendResumeParamsSchema as Wd, DeviceTokenRotateResult as Wf, ChannelsStartParams as Wg, ConfigSchemaParams as Wh, SessionFileKindSchema as Wi, WorkerHeartbeatParamsSchema as Wj, WorkerInferenceStartResult as Wk, WebPushTestParams as Wl, CronScratchSetParamsSchema as Wm, TasksListResultSchema as Wn, SessionsGroupsUpdateResult as Wo, WorkerDesktopAppIdSchema as Wp, SessionMembersListResult as Wr, SessionDiscussionInfoSchema as Ws, PluginsUiDescriptorsParamsSchema as Wt, NodeSkillDescriptorSchema as Wu, UsersSetRoleParamsSchema as Wv, SessionCatalogLocatorSchema as Ww, SkillsProposalApplyResult as Wx, ArtifactsDownloadResultSchema as Wy, PortalCloseResultSchema as X, PluginApprovalSeveritySchema as XA, AgentIdentityResultSchema as XC, BoardMcpAppDescriptorSchema as XD, SessionCreatedActorSchema as XE, SessionGitHubPublicationFailed as XM, BoardWidgetRemoveOpSchema as XO, ToolsCatalogParams as XS, ProjectsRegisterParamsSchema as XT, TtsSpeakParams as X_, SessionsCompanionStateResultSchema as Xa, GitHubIdentityFacts as Xb, SecretsStoreMutationResult as Xc, GatewaySuspendStatusReadyResultSchema as Xd, ScopeUpgradeRejectedSchema as Xf, ChannelsStopParams as Xg, UpdateAvailable as Xh, SessionGroupDefaults as Xi, WorkerHelloOk as Xj, validateWorkerInferenceStartParams as Xk, NodeDescribeParams as Xl, SystemAgentChatHistoryResult as Xm, TaskSuggestionEvent as Xn, SessionsMessagesUnsubscribeParams as Xo, WorkerDesktopObserveParamsSchema as Xp, SessionSharingEvidenceEvent as Xr, SessionDiscussionStateSchema as Xs, PluginsUninstallResultSchema as Xt, ChatAttachmentSchema as Xu, AuditEvent as Xv, SessionCatalogTranscriptItem as Xw, SkillsProposalEvaluateParams as Xx, ArtifactsListParamsSchema as Xy, PortalCloseResult as Y, PluginApprovalSeverity as YA, AgentIdentityResult as YC, BoardMcpAppDescriptor as YD, SessionCreatedActor as YE, GitHubPublicationTitleSchema as YM, BoardWidgetRegisteredMaterializedContent as YO, ToolCatalogProfileSchema as YS, ProjectsRegisterParams as YT, TalkSpeakResultSchema as Y_, SessionsCompanionStateResult as Ya, GitHubAuthorSchema as Yb, SecretsStoreListResultSchema as Yc, GatewaySuspendStatusParamsSchema as Yd, ScopeUpgradeRegistrationSchema as Yf, ChannelsStatusResultSchema as Yg, ConfigSetParamsSchema as Yh, SessionGroup as Yi, WorkerHeartbeatResult as Yj, validateWorkerInferenceEventFrame as Yk, WebPushVapidPublicKeyParamsSchema as Yl, SystemAgentChatHistoryParamsSchema as Ym, TaskSuggestion as Yn, SessionsMessagesSubscribeParamsSchema as Yo, WorkerDesktopObserveParams as Yp, SessionSharingEventSchema as Yr, SessionDiscussionState as Ys, PluginsUninstallResult as Yt, ChatAbortedEventSchema as Yu, normalizeUiAppearancePreference as Yv, SessionCatalogSessionSchema as Yw, SkillsProposalDecisionParamsSchema as Yx, ArtifactsListParams as Yy, PortalListParams as Z, SessionApprovalEvent as ZA, AgentParamsSchema as ZC, BoardOp as ZD, SessionOwner as ZE, SessionGitHubPublicationFailedSchema as ZM, BoardWidgetResizeOpSchema as ZO, ToolsCatalogParamsSchema as ZS, ProjectsRegisterResult as ZT, TtsSpeakParamsSchema as Z_, SessionsCreateParams as Za, GitHubIdentityFactsSchema as Zb, SecretsStoreMutationResultSchema as Zc, GatewaySuspendStatusResult as Zd, ScopeUpgradeRequest as Zf, ChannelsStopParamsSchema as Zg, UpdateAvailableSchema as Zh, SessionGroupDefaultsSchema as Zi, WorkerLiveEvent as Zj, validateWorkerInferenceTerminalFrame as Zk, NodeDescribeParamsSchema as Zl, SystemAgentChatHistoryResultSchema as Zm, TaskSuggestionEventSchema as Zn, SessionsMessagesUnsubscribeParamsSchema as Zo, WorkerDesktopObserveResult as Zp, SessionSharingEvidenceEventSchema as Zr, SessionMoveDeviceTargetSchema as Zs, PluginApprovalRequestParams as Zt, ChatAttachmentsSchema as Zu, AuditEventSchema as Zv, SessionCatalogTranscriptItemSchema as Zw, SkillsProposalEvaluateParamsSchema as Zx, ArtifactsListResult as Zy, WorktreesListParams as _, ApprovalHistoryResult as _A, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema as _C, ProgressCardPutParamsSchema as _D, SessionsDeleteResultSchema as _E, WorkerProviderReplayStateSchema as _M, WizardNotFoundErrorDetailsSchema as _N, BoardWidget as _O, SkillsProposalUpdateParamsSchema as _S, SessionsCatalogStartTerminalParamsSchema as _T, TalkClientToolCallResultSchema as __, SessionsBranchesListResult as _a, AgentsCreateParamsSchema as _b, SessionPlacementStateSchema as _c, ChatMetadataParamsSchema as _d, DevicePairApproveParamsSchema as _f, COMMAND_DESCRIPTION_MAX_LENGTH as _g, SystemAgentSetupDetectResultSchema as _h, SessionsResolveParamsSchema as _i, WORKER_PROTOCOL_FEATURES as _j, validateSkillsProposalHistoryScanParams as _k, QuestionRequestQuestion as _l, CronListParams as _m, TerminalListResult as _n, SessionsFilesRevealResultSchema as _o, ExecApprovalsSetParams as _p, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as _r, SessionsSearchHitSchema as _s, PluginsInstallParams as _t, NodePairRejectParams as _u, UsersListParams as _v, ConversationTurnReplySchema as _w, ModelsProbeResultSchema as _x, ExecutionIdentityContextV1Schema as _y, WorktreeRepositoryStatus as a, ApprovalChannelReviewer as aA, ToolsEffectiveNoticeSchema as aC, SessionToolOverridesSchema as aD, ProjectsSearchRemoteResult as aE, WorkerLiveEventRequestFrameSchema as aM, SessionGitHubPublicationResultSchema as aN, BoardSnapshotSchema as aO, SkillsProposalInspectParamsSchema as aS, SessionsCatalogContinueResultSchema as aT, TalkClientCloseParamsSchema as a_, SessionOperationEvent as aa, AgentsWorkspaceGetResult as ab, SessionMoveProfileTargetSchema as ac, ChatHistoryDeltaResult as ad, FsListDirParamsSchema as af, UpdateScheduleStateSchema as ag, SystemAgentChatResultSchema as ah, SessionSharingRole as ai, TerminalSessionApprovalEventSchema as aj, UiCommandSchema as ak, QuestionGetResult as al, WorkerMachineOption as am, TerminalAttachResult as an, SessionsDiffResultSchema as ao, ExecApprovalRequestParams as ap, TaskSuggestionsCreateParams as ar, SessionsPluginPatchResultSchema as as, PortalSummary as at, NodeInvokeParamsSchema as au, USER_PREFS_ENTRY_LIMIT as av, ConversationListResultSchema as aw, ModelChoiceSchema as ax, AuditRunIdentityUnsupportedV1Schema as ay, WorktreesListResultSchema as b, ApprovalKindSchema as bA, ToolsGitHubAuthorizePollParams as bC, ProgressCardSchema as bD, WorktreePreservationReasonSchema as bE, WorkerSessionsSendParams as bM, missingScopeErrorShape as bN, BoardWidgetAppViewResult as bO, SkillsProposalsListResult as bS, MAX_MEMORY_MIGRATION_ITEMS as bT, TalkConfigParams as b_, SessionsBranchesSwitchParamsSchema as ba, AgentsDeleteParams as bb, SessionsDispatchResult as bc, ChatSendParamsSchema as bd, DevicePairRejectParams as bf, CommandEntry as bg, SystemAgentSetupVerifyResult as bh, SESSION_OBSERVER_HEALTH_VALUES as bi, WORKER_PROTOCOL_MAX_METHOD_LENGTH as bj, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as bk, QuestionRequestResultSchema as bl, CronRunParams as bm, TerminalOpenParamsSchema as bn, SessionsFilesSetResult as bo, ExecApprovalsSnapshotSchema as bp, SystemInfoParams as br, SessionsSearchResult as bs, PluginsInstallResultSchema as bt, NodePairRemoveParamsSchema as bu, UsersListResultSchema as bv, MessageActionParams as bw, SkillProposalEvaluation as bx, AUDIT_ACTIVITY_DIRECTIONS as by, WorktreesBranchesParamsSchema as c, ApprovalDecisionSchema as cA, ToolsEffectiveResult as cC, PROGRESS_CARD_MAX_UTF8_BYTES as cD, RemoteProjectSchema as cE, WorkerLiveEventResult as cM, CronJobNotFoundErrorDetailsSchema as cN, BoardTabDeleteOpSchema as cO, SkillsProposalRecordResult as cS, SessionsCatalogListParams as cT, TalkClientCreateResult as c_, SessionWorktreeInfoSchema as ca, AgentsWorkspaceListParamsSchema as cb, SessionPlacement as cc, ChatHistoryParamsSchema as cd, DesktopLaunchParams as cf, UpdateStatusResult as cg, SystemAgentSetupActivateResult as ch, SessionVisibilitySchema as ci, ValidationError as cj, UiPanelCommandSchema as ck, QuestionListParamsSchema as cl, WorkerSlotSummary as cm, TerminalCloseParamsSchema as cn, SessionsFilesGetResult as co, ExecApprovalResolveParamsSchema as cp, TaskSuggestionsCreateResultSchema as cr, SessionsRecoverParams as cs, PluginCatalogEntry as ct, NodeInvokeRequestEventSchema as cu, UserProfile as cv, ConversationSendResult as cw, ModelsAuthStatusParams as cx, AuditRunInspectParams as cy, WorktreesCreateParams as d, ApprovalGetParams as dA, ToolsGitHubAuthorizeCancelParams as dC, ProgressCardChangedEventSchema as dD, SessionsCreateParamsSchema as dE, WorkerPortalParams as dM, MissingScopeErrorDetailsSchema as dN, BoardTabUpdateOpSchema as dO, SkillsProposalRequestRevisionParamsSchema as dS, SessionsCatalogListResultSchema as dT, TalkClientMutationResultSchema as d_, SessionsAssignOwnerParams as da, AgentKind as db, SessionPlacementMove as dc, ChatInjectParams as dd, DesktopObserveParamsSchema as df, COMMAND_ARGS_MAX_ITEMS as dg, SystemAgentSetupAuthStartParamsSchema as dh, SessionsViewerPresenceSetParamsSchema as di, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE as dj, SkillsProposalHistoryScanParams as dk, QuestionOption as dl, WorkerTunnelStatusSchema as dm, TerminalEvent as dn, SessionsFilesListParamsSchema as do, ExecApprovalsNodeGetParams as dp, TaskSuggestionsDismissResult as dr, SessionsResetParamsSchema as ds, PluginCatalogOfficialInstallSchema as dt, NodeListParams as du, UserProfileGitHubIdentitySchema as dv, ConversationTurnCancelParamsSchema as dw, ModelsListParamsSchema as dx, AuditRunInspectResultSchema as dy, AllowedApprovalSnapshotSchema as eA, ToolsEffectiveEntry as eC, SessionPermissionModeSchema as eD, ProjectsRemoveParamsSchema as eE, WorkerLiveEventErrorShape as eM, SessionGitHubPublicationPublishing as eN, BoardPromptAuthorizeParams as eO, SkillsProposalEventsListParams as eS, SessionsCatalogArchiveResult as eT, TalkCatalogParams as e_, SessionObserverDigestSchema as ea, AgentsWorkspaceEntrySchema as eb, SessionMoveGatewayTargetSchema as ec, ChatEvent as ed, GatewaySuspendTaskBlocker as ef, UpdateHoldResult as eg, SystemAgentChatParams as eh, SessionVisibilitySetParams as ei, SessionApprovalReplaySchema as ej, UiCommand as ek, Question as el, WorkerEnvironmentMetadataSchema as em, PluginApprovalResolveParamsSchema as en, SessionsDescribeParams as eo, ScopeUpgradeResultSchema as ep, TaskSuggestionSchema as er, SessionsObserverVisibilityResult as es, PortalListResultSchema as et, NodeEventResult as eu, WebLoginStartParams as ev, ConversationListItem as ew, GitHubSelectedIdentity as ex, AuditListResult as ey, WorktreesCreateParamsSchema as f, ApprovalGetParamsSchema as fA, ToolsGitHubAuthorizeCancelParamsSchema as fC, ProgressCardGetParams as fD, PreservedSessionWorktree as fE, WorkerPortalParamsSchema as fM, OutboundDeliveryQueuedErrorDetailsSchema as fN, BoardTabsReorderOpSchema as fO, SkillsProposalRequestRevisionResult as fS, SessionsCatalogReadParams as fT, TalkClientSteerParams as f_, SessionsAssignOwnerParamsSchema as fa, AgentKindSchema as fb, SessionPlacementMoveSchema as fc, ChatInjectParamsSchema as fd, DesktopObserveResult as ff, COMMAND_ARG_CHOICES_MAX_ITEMS as fg, SystemAgentSetupAuthStartResult as fh, SessionsViewerPresenceSetResult as fi, WORKER_GITHUB_PUBLICATION_PROTOCOL_FEATURE as fj, SkillsProposalHistoryScanParamsSchema as fk, QuestionOptionSchema as fl, CronAddParams as fm, TerminalEventSchema as fn, SessionsFilesListResult as fo, ExecApprovalsNodeGetParamsSchema as fp, TaskSuggestionsDismissResultSchema as fr, SessionsRewindParams as fs, PluginControlUiDescriptor as ft, NodeListParamsSchema as fu, UserProfileSchema as fv, ConversationTurnCancelResult as fw, ModelsListResult as fx, DecisionReceiptDisplayV1 as fy, WorktreesGcResultSchema as g, ApprovalHistoryParamsSchema as gA, ToolsGitHubAuthorizeFailedResultSchema as gC, ProgressCardPutParams as gD, SessionsDeleteResult as gE, WorkerProviderReplayState as gM, UserPrefsLimitExceededErrorDetailsSchema as gN, BoardViewTicketSchema as gO, SkillsProposalUpdateParams as gS, SessionsCatalogStartTerminalParams as gT, TalkClientToolCallResult as g_, SessionsBranchesListParamsSchema as ga, AgentsCreateParams as gb, SessionPlacementSchema as gc, ChatMetadataParams as gd, DevicePairApproveParams as gf, COMMAND_CHOICE_VALUE_MAX_LENGTH as gg, SystemAgentSetupDetectResult as gh, SessionsResolveParams as gi, WORKER_PORTAL_PROTOCOL_FEATURE as gj, SkillsProposalHistoryStatusParamsSchema as gk, QuestionRequestParamsSchema as gl, CronJob as gm, TerminalInputParamsSchema as gn, SessionsFilesRevealResult as go, ExecApprovalsNodeSnapshotSchema as gp, TaskSuggestionsListResultSchema as gr, SessionsSearchHit as gs, PluginSearchResultEntrySchema as gt, NodePairListParamsSchema as gu, UsersLinkEmailResultSchema as gv, ConversationTurnReply as gw, ModelsProbeResult as gx, ExecutionIdentityContextV1 as gy, WorktreesGcResult as h, ApprovalHistoryParams as hA, ToolsGitHubAuthorizeExpiredResultSchema as hC, ProgressCardGetResultSchema as hD, SessionsDeleteParamsSchema as hE, WorkerProtocolCloseReason as hM, UnknownAgentIdErrorDetailsSchema as hN, BoardUpdateParamsSchema as hO, SkillsProposalReviseParamsSchema as hS, SessionsCatalogReadResultSchema as hT, TalkClientToolCallParamsSchema as h_, SessionsBranchesListParams as ha, AgentSummarySchema as hb, SessionPlacementRunnerSchema as hc, ChatMessageGetResultSchema as hd, DesktopSourceSchema as hf, COMMAND_CHOICE_LABEL_MAX_LENGTH as hg, SystemAgentSetupDetectParamsSchema as hh, SessionsResolveCandidateSchema as hi, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as hj, SkillsProposalHistoryStatusParams as hk, QuestionRequestParams as hl, CronGetParams as hm, TerminalInputParams as hn, SessionsFilesRevealParamsSchema as ho, ExecApprovalsNodeSnapshot as hp, TaskSuggestionsListResult as hr, SessionsRewindResultSchema as hs, PluginSearchPackageSchema as ht, NodePairListParams as hu, UsersLinkEmailResult as hv, ConversationTurnParamsSchema as hw, ModelsProbeParamsSchema as hx, DecisionReceiptV1Schema as hy, WorktreeRecordSchema as i, ApprovalCancelledReasonSchema as iA, ToolsEffectiveNotice as iC, SessionToolOverrides as iD, ProjectsSearchRemoteParamsSchema as iE, WorkerLiveEventRequestFrame as iM, SessionGitHubPublicationResult as iN, BoardSnapshot as iO, SkillsProposalInspectParams as iS, SessionsCatalogContinueResult as iT, TalkClientCloseParams as i_, SessionObserverPlanProgressSchema as ia, AgentsWorkspaceGetParamsSchema as ib, SessionMovePlacementStateSchema as ic, ChatHistoryCursorResultSchema as id, FsListDirParams as if, UpdateScheduleState as ig, SystemAgentChatResult as ih, SESSION_VISIBILITY_VALUES as ii, TerminalApprovalSnapshotSchema as ij, UiCommandResultSchema as ik, QuestionGetParamsSchema as il, WorkerExecutionModeSchema as im, TerminalAttachParamsSchema as in, SessionsDiffResult as io, ExecApprovalGetParamsSchema as ip, TaskSuggestionsAcceptResultSchema as ir, SessionsPluginPatchResult as is, PortalOpenResultSchema as it, NodeInvokeParams as iu, GIT_COAUTHOR_PREFERENCE_KEY as iv, ConversationListResult as iw, ModelChoice as ix, AuditRunIdentityUnknownV1Schema as iy, WizardNextParams as j, ApprovalTerminalReason as jA, ToolsGitHubConfigureParamsSchema as jC, BoardCanvasDocumentSource as jD, SessionSuggestionsAddParams as jE, WorkerTranscriptCommitErrorShapeSchema as jM, BoardWidgetHtmlContentSchema as jO, SkillsSkillCardParamsSchema as jS, ProjectCheckout as jT, TalkSessionCancelOutputParamsSchema as j_, SessionsCompactionListParams as ja, AgentsFilesListParamsSchema as jb, SessionsReclaimResultSchema as jc, QueueMode as jd, DevicePairSetupCodeResultSchema as jf, ChannelsPairingApproveResult as jg, SystemChangesListParamsSchema as jh, SessionDiffFileStatus as ji, WorkerAdmissionHandshake as jj, WorkerInferenceErrorReason as jk, QuestionSecretStoreExistingSchema as jl, CronDeliverySchema as jm, TaskSummary as jn, SessionsGroupsDeleteParamsSchema as jo, EnvironmentsDestroyResult as jp, SessionMemberAddParams as jr, SessionsPatchManyTarget as js, PluginsSearchResult as jt, NodePluginToolDescriptor as ju, UsersSelfParams as jv, InputProvenanceSchema as jw, SkillsCuratorActionResultSchema as jx, AuditActivityListParamsSchema as jy, WizardCancelParams as k, ApprovalSnapshot as kA, ToolsGitHubAuthorizeSuccessResultSchema as kC, BoardActionParams as kD, SessionSuggestionState as kE, WorkerTranscriptCommitErrorReasonSchema as kM, BoardWidgetGrantParamsSchema as kO, SkillsSecurityVerdictsResultSchema as kS, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT as kT, TalkSessionAppendAudioParamsSchema as k_, SessionsCompactionBranchResult as ka, AgentsFilesGetResultSchema as kb, SessionsReclaimResultPlacement as kc, LogsTailResult as kd, DevicePairSetupCodeParamsSchema as kf, ChannelsPairingApproveParams as kg, SystemChangeSourceSchema as kh, SessionDiffFile as ki, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as kj, WorkerInferenceCancelResult as kk, QuestionSchema as kl, CronAddResultSchema as km, TerminalUploadResult as kn, SessionsGroupsDefaultsResultSchema as ko, EnvironmentsDestroyParams as kp, StateVersionSchema as kr, SessionsPatchManyResult as ks, PluginsSearchParams as kt, NodePendingEnqueueResult as ku, UsersPrefsSetResult as kv, GatewayClientIdSchema as kw, SkillsCuratorActionParamsSchema as kx, AuditActivityInboundMessageV1Schema as ky, WorktreesBranchesResult as l, ApprovalDeniedReasonSchema as lA, ToolsEffectiveResultSchema as lC, ProgressCard as lD, SESSION_CREATE_IDEMPOTENCY_RETENTION_MS as lE, WorkerLiveEventResultSchema as lM, GatewayErrorDetailsSchema as lN, BoardTabIdSchema as lO, SkillsProposalRecordResultSchema as lS, SessionsCatalogListParamsSchema as lT, TalkClientCreateResultSchema as l_, SessionsAbortParams as la, AgentsWorkspaceListResult as lb, SessionPlacementDiskSpace as lc, ChatHistoryResetResult as ld, DesktopLaunchParamsSchema as lf, UpdateStatusResultSchema as lg, SystemAgentSetupActivateResultSchema as lh, SESSION_VIEWER_PRESENCE_MAX_KEYS as li, formatValidationErrors as lj, UiSidebarCommandSchema as lk, QuestionListResult as ll, WorkerSlotSummarySchema as lm, TerminalDataEvent as ln, SessionsFilesGetResultSchema as lo, ExecApprovalsGetParams as lp, TaskSuggestionsDismissParams as lr, SessionsRecoverResult as ls, PluginCatalogEntrySchema as lt, NodeInvokeResultParams as lu, UserProfileAvatarMimeSchema as lv, ConversationSendResultSchema as lw, ModelsAuthStatusParamsSchema as lx, AuditRunInspectParamsSchema as ly, WorktreesGcParamsSchema as m, ApprovalGetResultSchema as mA, ToolsGitHubAuthorizeCancelResultSchema as mC, ProgressCardGetResult as mD, SessionsDeleteParams as mE, WorkerPortalResponseFrameSchema as mM, SkillProposalRevisionChangedErrorDetailsSchema as mN, BoardUpdateParams as mO, SkillsProposalReviseParams as mS, SessionsCatalogReadResult as mT, TalkClientToolCallParams as m_, SessionsAssignOwnerResultSchema as ma, AgentSummary as mb, SessionPlacementRunner as mc, ChatMessageGetResult as md, DesktopSource as mf, COMMAND_ARG_NAME_MAX_LENGTH as mg, SystemAgentSetupDetectParams as mh, SessionsResolveCandidate as mi, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as mj, SkillsProposalHistoryScanResultSchema as mk, QuestionRecordSchema as ml, CronDeclarativeAddResult as mm, TerminalExitEventSchema as mn, SessionsFilesRevealParams as mo, ExecApprovalsNodeSetParamsSchema as mp, TaskSuggestionsListParamsSchema as mr, SessionsRewindResult as ms, PluginJsonValueSchema as mt, NodePairApproveParamsSchema as mu, UsersLinkEmailParamsSchema as mv, ConversationTurnParams as mw, ModelsProbeParams as mx, DecisionReceiptV1 as my, WorktreeBranchSchema as n, ApprovalAllowDecisionSchema as nA, ToolsEffectiveGroup as nC, SessionRowSchema as nD, ProjectsRemoveResultSchema as nE, WorkerLiveEventParams as nM, SessionGitHubPublicationRequested as nN, BoardSetChatDockCommandSchema as nO, SkillsProposalEventsListResult as nS, SessionsCatalogContinueParams as nT, TalkCatalogResult as n_, SessionObserverHealthSchema as na, AgentsWorkspaceFileSchema as nb, SessionMovePlacementSchema as nc, ChatFinalEventSchema as nd, FsDirEntry as nf, UpdateRunParams as ng, SystemAgentChatQuestion as nh, SessionVisibilitySetResult as ni, SystemAgentApprovalPresentationSchema as nj, UiCommandParamsSchema as nk, QuestionAnswersSchema as nl, WorkerEnvironmentStateSchema as nm, TerminalAckResultSchema as nn, SessionsDiffParams as no, ScopeUpgradeWaitSchema as np, TaskSuggestionsAcceptParamsSchema as nr, SessionsPluginPatchParams as ns, PortalOpenParamsSchema as nt, NodeInvokeInputEvent as nu, WebLoginWaitParams as nv, ConversationListParams as nw, ModelCatalogProviderOutcome as nx, AuditRunIdentityAmbiguousV1Schema as ny, WorktreeRepositoryStatusSchema as o, ApprovalChannelReviewerSchema as oA, ToolsEffectiveParams as oC, PROGRESS_CARD_MAX_STEPS as oD, ProjectsSearchRemoteResultSchema as oE, WorkerLiveEventResponseFrame as oM, SessionGitHubPublishParams as oN, BoardTab as oO, SkillsProposalInspectResult as oS, SessionsCatalogHostEvent as oT, TalkClientCreateParams as o_, SessionOperationEventSchema as oa, AgentsWorkspaceGetResultSchema as ob, SessionMoveTarget as oc, ChatHistoryDeltaResultSchema as od, FsListDirResult as of, UpdateStatusParams as og, SystemAgentSetupActivateParams as oh, SessionSharingRoleSchema as oi, isWellFormedApprovalId as oj, UiFocusCommandSchema as ok, QuestionGetResultSchema as ol, WorkerMachineOptionSchema as om, TerminalAttachResultSchema as on, SessionsFilesGetParams as oo, ExecApprovalRequestParamsSchema as op, TaskSuggestionsCreateParamsSchema as or, SessionsPreviewParams as os, PortalSummarySchema as ot, NodeInvokeProgressParams as ou, USER_PREFS_PROFILE_KEY_LIMIT as ov, ConversationSendParams as ow, ModelsAuthLogoutParams as ox, AuditRunIdentityV1 as oy, WorktreesGcParams as p, ApprovalGetResult as pA, ToolsGitHubAuthorizeCancelResult as pC, ProgressCardGetParamsSchema as pD, PreservedSessionWorktreeSchema as pE, WorkerPortalResponseFrame as pM, ProjectCloneErrorDetailsSchema as pN, BoardTicketEventParamsSchema as pO, SkillsProposalRequestRevisionResultSchema as pS, SessionsCatalogReadParamsSchema as pT, TalkClientSteerParamsSchema as p_, SessionsAssignOwnerResult as pa, AgentOwnershipSchema as pb, SessionPlacementProtocolSchemas as pc, ChatMessageGetParamsSchema as pd, DesktopObserveResultSchema as pf, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as pg, SystemAgentSetupAuthStartResultSchema as ph, SessionsViewerPresenceSetResultSchema as pi, WORKER_HEARTBEAT_INTERVAL_MS as pj, SkillsProposalHistoryScanResult as pk, QuestionRecord as pl, CronAddResult as pm, TerminalExitEvent as pn, SessionsFilesListResultSchema as po, ExecApprovalsNodeSetParams as pp, TaskSuggestionsListParams as pr, SessionsRewindParamsSchema as ps, PluginControlUiDescriptorSchema as pt, NodePairApproveParams as pu, UsersLinkEmailParams as pv, ConversationTurnCancelResultSchema as pw, ModelsListResultSchema as px, DecisionReceiptDisplayV1Schema as py, PortalCloseParams as q, PluginApprovalPresentation as qA, AgentIdentityParams as qC, BoardGetParamsSchema as qD, SessionTypingResult as qE, WorkerProtocolCloseReasonSchema as qM, BoardWidgetPutResultSchema as qO, ToolCatalogGroupSchema as qS, ProjectsListResult as qT, TalkSpeakParamsSchema as q_, SessionsCompanionStateParams as qa, AuthProbeStatusSchema as qb, SecretsStoreListParamsSchema as qc, GatewaySuspendStatusDrainingResultSchema as qd, ScopeUpgradeExpiredSchema as qf, ChannelsStatusParamsSchema as qg, ConfigSchemaResponseSchema as qh, SessionFileRelevance as qi, WorkerHeartbeatResponseFrame as qj, WorkerInferenceTerminalParams as qk, WebPushUnsubscribeParamsSchema as ql, CronUpdateParamsSchema as qm, TasksRecoveryResult as qn, SessionsListParamsSchema as qo, WorkerDesktopLaunchResult as qp, SessionSharingActionSchema as qr, SessionDiscussionOpenResult as qs, PluginsUninstallParams as qt, ChatAbortParams as qu, UI_APPEARANCE_PREFERENCE_KEYS as qv, SessionCatalogSchema as qw, SkillsProposalCreateParamsSchema as qx, ArtifactsGetResult as qy, WorktreeRecord as r, ApprovalAllowedReasonSchema as rA, ToolsEffectiveGroupSchema as rC, SessionRunStatus as rD, ProjectsSearchRemoteParams as rE, WorkerLiveEventParamsSchema as rM, SessionGitHubPublicationRequestedSchema as rN, BoardSizeSchema as rO, SkillsProposalEventsListResultSchema as rS, SessionsCatalogContinueParamsSchema as rT, TalkCatalogResultSchema as r_, SessionObserverPlanProgress as ra, AgentsWorkspaceGetParams as rb, SessionMovePlacementState as rc, ChatHistoryCursorResult as rd, FsDirEntrySchema as rf, UpdateRunParamsSchema as rg, SystemAgentChatQuestionSchema as rh, SessionVisibilitySetResultSchema as ri, TerminalApprovalSnapshot as rj, UiCommandResult as rk, QuestionGetParams as rl, WorkerExecutionMode as rm, TerminalAttachParams as rn, SessionsDiffParamsSchema as ro, ExecApprovalGetParams as rp, TaskSuggestionsAcceptResult as rr, SessionsPluginPatchParamsSchema as rs, PortalOpenResult as rt, NodeInvokeInputEventSchema as ru, WebLoginWaitParamsSchema as rv, ConversationListParamsSchema as rw, ModelCatalogProviderOutcomeSchema as rx, AuditRunIdentityPresentV1Schema as ry, WorktreesBranchesParams as s, ApprovalDecision as sA, ToolsEffectiveParamsSchema as sC, PROGRESS_CARD_MAX_STEP_UTF8_BYTES as sD, RemoteProject as sE, WorkerLiveEventResponseFrameSchema as sM, SessionGitHubPublishParamsSchema as sN, BoardTabCreateOpSchema as sO, SkillsProposalInspectResultSchema as sS, SessionsCatalogHostEventSchema as sT, TalkClientCreateParamsSchema as s_, SessionWorktreeInfo as sa, AgentsWorkspaceListParams as sb, SessionMoveTargetSchema as sc, ChatHistoryParams as sd, FsListDirResultSchema as sf, UpdateStatusParamsSchema as sg, SystemAgentSetupActivateParamsSchema as sh, SessionVisibility as si, ProtocolValidator as sj, UiNavigateCommandSchema as sk, QuestionListParams as sl, WorkerMachineOptionsSchema as sm, TerminalCloseParams as sn, SessionsFilesGetParamsSchema as so, ExecApprovalResolveParams as sp, TaskSuggestionsCreateResult as sr, SessionsPreviewParamsSchema as ss, PluginCatalogClawHubInstallSchema as st, NodeInvokeProgressParamsSchema as su, USER_PREFS_VALUE_BYTES as sv, ConversationSendParamsSchema as sw, ModelsAuthLogoutParamsSchema as sx, AuditRunIdentityV1Schema as sy, WorktreeBranch as t, ApprovalAllowDecision as tA, ToolsEffectiveEntrySchema as tC, SessionRow as tD, ProjectsRemoveResult as tE, WorkerLiveEventErrorShapeSchema as tM, SessionGitHubPublicationPublishingSchema as tN, BoardPromptAuthorizeParamsSchema as tO, SkillsProposalEventsListParamsSchema as tS, SessionsCatalogArchiveResultSchema as tT, TalkCatalogParamsSchema as t_, SessionObserverHealth as ta, AgentsWorkspaceFile as tb, SessionMovePlacement as tc, ChatEventSchema as td, GatewaySuspendTaskBlockerSchema as tf, UpdateHoldResultSchema as tg, SystemAgentChatParamsSchema as th, SessionVisibilitySetParamsSchema as ti, SystemAgentApprovalPresentation as tj, UiCommandParams as tk, QuestionAnswers as tl, WorkerEnvironmentState as tm, TerminalAckResult as tn, SessionsDescribeParamsSchema as to, ScopeUpgradeWait as tp, TaskSuggestionsAcceptParams as tr, SessionsObserverVisibilityResultSchema as ts, PortalOpenParams as tt, NodeEventResultSchema as tu, WebLoginStartParamsSchema as tv, ConversationListItemSchema as tw, GitHubSelectedIdentitySchema as tx, AuditListResultSchema as ty, WorktreesBranchesResultSchema as u, ApprovalExpiredReasonSchema as uA, ToolsGitHubAuthorizeAccessDeniedResultSchema as uC, ProgressCardChangedEvent as uD, SESSION_CREATE_RETRY_WINDOW_MS as uE, WorkerLiveEventSchema as uM, McpAppViewExpiredErrorDetailsSchema as uN, BoardTabSchema as uO, SkillsProposalRequestRevisionParams as uS, SessionsCatalogListResult as uT, TalkClientMutationResult as u_, SessionsAbortParamsSchema as ua, AgentsWorkspaceListResultSchema as ub, SessionPlacementDiskSpaceSchema as uc, ChatHistoryResetResultSchema as ud, DesktopObserveParams as uf, COMMAND_ALIAS_MAX_ITEMS as ug, SystemAgentSetupAuthStartParams as uh, SessionsViewerPresenceSetParams as ui, WORKER_BUNDLE_PREWARM_VERSION as uj, UiSplitCommandSchema as uk, QuestionListResultSchema as ul, WorkerTunnelStatus as um, TerminalDataEventSchema as un, SessionsFilesListParams as uo, ExecApprovalsGetParamsSchema as up, TaskSuggestionsDismissParamsSchema as ur, SessionsResetParams as us, PluginCatalogInstallActionSchema as ut, NodeInvokeResultParamsSchema as uu, UserProfileGitHubIdentity as uv, ConversationTurnCancelParams as uw, ModelsListParams as ux, AuditRunInspectResult as uy, WorktreesListParamsSchema as v, ApprovalHistoryResultSchema as vA, ToolsGitHubAuthorizeNetworkErrorResultSchema as vC, ProgressCardPutResult as vD, WORKTREE_PRESERVATION_REASONS as vE, WorkerSessionToolResult as vM, buildMissingScopeErrorDetails as vN, BoardWidgetAppViewParams as vO, SkillsProposalsListParams as vS, SessionsCatalogStartTerminalResult as vT, TalkClientTranscriptParams as v_, SessionsBranchesListResultSchema as va, AgentsCreateResult as vb, SessionsDispatchParams as vc, ChatRunStartupPhase as vd, DevicePairListParams as vf, COMMAND_LIST_MAX_ITEMS as vg, SystemAgentSetupVerifyParams as vh, SessionsResolveResult as vi, WORKER_PROTOCOL_MAX_FEATURES as vj, validateSkillsProposalHistoryStatusParams as vk, QuestionRequestQuestionSchema as vl, CronRemoveParams as vm, TerminalListResultSchema as vn, SessionsFilesSetParams as vo, ExecApprovalsSetParamsSchema as vp, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as vr, SessionsSearchParams as vs, PluginsInstallParamsSchema as vt, NodePairRejectParamsSchema as vu, UsersListParamsSchema as vv, ConversationTurnResult as vw, ModelsProbeTargetResult as vx, PrincipalRefV1 as vy, WorktreesRemoveResultSchema as w, ApprovalResolveParamsSchema as wA, ToolsGitHubAuthorizeSlowDownResultSchema as wC, ProgressCardStepStatusSchema as wD, SessionSuggestionEvent as wE, WorkerSessionsSpawnParams as wM, BoardWidgetDeclared as wO, SkillsSearchResult as wS, MigrationsMemoryApplyParamsSchema as wT, TalkEvent as w_, SessionsCleanupParamsSchema as wa, AgentsFileEntry as wb, SessionsMoveResult as wc, ChatToolTitlesParamsSchema as wd, DevicePairRenameParams as wf, CommandsListResult as wg, SystemChangeEntry as wh, SessionCompactionCheckpointSchema as wi, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE as wj, WorkerInferenceCancelParams as wk, QuestionResolveParamsSchema as wl, CronScratchSetParams as wm, TerminalResizeParamsSchema as wn, SessionsForkResult as wo, EnvironmentSummarySchema as wp, PresenceEntry as wr, SessionsUsageParams as ws, PluginsListResultSchema as wt, NodePendingDrainParamsSchema as wu, UsersPrefsGetParamsSchema as wv, SendParamsSchema as ww, SkillsBinsParams as wx, AuditActivityAgentRunV1 as wy, WorktreesRemoveParams as x, ApprovalPresentation as xA, ToolsGitHubAuthorizePollParamsSchema as xC, ProgressCardStep as xD, SessionSuggestion as xE, WorkerSessionsSendParamsSchema as xM, GATEWAY_SERVER_CAPS as xN, BoardWidgetAppViewResultSchema as xO, SkillsProposalsListResultSchema as xS, MemoryMigrationItem as xT, TalkConfigParamsSchema as x_, SessionsBranchesSwitchResult as xa, AgentsDeleteParamsSchema as xb, SessionsDispatchResultSchema as xc, ChatStatusEvent as xd, DevicePairRejectParamsSchema as xf, CommandEntrySchema as xg, SystemAgentSetupVerifyResultSchema as xh, SessionBranch as xi, WORKER_PROTOCOL_METHODS as xj, WORKER_INFERENCE_METHODS as xk, QuestionRequestedEvent as xl, CronRunsParams as xm, TerminalOpenResult as xn, SessionsFilesSetResultSchema as xo, EnvironmentStatus as xp, SystemInfoParamsSchema as xr, SessionsSearchResultSchema as xs, PluginsListParams as xt, NodePendingAckParams as xu, UsersPrefsChangedEvent as xv, MessageActionParamsSchema as xw, SkillProposalEvaluationSchema as xx, AUDIT_ACTIVITY_KINDS as xy, WorktreesListResult as y, ApprovalKind as yA, ToolsGitHubAuthorizePendingResultSchema as yC, ProgressCardPutResultSchema as yD, WorktreePreservationReason as yE, WorkerSessionToolResultSchema as yM, errorShape as yN, BoardWidgetAppViewParamsSchema as yO, SkillsProposalsListParamsSchema as yS, SessionsCatalogStartTerminalResultSchema as yT, TalkClientTranscriptParamsSchema as y_, SessionsBranchesSwitchParams as ya, AgentsCreateResultSchema as yb, SessionsDispatchParamsSchema as yc, ChatRunStartupPhaseSchema as yd, DevicePairListParamsSchema as yf, COMMAND_NAME_MAX_LENGTH as yg, SystemAgentSetupVerifyParamsSchema as yh, SessionsResolveResultSchema as yi, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as yj, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as yk, QuestionRequestResult as yl, CronRunLogEntry as ym, TerminalOpenParams as yn, SessionsFilesSetParamsSchema as yo, ExecApprovalsSnapshot as yp, validateSystemEventParams as yr, SessionsSearchParamsSchema as ys, PluginsInstallResult as yt, NodePairRemoveParams as yu, UsersListResult as yv, ConversationTurnResultSchema as yw, ModelsProbeTargetResultSchema as yx, PrincipalRefV1Schema as yy, WizardStatusParams as z, ExpiredApprovalSnapshot as zA, ToolsGitHubStatusResultSchema as zC, BoardCommandSchema as zD, SessionSuggestionsResolveParams as zE, WorkerTranscriptCommitResultSchema as zM, BoardWidgetPluginKindSchema as zO, SkillsUploadBeginParamsSchema as zS, ProjectSummary as zT, TalkSessionCreateResultSchema as z_, SessionsCompanionAskParams as za, AgentsListParamsSchema as zb, SecretsReloadParamsSchema as zc, GatewaySuspendPrepareParamsSchema as zd, DevicePairSetupStatusResultSchema as zf, ChannelsPairingListResult as zg, ConfigPatchParamsSchema as zh, SessionFileContentEncoding as zi, WorkerGitHubPublishParams as zj, WorkerInferenceStartParams as zk, PushTestParamsSchema as zl, CronRunParamsSchema as zm, TasksGetResult as zn, SessionsGroupsPutParamsSchema as zo, EnvironmentsStatusResult as zp, SessionMemberSchema as zr, SessionDiscussionInfo as zs, PluginsSetEnabledParams as zt, NodePresenceAliveReason as zu, UsersSetDisplayNameParams as zv, SessionCatalogDescriptor as zw, SkillsDetailResultSchema as zx, ArtifactSummary as zy };