@openclaw/gateway-protocol 2026.9.2 → 2026.9.4

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,5 +1,5 @@
1
- import { _ as TickEvent, a as EventFrame, c as GatewayFrameSchema, d as RequestFrame, f as RequestFrameSchema, g as ShutdownEventSchema, h as ShutdownEvent, i as ErrorShapeSchema, l as HelloOk, m as ResponseFrameSchema, n as ConnectParamsSchema, o as EventFrameSchema, p as ResponseFrame, r as ErrorShape, s as GatewayFrame, t as ConnectParams, u as HelloOkSchema, v as TickEventSchema } from "./frames-8A7sw44F.mjs";
2
- import { C as readSkillProposalRevisionChangedError, S as readMissingScopeErrorDetails, _ as buildSkillProposalRevisionChangedErrorDetails, a as GatewayErrorDetails, b as readGitHubPublicationSelectionRejectedError, c as MissingScopeErrorDetails, d as ProjectCloneFailureCause, f as SetupAdmissionBusyErrorDetails, g as WizardNotFoundErrorDetails, h as UserPrefsLimitExceededErrorDetails, i as GatewayErrorDetailCodes, l as OutboundDeliveryQueuedErrorDetails, m as UnknownAgentIdErrorDetails, n as ErrorCode, o as GitHubPublicationSelectionRejectedErrorDetails, p as SkillProposalRevisionChangedErrorDetails, r as ErrorCodes, s as McpAppViewExpiredErrorDetails, t as CronJobNotFoundErrorDetails, u as ProjectCloneErrorDetails, v as isMcpAppViewExpiredError, x as readMissingScopeError, y as readCronJobNotFoundError } from "./gateway-error-details-qdj19LIh.mjs";
1
+ import { _ as TickEvent, a as EventFrame, c as GatewayFrameSchema, d as RequestFrame, f as RequestFrameSchema, g as ShutdownEventSchema, h as ShutdownEvent, i as ErrorShapeSchema, l as HelloOk, m as ResponseFrameSchema, n as ConnectParamsSchema, o as EventFrameSchema, p as ResponseFrame, r as ErrorShape, s as GatewayFrame, t as ConnectParams, u as HelloOkSchema, v as TickEventSchema } from "./frames-B3ABtpZk.mjs";
2
+ import { C as readMissingScopeErrorDetails, S as readMissingScopeError, _ as WizardNotFoundErrorDetails, a as GatewayErrorDetailCodes, b as readCronJobNotFoundError, c as McpAppViewExpiredErrorDetails, d as ProjectCloneErrorDetails, f as ProjectCloneFailureCause, g as UserPrefsLimitExceededErrorDetails, h as UnknownAgentIdErrorDetails, l as MissingScopeErrorDetails, m as SkillProposalRevisionChangedErrorDetails, n as ErrorCode, o as GatewayErrorDetails, p as SetupAdmissionBusyErrorDetails, r as ErrorCodes, s as GitHubPublicationSelectionRejectedErrorDetails, t as CronJobNotFoundErrorDetails, u as OutboundDeliveryQueuedErrorDetails, v as buildSkillProposalRevisionChangedErrorDetails, w as readSkillProposalRevisionChangedError, x as readGitHubPublicationSelectionRejectedError, y as isMcpAppViewExpiredError } from "./gateway-error-details-DVeCF9AS.mjs";
3
3
  import { Static, TSchema, Type } from "typebox";
4
4
  //#endregion
5
5
  //#region src/server-capabilities.d.ts
@@ -12,7 +12,10 @@ declare const GATEWAY_SERVER_CAPS: {
12
12
  readonly NODE_WORKER_BUNDLE_STATUS: "node-worker-bundle-status-v1";
13
13
  readonly NODE_WORKER_ENVIRONMENT_SESSION: "node-worker-environment-session-v1";
14
14
  readonly NODE_WORKER_PORTAL_STREAM: "node-worker-portal-stream-v1";
15
+ readonly PUBLISHED_MODEL_CATALOG: "published-model-catalog";
16
+ readonly PROGRESS_CARD_AGENT_SCOPE: "progress-card-agent-scope-v1";
15
17
  readonly SESSION_SCOPED_CHAT_METADATA: "session-scoped-chat-metadata";
18
+ readonly SESSION_SCOPED_MODEL_CATALOG: "session-scoped-model-catalog";
16
19
  readonly SESSION_UNREAD_ACK_CONTRACT: "session-unread-ack-contract";
17
20
  readonly SESSION_GOAL_START: "session-goal-start-v1";
18
21
  readonly SESSION_SETTINGS_CONTRACT: "session-settings-contract";
@@ -172,13 +175,17 @@ declare const PluginCatalogEntrySchema: Type.TObject<{
172
175
  id: Type.TString;
173
176
  name: Type.TString;
174
177
  packageName: Type.TOptional<Type.TString>;
178
+ /** Canonical ClawHub identity proven by install provenance or the official catalog. */
179
+ clawhubPackage: Type.TOptional<Type.TString>;
180
+ /** Opaque discovery identity for loading optional ClawHub presentation metadata. */
181
+ catalogId: Type.TOptional<Type.TString>;
175
182
  description: Type.TOptional<Type.TString>;
176
183
  version: Type.TOptional<Type.TString>;
177
184
  kind: Type.TOptional<Type.TArray<Type.TString>>;
178
185
  origin: Type.TOptional<Type.TString>;
179
186
  installed: Type.TBoolean;
180
187
  enabled: Type.TBoolean;
181
- state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
188
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
182
189
  featured: Type.TOptional<Type.TBoolean>;
183
190
  featuredAt: Type.TOptional<Type.TInteger>;
184
191
  order: Type.TOptional<Type.TNumber>;
@@ -192,7 +199,9 @@ declare const PluginCatalogEntrySchema: Type.TObject<{
192
199
  pluginId: Type.TString;
193
200
  }>]>>;
194
201
  error: Type.TOptional<Type.TString>;
195
- /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
202
+ /** Ordered package or registry categories; the first category is primary. */
203
+ categories: Type.TOptional<Type.TArray<Type.TString>>;
204
+ /** Compatibility projection of the primary category. */
196
205
  category: Type.TOptional<Type.TString>;
197
206
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
198
207
  removable: Type.TOptional<Type.TBoolean>;
@@ -205,13 +214,17 @@ declare const PluginsListResultSchema: Type.TObject<{
205
214
  id: Type.TString;
206
215
  name: Type.TString;
207
216
  packageName: Type.TOptional<Type.TString>;
217
+ /** Canonical ClawHub identity proven by install provenance or the official catalog. */
218
+ clawhubPackage: Type.TOptional<Type.TString>;
219
+ /** Opaque discovery identity for loading optional ClawHub presentation metadata. */
220
+ catalogId: Type.TOptional<Type.TString>;
208
221
  description: Type.TOptional<Type.TString>;
209
222
  version: Type.TOptional<Type.TString>;
210
223
  kind: Type.TOptional<Type.TArray<Type.TString>>;
211
224
  origin: Type.TOptional<Type.TString>;
212
225
  installed: Type.TBoolean;
213
226
  enabled: Type.TBoolean;
214
- state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
227
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
215
228
  featured: Type.TOptional<Type.TBoolean>;
216
229
  featuredAt: Type.TOptional<Type.TInteger>;
217
230
  order: Type.TOptional<Type.TNumber>;
@@ -225,7 +238,9 @@ declare const PluginsListResultSchema: Type.TObject<{
225
238
  pluginId: Type.TString;
226
239
  }>]>>;
227
240
  error: Type.TOptional<Type.TString>;
228
- /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
241
+ /** Ordered package or registry categories; the first category is primary. */
242
+ categories: Type.TOptional<Type.TArray<Type.TString>>;
243
+ /** Compatibility projection of the primary category. */
229
244
  category: Type.TOptional<Type.TString>;
230
245
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
231
246
  removable: Type.TOptional<Type.TBoolean>;
@@ -338,7 +353,345 @@ declare const CapabilityConsentErrorDetailsSchema: Type.TObject<{
338
353
  }>>;
339
354
  acceptedAt: Type.TOptional<Type.TString>;
340
355
  }>;
341
- /** Consent-relevant snapshot of one plugin for install/enable review. */
356
+ /** Request payload for searching installable ClawHub plugin families. */
357
+ declare const PluginsSearchParamsSchema: Type.TObject<{
358
+ query: Type.TString;
359
+ limit: Type.TOptional<Type.TInteger>;
360
+ }>;
361
+ /** ClawHub package fields exposed by plugin search. */
362
+ declare const PluginSearchPackageSchema: Type.TObject<{
363
+ name: Type.TString;
364
+ displayName: Type.TString;
365
+ family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
366
+ channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
367
+ isOfficial: Type.TBoolean;
368
+ summary: Type.TOptional<Type.TString>;
369
+ latestVersion: Type.TOptional<Type.TString>;
370
+ runtimeId: Type.TOptional<Type.TString>;
371
+ downloads: Type.TOptional<Type.TNumber>;
372
+ verificationTier: Type.TOptional<Type.TString>;
373
+ }>;
374
+ /** Ranked ClawHub plugin search hit. */
375
+ declare const PluginSearchResultEntrySchema: Type.TObject<{
376
+ score: Type.TNumber;
377
+ package: Type.TObject<{
378
+ name: Type.TString;
379
+ displayName: Type.TString;
380
+ family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
381
+ channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
382
+ isOfficial: Type.TBoolean;
383
+ summary: Type.TOptional<Type.TString>;
384
+ latestVersion: Type.TOptional<Type.TString>;
385
+ runtimeId: Type.TOptional<Type.TString>;
386
+ downloads: Type.TOptional<Type.TNumber>;
387
+ verificationTier: Type.TOptional<Type.TString>;
388
+ }>;
389
+ }>;
390
+ /** Ranked installable plugin packages matching the query. */
391
+ declare const PluginsSearchResultSchema: Type.TObject<{
392
+ results: Type.TArray<Type.TObject<{
393
+ score: Type.TNumber;
394
+ package: Type.TObject<{
395
+ name: Type.TString;
396
+ displayName: Type.TString;
397
+ family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
398
+ channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
399
+ isOfficial: Type.TBoolean;
400
+ summary: Type.TOptional<Type.TString>;
401
+ latestVersion: Type.TOptional<Type.TString>;
402
+ runtimeId: Type.TOptional<Type.TString>;
403
+ downloads: Type.TOptional<Type.TNumber>;
404
+ verificationTier: Type.TOptional<Type.TString>;
405
+ }>;
406
+ }>>;
407
+ }>;
408
+ declare const PluginDiscoveryCategorySchema: Type.TObject<{
409
+ slug: Type.TString;
410
+ label: Type.TString;
411
+ description: Type.TString;
412
+ icon: Type.TString;
413
+ order: Type.TInteger;
414
+ }>;
415
+ declare const PluginDiscoveryCatalogFactsSchema: Type.TObject<{
416
+ name: Type.TString;
417
+ packageName: Type.TOptional<Type.TString>;
418
+ summary: Type.TOptional<Type.TString>;
419
+ family: Type.TOptional<Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>>;
420
+ author: Type.TOptional<Type.TString>;
421
+ official: Type.TBoolean;
422
+ categories: Type.TArray<Type.TString>;
423
+ icon: Type.TOptional<Type.TString>;
424
+ imageUrl: Type.TOptional<Type.TString>;
425
+ latestVersion: Type.TOptional<Type.TString>;
426
+ downloads: Type.TOptional<Type.TNumber>;
427
+ installs: Type.TOptional<Type.TNumber>;
428
+ verificationTier: Type.TOptional<Type.TString>;
429
+ publishedToClawHub: Type.TOptional<Type.TBoolean>;
430
+ }>;
431
+ declare const PluginDiscoveryLocalFactsSchema: Type.TObject<{
432
+ present: Type.TBoolean;
433
+ installed: Type.TBoolean;
434
+ enabled: Type.TBoolean;
435
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
436
+ pluginId: Type.TOptional<Type.TString>;
437
+ install: Type.TOptional<Type.TUnion<[Type.TObject<{
438
+ source: Type.TLiteral<"clawhub">;
439
+ packageName: Type.TString;
440
+ }>, Type.TObject<{
441
+ source: Type.TLiteral<"official">;
442
+ pluginId: Type.TString;
443
+ }>]>>;
444
+ action: Type.TUnion<[Type.TLiteral<"install">, Type.TLiteral<"manage">, Type.TLiteral<"unavailable">]>;
445
+ }>;
446
+ declare const PluginDiscoveryEntrySchema: Type.TObject<{
447
+ id: Type.TString;
448
+ catalog: Type.TObject<{
449
+ name: Type.TString;
450
+ packageName: Type.TOptional<Type.TString>;
451
+ summary: Type.TOptional<Type.TString>;
452
+ family: Type.TOptional<Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>>;
453
+ author: Type.TOptional<Type.TString>;
454
+ official: Type.TBoolean;
455
+ categories: Type.TArray<Type.TString>;
456
+ icon: Type.TOptional<Type.TString>;
457
+ imageUrl: Type.TOptional<Type.TString>;
458
+ latestVersion: Type.TOptional<Type.TString>;
459
+ downloads: Type.TOptional<Type.TNumber>;
460
+ installs: Type.TOptional<Type.TNumber>;
461
+ verificationTier: Type.TOptional<Type.TString>;
462
+ publishedToClawHub: Type.TOptional<Type.TBoolean>;
463
+ }>;
464
+ local: Type.TObject<{
465
+ present: Type.TBoolean;
466
+ installed: Type.TBoolean;
467
+ enabled: Type.TBoolean;
468
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
469
+ pluginId: Type.TOptional<Type.TString>;
470
+ install: Type.TOptional<Type.TUnion<[Type.TObject<{
471
+ source: Type.TLiteral<"clawhub">;
472
+ packageName: Type.TString;
473
+ }>, Type.TObject<{
474
+ source: Type.TLiteral<"official">;
475
+ pluginId: Type.TString;
476
+ }>]>>;
477
+ action: Type.TUnion<[Type.TLiteral<"install">, Type.TLiteral<"manage">, Type.TLiteral<"unavailable">]>;
478
+ }>;
479
+ }>;
480
+ declare const PluginsCatalogBrowseParamsSchema: Type.TObject<{
481
+ query: Type.TOptional<Type.TString>;
482
+ intent: Type.TOptional<Type.TUnion<[Type.TLiteral<"all">, Type.TLiteral<"bundled">, Type.TLiteral<"trending">, Type.TLiteral<"official">, Type.TLiteral<"featured">]>>;
483
+ category: Type.TOptional<Type.TString>;
484
+ cursor: Type.TOptional<Type.TString>;
485
+ pageSize: Type.TOptional<Type.TInteger>;
486
+ }>;
487
+ declare const PluginsCatalogBrowseResultSchema: Type.TObject<{
488
+ items: Type.TArray<Type.TObject<{
489
+ id: Type.TString;
490
+ catalog: Type.TObject<{
491
+ name: Type.TString;
492
+ packageName: Type.TOptional<Type.TString>;
493
+ summary: Type.TOptional<Type.TString>;
494
+ family: Type.TOptional<Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>>;
495
+ author: Type.TOptional<Type.TString>;
496
+ official: Type.TBoolean;
497
+ categories: Type.TArray<Type.TString>;
498
+ icon: Type.TOptional<Type.TString>;
499
+ imageUrl: Type.TOptional<Type.TString>;
500
+ latestVersion: Type.TOptional<Type.TString>;
501
+ downloads: Type.TOptional<Type.TNumber>;
502
+ installs: Type.TOptional<Type.TNumber>;
503
+ verificationTier: Type.TOptional<Type.TString>;
504
+ publishedToClawHub: Type.TOptional<Type.TBoolean>;
505
+ }>;
506
+ local: Type.TObject<{
507
+ present: Type.TBoolean;
508
+ installed: Type.TBoolean;
509
+ enabled: Type.TBoolean;
510
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
511
+ pluginId: Type.TOptional<Type.TString>;
512
+ install: Type.TOptional<Type.TUnion<[Type.TObject<{
513
+ source: Type.TLiteral<"clawhub">;
514
+ packageName: Type.TString;
515
+ }>, Type.TObject<{
516
+ source: Type.TLiteral<"official">;
517
+ pluginId: Type.TString;
518
+ }>]>>;
519
+ action: Type.TUnion<[Type.TLiteral<"install">, Type.TLiteral<"manage">, Type.TLiteral<"unavailable">]>;
520
+ }>;
521
+ }>>;
522
+ nextCursor: Type.TOptional<Type.TString>;
523
+ remoteError: Type.TOptional<Type.TString>;
524
+ }>;
525
+ declare const PluginsCatalogCategoriesParamsSchema: Type.TObject<{}>;
526
+ declare const PluginsCatalogCategoriesResultSchema: Type.TObject<{
527
+ categories: Type.TArray<Type.TObject<{
528
+ slug: Type.TString;
529
+ label: Type.TString;
530
+ description: Type.TString;
531
+ icon: Type.TString;
532
+ order: Type.TInteger;
533
+ }>>;
534
+ }>;
535
+ declare const PluginsCatalogGetParamsSchema: Type.TObject<{
536
+ id: Type.TString;
537
+ version: Type.TOptional<Type.TString>;
538
+ }>;
539
+ declare const PluginDiscoveryDetailSchema: Type.TObject<{
540
+ origin: Type.TUnion<[Type.TLiteral<"clawhub">, Type.TLiteral<"local">]>;
541
+ packageName: Type.TOptional<Type.TString>;
542
+ author: Type.TOptional<Type.TObject<{
543
+ handle: Type.TOptional<Type.TString>;
544
+ displayName: Type.TOptional<Type.TString>;
545
+ imageUrl: Type.TOptional<Type.TString>;
546
+ }>>;
547
+ topics: Type.TArray<Type.TString>;
548
+ createdAt: Type.TOptional<Type.TInteger>;
549
+ updatedAt: Type.TOptional<Type.TInteger>;
550
+ readme: Type.TOptional<Type.TString>;
551
+ compatibility: Type.TOptional<Type.TObject<{
552
+ pluginApiRange: Type.TOptional<Type.TString>;
553
+ builtWithOpenClawVersion: Type.TOptional<Type.TString>;
554
+ pluginSdkVersion: Type.TOptional<Type.TString>;
555
+ minGatewayVersion: Type.TOptional<Type.TString>;
556
+ }>>;
557
+ configuration: Type.TArray<Type.TObject<{
558
+ name: Type.TString;
559
+ description: Type.TOptional<Type.TString>;
560
+ required: Type.TBoolean;
561
+ sensitive: Type.TBoolean;
562
+ }>>;
563
+ mcpServers: Type.TArray<Type.TString>;
564
+ skills: Type.TArray<Type.TObject<{
565
+ name: Type.TString;
566
+ description: Type.TOptional<Type.TString>;
567
+ }>>;
568
+ versions: Type.TArray<Type.TObject<{
569
+ version: Type.TString;
570
+ createdAt: Type.TInteger;
571
+ changelog: Type.TString;
572
+ tags: Type.TArray<Type.TString>;
573
+ }>>;
574
+ verification: Type.TOptional<Type.TObject<{
575
+ tier: Type.TString;
576
+ summary: Type.TOptional<Type.TString>;
577
+ sourceRepo: Type.TOptional<Type.TString>;
578
+ sourceCommit: Type.TOptional<Type.TString>;
579
+ sourcePath: Type.TOptional<Type.TString>;
580
+ scanStatus: Type.TOptional<Type.TString>;
581
+ }>>;
582
+ security: Type.TOptional<Type.TObject<{
583
+ status: Type.TString;
584
+ auditUrl: Type.TOptional<Type.TString>;
585
+ verdict: Type.TOptional<Type.TString>;
586
+ summary: Type.TOptional<Type.TString>;
587
+ guidance: Type.TOptional<Type.TString>;
588
+ checkedAt: Type.TOptional<Type.TInteger>;
589
+ }>>;
590
+ }>;
591
+ declare const PluginsCatalogGetResultSchema: Type.TObject<{
592
+ plugin: Type.TObject<{
593
+ id: Type.TString;
594
+ catalog: Type.TObject<{
595
+ name: Type.TString;
596
+ packageName: Type.TOptional<Type.TString>;
597
+ summary: Type.TOptional<Type.TString>;
598
+ family: Type.TOptional<Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>>;
599
+ author: Type.TOptional<Type.TString>;
600
+ official: Type.TBoolean;
601
+ categories: Type.TArray<Type.TString>;
602
+ icon: Type.TOptional<Type.TString>;
603
+ imageUrl: Type.TOptional<Type.TString>;
604
+ latestVersion: Type.TOptional<Type.TString>;
605
+ downloads: Type.TOptional<Type.TNumber>;
606
+ installs: Type.TOptional<Type.TNumber>;
607
+ verificationTier: Type.TOptional<Type.TString>;
608
+ publishedToClawHub: Type.TOptional<Type.TBoolean>;
609
+ }>;
610
+ local: Type.TObject<{
611
+ present: Type.TBoolean;
612
+ installed: Type.TBoolean;
613
+ enabled: Type.TBoolean;
614
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
615
+ pluginId: Type.TOptional<Type.TString>;
616
+ install: Type.TOptional<Type.TUnion<[Type.TObject<{
617
+ source: Type.TLiteral<"clawhub">;
618
+ packageName: Type.TString;
619
+ }>, Type.TObject<{
620
+ source: Type.TLiteral<"official">;
621
+ pluginId: Type.TString;
622
+ }>]>>;
623
+ action: Type.TUnion<[Type.TLiteral<"install">, Type.TLiteral<"manage">, Type.TLiteral<"unavailable">]>;
624
+ }>;
625
+ }>;
626
+ detail: Type.TObject<{
627
+ origin: Type.TUnion<[Type.TLiteral<"clawhub">, Type.TLiteral<"local">]>;
628
+ packageName: Type.TOptional<Type.TString>;
629
+ author: Type.TOptional<Type.TObject<{
630
+ handle: Type.TOptional<Type.TString>;
631
+ displayName: Type.TOptional<Type.TString>;
632
+ imageUrl: Type.TOptional<Type.TString>;
633
+ }>>;
634
+ topics: Type.TArray<Type.TString>;
635
+ createdAt: Type.TOptional<Type.TInteger>;
636
+ updatedAt: Type.TOptional<Type.TInteger>;
637
+ readme: Type.TOptional<Type.TString>;
638
+ compatibility: Type.TOptional<Type.TObject<{
639
+ pluginApiRange: Type.TOptional<Type.TString>;
640
+ builtWithOpenClawVersion: Type.TOptional<Type.TString>;
641
+ pluginSdkVersion: Type.TOptional<Type.TString>;
642
+ minGatewayVersion: Type.TOptional<Type.TString>;
643
+ }>>;
644
+ configuration: Type.TArray<Type.TObject<{
645
+ name: Type.TString;
646
+ description: Type.TOptional<Type.TString>;
647
+ required: Type.TBoolean;
648
+ sensitive: Type.TBoolean;
649
+ }>>;
650
+ mcpServers: Type.TArray<Type.TString>;
651
+ skills: Type.TArray<Type.TObject<{
652
+ name: Type.TString;
653
+ description: Type.TOptional<Type.TString>;
654
+ }>>;
655
+ versions: Type.TArray<Type.TObject<{
656
+ version: Type.TString;
657
+ createdAt: Type.TInteger;
658
+ changelog: Type.TString;
659
+ tags: Type.TArray<Type.TString>;
660
+ }>>;
661
+ verification: Type.TOptional<Type.TObject<{
662
+ tier: Type.TString;
663
+ summary: Type.TOptional<Type.TString>;
664
+ sourceRepo: Type.TOptional<Type.TString>;
665
+ sourceCommit: Type.TOptional<Type.TString>;
666
+ sourcePath: Type.TOptional<Type.TString>;
667
+ scanStatus: Type.TOptional<Type.TString>;
668
+ }>>;
669
+ security: Type.TOptional<Type.TObject<{
670
+ status: Type.TString;
671
+ auditUrl: Type.TOptional<Type.TString>;
672
+ verdict: Type.TOptional<Type.TString>;
673
+ summary: Type.TOptional<Type.TString>;
674
+ guidance: Type.TOptional<Type.TString>;
675
+ checkedAt: Type.TOptional<Type.TInteger>;
676
+ }>>;
677
+ }>;
678
+ }>;
679
+ /** Runtime-supported installed component lists plus detected-but-unavailable bundle facts. */
680
+ declare const PluginInstalledComponentsSchema: Type.TObject<{
681
+ /** Runtime-supported capability families; item arrays may be empty when names are unavailable. */
682
+ mapped: Type.TArray<Type.TString>;
683
+ skills: Type.TArray<Type.TString>;
684
+ mcpServers: Type.TArray<Type.TString>;
685
+ commands: Type.TArray<Type.TString>;
686
+ hooks: Type.TArray<Type.TString>;
687
+ lspServers: Type.TArray<Type.TString>;
688
+ unavailable: Type.TObject<{
689
+ capabilities: Type.TArray<Type.TString>;
690
+ mcpServers: Type.TArray<Type.TString>;
691
+ lspServers: Type.TArray<Type.TString>;
692
+ }>;
693
+ }>;
694
+ /** Consent snapshot plus the installed-version presentation projection used by Control UI. */
342
695
  declare const PluginsInspectResultSchema: Type.TObject<{
343
696
  ok: Type.TLiteral<true>;
344
697
  plugin: Type.TObject<{
@@ -373,6 +726,20 @@ declare const PluginsInspectResultSchema: Type.TObject<{
373
726
  /** Dot paths from configContracts.dangerousFlags. */
374
727
  dangerousConfigFlags: Type.TArray<Type.TString>;
375
728
  }>;
729
+ components: Type.TObject<{
730
+ /** Runtime-supported capability families; item arrays may be empty when names are unavailable. */
731
+ mapped: Type.TArray<Type.TString>;
732
+ skills: Type.TArray<Type.TString>;
733
+ mcpServers: Type.TArray<Type.TString>;
734
+ commands: Type.TArray<Type.TString>;
735
+ hooks: Type.TArray<Type.TString>;
736
+ lspServers: Type.TArray<Type.TString>;
737
+ unavailable: Type.TObject<{
738
+ capabilities: Type.TArray<Type.TString>;
739
+ mcpServers: Type.TArray<Type.TString>;
740
+ lspServers: Type.TArray<Type.TString>;
741
+ }>;
742
+ }>;
376
743
  reviewToken: Type.TString;
377
744
  grants: Type.TObject<{
378
745
  hooks: Type.TObject<{
@@ -409,56 +776,93 @@ declare const PluginsInspectResultSchema: Type.TObject<{
409
776
  pending: Type.TOptional<Type.TBoolean>;
410
777
  stale: Type.TOptional<Type.TBoolean>;
411
778
  }>>;
412
- }>;
413
- /** Request payload for searching installable ClawHub plugin families. */
414
- declare const PluginsSearchParamsSchema: Type.TObject<{
415
- query: Type.TString;
416
- limit: Type.TOptional<Type.TInteger>;
417
- }>;
418
- /** ClawHub package fields exposed by plugin search. */
419
- declare const PluginSearchPackageSchema: Type.TObject<{
420
- name: Type.TString;
421
- displayName: Type.TString;
422
- family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
423
- channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
424
- isOfficial: Type.TBoolean;
425
- summary: Type.TOptional<Type.TString>;
426
- latestVersion: Type.TOptional<Type.TString>;
427
- runtimeId: Type.TOptional<Type.TString>;
428
- downloads: Type.TOptional<Type.TNumber>;
429
- verificationTier: Type.TOptional<Type.TString>;
430
- }>;
431
- /** Ranked ClawHub plugin search hit. */
432
- declare const PluginSearchResultEntrySchema: Type.TObject<{
433
- score: Type.TNumber;
434
- package: Type.TObject<{
435
- name: Type.TString;
436
- displayName: Type.TString;
437
- family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
438
- channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
439
- isOfficial: Type.TBoolean;
440
- summary: Type.TOptional<Type.TString>;
441
- latestVersion: Type.TOptional<Type.TString>;
442
- runtimeId: Type.TOptional<Type.TString>;
443
- downloads: Type.TOptional<Type.TNumber>;
444
- verificationTier: Type.TOptional<Type.TString>;
445
- }>;
446
- }>;
447
- /** Ranked installable plugin packages matching the query. */
448
- declare const PluginsSearchResultSchema: Type.TObject<{
449
- results: Type.TArray<Type.TObject<{
450
- score: Type.TNumber;
451
- package: Type.TObject<{
452
- name: Type.TString;
453
- displayName: Type.TString;
454
- family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
455
- channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
456
- isOfficial: Type.TBoolean;
457
- summary: Type.TOptional<Type.TString>;
458
- latestVersion: Type.TOptional<Type.TString>;
459
- runtimeId: Type.TOptional<Type.TString>;
460
- downloads: Type.TOptional<Type.TNumber>;
461
- verificationTier: Type.TOptional<Type.TString>;
779
+ /** Exact installed-version ClawHub metadata when a canonical package match exists. */
780
+ catalog: Type.TOptional<Type.TObject<{
781
+ plugin: Type.TObject<{
782
+ id: Type.TString;
783
+ catalog: Type.TObject<{
784
+ name: Type.TString;
785
+ packageName: Type.TOptional<Type.TString>;
786
+ summary: Type.TOptional<Type.TString>;
787
+ family: Type.TOptional<Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>>;
788
+ author: Type.TOptional<Type.TString>;
789
+ official: Type.TBoolean;
790
+ categories: Type.TArray<Type.TString>;
791
+ icon: Type.TOptional<Type.TString>;
792
+ imageUrl: Type.TOptional<Type.TString>;
793
+ latestVersion: Type.TOptional<Type.TString>;
794
+ downloads: Type.TOptional<Type.TNumber>;
795
+ installs: Type.TOptional<Type.TNumber>;
796
+ verificationTier: Type.TOptional<Type.TString>;
797
+ publishedToClawHub: Type.TOptional<Type.TBoolean>;
798
+ }>;
799
+ local: Type.TObject<{
800
+ present: Type.TBoolean;
801
+ installed: Type.TBoolean;
802
+ enabled: Type.TBoolean;
803
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
804
+ pluginId: Type.TOptional<Type.TString>;
805
+ install: Type.TOptional<Type.TUnion<[Type.TObject<{
806
+ source: Type.TLiteral<"clawhub">;
807
+ packageName: Type.TString;
808
+ }>, Type.TObject<{
809
+ source: Type.TLiteral<"official">;
810
+ pluginId: Type.TString;
811
+ }>]>>;
812
+ action: Type.TUnion<[Type.TLiteral<"install">, Type.TLiteral<"manage">, Type.TLiteral<"unavailable">]>;
813
+ }>;
814
+ }>;
815
+ detail: Type.TObject<{
816
+ origin: Type.TUnion<[Type.TLiteral<"clawhub">, Type.TLiteral<"local">]>;
817
+ packageName: Type.TOptional<Type.TString>;
818
+ author: Type.TOptional<Type.TObject<{
819
+ handle: Type.TOptional<Type.TString>;
820
+ displayName: Type.TOptional<Type.TString>;
821
+ imageUrl: Type.TOptional<Type.TString>;
822
+ }>>;
823
+ topics: Type.TArray<Type.TString>;
824
+ createdAt: Type.TOptional<Type.TInteger>;
825
+ updatedAt: Type.TOptional<Type.TInteger>;
826
+ readme: Type.TOptional<Type.TString>;
827
+ compatibility: Type.TOptional<Type.TObject<{
828
+ pluginApiRange: Type.TOptional<Type.TString>;
829
+ builtWithOpenClawVersion: Type.TOptional<Type.TString>;
830
+ pluginSdkVersion: Type.TOptional<Type.TString>;
831
+ minGatewayVersion: Type.TOptional<Type.TString>;
832
+ }>>;
833
+ configuration: Type.TArray<Type.TObject<{
834
+ name: Type.TString;
835
+ description: Type.TOptional<Type.TString>;
836
+ required: Type.TBoolean;
837
+ sensitive: Type.TBoolean;
838
+ }>>;
839
+ mcpServers: Type.TArray<Type.TString>;
840
+ skills: Type.TArray<Type.TObject<{
841
+ name: Type.TString;
842
+ description: Type.TOptional<Type.TString>;
843
+ }>>;
844
+ versions: Type.TArray<Type.TObject<{
845
+ version: Type.TString;
846
+ createdAt: Type.TInteger;
847
+ changelog: Type.TString;
848
+ tags: Type.TArray<Type.TString>;
849
+ }>>;
850
+ verification: Type.TOptional<Type.TObject<{
851
+ tier: Type.TString;
852
+ summary: Type.TOptional<Type.TString>;
853
+ sourceRepo: Type.TOptional<Type.TString>;
854
+ sourceCommit: Type.TOptional<Type.TString>;
855
+ sourcePath: Type.TOptional<Type.TString>;
856
+ scanStatus: Type.TOptional<Type.TString>;
857
+ }>>;
858
+ security: Type.TOptional<Type.TObject<{
859
+ status: Type.TString;
860
+ auditUrl: Type.TOptional<Type.TString>;
861
+ verdict: Type.TOptional<Type.TString>;
862
+ summary: Type.TOptional<Type.TString>;
863
+ guidance: Type.TOptional<Type.TString>;
864
+ checkedAt: Type.TOptional<Type.TInteger>;
865
+ }>>;
462
866
  }>;
463
867
  }>>;
464
868
  }>;
@@ -486,13 +890,17 @@ declare const PluginsInstallResultSchema: Type.TObject<{
486
890
  id: Type.TString;
487
891
  name: Type.TString;
488
892
  packageName: Type.TOptional<Type.TString>;
893
+ /** Canonical ClawHub identity proven by install provenance or the official catalog. */
894
+ clawhubPackage: Type.TOptional<Type.TString>;
895
+ /** Opaque discovery identity for loading optional ClawHub presentation metadata. */
896
+ catalogId: Type.TOptional<Type.TString>;
489
897
  description: Type.TOptional<Type.TString>;
490
898
  version: Type.TOptional<Type.TString>;
491
899
  kind: Type.TOptional<Type.TArray<Type.TString>>;
492
900
  origin: Type.TOptional<Type.TString>;
493
901
  installed: Type.TBoolean;
494
902
  enabled: Type.TBoolean;
495
- state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
903
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
496
904
  featured: Type.TOptional<Type.TBoolean>;
497
905
  featuredAt: Type.TOptional<Type.TInteger>;
498
906
  order: Type.TOptional<Type.TNumber>;
@@ -506,7 +914,9 @@ declare const PluginsInstallResultSchema: Type.TObject<{
506
914
  pluginId: Type.TString;
507
915
  }>]>>;
508
916
  error: Type.TOptional<Type.TString>;
509
- /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
917
+ /** Ordered package or registry categories; the first category is primary. */
918
+ categories: Type.TOptional<Type.TArray<Type.TString>>;
919
+ /** Compatibility projection of the primary category. */
510
920
  category: Type.TOptional<Type.TString>;
511
921
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
512
922
  removable: Type.TOptional<Type.TBoolean>;
@@ -547,13 +957,17 @@ declare const PluginsSetEnabledResultSchema: Type.TObject<{
547
957
  id: Type.TString;
548
958
  name: Type.TString;
549
959
  packageName: Type.TOptional<Type.TString>;
960
+ /** Canonical ClawHub identity proven by install provenance or the official catalog. */
961
+ clawhubPackage: Type.TOptional<Type.TString>;
962
+ /** Opaque discovery identity for loading optional ClawHub presentation metadata. */
963
+ catalogId: Type.TOptional<Type.TString>;
550
964
  description: Type.TOptional<Type.TString>;
551
965
  version: Type.TOptional<Type.TString>;
552
966
  kind: Type.TOptional<Type.TArray<Type.TString>>;
553
967
  origin: Type.TOptional<Type.TString>;
554
968
  installed: Type.TBoolean;
555
969
  enabled: Type.TBoolean;
556
- state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
970
+ state: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"needs-setup">, Type.TLiteral<"not-installed">, Type.TLiteral<"error">]>;
557
971
  featured: Type.TOptional<Type.TBoolean>;
558
972
  featuredAt: Type.TOptional<Type.TInteger>;
559
973
  order: Type.TOptional<Type.TNumber>;
@@ -567,7 +981,9 @@ declare const PluginsSetEnabledResultSchema: Type.TObject<{
567
981
  pluginId: Type.TString;
568
982
  }>]>>;
569
983
  error: Type.TOptional<Type.TString>;
570
- /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */
984
+ /** Ordered package or registry categories; the first category is primary. */
985
+ categories: Type.TOptional<Type.TArray<Type.TString>>;
986
+ /** Compatibility projection of the primary category. */
571
987
  category: Type.TOptional<Type.TString>;
572
988
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
573
989
  removable: Type.TOptional<Type.TBoolean>;
@@ -583,10 +999,22 @@ type PluginsInspectResult = Static<typeof PluginsInspectResultSchema>;
583
999
  type PluginHookGrant = Static<typeof PluginHookGrantSchema>;
584
1000
  type PluginInspectSource = Static<typeof PluginInspectSourceSchema>;
585
1001
  type PluginDeclaredSurface = Static<typeof PluginDeclaredSurfaceSchema>;
1002
+ type PluginInstalledComponents = Static<typeof PluginInstalledComponentsSchema>;
586
1003
  type PluginOperatorGrants = Static<typeof PluginOperatorGrantsSchema>;
587
1004
  type PluginInstallTrust = Static<typeof PluginInstallTrustSchema>;
588
1005
  type PluginsSearchParams = Static<typeof PluginsSearchParamsSchema>;
589
1006
  type PluginsSearchResult = Static<typeof PluginsSearchResultSchema>;
1007
+ type PluginDiscoveryCategory = Static<typeof PluginDiscoveryCategorySchema>;
1008
+ type PluginDiscoveryCatalogFacts = Static<typeof PluginDiscoveryCatalogFactsSchema>;
1009
+ type PluginDiscoveryLocalFacts = Static<typeof PluginDiscoveryLocalFactsSchema>;
1010
+ type PluginDiscoveryEntry = Static<typeof PluginDiscoveryEntrySchema>;
1011
+ type PluginDiscoveryDetail = Static<typeof PluginDiscoveryDetailSchema>;
1012
+ type PluginsCatalogBrowseParams = Static<typeof PluginsCatalogBrowseParamsSchema>;
1013
+ type PluginsCatalogBrowseResult = Static<typeof PluginsCatalogBrowseResultSchema>;
1014
+ type PluginsCatalogCategoriesParams = Static<typeof PluginsCatalogCategoriesParamsSchema>;
1015
+ type PluginsCatalogCategoriesResult = Static<typeof PluginsCatalogCategoriesResultSchema>;
1016
+ type PluginsCatalogGetParams = Static<typeof PluginsCatalogGetParamsSchema>;
1017
+ type PluginsCatalogGetResult = Static<typeof PluginsCatalogGetResultSchema>;
590
1018
  type PluginsInstallParams = Static<typeof PluginsInstallParamsSchema>;
591
1019
  type PluginsInstallResult = Static<typeof PluginsInstallResultSchema>;
592
1020
  type PluginsRefreshParams = Static<typeof PluginsRefreshParamsSchema>;
@@ -6487,6 +6915,7 @@ declare const ProgressCardSchema: Type.TObject<{
6487
6915
  type ProgressCard = Static<typeof ProgressCardSchema>;
6488
6916
  declare const ProgressCardGetParamsSchema: Type.TObject<{
6489
6917
  sessionKey: Type.TString;
6918
+ agentId: Type.TOptional<Type.TString>;
6490
6919
  }>;
6491
6920
  type ProgressCardGetParams = Static<typeof ProgressCardGetParamsSchema>;
6492
6921
  declare const ProgressCardGetResultSchema: Type.TObject<{
@@ -6504,6 +6933,7 @@ declare const ProgressCardGetResultSchema: Type.TObject<{
6504
6933
  type ProgressCardGetResult = Static<typeof ProgressCardGetResultSchema>;
6505
6934
  declare const ProgressCardPutParamsSchema: Type.TObject<{
6506
6935
  sessionKey: Type.TString;
6936
+ agentId: Type.TOptional<Type.TString>;
6507
6937
  markdown: Type.TOptional<Type.TString>;
6508
6938
  plan: Type.TOptional<Type.TArray<Type.TObject<{
6509
6939
  step: Type.TString;
@@ -6531,10 +6961,284 @@ declare const ProgressCardChangedEventSchema: Type.TObject<{
6531
6961
  }>;
6532
6962
  type ProgressCardChangedEvent = Static<typeof ProgressCardChangedEventSchema>;
6533
6963
  //#endregion
6964
+ //#region src/schema/transcripts.d.ts
6965
+ declare const TRANSCRIPTS_PAGE_DEFAULT = 50;
6966
+ declare const TRANSCRIPTS_PAGE_MAX = 100;
6967
+ declare const TRANSCRIPTS_LIST_MAX = 200;
6968
+ declare const TRANSCRIPTS_RESULT_MAX_BYTES: number;
6969
+ declare const TRANSCRIPTS_EXPORT_MAX_BYTES: number;
6970
+ declare const TRANSCRIPTS_LEGACY_MAX_UTTERANCES = 2000;
6971
+ declare const TRANSCRIPTS_LEGACY_MAX_TEXT_LENGTH = 4000;
6972
+ declare const TRANSCRIPTS_LEGACY_RESULT_MAX_BYTES: number;
6973
+ declare const TranscriptSessionSummarySchema: Type.TObject<{
6974
+ selector: Type.TString;
6975
+ sessionId: Type.TString;
6976
+ title: Type.TOptional<Type.TString>;
6977
+ providerId: Type.TString;
6978
+ providerName: Type.TOptional<Type.TString>;
6979
+ source: Type.TObject<{
6980
+ providerId: Type.TString;
6981
+ kind: Type.TOptional<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>;
6982
+ accountId: Type.TOptional<Type.TString>;
6983
+ guildId: Type.TOptional<Type.TString>;
6984
+ channelId: Type.TOptional<Type.TString>;
6985
+ meetingUrl: Type.TOptional<Type.TString>;
6986
+ threadTs: Type.TOptional<Type.TString>;
6987
+ fileId: Type.TOptional<Type.TString>;
6988
+ }>;
6989
+ startedAt: Type.TString;
6990
+ stoppedAt: Type.TOptional<Type.TString>;
6991
+ active: Type.TBoolean;
6992
+ utteranceCount: Type.TInteger;
6993
+ participants: Type.TArray<Type.TString>;
6994
+ hasSummary: Type.TBoolean;
6995
+ summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
6996
+ overview: Type.TOptional<Type.TString>;
6997
+ agentId: Type.TUnion<[Type.TString, Type.TNull]>;
6998
+ updatedAt: Type.TString;
6999
+ lastUtteranceAt: Type.TUnion<[Type.TString, Type.TNull]>;
7000
+ activeSubscription: Type.TBoolean;
7001
+ }>;
7002
+ declare const TranscriptUtteranceSchema: Type.TObject<{
7003
+ sequence: Type.TInteger;
7004
+ id: Type.TOptional<Type.TString>;
7005
+ startedAt: Type.TOptional<Type.TString>;
7006
+ endedAt: Type.TOptional<Type.TString>;
7007
+ speakerId: Type.TOptional<Type.TString>;
7008
+ speakerLabel: Type.TOptional<Type.TString>;
7009
+ text: Type.TString;
7010
+ final: Type.TOptional<Type.TBoolean>;
7011
+ }>;
7012
+ declare const TranscriptsListParamsSchema: Type.TObject<{
7013
+ limit: Type.TOptional<Type.TInteger>;
7014
+ providerId: Type.TOptional<Type.TString>;
7015
+ accountId: Type.TOptional<Type.TString>;
7016
+ agentId: Type.TOptional<Type.TString>;
7017
+ startedAfter: Type.TOptional<Type.TString>;
7018
+ startedBefore: Type.TOptional<Type.TString>;
7019
+ cursor: Type.TOptional<Type.TString>;
7020
+ query: Type.TOptional<Type.TString>;
7021
+ }>;
7022
+ declare const TranscriptsListResultSchema: Type.TObject<{
7023
+ sessions: Type.TArray<Type.TObject<{
7024
+ selector: Type.TString;
7025
+ sessionId: Type.TString;
7026
+ title: Type.TOptional<Type.TString>;
7027
+ providerId: Type.TString;
7028
+ providerName: Type.TOptional<Type.TString>;
7029
+ source: Type.TObject<{
7030
+ providerId: Type.TString;
7031
+ kind: Type.TOptional<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>;
7032
+ accountId: Type.TOptional<Type.TString>;
7033
+ guildId: Type.TOptional<Type.TString>;
7034
+ channelId: Type.TOptional<Type.TString>;
7035
+ meetingUrl: Type.TOptional<Type.TString>;
7036
+ threadTs: Type.TOptional<Type.TString>;
7037
+ fileId: Type.TOptional<Type.TString>;
7038
+ }>;
7039
+ startedAt: Type.TString;
7040
+ stoppedAt: Type.TOptional<Type.TString>;
7041
+ active: Type.TBoolean;
7042
+ utteranceCount: Type.TInteger;
7043
+ participants: Type.TArray<Type.TString>;
7044
+ hasSummary: Type.TBoolean;
7045
+ summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
7046
+ overview: Type.TOptional<Type.TString>;
7047
+ agentId: Type.TUnion<[Type.TString, Type.TNull]>;
7048
+ updatedAt: Type.TString;
7049
+ lastUtteranceAt: Type.TUnion<[Type.TString, Type.TNull]>;
7050
+ activeSubscription: Type.TBoolean;
7051
+ }>>;
7052
+ nextCursor: Type.TUnion<[Type.TString, Type.TNull]>;
7053
+ }>;
7054
+ declare const TranscriptsGetParamsSchema: Type.TObject<{
7055
+ limit: Type.TOptional<Type.TInteger>;
7056
+ cursor: Type.TOptional<Type.TString>;
7057
+ query: Type.TOptional<Type.TString>;
7058
+ selector: Type.TString;
7059
+ includeUtterances: Type.TOptional<Type.TBoolean>;
7060
+ }>;
7061
+ declare const TranscriptsGetResultSchema: Type.TObject<{
7062
+ session: Type.TObject<{
7063
+ selector: Type.TString;
7064
+ sessionId: Type.TString;
7065
+ title: Type.TOptional<Type.TString>;
7066
+ providerId: Type.TString;
7067
+ providerName: Type.TOptional<Type.TString>;
7068
+ source: Type.TObject<{
7069
+ providerId: Type.TString;
7070
+ kind: Type.TOptional<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>;
7071
+ accountId: Type.TOptional<Type.TString>;
7072
+ guildId: Type.TOptional<Type.TString>;
7073
+ channelId: Type.TOptional<Type.TString>;
7074
+ meetingUrl: Type.TOptional<Type.TString>;
7075
+ threadTs: Type.TOptional<Type.TString>;
7076
+ fileId: Type.TOptional<Type.TString>;
7077
+ }>;
7078
+ startedAt: Type.TString;
7079
+ stoppedAt: Type.TOptional<Type.TString>;
7080
+ active: Type.TBoolean;
7081
+ utteranceCount: Type.TInteger;
7082
+ participants: Type.TArray<Type.TString>;
7083
+ hasSummary: Type.TBoolean;
7084
+ summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
7085
+ overview: Type.TOptional<Type.TString>;
7086
+ agentId: Type.TUnion<[Type.TString, Type.TNull]>;
7087
+ updatedAt: Type.TString;
7088
+ lastUtteranceAt: Type.TUnion<[Type.TString, Type.TNull]>;
7089
+ activeSubscription: Type.TBoolean;
7090
+ }>;
7091
+ summary: Type.TOptional<Type.TObject<{
7092
+ generatedAt: Type.TString;
7093
+ overview: Type.TString;
7094
+ decisions: Type.TArray<Type.TString>;
7095
+ actionItems: Type.TArray<Type.TString>;
7096
+ risks: Type.TArray<Type.TString>;
7097
+ participants: Type.TArray<Type.TString>;
7098
+ source: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
7099
+ model: Type.TOptional<Type.TString>;
7100
+ markdown: Type.TString;
7101
+ utteranceCount: Type.TInteger;
7102
+ }>>;
7103
+ utterances: Type.TOptional<Type.TArray<Type.TObject<{
7104
+ sequence: Type.TInteger;
7105
+ id: Type.TOptional<Type.TString>;
7106
+ startedAt: Type.TOptional<Type.TString>;
7107
+ endedAt: Type.TOptional<Type.TString>;
7108
+ speakerId: Type.TOptional<Type.TString>;
7109
+ speakerLabel: Type.TOptional<Type.TString>;
7110
+ text: Type.TString;
7111
+ final: Type.TOptional<Type.TBoolean>;
7112
+ }>>>;
7113
+ nextCursor: Type.TUnion<[Type.TString, Type.TNull]>;
7114
+ }>;
7115
+ declare const TranscriptsExportParamsSchema: Type.TObject<{
7116
+ selector: Type.TString;
7117
+ format: Type.TUnion<[Type.TLiteral<"markdown">, Type.TLiteral<"jsonl">]>;
7118
+ }>;
7119
+ declare const TranscriptsExportResultSchema: Type.TObject<{
7120
+ selector: Type.TString;
7121
+ filename: Type.TString;
7122
+ mimeType: Type.TString;
7123
+ encoding: Type.TLiteral<"base64">;
7124
+ data: Type.TString;
7125
+ sizeBytes: Type.TInteger;
7126
+ }>;
7127
+ declare const TranscriptsStatusParamsSchema: Type.TObject<{}>;
7128
+ declare const TranscriptsStatusResultSchema: Type.TObject<{
7129
+ enabled: Type.TBoolean;
7130
+ providers: Type.TArray<Type.TObject<{
7131
+ providerId: Type.TString;
7132
+ pluginId: Type.TOptional<Type.TString>;
7133
+ name: Type.TString;
7134
+ availability: Type.TUnion<[Type.TLiteral<"enabled">, Type.TLiteral<"disabled">, Type.TLiteral<"unavailable">, Type.TLiteral<"unknown">]>;
7135
+ sourceKinds: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>>;
7136
+ canStart: Type.TOptional<Type.TBoolean>;
7137
+ canStop: Type.TOptional<Type.TBoolean>;
7138
+ canImport: Type.TOptional<Type.TBoolean>;
7139
+ autoStart: Type.TOptional<Type.TObject<{
7140
+ accountId: Type.TOptional<Type.TUnion<[Type.TLiteral<"optional">, Type.TLiteral<"required">]>>;
7141
+ guildId: Type.TOptional<Type.TUnion<[Type.TLiteral<"optional">, Type.TLiteral<"required">]>>;
7142
+ channelId: Type.TOptional<Type.TUnion<[Type.TLiteral<"optional">, Type.TLiteral<"required">]>>;
7143
+ meetingUrl: Type.TOptional<Type.TUnion<[Type.TLiteral<"optional">, Type.TLiteral<"required">]>>;
7144
+ }>>;
7145
+ }>>;
7146
+ configuredSources: Type.TArray<Type.TObject<{
7147
+ source: Type.TObject<{
7148
+ providerId: Type.TString;
7149
+ kind: Type.TOptional<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>;
7150
+ accountId: Type.TOptional<Type.TString>;
7151
+ guildId: Type.TOptional<Type.TString>;
7152
+ channelId: Type.TOptional<Type.TString>;
7153
+ meetingUrl: Type.TOptional<Type.TString>;
7154
+ threadTs: Type.TOptional<Type.TString>;
7155
+ fileId: Type.TOptional<Type.TString>;
7156
+ }>;
7157
+ title: Type.TOptional<Type.TString>;
7158
+ sessionId: Type.TOptional<Type.TString>;
7159
+ state: Type.TUnion<[Type.TLiteral<"disabled">, Type.TLiteral<"armed">, Type.TLiteral<"not-active">, Type.TLiteral<"unknown">]>;
7160
+ activeSelectors: Type.TArray<Type.TString>;
7161
+ startDiagnostic: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"retrying">, Type.TLiteral<"id-conflict">, Type.TLiteral<"admitted-start-failed">, Type.TLiteral<"start-failed">, Type.TLiteral<"ended">]>>;
7162
+ }>>;
7163
+ active: Type.TArray<Type.TObject<{
7164
+ selector: Type.TString;
7165
+ sessionId: Type.TString;
7166
+ title: Type.TOptional<Type.TString>;
7167
+ providerId: Type.TString;
7168
+ providerName: Type.TOptional<Type.TString>;
7169
+ source: Type.TObject<{
7170
+ providerId: Type.TString;
7171
+ kind: Type.TOptional<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>;
7172
+ accountId: Type.TOptional<Type.TString>;
7173
+ guildId: Type.TOptional<Type.TString>;
7174
+ channelId: Type.TOptional<Type.TString>;
7175
+ meetingUrl: Type.TOptional<Type.TString>;
7176
+ threadTs: Type.TOptional<Type.TString>;
7177
+ fileId: Type.TOptional<Type.TString>;
7178
+ }>;
7179
+ startedAt: Type.TString;
7180
+ stoppedAt: Type.TOptional<Type.TString>;
7181
+ active: Type.TBoolean;
7182
+ utteranceCount: Type.TInteger;
7183
+ participants: Type.TArray<Type.TString>;
7184
+ hasSummary: Type.TBoolean;
7185
+ summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
7186
+ overview: Type.TOptional<Type.TString>;
7187
+ agentId: Type.TUnion<[Type.TString, Type.TNull]>;
7188
+ updatedAt: Type.TString;
7189
+ lastUtteranceAt: Type.TUnion<[Type.TString, Type.TNull]>;
7190
+ activeSubscription: Type.TBoolean;
7191
+ }>>;
7192
+ latestTranscript: Type.TUnion<[Type.TObject<{
7193
+ selector: Type.TString;
7194
+ sessionId: Type.TString;
7195
+ title: Type.TOptional<Type.TString>;
7196
+ providerId: Type.TString;
7197
+ providerName: Type.TOptional<Type.TString>;
7198
+ source: Type.TObject<{
7199
+ providerId: Type.TString;
7200
+ kind: Type.TOptional<Type.TUnion<[Type.TLiteral<"live-audio">, Type.TLiteral<"live-caption">, Type.TLiteral<"posthoc-transcript">, Type.TLiteral<"recording-stt">]>>;
7201
+ accountId: Type.TOptional<Type.TString>;
7202
+ guildId: Type.TOptional<Type.TString>;
7203
+ channelId: Type.TOptional<Type.TString>;
7204
+ meetingUrl: Type.TOptional<Type.TString>;
7205
+ threadTs: Type.TOptional<Type.TString>;
7206
+ fileId: Type.TOptional<Type.TString>;
7207
+ }>;
7208
+ startedAt: Type.TString;
7209
+ stoppedAt: Type.TOptional<Type.TString>;
7210
+ active: Type.TBoolean;
7211
+ utteranceCount: Type.TInteger;
7212
+ participants: Type.TArray<Type.TString>;
7213
+ hasSummary: Type.TBoolean;
7214
+ summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
7215
+ overview: Type.TOptional<Type.TString>;
7216
+ agentId: Type.TUnion<[Type.TString, Type.TNull]>;
7217
+ updatedAt: Type.TString;
7218
+ lastUtteranceAt: Type.TUnion<[Type.TString, Type.TNull]>;
7219
+ activeSubscription: Type.TBoolean;
7220
+ }>, Type.TNull]>;
7221
+ omitted: Type.TObject<{
7222
+ providers: Type.TInteger;
7223
+ configuredSources: Type.TInteger;
7224
+ active: Type.TInteger;
7225
+ }>;
7226
+ }>;
7227
+ type TranscriptSessionSummary = Static<typeof TranscriptSessionSummarySchema>;
7228
+ type TranscriptUtterance = Static<typeof TranscriptUtteranceSchema>;
7229
+ type TranscriptsListParams = Static<typeof TranscriptsListParamsSchema>;
7230
+ type TranscriptsListResult = Static<typeof TranscriptsListResultSchema>;
7231
+ type TranscriptsGetParams = Static<typeof TranscriptsGetParamsSchema>;
7232
+ type TranscriptsGetResult = Static<typeof TranscriptsGetResultSchema>;
7233
+ type TranscriptsExportParams = Static<typeof TranscriptsExportParamsSchema>;
7234
+ type TranscriptsExportResult = Static<typeof TranscriptsExportResultSchema>;
7235
+ type TranscriptsStatusParams = Static<typeof TranscriptsStatusParamsSchema>;
7236
+ type TranscriptsStatusResult = Static<typeof TranscriptsStatusResultSchema>;
7237
+ //#endregion
6534
7238
  //#region src/schema/sessions-row.d.ts
6535
7239
  declare const SessionPermissionModeSchema: Type.TUnion<[Type.TLiteral<"read-only">, Type.TLiteral<"guarded">, Type.TLiteral<"workspace">, Type.TLiteral<"full">]>;
6536
7240
  declare const SessionRunStatusSchema: Type.TUnion<[Type.TLiteral<"queued">, Type.TLiteral<"running">, Type.TLiteral<"done">, Type.TLiteral<"failed">, Type.TLiteral<"killed">, Type.TLiteral<"timeout">]>;
6537
- declare const SessionEntryArchiveReasonSchema: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"active-session-cap">, Type.TLiteral<"stale-dashboard">, Type.TLiteral<"restart-recovery">]>;
7241
+ declare const SessionEntryArchiveReasonSchema: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"active-session-cap">, Type.TLiteral<"age-retention">, Type.TLiteral<"stale-dashboard">, Type.TLiteral<"restart-recovery">]>;
6538
7242
  declare const SessionToolOverridesSchema: Type.TObject<{
6539
7243
  mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
6540
7244
  mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
@@ -6649,6 +7353,7 @@ declare const SessionRowSchema: Type.TObject<{
6649
7353
  incognito: Type.TOptional<Type.TLiteral<true>>;
6650
7354
  kind: Type.TUnion<[Type.TLiteral<"direct">, Type.TLiteral<"group">, Type.TLiteral<"global">, Type.TLiteral<"unknown">]>;
6651
7355
  label: Type.TOptional<Type.TString>;
7356
+ autoLabel: Type.TOptional<Type.TString>;
6652
7357
  icon: Type.TOptional<Type.TString>;
6653
7358
  /** Named sidebar tint from SESSION_COLOR_IDS; clients map names to theme hues. */
6654
7359
  color: Type.TOptional<Type.TString>;
@@ -6701,7 +7406,7 @@ declare const SessionRowSchema: Type.TObject<{
6701
7406
  id: Type.TString;
6702
7407
  }>]>>;
6703
7408
  }>>;
6704
- archiveReason: Type.TOptional<Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"active-session-cap">, Type.TLiteral<"stale-dashboard">, Type.TLiteral<"restart-recovery">]>>;
7409
+ archiveReason: Type.TOptional<Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"active-session-cap">, Type.TLiteral<"age-retention">, Type.TLiteral<"stale-dashboard">, Type.TLiteral<"restart-recovery">]>>;
6705
7410
  pinned: Type.TOptional<Type.TBoolean>;
6706
7411
  pinnedAt: Type.TOptional<Type.TNumber>;
6707
7412
  unread: Type.TOptional<Type.TBoolean>;
@@ -6724,11 +7429,33 @@ declare const SessionRowSchema: Type.TObject<{
6724
7429
  subagentRole: Type.TOptional<Type.TUnion<[Type.TLiteral<"orchestrator">, Type.TLiteral<"leaf">]>>;
6725
7430
  subagentControlScope: Type.TOptional<Type.TUnion<[Type.TLiteral<"children">, Type.TLiteral<"none">]>>;
6726
7431
  swarmGroupId: Type.TOptional<Type.TString>;
7432
+ /** Requester-owned execution counts; never child content or parent synthesis status. */
7433
+ swarm: Type.TOptional<Type.TObject<{
7434
+ groups: Type.TArray<Type.TObject<{
7435
+ groupId: Type.TString;
7436
+ createdAt: Type.TNumber;
7437
+ children: Type.TOptional<Type.TArray<Type.TObject<{
7438
+ sessionKey: Type.TString;
7439
+ status: Type.TUnion<[Type.TLiteral<"queued">, Type.TLiteral<"running">, Type.TLiteral<"done">, Type.TLiteral<"failed">]>;
7440
+ }>>>;
7441
+ queued: Type.TInteger;
7442
+ running: Type.TInteger;
7443
+ done: Type.TInteger;
7444
+ failed: Type.TInteger;
7445
+ }>>;
7446
+ otherActiveGroups: Type.TInteger;
7447
+ }>>;
6727
7448
  worktree: Type.TOptional<Type.TObject<{
6728
7449
  id: Type.TString;
6729
7450
  branch: Type.TString;
6730
7451
  repoRoot: Type.TString;
6731
7452
  }>>;
7453
+ repositoryWorkspaceId: Type.TOptional<Type.TString>;
7454
+ repository: Type.TOptional<Type.TObject<{
7455
+ branch: Type.TString;
7456
+ url: Type.TString;
7457
+ ref: Type.TOptional<Type.TString>;
7458
+ }>>;
6732
7459
  execNode: Type.TOptional<Type.TString>;
6733
7460
  execCwd: Type.TOptional<Type.TString>;
6734
7461
  spawnedWorkspaceDir: Type.TOptional<Type.TString>;
@@ -6913,8 +7640,8 @@ declare const SessionRowSchema: Type.TObject<{
6913
7640
  /** Runtime model serving this session while it differs from the selected model. */
6914
7641
  activeModel: Type.TOptional<Type.TString>;
6915
7642
  activeModelProvider: Type.TOptional<Type.TString>;
6916
- /** Persisted override provenance; null means inherited, omission means not projected. */
6917
- modelOverrideSource: Type.TOptional<Type.TUnion<[Type.TLiteral<"user">, Type.TLiteral<"auto">, Type.TNull]>>;
7643
+ /** Effective override provenance; null means configured default, omission means not projected. */
7644
+ modelOverrideSource: Type.TOptional<Type.TUnion<[Type.TLiteral<"user">, Type.TLiteral<"auto">, Type.TLiteral<"inherited">, Type.TNull]>>;
6918
7645
  toolOverrides: Type.TOptional<Type.TObject<{
6919
7646
  mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
6920
7647
  mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
@@ -7418,6 +8145,7 @@ declare const SessionsCreateParamsSchema: Type.TObject<{
7418
8145
  agentId: Type.TOptional<Type.TString>;
7419
8146
  label: Type.TOptional<Type.TString>;
7420
8147
  displayName: Type.TOptional<Type.TString>;
8148
+ titleSource: Type.TOptional<Type.TString>;
7421
8149
  category: Type.TOptional<Type.TString>;
7422
8150
  model: Type.TOptional<Type.TString>;
7423
8151
  contextWindow: Type.TOptional<Type.TString>;
@@ -7439,6 +8167,7 @@ declare const SessionsCreateParamsSchema: Type.TObject<{
7439
8167
  forkFrom: Type.TOptional<Type.TLiteral<"last-completed">>;
7440
8168
  emitCommandHooks: Type.TOptional<Type.TBoolean>;
7441
8169
  succeedsParent: Type.TOptional<Type.TBoolean>;
8170
+ timeoutMs: Type.TOptional<Type.TInteger>;
7442
8171
  task: Type.TOptional<Type.TString>;
7443
8172
  message: Type.TOptional<Type.TString>;
7444
8173
  mentions: Type.TOptional<Type.TArray<Type.TObject<{
@@ -7458,6 +8187,11 @@ declare const SessionsCreateParamsSchema: Type.TObject<{
7458
8187
  }>>>;
7459
8188
  projectId: Type.TOptional<Type.TString>;
7460
8189
  projectGitUrl: Type.TOptional<Type.TString>;
8190
+ /** Remote-owned source; create, dispatch, then send the initial turn. */
8191
+ repository: Type.TOptional<Type.TObject<{
8192
+ url: Type.TString;
8193
+ ref: Type.TOptional<Type.TString>;
8194
+ }>>;
7461
8195
  worktree: Type.TOptional<Type.TBoolean>;
7462
8196
  worktreeBaseRef: Type.TOptional<Type.TString>;
7463
8197
  worktreeName: Type.TOptional<Type.TString>;
@@ -7476,6 +8210,7 @@ declare const TaskSummarySchema: Type.TObject<{
7476
8210
  agentId: Type.TOptional<Type.TString>;
7477
8211
  sessionKey: Type.TOptional<Type.TString>;
7478
8212
  childSessionKey: Type.TOptional<Type.TString>;
8213
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7479
8214
  ownerKey: Type.TOptional<Type.TString>;
7480
8215
  runId: Type.TOptional<Type.TString>;
7481
8216
  taskId: Type.TOptional<Type.TString>;
@@ -7525,6 +8260,7 @@ declare const TasksListResultSchema: Type.TObject<{
7525
8260
  agentId: Type.TOptional<Type.TString>;
7526
8261
  sessionKey: Type.TOptional<Type.TString>;
7527
8262
  childSessionKey: Type.TOptional<Type.TString>;
8263
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7528
8264
  ownerKey: Type.TOptional<Type.TString>;
7529
8265
  runId: Type.TOptional<Type.TString>;
7530
8266
  taskId: Type.TOptional<Type.TString>;
@@ -7570,6 +8306,7 @@ declare const TasksGetResultSchema: Type.TObject<{
7570
8306
  agentId: Type.TOptional<Type.TString>;
7571
8307
  sessionKey: Type.TOptional<Type.TString>;
7572
8308
  childSessionKey: Type.TOptional<Type.TString>;
8309
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7573
8310
  ownerKey: Type.TOptional<Type.TString>;
7574
8311
  runId: Type.TOptional<Type.TString>;
7575
8312
  taskId: Type.TOptional<Type.TString>;
@@ -7599,6 +8336,17 @@ declare const TasksGetResultSchema: Type.TObject<{
7599
8336
  prompt: Type.TOptional<Type.TString>;
7600
8337
  }>;
7601
8338
  }>;
8339
+ /** Runtime-independent, bounded transcript pages in chronological order. */
8340
+ declare const TasksHistoryParamsSchema: Type.TObject<{
8341
+ taskId: Type.TString;
8342
+ cursor: Type.TOptional<Type.TString>;
8343
+ limit: Type.TOptional<Type.TInteger>;
8344
+ }>;
8345
+ declare const TasksHistoryResultSchema: Type.TObject<{
8346
+ /** Stable messageId or __openclaw.id anchors refreshes; entry IDs can have sibling rows. */
8347
+ messages: Type.TArray<Type.TUnknown>;
8348
+ nextCursor: Type.TOptional<Type.TString>;
8349
+ }>;
7602
8350
  /** Cancel request for one task id with optional operator reason. */
7603
8351
  declare const TasksCancelParamsSchema: Type.TObject<{
7604
8352
  taskId: Type.TString;
@@ -7618,6 +8366,7 @@ declare const TasksCancelResultSchema: Type.TObject<{
7618
8366
  agentId: Type.TOptional<Type.TString>;
7619
8367
  sessionKey: Type.TOptional<Type.TString>;
7620
8368
  childSessionKey: Type.TOptional<Type.TString>;
8369
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7621
8370
  ownerKey: Type.TOptional<Type.TString>;
7622
8371
  runId: Type.TOptional<Type.TString>;
7623
8372
  taskId: Type.TOptional<Type.TString>;
@@ -7665,6 +8414,7 @@ declare const TasksRecoveryResultSchema: Type.TObject<{
7665
8414
  agentId: Type.TOptional<Type.TString>;
7666
8415
  sessionKey: Type.TOptional<Type.TString>;
7667
8416
  childSessionKey: Type.TOptional<Type.TString>;
8417
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7668
8418
  ownerKey: Type.TOptional<Type.TString>;
7669
8419
  runId: Type.TOptional<Type.TString>;
7670
8420
  taskId: Type.TOptional<Type.TString>;
@@ -7700,6 +8450,8 @@ type TasksListParams = Static<typeof TasksListParamsSchema>;
7700
8450
  type TasksListResult = Static<typeof TasksListResultSchema>;
7701
8451
  type TasksGetParams = Static<typeof TasksGetParamsSchema>;
7702
8452
  type TasksGetResult = Static<typeof TasksGetResultSchema>;
8453
+ type TasksHistoryParams = Static<typeof TasksHistoryParamsSchema>;
8454
+ type TasksHistoryResult = Static<typeof TasksHistoryResultSchema>;
7703
8455
  type TasksCancelParams = Static<typeof TasksCancelParamsSchema>;
7704
8456
  type TasksCancelResult = Static<typeof TasksCancelResultSchema>;
7705
8457
  type TasksRecoveryParams = Static<typeof TasksRecoveryParamsSchema>;
@@ -7728,6 +8480,11 @@ declare const ProjectRecentFolderSchema: Type.TObject<{
7728
8480
  displayName: Type.TString;
7729
8481
  execNode: Type.TOptional<Type.TString>;
7730
8482
  }>;
8483
+ declare const ProjectRecentRepositorySchema: Type.TObject<{
8484
+ kind: Type.TLiteral<"repository">;
8485
+ url: Type.TString;
8486
+ displayName: Type.TString;
8487
+ }>;
7731
8488
  declare const ProjectRecentSchema: Type.TUnion<[Type.TObject<{
7732
8489
  kind: Type.TLiteral<"project">;
7733
8490
  projectId: Type.TString;
@@ -7737,6 +8494,10 @@ declare const ProjectRecentSchema: Type.TUnion<[Type.TObject<{
7737
8494
  folder: Type.TString;
7738
8495
  displayName: Type.TString;
7739
8496
  execNode: Type.TOptional<Type.TString>;
8497
+ }>, Type.TObject<{
8498
+ kind: Type.TLiteral<"repository">;
8499
+ url: Type.TString;
8500
+ displayName: Type.TString;
7740
8501
  }>]>;
7741
8502
  /** One gateway-visible checkout for an observed repository project. */
7742
8503
  declare const ProjectCheckoutSchema: Type.TObject<{
@@ -7774,6 +8535,10 @@ declare const ProjectsListResultSchema: Type.TObject<{
7774
8535
  folder: Type.TString;
7775
8536
  displayName: Type.TString;
7776
8537
  execNode: Type.TOptional<Type.TString>;
8538
+ }>, Type.TObject<{
8539
+ kind: Type.TLiteral<"repository">;
8540
+ url: Type.TString;
8541
+ displayName: Type.TString;
7777
8542
  }>]>>>;
7778
8543
  observedProjects: Type.TOptional<Type.TArray<Type.TObject<{
7779
8544
  name: Type.TString;
@@ -9158,6 +9923,8 @@ declare const ModelChoiceSchema: Type.TObject<{
9158
9923
  /** Earliest known retry time in epoch milliseconds, only for unavailable models. */
9159
9924
  unavailableUntil: Type.TOptional<Type.TInteger>;
9160
9925
  contextWindow: Type.TOptional<Type.TInteger>;
9926
+ contextTokens: Type.TOptional<Type.TInteger>;
9927
+ local: Type.TOptional<Type.TBoolean>;
9161
9928
  contextWindows: Type.TOptional<Type.TArray<Type.TObject<{
9162
9929
  id: Type.TString;
9163
9930
  label: Type.TString;
@@ -9171,6 +9938,8 @@ declare const ModelChoiceSchema: Type.TObject<{
9171
9938
  }>>>;
9172
9939
  thinkingDefault: Type.TOptional<Type.TString>;
9173
9940
  effectiveFastMode: Type.TOptional<Type.TUnion<[Type.TBoolean, Type.TLiteral<"auto">]>>;
9941
+ /** Local selected-request applicability, not preference or upstream fulfillment. */
9942
+ supportsFastMode: Type.TOptional<Type.TBoolean>;
9174
9943
  supportsTools: Type.TOptional<Type.TBoolean>;
9175
9944
  agentRuntime: Type.TOptional<Type.TObject<{
9176
9945
  id: Type.TString;
@@ -9338,6 +10107,7 @@ declare const AgentsFileEntrySchema: Type.TObject<{
9338
10107
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9339
10108
  size: Type.TOptional<Type.TInteger>;
9340
10109
  updatedAtMs: Type.TOptional<Type.TInteger>;
10110
+ hash: Type.TOptional<Type.TString>;
9341
10111
  content: Type.TOptional<Type.TString>;
9342
10112
  }>;
9343
10113
  /** Lists editable files for one agent. */
@@ -9355,6 +10125,7 @@ declare const AgentsFilesListResultSchema: Type.TObject<{
9355
10125
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9356
10126
  size: Type.TOptional<Type.TInteger>;
9357
10127
  updatedAtMs: Type.TOptional<Type.TInteger>;
10128
+ hash: Type.TOptional<Type.TString>;
9358
10129
  content: Type.TOptional<Type.TString>;
9359
10130
  }>>;
9360
10131
  }>;
@@ -9374,6 +10145,7 @@ declare const AgentsFilesGetResultSchema: Type.TObject<{
9374
10145
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9375
10146
  size: Type.TOptional<Type.TInteger>;
9376
10147
  updatedAtMs: Type.TOptional<Type.TInteger>;
10148
+ hash: Type.TOptional<Type.TString>;
9377
10149
  content: Type.TOptional<Type.TString>;
9378
10150
  }>;
9379
10151
  }>;
@@ -9382,6 +10154,7 @@ declare const AgentsFilesSetParamsSchema: Type.TObject<{
9382
10154
  agentId: Type.TString;
9383
10155
  name: Type.TString;
9384
10156
  content: Type.TString;
10157
+ expectedHash: Type.TOptional<Type.TString>;
9385
10158
  }>;
9386
10159
  /** Result returned after writing an editable agent file. */
9387
10160
  declare const AgentsFilesSetResultSchema: Type.TObject<{
@@ -9395,12 +10168,17 @@ declare const AgentsFilesSetResultSchema: Type.TObject<{
9395
10168
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9396
10169
  size: Type.TOptional<Type.TInteger>;
9397
10170
  updatedAtMs: Type.TOptional<Type.TInteger>;
10171
+ hash: Type.TOptional<Type.TString>;
9398
10172
  content: Type.TOptional<Type.TString>;
9399
10173
  }>;
9400
10174
  }>;
9401
10175
  /** Model catalog request with optional visibility scope. */
9402
10176
  declare const ModelsListParamsSchema: Type.TObject<{
9403
10177
  agentId: Type.TOptional<Type.TString>;
10178
+ sessionKey: Type.TOptional<Type.TString>;
10179
+ authProfileId: Type.TOptional<Type.TString>;
10180
+ provider: Type.TOptional<Type.TString>;
10181
+ includeDetails: Type.TOptional<Type.TBoolean>;
9404
10182
  includeProviderCapabilities: Type.TOptional<Type.TBoolean>;
9405
10183
  /** Reuse prepared/cached facts without starting provider discovery. */
9406
10184
  preparedOnly: Type.TOptional<Type.TBoolean>;
@@ -9443,6 +10221,8 @@ declare const ModelsListResultSchema: Type.TObject<{
9443
10221
  /** Earliest known retry time in epoch milliseconds, only for unavailable models. */
9444
10222
  unavailableUntil: Type.TOptional<Type.TInteger>;
9445
10223
  contextWindow: Type.TOptional<Type.TInteger>;
10224
+ contextTokens: Type.TOptional<Type.TInteger>;
10225
+ local: Type.TOptional<Type.TBoolean>;
9446
10226
  contextWindows: Type.TOptional<Type.TArray<Type.TObject<{
9447
10227
  id: Type.TString;
9448
10228
  label: Type.TString;
@@ -9456,6 +10236,8 @@ declare const ModelsListResultSchema: Type.TObject<{
9456
10236
  }>>>;
9457
10237
  thinkingDefault: Type.TOptional<Type.TString>;
9458
10238
  effectiveFastMode: Type.TOptional<Type.TUnion<[Type.TBoolean, Type.TLiteral<"auto">]>>;
10239
+ /** Local selected-request applicability, not preference or upstream fulfillment. */
10240
+ supportsFastMode: Type.TOptional<Type.TBoolean>;
9459
10241
  supportsTools: Type.TOptional<Type.TBoolean>;
9460
10242
  agentRuntime: Type.TOptional<Type.TObject<{
9461
10243
  id: Type.TString;
@@ -9472,6 +10254,21 @@ declare const ModelsListResultSchema: Type.TObject<{
9472
10254
  apiKeySupported: Type.TOptional<Type.TBoolean>;
9473
10255
  input: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"audio">, Type.TLiteral<"video">, Type.TLiteral<"document">]>>>;
9474
10256
  }>>;
10257
+ refreshFailed: Type.TOptional<Type.TBoolean>;
10258
+ accountSelection: Type.TOptional<Type.TUnion<[Type.TObject<{
10259
+ kind: Type.TLiteral<"automatic">;
10260
+ label: Type.TString;
10261
+ }>, Type.TObject<{
10262
+ kind: Type.TLiteral<"personal">;
10263
+ label: Type.TString;
10264
+ authProfileId: Type.TOptional<Type.TString>;
10265
+ source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
10266
+ }>, Type.TObject<{
10267
+ kind: Type.TLiteral<"shared">;
10268
+ label: Type.TString;
10269
+ authProfileId: Type.TString;
10270
+ source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
10271
+ }>]>>;
9475
10272
  providerOutcomes: Type.TOptional<Type.TArray<Type.TObject<{
9476
10273
  provider: Type.TString;
9477
10274
  profileId: Type.TOptional<Type.TString>;
@@ -9585,6 +10382,8 @@ declare const SkillsSearchResultSchema: Type.TObject<{
9585
10382
  results: Type.TArray<Type.TObject<{
9586
10383
  score: Type.TNumber;
9587
10384
  slug: Type.TString;
10385
+ registry: Type.TString;
10386
+ ownerHandle: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
9588
10387
  installRef: Type.TString;
9589
10388
  installOnly: Type.TOptional<Type.TLiteral<true>>;
9590
10389
  trustState: Type.TOptional<Type.TLiteral<"not-scanned-by-clawhub">>;
@@ -9609,6 +10408,7 @@ declare const SkillsDetailResultSchema: Type.TObject<{
9609
10408
  slug: Type.TString;
9610
10409
  displayName: Type.TString;
9611
10410
  summary: Type.TOptional<Type.TString>;
10411
+ icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
9612
10412
  tags: Type.TOptional<Type.TRecord<"^.*$", Type.TString>>;
9613
10413
  channel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
9614
10414
  isOfficial: Type.TOptional<Type.TUnion<[Type.TBoolean, Type.TNull]>>;
@@ -9736,8 +10536,26 @@ declare const SkillsProposalsListResultSchema: Type.TObject<{
9736
10536
  createdAt: Type.TString;
9737
10537
  updatedAt: Type.TString;
9738
10538
  scanState: Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"clean">, Type.TLiteral<"failed">, Type.TLiteral<"quarantined">]>;
10539
+ revisionHash: Type.TOptional<Type.TString>;
10540
+ degradedState: Type.TOptional<Type.TLiteral<"draft-missing">>;
10541
+ }>>;
10542
+ installedSkills: Type.TArray<Type.TObject<{
10543
+ name: Type.TString;
10544
+ skillKey: Type.TString;
10545
+ description: Type.TString;
9739
10546
  }>>;
9740
10547
  }>;
10548
+ /** Reads the current agent-owned Workshop skill, independently of its proposal history. */
10549
+ declare const SkillsWorkshopReadParamsSchema: Type.TObject<{
10550
+ agentId: Type.TOptional<Type.TString>;
10551
+ name: Type.TString;
10552
+ }>;
10553
+ declare const SkillsWorkshopReadResultSchema: Type.TObject<{
10554
+ name: Type.TString;
10555
+ skillKey: Type.TString;
10556
+ description: Type.TString;
10557
+ content: Type.TString;
10558
+ }>;
9741
10559
  /** Reads a proposal record plus editable draft/support content. */
9742
10560
  declare const SkillsProposalInspectParamsSchema: Type.TObject<{
9743
10561
  agentId: Type.TOptional<Type.TString>;
@@ -10417,7 +11235,7 @@ declare const SkillsCuratorStatusResultSchema: Type.TObject<{
10417
11235
  }>>>;
10418
11236
  experienceReview: Type.TOptional<Type.TRecord<"^.*$", Type.TObject<{
10419
11237
  attemptedAtMs: Type.TNumber;
10420
- outcome: Type.TUnion<[Type.TLiteral<"applied">, Type.TLiteral<"proposed">, Type.TLiteral<"nothing">, Type.TLiteral<"failed">]>;
11238
+ outcome: Type.TUnion<[Type.TLiteral<"completed">, Type.TLiteral<"applied">, Type.TLiteral<"proposed">, Type.TLiteral<"nothing">, Type.TLiteral<"failed">]>;
10421
11239
  proposalId: Type.TOptional<Type.TString>;
10422
11240
  error: Type.TOptional<Type.TString>;
10423
11241
  usage: Type.TOptional<Type.TObject<{
@@ -12070,6 +12888,27 @@ type AuditEvent = Static<typeof AuditEventSchema>;
12070
12888
  type AuditListParams = Static<typeof AuditListParamsSchema>;
12071
12889
  type AuditListResult = Static<typeof AuditListResultSchema>;
12072
12890
  //#endregion
12891
+ //#region src/schema/model-account-selection.d.ts
12892
+ /** Configured preference only; provider failover can use a different account. */
12893
+ declare const ChatAccountSelectionSchema: Type.TUnion<[Type.TObject<{
12894
+ kind: Type.TLiteral<"automatic">;
12895
+ label: Type.TString;
12896
+ }>, Type.TObject<{
12897
+ kind: Type.TLiteral<"personal">;
12898
+ label: Type.TString;
12899
+ authProfileId: Type.TOptional<Type.TString>;
12900
+ source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
12901
+ }>, Type.TObject<{
12902
+ kind: Type.TLiteral<"shared">;
12903
+ label: Type.TString;
12904
+ authProfileId: Type.TString;
12905
+ source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
12906
+ }>]>;
12907
+ type ChatAccountSelection = Static<typeof ChatAccountSelectionSchema>;
12908
+ //#endregion
12909
+ //#region src/schema/user-profile-constants.d.ts
12910
+ declare const GATEWAY_OWNER_PROFILE_ID = "gateway-owner";
12911
+ //#endregion
12073
12912
  //#region src/schema/ui-appearance-preferences.d.ts
12074
12913
  declare const UI_APPEARANCE_PREFERENCE_KEYS: {
12075
12914
  readonly theme: "ui.theme";
@@ -12087,7 +12926,6 @@ declare const USER_PREFS_ENTRY_LIMIT = 32;
12087
12926
  declare const USER_PREFS_PROFILE_KEY_LIMIT = 128;
12088
12927
  declare const USER_PREFS_VALUE_BYTES: number;
12089
12928
  declare const GIT_COAUTHOR_PREFERENCE_KEY = "git.coauthor.enabled";
12090
- declare const GATEWAY_OWNER_PROFILE_ID = "gateway-owner";
12091
12929
  declare function isGitCoauthorCreditEnabled(value: unknown): boolean;
12092
12930
  declare const UserProfileAvatarMimeSchema: Type.TUnion<[Type.TLiteral<"image/png">, Type.TLiteral<"image/jpeg">, Type.TLiteral<"image/webp">]>;
12093
12931
  declare const UserProfileGitHubIdentitySchema: Type.TObject<{
@@ -12282,21 +13120,6 @@ declare const UsersSelectModelAccountResultSchema: Type.TObject<{
12282
13120
  updatedAt: Type.TInteger;
12283
13121
  }>>;
12284
13122
  }>;
12285
- /** Configured preference only; provider failover can use a different account. */
12286
- declare const ChatAccountSelectionSchema: Type.TUnion<[Type.TObject<{
12287
- kind: Type.TLiteral<"automatic">;
12288
- label: Type.TString;
12289
- }>, Type.TObject<{
12290
- kind: Type.TLiteral<"personal">;
12291
- label: Type.TString;
12292
- authProfileId: Type.TOptional<Type.TString>;
12293
- source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
12294
- }>, Type.TObject<{
12295
- kind: Type.TLiteral<"shared">;
12296
- label: Type.TString;
12297
- authProfileId: Type.TString;
12298
- source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
12299
- }>]>;
12300
13123
  declare const UsersListAuthLinksParamsSchema: Type.TObject<{
12301
13124
  profileId: Type.TString;
12302
13125
  }>;
@@ -12456,7 +13279,6 @@ type UsersListModelAccountsParams = Static<typeof UsersListModelAccountsParamsSc
12456
13279
  type UsersListModelAccountsResult = Static<typeof UsersListModelAccountsResultSchema>;
12457
13280
  type UsersSelectModelAccountParams = Static<typeof UsersSelectModelAccountParamsSchema>;
12458
13281
  type UsersSelectModelAccountResult = Static<typeof UsersSelectModelAccountResultSchema>;
12459
- type ChatAccountSelection = Static<typeof ChatAccountSelectionSchema>;
12460
13282
  type UsersAuthConnectStartParams = Static<typeof UsersAuthConnectStartParamsSchema>;
12461
13283
  type UsersAuthConnectStartResult = Static<typeof UsersAuthConnectStartResultSchema>;
12462
13284
  type UsersAuthConnectAnswerParams = Static<typeof UsersAuthConnectAnswerParamsSchema>;
@@ -12811,6 +13633,8 @@ declare const TalkCatalogResultSchema: Type.TObject<{
12811
13633
  aliases: Type.TOptional<Type.TArray<Type.TString>>;
12812
13634
  models: Type.TOptional<Type.TArray<Type.TString>>;
12813
13635
  voices: Type.TOptional<Type.TArray<Type.TString>>;
13636
+ activeVoices: Type.TOptional<Type.TArray<Type.TString>>;
13637
+ activeVoiceSelectionPolicy: Type.TOptional<Type.TLiteral<"allowlist-default">>;
12814
13638
  voicesByModel: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
12815
13639
  defaultModel: Type.TOptional<Type.TString>;
12816
13640
  modes: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"realtime">, Type.TLiteral<"stt-tts">, Type.TLiteral<"transcription">]>>>;
@@ -12843,6 +13667,8 @@ declare const TalkCatalogResultSchema: Type.TObject<{
12843
13667
  aliases: Type.TOptional<Type.TArray<Type.TString>>;
12844
13668
  models: Type.TOptional<Type.TArray<Type.TString>>;
12845
13669
  voices: Type.TOptional<Type.TArray<Type.TString>>;
13670
+ activeVoices: Type.TOptional<Type.TArray<Type.TString>>;
13671
+ activeVoiceSelectionPolicy: Type.TOptional<Type.TLiteral<"allowlist-default">>;
12846
13672
  voicesByModel: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
12847
13673
  defaultModel: Type.TOptional<Type.TString>;
12848
13674
  modes: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"realtime">, Type.TLiteral<"stt-tts">, Type.TLiteral<"transcription">]>>>;
@@ -12875,6 +13701,8 @@ declare const TalkCatalogResultSchema: Type.TObject<{
12875
13701
  aliases: Type.TOptional<Type.TArray<Type.TString>>;
12876
13702
  models: Type.TOptional<Type.TArray<Type.TString>>;
12877
13703
  voices: Type.TOptional<Type.TArray<Type.TString>>;
13704
+ activeVoices: Type.TOptional<Type.TArray<Type.TString>>;
13705
+ activeVoiceSelectionPolicy: Type.TOptional<Type.TLiteral<"allowlist-default">>;
12878
13706
  voicesByModel: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
12879
13707
  defaultModel: Type.TOptional<Type.TString>;
12880
13708
  modes: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"realtime">, Type.TLiteral<"stt-tts">, Type.TLiteral<"transcription">]>>>;
@@ -13068,6 +13896,12 @@ declare const TalkConfigResultSchema: Type.TObject<{
13068
13896
  ui: Type.TOptional<Type.TObject<{
13069
13897
  seamColor: Type.TOptional<Type.TString>;
13070
13898
  }>>;
13899
+ clientHints: Type.TOptional<Type.TObject<{
13900
+ realtime: Type.TOptional<Type.TObject<{
13901
+ modelSource: Type.TOptional<Type.TLiteral<"gateway">>;
13902
+ gatewayRelaySupported: Type.TOptional<Type.TBoolean>;
13903
+ }>>;
13904
+ }>>;
13071
13905
  }>;
13072
13906
  }>;
13073
13907
  /** Text-to-speech result with encoded audio and provider output metadata. */
@@ -13162,6 +13996,13 @@ declare const ChannelsStatusResultSchema: Type.TObject<{
13162
13996
  }>>;
13163
13997
  partial: Type.TOptional<Type.TBoolean>;
13164
13998
  warnings: Type.TOptional<Type.TArray<Type.TString>>;
13999
+ statusIssues: Type.TOptional<Type.TArray<Type.TObject<{
14000
+ channel: Type.TString;
14001
+ accountId: Type.TString;
14002
+ kind: Type.TUnion<[Type.TLiteral<"intent">, Type.TLiteral<"permissions">, Type.TLiteral<"config">, Type.TLiteral<"auth">, Type.TLiteral<"runtime">]>;
14003
+ message: Type.TString;
14004
+ fix: Type.TOptional<Type.TString>;
14005
+ }>>>;
13165
14006
  }>;
13166
14007
  /** Logs out one channel account. */
13167
14008
  declare const ChannelsLogoutParamsSchema: Type.TObject<{
@@ -13574,6 +14415,16 @@ declare const UpdateStatusResultSchema: Type.TObject<{
13574
14415
  status: Type.TEnum<["running", "succeeded", "failed", "rolled-back", "skipped"]>;
13575
14416
  reason: Type.TUnion<[Type.TString, Type.TNull]>;
13576
14417
  origin: Type.TObject<{
14418
+ driver: Type.TOptional<Type.TObject<{
14419
+ host: Type.TString;
14420
+ pid: Type.TInteger;
14421
+ startIdentity: Type.TString;
14422
+ }>>;
14423
+ previousDrivers: Type.TOptional<Type.TArray<Type.TObject<{
14424
+ host: Type.TString;
14425
+ pid: Type.TInteger;
14426
+ startIdentity: Type.TString;
14427
+ }>>>;
13577
14428
  requester: Type.TOptional<Type.TObject<{
13578
14429
  channel: Type.TOptional<Type.TString>;
13579
14430
  accountId: Type.TOptional<Type.TString>;
@@ -13624,7 +14475,8 @@ declare const UpdateStatusResultSchema: Type.TObject<{
13624
14475
  versionMatch: Type.TOptional<Type.TBoolean>;
13625
14476
  pluginErrors: Type.TOptional<Type.TArray<Type.TString>>;
13626
14477
  channelsReady: Type.TOptional<Type.TBoolean>;
13627
- inferenceProbe: Type.TOptional<Type.TEnum<["passed", "failed", "skipped"]>>;
14478
+ readyz: Type.TOptional<Type.TBoolean>;
14479
+ settled: Type.TOptional<Type.TBoolean>;
13628
14480
  noticeDelivered: Type.TOptional<Type.TBoolean>;
13629
14481
  doctorHint: Type.TOptional<Type.TString>;
13630
14482
  }>;
@@ -13649,6 +14501,16 @@ declare const UpdateStatusResultSchema: Type.TObject<{
13649
14501
  status: Type.TEnum<["running", "succeeded", "failed", "rolled-back", "skipped"]>;
13650
14502
  reason: Type.TUnion<[Type.TString, Type.TNull]>;
13651
14503
  origin: Type.TObject<{
14504
+ driver: Type.TOptional<Type.TObject<{
14505
+ host: Type.TString;
14506
+ pid: Type.TInteger;
14507
+ startIdentity: Type.TString;
14508
+ }>>;
14509
+ previousDrivers: Type.TOptional<Type.TArray<Type.TObject<{
14510
+ host: Type.TString;
14511
+ pid: Type.TInteger;
14512
+ startIdentity: Type.TString;
14513
+ }>>>;
13652
14514
  requester: Type.TOptional<Type.TObject<{
13653
14515
  channel: Type.TOptional<Type.TString>;
13654
14516
  accountId: Type.TOptional<Type.TString>;
@@ -13699,7 +14561,8 @@ declare const UpdateStatusResultSchema: Type.TObject<{
13699
14561
  versionMatch: Type.TOptional<Type.TBoolean>;
13700
14562
  pluginErrors: Type.TOptional<Type.TArray<Type.TString>>;
13701
14563
  channelsReady: Type.TOptional<Type.TBoolean>;
13702
- inferenceProbe: Type.TOptional<Type.TEnum<["passed", "failed", "skipped"]>>;
14564
+ readyz: Type.TOptional<Type.TBoolean>;
14565
+ settled: Type.TOptional<Type.TBoolean>;
13703
14566
  noticeDelivered: Type.TOptional<Type.TBoolean>;
13704
14567
  doctorHint: Type.TOptional<Type.TString>;
13705
14568
  }>;
@@ -13859,6 +14722,42 @@ declare const UpdateRunParamsSchema: Type.TObject<{
13859
14722
  upstreamSha: Type.TString;
13860
14723
  }>>;
13861
14724
  }>;
14725
+ /** Explicit two-step request for previewing or submitting one failed update report. */
14726
+ declare const UpdateReportParamsSchema: Type.TUnion<[Type.TObject<{
14727
+ action: Type.TLiteral<"preview">;
14728
+ attemptId: Type.TString;
14729
+ }>, Type.TObject<{
14730
+ action: Type.TLiteral<"submit">;
14731
+ attemptId: Type.TString;
14732
+ previewDigest: Type.TString;
14733
+ }>]>;
14734
+ /** Result of a consent-gated update failure report action. */
14735
+ declare const UpdateReportResultSchema: Type.TUnion<[Type.TObject<{
14736
+ status: Type.TLiteral<"ready">;
14737
+ attemptId: Type.TString;
14738
+ body: Type.TString;
14739
+ previewDigest: Type.TString;
14740
+ title: Type.TString;
14741
+ }>, Type.TObject<{
14742
+ status: Type.TLiteral<"created">;
14743
+ message: Type.TOptional<Type.TString>;
14744
+ url: Type.TString;
14745
+ }>, Type.TObject<{
14746
+ status: Type.TLiteral<"fallback">;
14747
+ fallbackUrl: Type.TString;
14748
+ message: Type.TString;
14749
+ }>, Type.TObject<{
14750
+ status: Type.TLiteral<"pending">;
14751
+ message: Type.TString;
14752
+ }>, Type.TObject<{
14753
+ status: Type.TLiteral<"retryable">;
14754
+ message: Type.TString;
14755
+ }>, Type.TObject<{
14756
+ status: Type.TLiteral<"duplicate">;
14757
+ fallbackUrl: Type.TOptional<Type.TString>;
14758
+ message: Type.TString;
14759
+ url: Type.TOptional<Type.TString>;
14760
+ }>]>;
13862
14761
  /** Full generated config schema response. */
13863
14762
  declare const ConfigSchemaResponseSchema: Type.TObject<{
13864
14763
  schema: Type.TUnknown;
@@ -13935,6 +14834,8 @@ type UpdateStatusResult = Static<typeof UpdateStatusResultSchema>;
13935
14834
  type UpdateHoldParams = Static<typeof UpdateHoldParamsSchema>;
13936
14835
  type UpdateHoldResult = Static<typeof UpdateHoldResultSchema>;
13937
14836
  type UpdateRunParams = Static<typeof UpdateRunParamsSchema>;
14837
+ type UpdateReportParams = Static<typeof UpdateReportParamsSchema>;
14838
+ type UpdateReportResult = Static<typeof UpdateReportResultSchema>;
13938
14839
  //#endregion
13939
14840
  //#region src/schema/update-runs.d.ts
13940
14841
  /** Wire projection of the canonical update ledger record. */
@@ -13947,6 +14848,16 @@ declare const UpdateRunRecordSchema: Type.TObject<{
13947
14848
  status: Type.TEnum<["running", "succeeded", "failed", "rolled-back", "skipped"]>;
13948
14849
  reason: Type.TUnion<[Type.TString, Type.TNull]>;
13949
14850
  origin: Type.TObject<{
14851
+ driver: Type.TOptional<Type.TObject<{
14852
+ host: Type.TString;
14853
+ pid: Type.TInteger;
14854
+ startIdentity: Type.TString;
14855
+ }>>;
14856
+ previousDrivers: Type.TOptional<Type.TArray<Type.TObject<{
14857
+ host: Type.TString;
14858
+ pid: Type.TInteger;
14859
+ startIdentity: Type.TString;
14860
+ }>>>;
13950
14861
  requester: Type.TOptional<Type.TObject<{
13951
14862
  channel: Type.TOptional<Type.TString>;
13952
14863
  accountId: Type.TOptional<Type.TString>;
@@ -13997,7 +14908,8 @@ declare const UpdateRunRecordSchema: Type.TObject<{
13997
14908
  versionMatch: Type.TOptional<Type.TBoolean>;
13998
14909
  pluginErrors: Type.TOptional<Type.TArray<Type.TString>>;
13999
14910
  channelsReady: Type.TOptional<Type.TBoolean>;
14000
- inferenceProbe: Type.TOptional<Type.TEnum<["passed", "failed", "skipped"]>>;
14911
+ readyz: Type.TOptional<Type.TBoolean>;
14912
+ settled: Type.TOptional<Type.TBoolean>;
14001
14913
  noticeDelivered: Type.TOptional<Type.TBoolean>;
14002
14914
  doctorHint: Type.TOptional<Type.TString>;
14003
14915
  }>;
@@ -14026,6 +14938,16 @@ declare const UpdateRunsGetResultSchema: Type.TObject<{
14026
14938
  status: Type.TEnum<["running", "succeeded", "failed", "rolled-back", "skipped"]>;
14027
14939
  reason: Type.TUnion<[Type.TString, Type.TNull]>;
14028
14940
  origin: Type.TObject<{
14941
+ driver: Type.TOptional<Type.TObject<{
14942
+ host: Type.TString;
14943
+ pid: Type.TInteger;
14944
+ startIdentity: Type.TString;
14945
+ }>>;
14946
+ previousDrivers: Type.TOptional<Type.TArray<Type.TObject<{
14947
+ host: Type.TString;
14948
+ pid: Type.TInteger;
14949
+ startIdentity: Type.TString;
14950
+ }>>>;
14029
14951
  requester: Type.TOptional<Type.TObject<{
14030
14952
  channel: Type.TOptional<Type.TString>;
14031
14953
  accountId: Type.TOptional<Type.TString>;
@@ -14076,7 +14998,8 @@ declare const UpdateRunsGetResultSchema: Type.TObject<{
14076
14998
  versionMatch: Type.TOptional<Type.TBoolean>;
14077
14999
  pluginErrors: Type.TOptional<Type.TArray<Type.TString>>;
14078
15000
  channelsReady: Type.TOptional<Type.TBoolean>;
14079
- inferenceProbe: Type.TOptional<Type.TEnum<["passed", "failed", "skipped"]>>;
15001
+ readyz: Type.TOptional<Type.TBoolean>;
15002
+ settled: Type.TOptional<Type.TBoolean>;
14080
15003
  noticeDelivered: Type.TOptional<Type.TBoolean>;
14081
15004
  doctorHint: Type.TOptional<Type.TString>;
14082
15005
  }>;
@@ -14106,6 +15029,16 @@ declare const UpdateRunsListResultSchema: Type.TObject<{
14106
15029
  status: Type.TEnum<["running", "succeeded", "failed", "rolled-back", "skipped"]>;
14107
15030
  reason: Type.TUnion<[Type.TString, Type.TNull]>;
14108
15031
  origin: Type.TObject<{
15032
+ driver: Type.TOptional<Type.TObject<{
15033
+ host: Type.TString;
15034
+ pid: Type.TInteger;
15035
+ startIdentity: Type.TString;
15036
+ }>>;
15037
+ previousDrivers: Type.TOptional<Type.TArray<Type.TObject<{
15038
+ host: Type.TString;
15039
+ pid: Type.TInteger;
15040
+ startIdentity: Type.TString;
15041
+ }>>>;
14109
15042
  requester: Type.TOptional<Type.TObject<{
14110
15043
  channel: Type.TOptional<Type.TString>;
14111
15044
  accountId: Type.TOptional<Type.TString>;
@@ -14156,7 +15089,8 @@ declare const UpdateRunsListResultSchema: Type.TObject<{
14156
15089
  versionMatch: Type.TOptional<Type.TBoolean>;
14157
15090
  pluginErrors: Type.TOptional<Type.TArray<Type.TString>>;
14158
15091
  channelsReady: Type.TOptional<Type.TBoolean>;
14159
- inferenceProbe: Type.TOptional<Type.TEnum<["passed", "failed", "skipped"]>>;
15092
+ readyz: Type.TOptional<Type.TBoolean>;
15093
+ settled: Type.TOptional<Type.TBoolean>;
14160
15094
  noticeDelivered: Type.TOptional<Type.TBoolean>;
14161
15095
  doctorHint: Type.TOptional<Type.TString>;
14162
15096
  }>;
@@ -14419,7 +15353,7 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
14419
15353
  icon: Type.TOptional<Type.TString>;
14420
15354
  website: Type.TOptional<Type.TString>;
14421
15355
  }>>;
14422
- /** Provider-owned browser and device-code login methods. */
15356
+ /** Provider-owned auth, managed-install, and custom-endpoint setup methods. */
14423
15357
  authOptions: Type.TOptional<Type.TArray<Type.TObject<{
14424
15358
  id: Type.TString;
14425
15359
  /** Canonical provider identity for clients with bundled brand artwork. */
@@ -14429,7 +15363,7 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
14429
15363
  groupLabel: Type.TOptional<Type.TString>;
14430
15364
  icon: Type.TOptional<Type.TString>;
14431
15365
  website: Type.TOptional<Type.TString>;
14432
- kind: Type.TUnion<[Type.TLiteral<"oauth">, Type.TLiteral<"device-code">]>;
15366
+ kind: Type.TUnion<[Type.TLiteral<"oauth">, Type.TLiteral<"device-code">, Type.TLiteral<"install">, Type.TLiteral<"custom">]>;
14433
15367
  featured: Type.TBoolean;
14434
15368
  }>>>;
14435
15369
  /** Provider-owned app-guided local model setup methods. */
@@ -14452,6 +15386,14 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
14452
15386
  website: Type.TString;
14453
15387
  icon: Type.TString;
14454
15388
  }>>>;
15389
+ /** Native provider conversation catalogs available on this Gateway host. */
15390
+ nativeSessionCatalogs: Type.TOptional<Type.TArray<Type.TObject<{
15391
+ pluginId: Type.TString;
15392
+ label: Type.TString;
15393
+ detail: Type.TOptional<Type.TString>;
15394
+ }>>>;
15395
+ /** Fresh setup needs an explicit native-conversation catalog choice. */
15396
+ nativeSessionCatalogPreferenceRequired: Type.TOptional<Type.TBoolean>;
14455
15397
  workspace: Type.TString;
14456
15398
  codexAppServerDetected: Type.TOptional<Type.TBoolean>;
14457
15399
  configuredModel: Type.TOptional<Type.TString>;
@@ -14482,6 +15424,8 @@ declare const SystemAgentSetupActivateParamsSchema: Type.TObject<{
14482
15424
  /** Manual step only: the pasted API key or token; masked by clients, never echoed. */
14483
15425
  apiKey: Type.TOptional<Type.TString>;
14484
15426
  workspace: Type.TOptional<Type.TString>;
15427
+ /** Fresh-install opt-in for native provider conversation discovery. */
15428
+ nativeSessionCatalogsEnabled: Type.TOptional<Type.TBoolean>;
14485
15429
  }>;
14486
15430
  /** Starts interactive activation without moving artifact consent into the client. */
14487
15431
  declare const SystemAgentSetupActivateStartParamsSchema: Type.TObject<{
@@ -14497,6 +15441,8 @@ declare const SystemAgentSetupActivateStartParamsSchema: Type.TObject<{
14497
15441
  /** Manual step only: the pasted API key or token; masked by clients, never echoed. */
14498
15442
  apiKey: Type.TOptional<Type.TString>;
14499
15443
  workspace: Type.TOptional<Type.TString>;
15444
+ /** Fresh-install opt-in for native provider conversation discovery. */
15445
+ nativeSessionCatalogsEnabled: Type.TOptional<Type.TBoolean>;
14500
15446
  }>;
14501
15447
  declare const SystemAgentSetupActivateStartResultSchema: Type.TObject<{
14502
15448
  done: Type.TBoolean;
@@ -14563,6 +15509,8 @@ declare const SystemAgentSetupAuthStartParamsSchema: Type.TObject<{
14563
15509
  agentId: Type.TOptional<Type.TString>;
14564
15510
  authChoice: Type.TString;
14565
15511
  workspace: Type.TOptional<Type.TString>;
15512
+ /** Fresh-install opt-in for native provider conversation discovery. */
15513
+ nativeSessionCatalogsEnabled: Type.TOptional<Type.TBoolean>;
14566
15514
  }>;
14567
15515
  declare const SystemAgentSetupAuthStartResultSchema: Type.TObject<{
14568
15516
  done: Type.TBoolean;
@@ -14682,6 +15630,23 @@ declare const CronDeliverySchema: Type.TUnion<[Type.TObject<{
14682
15630
  }>]>;
14683
15631
  /** Scheduler-maintained state for the latest run/delivery outcome. */
14684
15632
  declare const CronJobStateSchema: Type.TObject<{
15633
+ streamSourceIdentity: Type.TOptional<Type.TString>;
15634
+ streamDroppedBatches: Type.TOptional<Type.TInteger>;
15635
+ streamCoalescedBatches: Type.TOptional<Type.TInteger>;
15636
+ streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
15637
+ streamLastExitAtMs: Type.TOptional<Type.TInteger>;
15638
+ lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
15639
+ lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15640
+ lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
15641
+ lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
15642
+ lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
15643
+ triggerEvalCount: Type.TOptional<Type.TInteger>;
15644
+ lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
15645
+ triggerState: Type.TOptional<Type.TUnknown>;
15646
+ streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
15647
+ streamError: Type.TOptional<Type.TString>;
15648
+ streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
15649
+ streamRestartExhausted: Type.TOptional<Type.TBoolean>;
14685
15650
  nextRunAtMs: Type.TOptional<Type.TInteger>;
14686
15651
  scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
14687
15652
  runningAtMs: Type.TOptional<Type.TInteger>;
@@ -14715,23 +15680,6 @@ declare const CronJobStateSchema: Type.TObject<{
14715
15680
  lastDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
14716
15681
  lastDeliveryError: Type.TOptional<Type.TString>;
14717
15682
  deliverySuppressionReason: Type.TOptional<Type.TString>;
14718
- lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
14719
- lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
14720
- lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
14721
- lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
14722
- lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
14723
- triggerEvalCount: Type.TOptional<Type.TInteger>;
14724
- lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
14725
- triggerState: Type.TOptional<Type.TUnknown>;
14726
- streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
14727
- streamError: Type.TOptional<Type.TString>;
14728
- streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
14729
- streamRestartExhausted: Type.TOptional<Type.TBoolean>;
14730
- streamSourceIdentity: Type.TOptional<Type.TString>;
14731
- streamDroppedBatches: Type.TOptional<Type.TInteger>;
14732
- streamCoalescedBatches: Type.TOptional<Type.TInteger>;
14733
- streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
14734
- streamLastExitAtMs: Type.TOptional<Type.TInteger>;
14735
15683
  }>;
14736
15684
  /** Persisted cron job definition returned by scheduler list/get APIs. */
14737
15685
  declare const CronJobSchema: Type.TObject<{
@@ -14833,8 +15781,6 @@ declare const CronJobSchema: Type.TObject<{
14833
15781
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
14834
15782
  }>, Type.TObject<{
14835
15783
  kind: Type.TLiteral<"heartbeat">;
14836
- }>, Type.TObject<{
14837
- kind: Type.TLiteral<"skillCollectionReview">;
14838
15784
  }>]>;
14839
15785
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
14840
15786
  to: Type.TOptional<Type.TString>;
@@ -14890,6 +15836,23 @@ declare const CronJobSchema: Type.TObject<{
14890
15836
  accountId: Type.TOptional<Type.TString>;
14891
15837
  }>]>>;
14892
15838
  state: Type.TObject<{
15839
+ streamSourceIdentity: Type.TOptional<Type.TString>;
15840
+ streamDroppedBatches: Type.TOptional<Type.TInteger>;
15841
+ streamCoalescedBatches: Type.TOptional<Type.TInteger>;
15842
+ streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
15843
+ streamLastExitAtMs: Type.TOptional<Type.TInteger>;
15844
+ lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
15845
+ lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15846
+ lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
15847
+ lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
15848
+ lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
15849
+ triggerEvalCount: Type.TOptional<Type.TInteger>;
15850
+ lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
15851
+ triggerState: Type.TOptional<Type.TUnknown>;
15852
+ streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
15853
+ streamError: Type.TOptional<Type.TString>;
15854
+ streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
15855
+ streamRestartExhausted: Type.TOptional<Type.TBoolean>;
14893
15856
  nextRunAtMs: Type.TOptional<Type.TInteger>;
14894
15857
  scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
14895
15858
  runningAtMs: Type.TOptional<Type.TInteger>;
@@ -14923,23 +15886,6 @@ declare const CronJobSchema: Type.TObject<{
14923
15886
  lastDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
14924
15887
  lastDeliveryError: Type.TOptional<Type.TString>;
14925
15888
  deliverySuppressionReason: Type.TOptional<Type.TString>;
14926
- lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
14927
- lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
14928
- lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
14929
- lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
14930
- lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
14931
- triggerEvalCount: Type.TOptional<Type.TInteger>;
14932
- lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
14933
- triggerState: Type.TOptional<Type.TUnknown>;
14934
- streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
14935
- streamError: Type.TOptional<Type.TString>;
14936
- streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
14937
- streamRestartExhausted: Type.TOptional<Type.TBoolean>;
14938
- streamSourceIdentity: Type.TOptional<Type.TString>;
14939
- streamDroppedBatches: Type.TOptional<Type.TInteger>;
14940
- streamCoalescedBatches: Type.TOptional<Type.TInteger>;
14941
- streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
14942
- streamLastExitAtMs: Type.TOptional<Type.TInteger>;
14943
15889
  }>;
14944
15890
  nextRunAtMs: Type.TOptional<Type.TInteger>;
14945
15891
  lastRunAtMs: Type.TOptional<Type.TInteger>;
@@ -15264,8 +16210,6 @@ declare const CronDeclarativeAddResultSchema: Type.TObject<{
15264
16210
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
15265
16211
  }>, Type.TObject<{
15266
16212
  kind: Type.TLiteral<"heartbeat">;
15267
- }>, Type.TObject<{
15268
- kind: Type.TLiteral<"skillCollectionReview">;
15269
16213
  }>]>;
15270
16214
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
15271
16215
  to: Type.TOptional<Type.TString>;
@@ -15321,6 +16265,23 @@ declare const CronDeclarativeAddResultSchema: Type.TObject<{
15321
16265
  accountId: Type.TOptional<Type.TString>;
15322
16266
  }>]>>;
15323
16267
  state: Type.TObject<{
16268
+ streamSourceIdentity: Type.TOptional<Type.TString>;
16269
+ streamDroppedBatches: Type.TOptional<Type.TInteger>;
16270
+ streamCoalescedBatches: Type.TOptional<Type.TInteger>;
16271
+ streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
16272
+ streamLastExitAtMs: Type.TOptional<Type.TInteger>;
16273
+ lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
16274
+ lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
16275
+ lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
16276
+ lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
16277
+ lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
16278
+ triggerEvalCount: Type.TOptional<Type.TInteger>;
16279
+ lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
16280
+ triggerState: Type.TOptional<Type.TUnknown>;
16281
+ streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
16282
+ streamError: Type.TOptional<Type.TString>;
16283
+ streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
16284
+ streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15324
16285
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15325
16286
  scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
15326
16287
  runningAtMs: Type.TOptional<Type.TInteger>;
@@ -15354,23 +16315,6 @@ declare const CronDeclarativeAddResultSchema: Type.TObject<{
15354
16315
  lastDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15355
16316
  lastDeliveryError: Type.TOptional<Type.TString>;
15356
16317
  deliverySuppressionReason: Type.TOptional<Type.TString>;
15357
- lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
15358
- lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15359
- lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
15360
- lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
15361
- lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
15362
- triggerEvalCount: Type.TOptional<Type.TInteger>;
15363
- lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
15364
- triggerState: Type.TOptional<Type.TUnknown>;
15365
- streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
15366
- streamError: Type.TOptional<Type.TString>;
15367
- streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
15368
- streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15369
- streamSourceIdentity: Type.TOptional<Type.TString>;
15370
- streamDroppedBatches: Type.TOptional<Type.TInteger>;
15371
- streamCoalescedBatches: Type.TOptional<Type.TInteger>;
15372
- streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
15373
- streamLastExitAtMs: Type.TOptional<Type.TInteger>;
15374
16318
  }>;
15375
16319
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15376
16320
  lastRunAtMs: Type.TOptional<Type.TInteger>;
@@ -15493,8 +16437,6 @@ declare const CronAddJobResultSchema: Type.TObject<{
15493
16437
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
15494
16438
  }>, Type.TObject<{
15495
16439
  kind: Type.TLiteral<"heartbeat">;
15496
- }>, Type.TObject<{
15497
- kind: Type.TLiteral<"skillCollectionReview">;
15498
16440
  }>]>;
15499
16441
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
15500
16442
  to: Type.TOptional<Type.TString>;
@@ -15550,6 +16492,23 @@ declare const CronAddJobResultSchema: Type.TObject<{
15550
16492
  accountId: Type.TOptional<Type.TString>;
15551
16493
  }>]>>;
15552
16494
  state: Type.TObject<{
16495
+ streamSourceIdentity: Type.TOptional<Type.TString>;
16496
+ streamDroppedBatches: Type.TOptional<Type.TInteger>;
16497
+ streamCoalescedBatches: Type.TOptional<Type.TInteger>;
16498
+ streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
16499
+ streamLastExitAtMs: Type.TOptional<Type.TInteger>;
16500
+ lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
16501
+ lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
16502
+ lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
16503
+ lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
16504
+ lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
16505
+ triggerEvalCount: Type.TOptional<Type.TInteger>;
16506
+ lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
16507
+ triggerState: Type.TOptional<Type.TUnknown>;
16508
+ streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
16509
+ streamError: Type.TOptional<Type.TString>;
16510
+ streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
16511
+ streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15553
16512
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15554
16513
  scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
15555
16514
  runningAtMs: Type.TOptional<Type.TInteger>;
@@ -15583,23 +16542,6 @@ declare const CronAddJobResultSchema: Type.TObject<{
15583
16542
  lastDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15584
16543
  lastDeliveryError: Type.TOptional<Type.TString>;
15585
16544
  deliverySuppressionReason: Type.TOptional<Type.TString>;
15586
- lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
15587
- lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15588
- lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
15589
- lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
15590
- lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
15591
- triggerEvalCount: Type.TOptional<Type.TInteger>;
15592
- lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
15593
- triggerState: Type.TOptional<Type.TUnknown>;
15594
- streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
15595
- streamError: Type.TOptional<Type.TString>;
15596
- streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
15597
- streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15598
- streamSourceIdentity: Type.TOptional<Type.TString>;
15599
- streamDroppedBatches: Type.TOptional<Type.TInteger>;
15600
- streamCoalescedBatches: Type.TOptional<Type.TInteger>;
15601
- streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
15602
- streamLastExitAtMs: Type.TOptional<Type.TInteger>;
15603
16545
  }>;
15604
16546
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15605
16547
  lastRunAtMs: Type.TOptional<Type.TInteger>;
@@ -15717,8 +16659,6 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
15717
16659
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
15718
16660
  }>, Type.TObject<{
15719
16661
  kind: Type.TLiteral<"heartbeat">;
15720
- }>, Type.TObject<{
15721
- kind: Type.TLiteral<"skillCollectionReview">;
15722
16662
  }>]>;
15723
16663
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
15724
16664
  to: Type.TOptional<Type.TString>;
@@ -15774,6 +16714,23 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
15774
16714
  accountId: Type.TOptional<Type.TString>;
15775
16715
  }>]>>;
15776
16716
  state: Type.TObject<{
16717
+ streamSourceIdentity: Type.TOptional<Type.TString>;
16718
+ streamDroppedBatches: Type.TOptional<Type.TInteger>;
16719
+ streamCoalescedBatches: Type.TOptional<Type.TInteger>;
16720
+ streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
16721
+ streamLastExitAtMs: Type.TOptional<Type.TInteger>;
16722
+ lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
16723
+ lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
16724
+ lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
16725
+ lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
16726
+ lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
16727
+ triggerEvalCount: Type.TOptional<Type.TInteger>;
16728
+ lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
16729
+ triggerState: Type.TOptional<Type.TUnknown>;
16730
+ streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
16731
+ streamError: Type.TOptional<Type.TString>;
16732
+ streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
16733
+ streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15777
16734
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15778
16735
  scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
15779
16736
  runningAtMs: Type.TOptional<Type.TInteger>;
@@ -15807,23 +16764,6 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
15807
16764
  lastDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15808
16765
  lastDeliveryError: Type.TOptional<Type.TString>;
15809
16766
  deliverySuppressionReason: Type.TOptional<Type.TString>;
15810
- lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
15811
- lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
15812
- lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
15813
- lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
15814
- lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
15815
- triggerEvalCount: Type.TOptional<Type.TInteger>;
15816
- lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
15817
- triggerState: Type.TOptional<Type.TUnknown>;
15818
- streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
15819
- streamError: Type.TOptional<Type.TString>;
15820
- streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
15821
- streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15822
- streamSourceIdentity: Type.TOptional<Type.TString>;
15823
- streamDroppedBatches: Type.TOptional<Type.TInteger>;
15824
- streamCoalescedBatches: Type.TOptional<Type.TInteger>;
15825
- streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
15826
- streamLastExitAtMs: Type.TOptional<Type.TInteger>;
15827
16767
  }>;
15828
16768
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15829
16769
  lastRunAtMs: Type.TOptional<Type.TInteger>;
@@ -15938,8 +16878,6 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
15938
16878
  toolsAllowIsDefault: Type.TOptional<Type.TBoolean>;
15939
16879
  }>, Type.TObject<{
15940
16880
  kind: Type.TLiteral<"heartbeat">;
15941
- }>, Type.TObject<{
15942
- kind: Type.TLiteral<"skillCollectionReview">;
15943
16881
  }>]>;
15944
16882
  delivery: Type.TOptional<Type.TUnion<[Type.TObject<{
15945
16883
  to: Type.TOptional<Type.TString>;
@@ -15995,6 +16933,23 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
15995
16933
  accountId: Type.TOptional<Type.TString>;
15996
16934
  }>]>>;
15997
16935
  state: Type.TObject<{
16936
+ streamSourceIdentity: Type.TOptional<Type.TString>;
16937
+ streamDroppedBatches: Type.TOptional<Type.TInteger>;
16938
+ streamCoalescedBatches: Type.TOptional<Type.TInteger>;
16939
+ streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
16940
+ streamLastExitAtMs: Type.TOptional<Type.TInteger>;
16941
+ lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
16942
+ lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
16943
+ lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
16944
+ lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
16945
+ lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
16946
+ triggerEvalCount: Type.TOptional<Type.TInteger>;
16947
+ lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
16948
+ triggerState: Type.TOptional<Type.TUnknown>;
16949
+ streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
16950
+ streamError: Type.TOptional<Type.TString>;
16951
+ streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
16952
+ streamRestartExhausted: Type.TOptional<Type.TBoolean>;
15998
16953
  nextRunAtMs: Type.TOptional<Type.TInteger>;
15999
16954
  scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
16000
16955
  runningAtMs: Type.TOptional<Type.TInteger>;
@@ -16028,23 +16983,6 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
16028
16983
  lastDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
16029
16984
  lastDeliveryError: Type.TOptional<Type.TString>;
16030
16985
  deliverySuppressionReason: Type.TOptional<Type.TString>;
16031
- lastFailureNotificationDelivered: Type.TOptional<Type.TBoolean>;
16032
- lastFailureNotificationDeliveryStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"delivered">, Type.TLiteral<"not-delivered">, Type.TLiteral<"unknown">, Type.TLiteral<"not-requested">]>>;
16033
- lastFailureNotificationDeliveryError: Type.TOptional<Type.TString>;
16034
- lastFailureAlertAtMs: Type.TOptional<Type.TInteger>;
16035
- lastTriggerEvalAtMs: Type.TOptional<Type.TInteger>;
16036
- triggerEvalCount: Type.TOptional<Type.TInteger>;
16037
- lastTriggerFireAtMs: Type.TOptional<Type.TInteger>;
16038
- triggerState: Type.TOptional<Type.TUnknown>;
16039
- streamStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"starting">, Type.TLiteral<"running">, Type.TLiteral<"restarting">, Type.TLiteral<"stopped">, Type.TLiteral<"disabled">, Type.TLiteral<"error">]>>;
16040
- streamError: Type.TOptional<Type.TString>;
16041
- streamConsecutiveFailures: Type.TOptional<Type.TInteger>;
16042
- streamRestartExhausted: Type.TOptional<Type.TBoolean>;
16043
- streamSourceIdentity: Type.TOptional<Type.TString>;
16044
- streamDroppedBatches: Type.TOptional<Type.TInteger>;
16045
- streamCoalescedBatches: Type.TOptional<Type.TInteger>;
16046
- streamLastStartedAtMs: Type.TOptional<Type.TInteger>;
16047
- streamLastExitAtMs: Type.TOptional<Type.TInteger>;
16048
16986
  }>;
16049
16987
  nextRunAtMs: Type.TOptional<Type.TInteger>;
16050
16988
  lastRunAtMs: Type.TOptional<Type.TInteger>;
@@ -16228,6 +17166,7 @@ declare const RequiredNodeCommandSchema: Type.TObject<{
16228
17166
  }>;
16229
17167
  /** Worker-only lifecycle metadata layered onto the existing environment projection. */
16230
17168
  declare const WorkerEnvironmentMetadataSchema: Type.TObject<{
17169
+ profileId: Type.TOptional<Type.TString>;
16231
17170
  providerId: Type.TString;
16232
17171
  leaseId: Type.TOptional<Type.TString>;
16233
17172
  state: Type.TUnion<[Type.TLiteral<"requested">, Type.TLiteral<"provisioning">, Type.TLiteral<"bootstrapping">, Type.TLiteral<"ready">, Type.TLiteral<"attached">, Type.TLiteral<"idle">, Type.TLiteral<"draining">, Type.TLiteral<"destroying">, Type.TLiteral<"destroyed">, Type.TLiteral<"failed">, Type.TLiteral<"orphaned">]>;
@@ -16276,6 +17215,7 @@ declare const EnvironmentSummarySchema: Type.TObject<{
16276
17215
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16277
17216
  }>>>;
16278
17217
  worker: Type.TOptional<Type.TObject<{
17218
+ profileId: Type.TOptional<Type.TString>;
16279
17219
  providerId: Type.TString;
16280
17220
  leaseId: Type.TOptional<Type.TString>;
16281
17221
  state: Type.TUnion<[Type.TLiteral<"requested">, Type.TLiteral<"provisioning">, Type.TLiteral<"bootstrapping">, Type.TLiteral<"ready">, Type.TLiteral<"attached">, Type.TLiteral<"idle">, Type.TLiteral<"draining">, Type.TLiteral<"destroying">, Type.TLiteral<"destroyed">, Type.TLiteral<"failed">, Type.TLiteral<"orphaned">]>;
@@ -16287,6 +17227,10 @@ declare const EnvironmentSummarySchema: Type.TObject<{
16287
17227
  desktop: Type.TOptional<Type.TBoolean>;
16288
17228
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16289
17229
  }>>;
17230
+ preparation: Type.TOptional<Type.TObject<{
17231
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17232
+ key: Type.TString;
17233
+ }>>;
16290
17234
  }>;
16291
17235
  /** Optional runtime scope for listing known environments. */
16292
17236
  declare const EnvironmentsListParamsSchema: Type.TObject<{
@@ -16299,6 +17243,7 @@ declare const WorkerMachineOptionSchema: Type.TObject<{
16299
17243
  cpu: Type.TOptional<Type.TInteger>;
16300
17244
  memoryGb: Type.TOptional<Type.TInteger>;
16301
17245
  default: Type.TOptional<Type.TBoolean>;
17246
+ os: Type.TOptional<Type.TString>;
16302
17247
  }>;
16303
17248
  declare const WorkerMachineOptionsSchema: Type.TArray<Type.TObject<{
16304
17249
  id: Type.TString;
@@ -16306,7 +17251,15 @@ declare const WorkerMachineOptionsSchema: Type.TArray<Type.TObject<{
16306
17251
  cpu: Type.TOptional<Type.TInteger>;
16307
17252
  memoryGb: Type.TOptional<Type.TInteger>;
16308
17253
  default: Type.TOptional<Type.TBoolean>;
17254
+ os: Type.TOptional<Type.TString>;
16309
17255
  }>>;
17256
+ /** Provider-authored operating system choice for one configured worker profile. */
17257
+ declare const WorkerOperatingSystemSchema: Type.TObject<{
17258
+ id: Type.TString;
17259
+ label: Type.TString;
17260
+ default: Type.TOptional<Type.TBoolean>;
17261
+ disabledReason: Type.TOptional<Type.TString>;
17262
+ }>;
16310
17263
  /** Placement execution modes shared by runtime requirements and worker providers. */
16311
17264
  declare const WorkerExecutionModeSchema: Type.TUnion<[Type.TLiteral<"worker-turn">, Type.TLiteral<"remote-exec">]>;
16312
17265
  /** List response containing all gateway-visible environment summaries. */
@@ -16347,6 +17300,7 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
16347
17300
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16348
17301
  }>>>;
16349
17302
  worker: Type.TOptional<Type.TObject<{
17303
+ profileId: Type.TOptional<Type.TString>;
16350
17304
  providerId: Type.TString;
16351
17305
  leaseId: Type.TOptional<Type.TString>;
16352
17306
  state: Type.TUnion<[Type.TLiteral<"requested">, Type.TLiteral<"provisioning">, Type.TLiteral<"bootstrapping">, Type.TLiteral<"ready">, Type.TLiteral<"attached">, Type.TLiteral<"idle">, Type.TLiteral<"draining">, Type.TLiteral<"destroying">, Type.TLiteral<"destroyed">, Type.TLiteral<"failed">, Type.TLiteral<"orphaned">]>;
@@ -16358,6 +17312,10 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
16358
17312
  desktop: Type.TOptional<Type.TBoolean>;
16359
17313
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16360
17314
  }>>;
17315
+ preparation: Type.TOptional<Type.TObject<{
17316
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17317
+ key: Type.TString;
17318
+ }>>;
16361
17319
  }>>;
16362
17320
  profiles: Type.TOptional<Type.TArray<Type.TObject<{
16363
17321
  id: Type.TString;
@@ -16371,6 +17329,13 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
16371
17329
  cpu: Type.TOptional<Type.TInteger>;
16372
17330
  memoryGb: Type.TOptional<Type.TInteger>;
16373
17331
  default: Type.TOptional<Type.TBoolean>;
17332
+ os: Type.TOptional<Type.TString>;
17333
+ }>>>;
17334
+ operatingSystems: Type.TOptional<Type.TArray<Type.TObject<{
17335
+ id: Type.TString;
17336
+ label: Type.TString;
17337
+ default: Type.TOptional<Type.TBoolean>;
17338
+ disabledReason: Type.TOptional<Type.TString>;
16374
17339
  }>>>;
16375
17340
  }>>>;
16376
17341
  }>;
@@ -16411,6 +17376,7 @@ declare const EnvironmentsStatusResultSchema: Type.TObject<{
16411
17376
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16412
17377
  }>>>;
16413
17378
  worker: Type.TOptional<Type.TObject<{
17379
+ profileId: Type.TOptional<Type.TString>;
16414
17380
  providerId: Type.TString;
16415
17381
  leaseId: Type.TOptional<Type.TString>;
16416
17382
  state: Type.TUnion<[Type.TLiteral<"requested">, Type.TLiteral<"provisioning">, Type.TLiteral<"bootstrapping">, Type.TLiteral<"ready">, Type.TLiteral<"attached">, Type.TLiteral<"idle">, Type.TLiteral<"draining">, Type.TLiteral<"destroying">, Type.TLiteral<"destroyed">, Type.TLiteral<"failed">, Type.TLiteral<"orphaned">]>;
@@ -16422,6 +17388,10 @@ declare const EnvironmentsStatusResultSchema: Type.TObject<{
16422
17388
  desktop: Type.TOptional<Type.TBoolean>;
16423
17389
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16424
17390
  }>>;
17391
+ preparation: Type.TOptional<Type.TObject<{
17392
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17393
+ key: Type.TString;
17394
+ }>>;
16425
17395
  }>;
16426
17396
  /** Creates a worker environment from one configured provider profile. */
16427
17397
  declare const EnvironmentsCreateParamsSchema: Type.TObject<{
@@ -16461,6 +17431,7 @@ declare const EnvironmentsCreateResultSchema: Type.TObject<{
16461
17431
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16462
17432
  }>>>;
16463
17433
  worker: Type.TOptional<Type.TObject<{
17434
+ profileId: Type.TOptional<Type.TString>;
16464
17435
  providerId: Type.TString;
16465
17436
  leaseId: Type.TOptional<Type.TString>;
16466
17437
  state: Type.TUnion<[Type.TLiteral<"requested">, Type.TLiteral<"provisioning">, Type.TLiteral<"bootstrapping">, Type.TLiteral<"ready">, Type.TLiteral<"attached">, Type.TLiteral<"idle">, Type.TLiteral<"draining">, Type.TLiteral<"destroying">, Type.TLiteral<"destroyed">, Type.TLiteral<"failed">, Type.TLiteral<"orphaned">]>;
@@ -16472,6 +17443,20 @@ declare const EnvironmentsCreateResultSchema: Type.TObject<{
16472
17443
  desktop: Type.TOptional<Type.TBoolean>;
16473
17444
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16474
17445
  }>>;
17446
+ preparation: Type.TOptional<Type.TObject<{
17447
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17448
+ key: Type.TString;
17449
+ }>>;
17450
+ }>;
17451
+ /** Prepares a configured profile's local Git project without dispatching a session. */
17452
+ declare const EnvironmentsPrepareParamsSchema: Type.TObject<{
17453
+ profileId: Type.TString;
17454
+ projectPath: Type.TString;
17455
+ }>;
17456
+ declare const EnvironmentsPrepareResultSchema: Type.TObject<{
17457
+ environmentId: Type.TString;
17458
+ preparationKey: Type.TString;
17459
+ reused: Type.TBoolean;
16475
17460
  }>;
16476
17461
  /** Destroys one durable worker environment by its gateway-owned id. */
16477
17462
  declare const EnvironmentsDestroyParamsSchema: Type.TObject<{
@@ -16511,6 +17496,7 @@ declare const EnvironmentsDestroyResultSchema: Type.TObject<{
16511
17496
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16512
17497
  }>>>;
16513
17498
  worker: Type.TOptional<Type.TObject<{
17499
+ profileId: Type.TOptional<Type.TString>;
16514
17500
  providerId: Type.TString;
16515
17501
  leaseId: Type.TOptional<Type.TString>;
16516
17502
  state: Type.TUnion<[Type.TLiteral<"requested">, Type.TLiteral<"provisioning">, Type.TLiteral<"bootstrapping">, Type.TLiteral<"ready">, Type.TLiteral<"attached">, Type.TLiteral<"idle">, Type.TLiteral<"draining">, Type.TLiteral<"destroying">, Type.TLiteral<"destroyed">, Type.TLiteral<"failed">, Type.TLiteral<"orphaned">]>;
@@ -16522,6 +17508,10 @@ declare const EnvironmentsDestroyResultSchema: Type.TObject<{
16522
17508
  desktop: Type.TOptional<Type.TBoolean>;
16523
17509
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16524
17510
  }>>;
17511
+ preparation: Type.TOptional<Type.TObject<{
17512
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17513
+ key: Type.TString;
17514
+ }>>;
16525
17515
  }>;
16526
17516
  declare const WorkerDesktopObserveParamsSchema: Type.TObject<{
16527
17517
  environmentId: Type.TString;
@@ -16552,10 +17542,13 @@ type RequiredNodeCommandState = Static<typeof RequiredNodeCommandStateSchema>;
16552
17542
  type RequiredNodeCommand = Static<typeof RequiredNodeCommandSchema>;
16553
17543
  type WorkerEnvironmentMetadata = Static<typeof WorkerEnvironmentMetadataSchema>;
16554
17544
  type WorkerMachineOption = Static<typeof WorkerMachineOptionSchema>;
17545
+ type WorkerOperatingSystem = Static<typeof WorkerOperatingSystemSchema>;
16555
17546
  type WorkerExecutionMode = Static<typeof WorkerExecutionModeSchema>;
16556
17547
  type EnvironmentSummary = Static<typeof EnvironmentSummarySchema>;
16557
17548
  type EnvironmentsCreateParams = Static<typeof EnvironmentsCreateParamsSchema>;
16558
17549
  type EnvironmentsCreateResult = Static<typeof EnvironmentsCreateResultSchema>;
17550
+ type EnvironmentsPrepareParams = Static<typeof EnvironmentsPrepareParamsSchema>;
17551
+ type EnvironmentsPrepareResult = Static<typeof EnvironmentsPrepareResultSchema>;
16559
17552
  type EnvironmentsDestroyParams = Static<typeof EnvironmentsDestroyParamsSchema>;
16560
17553
  type EnvironmentsDestroyResult = Static<typeof EnvironmentsDestroyResultSchema>;
16561
17554
  type EnvironmentsListParams = Static<typeof EnvironmentsListParamsSchema>;
@@ -17867,10 +18860,15 @@ declare const ChatInjectParamsSchema: Type.TObject<{
17867
18860
  }>;
17868
18861
  /** Coarse startup stages shown while a run has not produced visible activity yet. */
17869
18862
  declare const ChatRunStartupPhaseSchema: Type.TUnion<[Type.TLiteral<"preparing_workspace">, Type.TLiteral<"naming_worktree">, Type.TLiteral<"creating_worktree">, Type.TLiteral<"running_setup">, Type.TLiteral<"provisioning_environment">, Type.TLiteral<"preparing_context">, Type.TLiteral<"starting_model">]>;
17870
- /** Non-terminal run status emitted before assistant or tool activity becomes visible. */
18863
+ /** Transient working status; only the run owner publishes terminal failures. */
17871
18864
  declare const ChatStatusEventSchema: Type.TObject<{
17872
18865
  state: Type.TLiteral<"status">;
17873
18866
  phase: Type.TUnion<[Type.TLiteral<"preparing_workspace">, Type.TLiteral<"naming_worktree">, Type.TLiteral<"creating_worktree">, Type.TLiteral<"running_setup">, Type.TLiteral<"provisioning_environment">, Type.TLiteral<"preparing_context">, Type.TLiteral<"starting_model">]>;
18867
+ retry: Type.TOptional<Type.TObject<{
18868
+ attempt: Type.TInteger;
18869
+ maxAttempts: Type.TInteger;
18870
+ reason: Type.TLiteral<"rate_limit">;
18871
+ }>>;
17874
18872
  runId: Type.TString;
17875
18873
  sessionKey: Type.TString;
17876
18874
  agentId: Type.TOptional<Type.TString>;
@@ -17954,6 +18952,11 @@ declare const ChatErrorEventSchema: Type.TObject<{
17954
18952
  declare const ChatEventSchema: Type.TUnion<[Type.TObject<{
17955
18953
  state: Type.TLiteral<"status">;
17956
18954
  phase: Type.TUnion<[Type.TLiteral<"preparing_workspace">, Type.TLiteral<"naming_worktree">, Type.TLiteral<"creating_worktree">, Type.TLiteral<"running_setup">, Type.TLiteral<"provisioning_environment">, Type.TLiteral<"preparing_context">, Type.TLiteral<"starting_model">]>;
18955
+ retry: Type.TOptional<Type.TObject<{
18956
+ attempt: Type.TInteger;
18957
+ maxAttempts: Type.TInteger;
18958
+ reason: Type.TLiteral<"rate_limit">;
18959
+ }>>;
17957
18960
  runId: Type.TString;
17958
18961
  sessionKey: Type.TString;
17959
18962
  agentId: Type.TOptional<Type.TString>;
@@ -18439,6 +19442,7 @@ declare const QuestionRequestQuestionSchema: Type.TObject<{
18439
19442
  questionId: Type.TString;
18440
19443
  header: Type.TString;
18441
19444
  question: Type.TString;
19445
+ url: Type.TOptional<Type.TString>;
18442
19446
  options: Type.TArray<Type.TObject<{
18443
19447
  label: Type.TString;
18444
19448
  description: Type.TOptional<Type.TString>;
@@ -18462,6 +19466,7 @@ declare const QuestionSchema: Type.TObject<{
18462
19466
  questionId: Type.TString;
18463
19467
  header: Type.TString;
18464
19468
  question: Type.TString;
19469
+ url: Type.TOptional<Type.TString>;
18465
19470
  options: Type.TArray<Type.TObject<{
18466
19471
  label: Type.TString;
18467
19472
  description: Type.TOptional<Type.TString>;
@@ -18496,6 +19501,7 @@ declare const QuestionRecordSchema: Type.TObject<{
18496
19501
  questionId: Type.TString;
18497
19502
  header: Type.TString;
18498
19503
  question: Type.TString;
19504
+ url: Type.TOptional<Type.TString>;
18499
19505
  options: Type.TArray<Type.TObject<{
18500
19506
  label: Type.TString;
18501
19507
  description: Type.TOptional<Type.TString>;
@@ -18527,6 +19533,7 @@ declare const QuestionRequestParamsSchema: Type.TObject<{
18527
19533
  questionId: Type.TString;
18528
19534
  header: Type.TString;
18529
19535
  question: Type.TString;
19536
+ url: Type.TOptional<Type.TString>;
18530
19537
  options: Type.TArray<Type.TObject<{
18531
19538
  label: Type.TString;
18532
19539
  description: Type.TOptional<Type.TString>;
@@ -18603,6 +19610,7 @@ declare const QuestionGetResultSchema: Type.TObject<{
18603
19610
  questionId: Type.TString;
18604
19611
  header: Type.TString;
18605
19612
  question: Type.TString;
19613
+ url: Type.TOptional<Type.TString>;
18606
19614
  options: Type.TArray<Type.TObject<{
18607
19615
  label: Type.TString;
18608
19616
  description: Type.TOptional<Type.TString>;
@@ -18641,6 +19649,7 @@ declare const QuestionListResultSchema: Type.TObject<{
18641
19649
  questionId: Type.TString;
18642
19650
  header: Type.TString;
18643
19651
  question: Type.TString;
19652
+ url: Type.TOptional<Type.TString>;
18644
19653
  options: Type.TArray<Type.TObject<{
18645
19654
  label: Type.TString;
18646
19655
  description: Type.TOptional<Type.TString>;
@@ -18677,6 +19686,7 @@ declare const QuestionRequestedEventSchema: Type.TObject<{
18677
19686
  questionId: Type.TString;
18678
19687
  header: Type.TString;
18679
19688
  question: Type.TString;
19689
+ url: Type.TOptional<Type.TString>;
18680
19690
  options: Type.TArray<Type.TObject<{
18681
19691
  label: Type.TString;
18682
19692
  description: Type.TOptional<Type.TString>;
@@ -18888,6 +19898,13 @@ declare const SessionPlacementRunnerSchema: Type.TObject<{
18888
19898
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
18889
19899
  deviceId: Type.TOptional<Type.TString>;
18890
19900
  }>;
19901
+ declare const SessionPlacementMachineSchema: Type.TObject<{
19902
+ class: Type.TOptional<Type.TString>;
19903
+ os: Type.TOptional<Type.TString>;
19904
+ osLabel: Type.TOptional<Type.TString>;
19905
+ cpu: Type.TOptional<Type.TInteger>;
19906
+ memoryGb: Type.TOptional<Type.TInteger>;
19907
+ }>;
18891
19908
  /** Gateway-visible placement projection; `state` remains the closed discriminator. */
18892
19909
  declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18893
19910
  generation: Type.TInteger;
@@ -18905,6 +19922,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18905
19922
  environmentId: Type.TOptional<Type.TString>;
18906
19923
  providerId: Type.TOptional<Type.TString>;
18907
19924
  profileId: Type.TOptional<Type.TString>;
19925
+ machine: Type.TOptional<Type.TObject<{
19926
+ class: Type.TOptional<Type.TString>;
19927
+ os: Type.TOptional<Type.TString>;
19928
+ osLabel: Type.TOptional<Type.TString>;
19929
+ cpu: Type.TOptional<Type.TInteger>;
19930
+ memoryGb: Type.TOptional<Type.TInteger>;
19931
+ }>>;
18908
19932
  generation: Type.TInteger;
18909
19933
  createdAtMs: Type.TInteger;
18910
19934
  updatedAtMs: Type.TInteger;
@@ -18915,6 +19939,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18915
19939
  workerBundleHash: Type.TString;
18916
19940
  providerId: Type.TOptional<Type.TString>;
18917
19941
  profileId: Type.TOptional<Type.TString>;
19942
+ machine: Type.TOptional<Type.TObject<{
19943
+ class: Type.TOptional<Type.TString>;
19944
+ os: Type.TOptional<Type.TString>;
19945
+ osLabel: Type.TOptional<Type.TString>;
19946
+ cpu: Type.TOptional<Type.TInteger>;
19947
+ memoryGb: Type.TOptional<Type.TInteger>;
19948
+ }>>;
18918
19949
  generation: Type.TInteger;
18919
19950
  createdAtMs: Type.TInteger;
18920
19951
  updatedAtMs: Type.TInteger;
@@ -18927,6 +19958,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18927
19958
  workerBundleHash: Type.TString;
18928
19959
  providerId: Type.TOptional<Type.TString>;
18929
19960
  profileId: Type.TOptional<Type.TString>;
19961
+ machine: Type.TOptional<Type.TObject<{
19962
+ class: Type.TOptional<Type.TString>;
19963
+ os: Type.TOptional<Type.TString>;
19964
+ osLabel: Type.TOptional<Type.TString>;
19965
+ cpu: Type.TOptional<Type.TInteger>;
19966
+ memoryGb: Type.TOptional<Type.TInteger>;
19967
+ }>>;
18930
19968
  generation: Type.TInteger;
18931
19969
  createdAtMs: Type.TInteger;
18932
19970
  updatedAtMs: Type.TInteger;
@@ -18938,6 +19976,7 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18938
19976
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
18939
19977
  deviceId: Type.TOptional<Type.TString>;
18940
19978
  }>>;
19979
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
18941
19980
  diskSpace: Type.TOptional<Type.TObject<{
18942
19981
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
18943
19982
  availableBytes: Type.TInteger;
@@ -18958,12 +19997,20 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18958
19997
  workerBundleHash: Type.TString;
18959
19998
  providerId: Type.TOptional<Type.TString>;
18960
19999
  profileId: Type.TOptional<Type.TString>;
20000
+ machine: Type.TOptional<Type.TObject<{
20001
+ class: Type.TOptional<Type.TString>;
20002
+ os: Type.TOptional<Type.TString>;
20003
+ osLabel: Type.TOptional<Type.TString>;
20004
+ cpu: Type.TOptional<Type.TInteger>;
20005
+ memoryGb: Type.TOptional<Type.TInteger>;
20006
+ }>>;
18961
20007
  generation: Type.TInteger;
18962
20008
  createdAtMs: Type.TInteger;
18963
20009
  updatedAtMs: Type.TInteger;
18964
20010
  stateChangedAtMs: Type.TInteger;
18965
20011
  state: Type.TLiteral<"active">;
18966
20012
  }>, Type.TObject<{
20013
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
18967
20014
  diskSpace: Type.TOptional<Type.TObject<{
18968
20015
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
18969
20016
  availableBytes: Type.TInteger;
@@ -18984,6 +20031,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
18984
20031
  workerBundleHash: Type.TString;
18985
20032
  providerId: Type.TOptional<Type.TString>;
18986
20033
  profileId: Type.TOptional<Type.TString>;
20034
+ machine: Type.TOptional<Type.TObject<{
20035
+ class: Type.TOptional<Type.TString>;
20036
+ os: Type.TOptional<Type.TString>;
20037
+ osLabel: Type.TOptional<Type.TString>;
20038
+ cpu: Type.TOptional<Type.TInteger>;
20039
+ memoryGb: Type.TOptional<Type.TInteger>;
20040
+ }>>;
18987
20041
  generation: Type.TInteger;
18988
20042
  createdAtMs: Type.TInteger;
18989
20043
  updatedAtMs: Type.TInteger;
@@ -19010,6 +20064,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19010
20064
  workerBundleHash: Type.TString;
19011
20065
  providerId: Type.TOptional<Type.TString>;
19012
20066
  profileId: Type.TOptional<Type.TString>;
20067
+ machine: Type.TOptional<Type.TObject<{
20068
+ class: Type.TOptional<Type.TString>;
20069
+ os: Type.TOptional<Type.TString>;
20070
+ osLabel: Type.TOptional<Type.TString>;
20071
+ cpu: Type.TOptional<Type.TInteger>;
20072
+ memoryGb: Type.TOptional<Type.TInteger>;
20073
+ }>>;
19013
20074
  generation: Type.TInteger;
19014
20075
  createdAtMs: Type.TInteger;
19015
20076
  updatedAtMs: Type.TInteger;
@@ -19032,6 +20093,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19032
20093
  workerBundleHash: Type.TOptional<Type.TString>;
19033
20094
  providerId: Type.TOptional<Type.TString>;
19034
20095
  profileId: Type.TOptional<Type.TString>;
20096
+ machine: Type.TOptional<Type.TObject<{
20097
+ class: Type.TOptional<Type.TString>;
20098
+ os: Type.TOptional<Type.TString>;
20099
+ osLabel: Type.TOptional<Type.TString>;
20100
+ cpu: Type.TOptional<Type.TInteger>;
20101
+ memoryGb: Type.TOptional<Type.TInteger>;
20102
+ }>>;
19035
20103
  generation: Type.TInteger;
19036
20104
  createdAtMs: Type.TInteger;
19037
20105
  updatedAtMs: Type.TInteger;
@@ -19056,6 +20124,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19056
20124
  workerBundleHash: Type.TOptional<Type.TString>;
19057
20125
  providerId: Type.TOptional<Type.TString>;
19058
20126
  profileId: Type.TOptional<Type.TString>;
20127
+ machine: Type.TOptional<Type.TObject<{
20128
+ class: Type.TOptional<Type.TString>;
20129
+ os: Type.TOptional<Type.TString>;
20130
+ osLabel: Type.TOptional<Type.TString>;
20131
+ cpu: Type.TOptional<Type.TInteger>;
20132
+ memoryGb: Type.TOptional<Type.TInteger>;
20133
+ }>>;
19059
20134
  generation: Type.TInteger;
19060
20135
  createdAtMs: Type.TInteger;
19061
20136
  updatedAtMs: Type.TInteger;
@@ -19076,6 +20151,7 @@ declare const SessionsDispatchParamsSchema: Type.TObject<{
19076
20151
  deviceId: Type.TOptional<Type.TString>;
19077
20152
  autoDevice: Type.TOptional<Type.TLiteral<true>>;
19078
20153
  machineClass: Type.TOptional<Type.TString>;
20154
+ os: Type.TOptional<Type.TString>;
19079
20155
  }>;
19080
20156
  /** Result returned once session dispatch reaches durable worker ownership. */
19081
20157
  declare const SessionsDispatchResultSchema: Type.TObject<{
@@ -19088,6 +20164,7 @@ declare const SessionsDispatchResultSchema: Type.TObject<{
19088
20164
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19089
20165
  deviceId: Type.TOptional<Type.TString>;
19090
20166
  }>>;
20167
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19091
20168
  diskSpace: Type.TOptional<Type.TObject<{
19092
20169
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19093
20170
  availableBytes: Type.TInteger;
@@ -19108,6 +20185,13 @@ declare const SessionsDispatchResultSchema: Type.TObject<{
19108
20185
  workerBundleHash: Type.TString;
19109
20186
  providerId: Type.TOptional<Type.TString>;
19110
20187
  profileId: Type.TOptional<Type.TString>;
20188
+ machine: Type.TOptional<Type.TObject<{
20189
+ class: Type.TOptional<Type.TString>;
20190
+ os: Type.TOptional<Type.TString>;
20191
+ osLabel: Type.TOptional<Type.TString>;
20192
+ cpu: Type.TOptional<Type.TInteger>;
20193
+ memoryGb: Type.TOptional<Type.TInteger>;
20194
+ }>>;
19111
20195
  generation: Type.TInteger;
19112
20196
  createdAtMs: Type.TInteger;
19113
20197
  updatedAtMs: Type.TInteger;
@@ -19144,6 +20228,13 @@ declare const SessionsReclaimResultPlacementSchema: Type.TUnion<[Type.TObject<{
19144
20228
  workerBundleHash: Type.TOptional<Type.TString>;
19145
20229
  providerId: Type.TOptional<Type.TString>;
19146
20230
  profileId: Type.TOptional<Type.TString>;
20231
+ machine: Type.TOptional<Type.TObject<{
20232
+ class: Type.TOptional<Type.TString>;
20233
+ os: Type.TOptional<Type.TString>;
20234
+ osLabel: Type.TOptional<Type.TString>;
20235
+ cpu: Type.TOptional<Type.TInteger>;
20236
+ memoryGb: Type.TOptional<Type.TInteger>;
20237
+ }>>;
19147
20238
  generation: Type.TInteger;
19148
20239
  createdAtMs: Type.TInteger;
19149
20240
  updatedAtMs: Type.TInteger;
@@ -19178,6 +20269,13 @@ declare const SessionsReclaimResultSchema: Type.TObject<{
19178
20269
  workerBundleHash: Type.TOptional<Type.TString>;
19179
20270
  providerId: Type.TOptional<Type.TString>;
19180
20271
  profileId: Type.TOptional<Type.TString>;
20272
+ machine: Type.TOptional<Type.TObject<{
20273
+ class: Type.TOptional<Type.TString>;
20274
+ os: Type.TOptional<Type.TString>;
20275
+ osLabel: Type.TOptional<Type.TString>;
20276
+ cpu: Type.TOptional<Type.TInteger>;
20277
+ memoryGb: Type.TOptional<Type.TInteger>;
20278
+ }>>;
19181
20279
  generation: Type.TInteger;
19182
20280
  createdAtMs: Type.TInteger;
19183
20281
  updatedAtMs: Type.TInteger;
@@ -19200,6 +20298,7 @@ declare const SessionMoveProfileTargetSchema: Type.TObject<{
19200
20298
  kind: Type.TLiteral<"profile">;
19201
20299
  profileId: Type.TString;
19202
20300
  machineClass: Type.TOptional<Type.TString>;
20301
+ os: Type.TOptional<Type.TString>;
19203
20302
  }>;
19204
20303
  /** Moves the session to one paired device worker. */
19205
20304
  declare const SessionMoveDeviceTargetSchema: Type.TObject<{
@@ -19213,6 +20312,7 @@ declare const SessionMoveTargetSchema: Type.TUnion<[Type.TObject<{
19213
20312
  kind: Type.TLiteral<"profile">;
19214
20313
  profileId: Type.TString;
19215
20314
  machineClass: Type.TOptional<Type.TString>;
20315
+ os: Type.TOptional<Type.TString>;
19216
20316
  }>, Type.TObject<{
19217
20317
  kind: Type.TLiteral<"device">;
19218
20318
  deviceId: Type.TString;
@@ -19225,6 +20325,7 @@ declare const SessionPlacementMoveSchema: Type.TObject<{
19225
20325
  kind: Type.TLiteral<"profile">;
19226
20326
  profileId: Type.TString;
19227
20327
  machineClass: Type.TOptional<Type.TString>;
20328
+ os: Type.TOptional<Type.TString>;
19228
20329
  }>, Type.TObject<{
19229
20330
  kind: Type.TLiteral<"device">;
19230
20331
  deviceId: Type.TString;
@@ -19247,6 +20348,7 @@ declare const SessionsMoveParamsSchema: Type.TObject<{
19247
20348
  kind: Type.TLiteral<"profile">;
19248
20349
  profileId: Type.TString;
19249
20350
  machineClass: Type.TOptional<Type.TString>;
20351
+ os: Type.TOptional<Type.TString>;
19250
20352
  }>, Type.TObject<{
19251
20353
  kind: Type.TLiteral<"device">;
19252
20354
  deviceId: Type.TString;
@@ -19283,6 +20385,13 @@ declare const SessionPlacementProtocolSchemas: {
19283
20385
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19284
20386
  deviceId: Type.TOptional<Type.TString>;
19285
20387
  }>;
20388
+ readonly SessionPlacementMachine: Type.TObject<{
20389
+ class: Type.TOptional<Type.TString>;
20390
+ os: Type.TOptional<Type.TString>;
20391
+ osLabel: Type.TOptional<Type.TString>;
20392
+ cpu: Type.TOptional<Type.TInteger>;
20393
+ memoryGb: Type.TOptional<Type.TInteger>;
20394
+ }>;
19286
20395
  readonly LocalSessionPlacement: Type.TObject<{
19287
20396
  generation: Type.TInteger;
19288
20397
  createdAtMs: Type.TInteger;
@@ -19301,6 +20410,13 @@ declare const SessionPlacementProtocolSchemas: {
19301
20410
  environmentId: Type.TOptional<Type.TString>;
19302
20411
  providerId: Type.TOptional<Type.TString>;
19303
20412
  profileId: Type.TOptional<Type.TString>;
20413
+ machine: Type.TOptional<Type.TObject<{
20414
+ class: Type.TOptional<Type.TString>;
20415
+ os: Type.TOptional<Type.TString>;
20416
+ osLabel: Type.TOptional<Type.TString>;
20417
+ cpu: Type.TOptional<Type.TInteger>;
20418
+ memoryGb: Type.TOptional<Type.TInteger>;
20419
+ }>>;
19304
20420
  generation: Type.TInteger;
19305
20421
  createdAtMs: Type.TInteger;
19306
20422
  updatedAtMs: Type.TInteger;
@@ -19312,6 +20428,13 @@ declare const SessionPlacementProtocolSchemas: {
19312
20428
  workerBundleHash: Type.TString;
19313
20429
  providerId: Type.TOptional<Type.TString>;
19314
20430
  profileId: Type.TOptional<Type.TString>;
20431
+ machine: Type.TOptional<Type.TObject<{
20432
+ class: Type.TOptional<Type.TString>;
20433
+ os: Type.TOptional<Type.TString>;
20434
+ osLabel: Type.TOptional<Type.TString>;
20435
+ cpu: Type.TOptional<Type.TInteger>;
20436
+ memoryGb: Type.TOptional<Type.TInteger>;
20437
+ }>>;
19315
20438
  generation: Type.TInteger;
19316
20439
  createdAtMs: Type.TInteger;
19317
20440
  updatedAtMs: Type.TInteger;
@@ -19325,6 +20448,13 @@ declare const SessionPlacementProtocolSchemas: {
19325
20448
  workerBundleHash: Type.TString;
19326
20449
  providerId: Type.TOptional<Type.TString>;
19327
20450
  profileId: Type.TOptional<Type.TString>;
20451
+ machine: Type.TOptional<Type.TObject<{
20452
+ class: Type.TOptional<Type.TString>;
20453
+ os: Type.TOptional<Type.TString>;
20454
+ osLabel: Type.TOptional<Type.TString>;
20455
+ cpu: Type.TOptional<Type.TInteger>;
20456
+ memoryGb: Type.TOptional<Type.TInteger>;
20457
+ }>>;
19328
20458
  generation: Type.TInteger;
19329
20459
  createdAtMs: Type.TInteger;
19330
20460
  updatedAtMs: Type.TInteger;
@@ -19337,6 +20467,7 @@ declare const SessionPlacementProtocolSchemas: {
19337
20467
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19338
20468
  deviceId: Type.TOptional<Type.TString>;
19339
20469
  }>>;
20470
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19340
20471
  diskSpace: Type.TOptional<Type.TObject<{
19341
20472
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19342
20473
  availableBytes: Type.TInteger;
@@ -19357,6 +20488,13 @@ declare const SessionPlacementProtocolSchemas: {
19357
20488
  workerBundleHash: Type.TString;
19358
20489
  providerId: Type.TOptional<Type.TString>;
19359
20490
  profileId: Type.TOptional<Type.TString>;
20491
+ machine: Type.TOptional<Type.TObject<{
20492
+ class: Type.TOptional<Type.TString>;
20493
+ os: Type.TOptional<Type.TString>;
20494
+ osLabel: Type.TOptional<Type.TString>;
20495
+ cpu: Type.TOptional<Type.TInteger>;
20496
+ memoryGb: Type.TOptional<Type.TInteger>;
20497
+ }>>;
19360
20498
  generation: Type.TInteger;
19361
20499
  createdAtMs: Type.TInteger;
19362
20500
  updatedAtMs: Type.TInteger;
@@ -19364,6 +20502,7 @@ declare const SessionPlacementProtocolSchemas: {
19364
20502
  state: Type.TLiteral<"active">;
19365
20503
  }>;
19366
20504
  readonly DrainingSessionPlacement: Type.TObject<{
20505
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19367
20506
  diskSpace: Type.TOptional<Type.TObject<{
19368
20507
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19369
20508
  availableBytes: Type.TInteger;
@@ -19384,6 +20523,13 @@ declare const SessionPlacementProtocolSchemas: {
19384
20523
  workerBundleHash: Type.TString;
19385
20524
  providerId: Type.TOptional<Type.TString>;
19386
20525
  profileId: Type.TOptional<Type.TString>;
20526
+ machine: Type.TOptional<Type.TObject<{
20527
+ class: Type.TOptional<Type.TString>;
20528
+ os: Type.TOptional<Type.TString>;
20529
+ osLabel: Type.TOptional<Type.TString>;
20530
+ cpu: Type.TOptional<Type.TInteger>;
20531
+ memoryGb: Type.TOptional<Type.TInteger>;
20532
+ }>>;
19387
20533
  generation: Type.TInteger;
19388
20534
  createdAtMs: Type.TInteger;
19389
20535
  updatedAtMs: Type.TInteger;
@@ -19411,6 +20557,13 @@ declare const SessionPlacementProtocolSchemas: {
19411
20557
  workerBundleHash: Type.TString;
19412
20558
  providerId: Type.TOptional<Type.TString>;
19413
20559
  profileId: Type.TOptional<Type.TString>;
20560
+ machine: Type.TOptional<Type.TObject<{
20561
+ class: Type.TOptional<Type.TString>;
20562
+ os: Type.TOptional<Type.TString>;
20563
+ osLabel: Type.TOptional<Type.TString>;
20564
+ cpu: Type.TOptional<Type.TInteger>;
20565
+ memoryGb: Type.TOptional<Type.TInteger>;
20566
+ }>>;
19414
20567
  generation: Type.TInteger;
19415
20568
  createdAtMs: Type.TInteger;
19416
20569
  updatedAtMs: Type.TInteger;
@@ -19434,6 +20587,13 @@ declare const SessionPlacementProtocolSchemas: {
19434
20587
  workerBundleHash: Type.TOptional<Type.TString>;
19435
20588
  providerId: Type.TOptional<Type.TString>;
19436
20589
  profileId: Type.TOptional<Type.TString>;
20590
+ machine: Type.TOptional<Type.TObject<{
20591
+ class: Type.TOptional<Type.TString>;
20592
+ os: Type.TOptional<Type.TString>;
20593
+ osLabel: Type.TOptional<Type.TString>;
20594
+ cpu: Type.TOptional<Type.TInteger>;
20595
+ memoryGb: Type.TOptional<Type.TInteger>;
20596
+ }>>;
19437
20597
  generation: Type.TInteger;
19438
20598
  createdAtMs: Type.TInteger;
19439
20599
  updatedAtMs: Type.TInteger;
@@ -19459,6 +20619,13 @@ declare const SessionPlacementProtocolSchemas: {
19459
20619
  workerBundleHash: Type.TOptional<Type.TString>;
19460
20620
  providerId: Type.TOptional<Type.TString>;
19461
20621
  profileId: Type.TOptional<Type.TString>;
20622
+ machine: Type.TOptional<Type.TObject<{
20623
+ class: Type.TOptional<Type.TString>;
20624
+ os: Type.TOptional<Type.TString>;
20625
+ osLabel: Type.TOptional<Type.TString>;
20626
+ cpu: Type.TOptional<Type.TInteger>;
20627
+ memoryGb: Type.TOptional<Type.TInteger>;
20628
+ }>>;
19462
20629
  generation: Type.TInteger;
19463
20630
  createdAtMs: Type.TInteger;
19464
20631
  updatedAtMs: Type.TInteger;
@@ -19481,6 +20648,13 @@ declare const SessionPlacementProtocolSchemas: {
19481
20648
  environmentId: Type.TOptional<Type.TString>;
19482
20649
  providerId: Type.TOptional<Type.TString>;
19483
20650
  profileId: Type.TOptional<Type.TString>;
20651
+ machine: Type.TOptional<Type.TObject<{
20652
+ class: Type.TOptional<Type.TString>;
20653
+ os: Type.TOptional<Type.TString>;
20654
+ osLabel: Type.TOptional<Type.TString>;
20655
+ cpu: Type.TOptional<Type.TInteger>;
20656
+ memoryGb: Type.TOptional<Type.TInteger>;
20657
+ }>>;
19484
20658
  generation: Type.TInteger;
19485
20659
  createdAtMs: Type.TInteger;
19486
20660
  updatedAtMs: Type.TInteger;
@@ -19491,6 +20665,13 @@ declare const SessionPlacementProtocolSchemas: {
19491
20665
  workerBundleHash: Type.TString;
19492
20666
  providerId: Type.TOptional<Type.TString>;
19493
20667
  profileId: Type.TOptional<Type.TString>;
20668
+ machine: Type.TOptional<Type.TObject<{
20669
+ class: Type.TOptional<Type.TString>;
20670
+ os: Type.TOptional<Type.TString>;
20671
+ osLabel: Type.TOptional<Type.TString>;
20672
+ cpu: Type.TOptional<Type.TInteger>;
20673
+ memoryGb: Type.TOptional<Type.TInteger>;
20674
+ }>>;
19494
20675
  generation: Type.TInteger;
19495
20676
  createdAtMs: Type.TInteger;
19496
20677
  updatedAtMs: Type.TInteger;
@@ -19503,6 +20684,13 @@ declare const SessionPlacementProtocolSchemas: {
19503
20684
  workerBundleHash: Type.TString;
19504
20685
  providerId: Type.TOptional<Type.TString>;
19505
20686
  profileId: Type.TOptional<Type.TString>;
20687
+ machine: Type.TOptional<Type.TObject<{
20688
+ class: Type.TOptional<Type.TString>;
20689
+ os: Type.TOptional<Type.TString>;
20690
+ osLabel: Type.TOptional<Type.TString>;
20691
+ cpu: Type.TOptional<Type.TInteger>;
20692
+ memoryGb: Type.TOptional<Type.TInteger>;
20693
+ }>>;
19506
20694
  generation: Type.TInteger;
19507
20695
  createdAtMs: Type.TInteger;
19508
20696
  updatedAtMs: Type.TInteger;
@@ -19514,6 +20702,7 @@ declare const SessionPlacementProtocolSchemas: {
19514
20702
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19515
20703
  deviceId: Type.TOptional<Type.TString>;
19516
20704
  }>>;
20705
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19517
20706
  diskSpace: Type.TOptional<Type.TObject<{
19518
20707
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19519
20708
  availableBytes: Type.TInteger;
@@ -19534,12 +20723,20 @@ declare const SessionPlacementProtocolSchemas: {
19534
20723
  workerBundleHash: Type.TString;
19535
20724
  providerId: Type.TOptional<Type.TString>;
19536
20725
  profileId: Type.TOptional<Type.TString>;
20726
+ machine: Type.TOptional<Type.TObject<{
20727
+ class: Type.TOptional<Type.TString>;
20728
+ os: Type.TOptional<Type.TString>;
20729
+ osLabel: Type.TOptional<Type.TString>;
20730
+ cpu: Type.TOptional<Type.TInteger>;
20731
+ memoryGb: Type.TOptional<Type.TInteger>;
20732
+ }>>;
19537
20733
  generation: Type.TInteger;
19538
20734
  createdAtMs: Type.TInteger;
19539
20735
  updatedAtMs: Type.TInteger;
19540
20736
  stateChangedAtMs: Type.TInteger;
19541
20737
  state: Type.TLiteral<"active">;
19542
20738
  }>, Type.TObject<{
20739
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19543
20740
  diskSpace: Type.TOptional<Type.TObject<{
19544
20741
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19545
20742
  availableBytes: Type.TInteger;
@@ -19560,6 +20757,13 @@ declare const SessionPlacementProtocolSchemas: {
19560
20757
  workerBundleHash: Type.TString;
19561
20758
  providerId: Type.TOptional<Type.TString>;
19562
20759
  profileId: Type.TOptional<Type.TString>;
20760
+ machine: Type.TOptional<Type.TObject<{
20761
+ class: Type.TOptional<Type.TString>;
20762
+ os: Type.TOptional<Type.TString>;
20763
+ osLabel: Type.TOptional<Type.TString>;
20764
+ cpu: Type.TOptional<Type.TInteger>;
20765
+ memoryGb: Type.TOptional<Type.TInteger>;
20766
+ }>>;
19563
20767
  generation: Type.TInteger;
19564
20768
  createdAtMs: Type.TInteger;
19565
20769
  updatedAtMs: Type.TInteger;
@@ -19586,6 +20790,13 @@ declare const SessionPlacementProtocolSchemas: {
19586
20790
  workerBundleHash: Type.TString;
19587
20791
  providerId: Type.TOptional<Type.TString>;
19588
20792
  profileId: Type.TOptional<Type.TString>;
20793
+ machine: Type.TOptional<Type.TObject<{
20794
+ class: Type.TOptional<Type.TString>;
20795
+ os: Type.TOptional<Type.TString>;
20796
+ osLabel: Type.TOptional<Type.TString>;
20797
+ cpu: Type.TOptional<Type.TInteger>;
20798
+ memoryGb: Type.TOptional<Type.TInteger>;
20799
+ }>>;
19589
20800
  generation: Type.TInteger;
19590
20801
  createdAtMs: Type.TInteger;
19591
20802
  updatedAtMs: Type.TInteger;
@@ -19608,6 +20819,13 @@ declare const SessionPlacementProtocolSchemas: {
19608
20819
  workerBundleHash: Type.TOptional<Type.TString>;
19609
20820
  providerId: Type.TOptional<Type.TString>;
19610
20821
  profileId: Type.TOptional<Type.TString>;
20822
+ machine: Type.TOptional<Type.TObject<{
20823
+ class: Type.TOptional<Type.TString>;
20824
+ os: Type.TOptional<Type.TString>;
20825
+ osLabel: Type.TOptional<Type.TString>;
20826
+ cpu: Type.TOptional<Type.TInteger>;
20827
+ memoryGb: Type.TOptional<Type.TInteger>;
20828
+ }>>;
19611
20829
  generation: Type.TInteger;
19612
20830
  createdAtMs: Type.TInteger;
19613
20831
  updatedAtMs: Type.TInteger;
@@ -19632,6 +20850,13 @@ declare const SessionPlacementProtocolSchemas: {
19632
20850
  workerBundleHash: Type.TOptional<Type.TString>;
19633
20851
  providerId: Type.TOptional<Type.TString>;
19634
20852
  profileId: Type.TOptional<Type.TString>;
20853
+ machine: Type.TOptional<Type.TObject<{
20854
+ class: Type.TOptional<Type.TString>;
20855
+ os: Type.TOptional<Type.TString>;
20856
+ osLabel: Type.TOptional<Type.TString>;
20857
+ cpu: Type.TOptional<Type.TInteger>;
20858
+ memoryGb: Type.TOptional<Type.TInteger>;
20859
+ }>>;
19635
20860
  generation: Type.TInteger;
19636
20861
  createdAtMs: Type.TInteger;
19637
20862
  updatedAtMs: Type.TInteger;
@@ -19645,6 +20870,7 @@ declare const SessionPlacementProtocolSchemas: {
19645
20870
  deviceId: Type.TOptional<Type.TString>;
19646
20871
  autoDevice: Type.TOptional<Type.TLiteral<true>>;
19647
20872
  machineClass: Type.TOptional<Type.TString>;
20873
+ os: Type.TOptional<Type.TString>;
19648
20874
  }>;
19649
20875
  readonly SessionsDispatchResult: Type.TObject<{
19650
20876
  ok: Type.TLiteral<true>;
@@ -19656,6 +20882,7 @@ declare const SessionPlacementProtocolSchemas: {
19656
20882
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19657
20883
  deviceId: Type.TOptional<Type.TString>;
19658
20884
  }>>;
20885
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19659
20886
  diskSpace: Type.TOptional<Type.TObject<{
19660
20887
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19661
20888
  availableBytes: Type.TInteger;
@@ -19676,6 +20903,13 @@ declare const SessionPlacementProtocolSchemas: {
19676
20903
  workerBundleHash: Type.TString;
19677
20904
  providerId: Type.TOptional<Type.TString>;
19678
20905
  profileId: Type.TOptional<Type.TString>;
20906
+ machine: Type.TOptional<Type.TObject<{
20907
+ class: Type.TOptional<Type.TString>;
20908
+ os: Type.TOptional<Type.TString>;
20909
+ osLabel: Type.TOptional<Type.TString>;
20910
+ cpu: Type.TOptional<Type.TInteger>;
20911
+ memoryGb: Type.TOptional<Type.TInteger>;
20912
+ }>>;
19679
20913
  generation: Type.TInteger;
19680
20914
  createdAtMs: Type.TInteger;
19681
20915
  updatedAtMs: Type.TInteger;
@@ -19710,6 +20944,13 @@ declare const SessionPlacementProtocolSchemas: {
19710
20944
  workerBundleHash: Type.TOptional<Type.TString>;
19711
20945
  providerId: Type.TOptional<Type.TString>;
19712
20946
  profileId: Type.TOptional<Type.TString>;
20947
+ machine: Type.TOptional<Type.TObject<{
20948
+ class: Type.TOptional<Type.TString>;
20949
+ os: Type.TOptional<Type.TString>;
20950
+ osLabel: Type.TOptional<Type.TString>;
20951
+ cpu: Type.TOptional<Type.TInteger>;
20952
+ memoryGb: Type.TOptional<Type.TInteger>;
20953
+ }>>;
19713
20954
  generation: Type.TInteger;
19714
20955
  createdAtMs: Type.TInteger;
19715
20956
  updatedAtMs: Type.TInteger;
@@ -19743,6 +20984,13 @@ declare const SessionPlacementProtocolSchemas: {
19743
20984
  workerBundleHash: Type.TOptional<Type.TString>;
19744
20985
  providerId: Type.TOptional<Type.TString>;
19745
20986
  profileId: Type.TOptional<Type.TString>;
20987
+ machine: Type.TOptional<Type.TObject<{
20988
+ class: Type.TOptional<Type.TString>;
20989
+ os: Type.TOptional<Type.TString>;
20990
+ osLabel: Type.TOptional<Type.TString>;
20991
+ cpu: Type.TOptional<Type.TInteger>;
20992
+ memoryGb: Type.TOptional<Type.TInteger>;
20993
+ }>>;
19746
20994
  generation: Type.TInteger;
19747
20995
  createdAtMs: Type.TInteger;
19748
20996
  updatedAtMs: Type.TInteger;
@@ -19762,6 +21010,7 @@ declare const SessionPlacementProtocolSchemas: {
19762
21010
  kind: Type.TLiteral<"profile">;
19763
21011
  profileId: Type.TString;
19764
21012
  machineClass: Type.TOptional<Type.TString>;
21013
+ os: Type.TOptional<Type.TString>;
19765
21014
  }>;
19766
21015
  readonly SessionMoveDeviceTarget: Type.TObject<{
19767
21016
  kind: Type.TLiteral<"device">;
@@ -19773,6 +21022,7 @@ declare const SessionPlacementProtocolSchemas: {
19773
21022
  kind: Type.TLiteral<"profile">;
19774
21023
  profileId: Type.TString;
19775
21024
  machineClass: Type.TOptional<Type.TString>;
21025
+ os: Type.TOptional<Type.TString>;
19776
21026
  }>, Type.TObject<{
19777
21027
  kind: Type.TLiteral<"device">;
19778
21028
  deviceId: Type.TString;
@@ -19784,6 +21034,7 @@ declare const SessionPlacementProtocolSchemas: {
19784
21034
  kind: Type.TLiteral<"profile">;
19785
21035
  profileId: Type.TString;
19786
21036
  machineClass: Type.TOptional<Type.TString>;
21037
+ os: Type.TOptional<Type.TString>;
19787
21038
  }>, Type.TObject<{
19788
21039
  kind: Type.TLiteral<"device">;
19789
21040
  deviceId: Type.TString;
@@ -19805,6 +21056,7 @@ declare const SessionPlacementProtocolSchemas: {
19805
21056
  kind: Type.TLiteral<"profile">;
19806
21057
  profileId: Type.TString;
19807
21058
  machineClass: Type.TOptional<Type.TString>;
21059
+ os: Type.TOptional<Type.TString>;
19808
21060
  }>, Type.TObject<{
19809
21061
  kind: Type.TLiteral<"device">;
19810
21062
  deviceId: Type.TString;
@@ -19829,6 +21081,7 @@ declare const SessionPlacementProtocolSchemas: {
19829
21081
  type SessionPlacement = Static<typeof SessionPlacementSchema>;
19830
21082
  type SessionPlacementDiskSpace = Static<typeof SessionPlacementDiskSpaceSchema>;
19831
21083
  type SessionPlacementRunner = Static<typeof SessionPlacementRunnerSchema>;
21084
+ type SessionPlacementMachine = Static<typeof SessionPlacementMachineSchema>;
19832
21085
  type SessionsDispatchParams = Static<typeof SessionsDispatchParamsSchema>;
19833
21086
  type SessionsDispatchResult = Static<typeof SessionsDispatchResultSchema>;
19834
21087
  type SessionsReclaimParams = Static<typeof SessionsReclaimParamsSchema>;
@@ -19920,6 +21173,8 @@ declare const SessionsListParamsSchema: Type.TObject<{
19920
21173
  limit: Type.TOptional<Type.TInteger>;
19921
21174
  offset: Type.TOptional<Type.TInteger>;
19922
21175
  activeMinutes: Type.TOptional<Type.TInteger>;
21176
+ /** Select sessions with current direct running or queued work before pagination. */
21177
+ activeOnly: Type.TOptional<Type.TBoolean>;
19923
21178
  /** Require a real user/channel interaction; excludes synthetic isolated heartbeat rows. */
19924
21179
  requireLastInteraction: Type.TOptional<Type.TBoolean>;
19925
21180
  sortBy: Type.TOptional<Type.TUnion<[Type.TLiteral<"updatedAt">, Type.TLiteral<"lastInteractionAt">]>>;
@@ -19970,6 +21225,8 @@ declare const SESSIONS_PATCH_MANY_MAX_TARGETS = 100;
19970
21225
  /** Mutable per-session preferences and routing metadata. */
19971
21226
  declare const SessionsPatchParamsSchema: Type.TObject<{
19972
21227
  label: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
21228
+ /** Automatic device name, separate from explicit user renames; null clears it. */
21229
+ autoLabel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
19973
21230
  icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
19974
21231
  /** Named sidebar tint from SESSION_COLOR_IDS; null clears it. */
19975
21232
  color: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -20024,6 +21281,8 @@ declare const SessionsPatchParamsSchema: Type.TObject<{
20024
21281
  }>;
20025
21282
  declare const SessionsPatchMutationSchema: Type.TObject<{
20026
21283
  label: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
21284
+ /** Automatic device name, separate from explicit user renames; null clears it. */
21285
+ autoLabel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20027
21286
  icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20028
21287
  /** Named sidebar tint from SESSION_COLOR_IDS; null clears it. */
20029
21288
  color: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -20078,6 +21337,8 @@ declare const SessionsPatchManyParamsSchema: Type.TObject<{
20078
21337
  }>>;
20079
21338
  patch: Type.TObject<{
20080
21339
  label: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
21340
+ /** Automatic device name, separate from explicit user renames; null clears it. */
21341
+ autoLabel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20081
21342
  icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20082
21343
  /** Named sidebar tint from SESSION_COLOR_IDS; null clears it. */
20083
21344
  color: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -20155,6 +21416,8 @@ declare const SessionObserverPlanProgressSchema: Type.TObject<{
20155
21416
  declare const SessionObserverDigestSchema: Type.TObject<{
20156
21417
  sessionKey: Type.TString;
20157
21418
  agentId: Type.TOptional<Type.TString>;
21419
+ sessionId: Type.TOptional<Type.TString>;
21420
+ lifecycleRevision: Type.TOptional<Type.TString>;
20158
21421
  runId: Type.TOptional<Type.TString>;
20159
21422
  revision: Type.TInteger;
20160
21423
  updatedAt: Type.TInteger;
@@ -20464,7 +21727,7 @@ declare const SessionsDiffResultSchema: Type.TObject<{
20464
21727
  additions: Type.TInteger;
20465
21728
  deletions: Type.TInteger;
20466
21729
  truncated: Type.TOptional<Type.TBoolean>;
20467
- unavailableReason: Type.TOptional<Type.TUnion<[Type.TLiteral<"unknown_session">, Type.TLiteral<"not_git">, Type.TLiteral<"unknown_commit">]>>;
21730
+ unavailableReason: Type.TOptional<Type.TUnion<[Type.TLiteral<"unknown_session">, Type.TLiteral<"not_git">, Type.TLiteral<"unknown_commit">, Type.TLiteral<"workspace_stopped">]>>;
20468
21731
  }>;
20469
21732
  /** Searches one agent's indexed session transcripts, optionally within selected sessions. */
20470
21733
  declare const SessionsSearchParamsSchema: Type.TObject<{
@@ -20515,6 +21778,7 @@ declare const SessionsPreviewParamsSchema: Type.TObject<{
20515
21778
  /** Describes one session and optional derived title/last-message previews. */
20516
21779
  declare const SessionsDescribeParamsSchema: Type.TObject<{
20517
21780
  key: Type.TString;
21781
+ agentId: Type.TOptional<Type.TString>;
20518
21782
  includeDerivedTitles: Type.TOptional<Type.TBoolean>;
20519
21783
  includeLastMessage: Type.TOptional<Type.TBoolean>;
20520
21784
  }>;
@@ -21158,6 +22422,24 @@ declare const SessionVisibilitySetResultSchema: Type.TObject<{
21158
22422
  sessionKey: Type.TString;
21159
22423
  visibility: Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>;
21160
22424
  }>;
22425
+ declare const SessionPublicShareSchema: Type.TObject<{
22426
+ token: Type.TString;
22427
+ createdAt: Type.TInteger;
22428
+ }>;
22429
+ declare const SessionPublicShareSetParamsSchema: Type.TObject<{
22430
+ expectedSessionId: Type.TString;
22431
+ enabled: Type.TBoolean;
22432
+ sessionKey: Type.TString;
22433
+ agentId: Type.TOptional<Type.TString>;
22434
+ }>;
22435
+ declare const SessionPublicShareSetResultSchema: Type.TObject<{
22436
+ ok: Type.TLiteral<true>;
22437
+ sessionKey: Type.TString;
22438
+ publicShare: Type.TOptional<Type.TObject<{
22439
+ token: Type.TString;
22440
+ createdAt: Type.TInteger;
22441
+ }>>;
22442
+ }>;
21161
22443
  declare const SessionMembersListParamsSchema: Type.TObject<{
21162
22444
  sessionKey: Type.TString;
21163
22445
  agentId: Type.TOptional<Type.TString>;
@@ -21180,6 +22462,10 @@ declare const SessionMemberEvidenceSchema: Type.TObject<{
21180
22462
  };
21181
22463
  declare const SessionMembersListResultSchema: Type.TObject<{
21182
22464
  sessionKey: Type.TString;
22465
+ publicShare: Type.TOptional<Type.TObject<{
22466
+ token: Type.TString;
22467
+ createdAt: Type.TInteger;
22468
+ }>>;
21183
22469
  owner: Type.TOptional<Type.TObject<{
21184
22470
  id: Type.TString;
21185
22471
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
@@ -21250,6 +22536,10 @@ declare const SessionMembersListResultSchema: Type.TObject<{
21250
22536
  }>;
21251
22537
  declare const SessionMembersListEvidenceResultSchema: Type.TObject<{
21252
22538
  sessionKey: Type.TString;
22539
+ publicShare: Type.TOptional<Type.TObject<{
22540
+ token: Type.TString;
22541
+ createdAt: Type.TInteger;
22542
+ }>>;
21253
22543
  owner: Type.TOptional<Type.TObject<{
21254
22544
  id: Type.TString;
21255
22545
  type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
@@ -21393,6 +22683,9 @@ type SessionSharingIdentity = Static<typeof SessionSharingIdentitySchema>;
21393
22683
  type SessionSharingAction = Static<typeof SessionSharingActionSchema>;
21394
22684
  type SessionVisibilitySetParams = Static<typeof SessionVisibilitySetParamsSchema>;
21395
22685
  type SessionVisibilitySetResult = Static<typeof SessionVisibilitySetResultSchema>;
22686
+ type SessionPublicShare = Static<typeof SessionPublicShareSchema>;
22687
+ type SessionPublicShareSetParams = Static<typeof SessionPublicShareSetParamsSchema>;
22688
+ type SessionPublicShareSetResult = Static<typeof SessionPublicShareSetResultSchema>;
21396
22689
  type SessionMembersListParams = Static<typeof SessionMembersListParamsSchema>;
21397
22690
  type SessionMember = Static<typeof SessionMemberSchema>;
21398
22691
  type SessionMemberEvidence = Static<typeof SessionMemberEvidenceSchema>;
@@ -21925,8 +23218,11 @@ type TerminalUploadParams = Static<typeof TerminalUploadParamsSchema>;
21925
23218
  declare const TerminalUploadResultSchema: Type.TObject<{
21926
23219
  path: Type.TString;
21927
23220
  size: Type.TInteger;
23221
+ /** Explicit path insertion contract for a native CLI rather than a shell. */
23222
+ uploadPathStyle: Type.TOptional<Type.TLiteral<"native">>;
21928
23223
  }>;
21929
23224
  type TerminalUploadResult = Static<typeof TerminalUploadResultSchema>;
23225
+ type TerminalUploadPathStyle = NonNullable<TerminalUploadResult["uploadPathStyle"]>;
21930
23226
  /** Resizes the PTY grid after the client viewport changes. */
21931
23227
  declare const TerminalResizeParamsSchema: Type.TObject<{
21932
23228
  sessionId: Type.TString;
@@ -23387,6 +24683,7 @@ declare const WorktreesBranchesResultSchema: Type.TObject<{
23387
24683
  defaultBranch: Type.TOptional<Type.TString>;
23388
24684
  headBranch: Type.TOptional<Type.TString>;
23389
24685
  repositoryStatus: Type.TOptional<Type.TString>;
24686
+ branchesUnavailable: Type.TOptional<Type.TBoolean>;
23390
24687
  }>;
23391
24688
  declare const WorktreesRestoreParamsSchema: Type.TObject<{
23392
24689
  id: Type.TString;
@@ -23410,113 +24707,8 @@ type WorktreeBranch = Static<typeof WorktreeBranchSchema>;
23410
24707
  type WorktreeRepositoryStatus = (typeof WORKTREE_REPOSITORY_STATUSES)[number];
23411
24708
  type WorktreesBranchesParams = Static<typeof WorktreesBranchesParamsSchema>;
23412
24709
  type WorktreesBranchesResult = Static<typeof WorktreesBranchesResultSchema>;
23413
- //#endregion
23414
- //#region src/schema/transcripts.d.ts
23415
- declare const TranscriptSessionSummarySchema: Type.TObject<{
23416
- selector: Type.TString;
23417
- sessionId: Type.TString;
23418
- title: Type.TOptional<Type.TString>;
23419
- providerId: Type.TString;
23420
- providerName: Type.TOptional<Type.TString>;
23421
- source: Type.TObject<{
23422
- providerId: Type.TString;
23423
- accountId: Type.TOptional<Type.TString>;
23424
- guildId: Type.TOptional<Type.TString>;
23425
- channelId: Type.TOptional<Type.TString>;
23426
- meetingUrl: Type.TOptional<Type.TString>;
23427
- }>;
23428
- startedAt: Type.TString;
23429
- stoppedAt: Type.TOptional<Type.TString>;
23430
- active: Type.TBoolean;
23431
- utteranceCount: Type.TInteger;
23432
- participants: Type.TArray<Type.TString>;
23433
- hasSummary: Type.TBoolean;
23434
- summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
23435
- overview: Type.TOptional<Type.TString>;
23436
- }>;
23437
- declare const TranscriptsListParamsSchema: Type.TObject<{
23438
- limit: Type.TOptional<Type.TInteger>;
23439
- providerId: Type.TOptional<Type.TString>;
23440
- }>;
23441
- declare const TranscriptsListResultSchema: Type.TObject<{
23442
- sessions: Type.TArray<Type.TObject<{
23443
- selector: Type.TString;
23444
- sessionId: Type.TString;
23445
- title: Type.TOptional<Type.TString>;
23446
- providerId: Type.TString;
23447
- providerName: Type.TOptional<Type.TString>;
23448
- source: Type.TObject<{
23449
- providerId: Type.TString;
23450
- accountId: Type.TOptional<Type.TString>;
23451
- guildId: Type.TOptional<Type.TString>;
23452
- channelId: Type.TOptional<Type.TString>;
23453
- meetingUrl: Type.TOptional<Type.TString>;
23454
- }>;
23455
- startedAt: Type.TString;
23456
- stoppedAt: Type.TOptional<Type.TString>;
23457
- active: Type.TBoolean;
23458
- utteranceCount: Type.TInteger;
23459
- participants: Type.TArray<Type.TString>;
23460
- hasSummary: Type.TBoolean;
23461
- summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
23462
- overview: Type.TOptional<Type.TString>;
23463
- }>>;
23464
- }>;
23465
- declare const TranscriptsGetParamsSchema: Type.TObject<{
23466
- selector: Type.TString;
23467
- includeUtterances: Type.TOptional<Type.TBoolean>;
23468
- }>;
23469
- declare const TranscriptsGetResultSchema: Type.TObject<{
23470
- session: Type.TObject<{
23471
- selector: Type.TString;
23472
- sessionId: Type.TString;
23473
- title: Type.TOptional<Type.TString>;
23474
- providerId: Type.TString;
23475
- providerName: Type.TOptional<Type.TString>;
23476
- source: Type.TObject<{
23477
- providerId: Type.TString;
23478
- accountId: Type.TOptional<Type.TString>;
23479
- guildId: Type.TOptional<Type.TString>;
23480
- channelId: Type.TOptional<Type.TString>;
23481
- meetingUrl: Type.TOptional<Type.TString>;
23482
- }>;
23483
- startedAt: Type.TString;
23484
- stoppedAt: Type.TOptional<Type.TString>;
23485
- active: Type.TBoolean;
23486
- utteranceCount: Type.TInteger;
23487
- participants: Type.TArray<Type.TString>;
23488
- hasSummary: Type.TBoolean;
23489
- summarySource: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
23490
- overview: Type.TOptional<Type.TString>;
23491
- }>;
23492
- summary: Type.TOptional<Type.TObject<{
23493
- generatedAt: Type.TString;
23494
- overview: Type.TString;
23495
- decisions: Type.TArray<Type.TString>;
23496
- actionItems: Type.TArray<Type.TString>;
23497
- risks: Type.TArray<Type.TString>;
23498
- participants: Type.TArray<Type.TString>;
23499
- source: Type.TOptional<Type.TUnion<[Type.TLiteral<"model">, Type.TLiteral<"heuristic">]>>;
23500
- model: Type.TOptional<Type.TString>;
23501
- markdown: Type.TString;
23502
- }>>;
23503
- utterances: Type.TOptional<Type.TArray<Type.TObject<{
23504
- sequence: Type.TInteger;
23505
- startedAt: Type.TOptional<Type.TString>;
23506
- endedAt: Type.TOptional<Type.TString>;
23507
- speakerId: Type.TOptional<Type.TString>;
23508
- speakerLabel: Type.TOptional<Type.TString>;
23509
- text: Type.TString;
23510
- final: Type.TOptional<Type.TBoolean>;
23511
- }>>>;
23512
- }>;
23513
- type TranscriptSessionSummary = Static<typeof TranscriptSessionSummarySchema>;
23514
- type TranscriptsListParams = Static<typeof TranscriptsListParamsSchema>;
23515
- type TranscriptsListResult = Static<typeof TranscriptsListResultSchema>;
23516
- type TranscriptsGetParams = Static<typeof TranscriptsGetParamsSchema>;
23517
- type TranscriptsGetResult = Static<typeof TranscriptsGetResultSchema>;
23518
24710
  declare namespace schema_modules_d_exports {
23519
- export { AUDIT_ACTIVITY_DIRECTIONS, AUDIT_ACTIVITY_KINDS, AUDIT_ACTIVITY_MESSAGE_KIND, AUDIT_ACTIVITY_STATUSES, AgentEvent, AgentEventSchema, AgentIdentityParams, AgentIdentityParamsSchema, AgentIdentityResult, AgentIdentityResultSchema, AgentKind, AgentKindSchema, AgentOwnershipSchema, AgentParamsSchema, AgentSummary, AgentSummarySchema, AgentWaitParams, AgentWaitParamsSchema, AgentsCreateParams, AgentsCreateParamsSchema, AgentsCreateResult, AgentsCreateResultSchema, AgentsDeleteParams, AgentsDeleteParamsSchema, AgentsDeleteResult, AgentsDeleteResultSchema, AgentsFileEntry, AgentsFileEntrySchema, AgentsFilesGetParams, AgentsFilesGetParamsSchema, AgentsFilesGetResult, AgentsFilesGetResultSchema, AgentsFilesListParams, AgentsFilesListParamsSchema, AgentsFilesListResult, AgentsFilesListResultSchema, AgentsFilesSetParams, AgentsFilesSetParamsSchema, AgentsFilesSetResult, AgentsFilesSetResultSchema, AgentsListParams, AgentsListParamsSchema, AgentsListResult, AgentsListResultSchema, AgentsUpdateParams, AgentsUpdateParamsSchema, AgentsUpdateResult, AgentsUpdateResultSchema, AgentsWorkspaceEntry, AgentsWorkspaceEntrySchema, AgentsWorkspaceFile, AgentsWorkspaceFileSchema, AgentsWorkspaceGetParams, AgentsWorkspaceGetParamsSchema, AgentsWorkspaceGetResult, AgentsWorkspaceGetResultSchema, AgentsWorkspaceListParams, AgentsWorkspaceListParamsSchema, AgentsWorkspaceListResult, AgentsWorkspaceListResultSchema, AllowedApprovalSnapshot, AllowedApprovalSnapshotSchema, ApprovalAllowDecision, ApprovalAllowDecisionSchema, ApprovalAllowedReasonSchema, ApprovalCancelledReasonSchema, ApprovalChannelReviewer, ApprovalChannelReviewerSchema, ApprovalDecision, ApprovalDecisionSchema, ApprovalDeniedReasonSchema, ApprovalExpiredReasonSchema, ApprovalGetParams, ApprovalGetParamsSchema, ApprovalGetResult, ApprovalGetResultSchema, ApprovalHistoryParams, ApprovalHistoryParamsSchema, ApprovalHistoryResult, ApprovalHistoryResultSchema, ApprovalKind, ApprovalKindSchema, ApprovalPresentation, ApprovalPresentationSchema, ApprovalResolveParams, ApprovalResolveParamsSchema, ApprovalResolveResult, ApprovalResolveResultSchema, ApprovalScope, ApprovalScopeSchema, ApprovalSnapshot, ApprovalSnapshotSchema, ApprovalTerminalReason, ApprovalTerminalReasonSchema, ArtifactSummary, ArtifactSummarySchema, ArtifactsDownloadParams, ArtifactsDownloadParamsSchema, ArtifactsDownloadResult, ArtifactsDownloadResultSchema, ArtifactsGetParams, ArtifactsGetParamsSchema, ArtifactsGetResult, ArtifactsGetResultSchema, ArtifactsListParams, ArtifactsListParamsSchema, ArtifactsListResult, ArtifactsListResultSchema, AuditActivityAgentRunV1, AuditActivityAgentRunV1Schema, AuditActivityEventV1, AuditActivityEventV1Schema, AuditActivityInboundMessageV1, AuditActivityInboundMessageV1Schema, AuditActivityListParams, AuditActivityListParamsSchema, AuditActivityListResult, AuditActivityListResultSchema, AuditActivityOutboundMessageV1, AuditActivityOutboundMessageV1Schema, AuditActivityToolActionV1, AuditActivityToolActionV1Schema, AuditEvent, AuditEventSchema, AuditListParams, AuditListParamsSchema, AuditListResult, AuditListResultSchema, AuditRunIdentityAmbiguousV1Schema, AuditRunIdentityPresentV1Schema, AuditRunIdentityUnknownV1Schema, AuditRunIdentityUnsupportedV1Schema, AuditRunIdentityV1, AuditRunIdentityV1Schema, AuditRunInspectParams, AuditRunInspectParamsSchema, AuditRunInspectResult, AuditRunInspectResultSchema, AuthProbeStatus, AuthProbeStatusSchema, BOARD_CRON_JOB_ID_MAX_LENGTH, BOARD_CRON_TRIGGER_PREFIX, BOARD_DATA_BINDING_ID_MAX_LENGTH, BOARD_WIDGET_TOOL_MAX_LENGTH, BoardActionParams, BoardActionParamsSchema, BoardCanvasDocumentSource, BoardCanvasDocumentSourceSchema, BoardChangedEvent, BoardChangedEventSchema, BoardChatDockSchema, BoardCommand, BoardCommandEvent, BoardCommandEventSchema, BoardCommandSchema, BoardCronActionParamsSchema, BoardDataReadParams, BoardDataReadParamsSchema, BoardEventParams, BoardEventParamsSchema, BoardFocusTabCommandSchema, BoardGetParams, BoardGetParamsSchema, BoardLegacyEventParamsSchema, BoardMcpAppDescriptor, BoardMcpAppDescriptorSchema, BoardOp, BoardOpSchema, BoardPluginActionParamsSchema, BoardPromptAuthorizeParams, BoardPromptAuthorizeParamsSchema, BoardSetChatDockCommandSchema, BoardSizeSchema, BoardSnapshot, BoardSnapshotSchema, BoardTab, BoardTabCreateOpSchema, BoardTabDeleteOpSchema, BoardTabIdSchema, BoardTabSchema, BoardTabUpdateOpSchema, BoardTabsReorderOpSchema, BoardTicketEventParamsSchema, BoardUpdateParams, BoardUpdateParamsSchema, BoardViewTicketSchema, BoardWidget, BoardWidgetAppViewParams, BoardWidgetAppViewParamsSchema, BoardWidgetAppViewResult, BoardWidgetAppViewResultSchema, BoardWidgetContent, BoardWidgetContentSchema, BoardWidgetDeclared, BoardWidgetDeclaredSchema, BoardWidgetGeneratedIdentity, BoardWidgetGeneratedIdentitySchema, BoardWidgetGrantParams, BoardWidgetGrantParamsSchema, BoardWidgetHeightModeSchema, BoardWidgetHtmlContentSchema, BoardWidgetMaterializedContent, BoardWidgetMaterializedPutParams, BoardWidgetMcpAppContentSchema, BoardWidgetMcpAppPutContentSchema, BoardWidgetMoveOpSchema, BoardWidgetNameSchema, BoardWidgetPluginContentSchema, BoardWidgetPluginKindSchema, BoardWidgetPluginPropsSchema, BoardWidgetPresentationSchema, BoardWidgetPutContent, BoardWidgetPutContentSchema, BoardWidgetPutParams, BoardWidgetPutParamsSchema, BoardWidgetPutResult, BoardWidgetPutResultSchema, BoardWidgetRegisteredContentSchema, BoardWidgetRegisteredMaterializedContent, BoardWidgetRemoveOpSchema, BoardWidgetResizeOpSchema, BoardWidgetSchema, CHAT_SEND_SESSION_KEY_MAX_LENGTH, COMMAND_ALIAS_MAX_ITEMS, COMMAND_ARGS_MAX_ITEMS, COMMAND_ARG_CHOICES_MAX_ITEMS, COMMAND_ARG_DESCRIPTION_MAX_LENGTH, COMMAND_ARG_NAME_MAX_LENGTH, COMMAND_CHOICE_LABEL_MAX_LENGTH, COMMAND_CHOICE_VALUE_MAX_LENGTH, COMMAND_DESCRIPTION_MAX_LENGTH, COMMAND_LIST_MAX_ITEMS, COMMAND_NAME_MAX_LENGTH, CancelledApprovalSnapshot, CancelledApprovalSnapshotSchema, CanvasDocumentViewParams, CanvasDocumentViewParamsSchema, CanvasDocumentViewResult, CanvasDocumentViewResultSchema, CapabilityConsentErrorDetailsSchema, ChannelsLogoutParams, ChannelsLogoutParamsSchema, ChannelsPairingAccount, ChannelsPairingApproveParams, ChannelsPairingApproveParamsSchema, ChannelsPairingApproveResult, ChannelsPairingApproveResultSchema, ChannelsPairingDismissParams, ChannelsPairingDismissParamsSchema, ChannelsPairingDismissResult, ChannelsPairingDismissResultSchema, ChannelsPairingListParams, ChannelsPairingListParamsSchema, ChannelsPairingListResult, ChannelsPairingListResultSchema, ChannelsPairingRequest, ChannelsStartParams, ChannelsStartParamsSchema, ChannelsStatusParams, ChannelsStatusParamsSchema, ChannelsStatusResult, ChannelsStatusResultSchema, ChannelsStopParams, ChannelsStopParamsSchema, ChatAbortParams, ChatAbortParamsSchema, ChatAbortedEventSchema, ChatAccountSelection, ChatAccountSelectionSchema, ChatAttachmentSchema, ChatAttachmentsSchema, ChatDeltaEventSchema, ChatErrorEventSchema, ChatEvent, ChatEventSchema, ChatFinalEventSchema, ChatHistoryCursorResult, ChatHistoryCursorResultSchema, ChatHistoryDeltaResult, ChatHistoryDeltaResultSchema, ChatHistoryParams, ChatHistoryParamsSchema, ChatHistoryResetResult, ChatHistoryResetResultSchema, ChatInjectParams, ChatInjectParamsSchema, ChatInputConsumptions, ChatInputConsumptionsSchema, ChatInputReceipts, ChatInputReceiptsSchema, ChatMessageGetParamsSchema, ChatMessageGetResult, ChatMessageGetResultSchema, ChatMetadataParams, ChatMetadataParamsSchema, ChatPendingInputsPage, ChatPendingInputsPageSchema, ChatRunStartupPhase, ChatRunStartupPhaseSchema, ChatSendIntent, ChatSendIntentSchema, ChatSendParamsSchema, ChatSendSessionKeyString, ChatStartupParams, ChatStartupParamsSchema, ChatStatusEvent, ChatStatusEventSchema, ChatToolTitlesParams, ChatToolTitlesParamsSchema, ChatToolTitlesResult, ChatToolTitlesResultSchema, CommandEntry, CommandEntrySchema, CommandsListParams, CommandsListParamsSchema, CommandsListResult, CommandsListResultSchema, ConfigApplyParams, ConfigApplyParamsSchema, ConfigGetParams, ConfigGetParamsSchema, ConfigPatchParams, ConfigPatchParamsSchema, ConfigSchemaLookupParams, ConfigSchemaLookupParamsSchema, ConfigSchemaLookupResult, ConfigSchemaLookupResultSchema, ConfigSchemaParams, ConfigSchemaParamsSchema, ConfigSchemaResponse, ConfigSchemaResponseSchema, ConfigSetParams, ConfigSetParamsSchema, ConnectParams, ConnectParamsSchema, ConversationListItem, ConversationListItemSchema, ConversationListParams, ConversationListParamsSchema, ConversationListResult, ConversationListResultSchema, ConversationSendParams, ConversationSendParamsSchema, ConversationSendResult, ConversationSendResultSchema, ConversationTurnCancelParams, ConversationTurnCancelParamsSchema, ConversationTurnCancelResult, ConversationTurnCancelResultSchema, ConversationTurnParams, ConversationTurnParamsSchema, ConversationTurnReply, ConversationTurnReplySchema, ConversationTurnResult, ConversationTurnResultSchema, CronAddJobResult, CronAddJobResultSchema, CronAddParams, CronAddParamsSchema, CronAddResult, CronAddResultSchema, CronDeclarativeAddResult, CronDeclarativeAddResultSchema, CronDeliveryPreview, CronDeliveryPreviewSchema, CronDeliverySchema, CronGetParams, CronGetParamsSchema, CronJob, CronJobNotFoundErrorDetails, CronJobNotFoundErrorDetailsSchema, CronJobSchema, CronJobStateSchema, CronListParams, CronListParamsSchema, CronPacingSchema, CronRemoveParams, CronRemoveParamsSchema, CronRunLogEntry, CronRunLogEntrySchema, CronRunParams, CronRunParamsSchema, CronRunsParams, CronRunsParamsSchema, CronScratchGetParams, CronScratchGetParamsSchema, CronScratchGetResult, CronScratchGetResultSchema, CronScratchSchema, CronScratchSetParams, CronScratchSetParamsSchema, CronScratchSetResult, CronScratchSetResultSchema, CronStatusParams, CronStatusParamsSchema, CronUpdateParams, CronUpdateParamsSchema, DecisionReceiptDisplayV1, DecisionReceiptDisplayV1Schema, DecisionReceiptV1, DecisionReceiptV1Schema, DeniedApprovalSnapshot, DeniedApprovalSnapshotSchema, DesktopLaunchParams, DesktopLaunchParamsSchema, DesktopObserveParams, DesktopObserveParamsSchema, DesktopObserveResult, DesktopObserveResultSchema, DesktopSource, DesktopSourceSchema, DevicePairApproveParams, DevicePairApproveParamsSchema, DevicePairListParams, DevicePairListParamsSchema, DevicePairRejectParams, DevicePairRejectParamsSchema, DevicePairRemoveParams, DevicePairRemoveParamsSchema, DevicePairRenameParams, DevicePairRenameParamsSchema, DevicePairRequestedEventSchema, DevicePairResolvedEventSchema, DevicePairSetupCodeParams, DevicePairSetupCodeParamsSchema, DevicePairSetupCodeResult, DevicePairSetupCodeResultSchema, DevicePairSetupCompletedEvent, DevicePairSetupCompletedEventSchema, DevicePairSetupDeliveryUncertainEvent, DevicePairSetupDeliveryUncertainEventSchema, DevicePairSetupStatusParams, DevicePairSetupStatusParamsSchema, DevicePairSetupStatusResult, DevicePairSetupStatusResultSchema, DeviceTokenRevokeParams, DeviceTokenRevokeParamsSchema, DeviceTokenRotateParams, DeviceTokenRotateParamsSchema, DeviceTokenRotateResult, DeviceTokenRotateResultSchema, EnvironmentStatus, EnvironmentStatusSchema, EnvironmentSummary, EnvironmentSummarySchema, EnvironmentsCreateParams, EnvironmentsCreateParamsSchema, EnvironmentsCreateResult, EnvironmentsCreateResultSchema, EnvironmentsDestroyParams, EnvironmentsDestroyParamsSchema, EnvironmentsDestroyResult, EnvironmentsDestroyResultSchema, EnvironmentsListParams, EnvironmentsListParamsSchema, EnvironmentsListResult, EnvironmentsListResultSchema, EnvironmentsStatusParams, EnvironmentsStatusParamsSchema, EnvironmentsStatusResult, EnvironmentsStatusResultSchema, ErrorCode, ErrorCodes, ErrorShape, ErrorShapeSchema, EventFrame, EventFrameSchema, ExecApprovalGetParams, ExecApprovalGetParamsSchema, ExecApprovalGrantsListParams, ExecApprovalGrantsListParamsSchema, ExecApprovalGrantsListResult, ExecApprovalGrantsListResultSchema, ExecApprovalGrantsRevokeParams, ExecApprovalGrantsRevokeParamsSchema, ExecApprovalGrantsRevokeResult, ExecApprovalGrantsRevokeResultSchema, ExecApprovalPresentation, ExecApprovalPresentationSchema, ExecApprovalRequestParams, ExecApprovalRequestParamsSchema, ExecApprovalResolveParams, ExecApprovalResolveParamsSchema, ExecApprovalStandingGrant, ExecApprovalStandingGrantSchema, ExecApprovalsGetParams, ExecApprovalsGetParamsSchema, ExecApprovalsNodeGetParams, ExecApprovalsNodeGetParamsSchema, ExecApprovalsNodeSetParams, ExecApprovalsNodeSetParamsSchema, ExecApprovalsNodeSnapshot, ExecApprovalsNodeSnapshotSchema, ExecApprovalsSetParams, ExecApprovalsSetParamsSchema, ExecApprovalsSnapshot, ExecApprovalsSnapshotSchema, ExecutionIdentityContextV1, ExecutionIdentityContextV1Schema, ExpiredApprovalSnapshot, ExpiredApprovalSnapshotSchema, ExternalPostApprovalScopeSchema, FsDirEntry, FsDirEntrySchema, FsListDirParams, FsListDirParamsSchema, FsListDirResult, FsListDirResultSchema, GATEWAY_OWNER_PROFILE_ID, GATEWAY_SERVER_CAPS, GIT_COAUTHOR_PREFERENCE_KEY, GatewayAgentRuntime, GatewayClientIdSchema, GatewayClientModeSchema, GatewayErrorDetailCodes, GatewayErrorDetails, GatewayErrorDetailsSchema, GatewayFrame, GatewayFrameSchema, GatewaySuspendBlocker, GatewaySuspendBlockerSchema, GatewaySuspendHandoffParams, GatewaySuspendHandoffParamsSchema, GatewaySuspendHandoffResult, GatewaySuspendHandoffResultSchema, GatewaySuspendPrepareBusyResultSchema, GatewaySuspendPrepareDrainingResultSchema, GatewaySuspendPrepareParams, GatewaySuspendPrepareParamsSchema, GatewaySuspendPrepareReadyResultSchema, GatewaySuspendPrepareResult, GatewaySuspendPrepareResultSchema, GatewaySuspendResumeParams, GatewaySuspendResumeParamsSchema, GatewaySuspendResumeResult, GatewaySuspendResumeResultSchema, GatewaySuspendStatusDrainingResultSchema, GatewaySuspendStatusParams, GatewaySuspendStatusParamsSchema, GatewaySuspendStatusReadyResultSchema, GatewaySuspendStatusResult, GatewaySuspendStatusResultSchema, GatewaySuspendStatusRunningResultSchema, GatewaySuspendTaskBlocker, GatewaySuspendTaskBlockerSchema, GatewaySuspension, GatewaySuspensionSchema, GitHubAuthorSchema, GitHubIdentityFacts, GitHubIdentityFactsSchema, GitHubIdentityScopeSchema, GitHubIdentitySourceSchema, GitHubPublicationBodySchema, GitHubPublicationPublisher, GitHubPublicationPublisherSchema, GitHubPublicationSelection, GitHubPublicationSelectionRejectedErrorDetails, GitHubPublicationSelectionRejectedErrorDetailsSchema, GitHubPublicationSelectionSchema, GitHubPublicationTitleSchema, GitHubSelectedIdentity, GitHubSelectedIdentitySchema, GitHubSetupHandleSchema, HelloOk, HelloOkSchema, HooksStatusParams, HooksStatusParamsSchema, HumanMention, HumanMentionSchema, HumanMentionsSchema, InputProvenanceSchema, LogsTailParams, LogsTailParamsSchema, LogsTailResult, LogsTailResultSchema, MAX_HUMAN_MENTIONS, MAX_MEMORY_MIGRATION_ITEMS, MAX_MENTIONABLE_USERS, MENTION_INBOX_MAX_ITEMS, McpAppViewExpiredErrorDetails, McpAppViewExpiredErrorDetailsSchema, MemoryMigrationItem, MemoryMigrationProviderPlan, MentionInboxItem, MentionInboxItemSchema, MentionableUser, MentionableUserSchema, MentionsChangedEvent, MentionsChangedEventSchema, MentionsDismissParams, MentionsDismissParamsSchema, MentionsListParams, MentionsListParamsSchema, MentionsListResult, MentionsListResultSchema, MessageActionParams, MessageActionParamsSchema, MessageSendApprovalScopeSchema, MigrationProtocolSchemas, MigrationsMemoryApplyParamsSchema, MigrationsMemoryApplyResult, MigrationsMemoryPlanParamsSchema, MigrationsMemoryPlanResult, MissingScopeErrorDetails, MissingScopeErrorDetailsSchema, ModelCatalogProviderOutcome, ModelCatalogProviderOutcomeSchema, ModelChoice, ModelChoiceSchema, ModelsAuthLogoutParams, ModelsAuthLogoutParamsSchema, ModelsAuthOrderSetParams, ModelsAuthOrderSetParamsSchema, ModelsAuthStatusParams, ModelsAuthStatusParamsSchema, ModelsListParams, ModelsListParamsSchema, ModelsListResult, ModelsListResultSchema, ModelsProbeParams, ModelsProbeParamsSchema, ModelsProbeResult, ModelsProbeResultSchema, ModelsProbeTargetResult, ModelsProbeTargetResultSchema, NODE_PRESENCE_ALIVE_REASONS, NodeDescribeParams, NodeDescribeParamsSchema, NodeEventParams, NodeEventParamsSchema, NodeEventResult, NodeEventResultSchema, NodeHostStatsPayload, NodeHostStatsPayloadSchema, NodeInvokeInputEvent, NodeInvokeInputEventSchema, NodeInvokeParams, NodeInvokeParamsSchema, NodeInvokeProgressParams, NodeInvokeProgressParamsSchema, NodeInvokeRequestEventSchema, NodeInvokeResultParams, NodeInvokeResultParamsSchema, NodeListParams, NodeListParamsSchema, NodePairApproveParams, NodePairApproveParamsSchema, NodePairListParams, NodePairListParamsSchema, NodePairRejectParams, NodePairRejectParamsSchema, NodePairRemoveParams, NodePairRemoveParamsSchema, NodePendingAckParams, NodePendingAckParamsSchema, NodePendingDrainParams, NodePendingDrainParamsSchema, NodePendingDrainResult, NodePendingDrainResultSchema, NodePendingEnqueueParams, NodePendingEnqueueParamsSchema, NodePendingEnqueueResult, NodePendingEnqueueResultSchema, NodePluginToolDescriptor, NodePluginToolDescriptorSchema, NodePluginToolsUpdateParams, NodePluginToolsUpdateParamsSchema, NodePresenceActivityPayload, NodePresenceActivityPayloadSchema, NodePresenceAlivePayload, NodePresenceAlivePayloadSchema, NodePresenceAliveReason, NodePresenceAliveReasonSchema, NodeRenameParams, NodeRenameParamsSchema, NodeSkillDescriptor, NodeSkillDescriptorSchema, NodeSkillsUpdateParams, NodeSkillsUpdateParamsSchema, NonEmptyString, OutboundDeliveryQueuedErrorDetails, OutboundDeliveryQueuedErrorDetailsSchema, PROGRESS_CARD_MAX_STEPS, PROGRESS_CARD_MAX_STEP_UTF8_BYTES, PROGRESS_CARD_MAX_UTF8_BYTES, PROJECTS_LIST_DEFAULT_LIMIT, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT, PROJECTS_LIST_MAX_IDENTITY_PROBES, PaymentApprovalScopeSchema, PendingApprovalSnapshot, PendingApprovalSnapshotSchema, PendingSessionApprovalEventSchema, PersonalGitHubAccountSchema, PersonalGitHubGenerationSchema, PersonalGitHubStatus, PersonalGitHubStatusSchema, PluginApprovalExternalResolution, PluginApprovalExternalResolutionSchema, PluginApprovalPresentation, PluginApprovalPresentationSchema, PluginApprovalRequestParams, PluginApprovalRequestParamsSchema, PluginApprovalResolveParams, PluginApprovalResolveParamsSchema, PluginApprovalSeverity, PluginApprovalSeveritySchema, PluginCatalogClawHubInstallSchema, PluginCatalogEntry, PluginCatalogEntrySchema, PluginCatalogInstallActionSchema, PluginCatalogOfficialInstallSchema, PluginControlUiActivation, PluginControlUiDescriptor, PluginControlUiDescriptorSchema, PluginControlUiDiagnostic, PluginControlUiDiagnosticSchema, PluginControlUiModule, PluginControlUiModuleSchema, PluginDeclaredSurface, PluginDeclaredSurfaceSchema, PluginDeclaredSurfaceWideningSchema, PluginHookGrant, PluginHookGrantSchema, PluginInspectSource, PluginInspectSourceSchema, PluginInstallTrust, PluginInstallTrustSchema, PluginJsonValueSchema, PluginOperatorGrants, PluginOperatorGrantsSchema, PluginSearchPackageSchema, PluginSearchResultEntrySchema, PluginsControlUiCatalog, PluginsControlUiCatalogSchema, PluginsControlUiChangedEventSchema, PluginsControlUiListParamsSchema, PluginsControlUiReloadParams, PluginsControlUiReloadParamsSchema, PluginsControlUiReportParamsSchema, PluginsControlUiStatusParamsSchema, PluginsControlUiStatusResultSchema, PluginsInspectParams, PluginsInspectParamsSchema, PluginsInspectResult, PluginsInspectResultSchema, PluginsInstallParams, PluginsInstallParamsSchema, PluginsInstallResult, PluginsInstallResultSchema, PluginsListParams, PluginsListParamsSchema, PluginsListResult, PluginsListResultSchema, PluginsRefreshParams, PluginsRefreshParamsSchema, PluginsRefreshResult, PluginsRefreshResultSchema, PluginsSearchParams, PluginsSearchParamsSchema, PluginsSearchResult, PluginsSearchResultSchema, PluginsSessionActionFailureResultSchema, PluginsSessionActionParams, PluginsSessionActionParamsSchema, PluginsSessionActionResult, PluginsSessionActionResultSchema, PluginsSessionActionSuccessResultSchema, PluginsSetEnabledParams, PluginsSetEnabledParamsSchema, PluginsSetEnabledResult, PluginsSetEnabledResultSchema, PluginsUiDescriptorsParams, PluginsUiDescriptorsParamsSchema, PluginsUiDescriptorsResult, PluginsUiDescriptorsResultSchema, PluginsUninstallParams, PluginsUninstallParamsSchema, PluginsUninstallResult, PluginsUninstallResultSchema, PollParams, PollParamsSchema, PortalChangedEvent, PortalChangedEventSchema, PortalCloseParams, PortalCloseParamsSchema, PortalCloseResult, PortalCloseResultSchema, PortalListParams, PortalListParamsSchema, PortalListResult, PortalListResultSchema, PortalOpenParams, PortalOpenParamsSchema, PortalOpenResult, PortalOpenResultSchema, PortalSummary, PortalSummarySchema, PresenceEntry, PresenceEntrySchema, PreservedSessionWorktree, PreservedSessionWorktreeSchema, PrincipalRefV1, PrincipalRefV1Schema, ProgressCard, ProgressCardChangedEvent, ProgressCardChangedEventSchema, ProgressCardGetParams, ProgressCardGetParamsSchema, ProgressCardGetResult, ProgressCardGetResultSchema, ProgressCardPutParams, ProgressCardPutParamsSchema, ProgressCardPutResult, ProgressCardPutResultSchema, ProgressCardSchema, ProgressCardStep, ProgressCardStepSchema, ProgressCardStepStatus, ProgressCardStepStatusSchema, ProjectCheckout, ProjectCheckoutSchema, ProjectCloneErrorDetails, ProjectCloneErrorDetailsSchema, ProjectCloneFailureCause, ProjectRecent, ProjectRecentFolderSchema, ProjectRecentProjectSchema, ProjectRecentSchema, ProjectRecord, ProjectRecordSchema, ProjectSummary, ProjectSummarySchema, ProjectsAddParams, ProjectsAddParamsSchema, ProjectsAddResult, ProjectsAddResultSchema, ProjectsListParams, ProjectsListParamsSchema, ProjectsListResult, ProjectsListResultSchema, ProjectsRegisterParams, ProjectsRegisterParamsSchema, ProjectsRegisterResult, ProjectsRegisterResultSchema, ProjectsRemoveParams, ProjectsRemoveParamsSchema, ProjectsRemoveResult, ProjectsRemoveResultSchema, ProjectsSearchRemoteParams, ProjectsSearchRemoteParamsSchema, ProjectsSearchRemoteResult, ProjectsSearchRemoteResultSchema, PushTestParams, PushTestParamsSchema, PushTestResult, PushTestResultSchema, Question, QuestionAnswers, QuestionAnswersSchema, QuestionGetParams, QuestionGetParamsSchema, QuestionGetResult, QuestionGetResultSchema, QuestionListParams, QuestionListParamsSchema, QuestionListResult, QuestionListResultSchema, QuestionOption, QuestionOptionSchema, QuestionRecord, QuestionRecordSchema, QuestionRequestParams, QuestionRequestParamsSchema, QuestionRequestQuestion, QuestionRequestQuestionSchema, QuestionRequestResult, QuestionRequestResultSchema, QuestionRequestedEvent, QuestionRequestedEventSchema, QuestionResolveParams, QuestionResolveParamsSchema, QuestionResolveResult, QuestionResolveResultSchema, QuestionResolvedEvent, QuestionResolvedEventSchema, QuestionSchema, QuestionSecretStoreBindingSchema, QuestionSecretStoreExistingSchema, QuestionStatus, QuestionStatusSchema, QuestionWaitAnswerParams, QuestionWaitAnswerParamsSchema, QuestionWaitAnswerResult, QuestionWaitAnswerResultSchema, QueueMode, RemoteProject, RemoteProjectSchema, RequestFrame, RequestFrameSchema, RequiredNodeCommand, RequiredNodeCommandSchema, RequiredNodeCommandState, RequiredNodeCommandStateSchema, ResponseFrame, ResponseFrameSchema, RuntimeTargetIssue, RuntimeTargetIssueSchema, SESSIONS_PATCH_MANY_MAX_TARGETS, SESSION_OBSERVER_HEALTH_VALUES, SESSION_VIEWER_PRESENCE_MAX_KEYS, SESSION_VISIBILITY_VALUES, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS, ScopeUpgradeApprovedSchema, ScopeUpgradeExpiredSchema, ScopeUpgradeRegistration, ScopeUpgradeRegistrationSchema, ScopeUpgradeRejectedSchema, ScopeUpgradeRequest, ScopeUpgradeRequestSchema, ScopeUpgradeResult, ScopeUpgradeResultSchema, ScopeUpgradeWait, ScopeUpgradeWaitSchema, SecretInputSchema, SecretRefSchema, SecretStoreEntry, SecretStoreEntrySchema, SecretStoreEnvEntrySchema, SecretStoreSecretEntrySchema, SecretsReloadParamsSchema, SecretsResolveAssignmentSchema, SecretsResolveParams, SecretsResolveParamsSchema, SecretsResolveResult, SecretsResolveResultSchema, SecretsStoreDeleteParams, SecretsStoreDeleteParamsSchema, SecretsStoreListParamsSchema, SecretsStoreListResult, SecretsStoreListResultSchema, SecretsStoreMutationResult, SecretsStoreMutationResultSchema, SecretsStoreSetParams, SecretsStoreSetParamsSchema, SendParamsSchema, SessionApprovalEvent, SessionApprovalEventSchema, SessionApprovalReplay, SessionApprovalReplaySchema, SessionBranch, SessionBranchSchema, SessionCatalog, SessionCatalogCapabilities, SessionCatalogCapabilitiesSchema, SessionCatalogDescriptor, SessionCatalogDescriptorSchema, SessionCatalogHost, SessionCatalogHostSchema, SessionCatalogLocator, SessionCatalogLocatorSchema, SessionCatalogPullRequestSummary, SessionCatalogPullRequestSummarySchema, SessionCatalogSchema, SessionCatalogSession, SessionCatalogSessionSchema, SessionCatalogShareRoute, SessionCatalogShareRouteSchema, SessionCatalogTranscriptItem, SessionCatalogTranscriptItemSchema, SessionCompactionCheckpoint, SessionCompactionCheckpointSchema, SessionCompanionExchange, SessionCompanionExchangeSchema, SessionCreatedActor, SessionCreatedActorSchema, SessionDiffCommit, SessionDiffCommitSchema, SessionDiffFile, SessionDiffFileSchema, SessionDiffFileStatus, SessionDiffFileStatusSchema, SessionDiffScope, SessionDiffScopeSchema, SessionDiscussionInfo, SessionDiscussionInfoParams, SessionDiscussionInfoParamsSchema, SessionDiscussionInfoResult, SessionDiscussionInfoResultSchema, SessionDiscussionInfoSchema, SessionDiscussionOpenParams, SessionDiscussionOpenParamsSchema, SessionDiscussionOpenResult, SessionDiscussionOpenResultSchema, SessionDiscussionState, SessionDiscussionStateSchema, SessionFileBrowserEntry, SessionFileBrowserEntrySchema, SessionFileBrowserResult, SessionFileBrowserResultSchema, SessionFileContentEncoding, SessionFileContentEncodingSchema, SessionFileEntry, SessionFileEntrySchema, SessionFileKind, SessionFileKindSchema, SessionFilePreviewKind, SessionFilePreviewKindSchema, SessionFileRelevance, SessionFileRelevanceSchema, SessionGitHubConfirmParams, SessionGitHubConfirmParamsSchema, SessionGitHubOptionsParamsSchema, SessionGitHubOptionsResultSchema, SessionGitHubPublicationFailed, SessionGitHubPublicationFailedSchema, SessionGitHubPublicationNeedsConfirmationSchema, SessionGitHubPublicationPublished, SessionGitHubPublicationPublishedSchema, SessionGitHubPublicationPublishing, SessionGitHubPublicationPublishingSchema, SessionGitHubPublicationRequested, SessionGitHubPublicationRequestedSchema, SessionGitHubPublicationResult, SessionGitHubPublicationResultSchema, SessionGitHubPublishParams, SessionGitHubPublishParamsSchema, SessionGitHubStatusParamsSchema, SessionGitHubStatusResult, SessionGitHubStatusResultSchema, SessionGoal, SessionGoalSchema, SessionGoalStatus, SessionGroup, SessionGroupDefaults, SessionGroupDefaultsSchema, SessionGroupSchema, SessionLabelString, SessionMember, SessionMemberAddParams, SessionMemberAddParamsSchema, SessionMemberEvidence, SessionMemberEvidenceSchema, SessionMemberMutationResult, SessionMemberMutationResultSchema, SessionMemberRemoveParams, SessionMemberRemoveParamsSchema, SessionMemberSchema, SessionMembersListEvidenceResult, SessionMembersListEvidenceResultSchema, SessionMembersListParams, SessionMembersListParamsSchema, SessionMembersListResult, SessionMembersListResultSchema, SessionMoveDeviceTargetSchema, SessionMoveExpectedSource, SessionMoveExpectedSourceSchema, SessionMoveGatewayTargetSchema, SessionMovePlacement, SessionMovePlacementSchema, SessionMovePlacementState, SessionMovePlacementStateSchema, SessionMoveProfileTargetSchema, SessionMoveTarget, SessionMoveTargetSchema, SessionObserverDigest, SessionObserverDigestSchema, SessionObserverHealth, SessionObserverHealthSchema, SessionObserverPlanProgress, SessionObserverPlanProgressSchema, SessionOperationEvent, SessionOperationEventSchema, SessionOwner, SessionOwnerSchema, SessionParticipant, SessionParticipantIdentity, SessionParticipantIdentitySchema, SessionParticipantSchema, SessionPermissionMode, SessionPermissionModeSchema, SessionPerson, SessionPersonSchema, SessionPlacement, SessionPlacementDiskSpace, SessionPlacementDiskSpaceSchema, SessionPlacementMove, SessionPlacementMoveSchema, SessionPlacementProtocolSchemas, SessionPlacementRunner, SessionPlacementRunnerSchema, SessionPlacementSchema, SessionPlacementState, SessionPlacementStateSchema, SessionRow, SessionRowSchema, SessionRunStatus, SessionSharingAction, SessionSharingActionSchema, SessionSharingEvent, SessionSharingEventSchema, SessionSharingEvidenceEvent, SessionSharingEvidenceEventSchema, SessionSharingIdentity, SessionSharingIdentitySchema, SessionSharingRole, SessionSharingRoleSchema, SessionSuggestion, SessionSuggestionAction, SessionSuggestionActionSchema, SessionSuggestionEvent, SessionSuggestionEventSchema, SessionSuggestionResolution, SessionSuggestionResolutionSchema, SessionSuggestionSchema, SessionSuggestionState, SessionSuggestionStateSchema, SessionSuggestionsAddParams, SessionSuggestionsAddParamsSchema, SessionSuggestionsAddResult, SessionSuggestionsAddResultSchema, SessionSuggestionsListParams, SessionSuggestionsListParamsSchema, SessionSuggestionsListResult, SessionSuggestionsListResultSchema, SessionSuggestionsResolveParams, SessionSuggestionsResolveParamsSchema, SessionSuggestionsResolveResult, SessionSuggestionsResolveResultSchema, SessionToolOverrides, SessionToolOverridesSchema, SessionTypingEvent, SessionTypingEventSchema, SessionTypingParams, SessionTypingParamsSchema, SessionTypingResult, SessionTypingResultSchema, SessionVisibility, SessionVisibilitySchema, SessionVisibilitySetParams, SessionVisibilitySetParamsSchema, SessionVisibilitySetResult, SessionVisibilitySetResultSchema, SessionWorktreeInfo, SessionWorktreeInfoSchema, SessionsAbortParams, SessionsAbortParamsSchema, SessionsAssignOwnerParams, SessionsAssignOwnerParamsSchema, SessionsAssignOwnerResult, SessionsAssignOwnerResultSchema, SessionsBranchesListParams, SessionsBranchesListParamsSchema, SessionsBranchesListResult, SessionsBranchesListResultSchema, SessionsBranchesSwitchParams, SessionsBranchesSwitchParamsSchema, SessionsBranchesSwitchResult, SessionsBranchesSwitchResultSchema, SessionsCatalogArchiveParams, SessionsCatalogArchiveParamsSchema, SessionsCatalogArchiveResult, SessionsCatalogArchiveResultSchema, SessionsCatalogContinueParams, SessionsCatalogContinueParamsSchema, SessionsCatalogContinueResult, SessionsCatalogContinueResultSchema, SessionsCatalogHostEvent, SessionsCatalogHostEventSchema, SessionsCatalogListParams, SessionsCatalogListParamsSchema, SessionsCatalogListResult, SessionsCatalogListResultSchema, SessionsCatalogReadParams, SessionsCatalogReadParamsSchema, SessionsCatalogReadResult, SessionsCatalogReadResultSchema, SessionsCatalogStartTerminalParams, SessionsCatalogStartTerminalParamsSchema, SessionsCatalogStartTerminalResult, SessionsCatalogStartTerminalResultSchema, SessionsCleanupParams, SessionsCleanupParamsSchema, SessionsCompactParams, SessionsCompactParamsSchema, SessionsCompactionBranchParams, SessionsCompactionBranchParamsSchema, SessionsCompactionBranchResult, SessionsCompactionBranchResultSchema, SessionsCompactionListParams, SessionsCompactionListParamsSchema, SessionsCompactionListResult, SessionsCompactionListResultSchema, SessionsCompactionRestoreParams, SessionsCompactionRestoreParamsSchema, SessionsCompactionRestoreResult, SessionsCompactionRestoreResultSchema, SessionsCompanionAskParams, SessionsCompanionAskParamsSchema, SessionsCompanionAskResult, SessionsCompanionAskResultSchema, SessionsCompanionResetParams, SessionsCompanionResetParamsSchema, SessionsCompanionResetResult, SessionsCompanionResetResultSchema, SessionsCompanionStateParams, SessionsCompanionStateParamsSchema, SessionsCompanionStateResult, SessionsCompanionStateResultSchema, SessionsCreateParams, SessionsCreateParamsSchema, SessionsCreateResult, SessionsCreateResultSchema, SessionsDeleteParams, SessionsDeleteParamsSchema, SessionsDeleteResult, SessionsDeleteResultSchema, SessionsDescribeParams, SessionsDescribeParamsSchema, SessionsDiffParams, SessionsDiffParamsSchema, SessionsDiffResult, SessionsDiffResultSchema, SessionsDispatchParams, SessionsDispatchParamsSchema, SessionsDispatchResult, SessionsDispatchResultSchema, SessionsFilesGetParams, SessionsFilesGetParamsSchema, SessionsFilesGetResult, SessionsFilesGetResultSchema, SessionsFilesListParams, SessionsFilesListParamsSchema, SessionsFilesListResult, SessionsFilesListResultSchema, SessionsFilesRevealParams, SessionsFilesRevealParamsSchema, SessionsFilesRevealResult, SessionsFilesRevealResultSchema, SessionsFilesSetParams, SessionsFilesSetParamsSchema, SessionsFilesSetResult, SessionsFilesSetResultSchema, SessionsForkParams, SessionsForkParamsSchema, SessionsForkResult, SessionsForkResultSchema, SessionsGoalClearParams, SessionsGoalClearParamsSchema, SessionsGoalMutationResult, SessionsGoalMutationResultSchema, SessionsGoalUpdateParams, SessionsGoalUpdateParamsSchema, SessionsGroupsDefaultsParams, SessionsGroupsDefaultsParamsSchema, SessionsGroupsDefaultsResult, SessionsGroupsDefaultsResultSchema, SessionsGroupsDeleteParams, SessionsGroupsDeleteParamsSchema, SessionsGroupsListParams, SessionsGroupsListParamsSchema, SessionsGroupsListResult, SessionsGroupsListResultSchema, SessionsGroupsMutationResult, SessionsGroupsMutationResultSchema, SessionsGroupsPutParams, SessionsGroupsPutParamsSchema, SessionsGroupsRenameParams, SessionsGroupsRenameParamsSchema, SessionsGroupsUpdateParams, SessionsGroupsUpdateParamsSchema, SessionsGroupsUpdateResult, SessionsGroupsUpdateResultSchema, SessionsListParams, SessionsListParamsSchema, SessionsMessagesSubscribeParams, SessionsMessagesSubscribeParamsSchema, SessionsMessagesUnsubscribeParams, SessionsMessagesUnsubscribeParamsSchema, SessionsMoveParams, SessionsMoveParamsSchema, SessionsMoveResult, SessionsMoveResultSchema, SessionsObserverVisibilityParams, SessionsObserverVisibilityParamsSchema, SessionsObserverVisibilityResult, SessionsObserverVisibilityResultSchema, SessionsPatchManyParams, SessionsPatchManyParamsSchema, SessionsPatchManyResult, SessionsPatchManyResultSchema, SessionsPatchManyTarget, SessionsPatchManyTargetSchema, SessionsPatchMutation, SessionsPatchMutationSchema, SessionsPatchParams, SessionsPatchParamsSchema, SessionsPluginPatchParams, SessionsPluginPatchParamsSchema, SessionsPluginPatchResult, SessionsPluginPatchResultSchema, SessionsPreviewParams, SessionsPreviewParamsSchema, SessionsReclaimParams, SessionsReclaimParamsSchema, SessionsReclaimResult, SessionsReclaimResultPlacement, SessionsReclaimResultPlacementSchema, SessionsReclaimResultSchema, SessionsRecoverParams, SessionsRecoverParamsSchema, SessionsRecoverResult, SessionsRecoverResultSchema, SessionsResetParams, SessionsResetParamsSchema, SessionsResolveCandidate, SessionsResolveCandidateSchema, SessionsResolveParams, SessionsResolveParamsSchema, SessionsResolveResult, SessionsResolveResultSchema, SessionsRewindParams, SessionsRewindParamsSchema, SessionsRewindResult, SessionsRewindResultSchema, SessionsSearchHit, SessionsSearchHitSchema, SessionsSearchParams, SessionsSearchParamsSchema, SessionsSearchResult, SessionsSearchResultSchema, SessionsSendParams, SessionsSendParamsSchema, SessionsTitlePrepareParams, SessionsTitlePrepareParamsSchema, SessionsTitlePrepareResult, SessionsTitlePrepareResultSchema, SessionsUsageParams, SessionsUsageParamsSchema, SessionsViewerPresenceSetParams, SessionsViewerPresenceSetParamsSchema, SessionsViewerPresenceSetResult, SessionsViewerPresenceSetResultSchema, SetupAdmissionBusyErrorDetails, SetupAdmissionBusyErrorDetailsSchema, ShutdownEvent, ShutdownEventSchema, SkillProposalEvaluation, SkillProposalEvaluationSchema, SkillProposalLifecycleEvent, SkillProposalLifecycleEventSchema, SkillProposalRevisionChangedErrorDetails, SkillProposalRevisionChangedErrorDetailsSchema, SkillsBinsParams, SkillsBinsParamsSchema, SkillsBinsResult, SkillsBinsResultSchema, SkillsCuratorActionParams, SkillsCuratorActionParamsSchema, SkillsCuratorActionResult, SkillsCuratorActionResultSchema, SkillsCuratorStatusParams, SkillsCuratorStatusParamsSchema, SkillsCuratorStatusResult, SkillsCuratorStatusResultSchema, SkillsDetailParams, SkillsDetailParamsSchema, SkillsDetailResult, SkillsDetailResultSchema, SkillsInstallParams, SkillsInstallParamsSchema, SkillsProposalActionParams, SkillsProposalActionParamsSchema, SkillsProposalApplyResult, SkillsProposalApplyResultSchema, SkillsProposalCreateParams, SkillsProposalCreateParamsSchema, SkillsProposalDecisionParams, SkillsProposalDecisionParamsSchema, SkillsProposalEvaluateParams, SkillsProposalEvaluateParamsSchema, SkillsProposalEvaluateResult, SkillsProposalEvaluateResultSchema, SkillsProposalEventsListParams, SkillsProposalEventsListParamsSchema, SkillsProposalEventsListResult, SkillsProposalEventsListResultSchema, SkillsProposalHistoryScanParams, SkillsProposalHistoryScanParamsSchema, SkillsProposalHistoryScanResult, SkillsProposalHistoryScanResultSchema, SkillsProposalHistoryStatusParams, SkillsProposalHistoryStatusParamsSchema, SkillsProposalInspectParams, SkillsProposalInspectParamsSchema, SkillsProposalInspectResult, SkillsProposalInspectResultSchema, SkillsProposalRecordResult, SkillsProposalRecordResultSchema, SkillsProposalRequestRevisionParams, SkillsProposalRequestRevisionParamsSchema, SkillsProposalRequestRevisionResult, SkillsProposalRequestRevisionResultSchema, SkillsProposalReviseParams, SkillsProposalReviseParamsSchema, SkillsProposalUpdateParams, SkillsProposalUpdateParamsSchema, SkillsProposalsListParams, SkillsProposalsListParamsSchema, SkillsProposalsListResult, SkillsProposalsListResultSchema, SkillsSearchParams, SkillsSearchParamsSchema, SkillsSearchResult, SkillsSearchResultSchema, SkillsSecurityVerdictsParams, SkillsSecurityVerdictsParamsSchema, SkillsSecurityVerdictsResult, SkillsSecurityVerdictsResultSchema, SkillsSkillCardParams, SkillsSkillCardParamsSchema, SkillsSkillCardResult, SkillsSkillCardResultSchema, SkillsStatusParams, SkillsStatusParamsSchema, SkillsUpdateParams, SkillsUpdateParamsSchema, SkillsUploadBeginParams, SkillsUploadBeginParamsSchema, SkillsUploadChunkParams, SkillsUploadChunkParamsSchema, SkillsUploadCommitParams, SkillsUploadCommitParamsSchema, Snapshot, SnapshotSchema, StandingGrantApprovalScopeSchema, StateVersion, StateVersionSchema, SystemAgentApprovalPresentation, SystemAgentApprovalPresentationSchema, SystemAgentChatHistoryParams, SystemAgentChatHistoryParamsSchema, SystemAgentChatHistoryResult, SystemAgentChatHistoryResultSchema, SystemAgentChatHistoryTurn, SystemAgentChatHistoryTurnSchema, SystemAgentChatParams, SystemAgentChatParamsSchema, SystemAgentChatQuestion, SystemAgentChatQuestionSchema, SystemAgentChatResult, SystemAgentChatResultSchema, SystemAgentSetupActivateParams, SystemAgentSetupActivateParamsSchema, SystemAgentSetupActivateResult, SystemAgentSetupActivateResultSchema, SystemAgentSetupActivateStartParams, SystemAgentSetupActivateStartParamsSchema, SystemAgentSetupActivateStartResult, SystemAgentSetupActivateStartResultSchema, SystemAgentSetupAuthStartParams, SystemAgentSetupAuthStartParamsSchema, SystemAgentSetupAuthStartResult, SystemAgentSetupAuthStartResultSchema, SystemAgentSetupDetectParams, SystemAgentSetupDetectParamsSchema, SystemAgentSetupDetectResult, SystemAgentSetupDetectResultSchema, SystemAgentSetupVerifyParams, SystemAgentSetupVerifyParamsSchema, SystemAgentSetupVerifyResult, SystemAgentSetupVerifyResultSchema, SystemAgentWizardCancel, SystemAgentWizardCancelSchema, SystemChangeEntry, SystemChangeEntrySchema, SystemChangeKind, SystemChangeKindSchema, SystemChangeSource, SystemChangeSourceSchema, SystemChangesListParams, SystemChangesListParamsSchema, SystemChangesListResult, SystemChangesListResultSchema, SystemInfoParams, SystemInfoParamsSchema, SystemInfoResult, SystemInfoResultSchema, TASKS_LIST_CURSOR_MAX_LENGTH, TalkAgentControlResult, TalkAgentControlResultSchema, TalkCatalogParams, TalkCatalogParamsSchema, TalkCatalogResult, TalkCatalogResultSchema, TalkClientCloseParams, TalkClientCloseParamsSchema, TalkClientCreateParams, TalkClientCreateParamsSchema, TalkClientCreateResult, TalkClientCreateResultSchema, TalkClientMutationResult, TalkClientMutationResultSchema, TalkClientSteerParams, TalkClientSteerParamsSchema, TalkClientToolCallParams, TalkClientToolCallParamsSchema, TalkClientToolCallResult, TalkClientToolCallResultSchema, TalkClientTranscriptParams, TalkClientTranscriptParamsSchema, TalkConfigParams, TalkConfigParamsSchema, TalkConfigResult, TalkConfigResultSchema, TalkEvent, TalkEventSchema, TalkModeParams, TalkModeParamsSchema, TalkSessionAcknowledgeMarkParams, TalkSessionAcknowledgeMarkParamsSchema, TalkSessionAppendAudioParams, TalkSessionAppendAudioParamsSchema, TalkSessionCancelOutputParams, TalkSessionCancelOutputParamsSchema, TalkSessionCancelOutputResult, TalkSessionCancelOutputResultSchema, TalkSessionCloseParams, TalkSessionCloseParamsSchema, TalkSessionCreateParams, TalkSessionCreateParamsSchema, TalkSessionCreateResult, TalkSessionCreateResultSchema, TalkSessionOkResult, TalkSessionOkResultSchema, TalkSessionSteerParams, TalkSessionSteerParamsSchema, TalkSessionSubmitToolResultParams, TalkSessionSubmitToolResultParamsSchema, TalkSpeakParams, TalkSpeakParamsSchema, TalkSpeakResult, TalkSpeakResultSchema, TaskSuggestion, TaskSuggestionEvent, TaskSuggestionEventSchema, TaskSuggestionResolution, TaskSuggestionResolutionSchema, TaskSuggestionSchema, TaskSuggestionsAcceptParams, TaskSuggestionsAcceptParamsSchema, TaskSuggestionsAcceptResult, TaskSuggestionsAcceptResultSchema, TaskSuggestionsCreateParams, TaskSuggestionsCreateParamsSchema, TaskSuggestionsCreateResult, TaskSuggestionsCreateResultSchema, TaskSuggestionsDismissParams, TaskSuggestionsDismissParamsSchema, TaskSuggestionsDismissResult, TaskSuggestionsDismissResultSchema, TaskSuggestionsListParams, TaskSuggestionsListParamsSchema, TaskSuggestionsListResult, TaskSuggestionsListResultSchema, TaskSummary, TaskSummarySchema, TasksCancelParams, TasksCancelParamsSchema, TasksCancelResult, TasksCancelResultSchema, TasksGetParams, TasksGetParamsSchema, TasksGetResult, TasksGetResultSchema, TasksListParams, TasksListParamsSchema, TasksListResult, TasksListResultSchema, TasksRecoveryParams, TasksRecoveryParamsSchema, TasksRecoveryResult, TasksRecoveryResultSchema, TerminalAckResult, TerminalAckResultSchema, TerminalApprovalSnapshot, TerminalApprovalSnapshotSchema, TerminalAttachParams, TerminalAttachParamsSchema, TerminalAttachResult, TerminalAttachResultSchema, TerminalCloseParams, TerminalCloseParamsSchema, TerminalDataEvent, TerminalDataEventSchema, TerminalEvent, TerminalEventSchema, TerminalExitEvent, TerminalExitEventSchema, TerminalInputParams, TerminalInputParamsSchema, TerminalListResult, TerminalListResultSchema, TerminalOpenParams, TerminalOpenParamsSchema, TerminalOpenResult, TerminalOpenResultSchema, TerminalResizeParams, TerminalResizeParamsSchema, TerminalSessionApprovalEventSchema, TerminalSessionInfo, TerminalSessionInfoSchema, TerminalUploadParams, TerminalUploadParamsSchema, TerminalUploadResult, TerminalUploadResultSchema, TickEvent, TickEventSchema, ToolCatalogEntry, ToolCatalogEntrySchema, ToolCatalogGroup, ToolCatalogGroupSchema, ToolCatalogProfile, ToolCatalogProfileSchema, ToolsCatalogParams, ToolsCatalogParamsSchema, ToolsCatalogResult, ToolsCatalogResultSchema, ToolsEffectiveEntry, ToolsEffectiveEntrySchema, ToolsEffectiveGroup, ToolsEffectiveGroupSchema, ToolsEffectiveNotice, ToolsEffectiveNoticeSchema, ToolsEffectiveParams, ToolsEffectiveParamsSchema, ToolsEffectiveResult, ToolsEffectiveResultSchema, ToolsGitHubAuthorizeAccessDeniedResultSchema, ToolsGitHubAuthorizeCancelParams, ToolsGitHubAuthorizeCancelParamsSchema, ToolsGitHubAuthorizeCancelResult, ToolsGitHubAuthorizeCancelResultSchema, ToolsGitHubAuthorizeExpiredResultSchema, ToolsGitHubAuthorizeFailedResultSchema, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema, ToolsGitHubAuthorizeNetworkErrorResultSchema, ToolsGitHubAuthorizePendingResultSchema, ToolsGitHubAuthorizePollParams, ToolsGitHubAuthorizePollParamsSchema, ToolsGitHubAuthorizePollResult, ToolsGitHubAuthorizePollResultSchema, ToolsGitHubAuthorizeSlowDownResultSchema, ToolsGitHubAuthorizeStartParams, ToolsGitHubAuthorizeStartParamsSchema, ToolsGitHubAuthorizeStartResult, ToolsGitHubAuthorizeStartResultSchema, ToolsGitHubAuthorizeSuccessResultSchema, ToolsGitHubConfigureParams, ToolsGitHubConfigureParamsSchema, ToolsGitHubInheritConfigureParams, ToolsGitHubInheritConfigureParamsSchema, ToolsGitHubManagedConfigureParams, ToolsGitHubManagedConfigureParamsSchema, ToolsGitHubStatusParams, ToolsGitHubStatusParamsSchema, ToolsGitHubStatusResult, ToolsGitHubStatusResultSchema, ToolsInvokeErrorSchema, ToolsInvokeParams, ToolsInvokeParamsSchema, ToolsInvokeResult, ToolsInvokeResultSchema, TranscriptSessionSummary, TranscriptSessionSummarySchema, TranscriptsGetParams, TranscriptsGetParamsSchema, TranscriptsGetResult, TranscriptsGetResultSchema, TranscriptsListParams, TranscriptsListParamsSchema, TranscriptsListResult, TranscriptsListResultSchema, TtsSpeakParams, TtsSpeakParamsSchema, TtsSpeakResult, TtsSpeakResultSchema, UI_APPEARANCE_PREFERENCE_KEYS, USER_PREFS_ENTRY_LIMIT, USER_PREFS_PROFILE_KEY_LIMIT, USER_PREFS_VALUE_BYTES, UiAppearancePreferenceKey, UiClosePaneCommandSchema, UiCommand, UiCommandParams, UiCommandParamsSchema, UiCommandResult, UiCommandResultSchema, UiCommandSchema, UiFocusCommandSchema, UiNavigateCommandSchema, UiPanelCommandSchema, UiSidebarCommandSchema, UiSplitCommandSchema, UnknownAgentIdErrorDetails, UnknownAgentIdErrorDetailsSchema, UpdateAvailable, UpdateAvailableSchema, UpdateHoldParams, UpdateHoldParamsSchema, UpdateHoldResult, UpdateHoldResultSchema, UpdateRunChangedEvent, UpdateRunChangedEventSchema, UpdateRunParams, UpdateRunParamsSchema, UpdateRunRecord, UpdateRunRecordSchema, UpdateRunResult, UpdateRunResultSchema, UpdateRunsGetParams, UpdateRunsGetParamsSchema, UpdateRunsGetResult, UpdateRunsGetResultSchema, UpdateRunsListParams, UpdateRunsListParamsSchema, UpdateRunsListResult, UpdateRunsListResultSchema, UpdateScheduleState, UpdateScheduleStateSchema, UpdateStatusParams, UpdateStatusParamsSchema, UpdateStatusResult, UpdateStatusResultSchema, UserModelAccount, UserModelAccountSchema, UserPrefsLimitExceededErrorDetails, UserPrefsLimitExceededErrorDetailsSchema, UserProfile, UserProfileAuthLink, UserProfileAuthLinkSchema, UserProfileAvatarMimeSchema, UserProfileGitHubIdentity, UserProfileGitHubIdentitySchema, UserProfileSchema, UsersAuthConnectAnswerParams, UsersAuthConnectAnswerParamsSchema, UsersAuthConnectCancelParams, UsersAuthConnectCancelParamsSchema, UsersAuthConnectCatalogParams, UsersAuthConnectCatalogParamsSchema, UsersAuthConnectCatalogResult, UsersAuthConnectCatalogResultSchema, UsersAuthConnectResult, UsersAuthConnectResultSchema, UsersAuthConnectStartParams, UsersAuthConnectStartParamsSchema, UsersAuthConnectStartResult, UsersAuthConnectStartResultSchema, UsersAuthConnectStatusParams, UsersAuthConnectStatusParamsSchema, UsersAuthConnectStatusResult, UsersAuthConnectStatusResultSchema, UsersGitHubAuthorizeCancelParamsSchema, UsersGitHubAuthorizeCancelResultSchema, UsersGitHubAuthorizePollParamsSchema, UsersGitHubAuthorizePollResult, UsersGitHubAuthorizePollResultSchema, UsersGitHubAuthorizeStartParamsSchema, UsersGitHubAuthorizeStartResult, UsersGitHubAuthorizeStartResultSchema, UsersGitHubDisconnectParamsSchema, UsersGitHubDisconnectResultSchema, UsersGitHubStatusParamsSchema, UsersGitHubStatusResult, UsersGitHubStatusResultSchema, UsersLinkAuthProfileParams, UsersLinkAuthProfileParamsSchema, UsersLinkAuthProfileResult, UsersLinkAuthProfileResultSchema, UsersLinkEmailParams, UsersLinkEmailParamsSchema, UsersLinkEmailResult, UsersLinkEmailResultSchema, UsersListAuthLinksParams, UsersListAuthLinksParamsSchema, UsersListAuthLinksResult, UsersListAuthLinksResultSchema, UsersListModelAccountsParams, UsersListModelAccountsParamsSchema, UsersListModelAccountsResult, UsersListModelAccountsResultSchema, UsersListParams, UsersListParamsSchema, UsersListResult, UsersListResultSchema, UsersMentionableParams, UsersMentionableParamsSchema, UsersMentionableResult, UsersMentionableResultSchema, UsersPrefsChangedEvent, UsersPrefsChangedEventSchema, UsersPrefsGetParams, UsersPrefsGetParamsSchema, UsersPrefsGetResult, UsersPrefsGetResultSchema, UsersPrefsSetParams, UsersPrefsSetParamsSchema, UsersPrefsSetResult, UsersPrefsSetResultSchema, UsersSelectModelAccountParams, UsersSelectModelAccountParamsSchema, UsersSelectModelAccountResult, UsersSelectModelAccountResultSchema, UsersSelfParams, UsersSelfParamsSchema, UsersSelfResult, UsersSelfResultSchema, UsersSetAvatarParams, UsersSetAvatarParamsSchema, UsersSetAvatarResult, UsersSetAvatarResultSchema, UsersSetDisplayNameParams, UsersSetDisplayNameParamsSchema, UsersSetDisplayNameResult, UsersSetDisplayNameResultSchema, UsersSetRoleParams, UsersSetRoleParamsSchema, UsersSetRoleResult, UsersSetRoleResultSchema, UsersUnlinkAuthProfileParams, UsersUnlinkAuthProfileParamsSchema, UsersUnlinkAuthProfileResult, UsersUnlinkAuthProfileResultSchema, WORKER_BUNDLE_PREWARM_VERSION, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE, WORKER_HEARTBEAT_INTERVAL_MS, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES, WORKER_INFERENCE_MAX_OUTPUT_TOKENS, WORKER_INFERENCE_METHODS, WORKER_INFERENCE_PROTOCOL_FEATURE, WORKER_LAUNCH_V2_PROTOCOL_FEATURE, WORKER_LIVE_EVENT_PROTOCOL_FEATURE, WORKER_PORTAL_PROTOCOL_FEATURE, WORKER_PROTOCOL_FEATURES, WORKER_PROTOCOL_MAX_FEATURES, WORKER_PROTOCOL_MAX_FEATURE_LENGTH, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES, WORKER_PROTOCOL_MAX_METHOD_LENGTH, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES, WORKER_PROTOCOL_METHODS, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES, WORKER_PUBLIC_INGRESS_PATH, WORKER_RPC_SET_VERSION, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS, WORKER_TRANSCRIPT_MAX_JSON_DEPTH, WORKTREE_PRESERVATION_REASONS, WakeParams, WakeParamsSchema, WebLoginStartParams, WebLoginStartParamsSchema, WebLoginWaitParams, WebLoginWaitParamsSchema, WebPushDetailLevel, WebPushDetailLevelSchema, WebPushDevicePreferences, WebPushDevicePreferencesSchema, WebPushNotificationCategory, WebPushNotificationCategorySchema, WebPushNotificationPreferences, WebPushNotificationPreferencesSchema, WebPushPreferencesGetParams, WebPushPreferencesGetParamsSchema, WebPushPreferencesSetParams, WebPushPreferencesSetParamsSchema, WebPushSubscribeParams, WebPushSubscribeParamsSchema, WebPushTestParams, WebPushTestParamsSchema, WebPushUnsubscribeParams, WebPushUnsubscribeParamsSchema, WebPushVapidPublicKeyParams, WebPushVapidPublicKeyParamsSchema, WizardAnswer, WizardAnswerSchema, WizardCancelParams, WizardCancelParamsSchema, WizardNextParams, WizardNextParamsSchema, WizardNextResult, WizardNextResultSchema, WizardNotFoundErrorDetails, WizardNotFoundErrorDetailsSchema, WizardStartParams, WizardStartParamsSchema, WizardStartResult, WizardStartResultSchema, WizardStatusParams, WizardStatusParamsSchema, WizardStatusResult, WizardStatusResultSchema, WizardStep, WizardStepSchema, WorkerAdmissionFailureReason, WorkerAdmissionFailureReasonSchema, WorkerAdmissionHandshake, WorkerAdmissionHandshakeSchema, WorkerAdmissionResponseFrame, WorkerAdmissionResponseFrameSchema, WorkerConnectParams, WorkerConnectRequestFrame, WorkerConnectRequestFrameSchema, WorkerDesktopAppId, WorkerDesktopAppIdSchema, WorkerDesktopLaunchParams, WorkerDesktopLaunchParamsSchema, WorkerDesktopLaunchResult, WorkerDesktopLaunchResultSchema, WorkerDesktopObserveParams, WorkerDesktopObserveParamsSchema, WorkerDesktopObserveResult, WorkerDesktopObserveResultSchema, WorkerEnvironmentMetadata, WorkerEnvironmentMetadataSchema, WorkerEnvironmentState, WorkerEnvironmentStateSchema, WorkerErrorShape, WorkerExecutionMode, WorkerExecutionModeSchema, WorkerHeartbeatParams, WorkerHeartbeatParamsSchema, WorkerHeartbeatRequestFrame, WorkerHeartbeatRequestFrameSchema, WorkerHeartbeatResponseFrame, WorkerHeartbeatResponseFrameSchema, WorkerHeartbeatResult, WorkerHelloOk, WorkerInferenceCancelParams, WorkerInferenceCancelRequestFrame, WorkerInferenceCancelRequestFrameSchema, WorkerInferenceCancelResponseFrame, WorkerInferenceCancelResponseFrameSchema, WorkerInferenceCancelResult, WorkerInferenceContext, WorkerInferenceErrorReason, WorkerInferenceErrorShape, WorkerInferenceEventFrame, WorkerInferenceEventParams, WorkerInferenceImageContentSchema, WorkerInferenceModelRef, WorkerInferenceModelRefSchema, WorkerInferenceOptions, WorkerInferenceOptionsSchema, WorkerInferenceStartParams, WorkerInferenceStartRequestFrame, WorkerInferenceStartRequestFrameSchema, WorkerInferenceStartResponseFrame, WorkerInferenceStartResponseFrameSchema, WorkerInferenceStartResult, WorkerInferenceTerminalFrame, WorkerInferenceTerminalOutcome, WorkerInferenceTerminalParams, WorkerLiveEvent, WorkerLiveEventErrorDetails, WorkerLiveEventErrorDetailsSchema, WorkerLiveEventErrorShape, WorkerLiveEventErrorShapeSchema, WorkerLiveEventParams, WorkerLiveEventParamsSchema, WorkerLiveEventRequestFrame, WorkerLiveEventRequestFrameSchema, WorkerLiveEventResponseFrame, WorkerLiveEventResponseFrameSchema, WorkerLiveEventResult, WorkerLiveEventResultSchema, WorkerLiveEventSchema, WorkerMachineOption, WorkerMachineOptionSchema, WorkerMachineOptionsSchema, WorkerPortalParams, WorkerPortalParamsSchema, WorkerPortalResponseFrame, WorkerPortalResponseFrameSchema, WorkerProtocolCloseReason, WorkerProtocolCloseReasonSchema, WorkerProviderReplayState, WorkerProviderReplayStateSchema, WorkerSessionToolResponseFrameSchema, WorkerSessionToolResult, WorkerSessionToolResultSchema, WorkerSessionsSendParams, WorkerSessionsSendParamsSchema, WorkerSessionsSendResponseFrame, WorkerSessionsSendResponseFrameSchema, WorkerSessionsSpawnParams, WorkerSessionsSpawnParamsSchema, WorkerSessionsSpawnResponseFrame, WorkerSessionsSpawnResponseFrameSchema, WorkerSlotSummary, WorkerSlotSummarySchema, WorkerTranscriptCommitErrorReason, WorkerTranscriptCommitErrorReasonSchema, WorkerTranscriptCommitErrorShape, WorkerTranscriptCommitErrorShapeSchema, WorkerTranscriptCommitParams, WorkerTranscriptCommitParamsSchema, WorkerTranscriptCommitRequestFrame, WorkerTranscriptCommitRequestFrameSchema, WorkerTranscriptCommitResponseFrame, WorkerTranscriptCommitResponseFrameSchema, WorkerTranscriptCommitResult, WorkerTranscriptCommitResultSchema, WorkerTranscriptMessage, WorkerTranscriptMessageSchema, WorkerTranscriptUserMessageSchema, WorkerTunnelStatus, WorkerTunnelStatusSchema, WorktreeBranch, WorktreeBranchSchema, WorktreePreservationReason, WorktreePreservationReasonSchema, WorktreeRecord, WorktreeRecordSchema, WorktreeRepositoryStatus, WorktreeRepositoryStatusSchema, WorktreesBranchesParams, WorktreesBranchesParamsSchema, WorktreesBranchesResult, WorktreesBranchesResultSchema, WorktreesCreateParams, WorktreesCreateParamsSchema, WorktreesGcParams, WorktreesGcParamsSchema, WorktreesGcResult, WorktreesGcResultSchema, WorktreesListParams, WorktreesListParamsSchema, WorktreesListResult, WorktreesListResultSchema, WorktreesRemoveParams, WorktreesRemoveParamsSchema, WorktreesRemoveResult, WorktreesRemoveResultSchema, WorktreesRestoreParams, WorktreesRestoreParamsSchema, buildMissingScopeErrorDetails, buildSkillProposalRevisionChangedErrorDetails, errorShape, findAuditActivityFilterConflict, isCloudWorkerPlacementState, isGitCoauthorCreditEnabled, isMcpAppViewExpiredError, isWellFormedApprovalId, missingScopeErrorShape, normalizeUiAppearancePreference, projectChatErrorDetail, readCronJobNotFoundError, readGitHubPublicationSelectionRejectedError, readMissingScopeError, readMissingScopeErrorDetails, readSkillProposalRevisionChangedError, validateSkillsProposalHistoryScanParams, validateSkillsProposalHistoryStatusParams, validateSystemEventParams, validateWorkerInferenceCancelParams, validateWorkerInferenceEventFrame, validateWorkerInferenceStartParams, validateWorkerInferenceTerminalFrame, validateWorkerInferenceTerminalOutcome };
24711
+ export { AUDIT_ACTIVITY_DIRECTIONS, AUDIT_ACTIVITY_KINDS, AUDIT_ACTIVITY_MESSAGE_KIND, AUDIT_ACTIVITY_STATUSES, AgentEvent, AgentEventSchema, AgentIdentityParams, AgentIdentityParamsSchema, AgentIdentityResult, AgentIdentityResultSchema, AgentKind, AgentKindSchema, AgentOwnershipSchema, AgentParamsSchema, AgentSummary, AgentSummarySchema, AgentWaitParams, AgentWaitParamsSchema, AgentsCreateParams, AgentsCreateParamsSchema, AgentsCreateResult, AgentsCreateResultSchema, AgentsDeleteParams, AgentsDeleteParamsSchema, AgentsDeleteResult, AgentsDeleteResultSchema, AgentsFileEntry, AgentsFileEntrySchema, AgentsFilesGetParams, AgentsFilesGetParamsSchema, AgentsFilesGetResult, AgentsFilesGetResultSchema, AgentsFilesListParams, AgentsFilesListParamsSchema, AgentsFilesListResult, AgentsFilesListResultSchema, AgentsFilesSetParams, AgentsFilesSetParamsSchema, AgentsFilesSetResult, AgentsFilesSetResultSchema, AgentsListParams, AgentsListParamsSchema, AgentsListResult, AgentsListResultSchema, AgentsUpdateParams, AgentsUpdateParamsSchema, AgentsUpdateResult, AgentsUpdateResultSchema, AgentsWorkspaceEntry, AgentsWorkspaceEntrySchema, AgentsWorkspaceFile, AgentsWorkspaceFileSchema, AgentsWorkspaceGetParams, AgentsWorkspaceGetParamsSchema, AgentsWorkspaceGetResult, AgentsWorkspaceGetResultSchema, AgentsWorkspaceListParams, AgentsWorkspaceListParamsSchema, AgentsWorkspaceListResult, AgentsWorkspaceListResultSchema, AllowedApprovalSnapshot, AllowedApprovalSnapshotSchema, ApprovalAllowDecision, ApprovalAllowDecisionSchema, ApprovalAllowedReasonSchema, ApprovalCancelledReasonSchema, ApprovalChannelReviewer, ApprovalChannelReviewerSchema, ApprovalDecision, ApprovalDecisionSchema, ApprovalDeniedReasonSchema, ApprovalExpiredReasonSchema, ApprovalGetParams, ApprovalGetParamsSchema, ApprovalGetResult, ApprovalGetResultSchema, ApprovalHistoryParams, ApprovalHistoryParamsSchema, ApprovalHistoryResult, ApprovalHistoryResultSchema, ApprovalKind, ApprovalKindSchema, ApprovalPresentation, ApprovalPresentationSchema, ApprovalResolveParams, ApprovalResolveParamsSchema, ApprovalResolveResult, ApprovalResolveResultSchema, ApprovalScope, ApprovalScopeSchema, ApprovalSnapshot, ApprovalSnapshotSchema, ApprovalTerminalReason, ApprovalTerminalReasonSchema, ArtifactSummary, ArtifactSummarySchema, ArtifactsDownloadParams, ArtifactsDownloadParamsSchema, ArtifactsDownloadResult, ArtifactsDownloadResultSchema, ArtifactsGetParams, ArtifactsGetParamsSchema, ArtifactsGetResult, ArtifactsGetResultSchema, ArtifactsListParams, ArtifactsListParamsSchema, ArtifactsListResult, ArtifactsListResultSchema, AuditActivityAgentRunV1, AuditActivityAgentRunV1Schema, AuditActivityEventV1, AuditActivityEventV1Schema, AuditActivityInboundMessageV1, AuditActivityInboundMessageV1Schema, AuditActivityListParams, AuditActivityListParamsSchema, AuditActivityListResult, AuditActivityListResultSchema, AuditActivityOutboundMessageV1, AuditActivityOutboundMessageV1Schema, AuditActivityToolActionV1, AuditActivityToolActionV1Schema, AuditEvent, AuditEventSchema, AuditListParams, AuditListParamsSchema, AuditListResult, AuditListResultSchema, AuditRunIdentityAmbiguousV1Schema, AuditRunIdentityPresentV1Schema, AuditRunIdentityUnknownV1Schema, AuditRunIdentityUnsupportedV1Schema, AuditRunIdentityV1, AuditRunIdentityV1Schema, AuditRunInspectParams, AuditRunInspectParamsSchema, AuditRunInspectResult, AuditRunInspectResultSchema, AuthProbeStatus, AuthProbeStatusSchema, BOARD_CRON_JOB_ID_MAX_LENGTH, BOARD_CRON_TRIGGER_PREFIX, BOARD_DATA_BINDING_ID_MAX_LENGTH, BOARD_WIDGET_TOOL_MAX_LENGTH, BoardActionParams, BoardActionParamsSchema, BoardCanvasDocumentSource, BoardCanvasDocumentSourceSchema, BoardChangedEvent, BoardChangedEventSchema, BoardChatDockSchema, BoardCommand, BoardCommandEvent, BoardCommandEventSchema, BoardCommandSchema, BoardCronActionParamsSchema, BoardDataReadParams, BoardDataReadParamsSchema, BoardEventParams, BoardEventParamsSchema, BoardFocusTabCommandSchema, BoardGetParams, BoardGetParamsSchema, BoardLegacyEventParamsSchema, BoardMcpAppDescriptor, BoardMcpAppDescriptorSchema, BoardOp, BoardOpSchema, BoardPluginActionParamsSchema, BoardPromptAuthorizeParams, BoardPromptAuthorizeParamsSchema, BoardSetChatDockCommandSchema, BoardSizeSchema, BoardSnapshot, BoardSnapshotSchema, BoardTab, BoardTabCreateOpSchema, BoardTabDeleteOpSchema, BoardTabIdSchema, BoardTabSchema, BoardTabUpdateOpSchema, BoardTabsReorderOpSchema, BoardTicketEventParamsSchema, BoardUpdateParams, BoardUpdateParamsSchema, BoardViewTicketSchema, BoardWidget, BoardWidgetAppViewParams, BoardWidgetAppViewParamsSchema, BoardWidgetAppViewResult, BoardWidgetAppViewResultSchema, BoardWidgetContent, BoardWidgetContentSchema, BoardWidgetDeclared, BoardWidgetDeclaredSchema, BoardWidgetGeneratedIdentity, BoardWidgetGeneratedIdentitySchema, BoardWidgetGrantParams, BoardWidgetGrantParamsSchema, BoardWidgetHeightModeSchema, BoardWidgetHtmlContentSchema, BoardWidgetMaterializedContent, BoardWidgetMaterializedPutParams, BoardWidgetMcpAppContentSchema, BoardWidgetMcpAppPutContentSchema, BoardWidgetMoveOpSchema, BoardWidgetNameSchema, BoardWidgetPluginContentSchema, BoardWidgetPluginKindSchema, BoardWidgetPluginPropsSchema, BoardWidgetPresentationSchema, BoardWidgetPutContent, BoardWidgetPutContentSchema, BoardWidgetPutParams, BoardWidgetPutParamsSchema, BoardWidgetPutResult, BoardWidgetPutResultSchema, BoardWidgetRegisteredContentSchema, BoardWidgetRegisteredMaterializedContent, BoardWidgetRemoveOpSchema, BoardWidgetResizeOpSchema, BoardWidgetSchema, CHAT_SEND_SESSION_KEY_MAX_LENGTH, COMMAND_ALIAS_MAX_ITEMS, COMMAND_ARGS_MAX_ITEMS, COMMAND_ARG_CHOICES_MAX_ITEMS, COMMAND_ARG_DESCRIPTION_MAX_LENGTH, COMMAND_ARG_NAME_MAX_LENGTH, COMMAND_CHOICE_LABEL_MAX_LENGTH, COMMAND_CHOICE_VALUE_MAX_LENGTH, COMMAND_DESCRIPTION_MAX_LENGTH, COMMAND_LIST_MAX_ITEMS, COMMAND_NAME_MAX_LENGTH, CancelledApprovalSnapshot, CancelledApprovalSnapshotSchema, CanvasDocumentViewParams, CanvasDocumentViewParamsSchema, CanvasDocumentViewResult, CanvasDocumentViewResultSchema, CapabilityConsentErrorDetailsSchema, ChannelsLogoutParams, ChannelsLogoutParamsSchema, ChannelsPairingAccount, ChannelsPairingApproveParams, ChannelsPairingApproveParamsSchema, ChannelsPairingApproveResult, ChannelsPairingApproveResultSchema, ChannelsPairingDismissParams, ChannelsPairingDismissParamsSchema, ChannelsPairingDismissResult, ChannelsPairingDismissResultSchema, ChannelsPairingListParams, ChannelsPairingListParamsSchema, ChannelsPairingListResult, ChannelsPairingListResultSchema, ChannelsPairingRequest, ChannelsStartParams, ChannelsStartParamsSchema, ChannelsStatusParams, ChannelsStatusParamsSchema, ChannelsStatusResult, ChannelsStatusResultSchema, ChannelsStopParams, ChannelsStopParamsSchema, ChatAbortParams, ChatAbortParamsSchema, ChatAbortedEventSchema, ChatAccountSelection, ChatAccountSelectionSchema, ChatAttachmentSchema, ChatAttachmentsSchema, ChatDeltaEventSchema, ChatErrorEventSchema, ChatEvent, ChatEventSchema, ChatFinalEventSchema, ChatHistoryCursorResult, ChatHistoryCursorResultSchema, ChatHistoryDeltaResult, ChatHistoryDeltaResultSchema, ChatHistoryParams, ChatHistoryParamsSchema, ChatHistoryResetResult, ChatHistoryResetResultSchema, ChatInjectParams, ChatInjectParamsSchema, ChatInputConsumptions, ChatInputConsumptionsSchema, ChatInputReceipts, ChatInputReceiptsSchema, ChatMessageGetParamsSchema, ChatMessageGetResult, ChatMessageGetResultSchema, ChatMetadataParams, ChatMetadataParamsSchema, ChatPendingInputsPage, ChatPendingInputsPageSchema, ChatRunStartupPhase, ChatRunStartupPhaseSchema, ChatSendIntent, ChatSendIntentSchema, ChatSendParamsSchema, ChatSendSessionKeyString, ChatStartupParams, ChatStartupParamsSchema, ChatStatusEvent, ChatStatusEventSchema, ChatToolTitlesParams, ChatToolTitlesParamsSchema, ChatToolTitlesResult, ChatToolTitlesResultSchema, CommandEntry, CommandEntrySchema, CommandsListParams, CommandsListParamsSchema, CommandsListResult, CommandsListResultSchema, ConfigApplyParams, ConfigApplyParamsSchema, ConfigGetParams, ConfigGetParamsSchema, ConfigPatchParams, ConfigPatchParamsSchema, ConfigSchemaLookupParams, ConfigSchemaLookupParamsSchema, ConfigSchemaLookupResult, ConfigSchemaLookupResultSchema, ConfigSchemaParams, ConfigSchemaParamsSchema, ConfigSchemaResponse, ConfigSchemaResponseSchema, ConfigSetParams, ConfigSetParamsSchema, ConnectParams, ConnectParamsSchema, ConversationListItem, ConversationListItemSchema, ConversationListParams, ConversationListParamsSchema, ConversationListResult, ConversationListResultSchema, ConversationSendParams, ConversationSendParamsSchema, ConversationSendResult, ConversationSendResultSchema, ConversationTurnCancelParams, ConversationTurnCancelParamsSchema, ConversationTurnCancelResult, ConversationTurnCancelResultSchema, ConversationTurnParams, ConversationTurnParamsSchema, ConversationTurnReply, ConversationTurnReplySchema, ConversationTurnResult, ConversationTurnResultSchema, CronAddJobResult, CronAddJobResultSchema, CronAddParams, CronAddParamsSchema, CronAddResult, CronAddResultSchema, CronDeclarativeAddResult, CronDeclarativeAddResultSchema, CronDeliveryPreview, CronDeliveryPreviewSchema, CronDeliverySchema, CronGetParams, CronGetParamsSchema, CronJob, CronJobNotFoundErrorDetails, CronJobNotFoundErrorDetailsSchema, CronJobSchema, CronJobStateSchema, CronListParams, CronListParamsSchema, CronPacingSchema, CronRemoveParams, CronRemoveParamsSchema, CronRunLogEntry, CronRunLogEntrySchema, CronRunParams, CronRunParamsSchema, CronRunsParams, CronRunsParamsSchema, CronScratchGetParams, CronScratchGetParamsSchema, CronScratchGetResult, CronScratchGetResultSchema, CronScratchSchema, CronScratchSetParams, CronScratchSetParamsSchema, CronScratchSetResult, CronScratchSetResultSchema, CronStatusParams, CronStatusParamsSchema, CronUpdateParams, CronUpdateParamsSchema, DecisionReceiptDisplayV1, DecisionReceiptDisplayV1Schema, DecisionReceiptV1, DecisionReceiptV1Schema, DeniedApprovalSnapshot, DeniedApprovalSnapshotSchema, DesktopLaunchParams, DesktopLaunchParamsSchema, DesktopObserveParams, DesktopObserveParamsSchema, DesktopObserveResult, DesktopObserveResultSchema, DesktopSource, DesktopSourceSchema, DevicePairApproveParams, DevicePairApproveParamsSchema, DevicePairListParams, DevicePairListParamsSchema, DevicePairRejectParams, DevicePairRejectParamsSchema, DevicePairRemoveParams, DevicePairRemoveParamsSchema, DevicePairRenameParams, DevicePairRenameParamsSchema, DevicePairRequestedEventSchema, DevicePairResolvedEventSchema, DevicePairSetupCodeParams, DevicePairSetupCodeParamsSchema, DevicePairSetupCodeResult, DevicePairSetupCodeResultSchema, DevicePairSetupCompletedEvent, DevicePairSetupCompletedEventSchema, DevicePairSetupDeliveryUncertainEvent, DevicePairSetupDeliveryUncertainEventSchema, DevicePairSetupStatusParams, DevicePairSetupStatusParamsSchema, DevicePairSetupStatusResult, DevicePairSetupStatusResultSchema, DeviceTokenRevokeParams, DeviceTokenRevokeParamsSchema, DeviceTokenRotateParams, DeviceTokenRotateParamsSchema, DeviceTokenRotateResult, DeviceTokenRotateResultSchema, EnvironmentStatus, EnvironmentStatusSchema, EnvironmentSummary, EnvironmentSummarySchema, EnvironmentsCreateParams, EnvironmentsCreateParamsSchema, EnvironmentsCreateResult, EnvironmentsCreateResultSchema, EnvironmentsDestroyParams, EnvironmentsDestroyParamsSchema, EnvironmentsDestroyResult, EnvironmentsDestroyResultSchema, EnvironmentsListParams, EnvironmentsListParamsSchema, EnvironmentsListResult, EnvironmentsListResultSchema, EnvironmentsPrepareParams, EnvironmentsPrepareParamsSchema, EnvironmentsPrepareResult, EnvironmentsPrepareResultSchema, EnvironmentsStatusParams, EnvironmentsStatusParamsSchema, EnvironmentsStatusResult, EnvironmentsStatusResultSchema, ErrorCode, ErrorCodes, ErrorShape, ErrorShapeSchema, EventFrame, EventFrameSchema, ExecApprovalGetParams, ExecApprovalGetParamsSchema, ExecApprovalGrantsListParams, ExecApprovalGrantsListParamsSchema, ExecApprovalGrantsListResult, ExecApprovalGrantsListResultSchema, ExecApprovalGrantsRevokeParams, ExecApprovalGrantsRevokeParamsSchema, ExecApprovalGrantsRevokeResult, ExecApprovalGrantsRevokeResultSchema, ExecApprovalPresentation, ExecApprovalPresentationSchema, ExecApprovalRequestParams, ExecApprovalRequestParamsSchema, ExecApprovalResolveParams, ExecApprovalResolveParamsSchema, ExecApprovalStandingGrant, ExecApprovalStandingGrantSchema, ExecApprovalsGetParams, ExecApprovalsGetParamsSchema, ExecApprovalsNodeGetParams, ExecApprovalsNodeGetParamsSchema, ExecApprovalsNodeSetParams, ExecApprovalsNodeSetParamsSchema, ExecApprovalsNodeSnapshot, ExecApprovalsNodeSnapshotSchema, ExecApprovalsSetParams, ExecApprovalsSetParamsSchema, ExecApprovalsSnapshot, ExecApprovalsSnapshotSchema, ExecutionIdentityContextV1, ExecutionIdentityContextV1Schema, ExpiredApprovalSnapshot, ExpiredApprovalSnapshotSchema, ExternalPostApprovalScopeSchema, FsDirEntry, FsDirEntrySchema, FsListDirParams, FsListDirParamsSchema, FsListDirResult, FsListDirResultSchema, GATEWAY_OWNER_PROFILE_ID, GATEWAY_SERVER_CAPS, GIT_COAUTHOR_PREFERENCE_KEY, GatewayAgentRuntime, GatewayClientIdSchema, GatewayClientModeSchema, GatewayErrorDetailCodes, GatewayErrorDetails, GatewayErrorDetailsSchema, GatewayFrame, GatewayFrameSchema, GatewaySuspendBlocker, GatewaySuspendBlockerSchema, GatewaySuspendHandoffParams, GatewaySuspendHandoffParamsSchema, GatewaySuspendHandoffResult, GatewaySuspendHandoffResultSchema, GatewaySuspendPrepareBusyResultSchema, GatewaySuspendPrepareDrainingResultSchema, GatewaySuspendPrepareParams, GatewaySuspendPrepareParamsSchema, GatewaySuspendPrepareReadyResultSchema, GatewaySuspendPrepareResult, GatewaySuspendPrepareResultSchema, GatewaySuspendResumeParams, GatewaySuspendResumeParamsSchema, GatewaySuspendResumeResult, GatewaySuspendResumeResultSchema, GatewaySuspendStatusDrainingResultSchema, GatewaySuspendStatusParams, GatewaySuspendStatusParamsSchema, GatewaySuspendStatusReadyResultSchema, GatewaySuspendStatusResult, GatewaySuspendStatusResultSchema, GatewaySuspendStatusRunningResultSchema, GatewaySuspendTaskBlocker, GatewaySuspendTaskBlockerSchema, GatewaySuspension, GatewaySuspensionSchema, GitHubAuthorSchema, GitHubIdentityFacts, GitHubIdentityFactsSchema, GitHubIdentityScopeSchema, GitHubIdentitySourceSchema, GitHubPublicationBodySchema, GitHubPublicationPublisher, GitHubPublicationPublisherSchema, GitHubPublicationSelection, GitHubPublicationSelectionRejectedErrorDetails, GitHubPublicationSelectionRejectedErrorDetailsSchema, GitHubPublicationSelectionSchema, GitHubPublicationTitleSchema, GitHubSelectedIdentity, GitHubSelectedIdentitySchema, GitHubSetupHandleSchema, HelloOk, HelloOkSchema, HooksStatusParams, HooksStatusParamsSchema, HumanMention, HumanMentionSchema, HumanMentionsSchema, InputProvenanceSchema, LogsTailParams, LogsTailParamsSchema, LogsTailResult, LogsTailResultSchema, MAX_HUMAN_MENTIONS, MAX_MEMORY_MIGRATION_ITEMS, MAX_MENTIONABLE_USERS, MENTION_INBOX_MAX_ITEMS, McpAppViewExpiredErrorDetails, McpAppViewExpiredErrorDetailsSchema, MemoryMigrationItem, MemoryMigrationProviderPlan, MentionInboxItem, MentionInboxItemSchema, MentionableUser, MentionableUserSchema, MentionsChangedEvent, MentionsChangedEventSchema, MentionsDismissParams, MentionsDismissParamsSchema, MentionsListParams, MentionsListParamsSchema, MentionsListResult, MentionsListResultSchema, MessageActionParams, MessageActionParamsSchema, MessageSendApprovalScopeSchema, MigrationProtocolSchemas, MigrationsMemoryApplyParamsSchema, MigrationsMemoryApplyResult, MigrationsMemoryPlanParamsSchema, MigrationsMemoryPlanResult, MissingScopeErrorDetails, MissingScopeErrorDetailsSchema, ModelCatalogProviderOutcome, ModelCatalogProviderOutcomeSchema, ModelChoice, ModelChoiceSchema, ModelsAuthLogoutParams, ModelsAuthLogoutParamsSchema, ModelsAuthOrderSetParams, ModelsAuthOrderSetParamsSchema, ModelsAuthStatusParams, ModelsAuthStatusParamsSchema, ModelsListParams, ModelsListParamsSchema, ModelsListResult, ModelsListResultSchema, ModelsProbeParams, ModelsProbeParamsSchema, ModelsProbeResult, ModelsProbeResultSchema, ModelsProbeTargetResult, ModelsProbeTargetResultSchema, NODE_PRESENCE_ALIVE_REASONS, NodeDescribeParams, NodeDescribeParamsSchema, NodeEventParams, NodeEventParamsSchema, NodeEventResult, NodeEventResultSchema, NodeHostStatsPayload, NodeHostStatsPayloadSchema, NodeInvokeInputEvent, NodeInvokeInputEventSchema, NodeInvokeParams, NodeInvokeParamsSchema, NodeInvokeProgressParams, NodeInvokeProgressParamsSchema, NodeInvokeRequestEventSchema, NodeInvokeResultParams, NodeInvokeResultParamsSchema, NodeListParams, NodeListParamsSchema, NodePairApproveParams, NodePairApproveParamsSchema, NodePairListParams, NodePairListParamsSchema, NodePairRejectParams, NodePairRejectParamsSchema, NodePairRemoveParams, NodePairRemoveParamsSchema, NodePendingAckParams, NodePendingAckParamsSchema, NodePendingDrainParams, NodePendingDrainParamsSchema, NodePendingDrainResult, NodePendingDrainResultSchema, NodePendingEnqueueParams, NodePendingEnqueueParamsSchema, NodePendingEnqueueResult, NodePendingEnqueueResultSchema, NodePluginToolDescriptor, NodePluginToolDescriptorSchema, NodePluginToolsUpdateParams, NodePluginToolsUpdateParamsSchema, NodePresenceActivityPayload, NodePresenceActivityPayloadSchema, NodePresenceAlivePayload, NodePresenceAlivePayloadSchema, NodePresenceAliveReason, NodePresenceAliveReasonSchema, NodeRenameParams, NodeRenameParamsSchema, NodeSkillDescriptor, NodeSkillDescriptorSchema, NodeSkillsUpdateParams, NodeSkillsUpdateParamsSchema, NonEmptyString, OutboundDeliveryQueuedErrorDetails, OutboundDeliveryQueuedErrorDetailsSchema, PROGRESS_CARD_MAX_STEPS, PROGRESS_CARD_MAX_STEP_UTF8_BYTES, PROGRESS_CARD_MAX_UTF8_BYTES, PROJECTS_LIST_DEFAULT_LIMIT, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT, PROJECTS_LIST_MAX_IDENTITY_PROBES, PaymentApprovalScopeSchema, PendingApprovalSnapshot, PendingApprovalSnapshotSchema, PendingSessionApprovalEventSchema, PersonalGitHubAccountSchema, PersonalGitHubGenerationSchema, PersonalGitHubStatus, PersonalGitHubStatusSchema, PluginApprovalExternalResolution, PluginApprovalExternalResolutionSchema, PluginApprovalPresentation, PluginApprovalPresentationSchema, PluginApprovalRequestParams, PluginApprovalRequestParamsSchema, PluginApprovalResolveParams, PluginApprovalResolveParamsSchema, PluginApprovalSeverity, PluginApprovalSeveritySchema, PluginCatalogClawHubInstallSchema, PluginCatalogEntry, PluginCatalogEntrySchema, PluginCatalogInstallActionSchema, PluginCatalogOfficialInstallSchema, PluginControlUiActivation, PluginControlUiDescriptor, PluginControlUiDescriptorSchema, PluginControlUiDiagnostic, PluginControlUiDiagnosticSchema, PluginControlUiModule, PluginControlUiModuleSchema, PluginDeclaredSurface, PluginDeclaredSurfaceSchema, PluginDeclaredSurfaceWideningSchema, PluginDiscoveryCatalogFacts, PluginDiscoveryCatalogFactsSchema, PluginDiscoveryCategory, PluginDiscoveryCategorySchema, PluginDiscoveryDetail, PluginDiscoveryDetailSchema, PluginDiscoveryEntry, PluginDiscoveryEntrySchema, PluginDiscoveryLocalFacts, PluginDiscoveryLocalFactsSchema, PluginHookGrant, PluginHookGrantSchema, PluginInspectSource, PluginInspectSourceSchema, PluginInstallTrust, PluginInstallTrustSchema, PluginInstalledComponents, PluginInstalledComponentsSchema, PluginJsonValueSchema, PluginOperatorGrants, PluginOperatorGrantsSchema, PluginSearchPackageSchema, PluginSearchResultEntrySchema, PluginsCatalogBrowseParams, PluginsCatalogBrowseParamsSchema, PluginsCatalogBrowseResult, PluginsCatalogBrowseResultSchema, PluginsCatalogCategoriesParams, PluginsCatalogCategoriesParamsSchema, PluginsCatalogCategoriesResult, PluginsCatalogCategoriesResultSchema, PluginsCatalogGetParams, PluginsCatalogGetParamsSchema, PluginsCatalogGetResult, PluginsCatalogGetResultSchema, PluginsControlUiCatalog, PluginsControlUiCatalogSchema, PluginsControlUiChangedEventSchema, PluginsControlUiListParamsSchema, PluginsControlUiReloadParams, PluginsControlUiReloadParamsSchema, PluginsControlUiReportParamsSchema, PluginsControlUiStatusParamsSchema, PluginsControlUiStatusResultSchema, PluginsInspectParams, PluginsInspectParamsSchema, PluginsInspectResult, PluginsInspectResultSchema, PluginsInstallParams, PluginsInstallParamsSchema, PluginsInstallResult, PluginsInstallResultSchema, PluginsListParams, PluginsListParamsSchema, PluginsListResult, PluginsListResultSchema, PluginsRefreshParams, PluginsRefreshParamsSchema, PluginsRefreshResult, PluginsRefreshResultSchema, PluginsSearchParams, PluginsSearchParamsSchema, PluginsSearchResult, PluginsSearchResultSchema, PluginsSessionActionFailureResultSchema, PluginsSessionActionParams, PluginsSessionActionParamsSchema, PluginsSessionActionResult, PluginsSessionActionResultSchema, PluginsSessionActionSuccessResultSchema, PluginsSetEnabledParams, PluginsSetEnabledParamsSchema, PluginsSetEnabledResult, PluginsSetEnabledResultSchema, PluginsUiDescriptorsParams, PluginsUiDescriptorsParamsSchema, PluginsUiDescriptorsResult, PluginsUiDescriptorsResultSchema, PluginsUninstallParams, PluginsUninstallParamsSchema, PluginsUninstallResult, PluginsUninstallResultSchema, PollParams, PollParamsSchema, PortalChangedEvent, PortalChangedEventSchema, PortalCloseParams, PortalCloseParamsSchema, PortalCloseResult, PortalCloseResultSchema, PortalListParams, PortalListParamsSchema, PortalListResult, PortalListResultSchema, PortalOpenParams, PortalOpenParamsSchema, PortalOpenResult, PortalOpenResultSchema, PortalSummary, PortalSummarySchema, PresenceEntry, PresenceEntrySchema, PreservedSessionWorktree, PreservedSessionWorktreeSchema, PrincipalRefV1, PrincipalRefV1Schema, ProgressCard, ProgressCardChangedEvent, ProgressCardChangedEventSchema, ProgressCardGetParams, ProgressCardGetParamsSchema, ProgressCardGetResult, ProgressCardGetResultSchema, ProgressCardPutParams, ProgressCardPutParamsSchema, ProgressCardPutResult, ProgressCardPutResultSchema, ProgressCardSchema, ProgressCardStep, ProgressCardStepSchema, ProgressCardStepStatus, ProgressCardStepStatusSchema, ProjectCheckout, ProjectCheckoutSchema, ProjectCloneErrorDetails, ProjectCloneErrorDetailsSchema, ProjectCloneFailureCause, ProjectRecent, ProjectRecentFolderSchema, ProjectRecentProjectSchema, ProjectRecentRepositorySchema, ProjectRecentSchema, ProjectRecord, ProjectRecordSchema, ProjectSummary, ProjectSummarySchema, ProjectsAddParams, ProjectsAddParamsSchema, ProjectsAddResult, ProjectsAddResultSchema, ProjectsListParams, ProjectsListParamsSchema, ProjectsListResult, ProjectsListResultSchema, ProjectsRegisterParams, ProjectsRegisterParamsSchema, ProjectsRegisterResult, ProjectsRegisterResultSchema, ProjectsRemoveParams, ProjectsRemoveParamsSchema, ProjectsRemoveResult, ProjectsRemoveResultSchema, ProjectsSearchRemoteParams, ProjectsSearchRemoteParamsSchema, ProjectsSearchRemoteResult, ProjectsSearchRemoteResultSchema, PushTestParams, PushTestParamsSchema, PushTestResult, PushTestResultSchema, Question, QuestionAnswers, QuestionAnswersSchema, QuestionGetParams, QuestionGetParamsSchema, QuestionGetResult, QuestionGetResultSchema, QuestionListParams, QuestionListParamsSchema, QuestionListResult, QuestionListResultSchema, QuestionOption, QuestionOptionSchema, QuestionRecord, QuestionRecordSchema, QuestionRequestParams, QuestionRequestParamsSchema, QuestionRequestQuestion, QuestionRequestQuestionSchema, QuestionRequestResult, QuestionRequestResultSchema, QuestionRequestedEvent, QuestionRequestedEventSchema, QuestionResolveParams, QuestionResolveParamsSchema, QuestionResolveResult, QuestionResolveResultSchema, QuestionResolvedEvent, QuestionResolvedEventSchema, QuestionSchema, QuestionSecretStoreBindingSchema, QuestionSecretStoreExistingSchema, QuestionStatus, QuestionStatusSchema, QuestionWaitAnswerParams, QuestionWaitAnswerParamsSchema, QuestionWaitAnswerResult, QuestionWaitAnswerResultSchema, QueueMode, RemoteProject, RemoteProjectSchema, RequestFrame, RequestFrameSchema, RequiredNodeCommand, RequiredNodeCommandSchema, RequiredNodeCommandState, RequiredNodeCommandStateSchema, ResponseFrame, ResponseFrameSchema, RuntimeTargetIssue, RuntimeTargetIssueSchema, SESSIONS_PATCH_MANY_MAX_TARGETS, SESSION_OBSERVER_HEALTH_VALUES, SESSION_VIEWER_PRESENCE_MAX_KEYS, SESSION_VISIBILITY_VALUES, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS, ScopeUpgradeApprovedSchema, ScopeUpgradeExpiredSchema, ScopeUpgradeRegistration, ScopeUpgradeRegistrationSchema, ScopeUpgradeRejectedSchema, ScopeUpgradeRequest, ScopeUpgradeRequestSchema, ScopeUpgradeResult, ScopeUpgradeResultSchema, ScopeUpgradeWait, ScopeUpgradeWaitSchema, SecretInputSchema, SecretRefSchema, SecretStoreEntry, SecretStoreEntrySchema, SecretStoreEnvEntrySchema, SecretStoreSecretEntrySchema, SecretsReloadParamsSchema, SecretsResolveAssignmentSchema, SecretsResolveParams, SecretsResolveParamsSchema, SecretsResolveResult, SecretsResolveResultSchema, SecretsStoreDeleteParams, SecretsStoreDeleteParamsSchema, SecretsStoreListParamsSchema, SecretsStoreListResult, SecretsStoreListResultSchema, SecretsStoreMutationResult, SecretsStoreMutationResultSchema, SecretsStoreSetParams, SecretsStoreSetParamsSchema, SendParamsSchema, SessionApprovalEvent, SessionApprovalEventSchema, SessionApprovalReplay, SessionApprovalReplaySchema, SessionBranch, SessionBranchSchema, SessionCatalog, SessionCatalogCapabilities, SessionCatalogCapabilitiesSchema, SessionCatalogDescriptor, SessionCatalogDescriptorSchema, SessionCatalogHost, SessionCatalogHostSchema, SessionCatalogLocator, SessionCatalogLocatorSchema, SessionCatalogPullRequestSummary, SessionCatalogPullRequestSummarySchema, SessionCatalogSchema, SessionCatalogSession, SessionCatalogSessionSchema, SessionCatalogShareRoute, SessionCatalogShareRouteSchema, SessionCatalogTranscriptItem, SessionCatalogTranscriptItemSchema, SessionCompactionCheckpoint, SessionCompactionCheckpointSchema, SessionCompanionExchange, SessionCompanionExchangeSchema, SessionCreatedActor, SessionCreatedActorSchema, SessionDiffCommit, SessionDiffCommitSchema, SessionDiffFile, SessionDiffFileSchema, SessionDiffFileStatus, SessionDiffFileStatusSchema, SessionDiffScope, SessionDiffScopeSchema, SessionDiscussionInfo, SessionDiscussionInfoParams, SessionDiscussionInfoParamsSchema, SessionDiscussionInfoResult, SessionDiscussionInfoResultSchema, SessionDiscussionInfoSchema, SessionDiscussionOpenParams, SessionDiscussionOpenParamsSchema, SessionDiscussionOpenResult, SessionDiscussionOpenResultSchema, SessionDiscussionState, SessionDiscussionStateSchema, SessionFileBrowserEntry, SessionFileBrowserEntrySchema, SessionFileBrowserResult, SessionFileBrowserResultSchema, SessionFileContentEncoding, SessionFileContentEncodingSchema, SessionFileEntry, SessionFileEntrySchema, SessionFileKind, SessionFileKindSchema, SessionFilePreviewKind, SessionFilePreviewKindSchema, SessionFileRelevance, SessionFileRelevanceSchema, SessionGitHubConfirmParams, SessionGitHubConfirmParamsSchema, SessionGitHubOptionsParamsSchema, SessionGitHubOptionsResultSchema, SessionGitHubPublicationFailed, SessionGitHubPublicationFailedSchema, SessionGitHubPublicationNeedsConfirmationSchema, SessionGitHubPublicationPublished, SessionGitHubPublicationPublishedSchema, SessionGitHubPublicationPublishing, SessionGitHubPublicationPublishingSchema, SessionGitHubPublicationRequested, SessionGitHubPublicationRequestedSchema, SessionGitHubPublicationResult, SessionGitHubPublicationResultSchema, SessionGitHubPublishParams, SessionGitHubPublishParamsSchema, SessionGitHubStatusParamsSchema, SessionGitHubStatusResult, SessionGitHubStatusResultSchema, SessionGoal, SessionGoalSchema, SessionGoalStatus, SessionGroup, SessionGroupDefaults, SessionGroupDefaultsSchema, SessionGroupSchema, SessionLabelString, SessionMember, SessionMemberAddParams, SessionMemberAddParamsSchema, SessionMemberEvidence, SessionMemberEvidenceSchema, SessionMemberMutationResult, SessionMemberMutationResultSchema, SessionMemberRemoveParams, SessionMemberRemoveParamsSchema, SessionMemberSchema, SessionMembersListEvidenceResult, SessionMembersListEvidenceResultSchema, SessionMembersListParams, SessionMembersListParamsSchema, SessionMembersListResult, SessionMembersListResultSchema, SessionMoveDeviceTargetSchema, SessionMoveExpectedSource, SessionMoveExpectedSourceSchema, SessionMoveGatewayTargetSchema, SessionMovePlacement, SessionMovePlacementSchema, SessionMovePlacementState, SessionMovePlacementStateSchema, SessionMoveProfileTargetSchema, SessionMoveTarget, SessionMoveTargetSchema, SessionObserverDigest, SessionObserverDigestSchema, SessionObserverHealth, SessionObserverHealthSchema, SessionObserverPlanProgress, SessionObserverPlanProgressSchema, SessionOperationEvent, SessionOperationEventSchema, SessionOwner, SessionOwnerSchema, SessionParticipant, SessionParticipantIdentity, SessionParticipantIdentitySchema, SessionParticipantSchema, SessionPermissionMode, SessionPermissionModeSchema, SessionPerson, SessionPersonSchema, SessionPlacement, SessionPlacementDiskSpace, SessionPlacementDiskSpaceSchema, SessionPlacementMachine, SessionPlacementMachineSchema, SessionPlacementMove, SessionPlacementMoveSchema, SessionPlacementProtocolSchemas, SessionPlacementRunner, SessionPlacementRunnerSchema, SessionPlacementSchema, SessionPlacementState, SessionPlacementStateSchema, SessionPublicShare, SessionPublicShareSchema, SessionPublicShareSetParams, SessionPublicShareSetParamsSchema, SessionPublicShareSetResult, SessionPublicShareSetResultSchema, SessionRow, SessionRowSchema, SessionRunStatus, SessionSharingAction, SessionSharingActionSchema, SessionSharingEvent, SessionSharingEventSchema, SessionSharingEvidenceEvent, SessionSharingEvidenceEventSchema, SessionSharingIdentity, SessionSharingIdentitySchema, SessionSharingRole, SessionSharingRoleSchema, SessionSuggestion, SessionSuggestionAction, SessionSuggestionActionSchema, SessionSuggestionEvent, SessionSuggestionEventSchema, SessionSuggestionResolution, SessionSuggestionResolutionSchema, SessionSuggestionSchema, SessionSuggestionState, SessionSuggestionStateSchema, SessionSuggestionsAddParams, SessionSuggestionsAddParamsSchema, SessionSuggestionsAddResult, SessionSuggestionsAddResultSchema, SessionSuggestionsListParams, SessionSuggestionsListParamsSchema, SessionSuggestionsListResult, SessionSuggestionsListResultSchema, SessionSuggestionsResolveParams, SessionSuggestionsResolveParamsSchema, SessionSuggestionsResolveResult, SessionSuggestionsResolveResultSchema, SessionToolOverrides, SessionToolOverridesSchema, SessionTypingEvent, SessionTypingEventSchema, SessionTypingParams, SessionTypingParamsSchema, SessionTypingResult, SessionTypingResultSchema, SessionVisibility, SessionVisibilitySchema, SessionVisibilitySetParams, SessionVisibilitySetParamsSchema, SessionVisibilitySetResult, SessionVisibilitySetResultSchema, SessionWorktreeInfo, SessionWorktreeInfoSchema, SessionsAbortParams, SessionsAbortParamsSchema, SessionsAssignOwnerParams, SessionsAssignOwnerParamsSchema, SessionsAssignOwnerResult, SessionsAssignOwnerResultSchema, SessionsBranchesListParams, SessionsBranchesListParamsSchema, SessionsBranchesListResult, SessionsBranchesListResultSchema, SessionsBranchesSwitchParams, SessionsBranchesSwitchParamsSchema, SessionsBranchesSwitchResult, SessionsBranchesSwitchResultSchema, SessionsCatalogArchiveParams, SessionsCatalogArchiveParamsSchema, SessionsCatalogArchiveResult, SessionsCatalogArchiveResultSchema, SessionsCatalogContinueParams, SessionsCatalogContinueParamsSchema, SessionsCatalogContinueResult, SessionsCatalogContinueResultSchema, SessionsCatalogHostEvent, SessionsCatalogHostEventSchema, SessionsCatalogListParams, SessionsCatalogListParamsSchema, SessionsCatalogListResult, SessionsCatalogListResultSchema, SessionsCatalogReadParams, SessionsCatalogReadParamsSchema, SessionsCatalogReadResult, SessionsCatalogReadResultSchema, SessionsCatalogStartTerminalParams, SessionsCatalogStartTerminalParamsSchema, SessionsCatalogStartTerminalResult, SessionsCatalogStartTerminalResultSchema, SessionsCleanupParams, SessionsCleanupParamsSchema, SessionsCompactParams, SessionsCompactParamsSchema, SessionsCompactionBranchParams, SessionsCompactionBranchParamsSchema, SessionsCompactionBranchResult, SessionsCompactionBranchResultSchema, SessionsCompactionListParams, SessionsCompactionListParamsSchema, SessionsCompactionListResult, SessionsCompactionListResultSchema, SessionsCompactionRestoreParams, SessionsCompactionRestoreParamsSchema, SessionsCompactionRestoreResult, SessionsCompactionRestoreResultSchema, SessionsCompanionAskParams, SessionsCompanionAskParamsSchema, SessionsCompanionAskResult, SessionsCompanionAskResultSchema, SessionsCompanionResetParams, SessionsCompanionResetParamsSchema, SessionsCompanionResetResult, SessionsCompanionResetResultSchema, SessionsCompanionStateParams, SessionsCompanionStateParamsSchema, SessionsCompanionStateResult, SessionsCompanionStateResultSchema, SessionsCreateParams, SessionsCreateParamsSchema, SessionsCreateResult, SessionsCreateResultSchema, SessionsDeleteParams, SessionsDeleteParamsSchema, SessionsDeleteResult, SessionsDeleteResultSchema, SessionsDescribeParams, SessionsDescribeParamsSchema, SessionsDiffParams, SessionsDiffParamsSchema, SessionsDiffResult, SessionsDiffResultSchema, SessionsDispatchParams, SessionsDispatchParamsSchema, SessionsDispatchResult, SessionsDispatchResultSchema, SessionsFilesGetParams, SessionsFilesGetParamsSchema, SessionsFilesGetResult, SessionsFilesGetResultSchema, SessionsFilesListParams, SessionsFilesListParamsSchema, SessionsFilesListResult, SessionsFilesListResultSchema, SessionsFilesRevealParams, SessionsFilesRevealParamsSchema, SessionsFilesRevealResult, SessionsFilesRevealResultSchema, SessionsFilesSetParams, SessionsFilesSetParamsSchema, SessionsFilesSetResult, SessionsFilesSetResultSchema, SessionsForkParams, SessionsForkParamsSchema, SessionsForkResult, SessionsForkResultSchema, SessionsGoalClearParams, SessionsGoalClearParamsSchema, SessionsGoalMutationResult, SessionsGoalMutationResultSchema, SessionsGoalUpdateParams, SessionsGoalUpdateParamsSchema, SessionsGroupsDefaultsParams, SessionsGroupsDefaultsParamsSchema, SessionsGroupsDefaultsResult, SessionsGroupsDefaultsResultSchema, SessionsGroupsDeleteParams, SessionsGroupsDeleteParamsSchema, SessionsGroupsListParams, SessionsGroupsListParamsSchema, SessionsGroupsListResult, SessionsGroupsListResultSchema, SessionsGroupsMutationResult, SessionsGroupsMutationResultSchema, SessionsGroupsPutParams, SessionsGroupsPutParamsSchema, SessionsGroupsRenameParams, SessionsGroupsRenameParamsSchema, SessionsGroupsUpdateParams, SessionsGroupsUpdateParamsSchema, SessionsGroupsUpdateResult, SessionsGroupsUpdateResultSchema, SessionsListParams, SessionsListParamsSchema, SessionsMessagesSubscribeParams, SessionsMessagesSubscribeParamsSchema, SessionsMessagesUnsubscribeParams, SessionsMessagesUnsubscribeParamsSchema, SessionsMoveParams, SessionsMoveParamsSchema, SessionsMoveResult, SessionsMoveResultSchema, SessionsObserverVisibilityParams, SessionsObserverVisibilityParamsSchema, SessionsObserverVisibilityResult, SessionsObserverVisibilityResultSchema, SessionsPatchManyParams, SessionsPatchManyParamsSchema, SessionsPatchManyResult, SessionsPatchManyResultSchema, SessionsPatchManyTarget, SessionsPatchManyTargetSchema, SessionsPatchMutation, SessionsPatchMutationSchema, SessionsPatchParams, SessionsPatchParamsSchema, SessionsPluginPatchParams, SessionsPluginPatchParamsSchema, SessionsPluginPatchResult, SessionsPluginPatchResultSchema, SessionsPreviewParams, SessionsPreviewParamsSchema, SessionsReclaimParams, SessionsReclaimParamsSchema, SessionsReclaimResult, SessionsReclaimResultPlacement, SessionsReclaimResultPlacementSchema, SessionsReclaimResultSchema, SessionsRecoverParams, SessionsRecoverParamsSchema, SessionsRecoverResult, SessionsRecoverResultSchema, SessionsResetParams, SessionsResetParamsSchema, SessionsResolveCandidate, SessionsResolveCandidateSchema, SessionsResolveParams, SessionsResolveParamsSchema, SessionsResolveResult, SessionsResolveResultSchema, SessionsRewindParams, SessionsRewindParamsSchema, SessionsRewindResult, SessionsRewindResultSchema, SessionsSearchHit, SessionsSearchHitSchema, SessionsSearchParams, SessionsSearchParamsSchema, SessionsSearchResult, SessionsSearchResultSchema, SessionsSendParams, SessionsSendParamsSchema, SessionsTitlePrepareParams, SessionsTitlePrepareParamsSchema, SessionsTitlePrepareResult, SessionsTitlePrepareResultSchema, SessionsUsageParams, SessionsUsageParamsSchema, SessionsViewerPresenceSetParams, SessionsViewerPresenceSetParamsSchema, SessionsViewerPresenceSetResult, SessionsViewerPresenceSetResultSchema, SetupAdmissionBusyErrorDetails, SetupAdmissionBusyErrorDetailsSchema, ShutdownEvent, ShutdownEventSchema, SkillProposalEvaluation, SkillProposalEvaluationSchema, SkillProposalLifecycleEvent, SkillProposalLifecycleEventSchema, SkillProposalRevisionChangedErrorDetails, SkillProposalRevisionChangedErrorDetailsSchema, SkillsBinsParams, SkillsBinsParamsSchema, SkillsBinsResult, SkillsBinsResultSchema, SkillsCuratorActionParams, SkillsCuratorActionParamsSchema, SkillsCuratorActionResult, SkillsCuratorActionResultSchema, SkillsCuratorStatusParams, SkillsCuratorStatusParamsSchema, SkillsCuratorStatusResult, SkillsCuratorStatusResultSchema, SkillsDetailParams, SkillsDetailParamsSchema, SkillsDetailResult, SkillsDetailResultSchema, SkillsInstallParams, SkillsInstallParamsSchema, SkillsProposalActionParams, SkillsProposalActionParamsSchema, SkillsProposalApplyResult, SkillsProposalApplyResultSchema, SkillsProposalCreateParams, SkillsProposalCreateParamsSchema, SkillsProposalDecisionParams, SkillsProposalDecisionParamsSchema, SkillsProposalEvaluateParams, SkillsProposalEvaluateParamsSchema, SkillsProposalEvaluateResult, SkillsProposalEvaluateResultSchema, SkillsProposalEventsListParams, SkillsProposalEventsListParamsSchema, SkillsProposalEventsListResult, SkillsProposalEventsListResultSchema, SkillsProposalHistoryScanParams, SkillsProposalHistoryScanParamsSchema, SkillsProposalHistoryScanResult, SkillsProposalHistoryScanResultSchema, SkillsProposalHistoryStatusParams, SkillsProposalHistoryStatusParamsSchema, SkillsProposalInspectParams, SkillsProposalInspectParamsSchema, SkillsProposalInspectResult, SkillsProposalInspectResultSchema, SkillsProposalRecordResult, SkillsProposalRecordResultSchema, SkillsProposalRequestRevisionParams, SkillsProposalRequestRevisionParamsSchema, SkillsProposalRequestRevisionResult, SkillsProposalRequestRevisionResultSchema, SkillsProposalReviseParams, SkillsProposalReviseParamsSchema, SkillsProposalUpdateParams, SkillsProposalUpdateParamsSchema, SkillsProposalsListParams, SkillsProposalsListParamsSchema, SkillsProposalsListResult, SkillsProposalsListResultSchema, SkillsSearchParams, SkillsSearchParamsSchema, SkillsSearchResult, SkillsSearchResultSchema, SkillsSecurityVerdictsParams, SkillsSecurityVerdictsParamsSchema, SkillsSecurityVerdictsResult, SkillsSecurityVerdictsResultSchema, SkillsSkillCardParams, SkillsSkillCardParamsSchema, SkillsSkillCardResult, SkillsSkillCardResultSchema, SkillsStatusParams, SkillsStatusParamsSchema, SkillsUpdateParams, SkillsUpdateParamsSchema, SkillsUploadBeginParams, SkillsUploadBeginParamsSchema, SkillsUploadChunkParams, SkillsUploadChunkParamsSchema, SkillsUploadCommitParams, SkillsUploadCommitParamsSchema, SkillsWorkshopReadParamsSchema, SkillsWorkshopReadResultSchema, Snapshot, SnapshotSchema, StandingGrantApprovalScopeSchema, StateVersion, StateVersionSchema, SystemAgentApprovalPresentation, SystemAgentApprovalPresentationSchema, SystemAgentChatHistoryParams, SystemAgentChatHistoryParamsSchema, SystemAgentChatHistoryResult, SystemAgentChatHistoryResultSchema, SystemAgentChatHistoryTurn, SystemAgentChatHistoryTurnSchema, SystemAgentChatParams, SystemAgentChatParamsSchema, SystemAgentChatQuestion, SystemAgentChatQuestionSchema, SystemAgentChatResult, SystemAgentChatResultSchema, SystemAgentSetupActivateParams, SystemAgentSetupActivateParamsSchema, SystemAgentSetupActivateResult, SystemAgentSetupActivateResultSchema, SystemAgentSetupActivateStartParams, SystemAgentSetupActivateStartParamsSchema, SystemAgentSetupActivateStartResult, SystemAgentSetupActivateStartResultSchema, SystemAgentSetupAuthStartParams, SystemAgentSetupAuthStartParamsSchema, SystemAgentSetupAuthStartResult, SystemAgentSetupAuthStartResultSchema, SystemAgentSetupDetectParams, SystemAgentSetupDetectParamsSchema, SystemAgentSetupDetectResult, SystemAgentSetupDetectResultSchema, SystemAgentSetupVerifyParams, SystemAgentSetupVerifyParamsSchema, SystemAgentSetupVerifyResult, SystemAgentSetupVerifyResultSchema, SystemAgentWizardCancel, SystemAgentWizardCancelSchema, SystemChangeEntry, SystemChangeEntrySchema, SystemChangeKind, SystemChangeKindSchema, SystemChangeSource, SystemChangeSourceSchema, SystemChangesListParams, SystemChangesListParamsSchema, SystemChangesListResult, SystemChangesListResultSchema, SystemInfoParams, SystemInfoParamsSchema, SystemInfoResult, SystemInfoResultSchema, TASKS_LIST_CURSOR_MAX_LENGTH, TRANSCRIPTS_EXPORT_MAX_BYTES, TRANSCRIPTS_LEGACY_MAX_TEXT_LENGTH, TRANSCRIPTS_LEGACY_MAX_UTTERANCES, TRANSCRIPTS_LEGACY_RESULT_MAX_BYTES, TRANSCRIPTS_LIST_MAX, TRANSCRIPTS_PAGE_DEFAULT, TRANSCRIPTS_PAGE_MAX, TRANSCRIPTS_RESULT_MAX_BYTES, TalkAgentControlResult, TalkAgentControlResultSchema, TalkCatalogParams, TalkCatalogParamsSchema, TalkCatalogResult, TalkCatalogResultSchema, TalkClientCloseParams, TalkClientCloseParamsSchema, TalkClientCreateParams, TalkClientCreateParamsSchema, TalkClientCreateResult, TalkClientCreateResultSchema, TalkClientMutationResult, TalkClientMutationResultSchema, TalkClientSteerParams, TalkClientSteerParamsSchema, TalkClientToolCallParams, TalkClientToolCallParamsSchema, TalkClientToolCallResult, TalkClientToolCallResultSchema, TalkClientTranscriptParams, TalkClientTranscriptParamsSchema, TalkConfigParams, TalkConfigParamsSchema, TalkConfigResult, TalkConfigResultSchema, TalkEvent, TalkEventSchema, TalkModeParams, TalkModeParamsSchema, TalkSessionAcknowledgeMarkParams, TalkSessionAcknowledgeMarkParamsSchema, TalkSessionAppendAudioParams, TalkSessionAppendAudioParamsSchema, TalkSessionCancelOutputParams, TalkSessionCancelOutputParamsSchema, TalkSessionCancelOutputResult, TalkSessionCancelOutputResultSchema, TalkSessionCloseParams, TalkSessionCloseParamsSchema, TalkSessionCreateParams, TalkSessionCreateParamsSchema, TalkSessionCreateResult, TalkSessionCreateResultSchema, TalkSessionOkResult, TalkSessionOkResultSchema, TalkSessionSteerParams, TalkSessionSteerParamsSchema, TalkSessionSubmitToolResultParams, TalkSessionSubmitToolResultParamsSchema, TalkSpeakParams, TalkSpeakParamsSchema, TalkSpeakResult, TalkSpeakResultSchema, TaskSuggestion, TaskSuggestionEvent, TaskSuggestionEventSchema, TaskSuggestionResolution, TaskSuggestionResolutionSchema, TaskSuggestionSchema, TaskSuggestionsAcceptParams, TaskSuggestionsAcceptParamsSchema, TaskSuggestionsAcceptResult, TaskSuggestionsAcceptResultSchema, TaskSuggestionsCreateParams, TaskSuggestionsCreateParamsSchema, TaskSuggestionsCreateResult, TaskSuggestionsCreateResultSchema, TaskSuggestionsDismissParams, TaskSuggestionsDismissParamsSchema, TaskSuggestionsDismissResult, TaskSuggestionsDismissResultSchema, TaskSuggestionsListParams, TaskSuggestionsListParamsSchema, TaskSuggestionsListResult, TaskSuggestionsListResultSchema, TaskSummary, TaskSummarySchema, TasksCancelParams, TasksCancelParamsSchema, TasksCancelResult, TasksCancelResultSchema, TasksGetParams, TasksGetParamsSchema, TasksGetResult, TasksGetResultSchema, TasksHistoryParams, TasksHistoryParamsSchema, TasksHistoryResult, TasksHistoryResultSchema, TasksListParams, TasksListParamsSchema, TasksListResult, TasksListResultSchema, TasksRecoveryParams, TasksRecoveryParamsSchema, TasksRecoveryResult, TasksRecoveryResultSchema, TerminalAckResult, TerminalAckResultSchema, TerminalApprovalSnapshot, TerminalApprovalSnapshotSchema, TerminalAttachParams, TerminalAttachParamsSchema, TerminalAttachResult, TerminalAttachResultSchema, TerminalCloseParams, TerminalCloseParamsSchema, TerminalDataEvent, TerminalDataEventSchema, TerminalEvent, TerminalEventSchema, TerminalExitEvent, TerminalExitEventSchema, TerminalInputParams, TerminalInputParamsSchema, TerminalListResult, TerminalListResultSchema, TerminalOpenParams, TerminalOpenParamsSchema, TerminalOpenResult, TerminalOpenResultSchema, TerminalResizeParams, TerminalResizeParamsSchema, TerminalSessionApprovalEventSchema, TerminalSessionInfo, TerminalSessionInfoSchema, TerminalUploadParams, TerminalUploadParamsSchema, TerminalUploadPathStyle, TerminalUploadResult, TerminalUploadResultSchema, TickEvent, TickEventSchema, ToolCatalogEntry, ToolCatalogEntrySchema, ToolCatalogGroup, ToolCatalogGroupSchema, ToolCatalogProfile, ToolCatalogProfileSchema, ToolsCatalogParams, ToolsCatalogParamsSchema, ToolsCatalogResult, ToolsCatalogResultSchema, ToolsEffectiveEntry, ToolsEffectiveEntrySchema, ToolsEffectiveGroup, ToolsEffectiveGroupSchema, ToolsEffectiveNotice, ToolsEffectiveNoticeSchema, ToolsEffectiveParams, ToolsEffectiveParamsSchema, ToolsEffectiveResult, ToolsEffectiveResultSchema, ToolsGitHubAuthorizeAccessDeniedResultSchema, ToolsGitHubAuthorizeCancelParams, ToolsGitHubAuthorizeCancelParamsSchema, ToolsGitHubAuthorizeCancelResult, ToolsGitHubAuthorizeCancelResultSchema, ToolsGitHubAuthorizeExpiredResultSchema, ToolsGitHubAuthorizeFailedResultSchema, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema, ToolsGitHubAuthorizeNetworkErrorResultSchema, ToolsGitHubAuthorizePendingResultSchema, ToolsGitHubAuthorizePollParams, ToolsGitHubAuthorizePollParamsSchema, ToolsGitHubAuthorizePollResult, ToolsGitHubAuthorizePollResultSchema, ToolsGitHubAuthorizeSlowDownResultSchema, ToolsGitHubAuthorizeStartParams, ToolsGitHubAuthorizeStartParamsSchema, ToolsGitHubAuthorizeStartResult, ToolsGitHubAuthorizeStartResultSchema, ToolsGitHubAuthorizeSuccessResultSchema, ToolsGitHubConfigureParams, ToolsGitHubConfigureParamsSchema, ToolsGitHubInheritConfigureParams, ToolsGitHubInheritConfigureParamsSchema, ToolsGitHubManagedConfigureParams, ToolsGitHubManagedConfigureParamsSchema, ToolsGitHubStatusParams, ToolsGitHubStatusParamsSchema, ToolsGitHubStatusResult, ToolsGitHubStatusResultSchema, ToolsInvokeErrorSchema, ToolsInvokeParams, ToolsInvokeParamsSchema, ToolsInvokeResult, ToolsInvokeResultSchema, TranscriptSessionSummary, TranscriptSessionSummarySchema, TranscriptUtterance, TranscriptUtteranceSchema, TranscriptsExportParams, TranscriptsExportParamsSchema, TranscriptsExportResult, TranscriptsExportResultSchema, TranscriptsGetParams, TranscriptsGetParamsSchema, TranscriptsGetResult, TranscriptsGetResultSchema, TranscriptsListParams, TranscriptsListParamsSchema, TranscriptsListResult, TranscriptsListResultSchema, TranscriptsStatusParams, TranscriptsStatusParamsSchema, TranscriptsStatusResult, TranscriptsStatusResultSchema, TtsSpeakParams, TtsSpeakParamsSchema, TtsSpeakResult, TtsSpeakResultSchema, UI_APPEARANCE_PREFERENCE_KEYS, USER_PREFS_ENTRY_LIMIT, USER_PREFS_PROFILE_KEY_LIMIT, USER_PREFS_VALUE_BYTES, UiAppearancePreferenceKey, UiClosePaneCommandSchema, UiCommand, UiCommandParams, UiCommandParamsSchema, UiCommandResult, UiCommandResultSchema, UiCommandSchema, UiFocusCommandSchema, UiNavigateCommandSchema, UiPanelCommandSchema, UiSidebarCommandSchema, UiSplitCommandSchema, UnknownAgentIdErrorDetails, UnknownAgentIdErrorDetailsSchema, UpdateAvailable, UpdateAvailableSchema, UpdateHoldParams, UpdateHoldParamsSchema, UpdateHoldResult, UpdateHoldResultSchema, UpdateReportParams, UpdateReportParamsSchema, UpdateReportResult, UpdateReportResultSchema, UpdateRunChangedEvent, UpdateRunChangedEventSchema, UpdateRunParams, UpdateRunParamsSchema, UpdateRunRecord, UpdateRunRecordSchema, UpdateRunResult, UpdateRunResultSchema, UpdateRunsGetParams, UpdateRunsGetParamsSchema, UpdateRunsGetResult, UpdateRunsGetResultSchema, UpdateRunsListParams, UpdateRunsListParamsSchema, UpdateRunsListResult, UpdateRunsListResultSchema, UpdateScheduleState, UpdateScheduleStateSchema, UpdateStatusParams, UpdateStatusParamsSchema, UpdateStatusResult, UpdateStatusResultSchema, UserModelAccount, UserModelAccountSchema, UserPrefsLimitExceededErrorDetails, UserPrefsLimitExceededErrorDetailsSchema, UserProfile, UserProfileAuthLink, UserProfileAuthLinkSchema, UserProfileAvatarMimeSchema, UserProfileGitHubIdentity, UserProfileGitHubIdentitySchema, UserProfileSchema, UsersAuthConnectAnswerParams, UsersAuthConnectAnswerParamsSchema, UsersAuthConnectCancelParams, UsersAuthConnectCancelParamsSchema, UsersAuthConnectCatalogParams, UsersAuthConnectCatalogParamsSchema, UsersAuthConnectCatalogResult, UsersAuthConnectCatalogResultSchema, UsersAuthConnectResult, UsersAuthConnectResultSchema, UsersAuthConnectStartParams, UsersAuthConnectStartParamsSchema, UsersAuthConnectStartResult, UsersAuthConnectStartResultSchema, UsersAuthConnectStatusParams, UsersAuthConnectStatusParamsSchema, UsersAuthConnectStatusResult, UsersAuthConnectStatusResultSchema, UsersGitHubAuthorizeCancelParamsSchema, UsersGitHubAuthorizeCancelResultSchema, UsersGitHubAuthorizePollParamsSchema, UsersGitHubAuthorizePollResult, UsersGitHubAuthorizePollResultSchema, UsersGitHubAuthorizeStartParamsSchema, UsersGitHubAuthorizeStartResult, UsersGitHubAuthorizeStartResultSchema, UsersGitHubDisconnectParamsSchema, UsersGitHubDisconnectResultSchema, UsersGitHubStatusParamsSchema, UsersGitHubStatusResult, UsersGitHubStatusResultSchema, UsersLinkAuthProfileParams, UsersLinkAuthProfileParamsSchema, UsersLinkAuthProfileResult, UsersLinkAuthProfileResultSchema, UsersLinkEmailParams, UsersLinkEmailParamsSchema, UsersLinkEmailResult, UsersLinkEmailResultSchema, UsersListAuthLinksParams, UsersListAuthLinksParamsSchema, UsersListAuthLinksResult, UsersListAuthLinksResultSchema, UsersListModelAccountsParams, UsersListModelAccountsParamsSchema, UsersListModelAccountsResult, UsersListModelAccountsResultSchema, UsersListParams, UsersListParamsSchema, UsersListResult, UsersListResultSchema, UsersMentionableParams, UsersMentionableParamsSchema, UsersMentionableResult, UsersMentionableResultSchema, UsersPrefsChangedEvent, UsersPrefsChangedEventSchema, UsersPrefsGetParams, UsersPrefsGetParamsSchema, UsersPrefsGetResult, UsersPrefsGetResultSchema, UsersPrefsSetParams, UsersPrefsSetParamsSchema, UsersPrefsSetResult, UsersPrefsSetResultSchema, UsersSelectModelAccountParams, UsersSelectModelAccountParamsSchema, UsersSelectModelAccountResult, UsersSelectModelAccountResultSchema, UsersSelfParams, UsersSelfParamsSchema, UsersSelfResult, UsersSelfResultSchema, UsersSetAvatarParams, UsersSetAvatarParamsSchema, UsersSetAvatarResult, UsersSetAvatarResultSchema, UsersSetDisplayNameParams, UsersSetDisplayNameParamsSchema, UsersSetDisplayNameResult, UsersSetDisplayNameResultSchema, UsersSetRoleParams, UsersSetRoleParamsSchema, UsersSetRoleResult, UsersSetRoleResultSchema, UsersUnlinkAuthProfileParams, UsersUnlinkAuthProfileParamsSchema, UsersUnlinkAuthProfileResult, UsersUnlinkAuthProfileResultSchema, WORKER_BUNDLE_PREWARM_VERSION, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE, WORKER_HEARTBEAT_INTERVAL_MS, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES, WORKER_INFERENCE_MAX_OUTPUT_TOKENS, WORKER_INFERENCE_METHODS, WORKER_INFERENCE_PROTOCOL_FEATURE, WORKER_LAUNCH_V2_PROTOCOL_FEATURE, WORKER_LIVE_EVENT_PROTOCOL_FEATURE, WORKER_PORTAL_PROTOCOL_FEATURE, WORKER_PROTOCOL_FEATURES, WORKER_PROTOCOL_MAX_FEATURES, WORKER_PROTOCOL_MAX_FEATURE_LENGTH, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES, WORKER_PROTOCOL_MAX_METHOD_LENGTH, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES, WORKER_PROTOCOL_METHODS, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES, WORKER_PUBLIC_INGRESS_PATH, WORKER_RPC_SET_VERSION, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS, WORKER_TRANSCRIPT_MAX_JSON_DEPTH, WORKTREE_PRESERVATION_REASONS, WakeParams, WakeParamsSchema, WebLoginStartParams, WebLoginStartParamsSchema, WebLoginWaitParams, WebLoginWaitParamsSchema, WebPushDetailLevel, WebPushDetailLevelSchema, WebPushDevicePreferences, WebPushDevicePreferencesSchema, WebPushNotificationCategory, WebPushNotificationCategorySchema, WebPushNotificationPreferences, WebPushNotificationPreferencesSchema, WebPushPreferencesGetParams, WebPushPreferencesGetParamsSchema, WebPushPreferencesSetParams, WebPushPreferencesSetParamsSchema, WebPushSubscribeParams, WebPushSubscribeParamsSchema, WebPushTestParams, WebPushTestParamsSchema, WebPushUnsubscribeParams, WebPushUnsubscribeParamsSchema, WebPushVapidPublicKeyParams, WebPushVapidPublicKeyParamsSchema, WizardAnswer, WizardAnswerSchema, WizardCancelParams, WizardCancelParamsSchema, WizardNextParams, WizardNextParamsSchema, WizardNextResult, WizardNextResultSchema, WizardNotFoundErrorDetails, WizardNotFoundErrorDetailsSchema, WizardStartParams, WizardStartParamsSchema, WizardStartResult, WizardStartResultSchema, WizardStatusParams, WizardStatusParamsSchema, WizardStatusResult, WizardStatusResultSchema, WizardStep, WizardStepSchema, WorkerAdmissionFailureReason, WorkerAdmissionFailureReasonSchema, WorkerAdmissionHandshake, WorkerAdmissionHandshakeSchema, WorkerAdmissionResponseFrame, WorkerAdmissionResponseFrameSchema, WorkerConnectParams, WorkerConnectRequestFrame, WorkerConnectRequestFrameSchema, WorkerDesktopAppId, WorkerDesktopAppIdSchema, WorkerDesktopLaunchParams, WorkerDesktopLaunchParamsSchema, WorkerDesktopLaunchResult, WorkerDesktopLaunchResultSchema, WorkerDesktopObserveParams, WorkerDesktopObserveParamsSchema, WorkerDesktopObserveResult, WorkerDesktopObserveResultSchema, WorkerEnvironmentMetadata, WorkerEnvironmentMetadataSchema, WorkerEnvironmentState, WorkerEnvironmentStateSchema, WorkerErrorShape, WorkerExecutionMode, WorkerExecutionModeSchema, WorkerHeartbeatParams, WorkerHeartbeatParamsSchema, WorkerHeartbeatRequestFrame, WorkerHeartbeatRequestFrameSchema, WorkerHeartbeatResponseFrame, WorkerHeartbeatResponseFrameSchema, WorkerHeartbeatResult, WorkerHelloOk, WorkerInferenceCancelParams, WorkerInferenceCancelRequestFrame, WorkerInferenceCancelRequestFrameSchema, WorkerInferenceCancelResponseFrame, WorkerInferenceCancelResponseFrameSchema, WorkerInferenceCancelResult, WorkerInferenceContext, WorkerInferenceErrorReason, WorkerInferenceErrorShape, WorkerInferenceEventFrame, WorkerInferenceEventParams, WorkerInferenceImageContentSchema, WorkerInferenceModelRef, WorkerInferenceModelRefSchema, WorkerInferenceOptions, WorkerInferenceOptionsSchema, WorkerInferenceStartParams, WorkerInferenceStartRequestFrame, WorkerInferenceStartRequestFrameSchema, WorkerInferenceStartResponseFrame, WorkerInferenceStartResponseFrameSchema, WorkerInferenceStartResult, WorkerInferenceTerminalFrame, WorkerInferenceTerminalOutcome, WorkerInferenceTerminalParams, WorkerLiveEvent, WorkerLiveEventErrorDetails, WorkerLiveEventErrorDetailsSchema, WorkerLiveEventErrorShape, WorkerLiveEventErrorShapeSchema, WorkerLiveEventParams, WorkerLiveEventParamsSchema, WorkerLiveEventRequestFrame, WorkerLiveEventRequestFrameSchema, WorkerLiveEventResponseFrame, WorkerLiveEventResponseFrameSchema, WorkerLiveEventResult, WorkerLiveEventResultSchema, WorkerLiveEventSchema, WorkerMachineOption, WorkerMachineOptionSchema, WorkerMachineOptionsSchema, WorkerOperatingSystem, WorkerOperatingSystemSchema, WorkerPortalParams, WorkerPortalParamsSchema, WorkerPortalResponseFrame, WorkerPortalResponseFrameSchema, WorkerProtocolCloseReason, WorkerProtocolCloseReasonSchema, WorkerProviderReplayState, WorkerProviderReplayStateSchema, WorkerSessionToolResponseFrameSchema, WorkerSessionToolResult, WorkerSessionToolResultSchema, WorkerSessionsSendParams, WorkerSessionsSendParamsSchema, WorkerSessionsSendResponseFrame, WorkerSessionsSendResponseFrameSchema, WorkerSessionsSpawnParams, WorkerSessionsSpawnParamsSchema, WorkerSessionsSpawnResponseFrame, WorkerSessionsSpawnResponseFrameSchema, WorkerSlotSummary, WorkerSlotSummarySchema, WorkerTranscriptCommitErrorReason, WorkerTranscriptCommitErrorReasonSchema, WorkerTranscriptCommitErrorShape, WorkerTranscriptCommitErrorShapeSchema, WorkerTranscriptCommitParams, WorkerTranscriptCommitParamsSchema, WorkerTranscriptCommitRequestFrame, WorkerTranscriptCommitRequestFrameSchema, WorkerTranscriptCommitResponseFrame, WorkerTranscriptCommitResponseFrameSchema, WorkerTranscriptCommitResult, WorkerTranscriptCommitResultSchema, WorkerTranscriptMessage, WorkerTranscriptMessageSchema, WorkerTranscriptUserMessageSchema, WorkerTunnelStatus, WorkerTunnelStatusSchema, WorktreeBranch, WorktreeBranchSchema, WorktreePreservationReason, WorktreePreservationReasonSchema, WorktreeRecord, WorktreeRecordSchema, WorktreeRepositoryStatus, WorktreeRepositoryStatusSchema, WorktreesBranchesParams, WorktreesBranchesParamsSchema, WorktreesBranchesResult, WorktreesBranchesResultSchema, WorktreesCreateParams, WorktreesCreateParamsSchema, WorktreesGcParams, WorktreesGcParamsSchema, WorktreesGcResult, WorktreesGcResultSchema, WorktreesListParams, WorktreesListParamsSchema, WorktreesListResult, WorktreesListResultSchema, WorktreesRemoveParams, WorktreesRemoveParamsSchema, WorktreesRemoveResult, WorktreesRemoveResultSchema, WorktreesRestoreParams, WorktreesRestoreParamsSchema, buildMissingScopeErrorDetails, buildSkillProposalRevisionChangedErrorDetails, errorShape, findAuditActivityFilterConflict, isCloudWorkerPlacementState, isGitCoauthorCreditEnabled, isMcpAppViewExpiredError, isWellFormedApprovalId, missingScopeErrorShape, normalizeUiAppearancePreference, projectChatErrorDetail, readCronJobNotFoundError, readGitHubPublicationSelectionRejectedError, readMissingScopeError, readMissingScopeErrorDetails, readSkillProposalRevisionChangedError, validateSkillsProposalHistoryScanParams, validateSkillsProposalHistoryStatusParams, validateSystemEventParams, validateWorkerInferenceCancelParams, validateWorkerInferenceEventFrame, validateWorkerInferenceStartParams, validateWorkerInferenceTerminalFrame, validateWorkerInferenceTerminalOutcome };
23520
24712
  }
23521
24713
  //#endregion
23522
- export { WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as $, SessionSuggestionsResolveParams as $A, AgentsCreateResult as $C, ConversationTurnReply as $D, ToolsGitHubAuthorizeFailedResultSchema as $E, SessionGitHubPublicationFailed as $F, PluginJsonValueSchema as $I, BoardWidgetDeclaredSchema as $M, WorkerInferenceCancelParams as $N, SessionsCatalogReadParamsSchema as $O, ApprovalResolveParams as $P, PrincipalRefV1 as $S, SkillsProposalUpdateParams as $T, UpdateRunsGetResult as $_, SessionsBranchesListParams as $a, UsersAuthConnectCatalogParams as $b, SessionPlacementMove as $c, ChatAttachmentSchema as $d, MentionInboxItemSchema as $f, CronStatusParamsSchema as $g, WorkerDesktopObserveParamsSchema as $h, SessionsResolveCandidateSchema as $i, BOARD_CRON_JOB_ID_MAX_LENGTH as $j, TasksCancelParamsSchema as $k, QuestionOption as $l, ExecApprovalGrantsRevokeParamsSchema as $m, PluginApprovalRequestParams as $n, SessionsFilesRevealParamsSchema as $o, DesktopObserveParams as $p, TaskSuggestionsListResult as $r, SessionsSearchHitSchema as $s, WorkerTranscriptCommitErrorReasonSchema as $t, NodeEventParamsSchema as $u, ChannelsPairingAccount as $v, ModelsProbeResult as $w, UsersPrefsSetParamsSchema as $x, TalkSessionAppendAudioParams as $y, WorktreesListResult as A, SessionsDeleteResult as AA, ArtifactsListParams as AC, AgentIdentityParams as AD, ToolCatalogGroupSchema as AE, SessionApprovalEventSchema as AF, missingScopeErrorShape as AI, PluginsSearchParamsSchema as AL, BoardSetChatDockCommandSchema as AM, UiCommandParams as AN, SessionCatalogPullRequestSummarySchema as AO, AllowedApprovalSnapshotSchema as AP, normalizeUiAppearancePreference as AS, SkillsProposalCreateParamsSchema as AT, SystemAgentSetupVerifyParamsSchema as A_, SessionFilePreviewKindSchema as Aa, ChatAccountSelectionSchema as Ab, SessionDiscussionInfoResult as Ac, NodePendingEnqueueParamsSchema as Ad, ChatSendIntentSchema as Af, CronScratchSetResult as Ag, EnvironmentsDestroyResult as Ah, SessionSharingAction as Ai, PROGRESS_CARD_MAX_STEPS as Aj, ProjectsAddResultSchema as Ak, SecretsResolveParamsSchema as Al, DeviceTokenRevokeParamsSchema as Am, WizardStartResultSchema as An, SessionsCompanionResetResultSchema as Ao, GatewaySuspendResumeParams as Ap, TerminalUploadParamsSchema as Ar, SessionsMessagesSubscribeParams as As, WorkerLiveEventResponseFrameSchema as At, WebPushDetailLevel as Au, UpdateScheduleStateSchema as Av, GitHubAuthorSchema as Aw, UsersLinkEmailParams as Ax, TalkClientCloseParamsSchema as Ay, WORKER_HEARTBEAT_INTERVAL_MS as B, SessionSuggestionResolution as BA, AgentsWorkspaceGetResult as BC, ConversationListParamsSchema as BD, ToolsEffectiveGroupSchema as BE, ProtocolValidator as BF, PluginControlUiDiagnostic as BI, PluginsSetEnabledParamsSchema as BL, BoardTabsReorderOpSchema as BM, SkillsProposalHistoryScanParams as BN, SessionsCatalogArchiveResult as BO, ApprovalExpiredReasonSchema as BP, AuditRunIdentityUnsupportedV1Schema as BS, SkillsProposalEventsListResultSchema as BT, SystemChangeSourceSchema as B_, SessionObserverHealthSchema as Ba, UserModelAccount as Bb, SessionMoveExpectedSource as Bc, NodePresenceAlivePayloadSchema as Bd, LogsTailParams as Bf, CronJobSchema as Bg, RequiredNodeCommand as Bh, SessionVisibilitySetResult as Bi, ProgressCardPutParams as Bj, ProjectsRemoveParamsSchema as Bk, SecretsStoreSetParams as Bl, ScopeUpgradeRequest as Bm, PortalCloseParamsSchema as Bn, SessionsDiffParams as Bo, GatewaySuspendStatusRunningResultSchema as Bp, TaskSuggestionsAcceptParamsSchema as Br, SessionsPluginPatchResult as Bs, WorkerProviderReplayStateSchema as Bt, WebPushPreferencesSetParams as Bu, COMMAND_CHOICE_LABEL_MAX_LENGTH as Bv, ModelChoiceSchema as Bw, UsersListModelAccountsResult as Bx, TalkClientToolCallParamsSchema as By, WorktreesCreateParamsSchema as C, SessionsGoalMutationResultSchema as CA, ArtifactsDownloadParamsSchema as CC, ToolsInvokeErrorSchema as CD, SkillsUploadChunkParams as CE, PluginApprovalExternalResolution as CF, SetupAdmissionBusyErrorDetailsSchema as CI, PluginsListResult as CL, BoardMcpAppDescriptor as CM, BoardWidgetRegisteredMaterializedContent as CN, SessionCatalogDescriptor as CO, WorkerInferenceTerminalParams as CP, UsersUnlinkAuthProfileParamsSchema as CS, SkillsInstallParams as CT, SystemAgentSetupAuthStartResult as C_, SessionFileContentEncoding as Ca, TtsSpeakResult as Cb, SessionsTitlePrepareResult as Cc, NodePendingAckParams as Cd, ChatMetadataParams as Cf, CronRemoveParams as Cg, EnvironmentSummarySchema as Ch, SessionMemberSchema as Ci, SessionPermissionMode as Cj, ProjectRecord as Ck, SecretStoreEntry as Cl, DevicePairSetupDeliveryUncertainEvent as Cm, WizardNextParams as Cn, SessionsCompanionAskParams as Co, GatewaySuspendPrepareBusyResultSchema as Cp, TerminalOpenResult as Cr, SessionsGroupsPutParamsSchema as Cs, WorkerLiveEventErrorShape as Ct, QuestionWaitAnswerParamsSchema as Cu, UpdateHoldParams as Cv, AgentsUpdateParams as Cw, UsersGitHubStatusParamsSchema as Cx, TalkAgentControlResult as Cy, WorktreesGcResultSchema as D, PreservedSessionWorktreeSchema as DA, ArtifactsGetParamsSchema as DC, ToolsInvokeResultSchema as DD, ToolCatalogEntry as DE, PluginApprovalSeverity as DF, WizardNotFoundErrorDetailsSchema as DI, PluginsRefreshResult as DL, BoardPluginActionParamsSchema as DM, board_d_exports as DN, SessionCatalogLocator as DO, validateWorkerInferenceTerminalFrame as DP, users_d_exports as DS, SkillsProposalApplyResult as DT, SystemAgentSetupDetectResult as D_, SessionFileKind as Da, WebLoginWaitParams as Db, SessionDiscussionInfo as Dc, NodePendingDrainResult as Dd, ChatRunStartupPhase as Df, CronScratchGetParams as Dg, EnvironmentsCreateResultSchema as Dh, SessionMembersListParamsSchema as Di, SessionRunStatus as Dj, ProjectsAddParams as Dk, SecretsReloadParamsSchema as Dl, DevicePairSetupStatusResult as Dm, WizardStartParams as Dn, SessionsCompanionResetParams as Do, GatewaySuspendPrepareReadyResultSchema as Dp, TerminalSessionInfo as Dr, SessionsGroupsUpdateParamsSchema as Ds, WorkerLiveEventRequestFrame as Dt, PushTestParamsSchema as Du, UpdateRunParams as Dv, AuthProbeStatus as Dw, UsersLinkAuthProfileParamsSchema as Dx, TalkCatalogResult as Dy, WorktreesGcResult as E, PreservedSessionWorktree as EA, ArtifactsGetParams as EC, ToolsInvokeResult as ED, SkillsUploadCommitParamsSchema as EE, PluginApprovalPresentationSchema as EF, UserPrefsLimitExceededErrorDetailsSchema as EI, PluginsRefreshParamsSchema as EL, BoardOpSchema as EM, BoardWidgetSchema as EN, SessionCatalogHostSchema as EO, validateWorkerInferenceStartParams as EP, isGitCoauthorCreditEnabled as ES, SkillsProposalActionParamsSchema as ET, SystemAgentSetupDetectParamsSchema as E_, SessionFileEntrySchema as Ea, WebLoginStartParamsSchema as Eb, SessionsRecoverResultSchema as Ec, NodePendingDrainParamsSchema as Ed, ChatPendingInputsPageSchema as Ef, CronRunsParams as Eg, EnvironmentsCreateResult as Eh, SessionMembersListParams as Ei, SessionRowSchema as Ej, ProjectSummarySchema as Ek, SecretStoreSecretEntrySchema as El, DevicePairSetupStatusParamsSchema as Em, WizardNextResultSchema as En, SessionsCompanionAskResultSchema as Eo, GatewaySuspendPrepareParamsSchema as Ep, TerminalResizeParamsSchema as Er, SessionsGroupsUpdateParams as Es, WorkerLiveEventParamsSchema as Et, PushTestParams as Eu, UpdateHoldResultSchema as Ev, AgentsUpdateResultSchema as Ew, UsersLinkAuthProfileParams as Ex, TalkCatalogParamsSchema as Ey, WorktreesRemoveResultSchema as F, SessionSuggestion as FA, AgentsWorkspaceEntrySchema as FC, AgentWaitParams as FD, ToolsCatalogResult as FE, SystemAgentApprovalPresentationSchema as FF, PluginCatalogInstallActionSchema as FI, PluginsSessionActionParamsSchema as FL, BoardTabCreateOpSchema as FM, UiFocusCommandSchema as FN, SessionCatalogShareRouteSchema as FO, ApprovalChannelReviewer as FP, AuditListResult as FS, SkillsProposalEvaluateResult as FT, SystemChangeEntry as F_, SessionGroupDefaultsSchema as Fa, PersonalGitHubStatus as Fb, SessionDiscussionOpenResult as Fc, NodePluginToolsUpdateParams as Fd, ChatStatusEventSchema as Ff, CronAddResultSchema as Fg, EnvironmentsListResultSchema as Fh, SessionSharingEvidenceEventSchema as Fi, ProgressCardChangedEventSchema as Fj, ProjectsRegisterParams as Fk, SecretsStoreListParamsSchema as Fl, ScopeUpgradeApprovedSchema as Fm, WizardStep as Fn, SessionsCreateParams as Fo, GatewaySuspendStatusParams as Fp, TaskSuggestionEventSchema as Fr, SessionsObserverVisibilityParamsSchema as Fs, WorkerPortalParamsSchema as Ft, WebPushNotificationCategorySchema as Fu, COMMAND_ALIAS_MAX_ITEMS as Fv, GitHubSelectedIdentity as Fw, UsersListAuthLinksParamsSchema as Fx, TalkClientMutationResult as Fy, WORKER_PROTOCOL_MAX_FEATURES as G, SessionSuggestionsAddParams as GA, AgentsWorkspaceListResultSchema as GC, ConversationSendResult as GD, ToolsEffectiveResult as GE, GitHubPublicationPublisherSchema as GF, PluginDeclaredSurfaceSchema as GI, PluginsUiDescriptorsResult as GL, BoardWidget as GM, SkillsProposalHistoryStatusParamsSchema as GN, SessionsCatalogContinueResultSchema as GO, ApprovalHistoryParams as GP, AuditRunInspectResult as GS, SkillsProposalRecordResult as GT, UpdateRunChangedEvent as G_, SessionWorktreeInfo as Ga, UserProfileAvatarMimeSchema as Gb, SessionMovePlacementState as Gc, NodeSkillDescriptor as Gd, projectChatErrorDetail as Gf, CronRunLogEntrySchema as Gg, RuntimeTargetIssueSchema as Gh, SessionVisibility as Gi, ProgressCardStep as Gj, ProjectsSearchRemoteResult as Gk, QuestionGetParams as Gl, ScopeUpgradeWaitSchema as Gm, PortalListResult as Gn, SessionsFilesGetParamsSchema as Go, FsDirEntry as Gp, TaskSuggestionsCreateResult as Gr, SessionsRecoverResult as Gs, WorkerSessionsSendParamsSchema as Gt, WebPushTestParamsSchema as Gu, CommandEntry as Gv, ModelsAuthStatusParams as Gw, UsersListResultSchema as Gx, TalkConfigParams as Gy, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as H, SessionSuggestionSchema as HA, AgentsWorkspaceListParams as HC, ConversationListResultSchema as HD, ToolsEffectiveNoticeSchema as HE, formatValidationErrors as HF, PluginControlUiModule as HI, PluginsSetEnabledResultSchema as HL, BoardUpdateParams as HM, SkillsProposalHistoryScanResult as HN, SessionsCatalogContinueParams as HO, ApprovalGetParamsSchema as HP, AuditRunIdentityV1Schema as HS, SkillsProposalInspectParamsSchema as HT, SystemChangesListParamsSchema as H_, SessionObserverPlanProgressSchema as Ha, UserProfile as Hb, SessionMoveGatewayTargetSchema as Hc, NodePresenceAliveReasonSchema as Hd, LogsTailResult as Hf, CronListParamsSchema as Hg, RequiredNodeCommandState as Hh, SESSION_VISIBILITY_VALUES as Hi, ProgressCardPutResult as Hj, ProjectsRemoveResultSchema as Hk, Question as Hl, ScopeUpgradeResult as Hm, PortalCloseResultSchema as Hn, SessionsDiffResult as Ho, GatewaySuspendTaskBlockerSchema as Hp, TaskSuggestionsAcceptResultSchema as Hr, SessionsPreviewParams as Hs, WorkerSessionToolResult as Ht, WebPushSubscribeParams as Hu, COMMAND_DESCRIPTION_MAX_LENGTH as Hv, ModelsAuthLogoutParamsSchema as Hw, UsersListParams as Hx, TalkClientToolCallResultSchema as Hy, WorktreesRestoreParams as I, SessionSuggestionAction as IA, AgentsWorkspaceFile as IC, AgentWaitParamsSchema as ID, ToolsCatalogResultSchema as IE, TerminalApprovalSnapshot as IF, PluginCatalogOfficialInstallSchema as II, PluginsSessionActionResult as IL, BoardTabDeleteOpSchema as IM, UiNavigateCommandSchema as IN, SessionCatalogTranscriptItem as IO, ApprovalChannelReviewerSchema as IP, AuditListResultSchema as IS, SkillsProposalEvaluateResultSchema as IT, SystemChangeEntrySchema as I_, SessionGroupSchema as Ia, PersonalGitHubStatusSchema as Ib, SessionDiscussionOpenResultSchema as Ic, NodePluginToolsUpdateParamsSchema as Id, ChatToolTitlesParams as If, CronDeclarativeAddResultSchema as Ig, EnvironmentsStatusParams as Ih, SessionSharingIdentity as Ii, ProgressCardGetParams as Ij, ProjectsRegisterParamsSchema as Ik, SecretsStoreListResult as Il, ScopeUpgradeExpiredSchema as Im, WizardStepSchema as In, SessionsCreateResult as Io, GatewaySuspendStatusParamsSchema as Ip, TaskSuggestionResolution as Ir, SessionsObserverVisibilityResult as Is, WorkerPortalResponseFrame as It, WebPushNotificationPreferences as Iu, COMMAND_ARGS_MAX_ITEMS as Iv, GitHubSelectedIdentitySchema as Iw, UsersListAuthLinksResult as Ix, TalkClientMutationResultSchema as Iy, WORKER_PROTOCOL_METHODS as J, SessionSuggestionsAddResultSchema as JA, AgentOwnershipSchema as JC, ConversationTurnCancelParamsSchema as JD, ToolsGitHubAuthorizeCancelParams as JE, GitHubPublicationTitleSchema as JF, PluginHookGrantSchema as JI, PluginsUninstallParamsSchema as JL, BoardWidgetAppViewResult as JM, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as JN, SessionsCatalogListParams as JO, ApprovalHistoryResultSchema as JP, DecisionReceiptDisplayV1Schema as JS, SkillsProposalRequestRevisionParamsSchema as JT, UpdateRunRecordSchema as J_, SessionsAbortParamsSchema as Ja, UserProfileSchema as Jb, SessionMoveTarget as Jc, NodeSkillsUpdateParamsSchema as Jd, HumanMentionsSchema as Jf, CronScratchGetParamsSchema as Jg, WorkerDesktopLaunchParams as Jh, SessionsViewerPresenceSetParams as Ji, ProgressCardStepStatusSchema as Jj, RemoteProjectSchema as Jk, QuestionGetResultSchema as Jl, ExecApprovalGrantsListParams as Jm, PortalOpenParamsSchema as Jn, SessionsFilesListParams as Jo, FsListDirParamsSchema as Jp, TaskSuggestionsDismissParamsSchema as Jr, SessionsRewindParams as Js, WorkerSessionsSpawnParams as Jt, WebPushVapidPublicKeyParams as Ju, CommandsListParamsSchema as Jv, ModelsListParamsSchema as Jw, UsersPrefsGetParams as Jx, TalkConfigResultSchema as Jy, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as K, SessionSuggestionsAddParamsSchema as KA, AgentKind as KC, ConversationSendResultSchema as KD, ToolsEffectiveResultSchema as KE, GitHubPublicationSelection as KF, PluginDeclaredSurfaceWideningSchema as KI, PluginsUiDescriptorsResultSchema as KL, BoardWidgetAppViewParams as KM, validateSkillsProposalHistoryScanParams as KN, SessionsCatalogHostEvent as KO, ApprovalHistoryParamsSchema as KP, AuditRunInspectResultSchema as KS, SkillsProposalRecordResultSchema as KT, UpdateRunChangedEventSchema as K_, SessionWorktreeInfoSchema as Ka, UserProfileGitHubIdentity as Kb, SessionMovePlacementStateSchema as Kc, NodeSkillDescriptorSchema as Kd, HumanMention as Kf, CronRunParamsSchema as Kg, WorkerDesktopAppId as Kh, SessionVisibilitySchema as Ki, ProgressCardStepSchema as Kj, ProjectsSearchRemoteResultSchema as Kk, QuestionGetParamsSchema as Kl, ExecApprovalGetParams as Km, PortalListResultSchema as Kn, SessionsFilesGetResult as Ko, FsDirEntrySchema as Kp, TaskSuggestionsCreateResultSchema as Kr, SessionsResetParams as Ks, WorkerSessionsSendResponseFrame as Kt, WebPushUnsubscribeParams as Ku, CommandEntrySchema as Kv, ModelsAuthStatusParamsSchema as Kw, UsersPrefsChangedEvent as Kx, TalkConfigParamsSchema as Ky, WorktreesRestoreParamsSchema as L, SessionSuggestionActionSchema as LA, AgentsWorkspaceFileSchema as LC, ConversationListItem as LD, ToolsEffectiveEntry as LE, TerminalApprovalSnapshotSchema as LF, PluginControlUiActivation as LI, PluginsSessionActionResultSchema as LL, BoardTabIdSchema as LM, UiPanelCommandSchema as LN, SessionCatalogTranscriptItemSchema as LO, ApprovalDecision as LP, AuditRunIdentityAmbiguousV1Schema as LS, SkillsProposalEventsListParams as LT, SystemChangeKind as L_, SessionObserverDigest as La, USER_PREFS_ENTRY_LIMIT as Lb, SessionDiscussionState as Lc, NodePresenceActivityPayload as Ld, ChatToolTitlesParamsSchema as Lf, CronDeliveryPreviewSchema as Lg, EnvironmentsStatusParamsSchema as Lh, SessionSharingIdentitySchema as Li, ProgressCardGetParamsSchema as Lj, ProjectsRegisterResult as Lk, SecretsStoreListResultSchema as Ll, ScopeUpgradeRegistration as Lm, PortalChangedEvent as Ln, SessionsCreateResultSchema as Lo, GatewaySuspendStatusReadyResultSchema as Lp, TaskSuggestionResolutionSchema as Lr, SessionsObserverVisibilityResultSchema as Ls, WorkerPortalResponseFrameSchema as Lt, WebPushNotificationPreferencesSchema as Lu, COMMAND_ARG_CHOICES_MAX_ITEMS as Lv, ModelCatalogProviderOutcome as Lw, UsersListAuthLinksResultSchema as Lx, TalkClientSteerParams as Ly, WorktreesRemoveParams as M, WORKTREE_PRESERVATION_REASONS as MA, ArtifactsListResult as MC, AgentIdentityResult as MD, ToolCatalogProfileSchema as ME, SessionApprovalReplaySchema as MF, PluginCatalogClawHubInstallSchema as MI, PluginsSearchResultSchema as ML, BoardSnapshot as MM, UiCommandResult as MN, SessionCatalogSession as MO, ApprovalAllowDecisionSchema as MP, AuditEventSchema as MS, SkillsProposalDecisionParamsSchema as MT, SystemAgentSetupVerifyResultSchema as M_, SessionFileRelevanceSchema as Ma, GIT_COAUTHOR_PREFERENCE_KEY as Mb, SessionDiscussionInfoSchema as Mc, NodePendingEnqueueResultSchema as Md, ChatStartupParams as Mf, CronUpdateParams as Mg, EnvironmentsListParams as Mh, SessionSharingEvent as Mi, PROGRESS_CARD_MAX_UTF8_BYTES as Mj, ProjectsListParamsSchema as Mk, SecretsResolveResultSchema as Ml, DeviceTokenRotateParamsSchema as Mm, WizardStatusParamsSchema as Mn, SessionsCompanionStateParamsSchema as Mo, GatewaySuspendResumeResult as Mp, TerminalUploadResultSchema as Mr, SessionsMessagesUnsubscribeParams as Ms, WorkerLiveEventResultSchema as Mt, WebPushDevicePreferences as Mu, UpdateStatusParamsSchema as Mv, GitHubIdentityFactsSchema as Mw, UsersLinkEmailResult as Mx, TalkClientCreateParamsSchema as My, WorktreesRemoveParamsSchema as N, WorktreePreservationReason as NA, ArtifactsListResultSchema as NC, AgentIdentityResultSchema as ND, ToolsCatalogParams as NE, StandingGrantApprovalScopeSchema as NF, PluginCatalogEntry as NI, PluginsSessionActionFailureResultSchema as NL, BoardSnapshotSchema as NM, UiCommandResultSchema as NN, SessionCatalogSessionSchema as NO, ApprovalAllowedReasonSchema as NP, AuditListParams as NS, SkillsProposalEvaluateParams as NT, SystemAgentWizardCancel as N_, SessionGroup as Na, PersonalGitHubAccountSchema as Nb, SessionDiscussionOpenParams as Nc, NodePluginToolDescriptor as Nd, ChatStartupParamsSchema as Nf, CronAddJobResultSchema as Ng, EnvironmentsListParamsSchema as Nh, SessionSharingEventSchema as Ni, ProgressCard as Nj, ProjectsListResult as Nk, SecretsStoreDeleteParams as Nl, DeviceTokenRotateResult as Nm, WizardStatusResult as Nn, SessionsCompanionStateResult as No, GatewaySuspendResumeResultSchema as Np, TaskSuggestion as Nr, SessionsMessagesUnsubscribeParamsSchema as Ns, WorkerLiveEventSchema as Nt, WebPushDevicePreferencesSchema as Nu, UpdateStatusResult as Nv, GitHubIdentityScopeSchema as Nw, UsersLinkEmailResultSchema as Nx, TalkClientCreateResult as Ny, WorktreesListParams as O, SessionsDeleteParams as OA, ArtifactsGetResult as OC, AgentEvent as OD, ToolCatalogEntrySchema as OE, PluginApprovalSeveritySchema as OF, buildMissingScopeErrorDetails as OI, PluginsRefreshResultSchema as OL, BoardPromptAuthorizeParams as OM, UiClosePaneCommandSchema as ON, SessionCatalogLocatorSchema as OO, validateWorkerInferenceTerminalOutcome as OP, UI_APPEARANCE_PREFERENCE_KEYS as OS, SkillsProposalApplyResultSchema as OT, SystemAgentSetupDetectResultSchema as O_, SessionFileKindSchema as Oa, WebLoginWaitParamsSchema as Ob, SessionDiscussionInfoParams as Oc, NodePendingDrainResultSchema as Od, ChatRunStartupPhaseSchema as Of, CronScratchGetResult as Og, EnvironmentsDestroyParams as Oh, SessionMembersListResult as Oi, SessionToolOverrides as Oj, ProjectsAddParamsSchema as Ok, SecretsResolveAssignmentSchema as Ol, DevicePairSetupStatusResultSchema as Om, WizardStartParamsSchema as On, SessionsCompanionResetParamsSchema as Oo, GatewaySuspendPrepareResult as Op, TerminalSessionInfoSchema as Or, SessionsGroupsUpdateResult as Os, WorkerLiveEventRequestFrameSchema as Ot, PushTestResult as Ou, UpdateRunParamsSchema as Ov, AuthProbeStatusSchema as Ow, UsersLinkAuthProfileResult as Ox, TalkCatalogResultSchema as Oy, WorktreesRemoveResult as P, WorktreePreservationReasonSchema as PA, AgentsWorkspaceEntry as PC, AgentParamsSchema as PD, ToolsCatalogParamsSchema as PE, SystemAgentApprovalPresentation as PF, PluginCatalogEntrySchema as PI, PluginsSessionActionParams as PL, BoardTab as PM, UiCommandSchema as PN, SessionCatalogShareRoute as PO, ApprovalCancelledReasonSchema as PP, AuditListParamsSchema as PS, SkillsProposalEvaluateParamsSchema as PT, SystemAgentWizardCancelSchema as P_, SessionGroupDefaults as Pa, PersonalGitHubGenerationSchema as Pb, SessionDiscussionOpenParamsSchema as Pc, NodePluginToolDescriptorSchema as Pd, ChatStatusEvent as Pf, CronAddParamsSchema as Pg, EnvironmentsListResult as Ph, SessionSharingEvidenceEvent as Pi, ProgressCardChangedEvent as Pj, ProjectsListResultSchema as Pk, SecretsStoreDeleteParamsSchema as Pl, DeviceTokenRotateResultSchema as Pm, WizardStatusResultSchema as Pn, SessionsCompanionStateResultSchema as Po, GatewaySuspendStatusDrainingResultSchema as Pp, TaskSuggestionEvent as Pr, SessionsObserverVisibilityParams as Ps, WorkerPortalParams as Pt, WebPushNotificationCategory as Pu, UpdateStatusResultSchema as Pv, GitHubIdentitySourceSchema as Pw, UsersListAuthLinksParams as Px, TalkClientCreateResultSchema as Py, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH as Q, SessionSuggestionsListResultSchema as QA, AgentsCreateParamsSchema as QC, ConversationTurnParamsSchema as QD, ToolsGitHubAuthorizeExpiredResultSchema as QE, SessionGitHubOptionsResultSchema as QF, PluginInstallTrustSchema as QI, BoardWidgetDeclared as QM, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as QN, SessionsCatalogReadParams as QO, ApprovalPresentationSchema as QP, ExecutionIdentityContextV1Schema as QS, SkillsProposalReviseParamsSchema as QT, UpdateRunsGetParamsSchema as Q_, SessionsAssignOwnerResultSchema as Qa, UsersAuthConnectCancelParamsSchema as Qb, SessionPlacementDiskSpaceSchema as Qc, ChatAbortedEventSchema as Qd, MentionInboxItem as Qf, CronScratchSetResultSchema as Qg, WorkerDesktopObserveParams as Qh, SessionsResolveCandidate as Qi, CanvasDocumentViewResultSchema as Qj, TasksCancelParams as Qk, QuestionListResultSchema as Ql, ExecApprovalGrantsRevokeParams as Qm, PortalSummarySchema as Qn, SessionsFilesRevealParams as Qo, DesktopLaunchParamsSchema as Qp, TaskSuggestionsListParamsSchema as Qr, SessionsSearchHit as Qs, WorkerTranscriptCommitErrorReason as Qt, NodeEventParams as Qu, TalkSessionAcknowledgeMarkParamsSchema as Qv, ModelsProbeParamsSchema as Qw, UsersPrefsSetParams as Qx, TalkModeParamsSchema as Qy, WORKER_BUNDLE_PREWARM_VERSION as R, SessionSuggestionEvent as RA, AgentsWorkspaceGetParams as RC, ConversationListItemSchema as RD, ToolsEffectiveEntrySchema as RE, TerminalSessionApprovalEventSchema as RF, PluginControlUiDescriptor as RI, PluginsSessionActionSuccessResultSchema as RL, BoardTabSchema as RM, UiSidebarCommandSchema as RN, SessionsCatalogArchiveParams as RO, ApprovalDecisionSchema as RP, AuditRunIdentityPresentV1Schema as RS, SkillsProposalEventsListParamsSchema as RT, SystemChangeKindSchema as R_, SessionObserverDigestSchema as Ra, USER_PREFS_PROFILE_KEY_LIMIT as Rb, SessionDiscussionStateSchema as Rc, NodePresenceActivityPayloadSchema as Rd, ChatToolTitlesResult as Rf, CronDeliverySchema as Rg, EnvironmentsStatusResult as Rh, SessionVisibilitySetParams as Ri, ProgressCardGetResult as Rj, ProjectsRegisterResultSchema as Rk, SecretsStoreMutationResult as Rl, ScopeUpgradeRegistrationSchema as Rm, PortalChangedEventSchema as Rn, SessionsDescribeParams as Ro, GatewaySuspendStatusResult as Rp, TaskSuggestionSchema as Rr, SessionsPluginPatchParams as Rs, WorkerProtocolCloseReason as Rt, WebPushPreferencesGetParams as Ru, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as Rv, ModelCatalogProviderOutcomeSchema as Rw, UsersListModelAccountsParams as Rx, TalkClientSteerParamsSchema as Ry, WorktreesCreateParams as S, SessionsGoalMutationResult as SA, ArtifactsDownloadParams as SC, ToolsGitHubStatusResultSchema as SD, SkillsUploadBeginParamsSchema as SE, PendingSessionApprovalEventSchema as SF, ProjectCloneErrorDetailsSchema as SI, PluginsListParamsSchema as SL, BoardLegacyEventParamsSchema as SM, BoardWidgetRegisteredContentSchema as SN, SessionCatalogCapabilitiesSchema as SO, WorkerInferenceTerminalOutcome as SP, UsersUnlinkAuthProfileParams as SS, SkillsDetailResultSchema as ST, SystemAgentSetupAuthStartParamsSchema as S_, SessionFileBrowserResultSchema as Sa, TtsSpeakParamsSchema as Sb, SessionsTitlePrepareParamsSchema as Sc, NodePairRemoveParamsSchema as Sd, ChatMessageGetResultSchema as Sf, CronListParams as Sg, EnvironmentSummary as Sh, SessionMemberRemoveParamsSchema as Si, SessionOwnerSchema as Sj, ProjectRecentSchema as Sk, GitHubSetupHandleSchema as Sl, DevicePairSetupCompletedEventSchema as Sm, WizardCancelParamsSchema as Sn, SessionsCompactionRestoreResultSchema as So, GatewaySuspendHandoffResultSchema as Sp, TerminalOpenParamsSchema as Sr, SessionsGroupsPutParams as Ss, WorkerLiveEventErrorDetailsSchema as St, QuestionWaitAnswerParams as Su, UpdateAvailableSchema as Sv, AgentsListResultSchema as Sw, UsersGitHubDisconnectResultSchema as Sx, ChannelsStopParamsSchema as Sy, WorktreesGcParamsSchema as T, SessionsGoalUpdateParamsSchema as TA, ArtifactsDownloadResultSchema as TC, ToolsInvokeParamsSchema as TD, SkillsUploadCommitParams as TE, PluginApprovalPresentation as TF, UnknownAgentIdErrorDetailsSchema as TI, PluginsRefreshParams as TL, BoardOp as TM, BoardWidgetResizeOpSchema as TN, SessionCatalogHost as TO, validateWorkerInferenceEventFrame as TP, UsersUnlinkAuthProfileResultSchema as TS, SkillsProposalActionParams as TT, SystemAgentSetupDetectParams as T_, SessionFileEntry as Ta, WebLoginStartParams as Tb, SessionsRecoverParamsSchema as Tc, NodePendingDrainParams as Td, ChatPendingInputsPage as Tf, CronRunParams as Tg, EnvironmentsCreateParamsSchema as Th, SessionMembersListEvidenceResultSchema as Ti, SessionRow as Tj, ProjectSummary as Tk, SecretStoreEnvEntrySchema as Tl, DevicePairSetupStatusParams as Tm, WizardNextResult as Tn, SessionsCompanionAskResult as To, GatewaySuspendPrepareParams as Tp, TerminalResizeParams as Tr, SessionsGroupsRenameParamsSchema as Ts, WorkerLiveEventParams as Tt, QuestionWaitAnswerResultSchema as Tu, UpdateHoldResult as Tv, AgentsUpdateResult as Tw, UsersGitHubStatusResultSchema as Tx, TalkCatalogParams as Ty, WORKER_PORTAL_PROTOCOL_FEATURE as U, SessionSuggestionState as UA, AgentsWorkspaceListParamsSchema as UC, ConversationSendParams as UD, ToolsEffectiveParams as UE, GitHubPublicationBodySchema as UF, PluginControlUiModuleSchema as UI, PluginsUiDescriptorsParams as UL, BoardUpdateParamsSchema as UM, SkillsProposalHistoryScanResultSchema as UN, SessionsCatalogContinueParamsSchema as UO, ApprovalGetResult as UP, AuditRunInspectParams as US, SkillsProposalInspectResult as UT, SystemChangesListResult as U_, SessionOperationEvent as Ua, UserProfileAuthLink as Ub, SessionMovePlacement as Uc, NodeRenameParams as Ud, LogsTailResultSchema as Uf, CronPacingSchema as Ug, RequiredNodeCommandStateSchema as Uh, SessionSharingRole as Ui, ProgressCardPutResultSchema as Uj, ProjectsSearchRemoteParams as Uk, QuestionAnswers as Ul, ScopeUpgradeResultSchema as Um, PortalListParams as Un, SessionsDiffResultSchema as Uo, GatewaySuspension as Up, TaskSuggestionsCreateParams as Ur, SessionsPreviewParamsSchema as Us, WorkerSessionToolResultSchema as Ut, WebPushSubscribeParamsSchema as Uu, COMMAND_LIST_MAX_ITEMS as Uv, ModelsAuthOrderSetParams as Uw, UsersListParamsSchema as Ux, TalkClientTranscriptParams as Uy, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as V, SessionSuggestionResolutionSchema as VA, AgentsWorkspaceGetResultSchema as VC, ConversationListResult as VD, ToolsEffectiveNotice as VE, ValidationError as VF, PluginControlUiDiagnosticSchema as VI, PluginsSetEnabledResult as VL, BoardTicketEventParamsSchema as VM, SkillsProposalHistoryScanParamsSchema as VN, SessionsCatalogArchiveResultSchema as VO, ApprovalGetParams as VP, AuditRunIdentityV1 as VS, SkillsProposalInspectParams as VT, SystemChangesListParams as V_, SessionObserverPlanProgress as Va, UserModelAccountSchema as Vb, SessionMoveExpectedSourceSchema as Vc, NodePresenceAliveReason as Vd, LogsTailParamsSchema as Vf, CronJobStateSchema as Vg, RequiredNodeCommandSchema as Vh, SessionVisibilitySetResultSchema as Vi, ProgressCardPutParamsSchema as Vj, ProjectsRemoveResult as Vk, SecretsStoreSetParamsSchema as Vl, ScopeUpgradeRequestSchema as Vm, PortalCloseResult as Vn, SessionsDiffParamsSchema as Vo, GatewaySuspendTaskBlocker as Vp, TaskSuggestionsAcceptResult as Vr, SessionsPluginPatchResultSchema as Vs, WorkerSessionToolResponseFrameSchema as Vt, WebPushPreferencesSetParamsSchema as Vu, COMMAND_CHOICE_VALUE_MAX_LENGTH as Vv, ModelsAuthLogoutParams as Vw, UsersListModelAccountsResultSchema as Vx, TalkClientToolCallResult as Vy, WORKER_PROTOCOL_FEATURES as W, SessionSuggestionStateSchema as WA, AgentsWorkspaceListResult as WC, ConversationSendParamsSchema as WD, ToolsEffectiveParamsSchema as WE, GitHubPublicationPublisher as WF, PluginDeclaredSurface as WI, PluginsUiDescriptorsParamsSchema as WL, BoardViewTicketSchema as WM, SkillsProposalHistoryStatusParams as WN, SessionsCatalogContinueResult as WO, ApprovalGetResultSchema as WP, AuditRunInspectParamsSchema as WS, SkillsProposalInspectResultSchema as WT, SystemChangesListResultSchema as W_, SessionOperationEventSchema as Wa, UserProfileAuthLinkSchema as Wb, SessionMovePlacementSchema as Wc, NodeRenameParamsSchema as Wd, QueueMode as Wf, CronRemoveParamsSchema as Wg, RuntimeTargetIssue as Wh, SessionSharingRoleSchema as Wi, ProgressCardSchema as Wj, ProjectsSearchRemoteParamsSchema as Wk, QuestionAnswersSchema as Wl, ScopeUpgradeWait as Wm, PortalListParamsSchema as Wn, SessionsFilesGetParams as Wo, GatewaySuspensionSchema as Wp, TaskSuggestionsCreateParamsSchema as Wr, SessionsRecoverParams as Ws, WorkerSessionsSendParams as Wt, WebPushTestParams as Wu, COMMAND_NAME_MAX_LENGTH as Wv, ModelsAuthOrderSetParamsSchema as Ww, UsersListResult as Wx, TalkClientTranscriptParamsSchema as Wy, WORKER_RPC_SET_VERSION as X, SessionSuggestionsListParamsSchema as XA, AgentSummarySchema as XC, ConversationTurnCancelResultSchema as XD, ToolsGitHubAuthorizeCancelResult as XE, SessionGitHubConfirmParamsSchema as XF, PluginInspectSourceSchema as XI, PluginsUninstallResultSchema as XL, BoardWidgetContent as XM, WORKER_INFERENCE_METHODS as XN, SessionsCatalogListResult as XO, ApprovalKindSchema as XP, DecisionReceiptV1Schema as XS, SkillsProposalRequestRevisionResultSchema as XT, UpdateRunResultSchema as X_, SessionsAssignOwnerParamsSchema as Xa, UsersAuthConnectAnswerParamsSchema as Xb, SessionPlacement as Xc, ChatAbortParams as Xd, MAX_MENTIONABLE_USERS as Xf, CronScratchSchema as Xg, WorkerDesktopLaunchResult as Xh, SessionsViewerPresenceSetResult as Xi, CanvasDocumentViewParamsSchema as Xj, TaskSummary as Xk, QuestionListParamsSchema as Xl, ExecApprovalGrantsListResult as Xm, PortalOpenResultSchema as Xn, SessionsFilesListResult as Xo, FsListDirResultSchema as Xp, TaskSuggestionsDismissResultSchema as Xr, SessionsRewindResult as Xs, WorkerSessionsSpawnResponseFrame as Xt, NodeDescribeParams as Xu, CommandsListResultSchema as Xv, ModelsListResultSchema as Xw, UsersPrefsGetResult as Xx, TalkEventSchema as Xy, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES as Y, SessionSuggestionsListParams as YA, AgentSummary as YC, ConversationTurnCancelResult as YD, ToolsGitHubAuthorizeCancelParamsSchema as YE, SessionGitHubConfirmParams as YF, PluginInspectSource as YI, PluginsUninstallResult as YL, BoardWidgetAppViewResultSchema as YM, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as YN, SessionsCatalogListParamsSchema as YO, ApprovalKind as YP, DecisionReceiptV1 as YS, SkillsProposalRequestRevisionResult as YT, UpdateRunResult as Y_, SessionsAssignOwnerParams as Ya, UsersAuthConnectAnswerParams as Yb, SessionMoveTargetSchema as Yc, NODE_PRESENCE_ALIVE_REASONS as Yd, MAX_HUMAN_MENTIONS as Yf, CronScratchGetResultSchema as Yg, WorkerDesktopLaunchParamsSchema as Yh, SessionsViewerPresenceSetParamsSchema as Yi, CanvasDocumentViewParams as Yj, TASKS_LIST_CURSOR_MAX_LENGTH as Yk, QuestionListParams as Yl, ExecApprovalGrantsListParamsSchema as Ym, PortalOpenResult as Yn, SessionsFilesListParamsSchema as Yo, FsListDirResult as Yp, TaskSuggestionsDismissResult as Yr, SessionsRewindParamsSchema as Ys, WorkerSessionsSpawnParamsSchema as Yt, WebPushVapidPublicKeyParamsSchema as Yu, CommandsListResult as Yv, ModelsListResult as Yw, UsersPrefsGetParamsSchema as Yx, TalkEvent as Yy, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE as Z, SessionSuggestionsListResult as ZA, AgentsCreateParams as ZC, ConversationTurnParams as ZD, ToolsGitHubAuthorizeCancelResultSchema as ZE, SessionGitHubOptionsParamsSchema as ZF, PluginInstallTrust as ZI, GATEWAY_SERVER_CAPS as ZL, BoardWidgetContentSchema as ZM, WORKER_INFERENCE_PROTOCOL_FEATURE as ZN, SessionsCatalogListResultSchema as ZO, ApprovalPresentation as ZP, ExecutionIdentityContextV1 as ZS, SkillsProposalReviseParams as ZT, UpdateRunsGetParams as Z_, SessionsAssignOwnerResult as Za, UsersAuthConnectCancelParams as Zb, SessionPlacementDiskSpace as Zc, ChatAbortParamsSchema as Zd, MENTION_INBOX_MAX_ITEMS as Zf, CronScratchSetParamsSchema as Zg, WorkerDesktopLaunchResultSchema as Zh, SessionsViewerPresenceSetResultSchema as Zi, CanvasDocumentViewResult as Zj, TaskSummarySchema as Zk, QuestionListResult as Zl, ExecApprovalGrantsListResultSchema as Zm, PortalSummary as Zn, SessionsFilesListResultSchema as Zo, DesktopLaunchParams as Zp, TaskSuggestionsListParams as Zr, SessionsRewindResultSchema as Zs, WorkerSessionsSpawnResponseFrameSchema as Zt, NodeDescribeParamsSchema as Zu, TalkSessionAcknowledgeMarkParams as Zv, ModelsProbeParams as Zw, UsersPrefsGetResultSchema as Zx, TalkModeParams as Zy, WorktreeRepositoryStatusSchema as _, SessionGoal as _A, AuditActivityToolActionV1 as _C, ToolsGitHubManagedConfigureParams as _D, SkillsStatusParams as _E, ExternalPostApprovalScopeSchema as _F, GatewayErrorDetailsSchema as _I, PluginsInstallParams as _L, BoardEventParams as _M, BoardWidgetPutContentSchema as _N, SecretInputSchema as _O, WorkerInferenceStartRequestFrameSchema as _P, UsersSetDisplayNameResultSchema as _S, SkillsCuratorStatusResult as _T, SystemAgentSetupActivateStartParams as __, SessionDiffScope as _a, TalkSpeakParams as _b, SessionsPatchParams as _c, NodePairListParams as _d, ChatInputConsumptionsSchema as _f, CronAddResult as _g, ExecApprovalsSetParamsSchema as _h, SessionMemberEvidence as _i, SessionCreatedActor as _j, ProjectCheckout as _k, SessionsReclaimResultPlacement as _l, DevicePairSetupCodeParams as _m, WorkerAdmissionFailureReasonSchema as _n, SessionsCompactionListResult as _o, GatewaySuspendBlocker as _p, TerminalInputParams as _r, SessionsGroupsListParamsSchema as _s, WorkerHeartbeatResponseFrameSchema as _t, QuestionSchema as _u, ConfigSchemaResponse as _v, AgentsFilesSetResult as _w, UsersGitHubAuthorizePollResultSchema as _x, ChannelsStatusParams as _y, TranscriptsGetParamsSchema as a, TasksGetResultSchema as aA, AuditActivityAgentRunV1 as aC, ToolsGitHubAuthorizePollResult as aD, SkillsSearchParams as aE, ApprovalSnapshot as aF, SessionGitHubPublicationPublishingSchema as aI, PluginsControlUiCatalogSchema as aL, BoardCanvasDocumentSource as aM, BoardWidgetHtmlContentSchema as aN, PollParams as aO, WorkerInferenceContext as aP, UsersSelectModelAccountResultSchema as aS, SkillProposalLifecycleEvent as aT, SystemAgentChatHistoryTurn as a_, SessionBranch as aa, TalkSessionCloseParams as ab, SessionsSendParamsSchema as ac, NodeInvokeInputEventSchema as ad, ChatFinalEventSchema as af, WorkerEnvironmentStateSchema as ag, ExecApprovalResolveParamsSchema as ah, SystemInfoParamsSchema as ai, SessionTypingParams as aj, SessionsCatalogStartTerminalResultSchema as ak, SessionPlacementStateSchema as al, DevicePairApproveParams as am, WorkerTranscriptCommitRequestFrameSchema as an, SessionsBranchesSwitchResult as ao, MentionsDismissParamsSchema as ap, TerminalAttachParams as ar, SessionsFilesSetResultSchema as as, WorkerAdmissionHandshakeSchema as at, QuestionRequestQuestion as au, ConfigApplyParams as av, AgentsFileEntry as aw, UsersAuthConnectStartParams as ax, ChannelsPairingDismissParamsSchema as ay, WorktreesBranchesResult as b, SessionsGoalClearParams as bA, ArtifactSummary as bC, ToolsGitHubStatusParamsSchema as bD, SkillsUpdateParamsSchema as bE, PendingApprovalSnapshot as bF, MissingScopeErrorDetailsSchema as bI, PluginsInstallResultSchema as bL, BoardGetParams as bM, BoardWidgetPutResult as bN, SessionCatalog as bO, WorkerInferenceStartResult as bP, UsersSetRoleResult as bS, SkillsDetailParamsSchema as bT, SystemAgentSetupActivateStartResultSchema as b_, SessionFileBrowserEntrySchema as ba, TalkSpeakResultSchema as bb, SessionsListParamsSchema as bc, NodePairRejectParamsSchema as bd, ChatMessageGetParamsSchema as bf, CronGetParams as bg, EnvironmentStatus as bh, SessionMemberMutationResultSchema as bi, SessionEntryArchiveReasonSchema as bj, ProjectRecentFolderSchema as bk, SessionPlacementState as bl, DevicePairSetupCodeResultSchema as bm, WizardAnswerSchema as bn, SessionsCompactionRestoreParamsSchema as bo, GatewaySuspendHandoffParamsSchema as bp, TerminalListResultSchema as br, SessionsGroupsMutationResult as bs, WorkerLiveEvent as bt, QuestionStatus as bu, ConfigSetParamsSchema as bv, AgentsListParamsSchema as bw, UsersGitHubAuthorizeStartResultSchema as bx, ChannelsStatusResultSchema as by, TranscriptsListParams as c, TasksListResult as cA, AuditActivityEventV1Schema as cC, ToolsGitHubAuthorizeStartParams as cD, SkillsSearchResultSchema as cE, ApprovalTerminalReasonSchema as cF, SessionGitHubPublicationResult as cI, PluginsControlUiReloadParams as cL, BoardChangedEventSchema as cM, BoardWidgetMcpAppContentSchema as cN, WakeParams as cO, WorkerInferenceEventFrame as cP, UsersSelfResult as cS, SkillsBinsParamsSchema as cT, SystemAgentChatParamsSchema as c_, SessionCompactionCheckpointSchema as ca, TalkSessionCreateParamsSchema as cb, SESSIONS_PATCH_MANY_MAX_TARGETS as cc, NodeInvokeProgressParams as cd, ChatHistoryDeltaResult as cf, WorkerMachineOption as cg, ExecApprovalsGetParams as ch, PresenceEntry as ci, SessionTypingResultSchema as cj, MemoryMigrationProviderPlan as ck, SessionsDispatchResult as cl, DevicePairListParamsSchema as cm, WorkerTranscriptCommitResult as cn, SessionsCleanupParamsSchema as co, MentionsListResult as cp, TerminalAttachResultSchema as cr, SessionsForkResult as cs, WorkerConnectParams as ct, QuestionRequestResultSchema as cu, ConfigGetParamsSchema as cv, AgentsFilesGetParamsSchema as cw, UsersAuthConnectStartResultSchema as cx, ChannelsPairingListParams as cy, TranscriptsListResultSchema as d, TasksRecoveryParamsSchema as dA, AuditActivityListParams as dC, ToolsGitHubAuthorizeStartResultSchema as dD, SkillsSecurityVerdictsResult as dE, DeniedApprovalSnapshot as dF, SessionGitHubPublishParamsSchema as dI, PluginsControlUiStatusParamsSchema as dL, BoardCommandEvent as dM, BoardWidgetNameSchema as dN, CHAT_SEND_SESSION_KEY_MAX_LENGTH as dO, WorkerInferenceModelRef as dP, UsersSetAvatarParamsSchema as dS, SkillsCuratorActionParams as dT, SystemAgentChatResult as d_, SessionDiffCommit as da, TalkSessionOkResult as db, SessionsPatchManyResult as dc, NodeInvokeResultParams as dd, ChatHistoryParamsSchema as df, WorkerSlotSummary as dg, ExecApprovalsNodeGetParamsSchema as dh, SnapshotSchema as di, SessionParticipant as dj, MigrationsMemoryApplyResult as dk, SessionsMoveParamsSchema as dl, DevicePairRemoveParams as dm, WorkerTranscriptMessageSchema as dn, SessionsCompactionBranchParams as do, UsersMentionableParamsSchema as dp, TerminalDataEvent as dr, SessionsGroupsDefaultsParamsSchema as ds, WorkerErrorShape as dt, QuestionResolveParams as du, ConfigSchemaLookupParams as dv, AgentsFilesListParams as dw, UsersAuthConnectStatusResult as dx, ChannelsPairingListResultSchema as dy, TasksCancelResult as eA, PrincipalRefV1Schema as eC, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema as eD, SkillsProposalUpdateParamsSchema as eE, ApprovalResolveParamsSchema as eF, SessionGitHubPublicationFailedSchema as eI, PluginOperatorGrants as eL, BOARD_CRON_TRIGGER_PREFIX as eM, BoardWidgetGeneratedIdentity as eN, ConversationTurnReplySchema as eO, WorkerInferenceCancelRequestFrame as eP, UsersPrefsSetResult as eS, ModelsProbeResultSchema as eT, CronUpdateParamsSchema as e_, SessionsResolveParams as ea, TalkSessionAppendAudioParamsSchema as eb, SessionsSearchParams as ec, NodeEventResult as ed, ChatAttachmentsSchema as ef, WorkerDesktopObserveResult as eg, ExecApprovalGrantsRevokeResult as eh, TaskSuggestionsListResultSchema as ei, SessionSuggestionsResolveParamsSchema as ej, SessionsCatalogReadResult as ek, SessionPlacementMoveSchema as el, DesktopObserveParamsSchema as em, WorkerTranscriptCommitErrorShape as en, SessionsBranchesListParamsSchema as eo, MentionableUser as ep, PluginApprovalRequestParamsSchema as er, SessionsFilesRevealResult as es, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as et, QuestionOptionSchema as eu, UpdateRunsGetResultSchema as ev, AgentsCreateResultSchema as ew, UsersAuthConnectCatalogParamsSchema as ex, ChannelsPairingApproveParams as ey, WorktreeBranch as f, TasksRecoveryResult as fA, AuditActivityListParamsSchema as fC, ToolsGitHubAuthorizeSuccessResultSchema as fD, SkillsSecurityVerdictsResultSchema as fE, DeniedApprovalSnapshotSchema as fF, SessionGitHubStatusParamsSchema as fI, PluginsControlUiStatusResultSchema as fL, BoardCommandEventSchema as fM, BoardWidgetPluginContentSchema as fN, ChatSendSessionKeyString as fO, WorkerInferenceModelRefSchema as fP, UsersSetAvatarResult as fS, SkillsCuratorActionParamsSchema as fT, SystemAgentChatResultSchema as f_, SessionDiffCommitSchema as fa, TalkSessionOkResultSchema as fb, SessionsPatchManyResultSchema as fc, NodeInvokeResultParamsSchema as fd, ChatHistoryResetResult as ff, WorkerSlotSummarySchema as fg, ExecApprovalsNodeSetParams as fh, StateVersion as fi, SessionParticipantIdentity as fj, MigrationsMemoryPlanParamsSchema as fk, SessionsMoveResult as fl, DevicePairRemoveParamsSchema as fm, WorkerTranscriptUserMessageSchema as fn, SessionsCompactionBranchParamsSchema as fo, UsersMentionableResult as fp, TerminalDataEventSchema as fr, SessionsGroupsDefaultsResult as fs, WorkerHeartbeatParams as ft, QuestionResolveParamsSchema as fu, ConfigSchemaLookupParamsSchema as fv, AgentsFilesListParamsSchema as fw, UsersAuthConnectStatusResultSchema as fx, ChannelsPairingRequest as fy, WorktreeRepositoryStatus as g, SessionsCreateParamsSchema as gA, AuditActivityOutboundMessageV1Schema as gC, ToolsGitHubInheritConfigureParamsSchema as gD, SkillsSkillCardResultSchema as gE, ExpiredApprovalSnapshotSchema as gF, CronJobNotFoundErrorDetailsSchema as gI, PluginsInspectResultSchema as gL, BoardDataReadParamsSchema as gM, BoardWidgetPutContent as gN, NonEmptyString as gO, WorkerInferenceStartRequestFrame as gP, UsersSetDisplayNameResult as gS, SkillsCuratorStatusParamsSchema as gT, SystemAgentSetupActivateResultSchema as g_, SessionDiffFileStatusSchema as ga, TalkSessionSubmitToolResultParamsSchema as gb, SessionsPatchMutationSchema as gc, NodePairApproveParamsSchema as gd, ChatInputConsumptions as gf, CronAddParams as gg, ExecApprovalsSetParams as gh, SessionMemberAddParamsSchema as gi, SessionPersonSchema as gj, PROJECTS_LIST_MAX_IDENTITY_PROBES as gk, SessionsReclaimResult as gl, DevicePairResolvedEventSchema as gm, WORKER_PUBLIC_INGRESS_PATH as gn, SessionsCompactionListParamsSchema as go, HooksStatusParamsSchema as gp, TerminalExitEventSchema as gr, SessionsGroupsListParams as gs, WorkerHeartbeatResponseFrame as gt, QuestionResolvedEventSchema as gu, ConfigSchemaParamsSchema as gv, AgentsFilesSetParamsSchema as gw, UsersGitHubAuthorizePollResult as gx, ChannelsStartParamsSchema as gy, WorktreeRecordSchema as h, SESSION_CREATE_RETRY_WINDOW_MS as hA, AuditActivityOutboundMessageV1 as hC, ToolsGitHubInheritConfigureParams as hD, SkillsSkillCardResult as hE, ExpiredApprovalSnapshot as hF, session_github_publication_d_exports as hI, PluginsInspectResult as hL, BoardDataReadParams as hM, BoardWidgetPresentationSchema as hN, InputProvenanceSchema as hO, WorkerInferenceStartParams as hP, UsersSetDisplayNameParamsSchema as hS, SkillsCuratorStatusParams as hT, SystemAgentSetupActivateResult as h_, SessionDiffFileStatus as ha, TalkSessionSubmitToolResultParams as hb, SessionsPatchMutation as hc, NodePairApproveParams as hd, ChatInjectParamsSchema as hf, CronAddJobResult as hg, ExecApprovalsNodeSnapshotSchema as hh, SessionMemberAddParams as hi, SessionPerson as hj, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT as hk, SessionsReclaimParamsSchema as hl, DevicePairRequestedEventSchema as hm, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as hn, SessionsCompactionListParams as ho, HooksStatusParams as hp, TerminalExitEvent as hr, SessionsGroupsDeleteParamsSchema as hs, WorkerHeartbeatRequestFrameSchema as ht, QuestionResolvedEvent as hu, ConfigSchemaParams as hv, AgentsFilesSetParams as hw, UsersGitHubAuthorizePollParamsSchema as hx, ChannelsStartParams as hy, TranscriptsGetParams as i, TasksGetResult as iA, AUDIT_ACTIVITY_STATUSES as iC, ToolsGitHubAuthorizePollParamsSchema as iD, SkillsProposalsListResultSchema as iE, ApprovalScopeSchema as iF, SessionGitHubPublicationPublishing as iI, PluginsControlUiCatalog as iL, BoardActionParamsSchema as iM, BoardWidgetHeightModeSchema as iN, MessageActionParamsSchema as iO, WorkerInferenceCancelResult as iP, UsersSelectModelAccountResult as iS, SkillProposalEvaluationSchema as iT, SystemAgentChatHistoryResultSchema as i_, SESSION_OBSERVER_HEALTH_VALUES as ia, TalkSessionCancelOutputResultSchema as ib, SessionsSendParams as ic, NodeInvokeInputEvent as id, ChatEventSchema as if, WorkerEnvironmentState as ig, ExecApprovalResolveParams as ih, SystemInfoParams as ii, SessionTypingEventSchema as ij, SessionsCatalogStartTerminalResult as ik, SessionPlacementSchema as il, DesktopSourceSchema as im, WorkerTranscriptCommitRequestFrame as in, SessionsBranchesSwitchParamsSchema as io, MentionsDismissParams as ip, TerminalAckResultSchema as ir, SessionsFilesSetResult as is, WorkerAdmissionHandshake as it, QuestionRequestParamsSchema as iu, UpdateRunsListResultSchema as iv, AgentsDeleteResultSchema as iw, UsersAuthConnectResultSchema as ix, ChannelsPairingDismissParams as iy, WorktreesListResultSchema as j, SessionsDeleteResultSchema as jA, ArtifactsListParamsSchema as jC, AgentIdentityParamsSchema as jD, ToolCatalogProfile as jE, SessionApprovalReplay as jF, CapabilityConsentErrorDetailsSchema as jI, PluginsSearchResult as jL, BoardSizeSchema as jM, UiCommandParamsSchema as jN, SessionCatalogSchema as jO, ApprovalAllowDecision as jP, AuditEvent as jS, SkillsProposalDecisionParams as jT, SystemAgentSetupVerifyResult as j_, SessionFileRelevance as ja, GATEWAY_OWNER_PROFILE_ID as jb, SessionDiscussionInfoResultSchema as jc, NodePendingEnqueueResult as jd, ChatSendParamsSchema as jf, CronStatusParams as jg, EnvironmentsDestroyResultSchema as jh, SessionSharingActionSchema as ji, PROGRESS_CARD_MAX_STEP_UTF8_BYTES as jj, ProjectsListParams as jk, SecretsResolveResult as jl, DeviceTokenRotateParams as jm, WizardStatusParams as jn, SessionsCompanionStateParams as jo, GatewaySuspendResumeParamsSchema as jp, TerminalUploadResult as jr, SessionsMessagesSubscribeParamsSchema as js, WorkerLiveEventResult as jt, WebPushDetailLevelSchema as ju, UpdateStatusParams as jv, GitHubIdentityFacts as jw, UsersLinkEmailParamsSchema as jx, TalkClientCreateParams as jy, WorktreesListParamsSchema as k, SessionsDeleteParamsSchema as kA, ArtifactsGetResultSchema as kC, AgentEventSchema as kD, ToolCatalogGroup as kE, SessionApprovalEvent as kF, errorShape as kI, PluginsSearchParams as kL, BoardPromptAuthorizeParamsSchema as kM, UiCommand as kN, SessionCatalogPullRequestSummary as kO, AllowedApprovalSnapshot as kP, UiAppearancePreferenceKey as kS, SkillsProposalCreateParams as kT, SystemAgentSetupVerifyParams as k_, SessionFilePreviewKind as ka, ChatAccountSelection as kb, SessionDiscussionInfoParamsSchema as kc, NodePendingEnqueueParams as kd, ChatSendIntent as kf, CronScratchSetParams as kg, EnvironmentsDestroyParamsSchema as kh, SessionMembersListResultSchema as ki, SessionToolOverridesSchema as kj, ProjectsAddResult as kk, SecretsResolveParams as kl, DeviceTokenRevokeParams as km, WizardStartResult as kn, SessionsCompanionResetResult as ko, GatewaySuspendPrepareResultSchema as kp, TerminalUploadParams as kr, SessionsGroupsUpdateResultSchema as ks, WorkerLiveEventResponseFrame as kt, PushTestResultSchema as ku, UpdateScheduleState as kv, GatewayAgentRuntime as kw, UsersLinkAuthProfileResultSchema as kx, TalkClientCloseParams as ky, TranscriptsListParamsSchema as l, TasksListResultSchema as lA, AuditActivityInboundMessageV1 as lC, ToolsGitHubAuthorizeStartParamsSchema as lD, SkillsSecurityVerdictsParams as lE, CancelledApprovalSnapshot as lF, SessionGitHubPublicationResultSchema as lI, PluginsControlUiReloadParamsSchema as lL, BoardChatDockSchema as lM, BoardWidgetMcpAppPutContentSchema as lN, WakeParamsSchema as lO, WorkerInferenceEventParams as lP, UsersSelfResultSchema as lS, SkillsBinsResult as lT, SystemAgentChatQuestion as l_, SessionCompanionExchange as la, TalkSessionCreateResult as lb, SessionsPatchManyParams as lc, NodeInvokeProgressParamsSchema as ld, ChatHistoryDeltaResultSchema as lf, WorkerMachineOptionSchema as lg, ExecApprovalsGetParamsSchema as lh, PresenceEntrySchema as li, SESSION_EXPANDED_PARTICIPANT_LIMIT as lj, MigrationProtocolSchemas as lk, SessionsDispatchResultSchema as ll, DevicePairRejectParams as lm, WorkerTranscriptCommitResultSchema as ln, SessionsCompactParams as lo, MentionsListResultSchema as lp, TerminalCloseParams as lr, SessionsForkResultSchema as ls, WorkerConnectRequestFrame as lt, QuestionRequestedEvent as lu, ConfigPatchParams as lv, AgentsFilesGetResult as lw, UsersAuthConnectStatusParams as lx, ChannelsPairingListParamsSchema as ly, WorktreeRecord as m, SESSION_CREATE_IDEMPOTENCY_RETENTION_MS as mA, AuditActivityListResultSchema as mC, ToolsGitHubConfigureParamsSchema as mD, SkillsSkillCardParamsSchema as mE, ExecApprovalPresentationSchema as mF, SessionGitHubStatusResultSchema as mI, PluginsInspectParamsSchema as mL, BoardCronActionParamsSchema as mM, BoardWidgetPluginPropsSchema as mN, GatewayClientModeSchema as mO, WorkerInferenceOptionsSchema as mP, UsersSetDisplayNameParams as mS, SkillsCuratorActionResultSchema as mT, SystemAgentSetupActivateParamsSchema as m_, SessionDiffFileSchema as ma, TalkSessionSteerParamsSchema as mb, SessionsPatchManyTargetSchema as mc, NodeListParamsSchema as md, ChatInjectParams as mf, WorkerTunnelStatusSchema as mg, ExecApprovalsNodeSnapshot as mh, SessionMember as mi, SessionParticipantSchema as mj, PROJECTS_LIST_DEFAULT_LIMIT as mk, SessionsReclaimParams as ml, DevicePairRenameParamsSchema as mm, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as mn, SessionsCompactionBranchResultSchema as mo, human_mentions_d_exports as mp, TerminalEventSchema as mr, SessionsGroupsDeleteParams as ms, WorkerHeartbeatRequestFrame as mt, QuestionResolveResultSchema as mu, ConfigSchemaLookupResultSchema as mv, AgentsFilesListResultSchema as mw, UsersGitHubAuthorizeCancelResultSchema as mx, ChannelsLogoutParamsSchema as my, TranscriptSessionSummary as n, TasksGetParams as nA, AUDIT_ACTIVITY_KINDS as nC, ToolsGitHubAuthorizePendingResultSchema as nD, SkillsProposalsListParamsSchema as nE, ApprovalResolveResultSchema as nF, SessionGitHubPublicationPublished as nI, PluginSearchPackageSchema as nL, BOARD_WIDGET_TOOL_MAX_LENGTH as nM, BoardWidgetGrantParams as nN, ConversationTurnResultSchema as nO, WorkerInferenceCancelResponseFrame as nP, UsersSelectModelAccountParams as nS, ModelsProbeTargetResultSchema as nT, SystemAgentChatHistoryParamsSchema as n_, SessionsResolveResult as na, TalkSessionCancelOutputParamsSchema as nb, SessionsSearchResult as nc, NodeHostStatsPayload as nd, ChatErrorEventSchema as nf, WorkerEnvironmentMetadata as ng, ExecApprovalRequestParams as nh, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as ni, SessionSuggestionsResolveResultSchema as nj, SessionsCatalogStartTerminalParams as nk, SessionPlacementRunner as nl, DesktopObserveResultSchema as nm, WorkerTranscriptCommitParams as nn, SessionsBranchesListResultSchema as no, MentionsChangedEvent as np, PluginApprovalResolveParamsSchema as nr, SessionsFilesSetParams as ns, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as nt, QuestionRecordSchema as nu, UpdateRunsListParamsSchema as nv, AgentsDeleteParamsSchema as nw, UsersAuthConnectCatalogResultSchema as nx, ChannelsPairingApproveResult as ny, TranscriptsGetResult as o, TasksListParams as oA, AuditActivityAgentRunV1Schema as oC, ToolsGitHubAuthorizePollResultSchema as oD, SkillsSearchParamsSchema as oE, ApprovalSnapshotSchema as oF, SessionGitHubPublicationRequested as oI, PluginsControlUiChangedEventSchema as oL, BoardCanvasDocumentSourceSchema as oM, BoardWidgetMaterializedContent as oN, PollParamsSchema as oO, WorkerInferenceErrorReason as oP, UsersSelfParams as oS, SkillProposalLifecycleEventSchema as oT, SystemAgentChatHistoryTurnSchema as o_, SessionBranchSchema as oa, TalkSessionCloseParamsSchema as ob, SessionsUsageParams as oc, NodeInvokeParams as od, ChatHistoryCursorResult as of, WorkerExecutionMode as og, ExecApprovalStandingGrant as oh, SystemInfoResult as oi, SessionTypingParamsSchema as oj, MAX_MEMORY_MIGRATION_ITEMS as ok, SessionsDispatchParams as ol, DevicePairApproveParamsSchema as om, WorkerTranscriptCommitResponseFrame as on, SessionsBranchesSwitchResultSchema as oo, MentionsListParams as op, TerminalAttachParamsSchema as or, SessionsForkParams as os, WorkerAdmissionResponseFrame as ot, QuestionRequestQuestionSchema as ou, ConfigApplyParamsSchema as ov, AgentsFileEntrySchema as ow, UsersAuthConnectStartParamsSchema as ox, ChannelsPairingDismissResult as oy, WorktreeBranchSchema as p, TasksRecoveryResultSchema as pA, AuditActivityListResult as pC, ToolsGitHubConfigureParams as pD, SkillsSkillCardParams as pE, ExecApprovalPresentation as pF, SessionGitHubStatusResult as pI, PluginsInspectParams as pL, BoardCommandSchema as pM, BoardWidgetPluginKindSchema as pN, GatewayClientIdSchema as pO, WorkerInferenceOptions as pP, UsersSetAvatarResultSchema as pS, SkillsCuratorActionResult as pT, SystemAgentSetupActivateParams as p_, SessionDiffFile as pa, TalkSessionSteerParams as pb, SessionsPatchManyTarget as pc, NodeListParams as pd, ChatHistoryResetResultSchema as pf, WorkerTunnelStatus as pg, ExecApprovalsNodeSetParamsSchema as ph, StateVersionSchema as pi, SessionParticipantIdentitySchema as pj, MigrationsMemoryPlanResult as pk, SessionsMoveResultSchema as pl, DevicePairRenameParams as pm, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as pn, SessionsCompactionBranchResult as po, UsersMentionableResultSchema as pp, TerminalEvent as pr, SessionsGroupsDefaultsResultSchema as ps, WorkerHeartbeatParamsSchema as pt, QuestionResolveResult as pu, ConfigSchemaLookupResult as pv, AgentsFilesListResult as pw, UsersGitHubAuthorizeCancelParamsSchema as px, ChannelsLogoutParams as py, WORKER_PROTOCOL_MAX_METHOD_LENGTH as q, SessionSuggestionsAddResult as qA, AgentKindSchema as qC, ConversationTurnCancelParams as qD, ToolsGitHubAuthorizeAccessDeniedResultSchema as qE, GitHubPublicationSelectionSchema as qF, PluginHookGrant as qI, PluginsUninstallParams as qL, BoardWidgetAppViewParamsSchema as qM, validateSkillsProposalHistoryStatusParams as qN, SessionsCatalogHostEventSchema as qO, ApprovalHistoryResult as qP, DecisionReceiptDisplayV1 as qS, SkillsProposalRequestRevisionParams as qT, UpdateRunRecord as q_, SessionsAbortParams as qa, UserProfileGitHubIdentitySchema as qb, SessionMoveProfileTargetSchema as qc, NodeSkillsUpdateParams as qd, HumanMentionSchema as qf, CronRunsParamsSchema as qg, WorkerDesktopAppIdSchema as qh, SESSION_VIEWER_PRESENCE_MAX_KEYS as qi, ProgressCardStepStatus as qj, RemoteProject as qk, QuestionGetResult as ql, ExecApprovalGetParamsSchema as qm, PortalOpenParams as qn, SessionsFilesGetResultSchema as qo, FsListDirParams as qp, TaskSuggestionsDismissParams as qr, SessionsResetParamsSchema as qs, WorkerSessionsSendResponseFrameSchema as qt, WebPushUnsubscribeParamsSchema as qu, CommandsListParams as qv, ModelsListParams as qw, UsersPrefsChangedEventSchema as qx, TalkConfigResult as qy, TranscriptSessionSummarySchema as r, TasksGetParamsSchema as rA, AUDIT_ACTIVITY_MESSAGE_KIND as rC, ToolsGitHubAuthorizePollParams as rD, SkillsProposalsListResult as rE, ApprovalScope as rF, SessionGitHubPublicationPublishedSchema as rI, PluginSearchResultEntrySchema as rL, BoardActionParams as rM, BoardWidgetGrantParamsSchema as rN, MessageActionParams as rO, WorkerInferenceCancelResponseFrameSchema as rP, UsersSelectModelAccountParamsSchema as rS, SkillProposalEvaluation as rT, SystemAgentChatHistoryResult as r_, SessionsResolveResultSchema as ra, TalkSessionCancelOutputResult as rb, SessionsSearchResultSchema as rc, NodeHostStatsPayloadSchema as rd, ChatEvent as rf, WorkerEnvironmentMetadataSchema as rg, ExecApprovalRequestParamsSchema as rh, validateSystemEventParams as ri, SessionTypingEvent as rj, SessionsCatalogStartTerminalParamsSchema as rk, SessionPlacementRunnerSchema as rl, DesktopSource as rm, WorkerTranscriptCommitParamsSchema as rn, SessionsBranchesSwitchParams as ro, MentionsChangedEventSchema as rp, TerminalAckResult as rr, SessionsFilesSetParamsSchema as rs, WorkerAdmissionFailureReason as rt, QuestionRequestParams as ru, UpdateRunsListResult as rv, AgentsDeleteResult as rw, UsersAuthConnectResult as rx, ChannelsPairingApproveResultSchema as ry, TranscriptsGetResultSchema as s, TasksListParamsSchema as sA, AuditActivityEventV1 as sC, ToolsGitHubAuthorizeSlowDownResultSchema as sD, SkillsSearchResult as sE, ApprovalTerminalReason as sF, SessionGitHubPublicationRequestedSchema as sI, PluginsControlUiListParamsSchema as sL, BoardChangedEvent as sM, BoardWidgetMaterializedPutParams as sN, SendParamsSchema as sO, WorkerInferenceErrorShape as sP, UsersSelfParamsSchema as sS, SkillsBinsParams as sT, SystemAgentChatParams as s_, SessionCompactionCheckpoint as sa, TalkSessionCreateParams as sb, SessionsUsageParamsSchema as sc, NodeInvokeParamsSchema as sd, ChatHistoryCursorResultSchema as sf, WorkerExecutionModeSchema as sg, ExecApprovalStandingGrantSchema as sh, SystemInfoResultSchema as si, SessionTypingResult as sj, MemoryMigrationItem as sk, SessionsDispatchParamsSchema as sl, DevicePairListParams as sm, WorkerTranscriptCommitResponseFrameSchema as sn, SessionsCleanupParams as so, MentionsListParamsSchema as sp, TerminalAttachResult as sr, SessionsForkParamsSchema as ss, WorkerAdmissionResponseFrameSchema as st, QuestionRequestResult as su, ConfigGetParams as sv, AgentsFilesGetParams as sw, UsersAuthConnectStartResult as sx, ChannelsPairingDismissResultSchema as sy, schema_modules_d_exports as t, TasksCancelResultSchema as tA, AUDIT_ACTIVITY_DIRECTIONS as tC, ToolsGitHubAuthorizeNetworkErrorResultSchema as tD, SkillsProposalsListParams as tE, ApprovalResolveResult as tF, SessionGitHubPublicationNeedsConfirmationSchema as tI, PluginOperatorGrantsSchema as tL, BOARD_DATA_BINDING_ID_MAX_LENGTH as tM, BoardWidgetGeneratedIdentitySchema as tN, ConversationTurnResult as tO, WorkerInferenceCancelRequestFrameSchema as tP, UsersPrefsSetResultSchema as tS, ModelsProbeTargetResult as tT, SystemAgentChatHistoryParams as t_, SessionsResolveParamsSchema as ta, TalkSessionCancelOutputParams as tb, SessionsSearchParamsSchema as tc, NodeEventResultSchema as td, ChatDeltaEventSchema as tf, WorkerDesktopObserveResultSchema as tg, ExecApprovalGrantsRevokeResultSchema as th, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as ti, SessionSuggestionsResolveResult as tj, SessionsCatalogReadResultSchema as tk, SessionPlacementProtocolSchemas as tl, DesktopObserveResult as tm, WorkerTranscriptCommitErrorShapeSchema as tn, SessionsBranchesListResult as to, MentionableUserSchema as tp, PluginApprovalResolveParams as tr, SessionsFilesRevealResultSchema as ts, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as tt, QuestionRecord as tu, UpdateRunsListParams as tv, AgentsDeleteParams as tw, UsersAuthConnectCatalogResult as tx, ChannelsPairingApproveParamsSchema as ty, TranscriptsListResult as u, TasksRecoveryParams as uA, AuditActivityInboundMessageV1Schema as uC, ToolsGitHubAuthorizeStartResult as uD, SkillsSecurityVerdictsParamsSchema as uE, CancelledApprovalSnapshotSchema as uF, SessionGitHubPublishParams as uI, PluginsControlUiReportParamsSchema as uL, BoardCommand as uM, BoardWidgetMoveOpSchema as uN, agent_d_exports as uO, WorkerInferenceImageContentSchema as uP, UsersSetAvatarParams as uS, SkillsBinsResultSchema as uT, SystemAgentChatQuestionSchema as u_, SessionCompanionExchangeSchema as ua, TalkSessionCreateResultSchema as ub, SessionsPatchManyParamsSchema as uc, NodeInvokeRequestEventSchema as ud, ChatHistoryParams as uf, WorkerMachineOptionsSchema as ug, ExecApprovalsNodeGetParams as uh, Snapshot as ui, SESSION_PARTICIPANT_LIMIT as uj, MigrationsMemoryApplyParamsSchema as uk, SessionsMoveParams as ul, DevicePairRejectParamsSchema as um, WorkerTranscriptMessage as un, SessionsCompactParamsSchema as uo, UsersMentionableParams as up, TerminalCloseParamsSchema as ur, SessionsGroupsDefaultsParams as us, WorkerConnectRequestFrameSchema as ut, QuestionRequestedEventSchema as uu, ConfigPatchParamsSchema as uv, AgentsFilesGetResultSchema as uw, UsersAuthConnectStatusParamsSchema as ux, ChannelsPairingListResult as uy, WorktreesBranchesParams as v, SessionGoalSchema as vA, AuditActivityToolActionV1Schema as vC, ToolsGitHubManagedConfigureParamsSchema as vD, SkillsStatusParamsSchema as vE, MessageSendApprovalScopeSchema as vF, GitHubPublicationSelectionRejectedErrorDetailsSchema as vI, PluginsInstallParamsSchema as vL, BoardEventParamsSchema as vM, BoardWidgetPutParams as vN, SecretRefSchema as vO, WorkerInferenceStartResponseFrame as vP, UsersSetRoleParams as vS, SkillsCuratorStatusResultSchema as vT, SystemAgentSetupActivateStartParamsSchema as v_, SessionDiffScopeSchema as va, TalkSpeakParamsSchema as vb, SessionsPatchParamsSchema as vc, NodePairListParamsSchema as vd, ChatInputReceipts as vf, CronDeclarativeAddResult as vg, ExecApprovalsSnapshot as vh, SessionMemberEvidenceSchema as vi, SessionCreatedActorSchema as vj, ProjectCheckoutSchema as vk, SessionsReclaimResultPlacementSchema as vl, DevicePairSetupCodeParamsSchema as vm, WorkerProtocolCloseReasonSchema as vn, SessionsCompactionListResultSchema as vo, GatewaySuspendBlockerSchema as vp, TerminalInputParamsSchema as vr, SessionsGroupsListResult as vs, WorkerHeartbeatResult as vt, QuestionSecretStoreBindingSchema as vu, ConfigSchemaResponseSchema as vv, AgentsFilesSetResultSchema as vw, UsersGitHubAuthorizeStartParamsSchema as vx, ChannelsStatusParamsSchema as vy, WorktreesGcParams as w, SessionsGoalUpdateParams as wA, ArtifactsDownloadResult as wC, ToolsInvokeParams as wD, SkillsUploadChunkParamsSchema as wE, PluginApprovalExternalResolutionSchema as wF, SkillProposalRevisionChangedErrorDetailsSchema as wI, PluginsListResultSchema as wL, BoardMcpAppDescriptorSchema as wM, BoardWidgetRemoveOpSchema as wN, SessionCatalogDescriptorSchema as wO, validateWorkerInferenceCancelParams as wP, UsersUnlinkAuthProfileResult as wS, SkillsInstallParamsSchema as wT, SystemAgentSetupAuthStartResultSchema as w_, SessionFileContentEncodingSchema as wa, TtsSpeakResultSchema as wb, SessionsTitlePrepareResultSchema as wc, NodePendingAckParamsSchema as wd, ChatMetadataParamsSchema as wf, CronRunLogEntry as wg, EnvironmentsCreateParams as wh, SessionMembersListEvidenceResult as wi, SessionPermissionModeSchema as wj, ProjectRecordSchema as wk, SecretStoreEntrySchema as wl, DevicePairSetupDeliveryUncertainEventSchema as wm, WizardNextParamsSchema as wn, SessionsCompanionAskParamsSchema as wo, GatewaySuspendPrepareDrainingResultSchema as wp, TerminalOpenResultSchema as wr, SessionsGroupsRenameParams as ws, WorkerLiveEventErrorShapeSchema as wt, QuestionWaitAnswerResult as wu, UpdateHoldParamsSchema as wv, AgentsUpdateParamsSchema as ww, UsersGitHubStatusResult as wx, TalkAgentControlResultSchema as wy, WorktreesBranchesResultSchema as x, SessionsGoalClearParamsSchema as xA, ArtifactSummarySchema as xC, ToolsGitHubStatusResult as xD, SkillsUploadBeginParams as xE, PendingApprovalSnapshotSchema as xF, OutboundDeliveryQueuedErrorDetailsSchema as xI, PluginsListParams as xL, BoardGetParamsSchema as xM, BoardWidgetPutResultSchema as xN, SessionCatalogCapabilities as xO, WorkerInferenceTerminalFrame as xP, UsersSetRoleResultSchema as xS, SkillsDetailResult as xT, SystemAgentSetupAuthStartParams as x_, SessionFileBrowserResult as xa, TtsSpeakParams as xb, SessionsTitlePrepareParams as xc, NodePairRemoveParams as xd, ChatMessageGetResult as xf, CronJob as xg, EnvironmentStatusSchema as xh, SessionMemberRemoveParams as xi, SessionOwner as xj, ProjectRecentProjectSchema as xk, isCloudWorkerPlacementState as xl, DevicePairSetupCompletedEvent as xm, WizardCancelParams as xn, SessionsCompactionRestoreResult as xo, GatewaySuspendHandoffResult as xp, TerminalOpenParams as xr, SessionsGroupsMutationResultSchema as xs, WorkerLiveEventErrorDetails as xt, QuestionStatusSchema as xu, UpdateAvailable as xv, AgentsListResult as xw, UsersGitHubDisconnectParamsSchema as xx, ChannelsStopParams as xy, WorktreesBranchesParamsSchema as y, SessionGoalStatus as yA, findAuditActivityFilterConflict as yC, ToolsGitHubStatusParams as yD, SkillsUpdateParams as yE, PaymentApprovalScopeSchema as yF, McpAppViewExpiredErrorDetailsSchema as yI, PluginsInstallResult as yL, BoardFocusTabCommandSchema as yM, BoardWidgetPutParamsSchema as yN, SessionLabelString as yO, WorkerInferenceStartResponseFrameSchema as yP, UsersSetRoleParamsSchema as yS, SkillsDetailParams as yT, SystemAgentSetupActivateStartResult as y_, SessionFileBrowserEntry as ya, TalkSpeakResult as yb, SessionsListParams as yc, NodePairRejectParams as yd, ChatInputReceiptsSchema as yf, CronDeliveryPreview as yg, ExecApprovalsSnapshotSchema as yh, SessionMemberMutationResult as yi, SessionEntryArchiveReason as yj, ProjectRecent as yk, SessionsReclaimResultSchema as yl, DevicePairSetupCodeResult as ym, WizardAnswer as yn, SessionsCompactionRestoreParams as yo, GatewaySuspendHandoffParams as yp, TerminalListResult as yr, SessionsGroupsListResultSchema as ys, WorkerHelloOk as yt, QuestionSecretStoreExistingSchema as yu, ConfigSetParams as yv, AgentsListParams as yw, UsersGitHubAuthorizeStartResult as yx, ChannelsStatusResult as yy, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE as z, SessionSuggestionEventSchema as zA, AgentsWorkspaceGetParamsSchema as zC, ConversationListParams as zD, ToolsEffectiveGroup as zE, isWellFormedApprovalId as zF, PluginControlUiDescriptorSchema as zI, PluginsSetEnabledParams as zL, BoardTabUpdateOpSchema as zM, UiSplitCommandSchema as zN, SessionsCatalogArchiveParamsSchema as zO, ApprovalDeniedReasonSchema as zP, AuditRunIdentityUnknownV1Schema as zS, SkillsProposalEventsListResult as zT, SystemChangeSource as z_, SessionObserverHealth as za, USER_PREFS_VALUE_BYTES as zb, SessionMoveDeviceTargetSchema as zc, NodePresenceAlivePayload as zd, ChatToolTitlesResultSchema as zf, CronGetParamsSchema as zg, EnvironmentsStatusResultSchema as zh, SessionVisibilitySetParamsSchema as zi, ProgressCardGetResultSchema as zj, ProjectsRemoveParams as zk, SecretsStoreMutationResultSchema as zl, ScopeUpgradeRejectedSchema as zm, PortalCloseParams as zn, SessionsDescribeParamsSchema as zo, GatewaySuspendStatusResultSchema as zp, TaskSuggestionsAcceptParams as zr, SessionsPluginPatchParamsSchema as zs, WorkerProviderReplayState as zt, WebPushPreferencesGetParamsSchema as zu, COMMAND_ARG_NAME_MAX_LENGTH as zv, ModelChoice as zw, UsersListModelAccountsParamsSchema as zx, TalkClientToolCallParams as zy };
24714
+ export { WorkerConnectRequestFrame as $, SessionSuggestionActionSchema as $A, AgentsWorkspaceListResult as $C, ConversationListResultSchema as $D, ToolsEffectiveNoticeSchema as $E, CancelledApprovalSnapshot as $F, SessionGitHubPublicationResultSchema as $I, PluginInstalledComponents as $L, BoardChatDockSchema as $M, BoardWidgetMcpAppPutContentSchema as $N, SessionsCatalogContinueParams as $O, WorkerInferenceEventParams as $P, PluginsSetEnabledParams as $R, AuditRunInspectParamsSchema as $S, SkillsProposalInspectResultSchema as $T, UpdateRunRecordSchema as $_, SessionsBranchesListResultSchema as $a, UserProfileGitHubIdentitySchema as $b, SessionPlacementMoveSchema as $c, ChatAttachmentsSchema as $d, MentionableUser as $f, CronScratchGetParamsSchema as $g, WorkerDesktopLaunchResult as $h, SessionsResolveResult as $i, TRANSCRIPTS_RESULT_MAX_BYTES as $j, ProjectsRemoveResult as $k, QuestionOptionSchema as $l, ExecApprovalGrantsRevokeResult as $m, TerminalCloseParams as $n, SessionsFilesSetParams as $o, DesktopObserveParamsSchema as $p, PresenceEntry as $r, SessionsSearchResult as $s, WorkerTranscriptCommitResultSchema as $t, NodeEventResult as $u, COMMAND_NAME_MAX_LENGTH as $v, ModelsAuthOrderSetParamsSchema as $w, UsersPrefsChangedEventSchema as $x, TalkClientTranscriptParamsSchema as $y, WORKER_HEARTBEAT_INTERVAL_MS as A, SESSION_CREATE_IDEMPOTENCY_RETENTION_MS as AA, ArtifactSummarySchema as AC, ToolsGitHubStatusParams as AD, SkillsUploadBeginParams as AE, ApprovalExpiredReasonSchema as AF, ProtocolValidator as AI, PluginControlUiDiagnostic as AL, ProgressCardPutParams as AM, BoardTabsReorderOpSchema as AN, SessionLabelString as AO, SkillsProposalHistoryScanParams as AP, PluginsInspectResultSchema as AR, UsersUnlinkAuthProfileResult as AS, SkillsDetailResult as AT, SystemAgentSetupDetectParams as A_, SessionGroup as Aa, TtsSpeakParams as Ab, SessionDiscussionOpenParams as Ac, NodePendingEnqueueResult as Ad, ChatSendParamsSchema as Af, CronRunParams as Ag, EnvironmentsDestroyResultSchema as Ah, SessionSharingEventSchema as Ai, SessionParticipantSchema as Aj, ProjectRecent as Ak, SecretsResolveResult as Al, DeviceTokenRotateParams as Am, PortalCloseParamsSchema as An, SessionsCompanionStateResult as Ao, GatewaySuspendResumeParamsSchema as Ap, TaskSuggestionsAcceptParams as Ar, SessionsMessagesUnsubscribeParamsSchema as As, WorkerProviderReplayStateSchema as At, WebPushDetailLevelSchema as Au, UpdateHoldResult as Av, AgentsListResult as Aw, UsersGitHubStatusResult as Ax, ChannelsStopParams as Ay, WORKER_RPC_SET_VERSION as B, SessionsGoalUpdateParams as BA, ArtifactsListParamsSchema as BC, AgentEventSchema as BD, ToolCatalogGroup as BE, ApprovalKindSchema as BF, SessionGitHubConfirmParamsSchema as BI, PluginDiscoveryCategorySchema as BL, CanvasDocumentViewParamsSchema as BM, BoardWidgetContent as BN, SessionCatalogPullRequestSummary as BO, WORKER_INFERENCE_METHODS as BP, PluginsRefreshParamsSchema as BR, AuditEvent as BS, SkillsProposalDecisionParams as BT, SystemChangeEntry as B_, SessionOperationEvent as Ba, PersonalGitHubGenerationSchema as Bb, SessionMovePlacement as Bc, NodePresenceAliveReason as Bd, LogsTailParamsSchema as Bf, CronAddResultSchema as Bg, EnvironmentsStatusParamsSchema as Bh, SessionSharingRole as Bi, SessionPermissionModeSchema as Bj, ProjectsAddParamsSchema as Bk, SecretsStoreSetParamsSchema as Bl, ScopeUpgradeRequestSchema as Bm, PortalOpenResultSchema as Bn, SessionsDiffResultSchema as Bo, GatewaySuspendTaskBlocker as Bp, TaskSuggestionsDismissResult as Br, SessionsPreviewParamsSchema as Bs, WorkerSessionsSpawnResponseFrame as Bt, WebPushPreferencesSetParamsSchema as Bu, UpdateStatusParams as Bv, GitHubIdentityFacts as Bw, UsersListAuthLinksParams as Bx, TalkClientCreateParams as By, WorktreesRemoveParamsSchema as C, TasksListParamsSchema as CA, AuditActivityListResultSchema as CC, ToolsGitHubAuthorizeSuccessResultSchema as CD, SkillsSkillCardParamsSchema as CE, ApprovalAllowedReasonSchema as CF, StandingGrantApprovalScopeSchema as CI, PluginCatalogEntry as CL, ProgressCard as CM, BoardSnapshotSchema as CN, ChatSendSessionKeyString as CO, UiCommandResultSchema as CP, PluginsControlUiReloadParamsSchema as CR, UsersSetDisplayNameResultSchema as CS, SkillsCuratorActionResultSchema as CT, SystemAgentSetupActivateStartParamsSchema as C_, SessionFileEntrySchema as Ca, TalkSessionSteerParamsSchema as Cb, SessionsRecoverResultSchema as Cc, NodePendingAckParamsSchema as Cd, ChatMetadataParamsSchema as Cf, CronDeclarativeAddResult as Cg, EnvironmentsCreateParams as Ch, SessionPublicShareSetParams as Ci, SessionTypingResult as Cj, MigrationsMemoryPlanParamsSchema as Ck, SecretStoreEntrySchema as Cl, DevicePairSetupDeliveryUncertainEventSchema as Cm, WizardStatusResult as Cn, SessionsCompanionAskResultSchema as Co, GatewaySuspendPrepareDrainingResultSchema as Cp, TerminalUploadResultSchema as Cr, SessionsGroupsUpdateParams as Cs, WorkerLiveEventSchema as Ct, QuestionWaitAnswerResult as Cu, ConfigSchemaResponseSchema as Cv, AgentsFilesListResultSchema as Cw, UsersGitHubAuthorizePollResultSchema as Cx, ChannelsLogoutParamsSchema as Cy, WorktreesRestoreParamsSchema as D, TasksRecoveryParamsSchema as DA, AuditActivityToolActionV1Schema as DC, ToolsGitHubInheritConfigureParamsSchema as DD, SkillsStatusParamsSchema as DE, ApprovalDecision as DF, TerminalApprovalSnapshotSchema as DI, PluginControlUiActivation as DL, ProgressCardGetParamsSchema as DM, BoardTabIdSchema as DN, NonEmptyString as DO, UiPanelCommandSchema as DP, PluginsInspectParams as DR, UsersSetRoleResultSchema as DS, SkillsCuratorStatusResultSchema as DT, SystemAgentSetupAuthStartParamsSchema as D_, SessionFilePreviewKindSchema as Da, TalkSpeakParamsSchema as Db, SessionDiscussionInfoResult as Dc, NodePendingDrainResultSchema as Dd, ChatRunStartupPhaseSchema as Df, CronListParams as Dg, EnvironmentsDestroyParams as Dh, SessionSharingAction as Di, SessionParticipant as Dj, PROJECTS_LIST_MAX_IDENTITY_PROBES as Dk, SecretsResolveAssignmentSchema as Dl, DevicePairSetupStatusResultSchema as Dm, PortalChangedEvent as Dn, SessionsCompanionResetResultSchema as Do, GatewaySuspendPrepareResult as Dp, TaskSuggestionResolution as Dr, SessionsMessagesSubscribeParams as Ds, WorkerPortalResponseFrameSchema as Dt, PushTestResult as Du, UpdateAvailableSchema as Dv, AgentsFilesSetResultSchema as Dw, UsersGitHubDisconnectParamsSchema as Dx, ChannelsStatusParamsSchema as Dy, WorktreesRestoreParams as E, TasksRecoveryParams as EA, AuditActivityToolActionV1 as EC, ToolsGitHubInheritConfigureParams as ED, SkillsStatusParams as EE, ApprovalChannelReviewerSchema as EF, TerminalApprovalSnapshot as EI, PluginCatalogOfficialInstallSchema as EL, ProgressCardGetParams as EM, BoardTabDeleteOpSchema as EN, InputProvenanceSchema as EO, UiNavigateCommandSchema as EP, PluginsControlUiStatusResultSchema as ER, UsersSetRoleResult as ES, SkillsCuratorStatusResult as ET, SystemAgentSetupAuthStartParams as E_, SessionFilePreviewKind as Ea, TalkSpeakParams as Eb, SessionDiscussionInfoParamsSchema as Ec, NodePendingDrainResult as Ed, ChatRunStartupPhase as Ef, CronJob as Eg, EnvironmentsCreateResultSchema as Eh, SessionPublicShareSetResultSchema as Ei, SESSION_PARTICIPANT_LIMIT as Ej, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT as Ek, SecretsReloadParamsSchema as El, DevicePairSetupStatusResult as Em, WizardStepSchema as En, SessionsCompanionResetResult as Eo, GatewaySuspendPrepareReadyResultSchema as Ep, TaskSuggestionEventSchema as Er, SessionsGroupsUpdateResultSchema as Es, WorkerPortalResponseFrame as Et, PushTestParamsSchema as Eu, UpdateAvailable as Ev, AgentsFilesSetResult as Ew, UsersGitHubAuthorizeStartResultSchema as Ex, ChannelsStatusParams as Ey, WORKER_PROTOCOL_MAX_FEATURES as F, SessionGoalStatus as FA, ArtifactsGetParams as FC, ToolsInvokeParams as FD, SkillsUploadCommitParamsSchema as FE, ApprovalHistoryParams as FF, GitHubPublicationPublisherSchema as FI, PluginDeclaredSurfaceSchema as FL, ProgressCardStep as FM, BoardWidget as FN, SessionCatalogDescriptorSchema as FO, SkillsProposalHistoryStatusParamsSchema as FP, PluginsListParams as FR, UiAppearancePreferenceKey as FS, SkillsProposalActionParamsSchema as FT, SystemAgentSetupVerifyParamsSchema as F_, SessionObserverDigestSchema as Fa, WebLoginStartParamsSchema as Fb, SessionDiscussionStateSchema as Fc, NodePluginToolsUpdateParamsSchema as Fd, ChatToolTitlesParams as Ff, CronScratchSetResult as Fg, EnvironmentsPrepareParams as Fh, SessionVisibilitySetParams as Fi, SessionEntryArchiveReason as Fj, ProjectRecord as Fk, SecretsStoreListResult as Fl, ScopeUpgradeExpiredSchema as Fm, PortalListResult as Fn, SessionsDescribeParams as Fo, GatewaySuspendStatusParamsSchema as Fp, TaskSuggestionsCreateParamsSchema as Fr, SessionsPluginPatchParams as Fs, WorkerSessionsSendParamsSchema as Ft, WebPushNotificationPreferences as Fu, UpdateReportResultSchema as Fv, AgentsUpdateResultSchema as Fw, UsersLinkAuthProfileResultSchema as Fx, TalkCatalogParamsSchema as Fy, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as G, SessionsDeleteParamsSchema as GA, AgentsWorkspaceFile as GC, AgentParamsSchema as GD, ToolsCatalogParamsSchema as GE, ApprovalResolveResult as GF, SessionGitHubPublicationNeedsConfirmationSchema as GI, PluginDiscoveryLocalFacts as GL, BOARD_DATA_BINDING_ID_MAX_LENGTH as GM, BoardWidgetGeneratedIdentitySchema as GN, SessionCatalogShareRoute as GO, WorkerInferenceCancelRequestFrameSchema as GP, PluginsSearchResult as GR, AuditListResultSchema as GS, SkillsProposalEvaluateResultSchema as GT, SystemChangeSourceSchema as G_, SessionsAbortParamsSchema as Ga, USER_PREFS_VALUE_BYTES as Gb, SessionMoveTarget as Gc, NodeSkillDescriptorSchema as Gd, HumanMention as Gf, CronJobSchema as Gg, RequiredNodeCommandState as Gh, SessionsViewerPresenceSetParams as Gi, SessionToolOverridesSchema as Gj, ProjectsListResult as Gk, QuestionGetParamsSchema as Gl, ExecApprovalGetParams as Gm, PluginApprovalResolveParams as Gn, SessionsFilesListParams as Go, FsDirEntrySchema as Gp, TaskSuggestionsListResultSchema as Gr, SessionsRewindParams as Gs, WorkerTranscriptCommitErrorShapeSchema as Gt, WebPushUnsubscribeParams as Gu, COMMAND_ARGS_MAX_ITEMS as Gv, GitHubSelectedIdentitySchema as Gw, UsersListModelAccountsParamsSchema as Gx, TalkClientMutationResultSchema as Gy, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH as H, PreservedSessionWorktree as HA, ArtifactsListResultSchema as HC, AgentIdentityParamsSchema as HD, ToolCatalogProfile as HE, ApprovalPresentationSchema as HF, SessionGitHubOptionsResultSchema as HI, PluginDiscoveryDetailSchema as HL, CanvasDocumentViewResultSchema as HM, BoardWidgetDeclared as HN, SessionCatalogSchema as HO, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as HP, PluginsRefreshResultSchema as HR, AuditListParams as HS, SkillsProposalEvaluateParams as HT, SystemChangeKind as H_, SessionWorktreeInfo as Ha, PersonalGitHubStatusSchema as Hb, SessionMovePlacementState as Hc, NodeRenameParams as Hd, LogsTailResultSchema as Hf, CronDeliveryPreviewSchema as Hg, EnvironmentsStatusResultSchema as Hh, SessionVisibility as Hi, SessionRowSchema as Hj, ProjectsAddResultSchema as Hk, QuestionAnswers as Hl, ScopeUpgradeResultSchema as Hm, PortalSummarySchema as Hn, SessionsFilesGetParamsSchema as Ho, GatewaySuspension as Hp, TaskSuggestionsListParams as Hr, SessionsRecoverResult as Hs, WorkerTranscriptCommitErrorReason as Ht, WebPushSubscribeParamsSchema as Hu, UpdateStatusResult as Hv, GitHubIdentityScopeSchema as Hw, UsersListAuthLinksResult as Hx, TalkClientCreateResult as Hy, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as I, SessionsGoalClearParams as IA, ArtifactsGetParamsSchema as IC, ToolsInvokeParamsSchema as ID, SkillsWorkshopReadParamsSchema as IE, ApprovalHistoryParamsSchema as IF, GitHubPublicationSelection as II, PluginDeclaredSurfaceWideningSchema as IL, ProgressCardStepSchema as IM, BoardWidgetAppViewParams as IN, SessionCatalogHost as IO, validateSkillsProposalHistoryScanParams as IP, PluginsListParamsSchema as IR, normalizeUiAppearancePreference as IS, SkillsProposalApplyResult as IT, SystemAgentSetupVerifyResult as I_, SessionObserverHealth as Ia, WebLoginWaitParams as Ib, SessionMoveDeviceTargetSchema as Ic, NodePresenceActivityPayload as Id, ChatToolTitlesParamsSchema as If, CronStatusParams as Ig, EnvironmentsPrepareParamsSchema as Ih, SessionVisibilitySetParamsSchema as Ii, SessionEntryArchiveReasonSchema as Ij, ProjectRecordSchema as Ik, SecretsStoreListResultSchema as Il, ScopeUpgradeRegistration as Im, PortalListResultSchema as In, SessionsDescribeParamsSchema as Io, GatewaySuspendStatusReadyResultSchema as Ip, TaskSuggestionsCreateResult as Ir, SessionsPluginPatchParamsSchema as Is, WorkerSessionsSendResponseFrame as It, WebPushNotificationPreferencesSchema as Iu, UpdateRunParams as Iv, AuthProbeStatus as Iw, UsersLinkEmailParams as Ix, TalkCatalogResult as Iy, WorkerAdmissionHandshake as J, WORKTREE_PRESERVATION_REASONS as JA, AgentsWorkspaceGetParamsSchema as JC, ConversationListItem as JD, ToolsEffectiveEntry as JE, ApprovalScopeSchema as JF, SessionGitHubPublicationPublishing as JI, PluginHookGrantSchema as JL, BoardActionParamsSchema as JM, BoardWidgetHeightModeSchema as JN, SessionCatalogTranscriptItemSchema as JO, WorkerInferenceCancelResult as JP, PluginsSessionActionParams as JR, AuditRunIdentityUnknownV1Schema as JS, SkillsProposalEventsListResult as JT, SystemChangesListResult as J_, SessionsAssignOwnerResult as Ja, UserProfile as Jb, SessionPlacementDiskSpace as Jc, NODE_PRESENCE_ALIVE_REASONS as Jd, MAX_HUMAN_MENTIONS as Jf, CronPacingSchema as Jg, RuntimeTargetIssueSchema as Jh, SessionsViewerPresenceSetResultSchema as Ji, TRANSCRIPTS_LEGACY_MAX_UTTERANCES as Jj, ProjectsRegisterParamsSchema as Jk, QuestionListParams as Jl, ExecApprovalGrantsListParamsSchema as Jm, TerminalAckResultSchema as Jn, SessionsFilesListResultSchema as Jo, FsListDirResult as Jp, validateSystemEventParams as Jr, SessionsRewindResultSchema as Js, WorkerTranscriptCommitRequestFrame as Jt, WebPushVapidPublicKeyParamsSchema as Ju, COMMAND_ARG_NAME_MAX_LENGTH as Jv, ModelChoice as Jw, UsersListParams as Jx, TalkClientToolCallParams as Jy, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as K, SessionsDeleteResult as KA, AgentsWorkspaceFileSchema as KC, AgentWaitParams as KD, ToolsCatalogResult as KE, ApprovalResolveResultSchema as KF, SessionGitHubPublicationPublished as KI, PluginDiscoveryLocalFactsSchema as KL, BOARD_WIDGET_TOOL_MAX_LENGTH as KM, BoardWidgetGrantParams as KN, SessionCatalogShareRouteSchema as KO, WorkerInferenceCancelResponseFrame as KP, PluginsSearchResultSchema as KR, AuditRunIdentityAmbiguousV1Schema as KS, SkillsProposalEventsListParams as KT, SystemChangesListParams as K_, SessionsAssignOwnerParams as Ka, UserModelAccount as Kb, SessionMoveTargetSchema as Kc, NodeSkillsUpdateParams as Kd, HumanMentionSchema as Kf, CronJobStateSchema as Kg, RequiredNodeCommandStateSchema as Kh, SessionsViewerPresenceSetParamsSchema as Ki, TRANSCRIPTS_EXPORT_MAX_BYTES as Kj, ProjectsListResultSchema as Kk, QuestionGetResult as Kl, ExecApprovalGetParamsSchema as Km, PluginApprovalResolveParamsSchema as Kn, SessionsFilesListParamsSchema as Ko, FsListDirParams as Kp, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as Kr, SessionsRewindParamsSchema as Ks, WorkerTranscriptCommitParams as Kt, WebPushUnsubscribeParamsSchema as Ku, COMMAND_ARG_CHOICES_MAX_ITEMS as Kv, ModelCatalogProviderOutcome as Kw, UsersListModelAccountsResult as Kx, TalkClientSteerParams as Ky, WORKER_PROTOCOL_MAX_METHOD_LENGTH as L, SessionsGoalClearParamsSchema as LA, ArtifactsGetResult as LC, ToolsInvokeResult as LD, SkillsWorkshopReadResultSchema as LE, ApprovalHistoryResult as LF, GitHubPublicationSelectionSchema as LI, PluginDiscoveryCatalogFacts as LL, ProgressCardStepStatus as LM, BoardWidgetAppViewParamsSchema as LN, SessionCatalogHostSchema as LO, validateSkillsProposalHistoryStatusParams as LP, PluginsListResult as LR, GATEWAY_OWNER_PROFILE_ID as LS, SkillsProposalApplyResultSchema as LT, SystemAgentSetupVerifyResultSchema as L_, SessionObserverHealthSchema as La, WebLoginWaitParamsSchema as Lb, SessionMoveExpectedSource as Lc, NodePresenceActivityPayloadSchema as Ld, ChatToolTitlesResult as Lf, CronUpdateParams as Lg, EnvironmentsPrepareResult as Lh, SessionVisibilitySetResult as Li, SessionOwner as Lj, ProjectSummary as Lk, SecretsStoreMutationResult as Ll, ScopeUpgradeRegistrationSchema as Lm, PortalOpenParams as Ln, SessionsDiffParams as Lo, GatewaySuspendStatusResult as Lp, TaskSuggestionsCreateResultSchema as Lr, SessionsPluginPatchResult as Ls, WorkerSessionsSendResponseFrameSchema as Lt, WebPushPreferencesGetParams as Lu, UpdateRunParamsSchema as Lv, AuthProbeStatusSchema as Lw, UsersLinkEmailParamsSchema as Lx, TalkCatalogResultSchema as Ly, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as M, SessionsCreateParamsSchema as MA, ArtifactsDownloadParamsSchema as MC, ToolsGitHubStatusResult as MD, SkillsUploadChunkParams as ME, ApprovalGetParamsSchema as MF, formatValidationErrors as MI, PluginControlUiModule as ML, ProgressCardPutResult as MM, BoardUpdateParams as MN, SessionCatalogCapabilities as MO, SkillsProposalHistoryScanResult as MP, PluginsInstallParamsSchema as MR, isGitCoauthorCreditEnabled as MS, SkillsInstallParams as MT, SystemAgentSetupDetectResult as M_, SessionGroupDefaultsSchema as Ma, TtsSpeakResult as Mb, SessionDiscussionOpenResult as Mc, NodePluginToolDescriptor as Md, ChatStartupParamsSchema as Mf, CronScratchGetParams as Mg, EnvironmentsListParamsSchema as Mh, SessionSharingEvidenceEventSchema as Mi, SessionPersonSchema as Mj, ProjectRecentProjectSchema as Mk, SecretsStoreDeleteParams as Ml, DeviceTokenRotateResult as Mm, PortalCloseResultSchema as Mn, SessionsCreateParams as Mo, GatewaySuspendResumeResultSchema as Mp, TaskSuggestionsAcceptResult as Mr, SessionsObserverVisibilityParamsSchema as Ms, WorkerSessionToolResult as Mt, WebPushDevicePreferencesSchema as Mu, UpdateReportParams as Mv, AgentsUpdateParams as Mw, UsersLinkAuthProfileParams as Mx, TalkAgentControlResult as My, WORKER_PORTAL_PROTOCOL_FEATURE as N, SessionGoal as NA, ArtifactsDownloadResult as NC, ToolsGitHubStatusResultSchema as ND, SkillsUploadChunkParamsSchema as NE, ApprovalGetResult as NF, GitHubPublicationBodySchema as NI, PluginControlUiModuleSchema as NL, ProgressCardPutResultSchema as NM, BoardUpdateParamsSchema as NN, SessionCatalogCapabilitiesSchema as NO, SkillsProposalHistoryScanResultSchema as NP, PluginsInstallResult as NR, users_d_exports as NS, SkillsInstallParamsSchema as NT, SystemAgentSetupDetectResultSchema as N_, SessionGroupSchema as Na, TtsSpeakResultSchema as Nb, SessionDiscussionOpenResultSchema as Nc, NodePluginToolDescriptorSchema as Nd, ChatStatusEvent as Nf, CronScratchGetResult as Ng, EnvironmentsListResult as Nh, SessionSharingIdentity as Ni, SessionCreatedActor as Nj, ProjectRecentRepositorySchema as Nk, SecretsStoreDeleteParamsSchema as Nl, DeviceTokenRotateResultSchema as Nm, PortalListParams as Nn, SessionsCreateResult as No, GatewaySuspendStatusDrainingResultSchema as Np, TaskSuggestionsAcceptResultSchema as Nr, SessionsObserverVisibilityResult as Ns, WorkerSessionToolResultSchema as Nt, WebPushNotificationCategory as Nu, UpdateReportParamsSchema as Nv, AgentsUpdateParamsSchema as Nw, UsersLinkAuthProfileParamsSchema as Nx, TalkAgentControlResultSchema as Ny, WORKER_BUNDLE_PREWARM_VERSION as O, TasksRecoveryResult as OA, findAuditActivityFilterConflict as OC, ToolsGitHubManagedConfigureParams as OD, SkillsUpdateParams as OE, ApprovalDecisionSchema as OF, TerminalSessionApprovalEventSchema as OI, PluginControlUiDescriptor as OL, ProgressCardGetResult as OM, BoardTabSchema as ON, SecretInputSchema as OO, UiSidebarCommandSchema as OP, PluginsInspectParamsSchema as OR, UsersUnlinkAuthProfileParams as OS, SkillsDetailParams as OT, SystemAgentSetupAuthStartResult as O_, SessionFileRelevance as Oa, TalkSpeakResult as Ob, SessionDiscussionInfoResultSchema as Oc, NodePendingEnqueueParams as Od, ChatSendIntent as Of, CronRemoveParams as Og, EnvironmentsDestroyParamsSchema as Oh, SessionSharingActionSchema as Oi, SessionParticipantIdentity as Oj, ProjectCheckout as Ok, SecretsResolveParams as Ol, DeviceTokenRevokeParams as Om, PortalChangedEventSchema as On, SessionsCompanionStateParams as Oo, GatewaySuspendPrepareResultSchema as Op, TaskSuggestionResolutionSchema as Or, SessionsMessagesSubscribeParamsSchema as Os, WorkerProtocolCloseReason as Ot, PushTestResultSchema as Ou, UpdateHoldParams as Ov, AgentsListParams as Ow, UsersGitHubDisconnectResultSchema as Ox, ChannelsStatusResult as Oy, WORKER_PROTOCOL_FEATURES as P, SessionGoalSchema as PA, ArtifactsDownloadResultSchema as PC, ToolsInvokeErrorSchema as PD, SkillsUploadCommitParams as PE, ApprovalGetResultSchema as PF, GitHubPublicationPublisher as PI, PluginDeclaredSurface as PL, ProgressCardSchema as PM, BoardViewTicketSchema as PN, SessionCatalogDescriptor as PO, SkillsProposalHistoryStatusParams as PP, PluginsInstallResultSchema as PR, UI_APPEARANCE_PREFERENCE_KEYS as PS, SkillsProposalActionParams as PT, SystemAgentSetupVerifyParams as P_, SessionObserverDigest as Pa, WebLoginStartParams as Pb, SessionDiscussionState as Pc, NodePluginToolsUpdateParams as Pd, ChatStatusEventSchema as Pf, CronScratchSetParams as Pg, EnvironmentsListResultSchema as Ph, SessionSharingIdentitySchema as Pi, SessionCreatedActorSchema as Pj, ProjectRecentSchema as Pk, SecretsStoreListParamsSchema as Pl, ScopeUpgradeApprovedSchema as Pm, PortalListParamsSchema as Pn, SessionsCreateResultSchema as Po, GatewaySuspendStatusParams as Pp, TaskSuggestionsCreateParams as Pr, SessionsObserverVisibilityResultSchema as Ps, WorkerSessionsSendParams as Pt, WebPushNotificationCategorySchema as Pu, UpdateReportResult as Pv, AgentsUpdateResult as Pw, UsersLinkAuthProfileResult as Px, TalkCatalogParams as Py, WorkerConnectParams as Q, SessionSuggestionAction as QA, AgentsWorkspaceListParamsSchema as QC, ConversationListResult as QD, ToolsEffectiveNotice as QE, ApprovalTerminalReasonSchema as QF, SessionGitHubPublicationResult as QI, PluginInstallTrustSchema as QL, BoardChangedEventSchema as QM, BoardWidgetMcpAppContentSchema as QN, SessionsCatalogArchiveResultSchema as QO, WorkerInferenceEventFrame as QP, PluginsSessionActionSuccessResultSchema as QR, AuditRunInspectParams as QS, SkillsProposalInspectResult as QT, UpdateRunRecord as Q_, SessionsBranchesListResult as Qa, UserProfileGitHubIdentity as Qb, SessionPlacementMove as Qc, ChatAttachmentSchema as Qd, MentionInboxItemSchema as Qf, CronRunsParamsSchema as Qg, WorkerDesktopLaunchParamsSchema as Qh, SessionsResolveParamsSchema as Qi, TRANSCRIPTS_PAGE_MAX as Qj, ProjectsRemoveParamsSchema as Qk, QuestionOption as Ql, ExecApprovalGrantsRevokeParamsSchema as Qm, TerminalAttachResultSchema as Qn, SessionsFilesRevealResultSchema as Qo, DesktopObserveParams as Qp, SystemInfoResultSchema as Qr, SessionsSearchParamsSchema as Qs, WorkerTranscriptCommitResult as Qt, NodeEventParamsSchema as Qu, COMMAND_LIST_MAX_ITEMS as Qv, ModelsAuthOrderSetParams as Qw, UsersPrefsChangedEvent as Qx, TalkClientTranscriptParams as Qy, WORKER_PROTOCOL_METHODS as R, SessionsGoalMutationResult as RA, ArtifactsGetResultSchema as RC, ToolsInvokeResultSchema as RD, ToolCatalogEntry as RE, ApprovalHistoryResultSchema as RF, GitHubPublicationTitleSchema as RI, PluginDiscoveryCatalogFactsSchema as RL, ProgressCardStepStatusSchema as RM, BoardWidgetAppViewResult as RN, SessionCatalogLocator as RO, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as RP, PluginsListResultSchema as RR, ChatAccountSelection as RS, SkillsProposalCreateParams as RT, SystemAgentWizardCancel as R_, SessionObserverPlanProgress as Ra, GIT_COAUTHOR_PREFERENCE_KEY as Rb, SessionMoveExpectedSourceSchema as Rc, NodePresenceAlivePayload as Rd, ChatToolTitlesResultSchema as Rf, CronAddJobResultSchema as Rg, EnvironmentsPrepareResultSchema as Rh, SessionVisibilitySetResultSchema as Ri, SessionOwnerSchema as Rj, ProjectSummarySchema as Rk, SecretsStoreMutationResultSchema as Rl, ScopeUpgradeRejectedSchema as Rm, PortalOpenParamsSchema as Rn, SessionsDiffParamsSchema as Ro, GatewaySuspendStatusResultSchema as Rp, TaskSuggestionsDismissParams as Rr, SessionsPluginPatchResultSchema as Rs, WorkerSessionsSpawnParams as Rt, WebPushPreferencesGetParamsSchema as Ru, UpdateScheduleState as Rv, GatewayAgentRuntime as Rw, UsersLinkEmailResult as Rx, TalkClientCloseParams as Ry, WorktreesRemoveParams as S, TasksListParams as SA, AuditActivityListResult as SC, ToolsGitHubAuthorizeStartResultSchema as SD, SkillsSkillCardParams as SE, ApprovalAllowDecisionSchema as SF, SessionApprovalReplaySchema as SI, PluginCatalogClawHubInstallSchema as SL, PROGRESS_CARD_MAX_UTF8_BYTES as SM, BoardSnapshot as SN, CHAT_SEND_SESSION_KEY_MAX_LENGTH as SO, UiCommandResult as SP, PluginsControlUiReloadParams as SR, UsersSetDisplayNameResult as SS, SkillsCuratorActionResult as ST, SystemAgentSetupActivateStartParams as S_, SessionFileEntry as Sa, TalkSessionSteerParams as Sb, SessionsRecoverParamsSchema as Sc, NodePendingAckParams as Sd, ChatMetadataParams as Sf, CronAddResult as Sg, EnvironmentSummarySchema as Sh, SessionPublicShareSchema as Si, SessionTypingParamsSchema as Sj, MigrationsMemoryApplyResult as Sk, SecretStoreEntry as Sl, DevicePairSetupDeliveryUncertainEvent as Sm, WizardStatusParamsSchema as Sn, SessionsCompanionAskResult as So, GatewaySuspendPrepareBusyResultSchema as Sp, TerminalUploadResult as Sr, SessionsGroupsRenameParamsSchema as Ss, WorkerLiveEventResultSchema as St, QuestionWaitAnswerParamsSchema as Su, ConfigSchemaResponse as Sv, AgentsFilesListResult as Sw, UsersGitHubAuthorizePollResult as Sx, ChannelsLogoutParams as Sy, WorktreesRemoveResultSchema as T, TasksListResultSchema as TA, AuditActivityOutboundMessageV1Schema as TC, ToolsGitHubConfigureParamsSchema as TD, SkillsSkillCardResultSchema as TE, ApprovalChannelReviewer as TF, SystemAgentApprovalPresentationSchema as TI, PluginCatalogInstallActionSchema as TL, ProgressCardChangedEventSchema as TM, BoardTabCreateOpSchema as TN, GatewayClientModeSchema as TO, UiFocusCommandSchema as TP, PluginsControlUiStatusParamsSchema as TR, UsersSetRoleParamsSchema as TS, SkillsCuratorStatusParamsSchema as TT, SystemAgentSetupActivateStartResultSchema as T_, SessionFileKindSchema as Ta, TalkSessionSubmitToolResultParamsSchema as Tb, SessionDiscussionInfoParams as Tc, NodePendingDrainParamsSchema as Td, ChatPendingInputsPageSchema as Tf, CronGetParams as Tg, EnvironmentsCreateResult as Th, SessionPublicShareSetResult as Ti, SESSION_EXPANDED_PARTICIPANT_LIMIT as Tj, PROJECTS_LIST_DEFAULT_LIMIT as Tk, SecretStoreSecretEntrySchema as Tl, DevicePairSetupStatusParamsSchema as Tm, WizardStep as Tn, SessionsCompanionResetParamsSchema as To, GatewaySuspendPrepareParamsSchema as Tp, TaskSuggestionEvent as Tr, SessionsGroupsUpdateResult as Ts, WorkerPortalParamsSchema as Tt, PushTestParams as Tu, ConfigSetParamsSchema as Tv, AgentsFilesSetParamsSchema as Tw, UsersGitHubAuthorizeStartResult as Tx, ChannelsStartParamsSchema as Ty, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as U, PreservedSessionWorktreeSchema as UA, AgentsWorkspaceEntry as UC, AgentIdentityResult as UD, ToolCatalogProfileSchema as UE, ApprovalResolveParams as UF, SessionGitHubPublicationFailed as UI, PluginDiscoveryEntry as UL, BOARD_CRON_JOB_ID_MAX_LENGTH as UM, BoardWidgetDeclaredSchema as UN, SessionCatalogSession as UO, WorkerInferenceCancelParams as UP, PluginsSearchParams as UR, AuditListParamsSchema as US, SkillsProposalEvaluateParamsSchema as UT, SystemChangeKindSchema as U_, SessionWorktreeInfoSchema as Ua, USER_PREFS_ENTRY_LIMIT as Ub, SessionMovePlacementStateSchema as Uc, NodeRenameParamsSchema as Ud, QueueMode as Uf, CronDeliverySchema as Ug, RequiredNodeCommand as Uh, SessionVisibilitySchema as Ui, SessionRunStatus as Uj, ProjectsListParams as Uk, QuestionAnswersSchema as Ul, ScopeUpgradeWait as Um, PluginApprovalRequestParams as Un, SessionsFilesGetResult as Uo, GatewaySuspensionSchema as Up, TaskSuggestionsListParamsSchema as Ur, SessionsResetParams as Us, WorkerTranscriptCommitErrorReasonSchema as Ut, WebPushTestParams as Uu, UpdateStatusResultSchema as Uv, GitHubIdentitySourceSchema as Uw, UsersListAuthLinksResultSchema as Ux, TalkClientCreateResultSchema as Uy, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE as V, SessionsGoalUpdateParamsSchema as VA, ArtifactsListResult as VC, AgentIdentityParams as VD, ToolCatalogGroupSchema as VE, ApprovalPresentation as VF, SessionGitHubOptionsParamsSchema as VI, PluginDiscoveryDetail as VL, CanvasDocumentViewResult as VM, BoardWidgetContentSchema as VN, SessionCatalogPullRequestSummarySchema as VO, WORKER_INFERENCE_PROTOCOL_FEATURE as VP, PluginsRefreshResult as VR, AuditEventSchema as VS, SkillsProposalDecisionParamsSchema as VT, SystemChangeEntrySchema as V_, SessionOperationEventSchema as Va, PersonalGitHubStatus as Vb, SessionMovePlacementSchema as Vc, NodePresenceAliveReasonSchema as Vd, LogsTailResult as Vf, CronDeclarativeAddResultSchema as Vg, EnvironmentsStatusResult as Vh, SessionSharingRoleSchema as Vi, SessionRow as Vj, ProjectsAddResult as Vk, Question as Vl, ScopeUpgradeResult as Vm, PortalSummary as Vn, SessionsFilesGetParams as Vo, GatewaySuspendTaskBlockerSchema as Vp, TaskSuggestionsDismissResultSchema as Vr, SessionsRecoverParams as Vs, WorkerSessionsSpawnResponseFrameSchema as Vt, WebPushSubscribeParams as Vu, UpdateStatusParamsSchema as Vv, GitHubIdentityFactsSchema as Vw, UsersListAuthLinksParamsSchema as Vx, TalkClientCreateParamsSchema as Vy, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as W, SessionsDeleteParams as WA, AgentsWorkspaceEntrySchema as WC, AgentIdentityResultSchema as WD, ToolsCatalogParams as WE, ApprovalResolveParamsSchema as WF, SessionGitHubPublicationFailedSchema as WI, PluginDiscoveryEntrySchema as WL, BOARD_CRON_TRIGGER_PREFIX as WM, BoardWidgetGeneratedIdentity as WN, SessionCatalogSessionSchema as WO, WorkerInferenceCancelRequestFrame as WP, PluginsSearchParamsSchema as WR, AuditListResult as WS, SkillsProposalEvaluateResult as WT, SystemChangeSource as W_, SessionsAbortParams as Wa, USER_PREFS_PROFILE_KEY_LIMIT as Wb, SessionMoveProfileTargetSchema as Wc, NodeSkillDescriptor as Wd, projectChatErrorDetail as Wf, CronGetParamsSchema as Wg, RequiredNodeCommandSchema as Wh, SESSION_VIEWER_PRESENCE_MAX_KEYS as Wi, SessionToolOverrides as Wj, ProjectsListParamsSchema as Wk, QuestionGetParams as Wl, ScopeUpgradeWaitSchema as Wm, PluginApprovalRequestParamsSchema as Wn, SessionsFilesGetResultSchema as Wo, FsDirEntry as Wp, TaskSuggestionsListResult as Wr, SessionsResetParamsSchema as Ws, WorkerTranscriptCommitErrorShape as Wt, WebPushTestParamsSchema as Wu, COMMAND_ALIAS_MAX_ITEMS as Wv, GitHubSelectedIdentity as Ww, UsersListModelAccountsParams as Wx, TalkClientMutationResult as Wy, WorkerAdmissionResponseFrame as X, WorktreePreservationReasonSchema as XA, AgentsWorkspaceGetResultSchema as XC, ConversationListParams as XD, ToolsEffectiveGroup as XE, ApprovalSnapshotSchema as XF, SessionGitHubPublicationRequested as XI, PluginInspectSourceSchema as XL, BoardCanvasDocumentSourceSchema as XM, BoardWidgetMaterializedContent as XN, SessionsCatalogArchiveParamsSchema as XO, WorkerInferenceErrorReason as XP, PluginsSessionActionResult as XR, AuditRunIdentityV1 as XS, SkillsProposalInspectParams as XT, UpdateRunChangedEvent as X_, SessionsBranchesListParams as Xa, UserProfileAuthLinkSchema as Xb, SessionPlacementMachine as Xc, ChatAbortParamsSchema as Xd, MENTION_INBOX_MAX_ITEMS as Xf, CronRunLogEntrySchema as Xg, WorkerDesktopAppIdSchema as Xh, SessionsResolveCandidateSchema as Xi, TRANSCRIPTS_LIST_MAX as Xj, ProjectsRegisterResultSchema as Xk, QuestionListResult as Xl, ExecApprovalGrantsListResultSchema as Xm, TerminalAttachParamsSchema as Xn, SessionsFilesRevealParamsSchema as Xo, DesktopLaunchParams as Xp, SystemInfoParamsSchema as Xr, SessionsSearchHitSchema as Xs, WorkerTranscriptCommitResponseFrame as Xt, NodeDescribeParamsSchema as Xu, COMMAND_CHOICE_VALUE_MAX_LENGTH as Xv, ModelsAuthLogoutParams as Xw, UsersListResult as Xx, TalkClientToolCallResult as Xy, WorkerAdmissionHandshakeSchema as Y, WorktreePreservationReason as YA, AgentsWorkspaceGetResult as YC, ConversationListItemSchema as YD, ToolsEffectiveEntrySchema as YE, ApprovalSnapshot as YF, SessionGitHubPublicationPublishingSchema as YI, PluginInspectSource as YL, BoardCanvasDocumentSource as YM, BoardWidgetHtmlContentSchema as YN, SessionsCatalogArchiveParams as YO, WorkerInferenceContext as YP, PluginsSessionActionParamsSchema as YR, AuditRunIdentityUnsupportedV1Schema as YS, SkillsProposalEventsListResultSchema as YT, SystemChangesListResultSchema as Y_, SessionsAssignOwnerResultSchema as Ya, UserProfileAuthLink as Yb, SessionPlacementDiskSpaceSchema as Yc, ChatAbortParams as Yd, MAX_MENTIONABLE_USERS as Yf, CronRemoveParamsSchema as Yg, WorkerDesktopAppId as Yh, SessionsResolveCandidate as Yi, TRANSCRIPTS_LEGACY_RESULT_MAX_BYTES as Yj, ProjectsRegisterResult as Yk, QuestionListParamsSchema as Yl, ExecApprovalGrantsListResult as Ym, TerminalAttachParams as Yn, SessionsFilesRevealParams as Yo, FsListDirResultSchema as Yp, SystemInfoParams as Yr, SessionsSearchHit as Ys, WorkerTranscriptCommitRequestFrameSchema as Yt, NodeDescribeParams as Yu, COMMAND_CHOICE_LABEL_MAX_LENGTH as Yv, ModelChoiceSchema as Yw, UsersListParamsSchema as Yx, TalkClientToolCallParamsSchema as Yy, WorkerAdmissionResponseFrameSchema as Z, SessionSuggestion as ZA, AgentsWorkspaceListParams as ZC, ConversationListParamsSchema as ZD, ToolsEffectiveGroupSchema as ZE, ApprovalTerminalReason as ZF, SessionGitHubPublicationRequestedSchema as ZI, PluginInstallTrust as ZL, BoardChangedEvent as ZM, BoardWidgetMaterializedPutParams as ZN, SessionsCatalogArchiveResult as ZO, WorkerInferenceErrorShape as ZP, PluginsSessionActionResultSchema as ZR, AuditRunIdentityV1Schema as ZS, SkillsProposalInspectParamsSchema as ZT, UpdateRunChangedEventSchema as Z_, SessionsBranchesListParamsSchema as Za, UserProfileAvatarMimeSchema as Zb, SessionPlacementMachineSchema as Zc, ChatAbortedEventSchema as Zd, MentionInboxItem as Zf, CronRunParamsSchema as Zg, WorkerDesktopLaunchParams as Zh, SessionsResolveParams as Zi, TRANSCRIPTS_PAGE_DEFAULT as Zj, ProjectsRemoveParams as Zk, QuestionListResultSchema as Zl, ExecApprovalGrantsRevokeParams as Zm, TerminalAttachResult as Zn, SessionsFilesRevealResult as Zo, DesktopLaunchParamsSchema as Zp, SystemInfoResult as Zr, SessionsSearchParams as Zs, WorkerTranscriptCommitResponseFrameSchema as Zt, NodeEventParams as Zu, COMMAND_DESCRIPTION_MAX_LENGTH as Zv, ModelsAuthLogoutParamsSchema as Zw, UsersListResultSchema as Zx, TalkClientToolCallResultSchema as Zy, WorktreesGcResultSchema as _, TasksGetResultSchema as _A, AuditActivityEventV1Schema as _C, ToolsGitHubAuthorizePollResultSchema as _D, SkillsSearchResultSchema as _E, validateWorkerInferenceTerminalFrame as _F, PluginApprovalSeverity as _I, WizardNotFoundErrorDetailsSchema as _L, TranscriptsStatusParamsSchema as _M, BoardPluginActionParamsSchema as _N, PollParamsSchema as _O, board_d_exports as _P, PluginsCatalogGetResultSchema as _R, UsersSetAvatarParamsSchema as _S, SkillsBinsParamsSchema as _T, SystemAgentChatResultSchema as __, SessionFileBrowserEntrySchema as _a, TalkSessionCreateParamsSchema as _b, SessionsListParamsSchema as _c, NodePairListParamsSchema as _d, ChatInputReceipts as _f, WorkerSlotSummarySchema as _g, ExecApprovalsSnapshot as _h, SessionMembersListParams as _i, SessionSuggestionsResolveResult as _j, MAX_MEMORY_MIGRATION_ITEMS as _k, SessionsReclaimResultPlacementSchema as _l, DevicePairSetupCodeParamsSchema as _m, WizardStartParams as _n, SessionsCompactionRestoreParamsSchema as _o, GatewaySuspendBlockerSchema as _p, TerminalSessionInfo as _r, SessionsGroupsMutationResult as _s, WorkerLiveEventRequestFrame as _t, QuestionSecretStoreBindingSchema as _u, ConfigSchemaLookupParamsSchema as _v, AgentsFilesGetParamsSchema as _w, UsersAuthConnectStatusResult as _x, ChannelsPairingListParams as _y, WorktreeRecordSchema as a, RemoteProject as aA, DecisionReceiptV1Schema as aC, ToolsGitHubAuthorizeCancelParams as aD, SkillsProposalRequestRevisionResultSchema as aE, WorkerInferenceStartParams as aF, ExpiredApprovalSnapshot as aI, session_github_publication_d_exports as aL, TranscriptsExportParamsSchema as aM, BoardDataReadParams as aN, ConversationTurnCancelParamsSchema as aO, BoardWidgetPresentationSchema as aP, PluginSearchResultEntrySchema as aR, UsersPrefsSetParamsSchema as aS, ModelsListResultSchema as aT, CronUpdateParamsSchema as a_, SessionCompactionCheckpointSchema as aa, TalkEventSchema as ab, SESSIONS_PATCH_MANY_MAX_TARGETS as ac, NodeInvokeParams as ad, ChatHistoryCursorResult as af, WorkerEnvironmentMetadata as ag, ExecApprovalStandingGrant as ah, SessionMember as ai, SessionSuggestionState as aj, SessionsCatalogListParams as ak, SessionsDispatchParams as al, DevicePairApproveParamsSchema as am, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as an, SessionsCleanupParamsSchema as ao, MentionsListParams as ap, TerminalExitEvent as ar, SessionsForkResult as as, WorkerHeartbeatRequestFrameSchema as at, QuestionRequestQuestionSchema as au, UpdateRunsGetResultSchema as av, AgentSummarySchema as aw, UsersAuthConnectCatalogParams as ax, CommandsListResultSchema as ay, PluginsUiDescriptorsResult as az, WorktreesListResult as b, TasksHistoryResult as bA, AuditActivityListParams as bC, ToolsGitHubAuthorizeStartParamsSchema as bD, SkillsSecurityVerdictsResult as bE, AllowedApprovalSnapshotSchema as bF, SessionApprovalEventSchema as bI, missingScopeErrorShape as bL, PROGRESS_CARD_MAX_STEPS as bM, BoardSetChatDockCommandSchema as bN, WakeParamsSchema as bO, UiCommandParams as bP, PluginsControlUiChangedEventSchema as bR, UsersSetDisplayNameParams as bS, SkillsCuratorActionParams as bT, SystemAgentSetupActivateResult as b_, SessionFileContentEncoding as ba, TalkSessionOkResult as bb, SessionsTitlePrepareResult as bc, NodePairRemoveParams as bd, ChatMessageGetResult as bf, CronAddJobResult as bg, EnvironmentStatusSchema as bh, SessionMembersListResultSchema as bi, SessionTypingEventSchema as bj, MigrationProtocolSchemas as bk, isCloudWorkerPlacementState as bl, DevicePairSetupCompletedEvent as bm, WizardStartResultSchema as bn, SessionsCompanionAskParams as bo, GatewaySuspendHandoffResult as bp, TerminalUploadParamsSchema as br, SessionsGroupsPutParamsSchema as bs, WorkerLiveEventResponseFrameSchema as bt, QuestionStatusSchema as bu, ConfigSchemaParams as bv, AgentsFilesListParams as bw, UsersGitHubAuthorizeCancelResultSchema as bx, ChannelsPairingListResultSchema as by, WorktreesBranchesParams as c, TaskSummary as cA, PrincipalRefV1 as cC, ToolsGitHubAuthorizeCancelResultSchema as cD, SkillsProposalUpdateParams as cE, WorkerInferenceStartResponseFrame as cF, MessageSendApprovalScopeSchema as cI, GitHubPublicationSelectionRejectedErrorDetailsSchema as cL, TranscriptsGetParams as cM, BoardEventParamsSchema as cN, ConversationTurnParams as cO, BoardWidgetPutParams as cP, PluginsCatalogBrowseResult as cR, UsersSelectModelAccountParams as cS, ModelsProbeResult as cT, SystemAgentChatHistoryResult as c_, SessionDiffCommit as ca, TalkSessionAppendAudioParams as cb, SessionsPatchManyResult as cc, NodeInvokeProgressParamsSchema as cd, ChatHistoryDeltaResultSchema as cf, WorkerEnvironmentStateSchema as cg, ExecApprovalsGetParamsSchema as ch, SessionMemberEvidence as ci, SessionSuggestionsAddParamsSchema as cj, SessionsCatalogListResultSchema as ck, SessionsDispatchResultSchema as cl, DevicePairRejectParams as cm, WorkerProtocolCloseReasonSchema as cn, SessionsCompactionBranchParams as co, MentionsListResultSchema as cp, TerminalInputParamsSchema as cr, SessionsGroupsDefaultsParamsSchema as cs, WorkerHeartbeatResult as ct, QuestionRequestedEvent as cu, UpdateRunsListResult as cv, AgentsCreateResult as cw, UsersAuthConnectCatalogResultSchema as cx, ChannelsPairingAccount as cy, PluginsUninstallParamsSchema as cz, WorktreesBranchesResultSchema as d, TasksCancelParamsSchema as dA, AUDIT_ACTIVITY_KINDS as dC, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema as dD, SkillsProposalsListParamsSchema as dE, WorkerInferenceTerminalFrame as dF, PendingApprovalSnapshotSchema as dI, OutboundDeliveryQueuedErrorDetailsSchema as dL, TranscriptsGetResultSchema as dM, BoardGetParamsSchema as dN, ConversationTurnReplySchema as dO, BoardWidgetPutResultSchema as dP, PluginsCatalogCategoriesParamsSchema as dR, UsersSelectModelAccountResultSchema as dS, ModelsProbeTargetResultSchema as dT, SystemAgentChatHistoryTurnSchema as d_, SessionDiffFileSchema as da, TalkSessionCancelOutputParamsSchema as db, SessionsPatchManyTargetSchema as dc, NodeInvokeResultParamsSchema as dd, ChatHistoryResetResult as df, WorkerMachineOption as dg, ExecApprovalsNodeSetParams as dh, SessionMemberMutationResultSchema as di, SessionSuggestionsListParams as dj, SessionsCatalogReadResult as dk, SessionsMoveResult as dl, DevicePairRemoveParamsSchema as dm, WizardCancelParams as dn, SessionsCompactionBranchResultSchema as do, UsersMentionableResult as dp, TerminalOpenParams as dr, SessionsGroupsDeleteParams as ds, WorkerLiveEventErrorDetails as dt, QuestionResolveParamsSchema as du, ConfigApplyParamsSchema as dv, AgentsDeleteParamsSchema as dw, UsersAuthConnectStartParams as dx, ChannelsPairingApproveResult as dy, GATEWAY_SERVER_CAPS as dz, ProjectsRemoveResultSchema as eA, AuditRunInspectResult as eC, ToolsEffectiveParams as eD, SkillsProposalRecordResult as eE, WorkerInferenceImageContentSchema as eF, CancelledApprovalSnapshotSchema as eI, SessionGitHubPublishParams as eL, TranscriptSessionSummary as eM, BoardCommand as eN, ConversationSendParams as eO, BoardWidgetMoveOpSchema as eP, PluginInstalledComponentsSchema as eR, UsersPrefsGetParams as eS, ModelsAuthStatusParams as eT, CronScratchGetResultSchema as e_, SessionsResolveResultSchema as ea, TalkConfigParams as eb, SessionsSearchResultSchema as ec, NodeEventResultSchema as ed, ChatDeltaEventSchema as ef, WorkerDesktopLaunchResultSchema as eg, ExecApprovalGrantsRevokeResultSchema as eh, PresenceEntrySchema as ei, SessionSuggestionEvent as ej, SessionsCatalogContinueParamsSchema as ek, SessionPlacementProtocolSchemas as el, DesktopObserveResult as em, WorkerTranscriptMessage as en, SessionsBranchesSwitchParams as eo, MentionableUserSchema as ep, TerminalCloseParamsSchema as er, SessionsFilesSetParamsSchema as es, WorkerConnectRequestFrameSchema as et, QuestionRecord as eu, UpdateRunResult as ev, AgentsWorkspaceListResultSchema as ew, UserProfileSchema as ex, CommandEntry as ey, PluginsSetEnabledParamsSchema as ez, WorktreesCreateParams as f, TasksCancelResult as fA, AUDIT_ACTIVITY_MESSAGE_KIND as fC, ToolsGitHubAuthorizeNetworkErrorResultSchema as fD, SkillsProposalsListResult as fE, WorkerInferenceTerminalOutcome as fF, PendingSessionApprovalEventSchema as fI, ProjectCloneErrorDetailsSchema as fL, TranscriptsListParams as fM, BoardLegacyEventParamsSchema as fN, ConversationTurnResult as fO, BoardWidgetRegisteredContentSchema as fP, PluginsCatalogCategoriesResult as fR, UsersSelfParams as fS, SkillProposalEvaluation as fT, SystemAgentChatParams as f_, SessionDiffFileStatus as fa, TalkSessionCancelOutputResult as fb, SessionsPatchMutation as fc, NodeListParams as fd, ChatHistoryResetResultSchema as ff, WorkerMachineOptionSchema as fg, ExecApprovalsNodeSetParamsSchema as fh, SessionMemberRemoveParams as fi, SessionSuggestionsListParamsSchema as fj, SessionsCatalogReadResultSchema as fk, SessionsMoveResultSchema as fl, DevicePairRenameParams as fm, WizardCancelParamsSchema as fn, SessionsCompactionListParams as fo, UsersMentionableResultSchema as fp, TerminalOpenParamsSchema as fr, SessionsGroupsDeleteParamsSchema as fs, WorkerLiveEventErrorDetailsSchema as ft, QuestionResolveResult as fu, ConfigGetParams as fv, AgentsDeleteResult as fw, UsersAuthConnectStartParamsSchema as fx, ChannelsPairingApproveResultSchema as fy, WorktreesGcResult as g, TasksGetResult as gA, AuditActivityEventV1 as gC, ToolsGitHubAuthorizePollResult as gD, SkillsSearchResult as gE, validateWorkerInferenceStartParams as gF, PluginApprovalPresentationSchema as gI, UserPrefsLimitExceededErrorDetailsSchema as gL, TranscriptsStatusParams as gM, BoardOpSchema as gN, PollParams as gO, BoardWidgetSchema as gP, PluginsCatalogGetResult as gR, UsersSetAvatarParams as gS, SkillsBinsParams as gT, SystemAgentChatResult as g_, SessionFileBrowserEntry as ga, TalkSessionCreateParams as gb, SessionsListParams as gc, NodePairListParams as gd, ChatInputConsumptionsSchema as gf, WorkerSlotSummary as gg, ExecApprovalsSetParamsSchema as gh, SessionMembersListEvidenceResultSchema as gi, SessionSuggestionsResolveParamsSchema as gj, SessionsCatalogStartTerminalResultSchema as gk, SessionsReclaimResultPlacement as gl, DevicePairSetupCodeParams as gm, WizardNextResultSchema as gn, SessionsCompactionRestoreParams as go, GatewaySuspendBlocker as gp, TerminalResizeParamsSchema as gr, SessionsGroupsListResultSchema as gs, WorkerLiveEventParamsSchema as gt, QuestionSchema as gu, ConfigSchemaLookupParams as gv, AgentsFilesGetParams as gw, UsersAuthConnectStatusParamsSchema as gx, ChannelsPairingDismissResultSchema as gy, WorktreesGcParamsSchema as h, TasksGetParamsSchema as hA, AuditActivityAgentRunV1Schema as hC, ToolsGitHubAuthorizePollParamsSchema as hD, SkillsSearchParamsSchema as hE, validateWorkerInferenceEventFrame as hF, PluginApprovalPresentation as hI, UnknownAgentIdErrorDetailsSchema as hL, TranscriptsListResultSchema as hM, BoardOp as hN, MessageActionParamsSchema as hO, BoardWidgetResizeOpSchema as hP, PluginsCatalogGetParamsSchema as hR, UsersSelfResultSchema as hS, SkillProposalLifecycleEventSchema as hT, SystemAgentChatQuestionSchema as h_, SessionDiffScopeSchema as ha, TalkSessionCloseParamsSchema as hb, SessionsPatchParamsSchema as hc, NodePairApproveParamsSchema as hd, ChatInputConsumptions as hf, WorkerOperatingSystemSchema as hg, ExecApprovalsSetParams as hh, SessionMembersListEvidenceResult as hi, SessionSuggestionsResolveParams as hj, SessionsCatalogStartTerminalResult as hk, SessionsReclaimResult as hl, DevicePairResolvedEventSchema as hm, WizardNextResult as hn, SessionsCompactionListResultSchema as ho, HooksStatusParamsSchema as hp, TerminalResizeParams as hr, SessionsGroupsListResult as hs, WorkerLiveEventParams as ht, QuestionResolvedEventSchema as hu, ConfigPatchParamsSchema as hv, AgentsFileEntrySchema as hw, UsersAuthConnectStatusParams as hx, ChannelsPairingDismissResult as hy, WorktreeRecord as i, ProjectsSearchRemoteResultSchema as iA, DecisionReceiptV1 as iC, ToolsGitHubAuthorizeAccessDeniedResultSchema as iD, SkillsProposalRequestRevisionResult as iE, WorkerInferenceOptionsSchema as iF, ExecApprovalPresentationSchema as iI, SessionGitHubStatusResultSchema as iL, TranscriptsExportParams as iM, BoardCronActionParamsSchema as iN, ConversationTurnCancelParams as iO, BoardWidgetPluginPropsSchema as iP, PluginSearchPackageSchema as iR, UsersPrefsSetParams as iS, ModelsListResult as iT, CronStatusParamsSchema as i_, SessionCompactionCheckpoint as ia, TalkEvent as ib, SessionsUsageParamsSchema as ic, NodeInvokeInputEventSchema as id, ChatFinalEventSchema as if, WorkerDesktopObserveResultSchema as ig, ExecApprovalResolveParamsSchema as ih, StateVersionSchema as ii, SessionSuggestionSchema as ij, SessionsCatalogHostEventSchema as ik, SessionPlacementStateSchema as il, DevicePairApproveParams as im, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as in, SessionsCleanupParams as io, MentionsDismissParamsSchema as ip, TerminalEventSchema as ir, SessionsForkParamsSchema as is, WorkerHeartbeatRequestFrame as it, QuestionRequestQuestion as iu, UpdateRunsGetResult as iv, AgentSummary as iw, UsersAuthConnectCancelParamsSchema as ix, CommandsListResult as iy, PluginsUiDescriptorsParamsSchema as iz, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as j, SESSION_CREATE_RETRY_WINDOW_MS as jA, ArtifactsDownloadParams as jC, ToolsGitHubStatusParamsSchema as jD, SkillsUploadBeginParamsSchema as jE, ApprovalGetParams as jF, ValidationError as jI, PluginControlUiDiagnosticSchema as jL, ProgressCardPutParamsSchema as jM, BoardTicketEventParamsSchema as jN, SessionCatalog as jO, SkillsProposalHistoryScanParamsSchema as jP, PluginsInstallParams as jR, UsersUnlinkAuthProfileResultSchema as jS, SkillsDetailResultSchema as jT, SystemAgentSetupDetectParamsSchema as j_, SessionGroupDefaults as ja, TtsSpeakParamsSchema as jb, SessionDiscussionOpenParamsSchema as jc, NodePendingEnqueueResultSchema as jd, ChatStartupParams as jf, CronRunsParams as jg, EnvironmentsListParams as jh, SessionSharingEvidenceEvent as ji, SessionPerson as jj, ProjectRecentFolderSchema as jk, SecretsResolveResultSchema as jl, DeviceTokenRotateParamsSchema as jm, PortalCloseResult as jn, SessionsCompanionStateResultSchema as jo, GatewaySuspendResumeResult as jp, TaskSuggestionsAcceptParamsSchema as jr, SessionsObserverVisibilityParams as js, WorkerSessionToolResponseFrameSchema as jt, WebPushDevicePreferences as ju, UpdateHoldResultSchema as jv, AgentsListResultSchema as jw, UsersGitHubStatusResultSchema as jx, ChannelsStopParamsSchema as jy, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE as k, TasksRecoveryResultSchema as kA, ArtifactSummary as kC, ToolsGitHubManagedConfigureParamsSchema as kD, SkillsUpdateParamsSchema as kE, ApprovalDeniedReasonSchema as kF, isWellFormedApprovalId as kI, PluginControlUiDescriptorSchema as kL, ProgressCardGetResultSchema as kM, BoardTabUpdateOpSchema as kN, SecretRefSchema as kO, UiSplitCommandSchema as kP, PluginsInspectResult as kR, UsersUnlinkAuthProfileParamsSchema as kS, SkillsDetailParamsSchema as kT, SystemAgentSetupAuthStartResultSchema as k_, SessionFileRelevanceSchema as ka, TalkSpeakResultSchema as kb, SessionDiscussionInfoSchema as kc, NodePendingEnqueueParamsSchema as kd, ChatSendIntentSchema as kf, CronRunLogEntry as kg, EnvironmentsDestroyResult as kh, SessionSharingEvent as ki, SessionParticipantIdentitySchema as kj, ProjectCheckoutSchema as kk, SecretsResolveParamsSchema as kl, DeviceTokenRevokeParamsSchema as km, PortalCloseParams as kn, SessionsCompanionStateParamsSchema as ko, GatewaySuspendResumeParams as kp, TaskSuggestionSchema as kr, SessionsMessagesUnsubscribeParams as ks, WorkerProviderReplayState as kt, WebPushDetailLevel as ku, UpdateHoldParamsSchema as kv, AgentsListParamsSchema as kw, UsersGitHubStatusParamsSchema as kx, ChannelsStatusResultSchema as ky, WorktreesBranchesParamsSchema as l, TaskSummarySchema as lA, PrincipalRefV1Schema as lC, ToolsGitHubAuthorizeExpiredResultSchema as lD, SkillsProposalUpdateParamsSchema as lE, WorkerInferenceStartResponseFrameSchema as lF, PaymentApprovalScopeSchema as lI, McpAppViewExpiredErrorDetailsSchema as lL, TranscriptsGetParamsSchema as lM, BoardFocusTabCommandSchema as lN, ConversationTurnParamsSchema as lO, BoardWidgetPutParamsSchema as lP, PluginsCatalogBrowseResultSchema as lR, UsersSelectModelAccountParamsSchema as lS, ModelsProbeResultSchema as lT, SystemAgentChatHistoryResultSchema as l_, SessionDiffCommitSchema as la, TalkSessionAppendAudioParamsSchema as lb, SessionsPatchManyResultSchema as lc, NodeInvokeRequestEventSchema as ld, ChatHistoryParams as lf, WorkerExecutionMode as lg, ExecApprovalsNodeGetParams as lh, SessionMemberEvidenceSchema as li, SessionSuggestionsAddResult as lj, SessionsCatalogReadParams as lk, SessionsMoveParams as ll, DevicePairRejectParamsSchema as lm, WizardAnswer as ln, SessionsCompactionBranchParamsSchema as lo, UsersMentionableParams as lp, TerminalListResult as lr, SessionsGroupsDefaultsResult as ls, WorkerHelloOk as lt, QuestionRequestedEventSchema as lu, UpdateRunsListResultSchema as lv, AgentsCreateResultSchema as lw, UsersAuthConnectResult as lx, ChannelsPairingApproveParams as ly, PluginsUninstallResult as lz, WorktreesGcParams as m, TasksGetParams as mA, AuditActivityAgentRunV1 as mC, ToolsGitHubAuthorizePollParams as mD, SkillsSearchParams as mE, validateWorkerInferenceCancelParams as mF, PluginApprovalExternalResolutionSchema as mI, SkillProposalRevisionChangedErrorDetailsSchema as mL, TranscriptsListResult as mM, BoardMcpAppDescriptorSchema as mN, MessageActionParams as mO, BoardWidgetRemoveOpSchema as mP, PluginsCatalogGetParams as mR, UsersSelfResult as mS, SkillProposalLifecycleEvent as mT, SystemAgentChatQuestion as m_, SessionDiffScope as ma, TalkSessionCloseParams as mb, SessionsPatchParams as mc, NodePairApproveParams as md, ChatInjectParamsSchema as mf, WorkerOperatingSystem as mg, ExecApprovalsNodeSnapshotSchema as mh, SessionMemberSchema as mi, SessionSuggestionsListResultSchema as mj, SessionsCatalogStartTerminalParamsSchema as mk, SessionsReclaimParamsSchema as ml, DevicePairRequestedEventSchema as mm, WizardNextParamsSchema as mn, SessionsCompactionListResult as mo, HooksStatusParams as mp, TerminalOpenResultSchema as mr, SessionsGroupsListParamsSchema as ms, WorkerLiveEventErrorShapeSchema as mt, QuestionResolvedEvent as mu, ConfigPatchParams as mv, AgentsFileEntry as mw, UsersAuthConnectStartResultSchema as mx, ChannelsPairingDismissParamsSchema as my, WorktreeBranch as n, ProjectsSearchRemoteParamsSchema as nA, DecisionReceiptDisplayV1 as nC, ToolsEffectiveResult as nD, SkillsProposalRequestRevisionParams as nE, WorkerInferenceModelRefSchema as nF, DeniedApprovalSnapshotSchema as nI, SessionGitHubStatusParamsSchema as nL, TranscriptUtterance as nM, BoardCommandEventSchema as nN, ConversationSendResult as nO, BoardWidgetPluginContentSchema as nP, PluginOperatorGrants as nR, UsersPrefsGetResult as nS, ModelsListParams as nT, CronScratchSetParamsSchema as n_, SessionBranch as na, TalkConfigResult as nb, SessionsSendParamsSchema as nc, NodeHostStatsPayloadSchema as nd, ChatEvent as nf, WorkerDesktopObserveParamsSchema as ng, ExecApprovalRequestParamsSchema as nh, SnapshotSchema as ni, SessionSuggestionResolution as nj, SessionsCatalogContinueResultSchema as nk, SessionPlacementRunnerSchema as nl, DesktopSource as nm, WorkerTranscriptUserMessageSchema as nn, SessionsBranchesSwitchResult as no, MentionsChangedEventSchema as np, TerminalDataEventSchema as nr, SessionsFilesSetResultSchema as ns, WorkerHeartbeatParams as nt, QuestionRequestParams as nu, UpdateRunsGetParams as nv, AgentKindSchema as nw, UsersAuthConnectAnswerParamsSchema as nx, CommandsListParams as ny, PluginsSetEnabledResultSchema as nz, WorktreeRepositoryStatus as o, RemoteProjectSchema as oA, ExecutionIdentityContextV1 as oC, ToolsGitHubAuthorizeCancelParamsSchema as oD, SkillsProposalReviseParams as oE, WorkerInferenceStartRequestFrame as oF, ExpiredApprovalSnapshotSchema as oI, CronJobNotFoundErrorDetailsSchema as oL, TranscriptsExportResult as oM, BoardDataReadParamsSchema as oN, ConversationTurnCancelResult as oO, BoardWidgetPutContent as oP, PluginsCatalogBrowseParams as oR, UsersPrefsSetResult as oS, ModelsProbeParams as oT, SystemAgentChatHistoryParams as o_, SessionCompanionExchange as oa, TalkModeParams as ob, SessionsPatchManyParams as oc, NodeInvokeParamsSchema as od, ChatHistoryCursorResultSchema as of, WorkerEnvironmentMetadataSchema as og, ExecApprovalStandingGrantSchema as oh, SessionMemberAddParams as oi, SessionSuggestionStateSchema as oj, SessionsCatalogListParamsSchema as ok, SessionsDispatchParamsSchema as ol, DevicePairListParams as om, WORKER_PUBLIC_INGRESS_PATH as on, SessionsCompactParams as oo, MentionsListParamsSchema as op, TerminalExitEventSchema as or, SessionsForkResultSchema as os, WorkerHeartbeatResponseFrame as ot, QuestionRequestResult as ou, UpdateRunsListParams as ov, AgentsCreateParams as ow, UsersAuthConnectCatalogParamsSchema as ox, TalkSessionAcknowledgeMarkParams as oy, PluginsUiDescriptorsResultSchema as oz, WorktreesCreateParamsSchema as p, TasksCancelResultSchema as pA, AUDIT_ACTIVITY_STATUSES as pC, ToolsGitHubAuthorizePendingResultSchema as pD, SkillsProposalsListResultSchema as pE, WorkerInferenceTerminalParams as pF, PluginApprovalExternalResolution as pI, SetupAdmissionBusyErrorDetailsSchema as pL, TranscriptsListParamsSchema as pM, BoardMcpAppDescriptor as pN, ConversationTurnResultSchema as pO, BoardWidgetRegisteredMaterializedContent as pP, PluginsCatalogCategoriesResultSchema as pR, UsersSelfParamsSchema as pS, SkillProposalEvaluationSchema as pT, SystemAgentChatParamsSchema as p_, SessionDiffFileStatusSchema as pa, TalkSessionCancelOutputResultSchema as pb, SessionsPatchMutationSchema as pc, NodeListParamsSchema as pd, ChatInjectParams as pf, WorkerMachineOptionsSchema as pg, ExecApprovalsNodeSnapshot as ph, SessionMemberRemoveParamsSchema as pi, SessionSuggestionsListResult as pj, SessionsCatalogStartTerminalParams as pk, SessionsReclaimParams as pl, DevicePairRenameParamsSchema as pm, WizardNextParams as pn, SessionsCompactionListParamsSchema as po, human_mentions_d_exports as pp, TerminalOpenResult as pr, SessionsGroupsListParams as ps, WorkerLiveEventErrorShape as pt, QuestionResolveResultSchema as pu, ConfigGetParamsSchema as pv, AgentsDeleteResultSchema as pw, UsersAuthConnectStartResult as px, ChannelsPairingDismissParams as py, WorkerAdmissionFailureReason as q, SessionsDeleteResultSchema as qA, AgentsWorkspaceGetParams as qC, AgentWaitParamsSchema as qD, ToolsCatalogResultSchema as qE, ApprovalScope as qF, SessionGitHubPublicationPublishedSchema as qI, PluginHookGrant as qL, BoardActionParams as qM, BoardWidgetGrantParamsSchema as qN, SessionCatalogTranscriptItem as qO, WorkerInferenceCancelResponseFrameSchema as qP, PluginsSessionActionFailureResultSchema as qR, AuditRunIdentityPresentV1Schema as qS, SkillsProposalEventsListParamsSchema as qT, SystemChangesListParamsSchema as q_, SessionsAssignOwnerParamsSchema as qa, UserModelAccountSchema as qb, SessionPlacement as qc, NodeSkillsUpdateParamsSchema as qd, HumanMentionsSchema as qf, CronListParamsSchema as qg, RuntimeTargetIssue as qh, SessionsViewerPresenceSetResult as qi, TRANSCRIPTS_LEGACY_MAX_TEXT_LENGTH as qj, ProjectsRegisterParams as qk, QuestionGetResultSchema as ql, ExecApprovalGrantsListParams as qm, TerminalAckResult as qn, SessionsFilesListResult as qo, FsListDirParamsSchema as qp, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as qr, SessionsRewindResult as qs, WorkerTranscriptCommitParamsSchema as qt, WebPushVapidPublicKeyParams as qu, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as qv, ModelCatalogProviderOutcomeSchema as qw, UsersListModelAccountsResultSchema as qx, TalkClientSteerParamsSchema as qy, WorktreeBranchSchema as r, ProjectsSearchRemoteResult as rA, DecisionReceiptDisplayV1Schema as rC, ToolsEffectiveResultSchema as rD, SkillsProposalRequestRevisionParamsSchema as rE, WorkerInferenceOptions as rF, ExecApprovalPresentation as rI, SessionGitHubStatusResult as rL, TranscriptUtteranceSchema as rM, BoardCommandSchema as rN, ConversationSendResultSchema as rO, BoardWidgetPluginKindSchema as rP, PluginOperatorGrantsSchema as rR, UsersPrefsGetResultSchema as rS, ModelsListParamsSchema as rT, CronScratchSetResultSchema as r_, SessionBranchSchema as ra, TalkConfigResultSchema as rb, SessionsUsageParams as rc, NodeInvokeInputEvent as rd, ChatEventSchema as rf, WorkerDesktopObserveResult as rg, ExecApprovalResolveParams as rh, StateVersion as ri, SessionSuggestionResolutionSchema as rj, SessionsCatalogHostEvent as rk, SessionPlacementSchema as rl, DesktopSourceSchema as rm, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as rn, SessionsBranchesSwitchResultSchema as ro, MentionsDismissParams as rp, TerminalEvent as rr, SessionsForkParams as rs, WorkerHeartbeatParamsSchema as rt, QuestionRequestParamsSchema as ru, UpdateRunsGetParamsSchema as rv, AgentOwnershipSchema as rw, UsersAuthConnectCancelParams as rx, CommandsListParamsSchema as ry, PluginsUiDescriptorsParams as rz, WorktreeRepositoryStatusSchema as s, TASKS_LIST_CURSOR_MAX_LENGTH as sA, ExecutionIdentityContextV1Schema as sC, ToolsGitHubAuthorizeCancelResult as sD, SkillsProposalReviseParamsSchema as sE, WorkerInferenceStartRequestFrameSchema as sF, ExternalPostApprovalScopeSchema as sI, GatewayErrorDetailsSchema as sL, TranscriptsExportResultSchema as sM, BoardEventParams as sN, ConversationTurnCancelResultSchema as sO, BoardWidgetPutContentSchema as sP, PluginsCatalogBrowseParamsSchema as sR, UsersPrefsSetResultSchema as sS, ModelsProbeParamsSchema as sT, SystemAgentChatHistoryParamsSchema as s_, SessionCompanionExchangeSchema as sa, TalkModeParamsSchema as sb, SessionsPatchManyParamsSchema as sc, NodeInvokeProgressParams as sd, ChatHistoryDeltaResult as sf, WorkerEnvironmentState as sg, ExecApprovalsGetParams as sh, SessionMemberAddParamsSchema as si, SessionSuggestionsAddParams as sj, SessionsCatalogListResult as sk, SessionsDispatchResult as sl, DevicePairListParamsSchema as sm, WorkerAdmissionFailureReasonSchema as sn, SessionsCompactParamsSchema as so, MentionsListResult as sp, TerminalInputParams as sr, SessionsGroupsDefaultsParams as ss, WorkerHeartbeatResponseFrameSchema as st, QuestionRequestResultSchema as su, UpdateRunsListParamsSchema as sv, AgentsCreateParamsSchema as sw, UsersAuthConnectCatalogResult as sx, TalkSessionAcknowledgeMarkParamsSchema as sy, PluginsUninstallParams as sz, schema_modules_d_exports as t, ProjectsSearchRemoteParams as tA, AuditRunInspectResultSchema as tC, ToolsEffectiveParamsSchema as tD, SkillsProposalRecordResultSchema as tE, WorkerInferenceModelRef as tF, DeniedApprovalSnapshot as tI, SessionGitHubPublishParamsSchema as tL, TranscriptSessionSummarySchema as tM, BoardCommandEvent as tN, ConversationSendParamsSchema as tO, BoardWidgetNameSchema as tP, PluginJsonValueSchema as tR, UsersPrefsGetParamsSchema as tS, ModelsAuthStatusParamsSchema as tT, CronScratchSchema as t_, SESSION_OBSERVER_HEALTH_VALUES as ta, TalkConfigParamsSchema as tb, SessionsSendParams as tc, NodeHostStatsPayload as td, ChatErrorEventSchema as tf, WorkerDesktopObserveParams as tg, ExecApprovalRequestParams as th, Snapshot as ti, SessionSuggestionEventSchema as tj, SessionsCatalogContinueResult as tk, SessionPlacementRunner as tl, DesktopObserveResultSchema as tm, WorkerTranscriptMessageSchema as tn, SessionsBranchesSwitchParamsSchema as to, MentionsChangedEvent as tp, TerminalDataEvent as tr, SessionsFilesSetResult as ts, WorkerErrorShape as tt, QuestionRecordSchema as tu, UpdateRunResultSchema as tv, AgentKind as tw, UsersAuthConnectAnswerParams as tx, CommandEntrySchema as ty, PluginsSetEnabledResult as tz, WorktreesBranchesResult as u, TasksCancelParams as uA, AUDIT_ACTIVITY_DIRECTIONS as uC, ToolsGitHubAuthorizeFailedResultSchema as uD, SkillsProposalsListParams as uE, WorkerInferenceStartResult as uF, PendingApprovalSnapshot as uI, MissingScopeErrorDetailsSchema as uL, TranscriptsGetResult as uM, BoardGetParams as uN, ConversationTurnReply as uO, BoardWidgetPutResult as uP, PluginsCatalogCategoriesParams as uR, UsersSelectModelAccountResult as uS, ModelsProbeTargetResult as uT, SystemAgentChatHistoryTurn as u_, SessionDiffFile as ua, TalkSessionCancelOutputParams as ub, SessionsPatchManyTarget as uc, NodeInvokeResultParams as ud, ChatHistoryParamsSchema as uf, WorkerExecutionModeSchema as ug, ExecApprovalsNodeGetParamsSchema as uh, SessionMemberMutationResult as ui, SessionSuggestionsAddResultSchema as uj, SessionsCatalogReadParamsSchema as uk, SessionsMoveParamsSchema as ul, DevicePairRemoveParams as um, WizardAnswerSchema as un, SessionsCompactionBranchResult as uo, UsersMentionableParamsSchema as up, TerminalListResultSchema as ur, SessionsGroupsDefaultsResultSchema as us, WorkerLiveEvent as ut, QuestionResolveParams as uu, ConfigApplyParams as uv, AgentsDeleteParams as uw, UsersAuthConnectResultSchema as ux, ChannelsPairingApproveParamsSchema as uy, PluginsUninstallResultSchema as uz, WorktreesListParams as v, TasksHistoryParams as vA, AuditActivityInboundMessageV1 as vC, ToolsGitHubAuthorizeSlowDownResultSchema as vD, SkillsSecurityVerdictsParams as vE, validateWorkerInferenceTerminalOutcome as vF, PluginApprovalSeveritySchema as vI, buildMissingScopeErrorDetails as vL, TranscriptsStatusResult as vM, BoardPromptAuthorizeParams as vN, SendParamsSchema as vO, UiClosePaneCommandSchema as vP, PluginsControlUiCatalog as vR, UsersSetAvatarResult as vS, SkillsBinsResult as vT, SystemAgentSetupActivateParams as v_, SessionFileBrowserResult as va, TalkSessionCreateResult as vb, SessionsTitlePrepareParams as vc, NodePairRejectParams as vd, ChatInputReceiptsSchema as vf, WorkerTunnelStatus as vg, ExecApprovalsSnapshotSchema as vh, SessionMembersListParamsSchema as vi, SessionSuggestionsResolveResultSchema as vj, MemoryMigrationItem as vk, SessionsReclaimResultSchema as vl, DevicePairSetupCodeResult as vm, WizardStartParamsSchema as vn, SessionsCompactionRestoreResult as vo, GatewaySuspendHandoffParams as vp, TerminalSessionInfoSchema as vr, SessionsGroupsMutationResultSchema as vs, WorkerLiveEventRequestFrameSchema as vt, QuestionSecretStoreExistingSchema as vu, ConfigSchemaLookupResult as vv, AgentsFilesGetResult as vw, UsersAuthConnectStatusResultSchema as vx, ChannelsPairingListParamsSchema as vy, WorktreesRemoveResult as w, TasksListResult as wA, AuditActivityOutboundMessageV1 as wC, ToolsGitHubConfigureParams as wD, SkillsSkillCardResult as wE, ApprovalCancelledReasonSchema as wF, SystemAgentApprovalPresentation as wI, PluginCatalogEntrySchema as wL, ProgressCardChangedEvent as wM, BoardTab as wN, GatewayClientIdSchema as wO, UiCommandSchema as wP, PluginsControlUiReportParamsSchema as wR, UsersSetRoleParams as wS, SkillsCuratorStatusParams as wT, SystemAgentSetupActivateStartResult as w_, SessionFileKind as wa, TalkSessionSubmitToolResultParams as wb, SessionDiscussionInfo as wc, NodePendingDrainParams as wd, ChatPendingInputsPage as wf, CronDeliveryPreview as wg, EnvironmentsCreateParamsSchema as wh, SessionPublicShareSetParamsSchema as wi, SessionTypingResultSchema as wj, MigrationsMemoryPlanResult as wk, SecretStoreEnvEntrySchema as wl, DevicePairSetupStatusParams as wm, WizardStatusResultSchema as wn, SessionsCompanionResetParams as wo, GatewaySuspendPrepareParams as wp, TaskSuggestion as wr, SessionsGroupsUpdateParamsSchema as ws, WorkerPortalParams as wt, QuestionWaitAnswerResultSchema as wu, ConfigSetParams as wv, AgentsFilesSetParams as ww, UsersGitHubAuthorizeStartParamsSchema as wx, ChannelsStartParams as wy, WorktreesListResultSchema as x, TasksHistoryResultSchema as xA, AuditActivityListParamsSchema as xC, ToolsGitHubAuthorizeStartResult as xD, SkillsSecurityVerdictsResultSchema as xE, ApprovalAllowDecision as xF, SessionApprovalReplay as xI, CapabilityConsentErrorDetailsSchema as xL, PROGRESS_CARD_MAX_STEP_UTF8_BYTES as xM, BoardSizeSchema as xN, agent_d_exports as xO, UiCommandParamsSchema as xP, PluginsControlUiListParamsSchema as xR, UsersSetDisplayNameParamsSchema as xS, SkillsCuratorActionParamsSchema as xT, SystemAgentSetupActivateResultSchema as x_, SessionFileContentEncodingSchema as xa, TalkSessionOkResultSchema as xb, SessionsTitlePrepareResultSchema as xc, NodePairRemoveParamsSchema as xd, ChatMessageGetResultSchema as xf, CronAddParams as xg, EnvironmentSummary as xh, SessionPublicShare as xi, SessionTypingParams as xj, MigrationsMemoryApplyParamsSchema as xk, GitHubSetupHandleSchema as xl, DevicePairSetupCompletedEventSchema as xm, WizardStatusParams as xn, SessionsCompanionAskParamsSchema as xo, GatewaySuspendHandoffResultSchema as xp, TerminalUploadPathStyle as xr, SessionsGroupsRenameParams as xs, WorkerLiveEventResult as xt, QuestionWaitAnswerParams as xu, ConfigSchemaParamsSchema as xv, AgentsFilesListParamsSchema as xw, UsersGitHubAuthorizePollParamsSchema as xx, ChannelsPairingRequest as xy, WorktreesListParamsSchema as y, TasksHistoryParamsSchema as yA, AuditActivityInboundMessageV1Schema as yC, ToolsGitHubAuthorizeStartParams as yD, SkillsSecurityVerdictsParamsSchema as yE, AllowedApprovalSnapshot as yF, SessionApprovalEvent as yI, errorShape as yL, TranscriptsStatusResultSchema as yM, BoardPromptAuthorizeParamsSchema as yN, WakeParams as yO, UiCommand as yP, PluginsControlUiCatalogSchema as yR, UsersSetAvatarResultSchema as yS, SkillsBinsResultSchema as yT, SystemAgentSetupActivateParamsSchema as y_, SessionFileBrowserResultSchema as ya, TalkSessionCreateResultSchema as yb, SessionsTitlePrepareParamsSchema as yc, NodePairRejectParamsSchema as yd, ChatMessageGetParamsSchema as yf, WorkerTunnelStatusSchema as yg, EnvironmentStatus as yh, SessionMembersListResult as yi, SessionTypingEvent as yj, MemoryMigrationProviderPlan as yk, SessionPlacementState as yl, DevicePairSetupCodeResultSchema as ym, WizardStartResult as yn, SessionsCompactionRestoreResultSchema as yo, GatewaySuspendHandoffParamsSchema as yp, TerminalUploadParams as yr, SessionsGroupsPutParams as ys, WorkerLiveEventResponseFrame as yt, QuestionStatus as yu, ConfigSchemaLookupResultSchema as yv, AgentsFilesGetResultSchema as yw, UsersGitHubAuthorizeCancelParamsSchema as yx, ChannelsPairingListResult as yy, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES as z, SessionsGoalMutationResultSchema as zA, ArtifactsListParams as zC, AgentEvent as zD, ToolCatalogEntrySchema as zE, ApprovalKind as zF, SessionGitHubConfirmParams as zI, PluginDiscoveryCategory as zL, CanvasDocumentViewParams as zM, BoardWidgetAppViewResultSchema as zN, SessionCatalogLocatorSchema as zO, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as zP, PluginsRefreshParams as zR, ChatAccountSelectionSchema as zS, SkillsProposalCreateParamsSchema as zT, SystemAgentWizardCancelSchema as z_, SessionObserverPlanProgressSchema as za, PersonalGitHubAccountSchema as zb, SessionMoveGatewayTargetSchema as zc, NodePresenceAlivePayloadSchema as zd, LogsTailParams as zf, CronAddParamsSchema as zg, EnvironmentsStatusParams as zh, SESSION_VISIBILITY_VALUES as zi, SessionPermissionMode as zj, ProjectsAddParams as zk, SecretsStoreSetParams as zl, ScopeUpgradeRequest as zm, PortalOpenResult as zn, SessionsDiffResult as zo, GatewaySuspendStatusRunningResultSchema as zp, TaskSuggestionsDismissParamsSchema as zr, SessionsPreviewParams as zs, WorkerSessionsSpawnParamsSchema as zt, WebPushPreferencesSetParams as zu, UpdateScheduleStateSchema as zv, GitHubAuthorSchema as zw, UsersLinkEmailResultSchema as zx, TalkClientCloseParamsSchema as zy };