@openclaw/gateway-protocol 2026.9.3 → 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,4 +1,4 @@
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";
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
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
@@ -12,8 +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";
15
16
  readonly PROGRESS_CARD_AGENT_SCOPE: "progress-card-agent-scope-v1";
16
17
  readonly SESSION_SCOPED_CHAT_METADATA: "session-scoped-chat-metadata";
18
+ readonly SESSION_SCOPED_MODEL_CATALOG: "session-scoped-model-catalog";
17
19
  readonly SESSION_UNREAD_ACK_CONTRACT: "session-unread-ack-contract";
18
20
  readonly SESSION_GOAL_START: "session-goal-start-v1";
19
21
  readonly SESSION_SETTINGS_CONTRACT: "session-settings-contract";
@@ -173,13 +175,17 @@ declare const PluginCatalogEntrySchema: Type.TObject<{
173
175
  id: Type.TString;
174
176
  name: Type.TString;
175
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>;
176
182
  description: Type.TOptional<Type.TString>;
177
183
  version: Type.TOptional<Type.TString>;
178
184
  kind: Type.TOptional<Type.TArray<Type.TString>>;
179
185
  origin: Type.TOptional<Type.TString>;
180
186
  installed: Type.TBoolean;
181
187
  enabled: Type.TBoolean;
182
- 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">]>;
183
189
  featured: Type.TOptional<Type.TBoolean>;
184
190
  featuredAt: Type.TOptional<Type.TInteger>;
185
191
  order: Type.TOptional<Type.TNumber>;
@@ -193,7 +199,9 @@ declare const PluginCatalogEntrySchema: Type.TObject<{
193
199
  pluginId: Type.TString;
194
200
  }>]>>;
195
201
  error: Type.TOptional<Type.TString>;
196
- /** 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. */
197
205
  category: Type.TOptional<Type.TString>;
198
206
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
199
207
  removable: Type.TOptional<Type.TBoolean>;
@@ -206,13 +214,17 @@ declare const PluginsListResultSchema: Type.TObject<{
206
214
  id: Type.TString;
207
215
  name: Type.TString;
208
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>;
209
221
  description: Type.TOptional<Type.TString>;
210
222
  version: Type.TOptional<Type.TString>;
211
223
  kind: Type.TOptional<Type.TArray<Type.TString>>;
212
224
  origin: Type.TOptional<Type.TString>;
213
225
  installed: Type.TBoolean;
214
226
  enabled: Type.TBoolean;
215
- 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">]>;
216
228
  featured: Type.TOptional<Type.TBoolean>;
217
229
  featuredAt: Type.TOptional<Type.TInteger>;
218
230
  order: Type.TOptional<Type.TNumber>;
@@ -226,7 +238,9 @@ declare const PluginsListResultSchema: Type.TObject<{
226
238
  pluginId: Type.TString;
227
239
  }>]>>;
228
240
  error: Type.TOptional<Type.TString>;
229
- /** 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. */
230
244
  category: Type.TOptional<Type.TString>;
231
245
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
232
246
  removable: Type.TOptional<Type.TBoolean>;
@@ -339,7 +353,345 @@ declare const CapabilityConsentErrorDetailsSchema: Type.TObject<{
339
353
  }>>;
340
354
  acceptedAt: Type.TOptional<Type.TString>;
341
355
  }>;
342
- /** 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. */
343
695
  declare const PluginsInspectResultSchema: Type.TObject<{
344
696
  ok: Type.TLiteral<true>;
345
697
  plugin: Type.TObject<{
@@ -374,6 +726,20 @@ declare const PluginsInspectResultSchema: Type.TObject<{
374
726
  /** Dot paths from configContracts.dangerousFlags. */
375
727
  dangerousConfigFlags: Type.TArray<Type.TString>;
376
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
+ }>;
377
743
  reviewToken: Type.TString;
378
744
  grants: Type.TObject<{
379
745
  hooks: Type.TObject<{
@@ -410,56 +776,93 @@ declare const PluginsInspectResultSchema: Type.TObject<{
410
776
  pending: Type.TOptional<Type.TBoolean>;
411
777
  stale: Type.TOptional<Type.TBoolean>;
412
778
  }>>;
413
- }>;
414
- /** Request payload for searching installable ClawHub plugin families. */
415
- declare const PluginsSearchParamsSchema: Type.TObject<{
416
- query: Type.TString;
417
- limit: Type.TOptional<Type.TInteger>;
418
- }>;
419
- /** ClawHub package fields exposed by plugin search. */
420
- declare const PluginSearchPackageSchema: Type.TObject<{
421
- name: Type.TString;
422
- displayName: Type.TString;
423
- family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
424
- channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
425
- isOfficial: Type.TBoolean;
426
- summary: Type.TOptional<Type.TString>;
427
- latestVersion: Type.TOptional<Type.TString>;
428
- runtimeId: Type.TOptional<Type.TString>;
429
- downloads: Type.TOptional<Type.TNumber>;
430
- verificationTier: Type.TOptional<Type.TString>;
431
- }>;
432
- /** Ranked ClawHub plugin search hit. */
433
- declare const PluginSearchResultEntrySchema: Type.TObject<{
434
- score: Type.TNumber;
435
- package: Type.TObject<{
436
- name: Type.TString;
437
- displayName: Type.TString;
438
- family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
439
- channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
440
- isOfficial: Type.TBoolean;
441
- summary: Type.TOptional<Type.TString>;
442
- latestVersion: Type.TOptional<Type.TString>;
443
- runtimeId: Type.TOptional<Type.TString>;
444
- downloads: Type.TOptional<Type.TNumber>;
445
- verificationTier: Type.TOptional<Type.TString>;
446
- }>;
447
- }>;
448
- /** Ranked installable plugin packages matching the query. */
449
- declare const PluginsSearchResultSchema: Type.TObject<{
450
- results: Type.TArray<Type.TObject<{
451
- score: Type.TNumber;
452
- package: Type.TObject<{
453
- name: Type.TString;
454
- displayName: Type.TString;
455
- family: Type.TUnion<[Type.TLiteral<"code-plugin">, Type.TLiteral<"bundle-plugin">]>;
456
- channel: Type.TUnion<[Type.TLiteral<"official">, Type.TLiteral<"community">, Type.TLiteral<"private">]>;
457
- isOfficial: Type.TBoolean;
458
- summary: Type.TOptional<Type.TString>;
459
- latestVersion: Type.TOptional<Type.TString>;
460
- runtimeId: Type.TOptional<Type.TString>;
461
- downloads: Type.TOptional<Type.TNumber>;
462
- 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
+ }>>;
463
866
  }>;
464
867
  }>>;
465
868
  }>;
@@ -487,13 +890,17 @@ declare const PluginsInstallResultSchema: Type.TObject<{
487
890
  id: Type.TString;
488
891
  name: Type.TString;
489
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>;
490
897
  description: Type.TOptional<Type.TString>;
491
898
  version: Type.TOptional<Type.TString>;
492
899
  kind: Type.TOptional<Type.TArray<Type.TString>>;
493
900
  origin: Type.TOptional<Type.TString>;
494
901
  installed: Type.TBoolean;
495
902
  enabled: Type.TBoolean;
496
- 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">]>;
497
904
  featured: Type.TOptional<Type.TBoolean>;
498
905
  featuredAt: Type.TOptional<Type.TInteger>;
499
906
  order: Type.TOptional<Type.TNumber>;
@@ -507,7 +914,9 @@ declare const PluginsInstallResultSchema: Type.TObject<{
507
914
  pluginId: Type.TString;
508
915
  }>]>>;
509
916
  error: Type.TOptional<Type.TString>;
510
- /** 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. */
511
920
  category: Type.TOptional<Type.TString>;
512
921
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
513
922
  removable: Type.TOptional<Type.TBoolean>;
@@ -548,13 +957,17 @@ declare const PluginsSetEnabledResultSchema: Type.TObject<{
548
957
  id: Type.TString;
549
958
  name: Type.TString;
550
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>;
551
964
  description: Type.TOptional<Type.TString>;
552
965
  version: Type.TOptional<Type.TString>;
553
966
  kind: Type.TOptional<Type.TArray<Type.TString>>;
554
967
  origin: Type.TOptional<Type.TString>;
555
968
  installed: Type.TBoolean;
556
969
  enabled: Type.TBoolean;
557
- 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">]>;
558
971
  featured: Type.TOptional<Type.TBoolean>;
559
972
  featuredAt: Type.TOptional<Type.TInteger>;
560
973
  order: Type.TOptional<Type.TNumber>;
@@ -568,7 +981,9 @@ declare const PluginsSetEnabledResultSchema: Type.TObject<{
568
981
  pluginId: Type.TString;
569
982
  }>]>>;
570
983
  error: Type.TOptional<Type.TString>;
571
- /** 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. */
572
987
  category: Type.TOptional<Type.TString>;
573
988
  /** True when the plugin has an install record and can be removed via plugins.uninstall. */
574
989
  removable: Type.TOptional<Type.TBoolean>;
@@ -584,10 +999,22 @@ type PluginsInspectResult = Static<typeof PluginsInspectResultSchema>;
584
999
  type PluginHookGrant = Static<typeof PluginHookGrantSchema>;
585
1000
  type PluginInspectSource = Static<typeof PluginInspectSourceSchema>;
586
1001
  type PluginDeclaredSurface = Static<typeof PluginDeclaredSurfaceSchema>;
1002
+ type PluginInstalledComponents = Static<typeof PluginInstalledComponentsSchema>;
587
1003
  type PluginOperatorGrants = Static<typeof PluginOperatorGrantsSchema>;
588
1004
  type PluginInstallTrust = Static<typeof PluginInstallTrustSchema>;
589
1005
  type PluginsSearchParams = Static<typeof PluginsSearchParamsSchema>;
590
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>;
591
1018
  type PluginsInstallParams = Static<typeof PluginsInstallParamsSchema>;
592
1019
  type PluginsInstallResult = Static<typeof PluginsInstallResultSchema>;
593
1020
  type PluginsRefreshParams = Static<typeof PluginsRefreshParamsSchema>;
@@ -6926,6 +7353,7 @@ declare const SessionRowSchema: Type.TObject<{
6926
7353
  incognito: Type.TOptional<Type.TLiteral<true>>;
6927
7354
  kind: Type.TUnion<[Type.TLiteral<"direct">, Type.TLiteral<"group">, Type.TLiteral<"global">, Type.TLiteral<"unknown">]>;
6928
7355
  label: Type.TOptional<Type.TString>;
7356
+ autoLabel: Type.TOptional<Type.TString>;
6929
7357
  icon: Type.TOptional<Type.TString>;
6930
7358
  /** Named sidebar tint from SESSION_COLOR_IDS; clients map names to theme hues. */
6931
7359
  color: Type.TOptional<Type.TString>;
@@ -7212,8 +7640,8 @@ declare const SessionRowSchema: Type.TObject<{
7212
7640
  /** Runtime model serving this session while it differs from the selected model. */
7213
7641
  activeModel: Type.TOptional<Type.TString>;
7214
7642
  activeModelProvider: Type.TOptional<Type.TString>;
7215
- /** Persisted override provenance; null means inherited, omission means not projected. */
7216
- 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]>>;
7217
7645
  toolOverrides: Type.TOptional<Type.TObject<{
7218
7646
  mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
7219
7647
  mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
@@ -7717,6 +8145,7 @@ declare const SessionsCreateParamsSchema: Type.TObject<{
7717
8145
  agentId: Type.TOptional<Type.TString>;
7718
8146
  label: Type.TOptional<Type.TString>;
7719
8147
  displayName: Type.TOptional<Type.TString>;
8148
+ titleSource: Type.TOptional<Type.TString>;
7720
8149
  category: Type.TOptional<Type.TString>;
7721
8150
  model: Type.TOptional<Type.TString>;
7722
8151
  contextWindow: Type.TOptional<Type.TString>;
@@ -7738,6 +8167,7 @@ declare const SessionsCreateParamsSchema: Type.TObject<{
7738
8167
  forkFrom: Type.TOptional<Type.TLiteral<"last-completed">>;
7739
8168
  emitCommandHooks: Type.TOptional<Type.TBoolean>;
7740
8169
  succeedsParent: Type.TOptional<Type.TBoolean>;
8170
+ timeoutMs: Type.TOptional<Type.TInteger>;
7741
8171
  task: Type.TOptional<Type.TString>;
7742
8172
  message: Type.TOptional<Type.TString>;
7743
8173
  mentions: Type.TOptional<Type.TArray<Type.TObject<{
@@ -7780,6 +8210,7 @@ declare const TaskSummarySchema: Type.TObject<{
7780
8210
  agentId: Type.TOptional<Type.TString>;
7781
8211
  sessionKey: Type.TOptional<Type.TString>;
7782
8212
  childSessionKey: Type.TOptional<Type.TString>;
8213
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7783
8214
  ownerKey: Type.TOptional<Type.TString>;
7784
8215
  runId: Type.TOptional<Type.TString>;
7785
8216
  taskId: Type.TOptional<Type.TString>;
@@ -7829,6 +8260,7 @@ declare const TasksListResultSchema: Type.TObject<{
7829
8260
  agentId: Type.TOptional<Type.TString>;
7830
8261
  sessionKey: Type.TOptional<Type.TString>;
7831
8262
  childSessionKey: Type.TOptional<Type.TString>;
8263
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7832
8264
  ownerKey: Type.TOptional<Type.TString>;
7833
8265
  runId: Type.TOptional<Type.TString>;
7834
8266
  taskId: Type.TOptional<Type.TString>;
@@ -7874,6 +8306,7 @@ declare const TasksGetResultSchema: Type.TObject<{
7874
8306
  agentId: Type.TOptional<Type.TString>;
7875
8307
  sessionKey: Type.TOptional<Type.TString>;
7876
8308
  childSessionKey: Type.TOptional<Type.TString>;
8309
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7877
8310
  ownerKey: Type.TOptional<Type.TString>;
7878
8311
  runId: Type.TOptional<Type.TString>;
7879
8312
  taskId: Type.TOptional<Type.TString>;
@@ -7903,6 +8336,17 @@ declare const TasksGetResultSchema: Type.TObject<{
7903
8336
  prompt: Type.TOptional<Type.TString>;
7904
8337
  }>;
7905
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
+ }>;
7906
8350
  /** Cancel request for one task id with optional operator reason. */
7907
8351
  declare const TasksCancelParamsSchema: Type.TObject<{
7908
8352
  taskId: Type.TString;
@@ -7922,6 +8366,7 @@ declare const TasksCancelResultSchema: Type.TObject<{
7922
8366
  agentId: Type.TOptional<Type.TString>;
7923
8367
  sessionKey: Type.TOptional<Type.TString>;
7924
8368
  childSessionKey: Type.TOptional<Type.TString>;
8369
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7925
8370
  ownerKey: Type.TOptional<Type.TString>;
7926
8371
  runId: Type.TOptional<Type.TString>;
7927
8372
  taskId: Type.TOptional<Type.TString>;
@@ -7969,6 +8414,7 @@ declare const TasksRecoveryResultSchema: Type.TObject<{
7969
8414
  agentId: Type.TOptional<Type.TString>;
7970
8415
  sessionKey: Type.TOptional<Type.TString>;
7971
8416
  childSessionKey: Type.TOptional<Type.TString>;
8417
+ hasTranscript: Type.TOptional<Type.TBoolean>;
7972
8418
  ownerKey: Type.TOptional<Type.TString>;
7973
8419
  runId: Type.TOptional<Type.TString>;
7974
8420
  taskId: Type.TOptional<Type.TString>;
@@ -8004,6 +8450,8 @@ type TasksListParams = Static<typeof TasksListParamsSchema>;
8004
8450
  type TasksListResult = Static<typeof TasksListResultSchema>;
8005
8451
  type TasksGetParams = Static<typeof TasksGetParamsSchema>;
8006
8452
  type TasksGetResult = Static<typeof TasksGetResultSchema>;
8453
+ type TasksHistoryParams = Static<typeof TasksHistoryParamsSchema>;
8454
+ type TasksHistoryResult = Static<typeof TasksHistoryResultSchema>;
8007
8455
  type TasksCancelParams = Static<typeof TasksCancelParamsSchema>;
8008
8456
  type TasksCancelResult = Static<typeof TasksCancelResultSchema>;
8009
8457
  type TasksRecoveryParams = Static<typeof TasksRecoveryParamsSchema>;
@@ -9475,6 +9923,8 @@ declare const ModelChoiceSchema: Type.TObject<{
9475
9923
  /** Earliest known retry time in epoch milliseconds, only for unavailable models. */
9476
9924
  unavailableUntil: Type.TOptional<Type.TInteger>;
9477
9925
  contextWindow: Type.TOptional<Type.TInteger>;
9926
+ contextTokens: Type.TOptional<Type.TInteger>;
9927
+ local: Type.TOptional<Type.TBoolean>;
9478
9928
  contextWindows: Type.TOptional<Type.TArray<Type.TObject<{
9479
9929
  id: Type.TString;
9480
9930
  label: Type.TString;
@@ -9488,6 +9938,8 @@ declare const ModelChoiceSchema: Type.TObject<{
9488
9938
  }>>>;
9489
9939
  thinkingDefault: Type.TOptional<Type.TString>;
9490
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>;
9491
9943
  supportsTools: Type.TOptional<Type.TBoolean>;
9492
9944
  agentRuntime: Type.TOptional<Type.TObject<{
9493
9945
  id: Type.TString;
@@ -9655,6 +10107,7 @@ declare const AgentsFileEntrySchema: Type.TObject<{
9655
10107
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9656
10108
  size: Type.TOptional<Type.TInteger>;
9657
10109
  updatedAtMs: Type.TOptional<Type.TInteger>;
10110
+ hash: Type.TOptional<Type.TString>;
9658
10111
  content: Type.TOptional<Type.TString>;
9659
10112
  }>;
9660
10113
  /** Lists editable files for one agent. */
@@ -9672,6 +10125,7 @@ declare const AgentsFilesListResultSchema: Type.TObject<{
9672
10125
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9673
10126
  size: Type.TOptional<Type.TInteger>;
9674
10127
  updatedAtMs: Type.TOptional<Type.TInteger>;
10128
+ hash: Type.TOptional<Type.TString>;
9675
10129
  content: Type.TOptional<Type.TString>;
9676
10130
  }>>;
9677
10131
  }>;
@@ -9691,6 +10145,7 @@ declare const AgentsFilesGetResultSchema: Type.TObject<{
9691
10145
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9692
10146
  size: Type.TOptional<Type.TInteger>;
9693
10147
  updatedAtMs: Type.TOptional<Type.TInteger>;
10148
+ hash: Type.TOptional<Type.TString>;
9694
10149
  content: Type.TOptional<Type.TString>;
9695
10150
  }>;
9696
10151
  }>;
@@ -9699,6 +10154,7 @@ declare const AgentsFilesSetParamsSchema: Type.TObject<{
9699
10154
  agentId: Type.TString;
9700
10155
  name: Type.TString;
9701
10156
  content: Type.TString;
10157
+ expectedHash: Type.TOptional<Type.TString>;
9702
10158
  }>;
9703
10159
  /** Result returned after writing an editable agent file. */
9704
10160
  declare const AgentsFilesSetResultSchema: Type.TObject<{
@@ -9712,12 +10168,17 @@ declare const AgentsFilesSetResultSchema: Type.TObject<{
9712
10168
  expectedAbsent: Type.TOptional<Type.TBoolean>;
9713
10169
  size: Type.TOptional<Type.TInteger>;
9714
10170
  updatedAtMs: Type.TOptional<Type.TInteger>;
10171
+ hash: Type.TOptional<Type.TString>;
9715
10172
  content: Type.TOptional<Type.TString>;
9716
10173
  }>;
9717
10174
  }>;
9718
10175
  /** Model catalog request with optional visibility scope. */
9719
10176
  declare const ModelsListParamsSchema: Type.TObject<{
9720
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>;
9721
10182
  includeProviderCapabilities: Type.TOptional<Type.TBoolean>;
9722
10183
  /** Reuse prepared/cached facts without starting provider discovery. */
9723
10184
  preparedOnly: Type.TOptional<Type.TBoolean>;
@@ -9760,6 +10221,8 @@ declare const ModelsListResultSchema: Type.TObject<{
9760
10221
  /** Earliest known retry time in epoch milliseconds, only for unavailable models. */
9761
10222
  unavailableUntil: Type.TOptional<Type.TInteger>;
9762
10223
  contextWindow: Type.TOptional<Type.TInteger>;
10224
+ contextTokens: Type.TOptional<Type.TInteger>;
10225
+ local: Type.TOptional<Type.TBoolean>;
9763
10226
  contextWindows: Type.TOptional<Type.TArray<Type.TObject<{
9764
10227
  id: Type.TString;
9765
10228
  label: Type.TString;
@@ -9773,6 +10236,8 @@ declare const ModelsListResultSchema: Type.TObject<{
9773
10236
  }>>>;
9774
10237
  thinkingDefault: Type.TOptional<Type.TString>;
9775
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>;
9776
10241
  supportsTools: Type.TOptional<Type.TBoolean>;
9777
10242
  agentRuntime: Type.TOptional<Type.TObject<{
9778
10243
  id: Type.TString;
@@ -9789,6 +10254,21 @@ declare const ModelsListResultSchema: Type.TObject<{
9789
10254
  apiKeySupported: Type.TOptional<Type.TBoolean>;
9790
10255
  input: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"audio">, Type.TLiteral<"video">, Type.TLiteral<"document">]>>>;
9791
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
+ }>]>>;
9792
10272
  providerOutcomes: Type.TOptional<Type.TArray<Type.TObject<{
9793
10273
  provider: Type.TString;
9794
10274
  profileId: Type.TOptional<Type.TString>;
@@ -9902,6 +10382,8 @@ declare const SkillsSearchResultSchema: Type.TObject<{
9902
10382
  results: Type.TArray<Type.TObject<{
9903
10383
  score: Type.TNumber;
9904
10384
  slug: Type.TString;
10385
+ registry: Type.TString;
10386
+ ownerHandle: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
9905
10387
  installRef: Type.TString;
9906
10388
  installOnly: Type.TOptional<Type.TLiteral<true>>;
9907
10389
  trustState: Type.TOptional<Type.TLiteral<"not-scanned-by-clawhub">>;
@@ -9926,6 +10408,7 @@ declare const SkillsDetailResultSchema: Type.TObject<{
9926
10408
  slug: Type.TString;
9927
10409
  displayName: Type.TString;
9928
10410
  summary: Type.TOptional<Type.TString>;
10411
+ icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
9929
10412
  tags: Type.TOptional<Type.TRecord<"^.*$", Type.TString>>;
9930
10413
  channel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
9931
10414
  isOfficial: Type.TOptional<Type.TUnion<[Type.TBoolean, Type.TNull]>>;
@@ -12405,6 +12888,24 @@ type AuditEvent = Static<typeof AuditEventSchema>;
12405
12888
  type AuditListParams = Static<typeof AuditListParamsSchema>;
12406
12889
  type AuditListResult = Static<typeof AuditListResultSchema>;
12407
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
12408
12909
  //#region src/schema/user-profile-constants.d.ts
12409
12910
  declare const GATEWAY_OWNER_PROFILE_ID = "gateway-owner";
12410
12911
  //#endregion
@@ -12619,21 +13120,6 @@ declare const UsersSelectModelAccountResultSchema: Type.TObject<{
12619
13120
  updatedAt: Type.TInteger;
12620
13121
  }>>;
12621
13122
  }>;
12622
- /** Configured preference only; provider failover can use a different account. */
12623
- declare const ChatAccountSelectionSchema: Type.TUnion<[Type.TObject<{
12624
- kind: Type.TLiteral<"automatic">;
12625
- label: Type.TString;
12626
- }>, Type.TObject<{
12627
- kind: Type.TLiteral<"personal">;
12628
- label: Type.TString;
12629
- authProfileId: Type.TOptional<Type.TString>;
12630
- source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
12631
- }>, Type.TObject<{
12632
- kind: Type.TLiteral<"shared">;
12633
- label: Type.TString;
12634
- authProfileId: Type.TString;
12635
- source: Type.TOptional<Type.TUnion<[Type.TLiteral<"auto">, Type.TLiteral<"user">, Type.TLiteral<"user-link">]>>;
12636
- }>]>;
12637
13123
  declare const UsersListAuthLinksParamsSchema: Type.TObject<{
12638
13124
  profileId: Type.TString;
12639
13125
  }>;
@@ -12793,7 +13279,6 @@ type UsersListModelAccountsParams = Static<typeof UsersListModelAccountsParamsSc
12793
13279
  type UsersListModelAccountsResult = Static<typeof UsersListModelAccountsResultSchema>;
12794
13280
  type UsersSelectModelAccountParams = Static<typeof UsersSelectModelAccountParamsSchema>;
12795
13281
  type UsersSelectModelAccountResult = Static<typeof UsersSelectModelAccountResultSchema>;
12796
- type ChatAccountSelection = Static<typeof ChatAccountSelectionSchema>;
12797
13282
  type UsersAuthConnectStartParams = Static<typeof UsersAuthConnectStartParamsSchema>;
12798
13283
  type UsersAuthConnectStartResult = Static<typeof UsersAuthConnectStartResultSchema>;
12799
13284
  type UsersAuthConnectAnswerParams = Static<typeof UsersAuthConnectAnswerParamsSchema>;
@@ -16681,6 +17166,7 @@ declare const RequiredNodeCommandSchema: Type.TObject<{
16681
17166
  }>;
16682
17167
  /** Worker-only lifecycle metadata layered onto the existing environment projection. */
16683
17168
  declare const WorkerEnvironmentMetadataSchema: Type.TObject<{
17169
+ profileId: Type.TOptional<Type.TString>;
16684
17170
  providerId: Type.TString;
16685
17171
  leaseId: Type.TOptional<Type.TString>;
16686
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">]>;
@@ -16729,6 +17215,7 @@ declare const EnvironmentSummarySchema: Type.TObject<{
16729
17215
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16730
17216
  }>>>;
16731
17217
  worker: Type.TOptional<Type.TObject<{
17218
+ profileId: Type.TOptional<Type.TString>;
16732
17219
  providerId: Type.TString;
16733
17220
  leaseId: Type.TOptional<Type.TString>;
16734
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">]>;
@@ -16740,6 +17227,10 @@ declare const EnvironmentSummarySchema: Type.TObject<{
16740
17227
  desktop: Type.TOptional<Type.TBoolean>;
16741
17228
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16742
17229
  }>>;
17230
+ preparation: Type.TOptional<Type.TObject<{
17231
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17232
+ key: Type.TString;
17233
+ }>>;
16743
17234
  }>;
16744
17235
  /** Optional runtime scope for listing known environments. */
16745
17236
  declare const EnvironmentsListParamsSchema: Type.TObject<{
@@ -16752,6 +17243,7 @@ declare const WorkerMachineOptionSchema: Type.TObject<{
16752
17243
  cpu: Type.TOptional<Type.TInteger>;
16753
17244
  memoryGb: Type.TOptional<Type.TInteger>;
16754
17245
  default: Type.TOptional<Type.TBoolean>;
17246
+ os: Type.TOptional<Type.TString>;
16755
17247
  }>;
16756
17248
  declare const WorkerMachineOptionsSchema: Type.TArray<Type.TObject<{
16757
17249
  id: Type.TString;
@@ -16759,7 +17251,15 @@ declare const WorkerMachineOptionsSchema: Type.TArray<Type.TObject<{
16759
17251
  cpu: Type.TOptional<Type.TInteger>;
16760
17252
  memoryGb: Type.TOptional<Type.TInteger>;
16761
17253
  default: Type.TOptional<Type.TBoolean>;
17254
+ os: Type.TOptional<Type.TString>;
16762
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
+ }>;
16763
17263
  /** Placement execution modes shared by runtime requirements and worker providers. */
16764
17264
  declare const WorkerExecutionModeSchema: Type.TUnion<[Type.TLiteral<"worker-turn">, Type.TLiteral<"remote-exec">]>;
16765
17265
  /** List response containing all gateway-visible environment summaries. */
@@ -16800,6 +17300,7 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
16800
17300
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16801
17301
  }>>>;
16802
17302
  worker: Type.TOptional<Type.TObject<{
17303
+ profileId: Type.TOptional<Type.TString>;
16803
17304
  providerId: Type.TString;
16804
17305
  leaseId: Type.TOptional<Type.TString>;
16805
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">]>;
@@ -16811,6 +17312,10 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
16811
17312
  desktop: Type.TOptional<Type.TBoolean>;
16812
17313
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16813
17314
  }>>;
17315
+ preparation: Type.TOptional<Type.TObject<{
17316
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17317
+ key: Type.TString;
17318
+ }>>;
16814
17319
  }>>;
16815
17320
  profiles: Type.TOptional<Type.TArray<Type.TObject<{
16816
17321
  id: Type.TString;
@@ -16824,6 +17329,13 @@ declare const EnvironmentsListResultSchema: Type.TObject<{
16824
17329
  cpu: Type.TOptional<Type.TInteger>;
16825
17330
  memoryGb: Type.TOptional<Type.TInteger>;
16826
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>;
16827
17339
  }>>>;
16828
17340
  }>>>;
16829
17341
  }>;
@@ -16864,6 +17376,7 @@ declare const EnvironmentsStatusResultSchema: Type.TObject<{
16864
17376
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16865
17377
  }>>>;
16866
17378
  worker: Type.TOptional<Type.TObject<{
17379
+ profileId: Type.TOptional<Type.TString>;
16867
17380
  providerId: Type.TString;
16868
17381
  leaseId: Type.TOptional<Type.TString>;
16869
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">]>;
@@ -16875,6 +17388,10 @@ declare const EnvironmentsStatusResultSchema: Type.TObject<{
16875
17388
  desktop: Type.TOptional<Type.TBoolean>;
16876
17389
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16877
17390
  }>>;
17391
+ preparation: Type.TOptional<Type.TObject<{
17392
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17393
+ key: Type.TString;
17394
+ }>>;
16878
17395
  }>;
16879
17396
  /** Creates a worker environment from one configured provider profile. */
16880
17397
  declare const EnvironmentsCreateParamsSchema: Type.TObject<{
@@ -16914,6 +17431,7 @@ declare const EnvironmentsCreateResultSchema: Type.TObject<{
16914
17431
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16915
17432
  }>>>;
16916
17433
  worker: Type.TOptional<Type.TObject<{
17434
+ profileId: Type.TOptional<Type.TString>;
16917
17435
  providerId: Type.TString;
16918
17436
  leaseId: Type.TOptional<Type.TString>;
16919
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">]>;
@@ -16925,6 +17443,20 @@ declare const EnvironmentsCreateResultSchema: Type.TObject<{
16925
17443
  desktop: Type.TOptional<Type.TBoolean>;
16926
17444
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16927
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;
16928
17460
  }>;
16929
17461
  /** Destroys one durable worker environment by its gateway-owned id. */
16930
17462
  declare const EnvironmentsDestroyParamsSchema: Type.TObject<{
@@ -16964,6 +17496,7 @@ declare const EnvironmentsDestroyResultSchema: Type.TObject<{
16964
17496
  headlessReconnectCommand: Type.TLiteral<"openclaw node restart">;
16965
17497
  }>>>;
16966
17498
  worker: Type.TOptional<Type.TObject<{
17499
+ profileId: Type.TOptional<Type.TString>;
16967
17500
  providerId: Type.TString;
16968
17501
  leaseId: Type.TOptional<Type.TString>;
16969
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">]>;
@@ -16975,6 +17508,10 @@ declare const EnvironmentsDestroyResultSchema: Type.TObject<{
16975
17508
  desktop: Type.TOptional<Type.TBoolean>;
16976
17509
  desktopApps: Type.TOptional<Type.TArray<Type.TUnion<[Type.TLiteral<"browser">, Type.TLiteral<"terminal">]>>>;
16977
17510
  }>>;
17511
+ preparation: Type.TOptional<Type.TObject<{
17512
+ purpose: Type.TUnion<[Type.TLiteral<"reserve">, Type.TLiteral<"build">]>;
17513
+ key: Type.TString;
17514
+ }>>;
16978
17515
  }>;
16979
17516
  declare const WorkerDesktopObserveParamsSchema: Type.TObject<{
16980
17517
  environmentId: Type.TString;
@@ -17005,10 +17542,13 @@ type RequiredNodeCommandState = Static<typeof RequiredNodeCommandStateSchema>;
17005
17542
  type RequiredNodeCommand = Static<typeof RequiredNodeCommandSchema>;
17006
17543
  type WorkerEnvironmentMetadata = Static<typeof WorkerEnvironmentMetadataSchema>;
17007
17544
  type WorkerMachineOption = Static<typeof WorkerMachineOptionSchema>;
17545
+ type WorkerOperatingSystem = Static<typeof WorkerOperatingSystemSchema>;
17008
17546
  type WorkerExecutionMode = Static<typeof WorkerExecutionModeSchema>;
17009
17547
  type EnvironmentSummary = Static<typeof EnvironmentSummarySchema>;
17010
17548
  type EnvironmentsCreateParams = Static<typeof EnvironmentsCreateParamsSchema>;
17011
17549
  type EnvironmentsCreateResult = Static<typeof EnvironmentsCreateResultSchema>;
17550
+ type EnvironmentsPrepareParams = Static<typeof EnvironmentsPrepareParamsSchema>;
17551
+ type EnvironmentsPrepareResult = Static<typeof EnvironmentsPrepareResultSchema>;
17012
17552
  type EnvironmentsDestroyParams = Static<typeof EnvironmentsDestroyParamsSchema>;
17013
17553
  type EnvironmentsDestroyResult = Static<typeof EnvironmentsDestroyResultSchema>;
17014
17554
  type EnvironmentsListParams = Static<typeof EnvironmentsListParamsSchema>;
@@ -18902,6 +19442,7 @@ declare const QuestionRequestQuestionSchema: Type.TObject<{
18902
19442
  questionId: Type.TString;
18903
19443
  header: Type.TString;
18904
19444
  question: Type.TString;
19445
+ url: Type.TOptional<Type.TString>;
18905
19446
  options: Type.TArray<Type.TObject<{
18906
19447
  label: Type.TString;
18907
19448
  description: Type.TOptional<Type.TString>;
@@ -18925,6 +19466,7 @@ declare const QuestionSchema: Type.TObject<{
18925
19466
  questionId: Type.TString;
18926
19467
  header: Type.TString;
18927
19468
  question: Type.TString;
19469
+ url: Type.TOptional<Type.TString>;
18928
19470
  options: Type.TArray<Type.TObject<{
18929
19471
  label: Type.TString;
18930
19472
  description: Type.TOptional<Type.TString>;
@@ -18959,6 +19501,7 @@ declare const QuestionRecordSchema: Type.TObject<{
18959
19501
  questionId: Type.TString;
18960
19502
  header: Type.TString;
18961
19503
  question: Type.TString;
19504
+ url: Type.TOptional<Type.TString>;
18962
19505
  options: Type.TArray<Type.TObject<{
18963
19506
  label: Type.TString;
18964
19507
  description: Type.TOptional<Type.TString>;
@@ -18990,6 +19533,7 @@ declare const QuestionRequestParamsSchema: Type.TObject<{
18990
19533
  questionId: Type.TString;
18991
19534
  header: Type.TString;
18992
19535
  question: Type.TString;
19536
+ url: Type.TOptional<Type.TString>;
18993
19537
  options: Type.TArray<Type.TObject<{
18994
19538
  label: Type.TString;
18995
19539
  description: Type.TOptional<Type.TString>;
@@ -19066,6 +19610,7 @@ declare const QuestionGetResultSchema: Type.TObject<{
19066
19610
  questionId: Type.TString;
19067
19611
  header: Type.TString;
19068
19612
  question: Type.TString;
19613
+ url: Type.TOptional<Type.TString>;
19069
19614
  options: Type.TArray<Type.TObject<{
19070
19615
  label: Type.TString;
19071
19616
  description: Type.TOptional<Type.TString>;
@@ -19104,6 +19649,7 @@ declare const QuestionListResultSchema: Type.TObject<{
19104
19649
  questionId: Type.TString;
19105
19650
  header: Type.TString;
19106
19651
  question: Type.TString;
19652
+ url: Type.TOptional<Type.TString>;
19107
19653
  options: Type.TArray<Type.TObject<{
19108
19654
  label: Type.TString;
19109
19655
  description: Type.TOptional<Type.TString>;
@@ -19140,6 +19686,7 @@ declare const QuestionRequestedEventSchema: Type.TObject<{
19140
19686
  questionId: Type.TString;
19141
19687
  header: Type.TString;
19142
19688
  question: Type.TString;
19689
+ url: Type.TOptional<Type.TString>;
19143
19690
  options: Type.TArray<Type.TObject<{
19144
19691
  label: Type.TString;
19145
19692
  description: Type.TOptional<Type.TString>;
@@ -19351,6 +19898,13 @@ declare const SessionPlacementRunnerSchema: Type.TObject<{
19351
19898
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19352
19899
  deviceId: Type.TOptional<Type.TString>;
19353
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
+ }>;
19354
19908
  /** Gateway-visible placement projection; `state` remains the closed discriminator. */
19355
19909
  declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19356
19910
  generation: Type.TInteger;
@@ -19368,6 +19922,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19368
19922
  environmentId: Type.TOptional<Type.TString>;
19369
19923
  providerId: Type.TOptional<Type.TString>;
19370
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
+ }>>;
19371
19932
  generation: Type.TInteger;
19372
19933
  createdAtMs: Type.TInteger;
19373
19934
  updatedAtMs: Type.TInteger;
@@ -19378,6 +19939,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19378
19939
  workerBundleHash: Type.TString;
19379
19940
  providerId: Type.TOptional<Type.TString>;
19380
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
+ }>>;
19381
19949
  generation: Type.TInteger;
19382
19950
  createdAtMs: Type.TInteger;
19383
19951
  updatedAtMs: Type.TInteger;
@@ -19390,6 +19958,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19390
19958
  workerBundleHash: Type.TString;
19391
19959
  providerId: Type.TOptional<Type.TString>;
19392
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
+ }>>;
19393
19968
  generation: Type.TInteger;
19394
19969
  createdAtMs: Type.TInteger;
19395
19970
  updatedAtMs: Type.TInteger;
@@ -19401,6 +19976,7 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19401
19976
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19402
19977
  deviceId: Type.TOptional<Type.TString>;
19403
19978
  }>>;
19979
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19404
19980
  diskSpace: Type.TOptional<Type.TObject<{
19405
19981
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19406
19982
  availableBytes: Type.TInteger;
@@ -19421,12 +19997,20 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19421
19997
  workerBundleHash: Type.TString;
19422
19998
  providerId: Type.TOptional<Type.TString>;
19423
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
+ }>>;
19424
20007
  generation: Type.TInteger;
19425
20008
  createdAtMs: Type.TInteger;
19426
20009
  updatedAtMs: Type.TInteger;
19427
20010
  stateChangedAtMs: Type.TInteger;
19428
20011
  state: Type.TLiteral<"active">;
19429
20012
  }>, Type.TObject<{
20013
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19430
20014
  diskSpace: Type.TOptional<Type.TObject<{
19431
20015
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19432
20016
  availableBytes: Type.TInteger;
@@ -19447,6 +20031,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19447
20031
  workerBundleHash: Type.TString;
19448
20032
  providerId: Type.TOptional<Type.TString>;
19449
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
+ }>>;
19450
20041
  generation: Type.TInteger;
19451
20042
  createdAtMs: Type.TInteger;
19452
20043
  updatedAtMs: Type.TInteger;
@@ -19473,6 +20064,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19473
20064
  workerBundleHash: Type.TString;
19474
20065
  providerId: Type.TOptional<Type.TString>;
19475
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
+ }>>;
19476
20074
  generation: Type.TInteger;
19477
20075
  createdAtMs: Type.TInteger;
19478
20076
  updatedAtMs: Type.TInteger;
@@ -19495,6 +20093,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19495
20093
  workerBundleHash: Type.TOptional<Type.TString>;
19496
20094
  providerId: Type.TOptional<Type.TString>;
19497
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
+ }>>;
19498
20103
  generation: Type.TInteger;
19499
20104
  createdAtMs: Type.TInteger;
19500
20105
  updatedAtMs: Type.TInteger;
@@ -19519,6 +20124,13 @@ declare const SessionPlacementSchema: Type.TUnion<[Type.TObject<{
19519
20124
  workerBundleHash: Type.TOptional<Type.TString>;
19520
20125
  providerId: Type.TOptional<Type.TString>;
19521
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
+ }>>;
19522
20134
  generation: Type.TInteger;
19523
20135
  createdAtMs: Type.TInteger;
19524
20136
  updatedAtMs: Type.TInteger;
@@ -19539,6 +20151,7 @@ declare const SessionsDispatchParamsSchema: Type.TObject<{
19539
20151
  deviceId: Type.TOptional<Type.TString>;
19540
20152
  autoDevice: Type.TOptional<Type.TLiteral<true>>;
19541
20153
  machineClass: Type.TOptional<Type.TString>;
20154
+ os: Type.TOptional<Type.TString>;
19542
20155
  }>;
19543
20156
  /** Result returned once session dispatch reaches durable worker ownership. */
19544
20157
  declare const SessionsDispatchResultSchema: Type.TObject<{
@@ -19551,6 +20164,7 @@ declare const SessionsDispatchResultSchema: Type.TObject<{
19551
20164
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19552
20165
  deviceId: Type.TOptional<Type.TString>;
19553
20166
  }>>;
20167
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19554
20168
  diskSpace: Type.TOptional<Type.TObject<{
19555
20169
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19556
20170
  availableBytes: Type.TInteger;
@@ -19571,6 +20185,13 @@ declare const SessionsDispatchResultSchema: Type.TObject<{
19571
20185
  workerBundleHash: Type.TString;
19572
20186
  providerId: Type.TOptional<Type.TString>;
19573
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
+ }>>;
19574
20195
  generation: Type.TInteger;
19575
20196
  createdAtMs: Type.TInteger;
19576
20197
  updatedAtMs: Type.TInteger;
@@ -19607,6 +20228,13 @@ declare const SessionsReclaimResultPlacementSchema: Type.TUnion<[Type.TObject<{
19607
20228
  workerBundleHash: Type.TOptional<Type.TString>;
19608
20229
  providerId: Type.TOptional<Type.TString>;
19609
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
+ }>>;
19610
20238
  generation: Type.TInteger;
19611
20239
  createdAtMs: Type.TInteger;
19612
20240
  updatedAtMs: Type.TInteger;
@@ -19641,6 +20269,13 @@ declare const SessionsReclaimResultSchema: Type.TObject<{
19641
20269
  workerBundleHash: Type.TOptional<Type.TString>;
19642
20270
  providerId: Type.TOptional<Type.TString>;
19643
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
+ }>>;
19644
20279
  generation: Type.TInteger;
19645
20280
  createdAtMs: Type.TInteger;
19646
20281
  updatedAtMs: Type.TInteger;
@@ -19663,6 +20298,7 @@ declare const SessionMoveProfileTargetSchema: Type.TObject<{
19663
20298
  kind: Type.TLiteral<"profile">;
19664
20299
  profileId: Type.TString;
19665
20300
  machineClass: Type.TOptional<Type.TString>;
20301
+ os: Type.TOptional<Type.TString>;
19666
20302
  }>;
19667
20303
  /** Moves the session to one paired device worker. */
19668
20304
  declare const SessionMoveDeviceTargetSchema: Type.TObject<{
@@ -19676,6 +20312,7 @@ declare const SessionMoveTargetSchema: Type.TUnion<[Type.TObject<{
19676
20312
  kind: Type.TLiteral<"profile">;
19677
20313
  profileId: Type.TString;
19678
20314
  machineClass: Type.TOptional<Type.TString>;
20315
+ os: Type.TOptional<Type.TString>;
19679
20316
  }>, Type.TObject<{
19680
20317
  kind: Type.TLiteral<"device">;
19681
20318
  deviceId: Type.TString;
@@ -19688,6 +20325,7 @@ declare const SessionPlacementMoveSchema: Type.TObject<{
19688
20325
  kind: Type.TLiteral<"profile">;
19689
20326
  profileId: Type.TString;
19690
20327
  machineClass: Type.TOptional<Type.TString>;
20328
+ os: Type.TOptional<Type.TString>;
19691
20329
  }>, Type.TObject<{
19692
20330
  kind: Type.TLiteral<"device">;
19693
20331
  deviceId: Type.TString;
@@ -19710,6 +20348,7 @@ declare const SessionsMoveParamsSchema: Type.TObject<{
19710
20348
  kind: Type.TLiteral<"profile">;
19711
20349
  profileId: Type.TString;
19712
20350
  machineClass: Type.TOptional<Type.TString>;
20351
+ os: Type.TOptional<Type.TString>;
19713
20352
  }>, Type.TObject<{
19714
20353
  kind: Type.TLiteral<"device">;
19715
20354
  deviceId: Type.TString;
@@ -19746,6 +20385,13 @@ declare const SessionPlacementProtocolSchemas: {
19746
20385
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19747
20386
  deviceId: Type.TOptional<Type.TString>;
19748
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
+ }>;
19749
20395
  readonly LocalSessionPlacement: Type.TObject<{
19750
20396
  generation: Type.TInteger;
19751
20397
  createdAtMs: Type.TInteger;
@@ -19764,6 +20410,13 @@ declare const SessionPlacementProtocolSchemas: {
19764
20410
  environmentId: Type.TOptional<Type.TString>;
19765
20411
  providerId: Type.TOptional<Type.TString>;
19766
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
+ }>>;
19767
20420
  generation: Type.TInteger;
19768
20421
  createdAtMs: Type.TInteger;
19769
20422
  updatedAtMs: Type.TInteger;
@@ -19775,6 +20428,13 @@ declare const SessionPlacementProtocolSchemas: {
19775
20428
  workerBundleHash: Type.TString;
19776
20429
  providerId: Type.TOptional<Type.TString>;
19777
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
+ }>>;
19778
20438
  generation: Type.TInteger;
19779
20439
  createdAtMs: Type.TInteger;
19780
20440
  updatedAtMs: Type.TInteger;
@@ -19788,6 +20448,13 @@ declare const SessionPlacementProtocolSchemas: {
19788
20448
  workerBundleHash: Type.TString;
19789
20449
  providerId: Type.TOptional<Type.TString>;
19790
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
+ }>>;
19791
20458
  generation: Type.TInteger;
19792
20459
  createdAtMs: Type.TInteger;
19793
20460
  updatedAtMs: Type.TInteger;
@@ -19800,6 +20467,7 @@ declare const SessionPlacementProtocolSchemas: {
19800
20467
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19801
20468
  deviceId: Type.TOptional<Type.TString>;
19802
20469
  }>>;
20470
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19803
20471
  diskSpace: Type.TOptional<Type.TObject<{
19804
20472
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19805
20473
  availableBytes: Type.TInteger;
@@ -19820,6 +20488,13 @@ declare const SessionPlacementProtocolSchemas: {
19820
20488
  workerBundleHash: Type.TString;
19821
20489
  providerId: Type.TOptional<Type.TString>;
19822
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
+ }>>;
19823
20498
  generation: Type.TInteger;
19824
20499
  createdAtMs: Type.TInteger;
19825
20500
  updatedAtMs: Type.TInteger;
@@ -19827,6 +20502,7 @@ declare const SessionPlacementProtocolSchemas: {
19827
20502
  state: Type.TLiteral<"active">;
19828
20503
  }>;
19829
20504
  readonly DrainingSessionPlacement: Type.TObject<{
20505
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19830
20506
  diskSpace: Type.TOptional<Type.TObject<{
19831
20507
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19832
20508
  availableBytes: Type.TInteger;
@@ -19847,6 +20523,13 @@ declare const SessionPlacementProtocolSchemas: {
19847
20523
  workerBundleHash: Type.TString;
19848
20524
  providerId: Type.TOptional<Type.TString>;
19849
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
+ }>>;
19850
20533
  generation: Type.TInteger;
19851
20534
  createdAtMs: Type.TInteger;
19852
20535
  updatedAtMs: Type.TInteger;
@@ -19874,6 +20557,13 @@ declare const SessionPlacementProtocolSchemas: {
19874
20557
  workerBundleHash: Type.TString;
19875
20558
  providerId: Type.TOptional<Type.TString>;
19876
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
+ }>>;
19877
20567
  generation: Type.TInteger;
19878
20568
  createdAtMs: Type.TInteger;
19879
20569
  updatedAtMs: Type.TInteger;
@@ -19897,6 +20587,13 @@ declare const SessionPlacementProtocolSchemas: {
19897
20587
  workerBundleHash: Type.TOptional<Type.TString>;
19898
20588
  providerId: Type.TOptional<Type.TString>;
19899
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
+ }>>;
19900
20597
  generation: Type.TInteger;
19901
20598
  createdAtMs: Type.TInteger;
19902
20599
  updatedAtMs: Type.TInteger;
@@ -19922,6 +20619,13 @@ declare const SessionPlacementProtocolSchemas: {
19922
20619
  workerBundleHash: Type.TOptional<Type.TString>;
19923
20620
  providerId: Type.TOptional<Type.TString>;
19924
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
+ }>>;
19925
20629
  generation: Type.TInteger;
19926
20630
  createdAtMs: Type.TInteger;
19927
20631
  updatedAtMs: Type.TInteger;
@@ -19944,6 +20648,13 @@ declare const SessionPlacementProtocolSchemas: {
19944
20648
  environmentId: Type.TOptional<Type.TString>;
19945
20649
  providerId: Type.TOptional<Type.TString>;
19946
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
+ }>>;
19947
20658
  generation: Type.TInteger;
19948
20659
  createdAtMs: Type.TInteger;
19949
20660
  updatedAtMs: Type.TInteger;
@@ -19954,6 +20665,13 @@ declare const SessionPlacementProtocolSchemas: {
19954
20665
  workerBundleHash: Type.TString;
19955
20666
  providerId: Type.TOptional<Type.TString>;
19956
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
+ }>>;
19957
20675
  generation: Type.TInteger;
19958
20676
  createdAtMs: Type.TInteger;
19959
20677
  updatedAtMs: Type.TInteger;
@@ -19966,6 +20684,13 @@ declare const SessionPlacementProtocolSchemas: {
19966
20684
  workerBundleHash: Type.TString;
19967
20685
  providerId: Type.TOptional<Type.TString>;
19968
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
+ }>>;
19969
20694
  generation: Type.TInteger;
19970
20695
  createdAtMs: Type.TInteger;
19971
20696
  updatedAtMs: Type.TInteger;
@@ -19977,6 +20702,7 @@ declare const SessionPlacementProtocolSchemas: {
19977
20702
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
19978
20703
  deviceId: Type.TOptional<Type.TString>;
19979
20704
  }>>;
20705
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
19980
20706
  diskSpace: Type.TOptional<Type.TObject<{
19981
20707
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
19982
20708
  availableBytes: Type.TInteger;
@@ -19997,12 +20723,20 @@ declare const SessionPlacementProtocolSchemas: {
19997
20723
  workerBundleHash: Type.TString;
19998
20724
  providerId: Type.TOptional<Type.TString>;
19999
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
+ }>>;
20000
20733
  generation: Type.TInteger;
20001
20734
  createdAtMs: Type.TInteger;
20002
20735
  updatedAtMs: Type.TInteger;
20003
20736
  stateChangedAtMs: Type.TInteger;
20004
20737
  state: Type.TLiteral<"active">;
20005
20738
  }>, Type.TObject<{
20739
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
20006
20740
  diskSpace: Type.TOptional<Type.TObject<{
20007
20741
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
20008
20742
  availableBytes: Type.TInteger;
@@ -20023,6 +20757,13 @@ declare const SessionPlacementProtocolSchemas: {
20023
20757
  workerBundleHash: Type.TString;
20024
20758
  providerId: Type.TOptional<Type.TString>;
20025
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
+ }>>;
20026
20767
  generation: Type.TInteger;
20027
20768
  createdAtMs: Type.TInteger;
20028
20769
  updatedAtMs: Type.TInteger;
@@ -20049,6 +20790,13 @@ declare const SessionPlacementProtocolSchemas: {
20049
20790
  workerBundleHash: Type.TString;
20050
20791
  providerId: Type.TOptional<Type.TString>;
20051
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
+ }>>;
20052
20800
  generation: Type.TInteger;
20053
20801
  createdAtMs: Type.TInteger;
20054
20802
  updatedAtMs: Type.TInteger;
@@ -20071,6 +20819,13 @@ declare const SessionPlacementProtocolSchemas: {
20071
20819
  workerBundleHash: Type.TOptional<Type.TString>;
20072
20820
  providerId: Type.TOptional<Type.TString>;
20073
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
+ }>>;
20074
20829
  generation: Type.TInteger;
20075
20830
  createdAtMs: Type.TInteger;
20076
20831
  updatedAtMs: Type.TInteger;
@@ -20095,6 +20850,13 @@ declare const SessionPlacementProtocolSchemas: {
20095
20850
  workerBundleHash: Type.TOptional<Type.TString>;
20096
20851
  providerId: Type.TOptional<Type.TString>;
20097
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
+ }>>;
20098
20860
  generation: Type.TInteger;
20099
20861
  createdAtMs: Type.TInteger;
20100
20862
  updatedAtMs: Type.TInteger;
@@ -20108,6 +20870,7 @@ declare const SessionPlacementProtocolSchemas: {
20108
20870
  deviceId: Type.TOptional<Type.TString>;
20109
20871
  autoDevice: Type.TOptional<Type.TLiteral<true>>;
20110
20872
  machineClass: Type.TOptional<Type.TString>;
20873
+ os: Type.TOptional<Type.TString>;
20111
20874
  }>;
20112
20875
  readonly SessionsDispatchResult: Type.TObject<{
20113
20876
  ok: Type.TLiteral<true>;
@@ -20119,6 +20882,7 @@ declare const SessionPlacementProtocolSchemas: {
20119
20882
  status: Type.TUnion<[Type.TLiteral<"available">, Type.TLiteral<"offline">]>;
20120
20883
  deviceId: Type.TOptional<Type.TString>;
20121
20884
  }>>;
20885
+ workspaceResultReconciling: Type.TOptional<Type.TLiteral<true>>;
20122
20886
  diskSpace: Type.TOptional<Type.TObject<{
20123
20887
  status: Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"warning">, Type.TLiteral<"critical">]>;
20124
20888
  availableBytes: Type.TInteger;
@@ -20139,6 +20903,13 @@ declare const SessionPlacementProtocolSchemas: {
20139
20903
  workerBundleHash: Type.TString;
20140
20904
  providerId: Type.TOptional<Type.TString>;
20141
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
+ }>>;
20142
20913
  generation: Type.TInteger;
20143
20914
  createdAtMs: Type.TInteger;
20144
20915
  updatedAtMs: Type.TInteger;
@@ -20173,6 +20944,13 @@ declare const SessionPlacementProtocolSchemas: {
20173
20944
  workerBundleHash: Type.TOptional<Type.TString>;
20174
20945
  providerId: Type.TOptional<Type.TString>;
20175
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
+ }>>;
20176
20954
  generation: Type.TInteger;
20177
20955
  createdAtMs: Type.TInteger;
20178
20956
  updatedAtMs: Type.TInteger;
@@ -20206,6 +20984,13 @@ declare const SessionPlacementProtocolSchemas: {
20206
20984
  workerBundleHash: Type.TOptional<Type.TString>;
20207
20985
  providerId: Type.TOptional<Type.TString>;
20208
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
+ }>>;
20209
20994
  generation: Type.TInteger;
20210
20995
  createdAtMs: Type.TInteger;
20211
20996
  updatedAtMs: Type.TInteger;
@@ -20225,6 +21010,7 @@ declare const SessionPlacementProtocolSchemas: {
20225
21010
  kind: Type.TLiteral<"profile">;
20226
21011
  profileId: Type.TString;
20227
21012
  machineClass: Type.TOptional<Type.TString>;
21013
+ os: Type.TOptional<Type.TString>;
20228
21014
  }>;
20229
21015
  readonly SessionMoveDeviceTarget: Type.TObject<{
20230
21016
  kind: Type.TLiteral<"device">;
@@ -20236,6 +21022,7 @@ declare const SessionPlacementProtocolSchemas: {
20236
21022
  kind: Type.TLiteral<"profile">;
20237
21023
  profileId: Type.TString;
20238
21024
  machineClass: Type.TOptional<Type.TString>;
21025
+ os: Type.TOptional<Type.TString>;
20239
21026
  }>, Type.TObject<{
20240
21027
  kind: Type.TLiteral<"device">;
20241
21028
  deviceId: Type.TString;
@@ -20247,6 +21034,7 @@ declare const SessionPlacementProtocolSchemas: {
20247
21034
  kind: Type.TLiteral<"profile">;
20248
21035
  profileId: Type.TString;
20249
21036
  machineClass: Type.TOptional<Type.TString>;
21037
+ os: Type.TOptional<Type.TString>;
20250
21038
  }>, Type.TObject<{
20251
21039
  kind: Type.TLiteral<"device">;
20252
21040
  deviceId: Type.TString;
@@ -20268,6 +21056,7 @@ declare const SessionPlacementProtocolSchemas: {
20268
21056
  kind: Type.TLiteral<"profile">;
20269
21057
  profileId: Type.TString;
20270
21058
  machineClass: Type.TOptional<Type.TString>;
21059
+ os: Type.TOptional<Type.TString>;
20271
21060
  }>, Type.TObject<{
20272
21061
  kind: Type.TLiteral<"device">;
20273
21062
  deviceId: Type.TString;
@@ -20292,6 +21081,7 @@ declare const SessionPlacementProtocolSchemas: {
20292
21081
  type SessionPlacement = Static<typeof SessionPlacementSchema>;
20293
21082
  type SessionPlacementDiskSpace = Static<typeof SessionPlacementDiskSpaceSchema>;
20294
21083
  type SessionPlacementRunner = Static<typeof SessionPlacementRunnerSchema>;
21084
+ type SessionPlacementMachine = Static<typeof SessionPlacementMachineSchema>;
20295
21085
  type SessionsDispatchParams = Static<typeof SessionsDispatchParamsSchema>;
20296
21086
  type SessionsDispatchResult = Static<typeof SessionsDispatchResultSchema>;
20297
21087
  type SessionsReclaimParams = Static<typeof SessionsReclaimParamsSchema>;
@@ -20435,6 +21225,8 @@ declare const SESSIONS_PATCH_MANY_MAX_TARGETS = 100;
20435
21225
  /** Mutable per-session preferences and routing metadata. */
20436
21226
  declare const SessionsPatchParamsSchema: Type.TObject<{
20437
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]>>;
20438
21230
  icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20439
21231
  /** Named sidebar tint from SESSION_COLOR_IDS; null clears it. */
20440
21232
  color: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -20489,6 +21281,8 @@ declare const SessionsPatchParamsSchema: Type.TObject<{
20489
21281
  }>;
20490
21282
  declare const SessionsPatchMutationSchema: Type.TObject<{
20491
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]>>;
20492
21286
  icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20493
21287
  /** Named sidebar tint from SESSION_COLOR_IDS; null clears it. */
20494
21288
  color: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -20543,6 +21337,8 @@ declare const SessionsPatchManyParamsSchema: Type.TObject<{
20543
21337
  }>>;
20544
21338
  patch: Type.TObject<{
20545
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]>>;
20546
21342
  icon: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
20547
21343
  /** Named sidebar tint from SESSION_COLOR_IDS; null clears it. */
20548
21344
  color: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
@@ -22422,8 +23218,11 @@ type TerminalUploadParams = Static<typeof TerminalUploadParamsSchema>;
22422
23218
  declare const TerminalUploadResultSchema: Type.TObject<{
22423
23219
  path: Type.TString;
22424
23220
  size: Type.TInteger;
23221
+ /** Explicit path insertion contract for a native CLI rather than a shell. */
23222
+ uploadPathStyle: Type.TOptional<Type.TLiteral<"native">>;
22425
23223
  }>;
22426
23224
  type TerminalUploadResult = Static<typeof TerminalUploadResultSchema>;
23225
+ type TerminalUploadPathStyle = NonNullable<TerminalUploadResult["uploadPathStyle"]>;
22427
23226
  /** Resizes the PTY grid after the client viewport changes. */
22428
23227
  declare const TerminalResizeParamsSchema: Type.TObject<{
22429
23228
  sessionId: Type.TString;
@@ -23884,6 +24683,7 @@ declare const WorktreesBranchesResultSchema: Type.TObject<{
23884
24683
  defaultBranch: Type.TOptional<Type.TString>;
23885
24684
  headBranch: Type.TOptional<Type.TString>;
23886
24685
  repositoryStatus: Type.TOptional<Type.TString>;
24686
+ branchesUnavailable: Type.TOptional<Type.TBoolean>;
23887
24687
  }>;
23888
24688
  declare const WorktreesRestoreParamsSchema: Type.TObject<{
23889
24689
  id: Type.TString;
@@ -23908,7 +24708,7 @@ type WorktreeRepositoryStatus = (typeof WORKTREE_REPOSITORY_STATUSES)[number];
23908
24708
  type WorktreesBranchesParams = Static<typeof WorktreesBranchesParamsSchema>;
23909
24709
  type WorktreesBranchesResult = Static<typeof WorktreesBranchesResultSchema>;
23910
24710
  declare namespace schema_modules_d_exports {
23911
- 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, 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, 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, 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, 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, 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 };
23912
24712
  }
23913
24713
  //#endregion
23914
- export { WorkerConnectRequestFrame as $, SessionSuggestionsListParamsSchema as $A, AgentsCreateResult as $C, ConversationTurnParams as $D, ToolsGitHubAuthorizeCancelResultSchema as $E, PendingSessionApprovalEventSchema as $F, ProjectCloneErrorDetailsSchema as $I, PluginsListParamsSchema as $L, BoardLegacyEventParamsSchema as $M, BoardWidgetRegisteredContentSchema as $N, SessionsCatalogListResultSchema as $O, WorkerInferenceTerminalOutcome as $P, PrincipalRefV1 as $S, SkillsProposalUpdateParams as $T, UpdateRunsListResult as $_, SessionsBranchesSwitchParams as $a, UsersAuthConnectCatalogParamsSchema as $b, SessionPlacementRunnerSchema as $c, ChatEvent as $d, MentionsChangedEventSchema as $f, SystemAgentChatHistoryResult as $g, WorkerEnvironmentMetadataSchema as $h, SessionsResolveResultSchema as $i, TranscriptsListParams as $j, TaskSummary as $k, QuestionRequestParams as $l, ExecApprovalRequestParamsSchema as $m, TerminalCloseParams as $n, SessionsFilesSetParamsSchema as $o, DesktopSource as $p, PresenceEntrySchema as $r, SessionsSearchResultSchema as $s, WorkerTranscriptCommitResultSchema as $t, NodeHostStatsPayloadSchema as $u, ChannelsPairingAccount as $v, ModelsProbeResult as $w, UsersPrefsSetResult as $x, TalkSessionAppendAudioParams as $y, WORKER_HEARTBEAT_INTERVAL_MS as A, PreservedSessionWorktreeSchema as AA, ArtifactsListParams as AC, AgentEvent as AD, ToolCatalogEntrySchema as AE, ApprovalResolveParams as AF, SessionGitHubPublicationFailed as AI, PluginJsonValueSchema as AL, BOARD_CRON_JOB_ID_MAX_LENGTH as AM, BoardWidgetDeclaredSchema as AN, SessionCatalogLocatorSchema as AO, WorkerInferenceCancelParams as AP, GATEWAY_OWNER_PROFILE_ID as AS, SkillsProposalCreateParamsSchema as AT, SystemAgentWizardCancelSchema as A_, SessionGroupDefaults as Aa, ChatAccountSelectionSchema as Ab, SessionDiscussionOpenParamsSchema as Ac, NodePluginToolDescriptorSchema as Ad, ChatStatusEvent as Af, CronAddParamsSchema as Ag, EnvironmentsListResult as Ah, SessionSharingEvidenceEvent as Ai, SessionRunStatus as Aj, ProjectsAddParams as Ak, SecretsStoreDeleteParamsSchema as Al, DeviceTokenRotateResultSchema as Am, PortalCloseParamsSchema as An, SessionsCompanionStateResultSchema as Ao, GatewaySuspendStatusDrainingResultSchema as Ap, TaskSuggestionsAcceptParamsSchema as Ar, SessionsObserverVisibilityParams as As, WorkerProviderReplayStateSchema as At, WebPushNotificationCategory as Au, UpdateScheduleStateSchema as Av, GitHubAuthorSchema as Aw, UsersLinkEmailParamsSchema as Ax, TalkClientCloseParamsSchema as Ay, WORKER_RPC_SET_VERSION as B, SessionSuggestionActionSchema as BA, AgentsWorkspaceGetResult as BC, ConversationListItemSchema as BD, ToolsEffectiveEntrySchema as BE, CancelledApprovalSnapshot as BF, SessionGitHubPublicationResultSchema as BI, PluginsControlUiReloadParamsSchema as BL, BoardChatDockSchema as BM, BoardWidgetMcpAppPutContentSchema as BN, SessionsCatalogArchiveParams as BO, WorkerInferenceEventParams as BP, AuditRunIdentityUnsupportedV1Schema as BS, SkillsProposalEventsListResultSchema as BT, SystemChangesListResultSchema as B_, SessionOperationEventSchema as Ba, UserModelAccountSchema as Bb, SessionMovePlacementSchema as Bc, NodeRenameParamsSchema as Bd, QueueMode as Bf, CronRemoveParamsSchema as Bg, RuntimeTargetIssue as Bh, SessionSharingRoleSchema as Bi, TRANSCRIPTS_RESULT_MAX_BYTES as Bj, ProjectsRegisterResult as Bk, QuestionAnswersSchema as Bl, ScopeUpgradeWait as Bm, PortalOpenResultSchema as Bn, SessionsFilesGetParams as Bo, GatewaySuspensionSchema as Bp, TaskSuggestionsDismissResultSchema as Br, SessionsRecoverParams as Bs, WorkerSessionsSpawnResponseFrame as Bt, WebPushTestParams as Bu, COMMAND_CHOICE_LABEL_MAX_LENGTH as Bv, ModelChoiceSchema as Bw, UsersListModelAccountsResultSchema as Bx, TalkClientToolCallParamsSchema as By, WorktreesRemoveParamsSchema as C, SessionsGoalClearParams as CA, ArtifactsDownloadParamsSchema as CC, ToolsGitHubStatusResult as CD, SkillsUploadChunkParams as CE, ApprovalHistoryParamsSchema as CF, GitHubPublicationSelection as CI, PluginDeclaredSurfaceWideningSchema as CL, ProgressCardStepSchema as CM, BoardWidgetAppViewParams as CN, SessionCatalogCapabilities as CO, validateSkillsProposalHistoryScanParams as CP, PluginsUiDescriptorsResultSchema as CR, UsersUnlinkAuthProfileResult as CS, SkillsInstallParams as CT, SystemAgentSetupDetectResult as C_, SessionFileKind as Ca, TtsSpeakResult as Cb, SessionDiscussionInfo as Cc, NodePendingDrainResult as Cd, ChatRunStartupPhase as Cf, CronScratchGetParams as Cg, EnvironmentsCreateResultSchema as Ch, SessionPublicShareSetParamsSchema as Ci, SessionEntryArchiveReasonSchema as Cj, ProjectRecentProjectSchema as Ck, SecretsReloadParamsSchema as Cl, DevicePairSetupStatusResult as Cm, WizardStatusResult as Cn, SessionsCompanionResetParams as Co, GatewaySuspendPrepareReadyResultSchema as Cp, TaskSuggestion as Cr, SessionsGroupsUpdateParamsSchema as Cs, WorkerLiveEventSchema as Ct, PushTestParamsSchema as Cu, UpdateReportParams as Cv, AgentsUpdateParams as Cw, UsersGitHubStatusResult as Cx, TalkAgentControlResult as Cy, WorktreesRestoreParamsSchema as D, SessionsGoalUpdateParams as DA, ArtifactsGetParamsSchema as DC, ToolsInvokeParamsSchema as DD, SkillsWorkshopReadParamsSchema as DE, ApprovalKindSchema as DF, SessionGitHubConfirmParamsSchema as DI, PluginInspectSourceSchema as DL, CanvasDocumentViewParamsSchema as DM, BoardWidgetContent as DN, SessionCatalogHost as DO, WORKER_INFERENCE_METHODS as DP, PluginsUninstallResultSchema as DR, UI_APPEARANCE_PREFERENCE_KEYS as DS, SkillsProposalApplyResult as DT, SystemAgentSetupVerifyResult as D_, SessionFileRelevance as Da, WebLoginWaitParams as Db, SessionDiscussionInfoResultSchema as Dc, NodePendingEnqueueResult as Dd, ChatSendParamsSchema as Df, CronStatusParams as Dg, EnvironmentsDestroyResultSchema as Dh, SessionSharingActionSchema as Di, SessionPermissionModeSchema as Dj, ProjectRecordSchema as Dk, SecretsResolveResult as Dl, DeviceTokenRotateParams as Dm, PortalChangedEvent as Dn, SessionsCompanionStateParams as Do, GatewaySuspendResumeParamsSchema as Dp, TaskSuggestionResolutionSchema as Dr, SessionsMessagesSubscribeParamsSchema as Ds, WorkerPortalResponseFrameSchema as Dt, WebPushDetailLevelSchema as Du, UpdateRunParams as Dv, AuthProbeStatus as Dw, UsersLinkAuthProfileResult as Dx, TalkCatalogResult as Dy, WorktreesRestoreParams as E, SessionsGoalMutationResultSchema as EA, ArtifactsGetParams as EC, ToolsInvokeParams as ED, SkillsUploadCommitParamsSchema as EE, ApprovalKind as EF, SessionGitHubConfirmParams as EI, PluginInspectSource as EL, CanvasDocumentViewParams as EM, BoardWidgetAppViewResultSchema as EN, SessionCatalogDescriptorSchema as EO, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as EP, PluginsUninstallResult as ER, users_d_exports as ES, SkillsProposalActionParamsSchema as ET, SystemAgentSetupVerifyParamsSchema as E_, SessionFilePreviewKindSchema as Ea, WebLoginStartParamsSchema as Eb, SessionDiscussionInfoResult as Ec, NodePendingEnqueueParamsSchema as Ed, ChatSendIntentSchema as Ef, CronScratchSetResult as Eg, EnvironmentsDestroyResult as Eh, SessionSharingAction as Ei, SessionPermissionMode as Ej, ProjectRecord as Ek, SecretsResolveParamsSchema as El, DeviceTokenRevokeParamsSchema as Em, WizardStepSchema as En, SessionsCompanionResetResultSchema as Eo, GatewaySuspendResumeParams as Ep, TaskSuggestionResolution as Er, SessionsMessagesSubscribeParams as Es, WorkerPortalResponseFrame as Et, WebPushDetailLevel as Eu, UpdateReportResultSchema as Ev, AgentsUpdateResultSchema as Ew, UsersLinkAuthProfileParamsSchema as Ex, TalkCatalogParamsSchema as Ey, WORKER_PROTOCOL_MAX_FEATURES as F, WORKTREE_PRESERVATION_REASONS as FA, AgentsWorkspaceEntrySchema as FC, AgentIdentityResultSchema as FD, ToolsCatalogParams as FE, ApprovalScopeSchema as FF, SessionGitHubPublicationPublishing as FI, PluginsControlUiCatalog as FL, BoardActionParamsSchema as FM, BoardWidgetHeightModeSchema as FN, SessionCatalogSessionSchema as FO, WorkerInferenceCancelResult as FP, AuditListResult as FS, SkillsProposalEvaluateResult as FT, SystemChangeSource as F_, SessionObserverHealth as Fa, PersonalGitHubStatusSchema as Fb, SessionMoveDeviceTargetSchema as Fc, NodePresenceAlivePayload as Fd, ChatToolTitlesResultSchema as Ff, CronGetParamsSchema as Fg, EnvironmentsStatusResultSchema as Fh, SessionVisibilitySetParamsSchema as Fi, TRANSCRIPTS_LEGACY_MAX_UTTERANCES as Fj, ProjectsListParamsSchema as Fk, SecretsStoreMutationResultSchema as Fl, ScopeUpgradeRejectedSchema as Fm, PortalListResult as Fn, SessionsDescribeParamsSchema as Fo, GatewaySuspendStatusResultSchema as Fp, TaskSuggestionsCreateResult as Fr, SessionsPluginPatchParamsSchema as Fs, WorkerSessionsSendParamsSchema as Ft, WebPushPreferencesGetParamsSchema as Fu, COMMAND_ALIAS_MAX_ITEMS as Fv, GitHubSelectedIdentity as Fw, UsersListAuthLinksResult as Fx, TalkClientMutationResult as Fy, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as G, SessionSuggestionSchema as GA, AgentsWorkspaceListResultSchema as GC, ConversationSendParams as GD, ToolsEffectiveParams as GE, ExecApprovalPresentationSchema as GF, SessionGitHubStatusResultSchema as GI, PluginsInspectParamsSchema as GL, BoardCronActionParamsSchema as GM, BoardWidgetPluginPropsSchema as GN, SessionsCatalogContinueParamsSchema as GO, WorkerInferenceOptionsSchema as GP, AuditRunInspectResult as GS, SkillsProposalRecordResult as GT, UpdateRunResult as G_, SessionsAssignOwnerParams as Ga, UserProfileGitHubIdentity as Gb, SessionMoveTargetSchema as Gc, NODE_PRESENCE_ALIVE_REASONS as Gd, MAX_HUMAN_MENTIONS as Gf, CronScratchGetResultSchema as Gg, WorkerDesktopLaunchParamsSchema as Gh, SessionsViewerPresenceSetParamsSchema as Gi, TranscriptsExportParams as Gj, ProjectsRemoveResultSchema as Gk, QuestionListParams as Gl, ExecApprovalGrantsListParamsSchema as Gm, PluginApprovalResolveParams as Gn, SessionsFilesListParamsSchema as Go, FsListDirResult as Gp, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as Gr, SessionsRewindParamsSchema as Gs, WorkerTranscriptCommitErrorShapeSchema as Gt, WebPushVapidPublicKeyParamsSchema as Gu, CommandEntry as Gv, ModelsAuthStatusParams as Gw, UsersPrefsChangedEvent as Gx, TalkConfigParams as Gy, WORKER_SESSION_TOOL_MAX_TEXT_LENGTH as H, SessionSuggestionEventSchema as HA, AgentsWorkspaceListParams as HC, ConversationListParamsSchema as HD, ToolsEffectiveGroupSchema as HE, DeniedApprovalSnapshot as HF, SessionGitHubPublishParamsSchema as HI, PluginsControlUiStatusParamsSchema as HL, BoardCommandEvent as HM, BoardWidgetNameSchema as HN, SessionsCatalogArchiveResult as HO, WorkerInferenceModelRef as HP, AuditRunIdentityV1Schema as HS, SkillsProposalInspectParamsSchema as HT, UpdateRunChangedEventSchema as H_, SessionWorktreeInfoSchema as Ha, UserProfileAuthLink as Hb, SessionMovePlacementStateSchema as Hc, NodeSkillDescriptorSchema as Hd, HumanMention as Hf, CronRunParamsSchema as Hg, WorkerDesktopAppId as Hh, SessionVisibilitySchema as Hi, TranscriptSessionSummarySchema as Hj, ProjectsRemoveParams as Hk, QuestionGetParamsSchema as Hl, ExecApprovalGetParams as Hm, PortalSummarySchema as Hn, SessionsFilesGetResult as Ho, FsDirEntrySchema as Hp, TaskSuggestionsListParamsSchema as Hr, SessionsResetParams as Hs, WorkerTranscriptCommitErrorReason as Ht, WebPushUnsubscribeParams as Hu, COMMAND_DESCRIPTION_MAX_LENGTH as Hv, ModelsAuthLogoutParamsSchema as Hw, UsersListParamsSchema as Hx, TalkClientToolCallResultSchema as Hy, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as I, WorktreePreservationReason as IA, AgentsWorkspaceFile as IC, AgentParamsSchema as ID, ToolsCatalogParamsSchema as IE, ApprovalSnapshot as IF, SessionGitHubPublicationPublishingSchema as II, PluginsControlUiCatalogSchema as IL, BoardCanvasDocumentSource as IM, BoardWidgetHtmlContentSchema as IN, SessionCatalogShareRoute as IO, WorkerInferenceContext as IP, AuditListResultSchema as IS, SkillsProposalEvaluateResultSchema as IT, SystemChangeSourceSchema as I_, SessionObserverHealthSchema as Ia, USER_PREFS_ENTRY_LIMIT as Ib, SessionMoveExpectedSource as Ic, NodePresenceAlivePayloadSchema as Id, LogsTailParams as If, CronJobSchema as Ig, RequiredNodeCommand as Ih, SessionVisibilitySetResult as Ii, TRANSCRIPTS_LEGACY_RESULT_MAX_BYTES as Ij, ProjectsListResult as Ik, SecretsStoreSetParams as Il, ScopeUpgradeRequest as Im, PortalListResultSchema as In, SessionsDiffParams as Io, GatewaySuspendStatusRunningResultSchema as Ip, TaskSuggestionsCreateResultSchema as Ir, SessionsPluginPatchResult as Is, WorkerSessionsSendResponseFrame as It, WebPushPreferencesSetParams as Iu, COMMAND_ARGS_MAX_ITEMS as Iv, GitHubSelectedIdentitySchema as Iw, UsersListAuthLinksResultSchema as Ix, TalkClientMutationResultSchema as Iy, WorkerAdmissionHandshake as J, SessionSuggestionsAddParams as JA, AgentOwnershipSchema as JC, ConversationSendResultSchema as JD, ToolsEffectiveResultSchema as JE, ExternalPostApprovalScopeSchema as JF, GatewayErrorDetailsSchema as JI, PluginsInstallParams as JL, BoardEventParams as JM, BoardWidgetPutContentSchema as JN, SessionsCatalogHostEvent as JO, WorkerInferenceStartRequestFrameSchema as JP, DecisionReceiptDisplayV1Schema as JS, SkillsProposalRequestRevisionParamsSchema as JT, UpdateRunsGetParamsSchema as J_, SessionsAssignOwnerResultSchema as Ja, UsersAuthConnectAnswerParams as Jb, SessionPlacementDiskSpaceSchema as Jc, ChatAbortedEventSchema as Jd, MentionInboxItem as Jf, CronScratchSetResultSchema as Jg, WorkerDesktopObserveParams as Jh, SessionsResolveCandidate as Ji, TranscriptsExportResultSchema as Jj, ProjectsSearchRemoteResult as Jk, QuestionListResultSchema as Jl, ExecApprovalGrantsRevokeParams as Jm, TerminalAckResultSchema as Jn, SessionsFilesRevealParams as Jo, DesktopLaunchParamsSchema as Jp, SystemInfoParams as Jr, SessionsSearchHit as Js, WorkerTranscriptCommitRequestFrame as Jt, NodeEventParams as Ju, CommandsListParamsSchema as Jv, ModelsListParamsSchema as Jw, UsersPrefsGetParamsSchema as Jx, TalkConfigResultSchema as Jy, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as K, SessionSuggestionState as KA, AgentKind as KC, ConversationSendParamsSchema as KD, ToolsEffectiveParamsSchema as KE, ExpiredApprovalSnapshot as KF, session_github_publication_d_exports as KI, PluginsInspectResult as KL, BoardDataReadParams as KM, BoardWidgetPresentationSchema as KN, SessionsCatalogContinueResult as KO, WorkerInferenceStartParams as KP, AuditRunInspectResultSchema as KS, SkillsProposalRecordResultSchema as KT, UpdateRunResultSchema as K_, SessionsAssignOwnerParamsSchema as Ka, UserProfileGitHubIdentitySchema as Kb, SessionPlacement as Kc, ChatAbortParams as Kd, MAX_MENTIONABLE_USERS as Kf, CronScratchSchema as Kg, WorkerDesktopLaunchResult as Kh, SessionsViewerPresenceSetResult as Ki, TranscriptsExportParamsSchema as Kj, ProjectsSearchRemoteParams as Kk, QuestionListParamsSchema as Kl, ExecApprovalGrantsListResult as Km, PluginApprovalResolveParamsSchema as Kn, SessionsFilesListResult as Ko, FsListDirResultSchema as Kp, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as Kr, SessionsRewindResult as Ks, WorkerTranscriptCommitParams as Kt, NodeDescribeParams as Ku, CommandEntrySchema as Kv, ModelsAuthStatusParamsSchema as Kw, UsersPrefsChangedEventSchema as Kx, TalkConfigParamsSchema as Ky, WORKER_PROTOCOL_MAX_METHOD_LENGTH as L, WorktreePreservationReasonSchema as LA, AgentsWorkspaceFileSchema as LC, AgentWaitParams as LD, ToolsCatalogResult as LE, ApprovalSnapshotSchema as LF, SessionGitHubPublicationRequested as LI, PluginsControlUiChangedEventSchema as LL, BoardCanvasDocumentSourceSchema as LM, BoardWidgetMaterializedContent as LN, SessionCatalogShareRouteSchema as LO, WorkerInferenceErrorReason as LP, AuditRunIdentityAmbiguousV1Schema as LS, SkillsProposalEventsListParams as LT, SystemChangesListParams as L_, SessionObserverPlanProgress as La, USER_PREFS_PROFILE_KEY_LIMIT as Lb, SessionMoveExpectedSourceSchema as Lc, NodePresenceAliveReason as Ld, LogsTailParamsSchema as Lf, CronJobStateSchema as Lg, RequiredNodeCommandSchema as Lh, SessionVisibilitySetResultSchema as Li, TRANSCRIPTS_LIST_MAX as Lj, ProjectsListResultSchema as Lk, SecretsStoreSetParamsSchema as Ll, ScopeUpgradeRequestSchema as Lm, PortalOpenParams as Ln, SessionsDiffParamsSchema as Lo, GatewaySuspendTaskBlocker as Lp, TaskSuggestionsDismissParams as Lr, SessionsPluginPatchResultSchema as Ls, WorkerSessionsSendResponseFrameSchema as Lt, WebPushPreferencesSetParamsSchema as Lu, COMMAND_ARG_CHOICES_MAX_ITEMS as Lv, ModelCatalogProviderOutcome as Lw, UsersListModelAccountsParams as Lx, TalkClientSteerParams as Ly, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as M, SessionsDeleteParamsSchema as MA, ArtifactsListResult as MC, AgentIdentityParams as MD, ToolCatalogGroupSchema as ME, ApprovalResolveResult as MF, SessionGitHubPublicationNeedsConfirmationSchema as MI, PluginOperatorGrantsSchema as ML, BOARD_DATA_BINDING_ID_MAX_LENGTH as MM, BoardWidgetGeneratedIdentitySchema as MN, SessionCatalogPullRequestSummarySchema as MO, WorkerInferenceCancelRequestFrameSchema as MP, AuditEventSchema as MS, SkillsProposalDecisionParamsSchema as MT, SystemChangeEntrySchema as M_, SessionGroupSchema as Ma, PersonalGitHubAccountSchema as Mb, SessionDiscussionOpenResultSchema as Mc, NodePluginToolsUpdateParamsSchema as Md, ChatToolTitlesParams as Mf, CronDeclarativeAddResultSchema as Mg, EnvironmentsStatusParams as Mh, SessionSharingIdentity as Mi, SessionToolOverridesSchema as Mj, ProjectsAddResult as Mk, SecretsStoreListResult as Ml, ScopeUpgradeExpiredSchema as Mm, PortalCloseResultSchema as Mn, SessionsCreateResult as Mo, GatewaySuspendStatusParamsSchema as Mp, TaskSuggestionsAcceptResultSchema as Mr, SessionsObserverVisibilityResult as Ms, WorkerSessionToolResult as Mt, WebPushNotificationPreferences as Mu, UpdateStatusParamsSchema as Mv, GitHubIdentityFactsSchema as Mw, UsersLinkEmailResultSchema as Mx, TalkClientCreateParamsSchema as My, WORKER_PORTAL_PROTOCOL_FEATURE as N, SessionsDeleteResult as NA, ArtifactsListResultSchema as NC, AgentIdentityParamsSchema as ND, ToolCatalogProfile as NE, ApprovalResolveResultSchema as NF, SessionGitHubPublicationPublished as NI, PluginSearchPackageSchema as NL, BOARD_WIDGET_TOOL_MAX_LENGTH as NM, BoardWidgetGrantParams as NN, SessionCatalogSchema as NO, WorkerInferenceCancelResponseFrame as NP, AuditListParams as NS, SkillsProposalEvaluateParams as NT, SystemChangeKind as N_, SessionObserverDigest as Na, PersonalGitHubGenerationSchema as Nb, SessionDiscussionState as Nc, NodePresenceActivityPayload as Nd, ChatToolTitlesParamsSchema as Nf, CronDeliveryPreviewSchema as Ng, EnvironmentsStatusParamsSchema as Nh, SessionSharingIdentitySchema as Ni, TRANSCRIPTS_EXPORT_MAX_BYTES as Nj, ProjectsAddResultSchema as Nk, SecretsStoreListResultSchema as Nl, ScopeUpgradeRegistration as Nm, PortalListParams as Nn, SessionsCreateResultSchema as No, GatewaySuspendStatusReadyResultSchema as Np, TaskSuggestionsCreateParams as Nr, SessionsObserverVisibilityResultSchema as Ns, WorkerSessionToolResultSchema as Nt, WebPushNotificationPreferencesSchema as Nu, UpdateStatusResult as Nv, GitHubIdentityScopeSchema as Nw, UsersListAuthLinksParams as Nx, TalkClientCreateResult as Ny, WORKER_BUNDLE_PREWARM_VERSION as O, SessionsGoalUpdateParamsSchema as OA, ArtifactsGetResult as OC, ToolsInvokeResult as OD, SkillsWorkshopReadResultSchema as OE, ApprovalPresentation as OF, SessionGitHubOptionsParamsSchema as OI, PluginInstallTrust as OL, CanvasDocumentViewResult as OM, BoardWidgetContentSchema as ON, SessionCatalogHostSchema as OO, WORKER_INFERENCE_PROTOCOL_FEATURE as OP, GATEWAY_SERVER_CAPS as OR, UiAppearancePreferenceKey as OS, SkillsProposalApplyResultSchema as OT, SystemAgentSetupVerifyResultSchema as O_, SessionFileRelevanceSchema as Oa, WebLoginWaitParamsSchema as Ob, SessionDiscussionInfoSchema as Oc, NodePendingEnqueueResultSchema as Od, ChatStartupParams as Of, CronUpdateParams as Og, EnvironmentsListParams as Oh, SessionSharingEvent as Oi, SessionRow as Oj, ProjectSummary as Ok, SecretsResolveResultSchema as Ol, DeviceTokenRotateParamsSchema as Om, PortalChangedEventSchema as On, SessionsCompanionStateParamsSchema as Oo, GatewaySuspendResumeResult as Op, TaskSuggestionSchema as Or, SessionsMessagesUnsubscribeParams as Os, WorkerProtocolCloseReason as Ot, WebPushDevicePreferences as Ou, UpdateRunParamsSchema as Ov, AuthProbeStatusSchema as Ow, UsersLinkAuthProfileResultSchema as Ox, TalkCatalogResultSchema as Oy, WORKER_PROTOCOL_FEATURES as P, SessionsDeleteResultSchema as PA, AgentsWorkspaceEntry as PC, AgentIdentityResult as PD, ToolCatalogProfileSchema as PE, ApprovalScope as PF, SessionGitHubPublicationPublishedSchema as PI, PluginSearchResultEntrySchema as PL, BoardActionParams as PM, BoardWidgetGrantParamsSchema as PN, SessionCatalogSession as PO, WorkerInferenceCancelResponseFrameSchema as PP, AuditListParamsSchema as PS, SkillsProposalEvaluateParamsSchema as PT, SystemChangeKindSchema as P_, SessionObserverDigestSchema as Pa, PersonalGitHubStatus as Pb, SessionDiscussionStateSchema as Pc, NodePresenceActivityPayloadSchema as Pd, ChatToolTitlesResult as Pf, CronDeliverySchema as Pg, EnvironmentsStatusResult as Ph, SessionVisibilitySetParams as Pi, TRANSCRIPTS_LEGACY_MAX_TEXT_LENGTH as Pj, ProjectsListParams as Pk, SecretsStoreMutationResult as Pl, ScopeUpgradeRegistrationSchema as Pm, PortalListParamsSchema as Pn, SessionsDescribeParams as Po, GatewaySuspendStatusResult as Pp, TaskSuggestionsCreateParamsSchema as Pr, SessionsPluginPatchParams as Ps, WorkerSessionsSendParams as Pt, WebPushPreferencesGetParams as Pu, UpdateStatusResultSchema as Pv, GitHubIdentitySourceSchema as Pw, UsersListAuthLinksParamsSchema as Px, TalkClientCreateResultSchema as Py, WorkerConnectParams as Q, SessionSuggestionsListParams as QA, AgentsCreateParamsSchema as QC, ConversationTurnCancelResultSchema as QD, ToolsGitHubAuthorizeCancelResult as QE, PendingApprovalSnapshotSchema as QF, OutboundDeliveryQueuedErrorDetailsSchema as QI, PluginsListParams as QL, BoardGetParamsSchema as QM, BoardWidgetPutResultSchema as QN, SessionsCatalogListResult as QO, WorkerInferenceTerminalFrame as QP, ExecutionIdentityContextV1Schema as QS, SkillsProposalReviseParamsSchema as QT, UpdateRunsListParamsSchema as Q_, SessionsBranchesListResultSchema as Qa, UsersAuthConnectCatalogParams as Qb, SessionPlacementRunner as Qc, ChatErrorEventSchema as Qd, MentionsChangedEvent as Qf, SystemAgentChatHistoryParamsSchema as Qg, WorkerEnvironmentMetadata as Qh, SessionsResolveResult as Qi, TranscriptsGetResultSchema as Qj, TASKS_LIST_CURSOR_MAX_LENGTH as Qk, QuestionRecordSchema as Ql, ExecApprovalRequestParams as Qm, TerminalAttachResultSchema as Qn, SessionsFilesSetParams as Qo, DesktopObserveResultSchema as Qp, PresenceEntry as Qr, SessionsSearchResult as Qs, WorkerTranscriptCommitResult as Qt, NodeHostStatsPayload as Qu, TalkSessionAcknowledgeMarkParamsSchema as Qv, ModelsProbeParamsSchema as Qw, UsersPrefsSetParamsSchema as Qx, TalkModeParamsSchema as Qy, WORKER_PROTOCOL_METHODS as R, SessionSuggestion as RA, AgentsWorkspaceGetParams as RC, AgentWaitParamsSchema as RD, ToolsCatalogResultSchema as RE, ApprovalTerminalReason as RF, SessionGitHubPublicationRequestedSchema as RI, PluginsControlUiListParamsSchema as RL, BoardChangedEvent as RM, BoardWidgetMaterializedPutParams as RN, SessionCatalogTranscriptItem as RO, WorkerInferenceErrorShape as RP, AuditRunIdentityPresentV1Schema as RS, SkillsProposalEventsListParamsSchema as RT, SystemChangesListParamsSchema as R_, SessionObserverPlanProgressSchema as Ra, USER_PREFS_VALUE_BYTES as Rb, SessionMoveGatewayTargetSchema as Rc, NodePresenceAliveReasonSchema as Rd, LogsTailResult as Rf, CronListParamsSchema as Rg, RequiredNodeCommandState as Rh, SESSION_VISIBILITY_VALUES as Ri, TRANSCRIPTS_PAGE_DEFAULT as Rj, ProjectsRegisterParams as Rk, Question as Rl, ScopeUpgradeResult as Rm, PortalOpenParamsSchema as Rn, SessionsDiffResult as Ro, GatewaySuspendTaskBlockerSchema as Rp, TaskSuggestionsDismissParamsSchema as Rr, SessionsPreviewParams as Rs, WorkerSessionsSpawnParams as Rt, WebPushSubscribeParams as Ru, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as Rv, ModelCatalogProviderOutcomeSchema as Rw, UsersListModelAccountsParamsSchema as Rx, TalkClientSteerParamsSchema as Ry, WorktreesRemoveParams as S, SessionGoalStatus as SA, ArtifactsDownloadParams as SC, ToolsGitHubStatusParamsSchema as SD, SkillsUploadBeginParamsSchema as SE, ApprovalHistoryParams as SF, GitHubPublicationPublisherSchema as SI, PluginDeclaredSurfaceSchema as SL, ProgressCardStep as SM, BoardWidget as SN, SessionCatalog as SO, SkillsProposalHistoryStatusParamsSchema as SP, PluginsUiDescriptorsResult as SR, UsersUnlinkAuthProfileParamsSchema as SS, SkillsDetailResultSchema as ST, SystemAgentSetupDetectParamsSchema as S_, SessionFileEntrySchema as Sa, TtsSpeakParamsSchema as Sb, SessionsRecoverResultSchema as Sc, NodePendingDrainParamsSchema as Sd, ChatPendingInputsPageSchema as Sf, CronRunsParams as Sg, EnvironmentsCreateResult as Sh, SessionPublicShareSetParams as Si, SessionEntryArchiveReason as Sj, ProjectRecentFolderSchema as Sk, SecretStoreSecretEntrySchema as Sl, DevicePairSetupStatusParamsSchema as Sm, WizardStatusParamsSchema as Sn, SessionsCompanionAskResultSchema as So, GatewaySuspendPrepareParamsSchema as Sp, TerminalUploadResultSchema as Sr, SessionsGroupsUpdateParams as Ss, WorkerLiveEventResultSchema as St, PushTestParams as Su, UpdateHoldResultSchema as Sv, AgentsListResultSchema as Sw, UsersGitHubStatusParamsSchema as Sx, ChannelsStopParamsSchema as Sy, WorktreesRemoveResultSchema as T, SessionsGoalMutationResult as TA, ArtifactsDownloadResultSchema as TC, ToolsInvokeErrorSchema as TD, SkillsUploadCommitParams as TE, ApprovalHistoryResultSchema as TF, GitHubPublicationTitleSchema as TI, PluginHookGrantSchema as TL, ProgressCardStepStatusSchema as TM, BoardWidgetAppViewResult as TN, SessionCatalogDescriptor as TO, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as TP, PluginsUninstallParamsSchema as TR, isGitCoauthorCreditEnabled as TS, SkillsProposalActionParams as TT, SystemAgentSetupVerifyParams as T_, SessionFilePreviewKind as Ta, WebLoginStartParams as Tb, SessionDiscussionInfoParamsSchema as Tc, NodePendingEnqueueParams as Td, ChatSendIntent as Tf, CronScratchSetParams as Tg, EnvironmentsDestroyParamsSchema as Th, SessionPublicShareSetResultSchema as Ti, SessionOwnerSchema as Tj, ProjectRecentSchema as Tk, SecretsResolveParams as Tl, DeviceTokenRevokeParams as Tm, WizardStep as Tn, SessionsCompanionResetResult as To, GatewaySuspendPrepareResultSchema as Tp, TaskSuggestionEventSchema as Tr, SessionsGroupsUpdateResultSchema as Ts, WorkerPortalParamsSchema as Tt, PushTestResultSchema as Tu, UpdateReportResult as Tv, AgentsUpdateResult as Tw, UsersLinkAuthProfileParams as Tx, TalkCatalogParams as Ty, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as U, SessionSuggestionResolution as UA, AgentsWorkspaceListParamsSchema as UC, ConversationListResult as UD, ToolsEffectiveNotice as UE, DeniedApprovalSnapshotSchema as UF, SessionGitHubStatusParamsSchema as UI, PluginsControlUiStatusResultSchema as UL, BoardCommandEventSchema as UM, BoardWidgetPluginContentSchema as UN, SessionsCatalogArchiveResultSchema as UO, WorkerInferenceModelRefSchema as UP, AuditRunInspectParams as US, SkillsProposalInspectResult as UT, UpdateRunRecord as U_, SessionsAbortParams as Ua, UserProfileAuthLinkSchema as Ub, SessionMoveProfileTargetSchema as Uc, NodeSkillsUpdateParams as Ud, HumanMentionSchema as Uf, CronRunsParamsSchema as Ug, WorkerDesktopAppIdSchema as Uh, SESSION_VIEWER_PRESENCE_MAX_KEYS as Ui, TranscriptUtterance as Uj, ProjectsRemoveParamsSchema as Uk, QuestionGetResult as Ul, ExecApprovalGetParamsSchema as Um, PluginApprovalRequestParams as Un, SessionsFilesGetResultSchema as Uo, FsListDirParams as Up, TaskSuggestionsListResult as Ur, SessionsResetParamsSchema as Us, WorkerTranscriptCommitErrorReasonSchema as Ut, WebPushUnsubscribeParamsSchema as Uu, COMMAND_LIST_MAX_ITEMS as Uv, ModelsAuthOrderSetParams as Uw, UsersListResult as Ux, TalkClientTranscriptParams as Uy, WORKER_SESSION_TOOLS_PROTOCOL_FEATURE as V, SessionSuggestionEvent as VA, AgentsWorkspaceGetResultSchema as VC, ConversationListParams as VD, ToolsEffectiveGroup as VE, CancelledApprovalSnapshotSchema as VF, SessionGitHubPublishParams as VI, PluginsControlUiReportParamsSchema as VL, BoardCommand as VM, BoardWidgetMoveOpSchema as VN, SessionsCatalogArchiveParamsSchema as VO, WorkerInferenceImageContentSchema as VP, AuditRunIdentityV1 as VS, SkillsProposalInspectParams as VT, UpdateRunChangedEvent as V_, SessionWorktreeInfo as Va, UserProfile as Vb, SessionMovePlacementState as Vc, NodeSkillDescriptor as Vd, projectChatErrorDetail as Vf, CronRunLogEntrySchema as Vg, RuntimeTargetIssueSchema as Vh, SessionVisibility as Vi, TranscriptSessionSummary as Vj, ProjectsRegisterResultSchema as Vk, QuestionGetParams as Vl, ScopeUpgradeWaitSchema as Vm, PortalSummary as Vn, SessionsFilesGetParamsSchema as Vo, FsDirEntry as Vp, TaskSuggestionsListParams as Vr, SessionsRecoverResult as Vs, WorkerSessionsSpawnResponseFrameSchema as Vt, WebPushTestParamsSchema as Vu, COMMAND_CHOICE_VALUE_MAX_LENGTH as Vv, ModelsAuthLogoutParams as Vw, UsersListParams as Vx, TalkClientToolCallResult as Vy, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as W, SessionSuggestionResolutionSchema as WA, AgentsWorkspaceListResult as WC, ConversationListResultSchema as WD, ToolsEffectiveNoticeSchema as WE, ExecApprovalPresentation as WF, SessionGitHubStatusResult as WI, PluginsInspectParams as WL, BoardCommandSchema as WM, BoardWidgetPluginKindSchema as WN, SessionsCatalogContinueParams as WO, WorkerInferenceOptions as WP, AuditRunInspectParamsSchema as WS, SkillsProposalInspectResultSchema as WT, UpdateRunRecordSchema as W_, SessionsAbortParamsSchema as Wa, UserProfileAvatarMimeSchema as Wb, SessionMoveTarget as Wc, NodeSkillsUpdateParamsSchema as Wd, HumanMentionsSchema as Wf, CronScratchGetParamsSchema as Wg, WorkerDesktopLaunchParams as Wh, SessionsViewerPresenceSetParams as Wi, TranscriptUtteranceSchema as Wj, ProjectsRemoveResult as Wk, QuestionGetResultSchema as Wl, ExecApprovalGrantsListParams as Wm, PluginApprovalRequestParamsSchema as Wn, SessionsFilesListParams as Wo, FsListDirParamsSchema as Wp, TaskSuggestionsListResultSchema as Wr, SessionsRewindParams as Ws, WorkerTranscriptCommitErrorShape as Wt, WebPushVapidPublicKeyParams as Wu, COMMAND_NAME_MAX_LENGTH as Wv, ModelsAuthOrderSetParamsSchema as Ww, UsersListResultSchema as Wx, TalkClientTranscriptParamsSchema as Wy, WorkerAdmissionResponseFrame as X, SessionSuggestionsAddResult as XA, AgentSummarySchema as XC, ConversationTurnCancelParamsSchema as XD, ToolsGitHubAuthorizeCancelParams as XE, PaymentApprovalScopeSchema as XF, McpAppViewExpiredErrorDetailsSchema as XI, PluginsInstallResult as XL, BoardFocusTabCommandSchema as XM, BoardWidgetPutParamsSchema as XN, SessionsCatalogListParams as XO, WorkerInferenceStartResponseFrameSchema as XP, DecisionReceiptV1Schema as XS, SkillsProposalRequestRevisionResultSchema as XT, UpdateRunsGetResultSchema as X_, SessionsBranchesListParamsSchema as Xa, UsersAuthConnectCancelParams as Xb, SessionPlacementMoveSchema as Xc, ChatAttachmentsSchema as Xd, MentionableUser as Xf, CronUpdateParamsSchema as Xg, WorkerDesktopObserveResult as Xh, SessionsResolveParams as Xi, TranscriptsGetParamsSchema as Xj, RemoteProject as Xk, QuestionOptionSchema as Xl, ExecApprovalGrantsRevokeResult as Xm, TerminalAttachParamsSchema as Xn, SessionsFilesRevealResult as Xo, DesktopObserveParamsSchema as Xp, SystemInfoResult as Xr, SessionsSearchParams as Xs, WorkerTranscriptCommitResponseFrame as Xt, NodeEventResult as Xu, CommandsListResultSchema as Xv, ModelsListResultSchema as Xw, UsersPrefsGetResultSchema as Xx, TalkEventSchema as Xy, WorkerAdmissionHandshakeSchema as Y, SessionSuggestionsAddParamsSchema as YA, AgentSummary as YC, ConversationTurnCancelParams as YD, ToolsGitHubAuthorizeAccessDeniedResultSchema as YE, MessageSendApprovalScopeSchema as YF, GitHubPublicationSelectionRejectedErrorDetailsSchema as YI, PluginsInstallParamsSchema as YL, BoardEventParamsSchema as YM, BoardWidgetPutParams as YN, SessionsCatalogHostEventSchema as YO, WorkerInferenceStartResponseFrame as YP, DecisionReceiptV1 as YS, SkillsProposalRequestRevisionResult as YT, UpdateRunsGetResult as Y_, SessionsBranchesListParams as Ya, UsersAuthConnectAnswerParamsSchema as Yb, SessionPlacementMove as Yc, ChatAttachmentSchema as Yd, MentionInboxItemSchema as Yf, CronStatusParamsSchema as Yg, WorkerDesktopObserveParamsSchema as Yh, SessionsResolveCandidateSchema as Yi, TranscriptsGetParams as Yj, ProjectsSearchRemoteResultSchema as Yk, QuestionOption as Yl, ExecApprovalGrantsRevokeParamsSchema as Ym, TerminalAttachParams as Yn, SessionsFilesRevealParamsSchema as Yo, DesktopObserveParams as Yp, SystemInfoParamsSchema as Yr, SessionsSearchHitSchema as Ys, WorkerTranscriptCommitRequestFrameSchema as Yt, NodeEventParamsSchema as Yu, CommandsListResult as Yv, ModelsListResult as Yw, UsersPrefsGetResult as Yx, TalkEvent as Yy, WorkerAdmissionResponseFrameSchema as Z, SessionSuggestionsAddResultSchema as ZA, AgentsCreateParams as ZC, ConversationTurnCancelResult as ZD, ToolsGitHubAuthorizeCancelParamsSchema as ZE, PendingApprovalSnapshot as ZF, MissingScopeErrorDetailsSchema as ZI, PluginsInstallResultSchema as ZL, BoardGetParams as ZM, BoardWidgetPutResult as ZN, SessionsCatalogListParamsSchema as ZO, WorkerInferenceStartResult as ZP, ExecutionIdentityContextV1 as ZS, SkillsProposalReviseParams as ZT, UpdateRunsListParams as Z_, SessionsBranchesListResult as Za, UsersAuthConnectCancelParamsSchema as Zb, SessionPlacementProtocolSchemas as Zc, ChatDeltaEventSchema as Zd, MentionableUserSchema as Zf, SystemAgentChatHistoryParams as Zg, WorkerDesktopObserveResultSchema as Zh, SessionsResolveParamsSchema as Zi, TranscriptsGetResult as Zj, RemoteProjectSchema as Zk, QuestionRecord as Zl, ExecApprovalGrantsRevokeResultSchema as Zm, TerminalAttachResult as Zn, SessionsFilesRevealResultSchema as Zo, DesktopObserveResult as Zp, SystemInfoResultSchema as Zr, SessionsSearchParamsSchema as Zs, WorkerTranscriptCommitResponseFrameSchema as Zt, NodeEventResultSchema as Zu, TalkSessionAcknowledgeMarkParams as Zv, ModelsProbeParams as Zw, UsersPrefsSetParams as Zx, TalkModeParams as Zy, WorktreesGcResultSchema as _, SESSION_CREATE_IDEMPOTENCY_RETENTION_MS as _A, AuditActivityToolActionV1 as _C, ToolsGitHubInheritConfigureParams as _D, SkillsStatusParams as _E, ApprovalExpiredReasonSchema as _F, ProtocolValidator as _I, PluginControlUiDiagnostic as _L, ProgressCardPutParams as _M, BoardTabsReorderOpSchema as _N, InputProvenanceSchema as _O, SkillsProposalHistoryScanParams as _P, PluginsSetEnabledParamsSchema as _R, UsersSetRoleParams as _S, SkillsCuratorStatusResult as _T, SystemAgentSetupAuthStartParams as __, SessionFileBrowserResult as _a, TalkSpeakParams as _b, SessionsTitlePrepareParams as _c, NodePairRemoveParams as _d, ChatMessageGetResult as _f, CronJob as _g, EnvironmentStatusSchema as _h, SessionMembersListParamsSchema as _i, SessionParticipantSchema as _j, PROJECTS_LIST_MAX_CHECKOUTS_PER_PROJECT as _k, isCloudWorkerPlacementState as _l, DevicePairSetupCompletedEvent as _m, WizardStartParams as _n, SessionsCompactionRestoreResult as _o, GatewaySuspendHandoffResult as _p, TerminalSessionInfo as _r, SessionsGroupsMutationResultSchema as _s, WorkerLiveEventRequestFrame as _t, QuestionStatusSchema as _u, UpdateAvailable as _v, AgentsFilesSetResult as _w, UsersGitHubAuthorizeStartParamsSchema as _x, ChannelsStatusParams as _y, WorktreeRecordSchema as a, TasksGetParams as aA, AuditActivityAgentRunV1 as aC, ToolsGitHubAuthorizePollParams as aD, SkillsSearchParams as aE, validateWorkerInferenceTerminalOutcome as aF, PluginApprovalSeveritySchema as aI, buildMissingScopeErrorDetails as aL, TranscriptsStatusResult as aM, BoardPromptAuthorizeParams as aN, MessageActionParams as aO, UiClosePaneCommandSchema as aP, PluginsRefreshResultSchema as aR, UsersSelfParams as aS, SkillProposalLifecycleEvent as aT, SystemAgentChatQuestion as a_, SessionCompanionExchange as aa, TalkSessionCloseParams as ab, SessionsPatchManyParams as ac, NodeInvokeProgressParamsSchema as ad, ChatHistoryDeltaResultSchema as af, WorkerMachineOptionSchema as ag, ExecApprovalsGetParamsSchema as ah, SessionMemberAddParams as ai, SessionSuggestionsResolveResultSchema as aj, SessionsCatalogStartTerminalParamsSchema as ak, SessionsDispatchResultSchema as al, DevicePairRejectParams as am, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as an, SessionsCompactParams as ao, MentionsListResultSchema as ap, TerminalExitEvent as ar, SessionsForkResultSchema as as, WorkerHeartbeatRequestFrameSchema as at, QuestionRequestedEvent as au, ConfigPatchParams as av, AgentsFileEntry as aw, UsersAuthConnectStartParamsSchema as ax, ChannelsPairingDismissParamsSchema as ay, WorktreesListResult as b, SessionGoal as bA, ArtifactSummary as bC, ToolsGitHubManagedConfigureParamsSchema as bD, SkillsUpdateParamsSchema as bE, ApprovalGetResult as bF, GitHubPublicationBodySchema as bI, PluginControlUiModuleSchema as bL, ProgressCardPutResultSchema as bM, BoardUpdateParamsSchema as bN, SecretRefSchema as bO, SkillsProposalHistoryScanResultSchema as bP, PluginsUiDescriptorsParams as bR, UsersSetRoleResultSchema as bS, SkillsDetailParamsSchema as bT, SystemAgentSetupAuthStartResultSchema as b_, SessionFileContentEncodingSchema as ba, TalkSpeakResultSchema as bb, SessionsTitlePrepareResultSchema as bc, NodePendingAckParamsSchema as bd, ChatMetadataParamsSchema as bf, CronRunLogEntry as bg, EnvironmentsCreateParams as bh, SessionPublicShare as bi, SessionCreatedActor as bj, ProjectCheckoutSchema as bk, SecretStoreEntrySchema as bl, DevicePairSetupDeliveryUncertainEventSchema as bm, WizardStartResultSchema as bn, SessionsCompanionAskParamsSchema as bo, GatewaySuspendPrepareDrainingResultSchema as bp, TerminalUploadParamsSchema as br, SessionsGroupsRenameParams as bs, WorkerLiveEventResponseFrameSchema as bt, QuestionWaitAnswerResult as bu, UpdateHoldParamsSchema as bv, AgentsListParamsSchema as bw, UsersGitHubDisconnectParamsSchema as bx, ChannelsStatusResultSchema as by, WorktreesBranchesParams as c, TasksGetResultSchema as cA, AuditActivityEventV1Schema as cC, ToolsGitHubAuthorizePollResultSchema as cD, SkillsSearchResultSchema as cE, ApprovalAllowDecision as cF, SessionApprovalReplay as cI, CapabilityConsentErrorDetailsSchema as cL, PROGRESS_CARD_MAX_STEP_UTF8_BYTES as cM, BoardSizeSchema as cN, PollParamsSchema as cO, UiCommandParamsSchema as cP, PluginsSearchResult as cR, UsersSelfResultSchema as cS, SkillsBinsParamsSchema as cT, SystemAgentChatResultSchema as c_, SessionDiffCommitSchema as ca, TalkSessionCreateParamsSchema as cb, SessionsPatchManyResultSchema as cc, NodeInvokeResultParamsSchema as cd, ChatHistoryResetResult as cf, WorkerSlotSummarySchema as cg, ExecApprovalsNodeSetParams as ch, SessionMemberEvidenceSchema as ci, SessionTypingParams as cj, MAX_MEMORY_MIGRATION_ITEMS as ck, SessionsMoveResult as cl, DevicePairRemoveParamsSchema as cm, WorkerProtocolCloseReasonSchema as cn, SessionsCompactionBranchParamsSchema as co, UsersMentionableResult as cp, TerminalInputParamsSchema as cr, SessionsGroupsDefaultsResult as cs, WorkerHeartbeatResult as ct, QuestionResolveParamsSchema as cu, ConfigSchemaLookupParamsSchema as cv, AgentsFilesGetParamsSchema as cw, UsersAuthConnectStatusParams as cx, ChannelsPairingListParams as cy, WorktreesBranchesResultSchema as d, TasksListResult as dA, AuditActivityListParams as dC, ToolsGitHubAuthorizeStartParamsSchema as dD, SkillsSecurityVerdictsResult as dE, ApprovalCancelledReasonSchema as dF, SystemAgentApprovalPresentation as dI, PluginCatalogEntrySchema as dL, ProgressCardChangedEvent as dM, BoardTab as dN, WakeParamsSchema as dO, UiCommandSchema as dP, PluginsSessionActionParams as dR, UsersSetAvatarResult as dS, SkillsCuratorActionParams as dT, SystemAgentSetupActivateResult as d_, SessionDiffFileStatus as da, TalkSessionOkResult as db, SessionsPatchMutation as dc, NodePairApproveParams as dd, ChatInjectParamsSchema as df, CronAddJobResult as dg, ExecApprovalsNodeSnapshotSchema as dh, SessionMemberRemoveParams as di, SessionTypingResultSchema as dj, MigrationProtocolSchemas as dk, SessionsReclaimParamsSchema as dl, DevicePairRequestedEventSchema as dm, WizardCancelParams as dn, SessionsCompactionListParams as do, HooksStatusParams as dp, TerminalOpenParams as dr, SessionsGroupsDeleteParamsSchema as ds, WorkerLiveEventErrorDetails as dt, QuestionResolvedEvent as du, ConfigSchemaParams as dv, AgentsFilesListParams as dw, UsersAuthConnectStatusResultSchema as dx, ChannelsPairingListResultSchema as dy, TaskSummarySchema as eA, PrincipalRefV1Schema as eC, ToolsGitHubAuthorizeExpiredResultSchema as eD, SkillsProposalUpdateParamsSchema as eE, WorkerInferenceTerminalParams as eF, PluginApprovalExternalResolution as eI, SetupAdmissionBusyErrorDetailsSchema as eL, TranscriptsListParamsSchema as eM, BoardMcpAppDescriptor as eN, ConversationTurnParamsSchema as eO, BoardWidgetRegisteredMaterializedContent as eP, PluginsListResult as eR, UsersPrefsSetResultSchema as eS, ModelsProbeResultSchema as eT, SystemAgentChatHistoryResultSchema as e_, SESSION_OBSERVER_HEALTH_VALUES as ea, TalkSessionAppendAudioParamsSchema as eb, SessionsSendParams as ec, NodeInvokeInputEvent as ed, ChatEventSchema as ef, WorkerEnvironmentState as eg, ExecApprovalResolveParams as eh, Snapshot as ei, SessionSuggestionsListResult as ej, SessionsCatalogReadParams as ek, SessionPlacementSchema as el, DesktopSourceSchema as em, WorkerTranscriptMessage as en, SessionsBranchesSwitchParamsSchema as eo, MentionsDismissParams as ep, TerminalCloseParamsSchema as er, SessionsFilesSetResult as es, WorkerConnectRequestFrameSchema as et, QuestionRequestParamsSchema as eu, UpdateRunsListResultSchema as ev, AgentsCreateResultSchema as ew, UsersAuthConnectCatalogResult as ex, ChannelsPairingApproveParams as ey, WorktreesCreateParams as f, TasksListResultSchema as fA, AuditActivityListParamsSchema as fC, ToolsGitHubAuthorizeStartResult as fD, SkillsSecurityVerdictsResultSchema as fE, ApprovalChannelReviewer as fF, SystemAgentApprovalPresentationSchema as fI, PluginCatalogInstallActionSchema as fL, ProgressCardChangedEventSchema as fM, BoardTabCreateOpSchema as fN, agent_d_exports as fO, UiFocusCommandSchema as fP, PluginsSessionActionParamsSchema as fR, UsersSetAvatarResultSchema as fS, SkillsCuratorActionParamsSchema as fT, SystemAgentSetupActivateResultSchema as f_, SessionDiffFileStatusSchema as fa, TalkSessionOkResultSchema as fb, SessionsPatchMutationSchema as fc, NodePairApproveParamsSchema as fd, ChatInputConsumptions as ff, CronAddParams as fg, ExecApprovalsSetParams as fh, SessionMemberRemoveParamsSchema as fi, SESSION_EXPANDED_PARTICIPANT_LIMIT as fj, MigrationsMemoryApplyParamsSchema as fk, SessionsReclaimResult as fl, DevicePairResolvedEventSchema as fm, WizardCancelParamsSchema as fn, SessionsCompactionListParamsSchema as fo, HooksStatusParamsSchema as fp, TerminalOpenParamsSchema as fr, SessionsGroupsListParams as fs, WorkerLiveEventErrorDetailsSchema as ft, QuestionResolvedEventSchema as fu, ConfigSchemaParamsSchema as fv, AgentsFilesListParamsSchema as fw, UsersGitHubAuthorizeCancelParamsSchema as fx, ChannelsPairingRequest as fy, WorktreesGcResult as g, TasksRecoveryResultSchema as gA, AuditActivityOutboundMessageV1Schema as gC, ToolsGitHubConfigureParamsSchema as gD, SkillsSkillCardResultSchema as gE, ApprovalDeniedReasonSchema as gF, isWellFormedApprovalId as gI, PluginControlUiDescriptorSchema as gL, ProgressCardGetResultSchema as gM, BoardTabUpdateOpSchema as gN, GatewayClientModeSchema as gO, UiSplitCommandSchema as gP, PluginsSetEnabledParams as gR, UsersSetDisplayNameResultSchema as gS, SkillsCuratorStatusParamsSchema as gT, SystemAgentSetupActivateStartResultSchema as g_, SessionFileBrowserEntrySchema as ga, TalkSessionSubmitToolResultParamsSchema as gb, SessionsListParamsSchema as gc, NodePairRejectParamsSchema as gd, ChatMessageGetParamsSchema as gf, CronGetParams as gg, EnvironmentStatus as gh, SessionMembersListParams as gi, SessionParticipantIdentitySchema as gj, PROJECTS_LIST_DEFAULT_LIMIT as gk, SessionPlacementState as gl, DevicePairSetupCodeResultSchema as gm, WizardNextResultSchema as gn, SessionsCompactionRestoreParamsSchema as go, GatewaySuspendHandoffParamsSchema as gp, TerminalResizeParamsSchema as gr, SessionsGroupsMutationResult as gs, WorkerLiveEventParamsSchema as gt, QuestionStatus as gu, ConfigSetParamsSchema as gv, AgentsFilesSetParamsSchema as gw, UsersGitHubAuthorizePollResultSchema as gx, ChannelsStartParamsSchema as gy, WorktreesGcParamsSchema as h, TasksRecoveryResult as hA, AuditActivityOutboundMessageV1 as hC, ToolsGitHubConfigureParams as hD, SkillsSkillCardResult as hE, ApprovalDecisionSchema as hF, TerminalSessionApprovalEventSchema as hI, PluginControlUiDescriptor as hL, ProgressCardGetResult as hM, BoardTabSchema as hN, GatewayClientIdSchema as hO, UiSidebarCommandSchema as hP, PluginsSessionActionSuccessResultSchema as hR, UsersSetDisplayNameResult as hS, SkillsCuratorStatusParams as hT, SystemAgentSetupActivateStartResult as h_, SessionFileBrowserEntry as ha, TalkSessionSubmitToolResultParams as hb, SessionsListParams as hc, NodePairRejectParams as hd, ChatInputReceiptsSchema as hf, CronDeliveryPreview as hg, ExecApprovalsSnapshotSchema as hh, SessionMembersListEvidenceResultSchema as hi, SessionParticipantIdentity as hj, MigrationsMemoryPlanResult as hk, SessionsReclaimResultSchema as hl, DevicePairSetupCodeResult as hm, WizardNextResult as hn, SessionsCompactionRestoreParams as ho, GatewaySuspendHandoffParams as hp, TerminalResizeParams as hr, SessionsGroupsListResultSchema as hs, WorkerLiveEventParams as ht, QuestionSecretStoreExistingSchema as hu, ConfigSetParams as hv, AgentsFilesSetParams as hw, UsersGitHubAuthorizePollResult as hx, ChannelsStartParams as hy, WorktreeRecord as i, TasksCancelResultSchema as iA, AUDIT_ACTIVITY_STATUSES as iC, ToolsGitHubAuthorizePendingResultSchema as iD, SkillsProposalsListResultSchema as iE, validateWorkerInferenceTerminalFrame as iF, PluginApprovalSeverity as iI, WizardNotFoundErrorDetailsSchema as iL, TranscriptsStatusParamsSchema as iM, BoardPluginActionParamsSchema as iN, ConversationTurnResultSchema as iO, board_d_exports as iP, PluginsRefreshResult as iR, UsersSelectModelAccountResultSchema as iS, SkillProposalEvaluationSchema as iT, SystemAgentChatParamsSchema as i_, SessionCompactionCheckpointSchema as ia, TalkSessionCancelOutputResultSchema as ib, SESSIONS_PATCH_MANY_MAX_TARGETS as ic, NodeInvokeProgressParams as id, ChatHistoryDeltaResult as if, WorkerMachineOption as ig, ExecApprovalsGetParams as ih, SessionMember as ii, SessionSuggestionsResolveResult as ij, SessionsCatalogStartTerminalParams as ik, SessionsDispatchResult as il, DevicePairListParamsSchema as im, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as in, SessionsCleanupParamsSchema as io, MentionsListResult as ip, TerminalEventSchema as ir, SessionsForkResult as is, WorkerHeartbeatRequestFrame as it, QuestionRequestResultSchema as iu, ConfigGetParamsSchema as iv, AgentsDeleteResultSchema as iw, UsersAuthConnectStartParams as ix, ChannelsPairingDismissParams as iy, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as j, SessionsDeleteParams as jA, ArtifactsListParamsSchema as jC, AgentEventSchema as jD, ToolCatalogGroup as jE, ApprovalResolveParamsSchema as jF, SessionGitHubPublicationFailedSchema as jI, PluginOperatorGrants as jL, BOARD_CRON_TRIGGER_PREFIX as jM, BoardWidgetGeneratedIdentity as jN, SessionCatalogPullRequestSummary as jO, WorkerInferenceCancelRequestFrame as jP, AuditEvent as jS, SkillsProposalDecisionParams as jT, SystemChangeEntry as j_, SessionGroupDefaultsSchema as ja, GIT_COAUTHOR_PREFERENCE_KEY as jb, SessionDiscussionOpenResult as jc, NodePluginToolsUpdateParams as jd, ChatStatusEventSchema as jf, CronAddResultSchema as jg, EnvironmentsListResultSchema as jh, SessionSharingEvidenceEventSchema as ji, SessionToolOverrides as jj, ProjectsAddParamsSchema as jk, SecretsStoreListParamsSchema as jl, ScopeUpgradeApprovedSchema as jm, PortalCloseResult as jn, SessionsCreateParams as jo, GatewaySuspendStatusParams as jp, TaskSuggestionsAcceptResult as jr, SessionsObserverVisibilityParamsSchema as js, WorkerSessionToolResponseFrameSchema as jt, WebPushNotificationCategorySchema as ju, UpdateStatusParams as jv, GitHubIdentityFacts as jw, UsersLinkEmailResult as jx, TalkClientCreateParams as jy, WORKER_EXECUTION_CONTEXT_PROTOCOL_FEATURE as k, PreservedSessionWorktree as kA, ArtifactsGetResultSchema as kC, ToolsInvokeResultSchema as kD, ToolCatalogEntry as kE, ApprovalPresentationSchema as kF, SessionGitHubOptionsResultSchema as kI, PluginInstallTrustSchema as kL, CanvasDocumentViewResultSchema as kM, BoardWidgetDeclared as kN, SessionCatalogLocator as kO, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as kP, normalizeUiAppearancePreference as kS, SkillsProposalCreateParams as kT, SystemAgentWizardCancel as k_, SessionGroup as ka, ChatAccountSelection as kb, SessionDiscussionOpenParams as kc, NodePluginToolDescriptor as kd, ChatStartupParamsSchema as kf, CronAddJobResultSchema as kg, EnvironmentsListParamsSchema as kh, SessionSharingEventSchema as ki, SessionRowSchema as kj, ProjectSummarySchema as kk, SecretsStoreDeleteParams as kl, DeviceTokenRotateResult as km, PortalCloseParams as kn, SessionsCompanionStateResult as ko, GatewaySuspendResumeResultSchema as kp, TaskSuggestionsAcceptParams as kr, SessionsMessagesUnsubscribeParamsSchema as ks, WorkerProviderReplayState as kt, WebPushDevicePreferencesSchema as ku, UpdateScheduleState as kv, GatewayAgentRuntime as kw, UsersLinkEmailParams as kx, TalkClientCloseParams as ky, WorktreesBranchesParamsSchema as l, TasksListParams as lA, AuditActivityInboundMessageV1 as lC, ToolsGitHubAuthorizeSlowDownResultSchema as lD, SkillsSecurityVerdictsParams as lE, ApprovalAllowDecisionSchema as lF, SessionApprovalReplaySchema as lI, PluginCatalogClawHubInstallSchema as lL, PROGRESS_CARD_MAX_UTF8_BYTES as lM, BoardSnapshot as lN, SendParamsSchema as lO, UiCommandResult as lP, PluginsSearchResultSchema as lR, UsersSetAvatarParams as lS, SkillsBinsResult as lT, SystemAgentSetupActivateParams as l_, SessionDiffFile as la, TalkSessionCreateResult as lb, SessionsPatchManyTarget as lc, NodeListParams as ld, ChatHistoryResetResultSchema as lf, WorkerTunnelStatus as lg, ExecApprovalsNodeSetParamsSchema as lh, SessionMemberMutationResult as li, SessionTypingParamsSchema as lj, MemoryMigrationItem as lk, SessionsMoveResultSchema as ll, DevicePairRenameParams as lm, WizardAnswer as ln, SessionsCompactionBranchResult as lo, UsersMentionableResultSchema as lp, TerminalListResult as lr, SessionsGroupsDefaultsResultSchema as ls, WorkerHelloOk as lt, QuestionResolveResult as lu, ConfigSchemaLookupResult as lv, AgentsFilesGetResult as lw, UsersAuthConnectStatusParamsSchema as lx, ChannelsPairingListParamsSchema as ly, WorktreesGcParams as m, TasksRecoveryParamsSchema as mA, AuditActivityListResultSchema as mC, ToolsGitHubAuthorizeSuccessResultSchema as mD, SkillsSkillCardParamsSchema as mE, ApprovalDecision as mF, TerminalApprovalSnapshotSchema as mI, PluginControlUiActivation as mL, ProgressCardGetParamsSchema as mM, BoardTabIdSchema as mN, ChatSendSessionKeyString as mO, UiPanelCommandSchema as mP, PluginsSessionActionResultSchema as mR, UsersSetDisplayNameParamsSchema as mS, SkillsCuratorActionResultSchema as mT, SystemAgentSetupActivateStartParamsSchema as m_, SessionDiffScopeSchema as ma, TalkSessionSteerParamsSchema as mb, SessionsPatchParamsSchema as mc, NodePairListParamsSchema as md, ChatInputReceipts as mf, CronDeclarativeAddResult as mg, ExecApprovalsSnapshot as mh, SessionMembersListEvidenceResult as mi, SessionParticipant as mj, MigrationsMemoryPlanParamsSchema as mk, SessionsReclaimResultPlacementSchema as ml, DevicePairSetupCodeParamsSchema as mm, WizardNextParamsSchema as mn, SessionsCompactionListResultSchema as mo, GatewaySuspendBlockerSchema as mp, TerminalOpenResultSchema as mr, SessionsGroupsListResult as ms, WorkerLiveEventErrorShapeSchema as mt, QuestionSecretStoreBindingSchema as mu, ConfigSchemaResponseSchema as mv, AgentsFilesListResultSchema as mw, UsersGitHubAuthorizePollParamsSchema as mx, ChannelsLogoutParamsSchema as my, WorktreeBranch as n, TasksCancelParamsSchema as nA, AUDIT_ACTIVITY_KINDS as nC, ToolsGitHubAuthorizeIncorrectDeviceCodeResultSchema as nD, SkillsProposalsListParamsSchema as nE, validateWorkerInferenceEventFrame as nF, PluginApprovalPresentation as nI, UnknownAgentIdErrorDetailsSchema as nL, TranscriptsListResultSchema as nM, BoardOp as nN, ConversationTurnReplySchema as nO, BoardWidgetResizeOpSchema as nP, PluginsRefreshParams as nR, UsersSelectModelAccountParamsSchema as nS, ModelsProbeTargetResultSchema as nT, SystemAgentChatHistoryTurnSchema as n_, SessionBranchSchema as na, TalkSessionCancelOutputParamsSchema as nb, SessionsUsageParams as nc, NodeInvokeParams as nd, ChatHistoryCursorResult as nf, WorkerExecutionMode as ng, ExecApprovalStandingGrant as nh, StateVersion as ni, SessionSuggestionsResolveParams as nj, SessionsCatalogReadResult as nk, SessionsDispatchParams as nl, DevicePairApproveParamsSchema as nm, WorkerTranscriptUserMessageSchema as nn, SessionsBranchesSwitchResultSchema as no, MentionsListParams as np, TerminalDataEventSchema as nr, SessionsForkParams as ns, WorkerHeartbeatParams as nt, QuestionRequestQuestionSchema as nu, ConfigApplyParamsSchema as nv, AgentsDeleteParamsSchema as nw, UsersAuthConnectResult as nx, ChannelsPairingApproveResult as ny, WorktreeRepositoryStatus as o, TasksGetParamsSchema as oA, AuditActivityAgentRunV1Schema as oC, ToolsGitHubAuthorizePollParamsSchema as oD, SkillsSearchParamsSchema as oE, AllowedApprovalSnapshot as oF, SessionApprovalEvent as oI, errorShape as oL, TranscriptsStatusResultSchema as oM, BoardPromptAuthorizeParamsSchema as oN, MessageActionParamsSchema as oO, UiCommand as oP, PluginsSearchParams as oR, UsersSelfParamsSchema as oS, SkillProposalLifecycleEventSchema as oT, SystemAgentChatQuestionSchema as o_, SessionCompanionExchangeSchema as oa, TalkSessionCloseParamsSchema as ob, SessionsPatchManyParamsSchema as oc, NodeInvokeRequestEventSchema as od, ChatHistoryParams as of, WorkerMachineOptionsSchema as og, ExecApprovalsNodeGetParams as oh, SessionMemberAddParamsSchema as oi, SessionTypingEvent as oj, SessionsCatalogStartTerminalResult as ok, SessionsMoveParams as ol, DevicePairRejectParamsSchema as om, WORKER_PUBLIC_INGRESS_PATH as on, SessionsCompactParamsSchema as oo, UsersMentionableParams as op, TerminalExitEventSchema as or, SessionsGroupsDefaultsParams as os, WorkerHeartbeatResponseFrame as ot, QuestionRequestedEventSchema as ou, ConfigPatchParamsSchema as ov, AgentsFileEntrySchema as ow, UsersAuthConnectStartResult as ox, ChannelsPairingDismissResult as oy, WorktreesCreateParamsSchema as p, TasksRecoveryParams as pA, AuditActivityListResult as pC, ToolsGitHubAuthorizeStartResultSchema as pD, SkillsSkillCardParams as pE, ApprovalChannelReviewerSchema as pF, TerminalApprovalSnapshot as pI, PluginCatalogOfficialInstallSchema as pL, ProgressCardGetParams as pM, BoardTabDeleteOpSchema as pN, CHAT_SEND_SESSION_KEY_MAX_LENGTH as pO, UiNavigateCommandSchema as pP, PluginsSessionActionResult as pR, UsersSetDisplayNameParams as pS, SkillsCuratorActionResult as pT, SystemAgentSetupActivateStartParams as p_, SessionDiffScope as pa, TalkSessionSteerParams as pb, SessionsPatchParams as pc, NodePairListParams as pd, ChatInputConsumptionsSchema as pf, CronAddResult as pg, ExecApprovalsSetParamsSchema as ph, SessionMemberSchema as pi, SESSION_PARTICIPANT_LIMIT as pj, MigrationsMemoryApplyResult as pk, SessionsReclaimResultPlacement as pl, DevicePairSetupCodeParams as pm, WizardNextParams as pn, SessionsCompactionListResult as po, GatewaySuspendBlocker as pp, TerminalOpenResult as pr, SessionsGroupsListParamsSchema as ps, WorkerLiveEventErrorShape as pt, QuestionSchema as pu, ConfigSchemaResponse as pv, AgentsFilesListResult as pw, UsersGitHubAuthorizeCancelResultSchema as px, ChannelsLogoutParams as py, WorkerAdmissionFailureReason as q, SessionSuggestionStateSchema as qA, AgentKindSchema as qC, ConversationSendResult as qD, ToolsEffectiveResult as qE, ExpiredApprovalSnapshotSchema as qF, CronJobNotFoundErrorDetailsSchema as qI, PluginsInspectResultSchema as qL, BoardDataReadParamsSchema as qM, BoardWidgetPutContent as qN, SessionsCatalogContinueResultSchema as qO, WorkerInferenceStartRequestFrame as qP, DecisionReceiptDisplayV1 as qS, SkillsProposalRequestRevisionParams as qT, UpdateRunsGetParams as q_, SessionsAssignOwnerResult as qa, UserProfileSchema as qb, SessionPlacementDiskSpace as qc, ChatAbortParamsSchema as qd, MENTION_INBOX_MAX_ITEMS as qf, CronScratchSetParamsSchema as qg, WorkerDesktopLaunchResultSchema as qh, SessionsViewerPresenceSetResultSchema as qi, TranscriptsExportResult as qj, ProjectsSearchRemoteParamsSchema as qk, QuestionListResult as ql, ExecApprovalGrantsListResultSchema as qm, TerminalAckResult as qn, SessionsFilesListResultSchema as qo, DesktopLaunchParams as qp, validateSystemEventParams as qr, SessionsRewindResultSchema as qs, WorkerTranscriptCommitParamsSchema as qt, NodeDescribeParamsSchema as qu, CommandsListParams as qv, ModelsListParams as qw, UsersPrefsGetParams as qx, TalkConfigResult as qy, WorktreeBranchSchema as r, TasksCancelResult as rA, AUDIT_ACTIVITY_MESSAGE_KIND as rC, ToolsGitHubAuthorizeNetworkErrorResultSchema as rD, SkillsProposalsListResult as rE, validateWorkerInferenceStartParams as rF, PluginApprovalPresentationSchema as rI, UserPrefsLimitExceededErrorDetailsSchema as rL, TranscriptsStatusParams as rM, BoardOpSchema as rN, ConversationTurnResult as rO, BoardWidgetSchema as rP, PluginsRefreshParamsSchema as rR, UsersSelectModelAccountResult as rS, SkillProposalEvaluation as rT, SystemAgentChatParams as r_, SessionCompactionCheckpoint as ra, TalkSessionCancelOutputResult as rb, SessionsUsageParamsSchema as rc, NodeInvokeParamsSchema as rd, ChatHistoryCursorResultSchema as rf, WorkerExecutionModeSchema as rg, ExecApprovalStandingGrantSchema as rh, StateVersionSchema as ri, SessionSuggestionsResolveParamsSchema as rj, SessionsCatalogReadResultSchema as rk, SessionsDispatchParamsSchema as rl, DevicePairListParams as rm, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as rn, SessionsCleanupParams as ro, MentionsListParamsSchema as rp, TerminalEvent as rr, SessionsForkParamsSchema as rs, WorkerHeartbeatParamsSchema as rt, QuestionRequestResult as ru, ConfigGetParams as rv, AgentsDeleteResult as rw, UsersAuthConnectResultSchema as rx, ChannelsPairingApproveResultSchema as ry, WorktreeRepositoryStatusSchema as s, TasksGetResult as sA, AuditActivityEventV1 as sC, ToolsGitHubAuthorizePollResult as sD, SkillsSearchResult as sE, AllowedApprovalSnapshotSchema as sF, SessionApprovalEventSchema as sI, missingScopeErrorShape as sL, PROGRESS_CARD_MAX_STEPS as sM, BoardSetChatDockCommandSchema as sN, PollParams as sO, UiCommandParams as sP, PluginsSearchParamsSchema as sR, UsersSelfResult as sS, SkillsBinsParams as sT, SystemAgentChatResult as s_, SessionDiffCommit as sa, TalkSessionCreateParams as sb, SessionsPatchManyResult as sc, NodeInvokeResultParams as sd, ChatHistoryParamsSchema as sf, WorkerSlotSummary as sg, ExecApprovalsNodeGetParamsSchema as sh, SessionMemberEvidence as si, SessionTypingEventSchema as sj, SessionsCatalogStartTerminalResultSchema as sk, SessionsMoveParamsSchema as sl, DevicePairRemoveParams as sm, WorkerAdmissionFailureReasonSchema as sn, SessionsCompactionBranchParams as so, UsersMentionableParamsSchema as sp, TerminalInputParams as sr, SessionsGroupsDefaultsParamsSchema as ss, WorkerHeartbeatResponseFrameSchema as st, QuestionResolveParams as su, ConfigSchemaLookupParams as sv, AgentsFilesGetParams as sw, UsersAuthConnectStartResultSchema as sx, ChannelsPairingDismissResultSchema as sy, schema_modules_d_exports as t, TasksCancelParams as tA, AUDIT_ACTIVITY_DIRECTIONS as tC, ToolsGitHubAuthorizeFailedResultSchema as tD, SkillsProposalsListParams as tE, validateWorkerInferenceCancelParams as tF, PluginApprovalExternalResolutionSchema as tI, SkillProposalRevisionChangedErrorDetailsSchema as tL, TranscriptsListResult as tM, BoardMcpAppDescriptorSchema as tN, ConversationTurnReply as tO, BoardWidgetRemoveOpSchema as tP, PluginsListResultSchema as tR, UsersSelectModelAccountParams as tS, ModelsProbeTargetResult as tT, SystemAgentChatHistoryTurn as t_, SessionBranch as ta, TalkSessionCancelOutputParams as tb, SessionsSendParamsSchema as tc, NodeInvokeInputEventSchema as td, ChatFinalEventSchema as tf, WorkerEnvironmentStateSchema as tg, ExecApprovalResolveParamsSchema as th, SnapshotSchema as ti, SessionSuggestionsListResultSchema as tj, SessionsCatalogReadParamsSchema as tk, SessionPlacementStateSchema as tl, DevicePairApproveParams as tm, WorkerTranscriptMessageSchema as tn, SessionsBranchesSwitchResult as to, MentionsDismissParamsSchema as tp, TerminalDataEvent as tr, SessionsFilesSetResultSchema as ts, WorkerErrorShape as tt, QuestionRequestQuestion as tu, ConfigApplyParams as tv, AgentsDeleteParams as tw, UsersAuthConnectCatalogResultSchema as tx, ChannelsPairingApproveParamsSchema as ty, WorktreesBranchesResult as u, TasksListParamsSchema as uA, AuditActivityInboundMessageV1Schema as uC, ToolsGitHubAuthorizeStartParams as uD, SkillsSecurityVerdictsParamsSchema as uE, ApprovalAllowedReasonSchema as uF, StandingGrantApprovalScopeSchema as uI, PluginCatalogEntry as uL, ProgressCard as uM, BoardSnapshotSchema as uN, WakeParams as uO, UiCommandResultSchema as uP, PluginsSessionActionFailureResultSchema as uR, UsersSetAvatarParamsSchema as uS, SkillsBinsResultSchema as uT, SystemAgentSetupActivateParamsSchema as u_, SessionDiffFileSchema as ua, TalkSessionCreateResultSchema as ub, SessionsPatchManyTargetSchema as uc, NodeListParamsSchema as ud, ChatInjectParams as uf, WorkerTunnelStatusSchema as ug, ExecApprovalsNodeSnapshot as uh, SessionMemberMutationResultSchema as ui, SessionTypingResult as uj, MemoryMigrationProviderPlan as uk, SessionsReclaimParams as ul, DevicePairRenameParamsSchema as um, WizardAnswerSchema as un, SessionsCompactionBranchResultSchema as uo, human_mentions_d_exports as up, TerminalListResultSchema as ur, SessionsGroupsDeleteParams as us, WorkerLiveEvent as ut, QuestionResolveResultSchema as uu, ConfigSchemaLookupResultSchema as uv, AgentsFilesGetResultSchema as uw, UsersAuthConnectStatusResult as ux, ChannelsPairingListResult as uy, WorktreesListParams as v, SESSION_CREATE_RETRY_WINDOW_MS as vA, AuditActivityToolActionV1Schema as vC, ToolsGitHubInheritConfigureParamsSchema as vD, SkillsStatusParamsSchema as vE, ApprovalGetParams as vF, ValidationError as vI, PluginControlUiDiagnosticSchema as vL, ProgressCardPutParamsSchema as vM, BoardTicketEventParamsSchema as vN, NonEmptyString as vO, SkillsProposalHistoryScanParamsSchema as vP, PluginsSetEnabledResult as vR, UsersSetRoleParamsSchema as vS, SkillsCuratorStatusResultSchema as vT, SystemAgentSetupAuthStartParamsSchema as v_, SessionFileBrowserResultSchema as va, TalkSpeakParamsSchema as vb, SessionsTitlePrepareParamsSchema as vc, NodePairRemoveParamsSchema as vd, ChatMessageGetResultSchema as vf, CronListParams as vg, EnvironmentSummary as vh, SessionMembersListResult as vi, SessionPerson as vj, PROJECTS_LIST_MAX_IDENTITY_PROBES as vk, GitHubSetupHandleSchema as vl, DevicePairSetupCompletedEventSchema as vm, WizardStartParamsSchema as vn, SessionsCompactionRestoreResultSchema as vo, GatewaySuspendHandoffResultSchema as vp, TerminalSessionInfoSchema as vr, SessionsGroupsPutParams as vs, WorkerLiveEventRequestFrameSchema as vt, QuestionWaitAnswerParams as vu, UpdateAvailableSchema as vv, AgentsFilesSetResultSchema as vw, UsersGitHubAuthorizeStartResult as vx, ChannelsStatusParamsSchema as vy, WorktreesRemoveResult as w, SessionsGoalClearParamsSchema as wA, ArtifactsDownloadResult as wC, ToolsGitHubStatusResultSchema as wD, SkillsUploadChunkParamsSchema as wE, ApprovalHistoryResult as wF, GitHubPublicationSelectionSchema as wI, PluginHookGrant as wL, ProgressCardStepStatus as wM, BoardWidgetAppViewParamsSchema as wN, SessionCatalogCapabilitiesSchema as wO, validateSkillsProposalHistoryStatusParams as wP, PluginsUninstallParams as wR, UsersUnlinkAuthProfileResultSchema as wS, SkillsInstallParamsSchema as wT, SystemAgentSetupDetectResultSchema as w_, SessionFileKindSchema as wa, TtsSpeakResultSchema as wb, SessionDiscussionInfoParams as wc, NodePendingDrainResultSchema as wd, ChatRunStartupPhaseSchema as wf, CronScratchGetResult as wg, EnvironmentsDestroyParams as wh, SessionPublicShareSetResult as wi, SessionOwner as wj, ProjectRecentRepositorySchema as wk, SecretsResolveAssignmentSchema as wl, DevicePairSetupStatusResultSchema as wm, WizardStatusResultSchema as wn, SessionsCompanionResetParamsSchema as wo, GatewaySuspendPrepareResult as wp, TaskSuggestionEvent as wr, SessionsGroupsUpdateResult as ws, WorkerPortalParams as wt, PushTestResult as wu, UpdateReportParamsSchema as wv, AgentsUpdateParamsSchema as ww, UsersGitHubStatusResultSchema as wx, TalkAgentControlResultSchema as wy, WorktreesListResultSchema as x, SessionGoalSchema as xA, ArtifactSummarySchema as xC, ToolsGitHubStatusParams as xD, SkillsUploadBeginParams as xE, ApprovalGetResultSchema as xF, GitHubPublicationPublisher as xI, PluginDeclaredSurface as xL, ProgressCardSchema as xM, BoardViewTicketSchema as xN, SessionLabelString as xO, SkillsProposalHistoryStatusParams as xP, PluginsUiDescriptorsParamsSchema as xR, UsersUnlinkAuthProfileParams as xS, SkillsDetailResult as xT, SystemAgentSetupDetectParams as x_, SessionFileEntry as xa, TtsSpeakParams as xb, SessionsRecoverParamsSchema as xc, NodePendingDrainParams as xd, ChatPendingInputsPage as xf, CronRunParams as xg, EnvironmentsCreateParamsSchema as xh, SessionPublicShareSchema as xi, SessionCreatedActorSchema as xj, ProjectRecent as xk, SecretStoreEnvEntrySchema as xl, DevicePairSetupStatusParams as xm, WizardStatusParams as xn, SessionsCompanionAskResult as xo, GatewaySuspendPrepareParams as xp, TerminalUploadResult as xr, SessionsGroupsRenameParamsSchema as xs, WorkerLiveEventResult as xt, QuestionWaitAnswerResultSchema as xu, UpdateHoldResult as xv, AgentsListResult as xw, UsersGitHubDisconnectResultSchema as xx, ChannelsStopParams as xy, WorktreesListParamsSchema as y, SessionsCreateParamsSchema as yA, findAuditActivityFilterConflict as yC, ToolsGitHubManagedConfigureParams as yD, SkillsUpdateParams as yE, ApprovalGetParamsSchema as yF, formatValidationErrors as yI, PluginControlUiModule as yL, ProgressCardPutResult as yM, BoardUpdateParams as yN, SecretInputSchema as yO, SkillsProposalHistoryScanResult as yP, PluginsSetEnabledResultSchema as yR, UsersSetRoleResult as yS, SkillsDetailParams as yT, SystemAgentSetupAuthStartResult as y_, SessionFileContentEncoding as ya, TalkSpeakResult as yb, SessionsTitlePrepareResult as yc, NodePendingAckParams as yd, ChatMetadataParams as yf, CronRemoveParams as yg, EnvironmentSummarySchema as yh, SessionMembersListResultSchema as yi, SessionPersonSchema as yj, ProjectCheckout as yk, SecretStoreEntry as yl, DevicePairSetupDeliveryUncertainEvent as ym, WizardStartResult as yn, SessionsCompanionAskParams as yo, GatewaySuspendPrepareBusyResultSchema as yp, TerminalUploadParams as yr, SessionsGroupsPutParamsSchema as ys, WorkerLiveEventResponseFrame as yt, QuestionWaitAnswerParamsSchema as yu, UpdateHoldParams as yv, AgentsListParams as yw, UsersGitHubAuthorizeStartResultSchema as yx, ChannelsStatusResult as yy, WORKER_PROVIDER_REPLAY_MAX_DATA_BYTES as z, SessionSuggestionAction as zA, AgentsWorkspaceGetParamsSchema as zC, ConversationListItem as zD, ToolsEffectiveEntry as zE, ApprovalTerminalReasonSchema as zF, SessionGitHubPublicationResult as zI, PluginsControlUiReloadParams as zL, BoardChangedEventSchema as zM, BoardWidgetMcpAppContentSchema as zN, SessionCatalogTranscriptItemSchema as zO, WorkerInferenceEventFrame as zP, AuditRunIdentityUnknownV1Schema as zS, SkillsProposalEventsListResult as zT, SystemChangesListResult as z_, SessionOperationEvent as za, UserModelAccount as zb, SessionMovePlacement as zc, NodeRenameParams as zd, LogsTailResultSchema as zf, CronPacingSchema as zg, RequiredNodeCommandStateSchema as zh, SessionSharingRole as zi, TRANSCRIPTS_PAGE_MAX as zj, ProjectsRegisterParamsSchema as zk, QuestionAnswers as zl, ScopeUpgradeResultSchema as zm, PortalOpenResult as zn, SessionsDiffResultSchema as zo, GatewaySuspension as zp, TaskSuggestionsDismissResult as zr, SessionsPreviewParamsSchema as zs, WorkerSessionsSpawnParamsSchema as zt, WebPushSubscribeParamsSchema as zu, COMMAND_ARG_NAME_MAX_LENGTH as zv, ModelChoice as zw, UsersListModelAccountsResult 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 };