@openclaw/gateway-protocol 2026.7.2-beta.5 → 2026.7.2-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/frame-guards.d.mts +1 -1
- package/dist/{frames-DEn_IEne.d.mts → frames-BPnee-QV.d.mts} +2 -0
- package/dist/index.d.mts +79 -8
- package/dist/index.mjs +17 -3
- package/dist/{schema-modules-DpxvZ_Jx.d.mts → schema-modules-CJ-akpXK.d.mts} +627 -16
- package/dist/schema.d.mts +467 -7
- package/dist/schema.mjs +9 -2
- package/dist/{worktrees-CI-UANnD.mjs → worktrees-nxd_-Snb.mjs} +265 -14
- package/package.json +1 -1
- package/protocol.schema.json +2952 -114
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as ErrorShape } from "./frames-
|
|
1
|
+
import { r as ErrorShape } from "./frames-BPnee-QV.mjs";
|
|
2
2
|
import { o as MissingScopeErrorDetails, t as ErrorCode } from "./gateway-error-details-Btc09cgL.mjs";
|
|
3
3
|
import { Static, TSchema, Type } from "typebox";
|
|
4
4
|
|
|
@@ -445,6 +445,49 @@ declare const SkillsSkillCardResultSchema: Type.TObject<{
|
|
|
445
445
|
sizeBytes: Type.TInteger;
|
|
446
446
|
content: Type.TString;
|
|
447
447
|
}>;
|
|
448
|
+
/** Latest completed evaluator run attached to a proposal record. */
|
|
449
|
+
declare const SkillProposalEvaluationSchema: Type.TObject<{
|
|
450
|
+
id: Type.TString;
|
|
451
|
+
proposedVersion: Type.TString;
|
|
452
|
+
revisionHash: Type.TString;
|
|
453
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
454
|
+
startedAt: Type.TString;
|
|
455
|
+
completedAt: Type.TString;
|
|
456
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
457
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
458
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
459
|
+
status: Type.TLiteral<"completed">;
|
|
460
|
+
result: Type.TObject<{
|
|
461
|
+
summary: Type.TOptional<Type.TString>;
|
|
462
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
463
|
+
ruleId: Type.TString;
|
|
464
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
465
|
+
message: Type.TString;
|
|
466
|
+
file: Type.TOptional<Type.TString>;
|
|
467
|
+
line: Type.TOptional<Type.TInteger>;
|
|
468
|
+
}>>>;
|
|
469
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
470
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
471
|
+
mode: Type.TOptional<Type.TString>;
|
|
472
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
473
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
474
|
+
}>;
|
|
475
|
+
pluginId: Type.TString;
|
|
476
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
477
|
+
evaluatorId: Type.TString;
|
|
478
|
+
}>, Type.TObject<{
|
|
479
|
+
status: Type.TLiteral<"skipped">;
|
|
480
|
+
pluginId: Type.TString;
|
|
481
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
482
|
+
evaluatorId: Type.TString;
|
|
483
|
+
}>, Type.TObject<{
|
|
484
|
+
status: Type.TLiteral<"error">;
|
|
485
|
+
error: Type.TString;
|
|
486
|
+
pluginId: Type.TString;
|
|
487
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
488
|
+
evaluatorId: Type.TString;
|
|
489
|
+
}>]>>;
|
|
490
|
+
}>;
|
|
448
491
|
/** Lists skill-workshop proposals for the selected agent scope. */
|
|
449
492
|
declare const SkillsProposalsListParamsSchema: Type.TObject<{
|
|
450
493
|
agentId: Type.TOptional<Type.TString>;
|
|
@@ -529,7 +572,50 @@ declare const SkillsProposalInspectResultSchema: Type.TObject<{
|
|
|
529
572
|
quarantinedAt: Type.TOptional<Type.TString>;
|
|
530
573
|
staleAt: Type.TOptional<Type.TString>;
|
|
531
574
|
statusReason: Type.TOptional<Type.TString>;
|
|
575
|
+
evaluation: Type.TOptional<Type.TObject<{
|
|
576
|
+
id: Type.TString;
|
|
577
|
+
proposedVersion: Type.TString;
|
|
578
|
+
revisionHash: Type.TString;
|
|
579
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
580
|
+
startedAt: Type.TString;
|
|
581
|
+
completedAt: Type.TString;
|
|
582
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
583
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
584
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
585
|
+
status: Type.TLiteral<"completed">;
|
|
586
|
+
result: Type.TObject<{
|
|
587
|
+
summary: Type.TOptional<Type.TString>;
|
|
588
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
589
|
+
ruleId: Type.TString;
|
|
590
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
591
|
+
message: Type.TString;
|
|
592
|
+
file: Type.TOptional<Type.TString>;
|
|
593
|
+
line: Type.TOptional<Type.TInteger>;
|
|
594
|
+
}>>>;
|
|
595
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
596
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
597
|
+
mode: Type.TOptional<Type.TString>;
|
|
598
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
599
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
600
|
+
}>;
|
|
601
|
+
pluginId: Type.TString;
|
|
602
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
603
|
+
evaluatorId: Type.TString;
|
|
604
|
+
}>, Type.TObject<{
|
|
605
|
+
status: Type.TLiteral<"skipped">;
|
|
606
|
+
pluginId: Type.TString;
|
|
607
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
608
|
+
evaluatorId: Type.TString;
|
|
609
|
+
}>, Type.TObject<{
|
|
610
|
+
status: Type.TLiteral<"error">;
|
|
611
|
+
error: Type.TString;
|
|
612
|
+
pluginId: Type.TString;
|
|
613
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
614
|
+
evaluatorId: Type.TString;
|
|
615
|
+
}>]>>;
|
|
616
|
+
}>>;
|
|
532
617
|
}>;
|
|
618
|
+
revisionHash: Type.TOptional<Type.TString>;
|
|
533
619
|
content: Type.TString;
|
|
534
620
|
supportFiles: Type.TOptional<Type.TArray<Type.TObject<{
|
|
535
621
|
path: Type.TString;
|
|
@@ -566,7 +652,9 @@ declare const SkillsProposalUpdateParamsSchema: Type.TObject<{
|
|
|
566
652
|
declare const SkillsProposalReviseParamsSchema: Type.TObject<{
|
|
567
653
|
agentId: Type.TOptional<Type.TString>;
|
|
568
654
|
proposalId: Type.TString;
|
|
569
|
-
|
|
655
|
+
expectedRevisionHash: Type.TOptional<Type.TString>;
|
|
656
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
657
|
+
content: Type.TOptional<Type.TString>;
|
|
570
658
|
supportFiles: Type.TOptional<Type.TArray<Type.TObject<{
|
|
571
659
|
path: Type.TString;
|
|
572
660
|
content: Type.TString;
|
|
@@ -580,6 +668,7 @@ declare const SkillsProposalRequestRevisionParamsSchema: Type.TObject<{
|
|
|
580
668
|
agentId: Type.TOptional<Type.TString>;
|
|
581
669
|
targetAgentId: Type.TOptional<Type.TString>;
|
|
582
670
|
proposalId: Type.TString;
|
|
671
|
+
expectedRevisionHash: Type.TOptional<Type.TString>;
|
|
583
672
|
instructions: Type.TString;
|
|
584
673
|
sessionKey: Type.TString;
|
|
585
674
|
sessionId: Type.TOptional<Type.TString>;
|
|
@@ -594,8 +683,287 @@ declare const SkillsProposalRequestRevisionResultSchema: Type.TObject<{
|
|
|
594
683
|
declare const SkillsProposalActionParamsSchema: Type.TObject<{
|
|
595
684
|
agentId: Type.TOptional<Type.TString>;
|
|
596
685
|
proposalId: Type.TString;
|
|
686
|
+
expectedRevisionHash: Type.TOptional<Type.TString>;
|
|
687
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
597
688
|
reason: Type.TOptional<Type.TString>;
|
|
598
689
|
}>;
|
|
690
|
+
/** Runs configured proposal evaluators against the current draft. */
|
|
691
|
+
declare const SkillsProposalEvaluateParamsSchema: Type.TObject<{
|
|
692
|
+
agentId: Type.TOptional<Type.TString>;
|
|
693
|
+
proposalId: Type.TString;
|
|
694
|
+
expectedRevisionHash: Type.TOptional<Type.TString>;
|
|
695
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
696
|
+
}>;
|
|
697
|
+
/** Updated proposal record and completed evaluator run returned by manual evaluation. */
|
|
698
|
+
declare const SkillsProposalEvaluateResultSchema: Type.TObject<{
|
|
699
|
+
record: Type.TObject<{
|
|
700
|
+
schema: Type.TLiteral<"openclaw.skill-workshop.proposal.v1">;
|
|
701
|
+
id: Type.TString;
|
|
702
|
+
kind: Type.TUnion<[Type.TLiteral<"create">, Type.TLiteral<"update">]>;
|
|
703
|
+
status: Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"applied">, Type.TLiteral<"rejected">, Type.TLiteral<"quarantined">, Type.TLiteral<"stale">]>;
|
|
704
|
+
title: Type.TString;
|
|
705
|
+
description: Type.TString;
|
|
706
|
+
createdAt: Type.TString;
|
|
707
|
+
updatedAt: Type.TString;
|
|
708
|
+
createdBy: Type.TUnion<[Type.TLiteral<"skill-workshop">, Type.TLiteral<"cli">, Type.TLiteral<"gateway">]>;
|
|
709
|
+
origin: Type.TOptional<Type.TObject<{
|
|
710
|
+
agentId: Type.TOptional<Type.TString>;
|
|
711
|
+
sessionKey: Type.TOptional<Type.TString>;
|
|
712
|
+
runId: Type.TOptional<Type.TString>;
|
|
713
|
+
messageId: Type.TOptional<Type.TString>;
|
|
714
|
+
}>>;
|
|
715
|
+
proposedVersion: Type.TString;
|
|
716
|
+
draftFile: Type.TLiteral<"PROPOSAL.md">;
|
|
717
|
+
draftHash: Type.TString;
|
|
718
|
+
supportFiles: Type.TOptional<Type.TArray<Type.TObject<{
|
|
719
|
+
path: Type.TString;
|
|
720
|
+
sizeBytes: Type.TInteger;
|
|
721
|
+
hash: Type.TString;
|
|
722
|
+
targetExisted: Type.TOptional<Type.TBoolean>;
|
|
723
|
+
targetContentHash: Type.TOptional<Type.TString>;
|
|
724
|
+
}>>>;
|
|
725
|
+
target: Type.TObject<{
|
|
726
|
+
skillName: Type.TString;
|
|
727
|
+
skillKey: Type.TString;
|
|
728
|
+
skillDir: Type.TString;
|
|
729
|
+
skillFile: Type.TString;
|
|
730
|
+
source: Type.TOptional<Type.TString>;
|
|
731
|
+
currentContentHash: Type.TOptional<Type.TString>;
|
|
732
|
+
}>;
|
|
733
|
+
scan: Type.TObject<{
|
|
734
|
+
state: Type.TUnion<[Type.TLiteral<"pending">, Type.TLiteral<"clean">, Type.TLiteral<"failed">, Type.TLiteral<"quarantined">]>;
|
|
735
|
+
scannedAt: Type.TString;
|
|
736
|
+
critical: Type.TInteger;
|
|
737
|
+
warn: Type.TInteger;
|
|
738
|
+
info: Type.TInteger;
|
|
739
|
+
findings: Type.TArray<Type.TObject<{
|
|
740
|
+
ruleId: Type.TString;
|
|
741
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
742
|
+
file: Type.TString;
|
|
743
|
+
line: Type.TInteger;
|
|
744
|
+
message: Type.TString;
|
|
745
|
+
evidence: Type.TString;
|
|
746
|
+
}>>;
|
|
747
|
+
}>;
|
|
748
|
+
goal: Type.TOptional<Type.TString>;
|
|
749
|
+
evidence: Type.TOptional<Type.TString>;
|
|
750
|
+
appliedAt: Type.TOptional<Type.TString>;
|
|
751
|
+
rejectedAt: Type.TOptional<Type.TString>;
|
|
752
|
+
quarantinedAt: Type.TOptional<Type.TString>;
|
|
753
|
+
staleAt: Type.TOptional<Type.TString>;
|
|
754
|
+
statusReason: Type.TOptional<Type.TString>;
|
|
755
|
+
evaluation: Type.TOptional<Type.TObject<{
|
|
756
|
+
id: Type.TString;
|
|
757
|
+
proposedVersion: Type.TString;
|
|
758
|
+
revisionHash: Type.TString;
|
|
759
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
760
|
+
startedAt: Type.TString;
|
|
761
|
+
completedAt: Type.TString;
|
|
762
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
763
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
764
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
765
|
+
status: Type.TLiteral<"completed">;
|
|
766
|
+
result: Type.TObject<{
|
|
767
|
+
summary: Type.TOptional<Type.TString>;
|
|
768
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
769
|
+
ruleId: Type.TString;
|
|
770
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
771
|
+
message: Type.TString;
|
|
772
|
+
file: Type.TOptional<Type.TString>;
|
|
773
|
+
line: Type.TOptional<Type.TInteger>;
|
|
774
|
+
}>>>;
|
|
775
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
776
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
777
|
+
mode: Type.TOptional<Type.TString>;
|
|
778
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
779
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
780
|
+
}>;
|
|
781
|
+
pluginId: Type.TString;
|
|
782
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
783
|
+
evaluatorId: Type.TString;
|
|
784
|
+
}>, Type.TObject<{
|
|
785
|
+
status: Type.TLiteral<"skipped">;
|
|
786
|
+
pluginId: Type.TString;
|
|
787
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
788
|
+
evaluatorId: Type.TString;
|
|
789
|
+
}>, Type.TObject<{
|
|
790
|
+
status: Type.TLiteral<"error">;
|
|
791
|
+
error: Type.TString;
|
|
792
|
+
pluginId: Type.TString;
|
|
793
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
794
|
+
evaluatorId: Type.TString;
|
|
795
|
+
}>]>>;
|
|
796
|
+
}>>;
|
|
797
|
+
}>;
|
|
798
|
+
evaluation: Type.TObject<{
|
|
799
|
+
id: Type.TString;
|
|
800
|
+
proposedVersion: Type.TString;
|
|
801
|
+
revisionHash: Type.TString;
|
|
802
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
803
|
+
startedAt: Type.TString;
|
|
804
|
+
completedAt: Type.TString;
|
|
805
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
806
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
807
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
808
|
+
status: Type.TLiteral<"completed">;
|
|
809
|
+
result: Type.TObject<{
|
|
810
|
+
summary: Type.TOptional<Type.TString>;
|
|
811
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
812
|
+
ruleId: Type.TString;
|
|
813
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
814
|
+
message: Type.TString;
|
|
815
|
+
file: Type.TOptional<Type.TString>;
|
|
816
|
+
line: Type.TOptional<Type.TInteger>;
|
|
817
|
+
}>>>;
|
|
818
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
819
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
820
|
+
mode: Type.TOptional<Type.TString>;
|
|
821
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
822
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
823
|
+
}>;
|
|
824
|
+
pluginId: Type.TString;
|
|
825
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
826
|
+
evaluatorId: Type.TString;
|
|
827
|
+
}>, Type.TObject<{
|
|
828
|
+
status: Type.TLiteral<"skipped">;
|
|
829
|
+
pluginId: Type.TString;
|
|
830
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
831
|
+
evaluatorId: Type.TString;
|
|
832
|
+
}>, Type.TObject<{
|
|
833
|
+
status: Type.TLiteral<"error">;
|
|
834
|
+
error: Type.TString;
|
|
835
|
+
pluginId: Type.TString;
|
|
836
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
837
|
+
evaluatorId: Type.TString;
|
|
838
|
+
}>]>>;
|
|
839
|
+
}>;
|
|
840
|
+
}>;
|
|
841
|
+
/** Durable Skill Workshop lifecycle event returned for replay. */
|
|
842
|
+
declare const SkillProposalLifecycleEventSchema: Type.TObject<{
|
|
843
|
+
sequence: Type.TInteger;
|
|
844
|
+
eventId: Type.TString;
|
|
845
|
+
proposalId: Type.TString;
|
|
846
|
+
proposedVersion: Type.TString;
|
|
847
|
+
revisionHash: Type.TString;
|
|
848
|
+
type: Type.TUnion<[Type.TLiteral<"created">, Type.TLiteral<"revised">, Type.TLiteral<"evaluation_completed">, Type.TLiteral<"applied">, Type.TLiteral<"rejected">, Type.TLiteral<"quarantined">, Type.TLiteral<"stale">]>;
|
|
849
|
+
occurredAt: Type.TString;
|
|
850
|
+
actor: Type.TObject<{
|
|
851
|
+
type: Type.TUnion<[Type.TLiteral<"agent">, Type.TLiteral<"gateway">, Type.TLiteral<"plugin">, Type.TLiteral<"system">]>;
|
|
852
|
+
id: Type.TOptional<Type.TString>;
|
|
853
|
+
}>;
|
|
854
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
855
|
+
payload: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean, Type.TNull]>>>;
|
|
856
|
+
evaluation: Type.TOptional<Type.TObject<{
|
|
857
|
+
id: Type.TString;
|
|
858
|
+
proposedVersion: Type.TString;
|
|
859
|
+
revisionHash: Type.TString;
|
|
860
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
861
|
+
startedAt: Type.TString;
|
|
862
|
+
completedAt: Type.TString;
|
|
863
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
864
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
865
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
866
|
+
status: Type.TLiteral<"completed">;
|
|
867
|
+
result: Type.TObject<{
|
|
868
|
+
summary: Type.TOptional<Type.TString>;
|
|
869
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
870
|
+
ruleId: Type.TString;
|
|
871
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
872
|
+
message: Type.TString;
|
|
873
|
+
file: Type.TOptional<Type.TString>;
|
|
874
|
+
line: Type.TOptional<Type.TInteger>;
|
|
875
|
+
}>>>;
|
|
876
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
877
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
878
|
+
mode: Type.TOptional<Type.TString>;
|
|
879
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
880
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
881
|
+
}>;
|
|
882
|
+
pluginId: Type.TString;
|
|
883
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
884
|
+
evaluatorId: Type.TString;
|
|
885
|
+
}>, Type.TObject<{
|
|
886
|
+
status: Type.TLiteral<"skipped">;
|
|
887
|
+
pluginId: Type.TString;
|
|
888
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
889
|
+
evaluatorId: Type.TString;
|
|
890
|
+
}>, Type.TObject<{
|
|
891
|
+
status: Type.TLiteral<"error">;
|
|
892
|
+
error: Type.TString;
|
|
893
|
+
pluginId: Type.TString;
|
|
894
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
895
|
+
evaluatorId: Type.TString;
|
|
896
|
+
}>]>>;
|
|
897
|
+
}>>;
|
|
898
|
+
}>;
|
|
899
|
+
/** Lists durable proposal lifecycle events after an optional sequence cursor. */
|
|
900
|
+
declare const SkillsProposalEventsListParamsSchema: Type.TObject<{
|
|
901
|
+
agentId: Type.TOptional<Type.TString>;
|
|
902
|
+
proposalId: Type.TOptional<Type.TString>;
|
|
903
|
+
afterSequence: Type.TOptional<Type.TInteger>;
|
|
904
|
+
limit: Type.TOptional<Type.TInteger>;
|
|
905
|
+
}>;
|
|
906
|
+
/** Sequence-ordered proposal lifecycle replay page. */
|
|
907
|
+
declare const SkillsProposalEventsListResultSchema: Type.TObject<{
|
|
908
|
+
events: Type.TArray<Type.TObject<{
|
|
909
|
+
sequence: Type.TInteger;
|
|
910
|
+
eventId: Type.TString;
|
|
911
|
+
proposalId: Type.TString;
|
|
912
|
+
proposedVersion: Type.TString;
|
|
913
|
+
revisionHash: Type.TString;
|
|
914
|
+
type: Type.TUnion<[Type.TLiteral<"created">, Type.TLiteral<"revised">, Type.TLiteral<"evaluation_completed">, Type.TLiteral<"applied">, Type.TLiteral<"rejected">, Type.TLiteral<"quarantined">, Type.TLiteral<"stale">]>;
|
|
915
|
+
occurredAt: Type.TString;
|
|
916
|
+
actor: Type.TObject<{
|
|
917
|
+
type: Type.TUnion<[Type.TLiteral<"agent">, Type.TLiteral<"gateway">, Type.TLiteral<"plugin">, Type.TLiteral<"system">]>;
|
|
918
|
+
id: Type.TOptional<Type.TString>;
|
|
919
|
+
}>;
|
|
920
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
921
|
+
payload: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean, Type.TNull]>>>;
|
|
922
|
+
evaluation: Type.TOptional<Type.TObject<{
|
|
923
|
+
id: Type.TString;
|
|
924
|
+
proposedVersion: Type.TString;
|
|
925
|
+
revisionHash: Type.TString;
|
|
926
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
927
|
+
startedAt: Type.TString;
|
|
928
|
+
completedAt: Type.TString;
|
|
929
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
930
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
931
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
932
|
+
status: Type.TLiteral<"completed">;
|
|
933
|
+
result: Type.TObject<{
|
|
934
|
+
summary: Type.TOptional<Type.TString>;
|
|
935
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
936
|
+
ruleId: Type.TString;
|
|
937
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
938
|
+
message: Type.TString;
|
|
939
|
+
file: Type.TOptional<Type.TString>;
|
|
940
|
+
line: Type.TOptional<Type.TInteger>;
|
|
941
|
+
}>>>;
|
|
942
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
943
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
944
|
+
mode: Type.TOptional<Type.TString>;
|
|
945
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
946
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
947
|
+
}>;
|
|
948
|
+
pluginId: Type.TString;
|
|
949
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
950
|
+
evaluatorId: Type.TString;
|
|
951
|
+
}>, Type.TObject<{
|
|
952
|
+
status: Type.TLiteral<"skipped">;
|
|
953
|
+
pluginId: Type.TString;
|
|
954
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
955
|
+
evaluatorId: Type.TString;
|
|
956
|
+
}>, Type.TObject<{
|
|
957
|
+
status: Type.TLiteral<"error">;
|
|
958
|
+
error: Type.TString;
|
|
959
|
+
pluginId: Type.TString;
|
|
960
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
961
|
+
evaluatorId: Type.TString;
|
|
962
|
+
}>]>>;
|
|
963
|
+
}>>;
|
|
964
|
+
}>>;
|
|
965
|
+
nextSequence: Type.TOptional<Type.TInteger>;
|
|
966
|
+
}>;
|
|
599
967
|
/** Result returned after applying a skill proposal to disk. */
|
|
600
968
|
declare const SkillsProposalApplyResultSchema: Type.TObject<{
|
|
601
969
|
record: Type.TObject<{
|
|
@@ -654,6 +1022,48 @@ declare const SkillsProposalApplyResultSchema: Type.TObject<{
|
|
|
654
1022
|
quarantinedAt: Type.TOptional<Type.TString>;
|
|
655
1023
|
staleAt: Type.TOptional<Type.TString>;
|
|
656
1024
|
statusReason: Type.TOptional<Type.TString>;
|
|
1025
|
+
evaluation: Type.TOptional<Type.TObject<{
|
|
1026
|
+
id: Type.TString;
|
|
1027
|
+
proposedVersion: Type.TString;
|
|
1028
|
+
revisionHash: Type.TString;
|
|
1029
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
1030
|
+
startedAt: Type.TString;
|
|
1031
|
+
completedAt: Type.TString;
|
|
1032
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
1033
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
1034
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
1035
|
+
status: Type.TLiteral<"completed">;
|
|
1036
|
+
result: Type.TObject<{
|
|
1037
|
+
summary: Type.TOptional<Type.TString>;
|
|
1038
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
1039
|
+
ruleId: Type.TString;
|
|
1040
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
1041
|
+
message: Type.TString;
|
|
1042
|
+
file: Type.TOptional<Type.TString>;
|
|
1043
|
+
line: Type.TOptional<Type.TInteger>;
|
|
1044
|
+
}>>>;
|
|
1045
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
1046
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
1047
|
+
mode: Type.TOptional<Type.TString>;
|
|
1048
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
1049
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
1050
|
+
}>;
|
|
1051
|
+
pluginId: Type.TString;
|
|
1052
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
1053
|
+
evaluatorId: Type.TString;
|
|
1054
|
+
}>, Type.TObject<{
|
|
1055
|
+
status: Type.TLiteral<"skipped">;
|
|
1056
|
+
pluginId: Type.TString;
|
|
1057
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
1058
|
+
evaluatorId: Type.TString;
|
|
1059
|
+
}>, Type.TObject<{
|
|
1060
|
+
status: Type.TLiteral<"error">;
|
|
1061
|
+
error: Type.TString;
|
|
1062
|
+
pluginId: Type.TString;
|
|
1063
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
1064
|
+
evaluatorId: Type.TString;
|
|
1065
|
+
}>]>>;
|
|
1066
|
+
}>>;
|
|
657
1067
|
}>;
|
|
658
1068
|
targetSkillFile: Type.TString;
|
|
659
1069
|
}>;
|
|
@@ -714,6 +1124,48 @@ declare const SkillsProposalRecordResultSchema: Type.TObject<{
|
|
|
714
1124
|
quarantinedAt: Type.TOptional<Type.TString>;
|
|
715
1125
|
staleAt: Type.TOptional<Type.TString>;
|
|
716
1126
|
statusReason: Type.TOptional<Type.TString>;
|
|
1127
|
+
evaluation: Type.TOptional<Type.TObject<{
|
|
1128
|
+
id: Type.TString;
|
|
1129
|
+
proposedVersion: Type.TString;
|
|
1130
|
+
revisionHash: Type.TString;
|
|
1131
|
+
trigger: Type.TUnion<[Type.TLiteral<"manual">, Type.TLiteral<"apply">]>;
|
|
1132
|
+
startedAt: Type.TString;
|
|
1133
|
+
completedAt: Type.TString;
|
|
1134
|
+
correlationId: Type.TOptional<Type.TString>;
|
|
1135
|
+
targetTreeSha256: Type.TOptional<Type.TString>;
|
|
1136
|
+
outcomes: Type.TArray<Type.TUnion<[Type.TObject<{
|
|
1137
|
+
status: Type.TLiteral<"completed">;
|
|
1138
|
+
result: Type.TObject<{
|
|
1139
|
+
summary: Type.TOptional<Type.TString>;
|
|
1140
|
+
findings: Type.TOptional<Type.TArray<Type.TObject<{
|
|
1141
|
+
ruleId: Type.TString;
|
|
1142
|
+
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warn">, Type.TLiteral<"critical">]>;
|
|
1143
|
+
message: Type.TString;
|
|
1144
|
+
file: Type.TOptional<Type.TString>;
|
|
1145
|
+
line: Type.TOptional<Type.TInteger>;
|
|
1146
|
+
}>>>;
|
|
1147
|
+
metrics: Type.TOptional<Type.TRecord<"^.*$", Type.TUnion<[Type.TString, Type.TNumber, Type.TBoolean]>>>;
|
|
1148
|
+
evaluatorVersion: Type.TOptional<Type.TString>;
|
|
1149
|
+
mode: Type.TOptional<Type.TString>;
|
|
1150
|
+
decision: Type.TOptional<Type.TUnion<[Type.TLiteral<"pass">, Type.TLiteral<"revise">, Type.TLiteral<"block">]>>;
|
|
1151
|
+
decisionReason: Type.TOptional<Type.TString>;
|
|
1152
|
+
}>;
|
|
1153
|
+
pluginId: Type.TString;
|
|
1154
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
1155
|
+
evaluatorId: Type.TString;
|
|
1156
|
+
}>, Type.TObject<{
|
|
1157
|
+
status: Type.TLiteral<"skipped">;
|
|
1158
|
+
pluginId: Type.TString;
|
|
1159
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
1160
|
+
evaluatorId: Type.TString;
|
|
1161
|
+
}>, Type.TObject<{
|
|
1162
|
+
status: Type.TLiteral<"error">;
|
|
1163
|
+
error: Type.TString;
|
|
1164
|
+
pluginId: Type.TString;
|
|
1165
|
+
pluginVersion: Type.TOptional<Type.TString>;
|
|
1166
|
+
evaluatorId: Type.TString;
|
|
1167
|
+
}>]>>;
|
|
1168
|
+
}>>;
|
|
717
1169
|
}>;
|
|
718
1170
|
/** Reads persisted skill lifecycle curation state. */
|
|
719
1171
|
declare const SkillsCuratorStatusParamsSchema: Type.TObject<{}>;
|
|
@@ -853,6 +1305,9 @@ declare const ToolsEffectiveEntrySchema: Type.TObject<{
|
|
|
853
1305
|
source: Type.TUnion<[Type.TLiteral<"core">, Type.TLiteral<"plugin">, Type.TLiteral<"channel">, Type.TLiteral<"mcp">]>;
|
|
854
1306
|
pluginId: Type.TOptional<Type.TString>;
|
|
855
1307
|
channelId: Type.TOptional<Type.TString>;
|
|
1308
|
+
mcpServer: Type.TOptional<Type.TString>;
|
|
1309
|
+
mcpToolName: Type.TOptional<Type.TString>;
|
|
1310
|
+
deniedBySession: Type.TOptional<Type.TLiteral<true>>;
|
|
856
1311
|
risk: Type.TOptional<Type.TUnion<[Type.TLiteral<"low">, Type.TLiteral<"medium">, Type.TLiteral<"high">]>>;
|
|
857
1312
|
tags: Type.TOptional<Type.TArray<Type.TString>>;
|
|
858
1313
|
}>;
|
|
@@ -869,6 +1324,9 @@ declare const ToolsEffectiveGroupSchema: Type.TObject<{
|
|
|
869
1324
|
source: Type.TUnion<[Type.TLiteral<"core">, Type.TLiteral<"plugin">, Type.TLiteral<"channel">, Type.TLiteral<"mcp">]>;
|
|
870
1325
|
pluginId: Type.TOptional<Type.TString>;
|
|
871
1326
|
channelId: Type.TOptional<Type.TString>;
|
|
1327
|
+
mcpServer: Type.TOptional<Type.TString>;
|
|
1328
|
+
mcpToolName: Type.TOptional<Type.TString>;
|
|
1329
|
+
deniedBySession: Type.TOptional<Type.TLiteral<true>>;
|
|
872
1330
|
risk: Type.TOptional<Type.TUnion<[Type.TLiteral<"low">, Type.TLiteral<"medium">, Type.TLiteral<"high">]>>;
|
|
873
1331
|
tags: Type.TOptional<Type.TArray<Type.TString>>;
|
|
874
1332
|
}>>;
|
|
@@ -878,6 +1336,7 @@ declare const ToolsEffectiveNoticeSchema: Type.TObject<{
|
|
|
878
1336
|
id: Type.TString;
|
|
879
1337
|
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warning">]>;
|
|
880
1338
|
message: Type.TString;
|
|
1339
|
+
servers: Type.TOptional<Type.TArray<Type.TString>>;
|
|
881
1340
|
}>;
|
|
882
1341
|
/** Effective tool set for a session, including profile and filtering notices. */
|
|
883
1342
|
declare const ToolsEffectiveResultSchema: Type.TObject<{
|
|
@@ -895,6 +1354,9 @@ declare const ToolsEffectiveResultSchema: Type.TObject<{
|
|
|
895
1354
|
source: Type.TUnion<[Type.TLiteral<"core">, Type.TLiteral<"plugin">, Type.TLiteral<"channel">, Type.TLiteral<"mcp">]>;
|
|
896
1355
|
pluginId: Type.TOptional<Type.TString>;
|
|
897
1356
|
channelId: Type.TOptional<Type.TString>;
|
|
1357
|
+
mcpServer: Type.TOptional<Type.TString>;
|
|
1358
|
+
mcpToolName: Type.TOptional<Type.TString>;
|
|
1359
|
+
deniedBySession: Type.TOptional<Type.TLiteral<true>>;
|
|
898
1360
|
risk: Type.TOptional<Type.TUnion<[Type.TLiteral<"low">, Type.TLiteral<"medium">, Type.TLiteral<"high">]>>;
|
|
899
1361
|
tags: Type.TOptional<Type.TArray<Type.TString>>;
|
|
900
1362
|
}>>;
|
|
@@ -903,6 +1365,7 @@ declare const ToolsEffectiveResultSchema: Type.TObject<{
|
|
|
903
1365
|
id: Type.TString;
|
|
904
1366
|
severity: Type.TUnion<[Type.TLiteral<"info">, Type.TLiteral<"warning">]>;
|
|
905
1367
|
message: Type.TString;
|
|
1368
|
+
servers: Type.TOptional<Type.TArray<Type.TString>>;
|
|
906
1369
|
}>>>;
|
|
907
1370
|
}>;
|
|
908
1371
|
/** Normalized error shape for tool invocation failures. */
|
|
@@ -981,6 +1444,12 @@ type SkillsProposalReviseParams = Static<typeof SkillsProposalReviseParamsSchema
|
|
|
981
1444
|
type SkillsProposalRequestRevisionParams = Static<typeof SkillsProposalRequestRevisionParamsSchema>;
|
|
982
1445
|
type SkillsProposalRequestRevisionResult = Static<typeof SkillsProposalRequestRevisionResultSchema>;
|
|
983
1446
|
type SkillsProposalActionParams = Static<typeof SkillsProposalActionParamsSchema>;
|
|
1447
|
+
type SkillProposalEvaluation = Static<typeof SkillProposalEvaluationSchema>;
|
|
1448
|
+
type SkillsProposalEvaluateParams = Static<typeof SkillsProposalEvaluateParamsSchema>;
|
|
1449
|
+
type SkillsProposalEvaluateResult = Static<typeof SkillsProposalEvaluateResultSchema>;
|
|
1450
|
+
type SkillProposalLifecycleEvent = Static<typeof SkillProposalLifecycleEventSchema>;
|
|
1451
|
+
type SkillsProposalEventsListParams = Static<typeof SkillsProposalEventsListParamsSchema>;
|
|
1452
|
+
type SkillsProposalEventsListResult = Static<typeof SkillsProposalEventsListResultSchema>;
|
|
984
1453
|
type SkillsProposalApplyResult = Static<typeof SkillsProposalApplyResultSchema>;
|
|
985
1454
|
type SkillsProposalRecordResult = Static<typeof SkillsProposalRecordResultSchema>;
|
|
986
1455
|
type SkillsCuratorStatusParams = Static<typeof SkillsCuratorStatusParamsSchema>;
|
|
@@ -4224,11 +4693,18 @@ declare const BoardCommandEventSchema: Type.TObject<{
|
|
|
4224
4693
|
type BoardCommandEvent = Static<typeof BoardCommandEventSchema>;
|
|
4225
4694
|
//#endregion
|
|
4226
4695
|
//#region src/schema/sessions-row.d.ts
|
|
4696
|
+
declare const SessionToolOverridesSchema: Type.TObject<{
|
|
4697
|
+
mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
|
|
4698
|
+
mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
|
|
4699
|
+
skills: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
|
|
4700
|
+
webSearch: Type.TOptional<Type.TBoolean>;
|
|
4701
|
+
}>;
|
|
4227
4702
|
/** Projected actor that caused a session node to be created. */
|
|
4228
4703
|
declare const SessionCreatedActorSchema: Type.TObject<{
|
|
4229
4704
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4230
4705
|
id: Type.TOptional<Type.TString>;
|
|
4231
|
-
label: Type.TOptional<Type.TString>;
|
|
4706
|
+
label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
|
|
4707
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4232
4708
|
}>;
|
|
4233
4709
|
/** Stable Gateway session row fields; mutation envelopes may add null tombstones. */
|
|
4234
4710
|
declare const SessionRowSchema: Type.TObject<{
|
|
@@ -4249,7 +4725,8 @@ declare const SessionRowSchema: Type.TObject<{
|
|
|
4249
4725
|
archivedBy: Type.TOptional<Type.TObject<{
|
|
4250
4726
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4251
4727
|
id: Type.TOptional<Type.TString>;
|
|
4252
|
-
label: Type.TOptional<Type.TString>;
|
|
4728
|
+
label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
|
|
4729
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4253
4730
|
}>>;
|
|
4254
4731
|
pinned: Type.TOptional<Type.TBoolean>;
|
|
4255
4732
|
pinnedAt: Type.TOptional<Type.TNumber>;
|
|
@@ -4283,7 +4760,8 @@ declare const SessionRowSchema: Type.TObject<{
|
|
|
4283
4760
|
createdActor: Type.TOptional<Type.TObject<{
|
|
4284
4761
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4285
4762
|
id: Type.TOptional<Type.TString>;
|
|
4286
|
-
label: Type.TOptional<Type.TString>;
|
|
4763
|
+
label: Type.TOptional<Type.TString>; /** Durable profile avatar route; absent for actors without a stored profile avatar. */
|
|
4764
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4287
4765
|
}>>;
|
|
4288
4766
|
visibility: Type.TOptional<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
|
|
4289
4767
|
sharingRole: Type.TOptional<Type.TUnion<[Type.TLiteral<"admin">, Type.TLiteral<"owner">, Type.TLiteral<"member">, Type.TLiteral<"viewer">]>>;
|
|
@@ -4302,8 +4780,15 @@ declare const SessionRowSchema: Type.TObject<{
|
|
|
4302
4780
|
estimatedCostUsd: Type.TOptional<Type.TNumber>;
|
|
4303
4781
|
model: Type.TOptional<Type.TString>;
|
|
4304
4782
|
modelProvider: Type.TOptional<Type.TString>;
|
|
4783
|
+
toolOverrides: Type.TOptional<Type.TObject<{
|
|
4784
|
+
mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
|
|
4785
|
+
mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
|
|
4786
|
+
skills: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
|
|
4787
|
+
webSearch: Type.TOptional<Type.TBoolean>;
|
|
4788
|
+
}>>;
|
|
4305
4789
|
}>;
|
|
4306
4790
|
type SessionCreatedActor = Static<typeof SessionCreatedActorSchema>;
|
|
4791
|
+
type SessionToolOverrides = Static<typeof SessionToolOverridesSchema>;
|
|
4307
4792
|
type SessionRow = Static<typeof SessionRowSchema>;
|
|
4308
4793
|
//#endregion
|
|
4309
4794
|
//#region src/schema/sessions-suggestions.d.ts
|
|
@@ -4318,6 +4803,7 @@ declare const SessionSuggestionSchema: Type.TObject<{
|
|
|
4318
4803
|
id: Type.TString;
|
|
4319
4804
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4320
4805
|
label: Type.TOptional<Type.TString>;
|
|
4806
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4321
4807
|
}>;
|
|
4322
4808
|
text: Type.TString;
|
|
4323
4809
|
createdAt: Type.TInteger;
|
|
@@ -4347,6 +4833,7 @@ declare const SessionSuggestionsAddResultSchema: Type.TObject<{
|
|
|
4347
4833
|
id: Type.TString;
|
|
4348
4834
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4349
4835
|
label: Type.TOptional<Type.TString>;
|
|
4836
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4350
4837
|
}>;
|
|
4351
4838
|
text: Type.TString;
|
|
4352
4839
|
createdAt: Type.TInteger;
|
|
@@ -4362,6 +4849,7 @@ declare const SessionSuggestionsListResultSchema: Type.TObject<{
|
|
|
4362
4849
|
id: Type.TString;
|
|
4363
4850
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4364
4851
|
label: Type.TOptional<Type.TString>;
|
|
4852
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4365
4853
|
}>;
|
|
4366
4854
|
text: Type.TString;
|
|
4367
4855
|
createdAt: Type.TInteger;
|
|
@@ -4378,6 +4866,7 @@ declare const SessionSuggestionsResolveResultSchema: Type.TObject<{
|
|
|
4378
4866
|
id: Type.TString;
|
|
4379
4867
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4380
4868
|
label: Type.TOptional<Type.TString>;
|
|
4869
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4381
4870
|
}>;
|
|
4382
4871
|
text: Type.TString;
|
|
4383
4872
|
createdAt: Type.TInteger;
|
|
@@ -4394,6 +4883,7 @@ declare const SessionSuggestionEventSchema: Type.TObject<{
|
|
|
4394
4883
|
id: Type.TString;
|
|
4395
4884
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4396
4885
|
label: Type.TOptional<Type.TString>;
|
|
4886
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4397
4887
|
}>;
|
|
4398
4888
|
text: Type.TString;
|
|
4399
4889
|
createdAt: Type.TInteger;
|
|
@@ -4418,6 +4908,7 @@ declare const SessionTypingEventSchema: Type.TObject<{
|
|
|
4418
4908
|
id: Type.TString;
|
|
4419
4909
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4420
4910
|
label: Type.TOptional<Type.TString>;
|
|
4911
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4421
4912
|
}>;
|
|
4422
4913
|
typing: Type.TBoolean;
|
|
4423
4914
|
ts: Type.TInteger;
|
|
@@ -4735,6 +5226,7 @@ declare const SessionCatalogSessionSchema: Type.TObject<{
|
|
|
4735
5226
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4736
5227
|
id: Type.TOptional<Type.TString>;
|
|
4737
5228
|
label: Type.TOptional<Type.TString>;
|
|
5229
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4738
5230
|
}>>;
|
|
4739
5231
|
canContinue: Type.TBoolean;
|
|
4740
5232
|
canArchive: Type.TBoolean;
|
|
@@ -4769,6 +5261,7 @@ declare const SessionCatalogHostSchema: Type.TObject<{
|
|
|
4769
5261
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4770
5262
|
id: Type.TOptional<Type.TString>;
|
|
4771
5263
|
label: Type.TOptional<Type.TString>;
|
|
5264
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4772
5265
|
}>>;
|
|
4773
5266
|
canContinue: Type.TBoolean;
|
|
4774
5267
|
canArchive: Type.TBoolean;
|
|
@@ -4820,6 +5313,7 @@ declare const SessionCatalogSchema: Type.TObject<{
|
|
|
4820
5313
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4821
5314
|
id: Type.TOptional<Type.TString>;
|
|
4822
5315
|
label: Type.TOptional<Type.TString>;
|
|
5316
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4823
5317
|
}>>;
|
|
4824
5318
|
canContinue: Type.TBoolean;
|
|
4825
5319
|
canArchive: Type.TBoolean;
|
|
@@ -4886,6 +5380,7 @@ declare const SessionsCatalogListResultSchema: Type.TObject<{
|
|
|
4886
5380
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4887
5381
|
id: Type.TOptional<Type.TString>;
|
|
4888
5382
|
label: Type.TOptional<Type.TString>;
|
|
5383
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4889
5384
|
}>>;
|
|
4890
5385
|
canContinue: Type.TBoolean;
|
|
4891
5386
|
canArchive: Type.TBoolean;
|
|
@@ -4936,6 +5431,7 @@ declare const SessionsCatalogHostEventSchema: Type.TObject<{
|
|
|
4936
5431
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
4937
5432
|
id: Type.TOptional<Type.TString>;
|
|
4938
5433
|
label: Type.TOptional<Type.TString>;
|
|
5434
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
4939
5435
|
}>>;
|
|
4940
5436
|
canContinue: Type.TBoolean;
|
|
4941
5437
|
canArchive: Type.TBoolean;
|
|
@@ -5316,6 +5812,10 @@ declare const AgentParamsSchema: Type.TObject<{
|
|
|
5316
5812
|
filePath: Type.TOptional<Type.TString>;
|
|
5317
5813
|
mimeType: Type.TOptional<Type.TString>;
|
|
5318
5814
|
name: Type.TOptional<Type.TString>;
|
|
5815
|
+
sizeBytes: Type.TOptional<Type.TNumber>;
|
|
5816
|
+
durationMs: Type.TOptional<Type.TNumber>;
|
|
5817
|
+
width: Type.TOptional<Type.TNumber>;
|
|
5818
|
+
height: Type.TOptional<Type.TNumber>;
|
|
5319
5819
|
}>>>;
|
|
5320
5820
|
mediaUrls: Type.TOptional<Type.TArray<Type.TString>>;
|
|
5321
5821
|
statsLine: Type.TOptional<Type.TString>;
|
|
@@ -5335,6 +5835,7 @@ declare const AgentParamsSchema: Type.TObject<{
|
|
|
5335
5835
|
swarmCollector: Type.TOptional<Type.TBoolean>;
|
|
5336
5836
|
swarmOutputSchema: Type.TOptional<Type.TRecord<"^.*$", Type.TUnknown>>;
|
|
5337
5837
|
forceRestartSafeTools: Type.TOptional<Type.TBoolean>;
|
|
5838
|
+
forceCodeModeTools: Type.TOptional<Type.TBoolean>;
|
|
5338
5839
|
voiceWakeTrigger: Type.TOptional<Type.TString>;
|
|
5339
5840
|
idempotencyKey: Type.TString;
|
|
5340
5841
|
label: Type.TOptional<Type.TString>;
|
|
@@ -5559,6 +6060,7 @@ declare const ArtifactsDownloadResultSchema: Type.TObject<{
|
|
|
5559
6060
|
encoding: Type.TOptional<Type.TLiteral<"base64">>;
|
|
5560
6061
|
data: Type.TOptional<Type.TString>;
|
|
5561
6062
|
url: Type.TOptional<Type.TString>;
|
|
6063
|
+
expiresAt: Type.TOptional<Type.TString>;
|
|
5562
6064
|
}>;
|
|
5563
6065
|
type ArtifactSummary = Static<typeof ArtifactSummarySchema>;
|
|
5564
6066
|
type ArtifactsListParams = Static<typeof ArtifactsListParamsSchema>;
|
|
@@ -6738,7 +7240,8 @@ declare const CommandEntrySchema: Type.TObject<{
|
|
|
6738
7240
|
textAliases: Type.TOptional<Type.TArray<Type.TString>>;
|
|
6739
7241
|
description: Type.TString;
|
|
6740
7242
|
category: Type.TOptional<Type.TUnion<[Type.TLiteral<"session">, Type.TLiteral<"options">, Type.TLiteral<"status">, Type.TLiteral<"management">, Type.TLiteral<"media">, Type.TLiteral<"tools">, Type.TLiteral<"docks">]>>;
|
|
6741
|
-
source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>;
|
|
7243
|
+
source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>; /** Whether a skill command is also present in the model-visible skill catalog. */
|
|
7244
|
+
skillModelVisible: Type.TOptional<Type.TBoolean>;
|
|
6742
7245
|
scope: Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"native">, Type.TLiteral<"both">]>;
|
|
6743
7246
|
acceptsArgs: Type.TBoolean;
|
|
6744
7247
|
args: Type.TOptional<Type.TArray<Type.TObject<{
|
|
@@ -6768,7 +7271,8 @@ declare const CommandsListResultSchema: Type.TObject<{
|
|
|
6768
7271
|
textAliases: Type.TOptional<Type.TArray<Type.TString>>;
|
|
6769
7272
|
description: Type.TString;
|
|
6770
7273
|
category: Type.TOptional<Type.TUnion<[Type.TLiteral<"session">, Type.TLiteral<"options">, Type.TLiteral<"status">, Type.TLiteral<"management">, Type.TLiteral<"media">, Type.TLiteral<"tools">, Type.TLiteral<"docks">]>>;
|
|
6771
|
-
source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>;
|
|
7274
|
+
source: Type.TUnion<[Type.TLiteral<"native">, Type.TLiteral<"skill">, Type.TLiteral<"plugin">]>; /** Whether a skill command is also present in the model-visible skill catalog. */
|
|
7275
|
+
skillModelVisible: Type.TOptional<Type.TBoolean>;
|
|
6772
7276
|
scope: Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"native">, Type.TLiteral<"both">]>;
|
|
6773
7277
|
acceptsArgs: Type.TBoolean;
|
|
6774
7278
|
args: Type.TOptional<Type.TArray<Type.TObject<{
|
|
@@ -6853,6 +7357,7 @@ declare const ConfigSchemaResponseSchema: Type.TObject<{
|
|
|
6853
7357
|
uiHints: Type.TRecord<"^.*$", Type.TObject<{
|
|
6854
7358
|
label: Type.TOptional<Type.TString>;
|
|
6855
7359
|
help: Type.TOptional<Type.TString>;
|
|
7360
|
+
docsUrl: Type.TOptional<Type.TString>;
|
|
6856
7361
|
tags: Type.TOptional<Type.TArray<Type.TString>>;
|
|
6857
7362
|
group: Type.TOptional<Type.TString>;
|
|
6858
7363
|
order: Type.TOptional<Type.TInteger>;
|
|
@@ -6873,6 +7378,7 @@ declare const ConfigSchemaLookupResultSchema: Type.TObject<{
|
|
|
6873
7378
|
hint: Type.TOptional<Type.TObject<{
|
|
6874
7379
|
label: Type.TOptional<Type.TString>;
|
|
6875
7380
|
help: Type.TOptional<Type.TString>;
|
|
7381
|
+
docsUrl: Type.TOptional<Type.TString>;
|
|
6876
7382
|
tags: Type.TOptional<Type.TArray<Type.TString>>;
|
|
6877
7383
|
group: Type.TOptional<Type.TString>;
|
|
6878
7384
|
order: Type.TOptional<Type.TInteger>;
|
|
@@ -6893,6 +7399,7 @@ declare const ConfigSchemaLookupResultSchema: Type.TObject<{
|
|
|
6893
7399
|
hint: Type.TOptional<Type.TObject<{
|
|
6894
7400
|
label: Type.TOptional<Type.TString>;
|
|
6895
7401
|
help: Type.TOptional<Type.TString>;
|
|
7402
|
+
docsUrl: Type.TOptional<Type.TString>;
|
|
6896
7403
|
tags: Type.TOptional<Type.TArray<Type.TString>>;
|
|
6897
7404
|
group: Type.TOptional<Type.TString>;
|
|
6898
7405
|
order: Type.TOptional<Type.TInteger>;
|
|
@@ -6927,7 +7434,10 @@ declare const SystemAgentChatParamsSchema: Type.TObject<{
|
|
|
6927
7434
|
sessionId: Type.TString;
|
|
6928
7435
|
message: Type.TOptional<Type.TString>; /** Seeds a purpose-specific first greeting for a fresh conversation. */
|
|
6929
7436
|
welcomeVariant: Type.TOptional<Type.TUnion<[Type.TLiteral<"onboarding">, Type.TLiteral<"new-agent">]>>; /** Drop any in-flight approval/wizard state and start the session over. */
|
|
6930
|
-
reset: Type.TOptional<Type.TBoolean>; /**
|
|
7437
|
+
reset: Type.TOptional<Type.TBoolean>; /** Ephemeral Control UI location hint for interpreting the current user turn. */
|
|
7438
|
+
context: Type.TOptional<Type.TObject<{
|
|
7439
|
+
page: Type.TString;
|
|
7440
|
+
}>>; /** Host-only regular-agent delegation context. Never model-authored. */
|
|
6931
7441
|
delegation: Type.TOptional<Type.TObject<{
|
|
6932
7442
|
agentId: Type.TOptional<Type.TString>;
|
|
6933
7443
|
sessionKey: Type.TOptional<Type.TString>;
|
|
@@ -7045,14 +7555,20 @@ declare const SystemAgentSetupDetectResultSchema: Type.TObject<{
|
|
|
7045
7555
|
website: Type.TOptional<Type.TString>;
|
|
7046
7556
|
}>>;
|
|
7047
7557
|
unavailableCandidates: Type.TOptional<Type.TArray<Type.TObject<{
|
|
7048
|
-
id: Type.TString;
|
|
7558
|
+
id: Type.TString; /** Canonical provider identity for clients with bundled brand artwork. */
|
|
7559
|
+
brandId: Type.TOptional<Type.TString>;
|
|
7049
7560
|
label: Type.TString;
|
|
7050
7561
|
detail: Type.TString;
|
|
7051
7562
|
reason: Type.TString;
|
|
7563
|
+
authOptionId: Type.TOptional<Type.TString>;
|
|
7564
|
+
manualProviderId: Type.TOptional<Type.TString>;
|
|
7565
|
+
icon: Type.TOptional<Type.TString>;
|
|
7566
|
+
website: Type.TOptional<Type.TString>;
|
|
7052
7567
|
}>>>; /** Text-inference key/token methods exposed by the Gateway provider registry. */
|
|
7053
7568
|
manualProviders: Type.TArray<Type.TObject<{
|
|
7054
7569
|
/** Opaque provider-auth choice sent back during activation. */id: Type.TString; /** Canonical provider identity for clients with bundled brand artwork. */
|
|
7055
|
-
brandId: Type.TOptional<Type.TString>;
|
|
7570
|
+
brandId: Type.TOptional<Type.TString>; /** Provider family shown above the specific credential method. */
|
|
7571
|
+
groupLabel: Type.TOptional<Type.TString>;
|
|
7056
7572
|
label: Type.TString;
|
|
7057
7573
|
hint: Type.TOptional<Type.TString>;
|
|
7058
7574
|
icon: Type.TOptional<Type.TString>;
|
|
@@ -7221,6 +7737,7 @@ declare const CronDeliverySchema: Type.TUnion<[Type.TObject<{
|
|
|
7221
7737
|
/** Scheduler-maintained state for the latest run/delivery outcome. */
|
|
7222
7738
|
declare const CronJobStateSchema: Type.TObject<{
|
|
7223
7739
|
nextRunAtMs: Type.TOptional<Type.TInteger>;
|
|
7740
|
+
scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
|
|
7224
7741
|
runningAtMs: Type.TOptional<Type.TInteger>;
|
|
7225
7742
|
lastRunAtMs: Type.TOptional<Type.TInteger>;
|
|
7226
7743
|
lastRunStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"error">, Type.TLiteral<"skipped">]>>;
|
|
@@ -7419,6 +7936,7 @@ declare const CronJobSchema: Type.TObject<{
|
|
|
7419
7936
|
}>]>>;
|
|
7420
7937
|
state: Type.TObject<{
|
|
7421
7938
|
nextRunAtMs: Type.TOptional<Type.TInteger>;
|
|
7939
|
+
scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
|
|
7422
7940
|
runningAtMs: Type.TOptional<Type.TInteger>;
|
|
7423
7941
|
lastRunAtMs: Type.TOptional<Type.TInteger>;
|
|
7424
7942
|
lastRunStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"error">, Type.TLiteral<"skipped">]>>;
|
|
@@ -7833,6 +8351,7 @@ declare const CronDeclarativeAddResultSchema: Type.TObject<{
|
|
|
7833
8351
|
}>]>>;
|
|
7834
8352
|
state: Type.TObject<{
|
|
7835
8353
|
nextRunAtMs: Type.TOptional<Type.TInteger>;
|
|
8354
|
+
scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
|
|
7836
8355
|
runningAtMs: Type.TOptional<Type.TInteger>;
|
|
7837
8356
|
lastRunAtMs: Type.TOptional<Type.TInteger>;
|
|
7838
8357
|
lastRunStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"error">, Type.TLiteral<"skipped">]>>;
|
|
@@ -8043,6 +8562,7 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
|
|
|
8043
8562
|
}>]>>;
|
|
8044
8563
|
state: Type.TObject<{
|
|
8045
8564
|
nextRunAtMs: Type.TOptional<Type.TInteger>;
|
|
8565
|
+
scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
|
|
8046
8566
|
runningAtMs: Type.TOptional<Type.TInteger>;
|
|
8047
8567
|
lastRunAtMs: Type.TOptional<Type.TInteger>;
|
|
8048
8568
|
lastRunStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"error">, Type.TLiteral<"skipped">]>>;
|
|
@@ -8253,6 +8773,7 @@ declare const CronAddResultSchema: Type.TUnion<[Type.TObject<{
|
|
|
8253
8773
|
}>]>>;
|
|
8254
8774
|
state: Type.TObject<{
|
|
8255
8775
|
nextRunAtMs: Type.TOptional<Type.TInteger>;
|
|
8776
|
+
scheduleActivatedAtMs: Type.TOptional<Type.TInteger>;
|
|
8256
8777
|
runningAtMs: Type.TOptional<Type.TInteger>;
|
|
8257
8778
|
lastRunAtMs: Type.TOptional<Type.TInteger>;
|
|
8258
8779
|
lastRunStatus: Type.TOptional<Type.TUnion<[Type.TLiteral<"ok">, Type.TLiteral<"error">, Type.TLiteral<"skipped">]>>;
|
|
@@ -9133,8 +9654,28 @@ declare const ChatMessageGetResultSchema: Type.TObject<{
|
|
|
9133
9654
|
}>;
|
|
9134
9655
|
/** Typed result shape for callers that branch on message availability. */
|
|
9135
9656
|
type ChatMessageGetResult = Static<typeof ChatMessageGetResultSchema>;
|
|
9136
|
-
/**
|
|
9137
|
-
declare const
|
|
9657
|
+
/** Permissive attachment envelope shared by chat and session entrypoints. */
|
|
9658
|
+
declare const ChatAttachmentSchema: Type.TObject<{
|
|
9659
|
+
type: Type.TOptional<Type.TString>;
|
|
9660
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
9661
|
+
fileName: Type.TOptional<Type.TString>;
|
|
9662
|
+
content: Type.TOptional<Type.TUnknown>;
|
|
9663
|
+
sizeBytes: Type.TOptional<Type.TNumber>;
|
|
9664
|
+
durationMs: Type.TOptional<Type.TNumber>;
|
|
9665
|
+
width: Type.TOptional<Type.TNumber>;
|
|
9666
|
+
height: Type.TOptional<Type.TNumber>;
|
|
9667
|
+
}>;
|
|
9668
|
+
/** Attachment list shared by chat.send and session creation's initial turn. */
|
|
9669
|
+
declare const ChatAttachmentsSchema: Type.TArray<Type.TObject<{
|
|
9670
|
+
type: Type.TOptional<Type.TString>;
|
|
9671
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
9672
|
+
fileName: Type.TOptional<Type.TString>;
|
|
9673
|
+
content: Type.TOptional<Type.TUnknown>;
|
|
9674
|
+
sizeBytes: Type.TOptional<Type.TNumber>;
|
|
9675
|
+
durationMs: Type.TOptional<Type.TNumber>;
|
|
9676
|
+
width: Type.TOptional<Type.TNumber>;
|
|
9677
|
+
height: Type.TOptional<Type.TNumber>;
|
|
9678
|
+
}>>;
|
|
9138
9679
|
/** User-to-agent send request; idempotency key lets clients safely retry transport failures. */
|
|
9139
9680
|
declare const ChatSendParamsSchema: Type.TObject<{
|
|
9140
9681
|
sessionKey: Type.TString;
|
|
@@ -9151,7 +9692,16 @@ declare const ChatSendParamsSchema: Type.TObject<{
|
|
|
9151
9692
|
originatingAccountId: Type.TOptional<Type.TString>;
|
|
9152
9693
|
originatingThreadId: Type.TOptional<Type.TString>;
|
|
9153
9694
|
replyToId: Type.TOptional<Type.TString>;
|
|
9154
|
-
attachments: Type.TOptional<Type.TArray<Type.
|
|
9695
|
+
attachments: Type.TOptional<Type.TArray<Type.TObject<{
|
|
9696
|
+
type: Type.TOptional<Type.TString>;
|
|
9697
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
9698
|
+
fileName: Type.TOptional<Type.TString>;
|
|
9699
|
+
content: Type.TOptional<Type.TUnknown>;
|
|
9700
|
+
sizeBytes: Type.TOptional<Type.TNumber>;
|
|
9701
|
+
durationMs: Type.TOptional<Type.TNumber>;
|
|
9702
|
+
width: Type.TOptional<Type.TNumber>;
|
|
9703
|
+
height: Type.TOptional<Type.TNumber>;
|
|
9704
|
+
}>>>;
|
|
9155
9705
|
toolBindings: Type.TOptional<Type.TRecord<"^.*$", Type.TUnknown>>;
|
|
9156
9706
|
timeoutMs: Type.TOptional<Type.TInteger>;
|
|
9157
9707
|
systemInputProvenance: Type.TOptional<Type.TObject<{
|
|
@@ -10451,7 +11001,16 @@ declare const SessionsCreateParamsSchema: Type.TObject<{
|
|
|
10451
11001
|
succeedsParent: Type.TOptional<Type.TBoolean>;
|
|
10452
11002
|
task: Type.TOptional<Type.TString>;
|
|
10453
11003
|
message: Type.TOptional<Type.TString>;
|
|
10454
|
-
attachments: Type.TOptional<Type.TArray<Type.
|
|
11004
|
+
attachments: Type.TOptional<Type.TArray<Type.TObject<{
|
|
11005
|
+
type: Type.TOptional<Type.TString>;
|
|
11006
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
11007
|
+
fileName: Type.TOptional<Type.TString>;
|
|
11008
|
+
content: Type.TOptional<Type.TUnknown>;
|
|
11009
|
+
sizeBytes: Type.TOptional<Type.TNumber>;
|
|
11010
|
+
durationMs: Type.TOptional<Type.TNumber>;
|
|
11011
|
+
width: Type.TOptional<Type.TNumber>;
|
|
11012
|
+
height: Type.TOptional<Type.TNumber>;
|
|
11013
|
+
}>>>;
|
|
10455
11014
|
worktree: Type.TOptional<Type.TBoolean>;
|
|
10456
11015
|
worktreeBaseRef: Type.TOptional<Type.TString>;
|
|
10457
11016
|
worktreeName: Type.TOptional<Type.TString>;
|
|
@@ -10566,6 +11125,10 @@ declare const SessionCompactionCheckpointSchema: Type.TObject<{
|
|
|
10566
11125
|
declare const SessionFileKindSchema: Type.TUnion<[Type.TLiteral<"modified">, Type.TLiteral<"read">]>;
|
|
10567
11126
|
/** Session relevance marker for browser entries. */
|
|
10568
11127
|
declare const SessionFileRelevanceSchema: Type.TUnion<[Type.TLiteral<"modified">, Type.TLiteral<"read">, Type.TLiteral<"mixed">]>;
|
|
11128
|
+
/** Encoding used when a session file preview includes inline content. */
|
|
11129
|
+
declare const SessionFileContentEncodingSchema: Type.TUnion<[Type.TLiteral<"utf8">, Type.TLiteral<"base64">]>;
|
|
11130
|
+
/** Renderer class selected for one session workspace file preview. */
|
|
11131
|
+
declare const SessionFilePreviewKindSchema: Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"unsupported">]>;
|
|
10569
11132
|
/** One file path referenced by a session transcript. */
|
|
10570
11133
|
declare const SessionFileEntrySchema: Type.TObject<{
|
|
10571
11134
|
path: Type.TString;
|
|
@@ -10577,6 +11140,9 @@ declare const SessionFileEntrySchema: Type.TObject<{
|
|
|
10577
11140
|
updatedAtMs: Type.TOptional<Type.TInteger>;
|
|
10578
11141
|
content: Type.TOptional<Type.TString>;
|
|
10579
11142
|
hash: Type.TOptional<Type.TString>;
|
|
11143
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
11144
|
+
contentEncoding: Type.TOptional<Type.TUnion<[Type.TLiteral<"utf8">, Type.TLiteral<"base64">]>>;
|
|
11145
|
+
previewKind: Type.TOptional<Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"unsupported">]>>;
|
|
10580
11146
|
}>;
|
|
10581
11147
|
/** One file or folder in the session-rooted browser. */
|
|
10582
11148
|
declare const SessionFileBrowserEntrySchema: Type.TObject<{
|
|
@@ -10624,6 +11190,9 @@ declare const SessionsFilesListResultSchema: Type.TObject<{
|
|
|
10624
11190
|
updatedAtMs: Type.TOptional<Type.TInteger>;
|
|
10625
11191
|
content: Type.TOptional<Type.TString>;
|
|
10626
11192
|
hash: Type.TOptional<Type.TString>;
|
|
11193
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
11194
|
+
contentEncoding: Type.TOptional<Type.TUnion<[Type.TLiteral<"utf8">, Type.TLiteral<"base64">]>>;
|
|
11195
|
+
previewKind: Type.TOptional<Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"unsupported">]>>;
|
|
10627
11196
|
}>>;
|
|
10628
11197
|
browser: Type.TOptional<Type.TObject<{
|
|
10629
11198
|
path: Type.TString;
|
|
@@ -10660,6 +11229,9 @@ declare const SessionsFilesGetResultSchema: Type.TObject<{
|
|
|
10660
11229
|
updatedAtMs: Type.TOptional<Type.TInteger>;
|
|
10661
11230
|
content: Type.TOptional<Type.TString>;
|
|
10662
11231
|
hash: Type.TOptional<Type.TString>;
|
|
11232
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
11233
|
+
contentEncoding: Type.TOptional<Type.TUnion<[Type.TLiteral<"utf8">, Type.TLiteral<"base64">]>>;
|
|
11234
|
+
previewKind: Type.TOptional<Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"unsupported">]>>;
|
|
10663
11235
|
}>;
|
|
10664
11236
|
}>;
|
|
10665
11237
|
/** Overwrites one existing session workspace file with hash-based CAS. */
|
|
@@ -10684,6 +11256,9 @@ declare const SessionsFilesSetResultSchema: Type.TObject<{
|
|
|
10684
11256
|
updatedAtMs: Type.TOptional<Type.TInteger>;
|
|
10685
11257
|
content: Type.TOptional<Type.TString>;
|
|
10686
11258
|
hash: Type.TOptional<Type.TString>;
|
|
11259
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
11260
|
+
contentEncoding: Type.TOptional<Type.TUnion<[Type.TLiteral<"utf8">, Type.TLiteral<"base64">]>>;
|
|
11261
|
+
previewKind: Type.TOptional<Type.TUnion<[Type.TLiteral<"text">, Type.TLiteral<"image">, Type.TLiteral<"unsupported">]>>;
|
|
10687
11262
|
}>;
|
|
10688
11263
|
}>;
|
|
10689
11264
|
/** Opens a session workspace on the Gateway host without accepting a client path. */
|
|
@@ -10866,7 +11441,16 @@ declare const SessionsSendParamsSchema: Type.TObject<{
|
|
|
10866
11441
|
agentId: Type.TOptional<Type.TString>;
|
|
10867
11442
|
message: Type.TString;
|
|
10868
11443
|
thinking: Type.TOptional<Type.TString>;
|
|
10869
|
-
attachments: Type.TOptional<Type.TArray<Type.
|
|
11444
|
+
attachments: Type.TOptional<Type.TArray<Type.TObject<{
|
|
11445
|
+
type: Type.TOptional<Type.TString>;
|
|
11446
|
+
mimeType: Type.TOptional<Type.TString>;
|
|
11447
|
+
fileName: Type.TOptional<Type.TString>;
|
|
11448
|
+
content: Type.TOptional<Type.TUnknown>;
|
|
11449
|
+
sizeBytes: Type.TOptional<Type.TNumber>;
|
|
11450
|
+
durationMs: Type.TOptional<Type.TNumber>;
|
|
11451
|
+
width: Type.TOptional<Type.TNumber>;
|
|
11452
|
+
height: Type.TOptional<Type.TNumber>;
|
|
11453
|
+
}>>>;
|
|
10870
11454
|
timeoutMs: Type.TOptional<Type.TInteger>;
|
|
10871
11455
|
idempotencyKey: Type.TOptional<Type.TString>;
|
|
10872
11456
|
}>;
|
|
@@ -10906,6 +11490,12 @@ declare const SessionsPatchParamsSchema: Type.TObject<{
|
|
|
10906
11490
|
unread: Type.TOptional<Type.TBoolean>;
|
|
10907
11491
|
thinkingLevel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
10908
11492
|
fastMode: Type.TOptional<Type.TUnion<[Type.TBoolean, Type.TLiteral<"auto">, Type.TNull]>>;
|
|
11493
|
+
toolOverrides: Type.TOptional<Type.TUnion<[Type.TObject<{
|
|
11494
|
+
mcpServers: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
|
|
11495
|
+
mcpToolsDeny: Type.TOptional<Type.TRecord<"^.*$", Type.TArray<Type.TString>>>;
|
|
11496
|
+
skills: Type.TOptional<Type.TRecord<"^.*$", Type.TBoolean>>;
|
|
11497
|
+
webSearch: Type.TOptional<Type.TBoolean>;
|
|
11498
|
+
}>, Type.TNull]>>;
|
|
10909
11499
|
verboseLevel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
10910
11500
|
traceLevel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
10911
11501
|
reasoningLevel: Type.TOptional<Type.TUnion<[Type.TString, Type.TNull]>>;
|
|
@@ -11281,7 +11871,9 @@ type SessionsGroupsDeleteParams = Static<typeof SessionsGroupsDeleteParamsSchema
|
|
|
11281
11871
|
type SessionsGroupsMutationResult = Static<typeof SessionsGroupsMutationResultSchema>;
|
|
11282
11872
|
type SessionsCompactParams = Static<typeof SessionsCompactParamsSchema>;
|
|
11283
11873
|
type SessionsUsageParams = Static<typeof SessionsUsageParamsSchema>;
|
|
11874
|
+
type SessionFileContentEncoding = Static<typeof SessionFileContentEncodingSchema>;
|
|
11284
11875
|
type SessionFileKind = Static<typeof SessionFileKindSchema>;
|
|
11876
|
+
type SessionFilePreviewKind = Static<typeof SessionFilePreviewKindSchema>;
|
|
11285
11877
|
type SessionFileRelevance = Static<typeof SessionFileRelevanceSchema>;
|
|
11286
11878
|
type SessionFileEntry = Static<typeof SessionFileEntrySchema>;
|
|
11287
11879
|
type SessionFileBrowserEntry = Static<typeof SessionFileBrowserEntrySchema>;
|
|
@@ -11299,6 +11891,20 @@ type SessionDiffFile = Static<typeof SessionDiffFileSchema>;
|
|
|
11299
11891
|
type SessionsDiffParams = Static<typeof SessionsDiffParamsSchema>;
|
|
11300
11892
|
type SessionsDiffResult = Static<typeof SessionsDiffResultSchema>;
|
|
11301
11893
|
//#endregion
|
|
11894
|
+
//#region src/schema/sessions-viewer-presence.d.ts
|
|
11895
|
+
/** Maximum sessions one connection may declare as concurrently visible. */
|
|
11896
|
+
declare const SESSION_VIEWER_PRESENCE_MAX_KEYS = 32;
|
|
11897
|
+
/** Replaces the sessions this connection is currently rendering. */
|
|
11898
|
+
declare const SessionsViewerPresenceSetParamsSchema: Type.TObject<{
|
|
11899
|
+
sessionKeys: Type.TArray<Type.TString>;
|
|
11900
|
+
}>;
|
|
11901
|
+
/** Canonical session keys retained for this connection's viewer presence. */
|
|
11902
|
+
declare const SessionsViewerPresenceSetResultSchema: Type.TObject<{
|
|
11903
|
+
sessionKeys: Type.TArray<Type.TString>;
|
|
11904
|
+
}>;
|
|
11905
|
+
type SessionsViewerPresenceSetParams = Static<typeof SessionsViewerPresenceSetParamsSchema>;
|
|
11906
|
+
type SessionsViewerPresenceSetResult = Static<typeof SessionsViewerPresenceSetResultSchema>;
|
|
11907
|
+
//#endregion
|
|
11302
11908
|
//#region src/schema/sessions-sharing-values.d.ts
|
|
11303
11909
|
declare const SESSION_VISIBILITY_VALUES: readonly ["shared", "read-only", "suggest", "draft"];
|
|
11304
11910
|
declare const SessionVisibilitySchema: Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>;
|
|
@@ -11312,6 +11918,7 @@ declare const SessionSharingIdentitySchema: Type.TObject<{
|
|
|
11312
11918
|
id: Type.TString;
|
|
11313
11919
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
11314
11920
|
label: Type.TOptional<Type.TString>;
|
|
11921
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
11315
11922
|
}>;
|
|
11316
11923
|
declare const SessionSharingActionSchema: Type.TUnion<[Type.TLiteral<"visibility">, Type.TLiteral<"member-added">, Type.TLiteral<"member-removed">]>;
|
|
11317
11924
|
declare const SessionVisibilitySetParamsSchema: Type.TObject<{
|
|
@@ -11339,6 +11946,7 @@ declare const SessionMembersListResultSchema: Type.TObject<{
|
|
|
11339
11946
|
id: Type.TString;
|
|
11340
11947
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
11341
11948
|
label: Type.TOptional<Type.TString>;
|
|
11949
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
11342
11950
|
}>>;
|
|
11343
11951
|
members: Type.TArray<Type.TObject<{
|
|
11344
11952
|
identityId: Type.TString;
|
|
@@ -11349,6 +11957,7 @@ declare const SessionMembersListResultSchema: Type.TObject<{
|
|
|
11349
11957
|
id: Type.TString;
|
|
11350
11958
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
11351
11959
|
label: Type.TOptional<Type.TString>;
|
|
11960
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
11352
11961
|
}>>;
|
|
11353
11962
|
role: Type.TUnion<[Type.TLiteral<"admin">, Type.TLiteral<"owner">, Type.TLiteral<"member">, Type.TLiteral<"viewer">]>;
|
|
11354
11963
|
allowedVisibilities: Type.TArray<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
|
|
@@ -11376,6 +11985,7 @@ declare const SessionSharingEventSchema: Type.TObject<{
|
|
|
11376
11985
|
id: Type.TString;
|
|
11377
11986
|
type: Type.TUnion<[Type.TLiteral<"human">, Type.TLiteral<"agent">, Type.TLiteral<"system">]>;
|
|
11378
11987
|
label: Type.TOptional<Type.TString>;
|
|
11988
|
+
avatarUrl: Type.TOptional<Type.TString>;
|
|
11379
11989
|
}>;
|
|
11380
11990
|
visibility: Type.TOptional<Type.TUnion<[Type.TLiteral<"shared">, Type.TLiteral<"read-only">, Type.TLiteral<"suggest">, Type.TLiteral<"draft">]>>;
|
|
11381
11991
|
identityId: Type.TOptional<Type.TString>;
|
|
@@ -12392,6 +13002,7 @@ type PluginsSessionActionResult = Static<typeof PluginsSessionActionResultSchema
|
|
|
12392
13002
|
declare const WizardStartParamsSchema: Type.TObject<{
|
|
12393
13003
|
mode: Type.TOptional<Type.TUnion<[Type.TLiteral<"local">, Type.TLiteral<"remote">]>>;
|
|
12394
13004
|
workspace: Type.TOptional<Type.TString>;
|
|
13005
|
+
installDaemon: Type.TOptional<Type.TBoolean>;
|
|
12395
13006
|
flow: Type.TOptional<Type.TUnion<[Type.TLiteral<"setup">, Type.TLiteral<"channels">]>>;
|
|
12396
13007
|
channel: Type.TOptional<Type.TString>;
|
|
12397
13008
|
}>;
|
|
@@ -13392,4 +14003,4 @@ type WorktreeRepositoryStatus = (typeof WORKTREE_REPOSITORY_STATUSES)[number];
|
|
|
13392
14003
|
type WorktreesBranchesParams = Static<typeof WorktreesBranchesParamsSchema>;
|
|
13393
14004
|
type WorktreesBranchesResult = Static<typeof WorktreesBranchesResultSchema>;
|
|
13394
14005
|
//#endregion
|
|
13395
|
-
export { WorkerHeartbeatResponseFrame as $, GatewayAgentRuntime as $C, PendingSessionApprovalEventSchema as $S, ConversationTurnResult as $_, SessionsCompactionListResultSchema as $a, BoardWidgetPutContentSchema as $b, QuestionWaitAnswerParamsSchema as $c, EnvironmentSummary as $d, CronScratchGetResultSchema as $f, AuditActivityToolActionV1Schema as $g, TalkSpeakParams as $h, SessionCompactionCheckpointSchema as $i, NodePresenceActivityPayload as $l, TalkCatalogParams as $m, TerminalCloseParams as $n, SessionsGroupsMutationResult as $o, ConfigSchemaParams as $p, TaskSuggestionsCreateResult as $r, SessionDiscussionStateSchema as $s, PluginCatalogClawHubInstallSchema as $t, GatewaySuspendStatusParams as $u, MemoryMigrationProviderPlan as $v, SkillsProposalUpdateParamsSchema as $w, WorkerInferenceStartParams as $x, BoardDataReadParams as $y, WORKER_PROTOCOL_FEATURES as A, AgentsFileEntrySchema as AC, ApprovalHistoryResultSchema as AS, ToolCatalogProfile as AT, AgentIdentityResult as A_, SessionsBranchesListParams as Aa, BoardWidgetAppViewParams as Ab, QuestionListResultSchema as Ac, DeviceTokenRevokeParamsSchema as Ad, CronRunLogEntry as Af, UsersSetDisplayNameParams as Ag, TalkSessionCancelOutputParamsSchema as Ah, SessionMembersListParams as Ai, NodeListParamsSchema as Al, ChannelsPairingApproveResult as Am, PluginsSessionActionSuccessResultSchema as An, SessionsFilesGetResultSchema as Ao, SystemAgentSetupVerifyParamsSchema as Ap, TasksCancelParamsSchema as Ar, SessionsRewindResultSchema as As, WorkerTranscriptMessage as At, ChatSendParamsSchema as Au, SessionCatalogSessionSchema as Av, SkillsDetailResult as Aw, SkillsProposalHistoryStatusParamsSchema as Ax, SessionTypingParamsSchema as Ay, WorkerAdmissionFailureReason as B, AgentsFilesSetParamsSchema as BC, ApprovalSnapshotSchema as BS, ToolsEffectiveNotice as BT, ConversationListResultSchema as B_, SessionsCompactParams as Ba, BoardWidgetHeightModeSchema as Bb, QuestionRequestResultSchema as Bc, ExecApprovalsGetParamsSchema as Bd, CronAddResultSchema as Bf, AuditActivityAgentRunV1 as Bg, TalkSessionJoinParamsSchema as Bh, SessionVisibilitySetParams as Bi, NodePendingAckParamsSchema as Bl, ChannelsPairingRequest as Bm, PluginsUninstallParamsSchema as Bn, SessionsFilesSetParamsSchema as Bo, SystemChangesListParamsSchema as Bp, TasksListResultSchema as Br, SessionsUsageParamsSchema as Bs, WizardNextParamsSchema as Bt, LogsTailResultSchema as Bu, SessionsCatalogContinueResultSchema as Bv, SkillsProposalInspectParams as Bw, WorkerInferenceCancelRequestFrameSchema as Bx, BOARD_WIDGET_TOOL_MAX_LENGTH as By, WorktreesRemoveResult as C, AgentsCreateResult as CC, ApprovalGetParams as CS, SkillsUploadChunkParamsSchema as CT, AgentsWorkspaceListParamsSchema as C_, SessionObserverPlanProgressSchema as Ca, BoardTabUpdateOpSchema as Cb, QuestionGetParams as Cc, DevicePairRequestedEventSchema as Cd, CronAddParams as Cf, UsersSelfParamsSchema as Cg, TalkEvent as Ch, SessionMemberAddParams as Ci, NodeInvokeParamsSchema as Cl, CommandsListResult as Cm, PluginsSearchResult as Cn, SessionsDiffParams as Co, SystemAgentSetupAuthStartResult as Cp, TerminalUploadParams as Cr, SessionsResetParams as Cs, WorkerTranscriptCommitParamsSchema as Ct, ChatMessageGetParamsSchema as Cu, SessionCatalogHostSchema as Cv, SkillsCuratorActionResultSchema as Cw, UiSidebarCommandSchema as Cx, SessionSuggestionsResolveParams as Cy, WORKER_HEARTBEAT_INTERVAL_MS as D, AgentsDeleteResult as DC, ApprovalHistoryParams as DS, ToolCatalogEntrySchema as DT, AgentEventSchema as D_, SessionWorktreeInfoSchema as Da, BoardUpdateParamsSchema as Db, QuestionListParams as Dc, DevicePairSetupCodeResult as Dd, CronJob as Df, UsersSetAvatarParamsSchema as Dg, TalkSessionAppendAudioParams as Dh, SessionMemberRemoveParams as Di, NodeInvokeResultParams as Dl, ChannelsPairingAccount as Dm, PluginsSessionActionParamsSchema as Dn, SessionsFilesGetParams as Do, SystemAgentSetupDetectResult as Dp, TaskSummary as Dr, SessionsRewindParams as Ds, WorkerTranscriptCommitResponseFrameSchema as Dt, ChatMetadataParamsSchema as Du, SessionCatalogPullRequestSummarySchema as Dv, SkillsCuratorStatusResultSchema as Dw, SkillsProposalHistoryScanResult as Dx, SessionTypingEvent as Dy, WorktreesRestoreParamsSchema as E, AgentsDeleteParamsSchema as EC, ApprovalGetResultSchema as ES, ToolCatalogEntry as ET, AgentEvent as E_, SessionWorktreeInfo as Ea, BoardUpdateParams as Eb, QuestionGetResultSchema as Ec, DevicePairSetupCodeParamsSchema as Ed, CronGetParams as Ef, UsersSetAvatarParams as Eg, TalkModeParamsSchema as Eh, SessionMemberMutationResultSchema as Ei, NodeInvokeRequestEventSchema as El, TalkSessionAcknowledgeMarkParamsSchema as Em, PluginsSessionActionParams as En, SessionsDiffResultSchema as Eo, SystemAgentSetupDetectParamsSchema as Ep, TerminalUploadResultSchema as Er, SessionsResolveParamsSchema as Es, WorkerTranscriptCommitResponseFrame as Et, ChatMetadataParams as Eu, SessionCatalogPullRequestSummary as Ev, SkillsCuratorStatusResult as Ew, SkillsProposalHistoryScanParamsSchema as Ex, SessionSuggestionsResolveResultSchema as Ey, WORKER_RPC_SET_VERSION as F, AgentsFilesListParams as FC, ApprovalResolveParams as FS, ToolsCatalogResultSchema as FT, ConversationListItem as F_, SessionsBranchesSwitchParamsSchema as Fa, BoardWidgetContentSchema as Fb, QuestionRequestParams as Fc, ExecApprovalRequestParams as Fd, CronScratchSetParams as Ff, AuditEventSchema as Fg, TalkSessionCreateParams as Fh, SessionSharingActionSchema as Fi, NodePairRejectParams as Fl, ChannelsPairingDismissResultSchema as Fm, PluginsUiDescriptorsParams as Fn, SessionsFilesRevealParams as Fo, SystemChangeKind as Fp, TasksGetResult as Fr, SessionsSearchResult as Fs, WorkerAdmissionFailureReasonSchema as Ft, ChatToolTitlesResult as Fu, SessionsCatalogArchiveResult as Fv, SkillsProposalActionParamsSchema as Fw, WORKER_INFERENCE_METHODS as Fx, SessionRow as Fy, WorkerConnectParams as G, AgentsListResult as GC, DeniedApprovalSnapshot as GS, ToolsEffectiveResultSchema as GT, ConversationTurnCancelParams as G_, SessionsCompactionBranchResultSchema as Ga, BoardWidgetMcpAppPutContentSchema as Gb, QuestionResolveResult as Gc, ExecApprovalsNodeSnapshot as Gd, CronJobStateSchema as Gf, AuditActivityInboundMessageV1Schema as Gg, TalkSessionSteerParams as Gh, SessionSharingRole as Gi, NodePendingEnqueueParams as Gl, ChannelsStatusParams as Gm, PluginApprovalResolveParams as Gn, SessionsForkResult as Go, ConfigGetParams as Gp, TaskSuggestionResolutionSchema as Gr, SessionDiscussionInfoResult as Gs, WizardStartResult as Gt, GatewaySuspendPrepareParamsSchema as Gu, SessionsCatalogListResult as Gv, SkillsProposalRecordResultSchema as Gw, WorkerInferenceErrorReason as Gx, BoardChangedEvent as Gy, WorkerAdmissionHandshakeSchema as H, AgentsFilesSetResultSchema as HC, ApprovalTerminalReasonSchema as HS, ToolsEffectiveParams as HT, ConversationSendParamsSchema as H_, SessionsCompactionBranchParams as Ha, BoardWidgetMaterializedContent as Hb, QuestionRequestedEventSchema as Hc, ExecApprovalsNodeGetParamsSchema as Hd, CronDeliverySchema as Hf, AuditActivityEventV1 as Hg, TalkSessionJoinResultSchema as Hh, SessionVisibilitySetResult as Hi, NodePendingDrainParamsSchema as Hl, ChannelsLogoutParamsSchema as Hm, PluginsUninstallResultSchema as Hn, SessionsFilesSetResultSchema as Ho, SystemChangesListResultSchema as Hp, TaskSuggestionEvent as Hr, SessionDiscussionInfo as Hs, WizardNextResultSchema as Ht, GatewaySuspendBlockerSchema as Hu, SessionsCatalogHostEventSchema as Hv, SkillsProposalInspectResult as Hw, WorkerInferenceCancelResponseFrameSchema as Hx, BoardActionParamsSchema as Hy, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as I, AgentsFilesListParamsSchema as IC, ApprovalResolveParamsSchema as IS, ToolsEffectiveEntry as IT, ConversationListItemSchema as I_, SessionsBranchesSwitchResult as Ia, BoardWidgetDeclared as Ib, QuestionRequestParamsSchema as Ic, ExecApprovalRequestParamsSchema as Id, CronScratchSetResult as If, AuditListParams as Ig, TalkSessionCreateParamsSchema as Ih, SessionSharingEvent as Ii, NodePairRejectParamsSchema as Il, ChannelsPairingListParams as Im, PluginsUiDescriptorsParamsSchema as In, SessionsFilesRevealParamsSchema as Io, SystemChangeKindSchema as Ip, TasksGetResultSchema as Ir, SessionsSearchResultSchema as Is, WorkerProtocolCloseReasonSchema as It, ChatToolTitlesResultSchema as Iu, SessionsCatalogArchiveResultSchema as Iv, SkillsProposalApplyResult as Iw, WORKER_INFERENCE_PROTOCOL_FEATURE as Ix, SessionRowSchema as Iy, WorkerErrorShape as J, AgentsUpdateParamsSchema as JC, ExecApprovalPresentationSchema as JS, ToolsInvokeParamsSchema as JT, ConversationTurnCancelResultSchema as J_, SessionsCompactionGetResult as Ja, BoardWidgetPluginContentSchema as Jb, QuestionResolvedEventSchema as Jc, ExecApprovalsSetParamsSchema as Jd, CronRemoveParamsSchema as Jf, AuditActivityListResult as Jg, TalkSessionSubmitToolResultParamsSchema as Jh, SessionVisibilitySchema as Ji, NodePendingEnqueueResultSchema as Jl, ChannelsStatusResultSchema as Jm, TerminalAckResultSchema as Jn, SessionsGroupsDeleteParamsSchema as Jo, ConfigPatchParamsSchema as Jp, TaskSuggestionsAcceptParamsSchema as Jr, SessionDiscussionOpenParams as Js, WizardStatusParamsSchema as Jt, GatewaySuspendPrepareResultSchema as Ju, SessionsCatalogReadParamsSchema as Jv, SkillsProposalRequestRevisionResult as Jw, WorkerInferenceEventParams as Jx, BoardCommand as Jy, WorkerConnectRequestFrame as K, AgentsListResultSchema as KC, DeniedApprovalSnapshotSchema as KS, ToolsInvokeErrorSchema as KT, ConversationTurnCancelParamsSchema as K_, SessionsCompactionGetParams as Ka, BoardWidgetMoveOpSchema as Kb, QuestionResolveResultSchema as Kc, ExecApprovalsNodeSnapshotSchema as Kd, CronListParamsSchema as Kf, AuditActivityListParams as Kg, TalkSessionSteerParamsSchema as Kh, SessionSharingRoleSchema as Ki, NodePendingEnqueueParamsSchema as Kl, ChannelsStatusParamsSchema as Km, PluginApprovalResolveParamsSchema as Kn, SessionsForkResultSchema as Ko, ConfigGetParamsSchema as Kp, TaskSuggestionSchema as Kr, SessionDiscussionInfoResultSchema as Ks, WizardStartResultSchema as Kt, GatewaySuspendPrepareReadyResultSchema as Ku, SessionsCatalogListResultSchema as Kv, SkillsProposalRequestRevisionParams as Kw, WorkerInferenceErrorShape as Kx, BoardChangedEventSchema as Ky, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as L, AgentsFilesListResult as LC, ApprovalResolveResult as LS, ToolsEffectiveEntrySchema as LT, ConversationListParams as L_, SessionsBranchesSwitchResultSchema as La, BoardWidgetDeclaredSchema as Lb, QuestionRequestQuestion as Lc, ExecApprovalResolveParams as Ld, CronStatusParams as Lf, AuditListParamsSchema as Lg, TalkSessionCreateResult as Lh, SessionSharingEventSchema as Li, NodePairRemoveParams as Ll, ChannelsPairingListParamsSchema as Lm, PluginsUiDescriptorsResult as Ln, SessionsFilesRevealResult as Lo, SystemChangeSource as Lp, TasksListParams as Lr, SessionsSendParams as Ls, WizardCancelParams as Lt, LogsTailParams as Lu, SessionsCatalogContinueParams as Lv, SkillsProposalApplyResultSchema as Lw, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as Lx, BOARD_CRON_JOB_ID_MAX_LENGTH as Ly, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as M, AgentsFilesGetParamsSchema as MC, ApprovalKindSchema as MS, ToolsCatalogParams as MT, AgentParamsSchema as M_, SessionsBranchesListResult as Ma, BoardWidgetAppViewResult as Mb, QuestionOptionSchema as Mc, DeviceTokenRotateParamsSchema as Md, CronRunsParams as Mf, UsersSetDisplayNameResult as Mg, TalkSessionCancelTurnParamsSchema as Mh, SessionMembersListResult as Mi, NodePairApproveParamsSchema as Ml, ChannelsPairingDismissParams as Mm, PluginsSetEnabledParamsSchema as Mn, SessionsFilesListParamsSchema as Mo, SystemAgentSetupVerifyResultSchema as Mp, TasksCancelResultSchema as Mr, SessionsSearchHitSchema as Ms, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as Mt, ChatStatusEventSchema as Mu, SessionCatalogTranscriptItemSchema as Mv, SkillsInstallParams as Mw, validateSkillsProposalHistoryStatusParams as Mx, SessionTypingResultSchema as My, WORKER_PROTOCOL_MAX_METHOD_LENGTH as N, AgentsFilesGetResult as NC, ApprovalPresentation as NS, ToolsCatalogParamsSchema as NT, AgentWaitParams as N_, SessionsBranchesListResultSchema as Na, BoardWidgetAppViewResultSchema as Nb, QuestionRecord as Nc, ExecApprovalGetParams as Nd, CronScratchGetParams as Nf, UsersSetDisplayNameResultSchema as Ng, TalkSessionCloseParams as Nh, SessionMembersListResultSchema as Ni, NodePairListParams as Nl, ChannelsPairingDismissParamsSchema as Nm, PluginsSetEnabledResult as Nn, SessionsFilesListResult as No, SystemChangeEntry as Np, TasksGetParams as Nr, SessionsSearchParams as Ns, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as Nt, ChatToolTitlesParams as Nu, SessionsCatalogArchiveParams as Nv, SkillsInstallParamsSchema as Nw, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as Nx, SessionCreatedActor as Ny, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as O, AgentsDeleteResultSchema as OC, ApprovalHistoryParamsSchema as OS, ToolCatalogGroup as OT, AgentIdentityParams as O_, SessionsAbortParams as Oa, BoardViewTicketSchema as Ob, QuestionListParamsSchema as Oc, DevicePairSetupCodeResultSchema as Od, CronListParams as Of, UsersSetAvatarResult as Og, TalkSessionAppendAudioParamsSchema as Oh, SessionMemberRemoveParamsSchema as Oi, NodeInvokeResultParamsSchema as Ol, ChannelsPairingApproveParams as Om, PluginsSessionActionResult as On, SessionsFilesGetParamsSchema as Oo, SystemAgentSetupDetectResultSchema as Op, TaskSummarySchema as Or, SessionsRewindParamsSchema as Os, WorkerTranscriptCommitResult as Ot, ChatRunStartupPhase as Ou, SessionCatalogSchema as Ov, SkillsDetailParams as Ow, SkillsProposalHistoryScanResultSchema as Ox, SessionTypingEventSchema as Oy, WORKER_PROTOCOL_METHODS as P, AgentsFilesGetResultSchema as PC, ApprovalPresentationSchema as PS, ToolsCatalogResult as PT, AgentWaitParamsSchema as P_, SessionsBranchesSwitchParams as Pa, BoardWidgetContent as Pb, QuestionRecordSchema as Pc, ExecApprovalGetParamsSchema as Pd, CronScratchGetResult as Pf, AuditEvent as Pg, TalkSessionCloseParamsSchema as Ph, SessionSharingAction as Pi, NodePairListParamsSchema as Pl, ChannelsPairingDismissResult as Pm, PluginsSetEnabledResultSchema as Pn, SessionsFilesListResultSchema as Po, SystemChangeEntrySchema as Pp, TasksGetParamsSchema as Pr, SessionsSearchParamsSchema as Ps, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as Pt, ChatToolTitlesParamsSchema as Pu, SessionsCatalogArchiveParamsSchema as Pv, SkillsProposalActionParams as Pw, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as Px, SessionCreatedActorSchema as Py, WorkerHeartbeatRequestFrameSchema as Q, AuthProbeStatusSchema as QC, PendingApprovalSnapshotSchema as QS, ConversationTurnReplySchema as Q_, SessionsCompactionListResult as Qa, BoardWidgetPutContent as Qb, QuestionWaitAnswerParams as Qc, EnvironmentStatusSchema as Qd, CronScratchGetParamsSchema as Qf, AuditActivityToolActionV1 as Qg, TalkSessionTurnResultSchema as Qh, SessionCompactionCheckpoint as Qi, NodePluginToolsUpdateParamsSchema as Ql, TalkAgentControlResultSchema as Qm, TerminalAttachResultSchema as Qn, SessionsGroupsListResultSchema as Qo, ConfigSchemaLookupResultSchema as Qp, TaskSuggestionsCreateParamsSchema as Qr, SessionDiscussionState as Qs, WizardStepSchema as Qt, GatewaySuspendResumeResultSchema as Qu, MemoryMigrationItem as Qv, SkillsProposalUpdateParams as Qw, WorkerInferenceOptionsSchema as Qx, BoardCronActionParamsSchema as Qy, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as R, AgentsFilesListResultSchema as RC, ApprovalResolveResultSchema as RS, ToolsEffectiveGroup as RT, ConversationListParamsSchema as R_, SessionsCleanupParams as Ra, BoardWidgetGrantParams as Rb, QuestionRequestQuestionSchema as Rc, ExecApprovalResolveParamsSchema as Rd, CronUpdateParams as Rf, AuditListResult as Rg, TalkSessionCreateResultSchema as Rh, SessionSharingIdentity as Ri, NodePairRemoveParamsSchema as Rl, ChannelsPairingListResult as Rm, PluginsUiDescriptorsResultSchema as Rn, SessionsFilesRevealResultSchema as Ro, SystemChangeSourceSchema as Rp, TasksListParamsSchema as Rr, SessionsSendParamsSchema as Rs, WizardCancelParamsSchema as Rt, LogsTailParamsSchema as Ru, SessionsCatalogContinueParamsSchema as Rv, SkillsProposalCreateParams as Rw, WorkerInferenceCancelParams as Rx, BOARD_CRON_TRIGGER_PREFIX as Ry, WorktreesRemoveParamsSchema as S, AgentsCreateParamsSchema as SC, ApprovalExpiredReasonSchema as SS, SkillsUploadChunkParams as ST, AgentsWorkspaceListParams as S_, SessionObserverPlanProgress as Sa, BoardTabSchema as Sb, QuestionAnswersSchema as Sc, DevicePairRenameParamsSchema as Sd, WorkerTunnelStatusSchema as Sf, UsersSelfParams as Sg, TalkConfigResultSchema as Sh, SessionMember as Si, NodeInvokeParams as Sl, CommandsListParamsSchema as Sm, PluginsSearchParamsSchema as Sn, SessionsDescribeParamsSchema as So, SystemAgentSetupAuthStartParamsSchema as Sp, TerminalTextResultSchema as Sr, SessionsPreviewParamsSchema as Ss, WorkerTranscriptCommitParams as St, ChatInjectParamsSchema as Su, SessionCatalogHost as Sv, SkillsCuratorActionResult as Sw, UiPanelCommandSchema as Sx, SessionSuggestionsListResultSchema as Sy, WorktreesRestoreParams as T, AgentsDeleteParams as TC, ApprovalGetResult as TS, SkillsUploadCommitParamsSchema as TT, AgentsWorkspaceListResultSchema as T_, SessionOperationEventSchema as Ta, BoardTicketEventParamsSchema as Tb, QuestionGetResult as Tc, DevicePairSetupCodeParams as Td, CronDeclarativeAddResult as Tf, UsersSelfResultSchema as Tg, TalkModeParams as Th, SessionMemberMutationResult as Ti, NodeInvokeProgressParamsSchema as Tl, TalkSessionAcknowledgeMarkParams as Tm, PluginsSessionActionFailureResultSchema as Tn, SessionsDiffResult as To, SystemAgentSetupDetectParams as Tp, TerminalUploadResult as Tr, SessionsResolveParams as Ts, WorkerTranscriptCommitRequestFrameSchema as Tt, ChatMessageGetResultSchema as Tu, SessionCatalogLocatorSchema as Tv, SkillsCuratorStatusParamsSchema as Tw, SkillsProposalHistoryScanParams as Tx, SessionSuggestionsResolveResult as Ty, WorkerAdmissionResponseFrame as U, AgentsListParams as UC, CancelledApprovalSnapshot as US, ToolsEffectiveParamsSchema as UT, ConversationSendResult as U_, SessionsCompactionBranchParamsSchema as Ua, BoardWidgetMaterializedPutParams as Ub, QuestionResolveParams as Uc, ExecApprovalsNodeSetParams as Ud, CronGetParamsSchema as Uf, AuditActivityEventV1Schema as Ug, TalkSessionOkResult as Uh, SessionVisibilitySetResultSchema as Ui, NodePendingDrainResult as Ul, ChannelsStartParams as Um, PluginApprovalRequestParams as Un, SessionsForkParams as Uo, ConfigApplyParams as Up, TaskSuggestionEventSchema as Ur, SessionDiscussionInfoParams as Us, WizardStartParams as Ut, GatewaySuspendPrepareBusyResultSchema as Uu, SessionsCatalogListParams as Uv, SkillsProposalInspectResultSchema as Uw, WorkerInferenceCancelResult as Ux, BoardCanvasDocumentSource as Uy, WorkerAdmissionHandshake as V, AgentsFilesSetResult as VC, ApprovalTerminalReason as VS, ToolsEffectiveNoticeSchema as VT, ConversationSendParams as V_, SessionsCompactParamsSchema as Va, BoardWidgetHtmlContentSchema as Vb, QuestionRequestedEvent as Vc, ExecApprovalsNodeGetParams as Vd, CronDeclarativeAddResultSchema as Vf, AuditActivityAgentRunV1Schema as Vg, TalkSessionJoinResult as Vh, SessionVisibilitySetParamsSchema as Vi, NodePendingDrainParams as Vl, ChannelsLogoutParams as Vm, PluginsUninstallResult as Vn, SessionsFilesSetResult as Vo, SystemChangesListResult as Vp, TaskSuggestion as Vr, SessionsCreateParamsSchema as Vs, WizardNextResult as Vt, GatewaySuspendBlocker as Vu, SessionsCatalogHostEvent as Vv, SkillsProposalInspectParamsSchema as Vw, WorkerInferenceCancelResponseFrame as Vx, BoardActionParams as Vy, WorkerAdmissionResponseFrameSchema as W, AgentsListParamsSchema as WC, CancelledApprovalSnapshotSchema as WS, ToolsEffectiveResult as WT, ConversationSendResultSchema as W_, SessionsCompactionBranchResult as Wa, BoardWidgetMcpAppContentSchema as Wb, QuestionResolveParamsSchema as Wc, ExecApprovalsNodeSetParamsSchema as Wd, CronJobSchema as Wf, AuditActivityInboundMessageV1 as Wg, TalkSessionOkResultSchema as Wh, SESSION_VISIBILITY_VALUES as Wi, NodePendingDrainResultSchema as Wl, ChannelsStartParamsSchema as Wm, PluginApprovalRequestParamsSchema as Wn, SessionsForkParamsSchema as Wo, ConfigApplyParamsSchema as Wp, TaskSuggestionResolution as Wr, SessionDiscussionInfoParamsSchema as Ws, WizardStartParamsSchema as Wt, GatewaySuspendPrepareParams as Wu, SessionsCatalogListParamsSchema as Wv, SkillsProposalRecordResult as Ww, WorkerInferenceContext as Wx, BoardCanvasDocumentSourceSchema as Wy, WorkerHeartbeatParamsSchema as X, AgentsUpdateResultSchema as XC, ExpiredApprovalSnapshotSchema as XS, ToolsInvokeResultSchema as XT, ConversationTurnParamsSchema as X_, SessionsCompactionListParams as Xa, BoardWidgetPluginPropsSchema as Xb, QuestionStatus as Xc, ExecApprovalsSnapshotSchema as Xd, CronRunParamsSchema as Xf, AuditActivityOutboundMessageV1 as Xg, TalkSessionTurnParamsSchema as Xh, SessionBranch as Xi, NodePluginToolDescriptorSchema as Xl, ChannelsStopParamsSchema as Xm, TerminalAttachParamsSchema as Xn, SessionsGroupsListParamsSchema as Xo, ConfigSchemaLookupParamsSchema as Xp, TaskSuggestionsAcceptResultSchema as Xr, SessionDiscussionOpenResult as Xs, WizardStatusResultSchema as Xt, GatewaySuspendResumeParamsSchema as Xu, SessionsCatalogReadResultSchema as Xv, SkillsProposalReviseParams as Xw, WorkerInferenceModelRefSchema as Xx, BoardCommandEventSchema as Xy, WorkerHeartbeatParams as Y, AgentsUpdateResult as YC, ExpiredApprovalSnapshot as YS, ToolsInvokeResult as YT, ConversationTurnParams as Y_, SessionsCompactionGetResultSchema as Ya, BoardWidgetPluginKindSchema as Yb, QuestionSchema as Yc, ExecApprovalsSnapshot as Yd, CronRunLogEntrySchema as Yf, AuditActivityListResultSchema as Yg, TalkSessionTurnParams as Yh, SESSION_OBSERVER_HEALTH_VALUES as Yi, NodePluginToolDescriptor as Yl, ChannelsStopParams as Ym, TerminalAttachParams as Yn, SessionsGroupsListParams as Yo, ConfigSchemaLookupParams as Yp, TaskSuggestionsAcceptResult as Yr, SessionDiscussionOpenParamsSchema as Ys, WizardStatusResult as Yt, GatewaySuspendResumeParams as Yu, SessionsCatalogReadResult as Yv, SkillsProposalRequestRevisionResultSchema as Yw, WorkerInferenceModelRef as Yx, BoardCommandEvent as Yy, WorkerHeartbeatRequestFrame as Z, AuthProbeStatus as ZC, PendingApprovalSnapshot as ZS, ConversationTurnReply as Z_, SessionsCompactionListParamsSchema as Za, BoardWidgetPresentationSchema as Zb, QuestionStatusSchema as Zc, EnvironmentStatus as Zd, CronRunsParamsSchema as Zf, AuditActivityOutboundMessageV1Schema as Zg, TalkSessionTurnResult as Zh, SessionBranchSchema as Zi, NodePluginToolsUpdateParams as Zl, TalkAgentControlResult as Zm, TerminalAttachResult as Zn, SessionsGroupsListResult as Zo, ConfigSchemaLookupResult as Zp, TaskSuggestionsCreateParams as Zr, SessionDiscussionOpenResultSchema as Zs, WizardStep as Zt, GatewaySuspendResumeResult as Zu, MAX_MEMORY_MIGRATION_ITEMS as Zv, SkillsProposalReviseParamsSchema as Zw, WorkerInferenceOptions as Zx, BoardCommandSchema as Zy, WorktreesListParams as _, AgentKind as _C, ApprovalAllowedReasonSchema as _S, SkillsStatusParamsSchema as _T, AgentsWorkspaceFileSchema as __, SessionGroupSchema as _a, BoardSnapshotSchema as _b, SecretsResolveParamsSchema as _c, DevicePairRejectParams as _d, WorkerEnvironmentMetadata as _f, UsersLinkEmailResultSchema as _g, TalkClientTranscriptParams as _h, PresenceEntrySchema as _i, NodeEventParamsSchema as _l, COMMAND_LIST_MAX_ITEMS as _m, PluginsRefreshParams as _n, SessionsCreateResult as _o, SystemAgentSetupActivateParams as _p, TerminalSessionInfo as _r, SessionsPluginPatchParams as _s, WorkerProtocolCloseReason as _t, ChatEvent as _u, SessionCatalog as _v, SkillsBinsParamsSchema as _w, UiCommandResult as _x, SessionSuggestionsAddResult as _y, WorktreeRepositoryStatus as a, SessionApprovalEventSchema as aC, WorkerInferenceTerminalFrame as aS, SkillsSearchParamsSchema as aT, ArtifactsDownloadResultSchema as a_, SessionDiffFileStatusSchema as aa, BoardGetParamsSchema as ab, SessionsDispatchParamsSchema as ac, GatewaySuspendTaskBlocker as ad, EnvironmentsDestroyParams as af, TtsSpeakResult as ag, TalkClientCreateParams as ah, TaskSuggestionsListParams as ai, PushTestResultSchema as al, UpdateRunParams as am, PluginControlUiDescriptorSchema as an, SessionsCompanionAskParamsSchema as ao, SystemAgentChatHistoryParams as ap, TerminalExitEvent as ar, SessionsListParams as as, WorkerLiveEventErrorDetailsSchema as at, NodeRenameParams as au, SendParamsSchema as av, ModelsAuthStatusParamsSchema as aw, GatewayErrorDetailsSchema as ax, SessionSuggestion as ay, WorktreesListResultSchema as b, AgentSummarySchema as bC, ApprovalDecisionSchema as bS, SkillsUploadBeginParams as bT, AgentsWorkspaceGetResult as b_, SessionObserverHealth as ba, BoardTabDeleteOpSchema as bb, Question as bc, DevicePairRemoveParamsSchema as bd, WorkerEnvironmentStateSchema as bf, UsersListResult as bg, TalkConfigParamsSchema as bh, StateVersion as bi, NodeInvokeInputEvent as bl, CommandEntrySchema as bm, PluginsRefreshResultSchema as bn, SessionsDeleteParamsSchema as bo, SystemAgentSetupActivateResultSchema as bp, TerminalTextParamsSchema as br, SessionsPluginPatchResultSchema as bs, WorkerTranscriptCommitErrorShape as bt, ChatHistoryParamsSchema as bu, SessionCatalogDescriptor as bv, SkillsCuratorActionParams as bw, UiFocusCommandSchema as bx, SessionSuggestionsListParamsSchema as by, WorktreesBranchesParamsSchema as c, SystemAgentApprovalPresentation as cC, validateWorkerInferenceCancelParams as cS, SkillsSecurityVerdictsParams as cT, ArtifactsGetResult as c_, SessionFileBrowserResult as ca, BoardMcpAppDescriptorSchema as cb, SessionsReclaimParams as cc, FsDirEntrySchema as cd, EnvironmentsDestroyResultSchema as cf, WebLoginStartParamsSchema as cg, TalkClientCreateResultSchema as ch, TaskSuggestionsListResultSchema as ci, WebPushTestParams as cl, UpdateStatusParamsSchema as cm, PluginSearchResultEntrySchema as cn, SessionsCompanionResetParams as co, SystemAgentChatHistoryResultSchema as cp, TerminalInputParamsSchema as cr, SessionsMessagesSubscribeParamsSchema as cs, WorkerLiveEventParams as ct, NodeSkillDescriptorSchema as cu, CHAT_SEND_SESSION_KEY_MAX_LENGTH as cv, ModelsListResult as cw, UnknownAgentIdErrorDetailsSchema as cx, SessionSuggestionEvent as cy, WorktreesCreateParams as d, TerminalApprovalSnapshotSchema as dC, validateWorkerInferenceTerminalFrame as dS, SkillsSecurityVerdictsResultSchema as dT, ArtifactsListParamsSchema as d_, SessionFileEntrySchema as da, BoardPluginActionParamsSchema as db, SessionsReclaimResultSchema as dc, FsListDirResult as dd, EnvironmentsListResult as df, UserProfile as dg, TalkClientSteerParams as dh, validateSystemEventParams as di, WebPushUnsubscribeParamsSchema as dl, COMMAND_ARG_CHOICES_MAX_ITEMS as dm, PluginsInstallResult as dn, SessionsCompanionResetResultSchema as do, SystemAgentChatParams as dp, TerminalOpenParams as dr, SessionsObserverVisibilityParams as ds, WorkerLiveEventRequestFrameSchema as dt, ChatAbortParams as du, GatewayClientModeSchema as dv, ModelsProbeParamsSchema as dw, errorShape as dx, SessionSuggestionResolutionSchema as dy, PluginApprovalPresentation as eC, WorkerInferenceStartRequestFrame as eS, SkillsProposalsListParams as eT, ArtifactSummary as e_, SessionCompanionExchange as ea, BoardDataReadParamsSchema as eb, SessionPlacement as ec, GatewaySuspendStatusParamsSchema as ed, EnvironmentSummarySchema as ef, TalkSpeakParamsSchema as eg, TalkCatalogParamsSchema as eh, TaskSuggestionsCreateResultSchema as ei, QuestionWaitAnswerResult as el, ConfigSchemaParamsSchema as em, PluginCatalogEntry as en, SessionsCompactionRestoreParams as eo, CronScratchSchema as ep, TerminalCloseParamsSchema as er, SessionsGroupsMutationResultSchema as es, WorkerHeartbeatResponseFrameSchema as et, NodePresenceActivityPayloadSchema as eu, ConversationTurnResultSchema as ev, ModelChoice as ew, BoardWidgetPutParams as ex, MigrationProtocolSchemas as ey, WorktreesCreateParamsSchema as f, TerminalSessionApprovalEventSchema as fC, validateWorkerInferenceTerminalOutcome as fS, SkillsSkillCardParams as fT, ArtifactsListResult as f_, SessionFileKind as fa, BoardPromptAuthorizeParams as fb, SessionPlacementState as fc, FsListDirResultSchema as fd, EnvironmentsListResultSchema as ff, UserProfileAvatarMimeSchema as fg, TalkClientSteerParamsSchema as fh, SystemInfoParams as fi, WebPushVapidPublicKeyParams as fl, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as fm, PluginsInstallResultSchema as fn, SessionsCompanionStateParams as fo, SystemAgentChatParamsSchema as fp, TerminalOpenParamsSchema as fr, SessionsObserverVisibilityParamsSchema as fs, WorkerLiveEventResponseFrame as ft, ChatAbortParamsSchema as fu, InputProvenanceSchema as fv, ModelsProbeResult as fw, missingScopeErrorShape as fx, SessionSuggestionSchema as fy, WorktreesGcResultSchema as g, formatValidationErrors as gC, ApprovalAllowDecisionSchema as gS, SkillsStatusParams as gT, AgentsWorkspaceFile as g_, SessionGroup as ga, BoardSnapshot as gb, SecretsResolveParams as gc, DevicePairListParamsSchema as gd, EnvironmentsStatusResultSchema as gf, UsersLinkEmailResult as gg, TalkClientToolCallResultSchema as gh, PresenceEntry as gi, NodeEventParams as gl, COMMAND_DESCRIPTION_MAX_LENGTH as gm, PluginsListResultSchema as gn, SessionsCreateParams as go, SystemAgentChatResultSchema as gp, TerminalResizeParamsSchema as gr, SessionsPatchParamsSchema as gs, WorkerLiveEventSchema as gt, ChatErrorEventSchema as gu, SessionLabelString as gv, SkillsBinsParams as gw, UiCommandParamsSchema as gx, SessionSuggestionsAddParamsSchema as gy, WorktreesGcResult as h, ValidationError as hC, ApprovalAllowDecision as hS, SkillsSkillCardResultSchema as hT, AgentsWorkspaceEntrySchema as h_, SessionFileRelevanceSchema as ha, BoardSizeSchema as hb, SecretsResolveAssignmentSchema as hc, DevicePairListParams as hd, EnvironmentsStatusResult as hf, UsersLinkEmailParamsSchema as hg, TalkClientToolCallResult as hh, SystemInfoResultSchema as hi, NodeDescribeParamsSchema as hl, COMMAND_CHOICE_VALUE_MAX_LENGTH as hm, PluginsListResult as hn, SessionsCompanionStateResultSchema as ho, SystemAgentChatResult as hp, TerminalResizeParams as hr, SessionsPatchParams as hs, WorkerLiveEventResultSchema as ht, ChatDeltaEventSchema as hu, SecretRefSchema as hv, ModelsProbeTargetResultSchema as hw, UiCommandParams as hx, SessionSuggestionsAddParams as hy, WorktreeRecordSchema as i, SessionApprovalEvent as iC, WorkerInferenceStartResult as iS, SkillsSearchParams as iT, ArtifactsDownloadResult as i_, SessionDiffFileStatus as ia, BoardGetParams as ib, SessionsDispatchParams as ic, GatewaySuspendStatusRunningResultSchema as id, EnvironmentsCreateResultSchema as if, TtsSpeakParamsSchema as ig, TalkClientCloseParamsSchema as ih, TaskSuggestionsDismissResultSchema as ii, PushTestResult as il, ConfigSetParamsSchema as im, PluginControlUiDescriptor as in, SessionsCompanionAskParams as io, CronUpdateParamsSchema as ip, TerminalEventSchema as ir, SessionsGroupsRenameParamsSchema as is, WorkerLiveEventErrorDetails as it, NodePresenceAliveReasonSchema as iu, PollParamsSchema as iv, ModelsAuthStatusParams as iw, BoardWidgetSchema as ix, MigrationsMemoryPlanResult as iy, WORKER_PROTOCOL_MAX_FEATURES as j, AgentsFilesGetParams as jC, ApprovalKind as jS, ToolCatalogProfileSchema as jT, AgentIdentityResultSchema as j_, SessionsBranchesListParamsSchema as ja, BoardWidgetAppViewParamsSchema as jb, QuestionOption as jc, DeviceTokenRotateParams as jd, CronRunParams as jf, UsersSetDisplayNameParamsSchema as jg, TalkSessionCancelTurnParams as jh, SessionMembersListParamsSchema as ji, NodePairApproveParams as jl, ChannelsPairingApproveResultSchema as jm, PluginsSetEnabledParams as jn, SessionsFilesListParams as jo, SystemAgentSetupVerifyResult as jp, TasksCancelResult as jr, SessionsSearchHit as js, WorkerTranscriptMessageSchema as jt, ChatStatusEvent as ju, SessionCatalogTranscriptItem as jv, SkillsDetailResultSchema as jw, validateSkillsProposalHistoryScanParams as jx, SessionTypingResult as jy, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as k, AgentsFileEntry as kC, ApprovalHistoryResult as kS, ToolCatalogGroupSchema as kT, AgentIdentityParamsSchema as k_, SessionsAbortParamsSchema as ka, BoardWidget as kb, QuestionListResult as kc, DeviceTokenRevokeParams as kd, CronRemoveParams as kf, UsersSetAvatarResultSchema as kg, TalkSessionCancelOutputParams as kh, SessionMemberSchema as ki, NodeListParams as kl, ChannelsPairingApproveParamsSchema as km, PluginsSessionActionResultSchema as kn, SessionsFilesGetResult as ko, SystemAgentSetupVerifyParams as kp, TasksCancelParams as kr, SessionsRewindResult as ks, WorkerTranscriptCommitResultSchema as kt, ChatRunStartupPhaseSchema as ku, SessionCatalogSession as kv, SkillsDetailParamsSchema as kw, SkillsProposalHistoryStatusParams as kx, SessionTypingParams as ky, WorktreesBranchesResult as l, SystemAgentApprovalPresentationSchema as lC, validateWorkerInferenceEventFrame as lS, SkillsSecurityVerdictsParamsSchema as lT, ArtifactsGetResultSchema as l_, SessionFileBrowserResultSchema as la, BoardOp as lb, SessionsReclaimParamsSchema as lc, FsListDirParams as ld, EnvironmentsListParams as lf, WebLoginWaitParams as lg, TalkClientMutationResult as lh, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as li, WebPushTestParamsSchema as ll, COMMAND_ALIAS_MAX_ITEMS as lm, PluginsInstallParams as ln, SessionsCompanionResetParamsSchema as lo, SystemAgentChatHistoryTurn as lp, TerminalListResult as lr, SessionsMessagesUnsubscribeParams as ls, WorkerLiveEventParamsSchema as lt, NodeSkillsUpdateParams as lu, ChatSendSessionKeyString as lv, ModelsListResultSchema as lw, WizardNotFoundErrorDetailsSchema as lx, SessionSuggestionEventSchema as ly, WorktreesGcParamsSchema as m, ProtocolValidator as mC, AllowedApprovalSnapshotSchema as mS, SkillsSkillCardResult as mT, AgentsWorkspaceEntry as m_, SessionFileRelevance as ma, BoardSetChatDockCommandSchema as mb, SecretsReloadParamsSchema as mc, DevicePairApproveParamsSchema as md, EnvironmentsStatusParamsSchema as mf, UsersLinkEmailParams as mg, TalkClientToolCallParamsSchema as mh, SystemInfoResult as mi, NodeDescribeParams as ml, COMMAND_CHOICE_LABEL_MAX_LENGTH as mm, PluginsListParamsSchema as mn, SessionsCompanionStateResult as mo, SystemAgentChatQuestionSchema as mp, TerminalOpenResultSchema as mr, SessionsObserverVisibilityResultSchema as ms, WorkerLiveEventResult as mt, ChatAttachmentsSchema as mu, SecretInputSchema as mv, ModelsProbeTargetResult as mw, UiCommand as mx, SessionSuggestionStateSchema as my, WorktreeBranchSchema as n, PluginApprovalSeverity as nC, WorkerInferenceStartResponseFrame as nS, SkillsProposalsListResult as nT, ArtifactsDownloadParams as n_, SessionDiffFile as na, BoardEventParamsSchema as nb, SessionPlacementSchema as nc, GatewaySuspendStatusResult as nd, EnvironmentsCreateParamsSchema as nf, TalkSpeakResultSchema as ng, TalkCatalogResultSchema as nh, TaskSuggestionsDismissParamsSchema as ni, PushTestParams as nl, ConfigSchemaResponseSchema as nm, PluginCatalogInstallActionSchema as nn, SessionsCompactionRestoreResult as no, CronScratchSetResultSchema as np, TerminalDataEventSchema as nr, SessionsGroupsPutParamsSchema as ns, WorkerHelloOk as nt, NodePresenceAlivePayloadSchema as nu, MessageActionParamsSchema as nv, ModelsAuthLogoutParams as nw, BoardWidgetRemoveOpSchema as nx, MigrationsMemoryApplyResult as ny, WorktreeRepositoryStatusSchema as o, SessionApprovalReplay as oC, WorkerInferenceTerminalOutcome as oS, SkillsSearchResult as oT, ArtifactsGetParams as o_, SessionFileBrowserEntry as oa, BoardLegacyEventParamsSchema as ob, SessionsDispatchResult as oc, GatewaySuspendTaskBlockerSchema as od, EnvironmentsDestroyParamsSchema as of, TtsSpeakResultSchema as og, TalkClientCreateParamsSchema as oh, TaskSuggestionsListParamsSchema as oi, WebPushSubscribeParams as ol, UpdateRunParamsSchema as om, PluginJsonValueSchema as on, SessionsCompanionAskResult as oo, SystemAgentChatHistoryParamsSchema as op, TerminalExitEventSchema as or, SessionsListParamsSchema as os, WorkerLiveEventErrorShape as ot, NodeRenameParamsSchema as ou, WakeParams as ov, ModelsListParams as ow, McpAppViewExpiredErrorDetailsSchema as ox, SessionSuggestionAction as oy, WorktreesGcParams as p, isWellFormedApprovalId as pC, AllowedApprovalSnapshot as pS, SkillsSkillCardParamsSchema as pT, ArtifactsListResultSchema as p_, SessionFileKindSchema as pa, BoardPromptAuthorizeParamsSchema as pb, isCloudWorkerPlacementState as pc, DevicePairApproveParams as pd, EnvironmentsStatusParams as pf, UserProfileSchema as pg, TalkClientToolCallParams as ph, SystemInfoParamsSchema as pi, WebPushVapidPublicKeyParamsSchema as pl, COMMAND_ARG_NAME_MAX_LENGTH as pm, PluginsListParams as pn, SessionsCompanionStateParamsSchema as po, SystemAgentChatQuestion as pp, TerminalOpenResult as pr, SessionsObserverVisibilityResult as ps, WorkerLiveEventResponseFrameSchema as pt, ChatAbortedEventSchema as pu, NonEmptyString as pv, ModelsProbeResultSchema as pw, UiClosePaneCommandSchema as px, SessionSuggestionState as py, WorkerConnectRequestFrameSchema as q, AgentsUpdateParams as qC, ExecApprovalPresentation as qS, ToolsInvokeParams as qT, ConversationTurnCancelResult as q_, SessionsCompactionGetParamsSchema as qa, BoardWidgetNameSchema as qb, QuestionResolvedEvent as qc, ExecApprovalsSetParams as qd, CronPacingSchema as qf, AuditActivityListParamsSchema as qg, TalkSessionSubmitToolResultParams as qh, SessionVisibility as qi, NodePendingEnqueueResult as ql, ChannelsStatusResult as qm, TerminalAckResult as qn, SessionsGroupsDeleteParams as qo, ConfigPatchParams as qp, TaskSuggestionsAcceptParams as qr, SessionDiscussionInfoSchema as qs, WizardStatusParams as qt, GatewaySuspendPrepareResult as qu, SessionsCatalogReadParams as qv, SkillsProposalRequestRevisionParamsSchema as qw, WorkerInferenceEventFrame as qx, BoardChatDockSchema as qy, WorktreeRecord as r, PluginApprovalSeveritySchema as rC, WorkerInferenceStartResponseFrameSchema as rS, SkillsProposalsListResultSchema as rT, ArtifactsDownloadParamsSchema as r_, SessionDiffFileSchema as ra, BoardFocusTabCommandSchema as rb, SessionPlacementStateSchema as rc, GatewaySuspendStatusResultSchema as rd, EnvironmentsCreateResult as rf, TtsSpeakParams as rg, TalkClientCloseParams as rh, TaskSuggestionsDismissResult as ri, PushTestParamsSchema as rl, ConfigSetParams as rm, PluginCatalogOfficialInstallSchema as rn, SessionsCompactionRestoreResultSchema as ro, CronStatusParamsSchema as rp, TerminalEvent as rr, SessionsGroupsRenameParams as rs, WorkerLiveEvent as rt, NodePresenceAliveReason as ru, PollParams as rv, ModelsAuthLogoutParamsSchema as rw, BoardWidgetResizeOpSchema as rx, MigrationsMemoryPlanParamsSchema as ry, WorktreesBranchesParams as s, SessionApprovalReplaySchema as sC, WorkerInferenceTerminalParams as sS, SkillsSearchResultSchema as sT, ArtifactsGetParamsSchema as s_, SessionFileBrowserEntrySchema as sa, BoardMcpAppDescriptor as sb, SessionsDispatchResultSchema as sc, FsDirEntry as sd, EnvironmentsDestroyResult as sf, WebLoginStartParams as sg, TalkClientCreateResult as sh, TaskSuggestionsListResult as si, WebPushSubscribeParamsSchema as sl, UpdateStatusParams as sm, PluginSearchPackageSchema as sn, SessionsCompanionAskResultSchema as so, SystemAgentChatHistoryResult as sp, TerminalInputParams as sr, SessionsMessagesSubscribeParams as ss, WorkerLiveEventErrorShapeSchema as st, NodeSkillDescriptor as su, WakeParamsSchema as sv, ModelsListParamsSchema as sw, MissingScopeErrorDetailsSchema as sx, SessionSuggestionActionSchema as sy, WorktreeBranch as t, PluginApprovalPresentationSchema as tC, WorkerInferenceStartRequestFrameSchema as tS, SkillsProposalsListParamsSchema as tT, ArtifactSummarySchema as t_, SessionCompanionExchangeSchema as ta, BoardEventParams as tb, SessionPlacementProtocolSchemas as tc, GatewaySuspendStatusReadyResultSchema as td, EnvironmentsCreateParams as tf, TalkSpeakResult as tg, TalkCatalogResult as th, TaskSuggestionsDismissParams as ti, QuestionWaitAnswerResultSchema as tl, ConfigSchemaResponse as tm, PluginCatalogEntrySchema as tn, SessionsCompactionRestoreParamsSchema as to, CronScratchSetParamsSchema as tp, TerminalDataEvent as tr, SessionsGroupsPutParams as ts, WorkerHeartbeatResult as tt, NodePresenceAlivePayload as tu, MessageActionParams as tv, ModelChoiceSchema as tw, BoardWidgetPutParamsSchema as tx, MigrationsMemoryApplyParamsSchema as ty, WorktreesBranchesResultSchema as u, TerminalApprovalSnapshot as uC, validateWorkerInferenceStartParams as uS, SkillsSecurityVerdictsResult as uT, ArtifactsListParams as u_, SessionFileEntry as ua, BoardOpSchema as ub, SessionsReclaimResult as uc, FsListDirParamsSchema as ud, EnvironmentsListParamsSchema as uf, WebLoginWaitParamsSchema as ug, TalkClientMutationResultSchema as uh, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as ui, WebPushUnsubscribeParams as ul, COMMAND_ARGS_MAX_ITEMS as um, PluginsInstallParamsSchema as un, SessionsCompanionResetResult as uo, SystemAgentChatHistoryTurnSchema as up, TerminalListResultSchema as ur, SessionsMessagesUnsubscribeParamsSchema as us, WorkerLiveEventRequestFrame as ut, NodeSkillsUpdateParamsSchema as uu, GatewayClientIdSchema as uv, ModelsProbeParams as uw, buildMissingScopeErrorDetails as ux, SessionSuggestionResolution as uy, WorktreesListParamsSchema as v, AgentKindSchema as vC, ApprovalCancelledReasonSchema as vS, SkillsUpdateParams as vT, AgentsWorkspaceGetParams as v_, SessionObserverDigest as va, BoardTab as vb, SecretsResolveResult as vc, DevicePairRejectParamsSchema as vd, WorkerEnvironmentMetadataSchema as vf, UsersListParams as vg, TalkClientTranscriptParamsSchema as vh, Snapshot as vi, NodeEventResult as vl, COMMAND_NAME_MAX_LENGTH as vm, PluginsRefreshParamsSchema as vn, SessionsCreateResultSchema as vo, SystemAgentSetupActivateParamsSchema as vp, TerminalSessionInfoSchema as vr, SessionsPluginPatchParamsSchema as vs, WorkerTranscriptCommitErrorReason as vt, ChatEventSchema as vu, SessionCatalogCapabilities as vv, SkillsBinsResult as vw, UiCommandResultSchema as vx, SessionSuggestionsAddResultSchema as vy, WorktreesRemoveResultSchema as w, AgentsCreateResultSchema as wC, ApprovalGetParamsSchema as wS, SkillsUploadCommitParams as wT, AgentsWorkspaceListResult as w_, SessionOperationEvent as wa, BoardTabsReorderOpSchema as wb, QuestionGetParamsSchema as wc, DevicePairResolvedEventSchema as wd, CronAddResult as wf, UsersSelfResult as wg, TalkEventSchema as wh, SessionMemberAddParamsSchema as wi, NodeInvokeProgressParams as wl, CommandsListResultSchema as wm, PluginsSearchResultSchema as wn, SessionsDiffParamsSchema as wo, SystemAgentSetupAuthStartResultSchema as wp, TerminalUploadParamsSchema as wr, SessionsResetParamsSchema as ws, WorkerTranscriptCommitRequestFrame as wt, ChatMessageGetResult as wu, SessionCatalogLocator as wv, SkillsCuratorStatusParams as ww, UiSplitCommandSchema as wx, SessionSuggestionsResolveParamsSchema as wy, WorktreesRemoveParams as x, AgentsCreateParams as xC, ApprovalDeniedReasonSchema as xS, SkillsUploadBeginParamsSchema as xT, AgentsWorkspaceGetResultSchema as x_, SessionObserverHealthSchema as xa, BoardTabIdSchema as xb, QuestionAnswers as xc, DevicePairRenameParams as xd, WorkerTunnelStatus as xf, UsersListResultSchema as xg, TalkConfigResult as xh, StateVersionSchema as xi, NodeInvokeInputEventSchema as xl, CommandsListParams as xm, PluginsSearchParams as xn, SessionsDescribeParams as xo, SystemAgentSetupAuthStartParams as xp, TerminalTextResult as xr, SessionsPreviewParams as xs, WorkerTranscriptCommitErrorShapeSchema as xt, ChatInjectParams as xu, SessionCatalogDescriptorSchema as xv, SkillsCuratorActionParamsSchema as xw, UiNavigateCommandSchema as xx, SessionSuggestionsListResult as xy, WorktreesListResult as y, AgentSummary as yC, ApprovalDecision as yS, SkillsUpdateParamsSchema as yT, AgentsWorkspaceGetParamsSchema as y_, SessionObserverDigestSchema as ya, BoardTabCreateOpSchema as yb, SecretsResolveResultSchema as yc, DevicePairRemoveParams as yd, WorkerEnvironmentState as yf, UsersListParamsSchema as yg, TalkConfigParams as yh, SnapshotSchema as yi, NodeEventResultSchema as yl, CommandEntry as ym, PluginsRefreshResult as yn, SessionsDeleteParams as yo, SystemAgentSetupActivateResult as yp, TerminalTextParams as yr, SessionsPluginPatchResult as ys, WorkerTranscriptCommitErrorReasonSchema as yt, ChatFinalEventSchema as yu, SessionCatalogCapabilitiesSchema as yv, SkillsBinsResultSchema as yw, UiCommandSchema as yx, SessionSuggestionsListParams as yy, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as z, AgentsFilesSetParams as zC, ApprovalSnapshot as zS, ToolsEffectiveGroupSchema as zT, ConversationListResult as z_, SessionsCleanupParamsSchema as za, BoardWidgetGrantParamsSchema as zb, QuestionRequestResult as zc, ExecApprovalsGetParams as zd, CronAddParamsSchema as zf, AuditListResultSchema as zg, TalkSessionJoinParams as zh, SessionSharingIdentitySchema as zi, NodePendingAckParams as zl, ChannelsPairingListResultSchema as zm, PluginsUninstallParams as zn, SessionsFilesSetParams as zo, SystemChangesListParams as zp, TasksListResult as zr, SessionsUsageParams as zs, WizardNextParams as zt, LogsTailResult as zu, SessionsCatalogContinueResult as zv, SkillsProposalCreateParamsSchema as zw, WorkerInferenceCancelRequestFrame as zx, BOARD_DATA_BINDING_ID_MAX_LENGTH as zy };
|
|
14006
|
+
export { WorkerHeartbeatResponseFrame as $, AgentsFilesSetResult as $C, ApprovalTerminalReason as $S, ToolCatalogGroupSchema as $T, ConversationSendResult as $_, SessionsCompactionBranchResult as $a, BoardWidgetHtmlContentSchema as $b, QuestionResolveParamsSchema as $c, ExecApprovalsNodeSetParams as $d, CronGetParamsSchema as $f, AuditActivityEventV1Schema as $g, TalkSessionOkResult as $h, SessionsViewerPresenceSetResultSchema as $i, NodePendingDrainResultSchema as $l, ChannelsStartParams as $m, TerminalCloseParams as $n, SessionsForkParamsSchema as $o, ConfigApplyParams as $p, TaskSuggestionsCreateResult as $r, SessionDiscussionInfoParamsSchema as $s, PluginCatalogClawHubInstallSchema as $t, GatewaySuspendPrepareBusyResultSchema as $u, SessionsCatalogListParams as $v, SkillsProposalApplyResultSchema as $w, WorkerInferenceCancelResponseFrame as $x, BoardActionParams as $y, WORKER_PROTOCOL_FEATURES as A, AgentKindSchema as AC, ApprovalCancelledReasonSchema as AS, SkillsSearchResult as AT, AgentsWorkspaceGetResult as A_, SessionObserverHealthSchema as Aa, BoardTab as Ab, QuestionAnswers as Ac, DevicePairRemoveParamsSchema as Ad, WorkerEnvironmentStateSchema as Af, UsersListResult as Ag, TalkConfigParamsSchema as Ah, SessionMembersListParams as Ai, NodeInvokeInputEventSchema as Al, CommandEntrySchema as Am, PluginsSessionActionSuccessResultSchema as An, SessionsDescribeParams as Ao, SystemAgentSetupActivateResultSchema as Ap, TasksCancelParamsSchema as Ar, SessionsPreviewParams as As, WorkerTranscriptMessage as At, ChatHistoryParamsSchema as Au, SessionCatalogDescriptor as Av, SkillProposalLifecycleEvent as Aw, UiCommandResultSchema as Ax, SessionSuggestionsListParamsSchema as Ay, WorkerAdmissionFailureReason as B, AgentsDeleteResultSchema as BC, ApprovalHistoryParamsSchema as BS, SkillsStatusParams as BT, AgentIdentityResult as B_, SessionsBranchesListParamsSchema as Ba, BoardViewTicketSchema as Bb, QuestionOption as Bc, DeviceTokenRevokeParamsSchema as Bd, CronRunLogEntry as Bf, UsersSetDisplayNameParams as Bg, TalkSessionCancelOutputParamsSchema as Bh, SessionVisibilitySetParams as Bi, NodePairApproveParams as Bl, ChannelsPairingApproveResult as Bm, PluginsUninstallParamsSchema as Bn, SessionsFilesListParams as Bo, SystemAgentSetupVerifyParamsSchema as Bp, TasksListResultSchema as Br, SessionsSearchHit as Bs, WizardNextParamsSchema as Bt, ChatSendParamsSchema as Bu, SessionCatalogSessionSchema as Bv, SkillsCuratorStatusParams as Bw, SkillsProposalHistoryScanResultSchema as Bx, SessionTypingParamsSchema as By, WorktreesRemoveResult as C, TerminalApprovalSnapshotSchema as CC, validateWorkerInferenceTerminalFrame as CS, SkillsProposalUpdateParamsSchema as CT, ArtifactsListResultSchema as C_, SessionFileRelevance as Ca, BoardPluginActionParamsSchema as Cb, SecretsReloadParamsSchema as Cc, DevicePairApproveParams as Cd, EnvironmentsStatusParams as Cf, UserProfileSchema as Cg, TalkClientToolCallParams as Ch, SessionMemberAddParams as Ci, NodeDescribeParams as Cl, COMMAND_ARG_NAME_MAX_LENGTH as Cm, PluginsSearchResult as Cn, SessionsCompanionStateResult as Co, SystemAgentChatQuestion as Cp, TerminalUploadParams as Cr, SessionsObserverVisibilityResultSchema as Cs, WorkerTranscriptCommitParamsSchema as Ct, ChatAttachmentSchema as Cu, NonEmptyString as Cv, ModelsProbeParamsSchema as Cw, errorShape as Cx, SessionSuggestionState as Cy, WORKER_HEARTBEAT_INTERVAL_MS as D, ValidationError as DC, ApprovalAllowDecision as DS, SkillsProposalsListResultSchema as DT, AgentsWorkspaceFileSchema as D_, SessionObserverDigest as Da, BoardSizeSchema as Db, SecretsResolveResult as Dc, DevicePairRejectParams as Dd, WorkerEnvironmentMetadata as Df, UsersLinkEmailResultSchema as Dg, TalkClientTranscriptParams as Dh, SessionMemberRemoveParams as Di, NodeEventResult as Dl, COMMAND_LIST_MAX_ITEMS as Dm, PluginsSessionActionParamsSchema as Dn, SessionsCreateResultSchema as Do, SystemAgentSetupActivateParams as Dp, TaskSummary as Dr, SessionsPluginPatchParamsSchema as Ds, WorkerTranscriptCommitResponseFrameSchema as Dt, ChatEvent as Du, SessionCatalog as Dv, ModelsProbeTargetResultSchema as Dw, UiCommandParams as Dx, SessionSuggestionsAddResult as Dy, WorktreesRestoreParamsSchema as E, ProtocolValidator as EC, AllowedApprovalSnapshotSchema as ES, SkillsProposalsListResult as ET, AgentsWorkspaceFile as E_, SessionGroupSchema as Ea, BoardSetChatDockCommandSchema as Eb, SecretsResolveParamsSchema as Ec, DevicePairListParamsSchema as Ed, EnvironmentsStatusResultSchema as Ef, UsersLinkEmailResult as Eg, TalkClientToolCallResultSchema as Eh, SessionMemberMutationResultSchema as Ei, NodeEventParamsSchema as El, COMMAND_DESCRIPTION_MAX_LENGTH as Em, PluginsSessionActionParams as En, SessionsCreateResult as Eo, SystemAgentChatResultSchema as Ep, TerminalUploadResultSchema as Er, SessionsPluginPatchParams as Es, WorkerTranscriptCommitResponseFrame as Et, ChatErrorEventSchema as Eu, SessionLabelString as Ev, ModelsProbeTargetResult as Ew, UiCommand as Ex, SessionSuggestionsAddParamsSchema as Ey, WORKER_RPC_SET_VERSION as F, AgentsCreateResult as FC, ApprovalGetParams as FS, SkillsSecurityVerdictsResultSchema as FT, AgentsWorkspaceListResultSchema as F_, SessionWorktreeInfo as Fa, BoardTabUpdateOpSchema as Fb, QuestionGetResultSchema as Fc, DevicePairSetupCodeParams as Fd, CronDeclarativeAddResult as Ff, UsersSelfResultSchema as Fg, TalkModeParams as Fh, SessionSharingActionSchema as Fi, NodeInvokeRequestEventSchema as Fl, TalkSessionAcknowledgeMarkParams as Fm, PluginsUiDescriptorsParams as Fn, SessionsDiffResultSchema as Fo, SystemAgentSetupDetectParams as Fp, TasksGetResult as Fr, SessionsResolveParamsSchema as Fs, WorkerAdmissionFailureReasonSchema as Ft, ChatMessageGetResultSchema as Fu, SessionCatalogLocatorSchema as Fv, SkillsBinsResultSchema as Fw, UiSidebarCommandSchema as Fx, SessionSuggestionsResolveResult as Fy, WorkerConnectParams as G, AgentsFilesGetResult as GC, ApprovalPresentation as GS, SkillsUploadBeginParamsSchema as GT, ConversationListItem as G_, SessionsBranchesSwitchResult as Ga, BoardWidgetAppViewResultSchema as Gb, QuestionRequestParamsSchema as Gc, ExecApprovalRequestParams as Gd, CronScratchSetParams as Gf, AuditEventSchema as Gg, TalkSessionCreateParams as Gh, SessionSharingRole as Gi, NodePairRejectParamsSchema as Gl, ChannelsPairingDismissResultSchema as Gm, PluginApprovalResolveParams as Gn, SessionsFilesRevealParamsSchema as Go, SystemChangeKind as Gp, TaskSuggestionResolutionSchema as Gr, SessionsSearchResultSchema as Gs, WizardStartResult as Gt, ChatToolTitlesResult as Gu, SessionsCatalogArchiveResult as Gv, SkillsDetailParamsSchema as Gw, WORKER_INFERENCE_MAX_CONTEXT_MESSAGES as Gx, SessionRow as Gy, WorkerAdmissionHandshakeSchema as H, AgentsFileEntrySchema as HC, ApprovalHistoryResultSchema as HS, SkillsUpdateParams as HT, AgentParamsSchema as H_, SessionsBranchesListResultSchema as Ha, BoardWidgetAppViewParams as Hb, QuestionRecord as Hc, DeviceTokenRotateParamsSchema as Hd, CronRunsParams as Hf, UsersSetDisplayNameResult as Hg, TalkSessionCancelTurnParamsSchema as Hh, SessionVisibilitySetResult as Hi, NodePairListParams as Hl, ChannelsPairingDismissParams as Hm, PluginsUninstallResultSchema as Hn, SessionsFilesListResult as Ho, SystemAgentSetupVerifyResultSchema as Hp, TaskSuggestionEvent as Hr, SessionsSearchParams as Hs, WizardNextResultSchema as Ht, ChatStatusEventSchema as Hu, SessionCatalogTranscriptItemSchema as Hv, SkillsCuratorStatusResult as Hw, SkillsProposalHistoryStatusParamsSchema as Hx, SessionTypingResultSchema as Hy, WORKER_TRANSCRIPT_COMMIT_PROTOCOL_FEATURE as I, AgentsCreateResultSchema as IC, ApprovalGetParamsSchema as IS, SkillsSkillCardParams as IT, AgentEvent as I_, SessionWorktreeInfoSchema as Ia, BoardTabsReorderOpSchema as Ib, QuestionListParams as Ic, DevicePairSetupCodeParamsSchema as Id, CronGetParams as If, UsersSetAvatarParams as Ig, TalkModeParamsSchema as Ih, SessionSharingEvent as Ii, NodeInvokeResultParams as Il, TalkSessionAcknowledgeMarkParamsSchema as Im, PluginsUiDescriptorsParamsSchema as In, SessionsFilesGetParams as Io, SystemAgentSetupDetectParamsSchema as Ip, TasksGetResultSchema as Ir, SessionsRewindParams as Is, WorkerProtocolCloseReasonSchema as It, ChatMetadataParams as Iu, SessionCatalogPullRequestSummary as Iv, SkillsCuratorActionParams as Iw, UiSplitCommandSchema as Ix, SessionSuggestionsResolveResultSchema as Iy, WorkerErrorShape as J, AgentsFilesListParamsSchema as JC, ApprovalResolveParamsSchema as JS, SkillsUploadCommitParams as JT, ConversationListParamsSchema as J_, SessionsCleanupParamsSchema as Ja, BoardWidgetDeclared as Jb, QuestionRequestResult as Jc, ExecApprovalResolveParamsSchema as Jd, CronUpdateParams as Jf, AuditListResult as Jg, TalkSessionCreateResultSchema as Jh, SessionVisibilitySchema as Ji, NodePendingAckParams as Jl, ChannelsPairingListResult as Jm, TerminalAckResultSchema as Jn, SessionsFilesSetParams as Jo, SystemChangeSourceSchema as Jp, TaskSuggestionsAcceptParamsSchema as Jr, SessionsUsageParams as Js, WizardStatusParamsSchema as Jt, LogsTailParamsSchema as Ju, SessionsCatalogContinueParamsSchema as Jv, SkillsInstallParams as Jw, WORKER_INFERENCE_PROTOCOL_FEATURE as Jx, SessionToolOverridesSchema as Jy, WorkerConnectRequestFrame as K, AgentsFilesGetResultSchema as KC, ApprovalPresentationSchema as KS, SkillsUploadChunkParams as KT, ConversationListItemSchema as K_, SessionsBranchesSwitchResultSchema as Ka, BoardWidgetContent as Kb, QuestionRequestQuestion as Kc, ExecApprovalRequestParamsSchema as Kd, CronScratchSetResult as Kf, AuditListParams as Kg, TalkSessionCreateParamsSchema as Kh, SessionSharingRoleSchema as Ki, NodePairRemoveParams as Kl, ChannelsPairingListParams as Km, PluginApprovalResolveParamsSchema as Kn, SessionsFilesRevealResult as Ko, SystemChangeKindSchema as Kp, TaskSuggestionSchema as Kr, SessionsSendParams as Ks, WizardStartResultSchema as Kt, ChatToolTitlesResultSchema as Ku, SessionsCatalogArchiveResultSchema as Kv, SkillsDetailResult as Kw, WORKER_INFERENCE_MAX_OUTPUT_TOKENS as Kx, SessionRowSchema as Ky, WORKER_TRANSCRIPT_MAX_BATCH_MESSAGES as L, AgentsDeleteParams as LC, ApprovalGetResult as LS, SkillsSkillCardParamsSchema as LT, AgentEventSchema as L_, SessionsAbortParams as La, BoardTicketEventParamsSchema as Lb, QuestionListParamsSchema as Lc, DevicePairSetupCodeResult as Ld, CronJob as Lf, UsersSetAvatarParamsSchema as Lg, TalkSessionAppendAudioParams as Lh, SessionSharingEventSchema as Li, NodeInvokeResultParamsSchema as Ll, ChannelsPairingAccount as Lm, PluginsUiDescriptorsResult as Ln, SessionsFilesGetParamsSchema as Lo, SystemAgentSetupDetectResult as Lp, TasksListParams as Lr, SessionsRewindParamsSchema as Ls, WizardCancelParams as Lt, ChatMetadataParamsSchema as Lu, SessionCatalogPullRequestSummarySchema as Lv, SkillsCuratorActionParamsSchema as Lw, SkillsProposalHistoryScanParams as Lx, SessionTypingEvent as Ly, WORKER_PROTOCOL_MAX_FEATURE_LENGTH as M, AgentSummarySchema as MC, ApprovalDecisionSchema as MS, SkillsSecurityVerdictsParams as MT, AgentsWorkspaceListParams as M_, SessionObserverPlanProgressSchema as Ma, BoardTabDeleteOpSchema as Mb, QuestionGetParams as Mc, DevicePairRenameParamsSchema as Md, WorkerTunnelStatusSchema as Mf, UsersSelfParams as Mg, TalkConfigResultSchema as Mh, SessionMembersListResult as Mi, NodeInvokeParamsSchema as Ml, CommandsListParamsSchema as Mm, PluginsSetEnabledParamsSchema as Mn, SessionsDiffParams as Mo, SystemAgentSetupAuthStartParamsSchema as Mp, TasksCancelResultSchema as Mr, SessionsResetParams as Ms, WORKER_PROTOCOL_MAX_FRAME_ID_LENGTH as Mt, ChatInjectParamsSchema as Mu, SessionCatalogHost as Mv, SkillsBinsParams as Mw, UiFocusCommandSchema as Mx, SessionSuggestionsListResultSchema as My, WORKER_PROTOCOL_MAX_METHOD_LENGTH as N, AgentsCreateParams as NC, ApprovalDeniedReasonSchema as NS, SkillsSecurityVerdictsParamsSchema as NT, AgentsWorkspaceListParamsSchema as N_, SessionOperationEvent as Na, BoardTabIdSchema as Nb, QuestionGetParamsSchema as Nc, DevicePairRequestedEventSchema as Nd, CronAddParams as Nf, UsersSelfParamsSchema as Ng, TalkEvent as Nh, SessionMembersListResultSchema as Ni, NodeInvokeProgressParams as Nl, CommandsListResult as Nm, PluginsSetEnabledResult as Nn, SessionsDiffParamsSchema as No, SystemAgentSetupAuthStartResult as Np, TasksGetParams as Nr, SessionsResetParamsSchema as Ns, WORKER_PROTOCOL_MAX_IDENTIFIER_LENGTH as Nt, ChatMessageGetParamsSchema as Nu, SessionCatalogHostSchema as Nv, SkillsBinsParamsSchema as Nw, UiNavigateCommandSchema as Nx, SessionSuggestionsResolveParams as Ny, WORKER_LAUNCH_V2_PROTOCOL_FEATURE as O, formatValidationErrors as OC, ApprovalAllowDecisionSchema as OS, SkillsSearchParams as OT, AgentsWorkspaceGetParams as O_, SessionObserverDigestSchema as Oa, BoardSnapshot as Ob, SecretsResolveResultSchema as Oc, DevicePairRejectParamsSchema as Od, WorkerEnvironmentMetadataSchema as Of, UsersListParams as Og, TalkClientTranscriptParamsSchema as Oh, SessionMemberRemoveParamsSchema as Oi, NodeEventResultSchema as Ol, COMMAND_NAME_MAX_LENGTH as Om, PluginsSessionActionResult as On, SessionsDeleteParams as Oo, SystemAgentSetupActivateParamsSchema as Op, TaskSummarySchema as Or, SessionsPluginPatchResult as Os, WorkerTranscriptCommitResult as Ot, ChatEventSchema as Ou, SessionCatalogCapabilities as Ov, SkillProposalEvaluation as Ow, UiCommandParamsSchema as Ox, SessionSuggestionsAddResultSchema as Oy, WORKER_PROTOCOL_METHODS as P, AgentsCreateParamsSchema as PC, ApprovalExpiredReasonSchema as PS, SkillsSecurityVerdictsResult as PT, AgentsWorkspaceListResult as P_, SessionOperationEventSchema as Pa, BoardTabSchema as Pb, QuestionGetResult as Pc, DevicePairResolvedEventSchema as Pd, CronAddResult as Pf, UsersSelfResult as Pg, TalkEventSchema as Ph, SessionSharingAction as Pi, NodeInvokeProgressParamsSchema as Pl, CommandsListResultSchema as Pm, PluginsSetEnabledResultSchema as Pn, SessionsDiffResult as Po, SystemAgentSetupAuthStartResultSchema as Pp, TasksGetParamsSchema as Pr, SessionsResolveParams as Ps, WORKER_PROTOCOL_MAX_PAYLOAD_BYTES as Pt, ChatMessageGetResult as Pu, SessionCatalogLocator as Pv, SkillsBinsResult as Pw, UiPanelCommandSchema as Px, SessionSuggestionsResolveParamsSchema as Py, WorkerHeartbeatRequestFrameSchema as Q, AgentsFilesSetParamsSchema as QC, ApprovalSnapshotSchema as QS, ToolCatalogGroup as QT, ConversationSendParamsSchema as Q_, SessionsCompactionBranchParamsSchema as Qa, BoardWidgetHeightModeSchema as Qb, QuestionResolveParams as Qc, ExecApprovalsNodeGetParamsSchema as Qd, CronDeliverySchema as Qf, AuditActivityEventV1 as Qg, TalkSessionJoinResultSchema as Qh, SessionsViewerPresenceSetResult as Qi, NodePendingDrainResult as Ql, ChannelsLogoutParamsSchema as Qm, TerminalAttachResultSchema as Qn, SessionsForkParams as Qo, SystemChangesListResultSchema as Qp, TaskSuggestionsCreateParamsSchema as Qr, SessionDiscussionInfoParams as Qs, WizardStepSchema as Qt, GatewaySuspendBlockerSchema as Qu, SessionsCatalogHostEventSchema as Qv, SkillsProposalApplyResult as Qw, WorkerInferenceCancelRequestFrameSchema as Qx, BOARD_WIDGET_TOOL_MAX_LENGTH as Qy, WORKER_TRANSCRIPT_MAX_CONTENT_PARTS as R, AgentsDeleteParamsSchema as RC, ApprovalGetResultSchema as RS, SkillsSkillCardResult as RT, AgentIdentityParams as R_, SessionsAbortParamsSchema as Ra, BoardUpdateParams as Rb, QuestionListResult as Rc, DevicePairSetupCodeResultSchema as Rd, CronListParams as Rf, UsersSetAvatarResult as Rg, TalkSessionAppendAudioParamsSchema as Rh, SessionSharingIdentity as Ri, NodeListParams as Rl, ChannelsPairingApproveParams as Rm, PluginsUiDescriptorsResultSchema as Rn, SessionsFilesGetResult as Ro, SystemAgentSetupDetectResultSchema as Rp, TasksListParamsSchema as Rr, SessionsRewindResult as Rs, WizardCancelParamsSchema as Rt, ChatRunStartupPhase as Ru, SessionCatalogSchema as Rv, SkillsCuratorActionResult as Rw, SkillsProposalHistoryScanParamsSchema as Rx, SessionTypingEventSchema as Ry, WorktreesRemoveParamsSchema as S, TerminalApprovalSnapshot as SC, validateWorkerInferenceStartParams as SS, SkillsProposalUpdateParams as ST, ArtifactsListResult as S_, SessionFilePreviewKindSchema as Sa, BoardOpSchema as Sb, isCloudWorkerPlacementState as Sc, FsListDirResultSchema as Sd, EnvironmentsListResultSchema as Sf, UserProfileAvatarMimeSchema as Sg, TalkClientSteerParamsSchema as Sh, SessionMember as Si, WebPushVapidPublicKeyParamsSchema as Sl, COMMAND_ARG_DESCRIPTION_MAX_LENGTH as Sm, PluginsSearchParamsSchema as Sn, SessionsCompanionStateParamsSchema as So, SystemAgentChatParamsSchema as Sp, TerminalTextResultSchema as Sr, SessionsObserverVisibilityResult as Ss, WorkerTranscriptCommitParams as St, ChatAbortedEventSchema as Su, InputProvenanceSchema as Sv, ModelsProbeParams as Sw, buildMissingScopeErrorDetails as Sx, SessionSuggestionSchema as Sy, WorktreesRestoreParams as T, isWellFormedApprovalId as TC, AllowedApprovalSnapshot as TS, SkillsProposalsListParamsSchema as TT, AgentsWorkspaceEntrySchema as T_, SessionGroup as Ta, BoardPromptAuthorizeParamsSchema as Tb, SecretsResolveParams as Tc, DevicePairListParams as Td, EnvironmentsStatusResult as Tf, UsersLinkEmailParamsSchema as Tg, TalkClientToolCallResult as Th, SessionMemberMutationResult as Ti, NodeEventParams as Tl, COMMAND_CHOICE_VALUE_MAX_LENGTH as Tm, PluginsSessionActionFailureResultSchema as Tn, SessionsCreateParams as To, SystemAgentChatResult as Tp, TerminalUploadResult as Tr, SessionsPatchParamsSchema as Ts, WorkerTranscriptCommitRequestFrameSchema as Tt, ChatDeltaEventSchema as Tu, SecretRefSchema as Tv, ModelsProbeResultSchema as Tw, UiClosePaneCommandSchema as Tx, SessionSuggestionsAddParams as Ty, WorkerAdmissionResponseFrame as U, AgentsFilesGetParams as UC, ApprovalKind as US, SkillsUpdateParamsSchema as UT, AgentWaitParams as U_, SessionsBranchesSwitchParams as Ua, BoardWidgetAppViewParamsSchema as Ub, QuestionRecordSchema as Uc, ExecApprovalGetParams as Ud, CronScratchGetParams as Uf, UsersSetDisplayNameResultSchema as Ug, TalkSessionCloseParams as Uh, SessionVisibilitySetResultSchema as Ui, NodePairListParamsSchema as Ul, ChannelsPairingDismissParamsSchema as Um, PluginApprovalRequestParams as Un, SessionsFilesListResultSchema as Uo, SystemChangeEntry as Up, TaskSuggestionEventSchema as Ur, SessionsSearchParamsSchema as Us, WizardStartParams as Ut, ChatToolTitlesParams as Uu, SessionsCatalogArchiveParams as Uv, SkillsCuratorStatusResultSchema as Uw, validateSkillsProposalHistoryScanParams as Ux, SessionCreatedActor as Uy, WorkerAdmissionHandshake as V, AgentsFileEntry as VC, ApprovalHistoryResult as VS, SkillsStatusParamsSchema as VT, AgentIdentityResultSchema as V_, SessionsBranchesListResult as Va, BoardWidget as Vb, QuestionOptionSchema as Vc, DeviceTokenRotateParams as Vd, CronRunParams as Vf, UsersSetDisplayNameParamsSchema as Vg, TalkSessionCancelTurnParams as Vh, SessionVisibilitySetParamsSchema as Vi, NodePairApproveParamsSchema as Vl, ChannelsPairingApproveResultSchema as Vm, PluginsUninstallResult as Vn, SessionsFilesListParamsSchema as Vo, SystemAgentSetupVerifyResult as Vp, TaskSuggestion as Vr, SessionsSearchHitSchema as Vs, WizardNextResult as Vt, ChatStatusEvent as Vu, SessionCatalogTranscriptItem as Vv, SkillsCuratorStatusParamsSchema as Vw, SkillsProposalHistoryStatusParams as Vx, SessionTypingResult as Vy, WorkerAdmissionResponseFrameSchema as W, AgentsFilesGetParamsSchema as WC, ApprovalKindSchema as WS, SkillsUploadBeginParams as WT, AgentWaitParamsSchema as W_, SessionsBranchesSwitchParamsSchema as Wa, BoardWidgetAppViewResult as Wb, QuestionRequestParams as Wc, ExecApprovalGetParamsSchema as Wd, CronScratchGetResult as Wf, AuditEvent as Wg, TalkSessionCloseParamsSchema as Wh, SESSION_VISIBILITY_VALUES as Wi, NodePairRejectParams as Wl, ChannelsPairingDismissResult as Wm, PluginApprovalRequestParamsSchema as Wn, SessionsFilesRevealParams as Wo, SystemChangeEntrySchema as Wp, TaskSuggestionResolution as Wr, SessionsSearchResult as Ws, WizardStartParamsSchema as Wt, ChatToolTitlesParamsSchema as Wu, SessionsCatalogArchiveParamsSchema as Wv, SkillsDetailParams as Ww, validateSkillsProposalHistoryStatusParams as Wx, SessionCreatedActorSchema as Wy, WorkerHeartbeatParamsSchema as X, AgentsFilesListResultSchema as XC, ApprovalResolveResultSchema as XS, ToolCatalogEntry as XT, ConversationListResultSchema as X_, SessionsCompactParamsSchema as Xa, BoardWidgetGrantParams as Xb, QuestionRequestedEvent as Xc, ExecApprovalsGetParamsSchema as Xd, CronAddResultSchema as Xf, AuditActivityAgentRunV1 as Xg, TalkSessionJoinParamsSchema as Xh, SessionsViewerPresenceSetParams as Xi, NodePendingDrainParams as Xl, ChannelsPairingRequest as Xm, TerminalAttachParamsSchema as Xn, SessionsFilesSetResult as Xo, SystemChangesListParamsSchema as Xp, TaskSuggestionsAcceptResultSchema as Xr, SessionsCreateParamsSchema as Xs, WizardStatusResultSchema as Xt, LogsTailResultSchema as Xu, SessionsCatalogContinueResultSchema as Xv, SkillsProposalActionParams as Xw, WorkerInferenceCancelParams as Xx, BOARD_CRON_TRIGGER_PREFIX as Xy, WorkerHeartbeatParams as Y, AgentsFilesListResult as YC, ApprovalResolveResult as YS, SkillsUploadCommitParamsSchema as YT, ConversationListResult as Y_, SessionsCompactParams as Ya, BoardWidgetDeclaredSchema as Yb, QuestionRequestResultSchema as Yc, ExecApprovalsGetParams as Yd, CronAddParamsSchema as Yf, AuditListResultSchema as Yg, TalkSessionJoinParams as Yh, SESSION_VIEWER_PRESENCE_MAX_KEYS as Yi, NodePendingAckParamsSchema as Yl, ChannelsPairingListResultSchema as Ym, TerminalAttachParams as Yn, SessionsFilesSetParamsSchema as Yo, SystemChangesListParams as Yp, TaskSuggestionsAcceptResult as Yr, SessionsUsageParamsSchema as Ys, WizardStatusResult as Yt, LogsTailResult as Yu, SessionsCatalogContinueResult as Yv, SkillsInstallParamsSchema as Yw, WORKER_PROTOCOL_MAX_INFERENCE_PAYLOAD_BYTES as Yx, BOARD_CRON_JOB_ID_MAX_LENGTH as Yy, WorkerHeartbeatRequestFrame as Z, AgentsFilesSetParams as ZC, ApprovalSnapshot as ZS, ToolCatalogEntrySchema as ZT, ConversationSendParams as Z_, SessionsCompactionBranchParams as Za, BoardWidgetGrantParamsSchema as Zb, QuestionRequestedEventSchema as Zc, ExecApprovalsNodeGetParams as Zd, CronDeclarativeAddResultSchema as Zf, AuditActivityAgentRunV1Schema as Zg, TalkSessionJoinResult as Zh, SessionsViewerPresenceSetParamsSchema as Zi, NodePendingDrainParamsSchema as Zl, ChannelsLogoutParams as Zm, TerminalAttachResult as Zn, SessionsFilesSetResultSchema as Zo, SystemChangesListResult as Zp, TaskSuggestionsCreateParams as Zr, SessionDiscussionInfo as Zs, WizardStep as Zt, GatewaySuspendBlocker as Zu, SessionsCatalogHostEvent as Zv, SkillsProposalActionParamsSchema as Zw, WorkerInferenceCancelRequestFrame as Zx, BOARD_DATA_BINDING_ID_MAX_LENGTH as Zy, WorktreesListParams as _, SessionApprovalEventSchema as _C, ToolsInvokeParams as _E, WorkerInferenceTerminalFrame as _S, SkillsProposalRequestRevisionParamsSchema as _T, ArtifactsGetParamsSchema as __, SessionFileEntry as _a, BoardGetParamsSchema as _b, SessionsReclaimParams as _c, FsDirEntry as _d, EnvironmentsDestroyResult as _f, WebLoginStartParams as _g, TalkClientCreateResult as _h, PresenceEntrySchema as _i, WebPushTestParams as _l, UpdateStatusParams as _m, PluginsRefreshParams as _n, SessionsCompanionResetParams as _o, SystemAgentChatHistoryResult as _p, TerminalSessionInfo as _r, SessionsMessagesSubscribeParamsSchema as _s, WorkerProtocolCloseReason as _t, NodeSkillDescriptorSchema as _u, WakeParamsSchema as _v, ModelsAuthStatusParamsSchema as _w, GatewayErrorDetailsSchema as _x, SessionSuggestionActionSchema as _y, WorktreeRepositoryStatus as a, ExecApprovalPresentation as aC, ToolsCatalogResultSchema as aE, WorkerInferenceEventFrame as aS, SkillsProposalEvaluateResultSchema as aT, AuditActivityListResultSchema as a_, SessionCompanionExchange as aa, BoardChatDockSchema as ab, SessionDiscussionOpenResult as ac, GatewaySuspendResumeParams as ad, ExecApprovalsSnapshot as af, TalkSessionTurnParams as ag, ChannelsStopParams as ah, TaskSuggestionsListParams as ai, QuestionStatus as al, ConfigSchemaLookupParams as am, PluginControlUiDescriptorSchema as an, SessionsCompactionListParams as ao, CronRunLogEntrySchema as ap, TerminalExitEvent as ar, SessionsGroupsListParamsSchema as as, WorkerLiveEventErrorDetailsSchema as at, NodePluginToolDescriptorSchema as au, ConversationTurnParams as av, AgentsUpdateParams as aw, BoardWidgetNameSchema as ax, SessionsCatalogReadResult as ay, WorktreesListResultSchema as b, SystemAgentApprovalPresentation as bC, ToolsInvokeResultSchema as bE, validateWorkerInferenceCancelParams as bS, SkillsProposalReviseParams as bT, ArtifactsListParams as b_, SessionFileKindSchema as ba, BoardMcpAppDescriptorSchema as bb, SessionsReclaimResultSchema as bc, FsListDirParamsSchema as bd, EnvironmentsListParamsSchema as bf, WebLoginWaitParamsSchema as bg, TalkClientMutationResultSchema as bh, StateVersion as bi, WebPushUnsubscribeParamsSchema as bl, COMMAND_ARGS_MAX_ITEMS as bm, PluginsRefreshResultSchema as bn, SessionsCompanionResetResultSchema as bo, SystemAgentChatHistoryTurnSchema as bp, TerminalTextParamsSchema as br, SessionsObserverVisibilityParams as bs, WorkerTranscriptCommitErrorShape as bt, ChatAbortParams as bu, GatewayClientIdSchema as bv, ModelsListResult as bw, UnknownAgentIdErrorDetailsSchema as bx, SessionSuggestionResolution as by, WorktreesBranchesParamsSchema as c, ExpiredApprovalSnapshotSchema as cC, ToolsEffectiveGroup as cE, WorkerInferenceModelRefSchema as cS, SkillsProposalEventsListResult as cT, AuditActivityToolActionV1 as c_, SessionDiffFileSchema as ca, BoardCommandEventSchema as cb, SessionDiscussionStateSchema as cc, GatewaySuspendResumeResultSchema as cd, EnvironmentStatusSchema as cf, TalkSessionTurnResultSchema as cg, TalkAgentControlResultSchema as ch, TaskSuggestionsListResultSchema as ci, QuestionWaitAnswerParamsSchema as cl, ConfigSchemaLookupResultSchema as cm, PluginSearchResultEntrySchema as cn, SessionsCompactionListResultSchema as co, CronScratchGetParamsSchema as cp, TerminalInputParamsSchema as cr, SessionsGroupsMutationResult as cs, WorkerLiveEventParams as ct, NodePresenceActivityPayload as cu, ConversationTurnReplySchema as cv, AgentsUpdateResultSchema as cw, BoardWidgetPluginPropsSchema as cx, MemoryMigrationItem as cy, WorktreesCreateParams as d, PendingSessionApprovalEventSchema as dC, ToolsEffectiveNoticeSchema as dE, WorkerInferenceStartParams as dS, SkillsProposalInspectParamsSchema as dT, ArtifactSummarySchema as d_, SessionFileBrowserEntry as da, BoardDataReadParams as db, SessionPlacementSchema as dc, GatewaySuspendStatusReadyResultSchema as dd, EnvironmentsCreateParams as df, TalkSpeakResult as dg, TalkCatalogResult as dh, validateSystemEventParams as di, PushTestParams as dl, ConfigSchemaResponse as dm, PluginsInstallResult as dn, SessionsCompactionRestoreResult as do, CronScratchSetParamsSchema as dp, TerminalOpenParams as dr, SessionsGroupsPutParamsSchema as ds, WorkerLiveEventRequestFrameSchema as dt, NodePresenceAlivePayloadSchema as du, MessageActionParams as dv, GatewayAgentRuntime as dw, BoardWidgetPutContentSchema as dx, MigrationsMemoryApplyParamsSchema as dy, ApprovalTerminalReasonSchema as eC, ToolCatalogProfile as eE, WorkerInferenceCancelResponseFrameSchema as eS, SkillsProposalCreateParams as eT, AuditActivityInboundMessageV1 as e_, SESSION_OBSERVER_HEALTH_VALUES as ea, BoardActionParamsSchema as eb, SessionDiscussionInfoResult as ec, GatewaySuspendPrepareParams as ed, ExecApprovalsNodeSetParamsSchema as ef, TalkSessionOkResultSchema as eg, ChannelsStartParamsSchema as eh, TaskSuggestionsCreateResultSchema as ei, QuestionResolveResult as el, ConfigApplyParamsSchema as em, PluginCatalogEntry as en, SessionsCompactionBranchResultSchema as eo, CronJobSchema as ep, TerminalCloseParamsSchema as er, SessionsForkResult as es, WorkerHeartbeatResponseFrameSchema as et, NodePendingEnqueueParams as eu, ConversationSendResultSchema as ev, AgentsFilesSetResultSchema as ew, BoardWidgetMaterializedContent as ex, SessionsCatalogListParamsSchema as ey, WorktreesCreateParamsSchema as f, PluginApprovalPresentation as fC, ToolsEffectiveParams as fE, WorkerInferenceStartRequestFrame as fS, SkillsProposalInspectResult as fT, ArtifactsDownloadParams as f_, SessionFileBrowserEntrySchema as fa, BoardDataReadParamsSchema as fb, SessionPlacementStateSchema as fc, GatewaySuspendStatusResult as fd, EnvironmentsCreateParamsSchema as ff, TalkSpeakResultSchema as fg, TalkCatalogResultSchema as fh, SystemInfoParams as fi, PushTestParamsSchema as fl, ConfigSchemaResponseSchema as fm, PluginsInstallResultSchema as fn, SessionsCompactionRestoreResultSchema as fo, CronScratchSetResultSchema as fp, TerminalOpenParamsSchema as fr, SessionsGroupsRenameParams as fs, WorkerLiveEventResponseFrame as ft, NodePresenceAliveReason as fu, MessageActionParamsSchema as fv, ModelChoice as fw, BoardWidgetPutParams as fx, MigrationsMemoryApplyResult as fy, WorktreesGcResultSchema as g, SessionApprovalEvent as gC, ToolsInvokeErrorSchema as gE, WorkerInferenceStartResult as gS, SkillsProposalRequestRevisionParams as gT, ArtifactsGetParams as g_, SessionFileContentEncodingSchema as ga, BoardGetParams as gb, SessionsDispatchResultSchema as gc, GatewaySuspendTaskBlockerSchema as gd, EnvironmentsDestroyParamsSchema as gf, TtsSpeakResultSchema as gg, TalkClientCreateParamsSchema as gh, PresenceEntry as gi, WebPushSubscribeParamsSchema as gl, UpdateRunParamsSchema as gm, PluginsListResultSchema as gn, SessionsCompanionAskResultSchema as go, SystemAgentChatHistoryParamsSchema as gp, TerminalResizeParamsSchema as gr, SessionsMessagesSubscribeParams as gs, WorkerLiveEventSchema as gt, NodeSkillDescriptor as gu, WakeParams as gv, ModelsAuthStatusParams as gw, BoardWidgetSchema as gx, SessionSuggestionAction as gy, WorktreesGcResult as h, PluginApprovalSeveritySchema as hC, ToolsEffectiveResultSchema as hE, WorkerInferenceStartResponseFrameSchema as hS, SkillsProposalRecordResultSchema as hT, ArtifactsDownloadResultSchema as h_, SessionFileContentEncoding as ha, BoardFocusTabCommandSchema as hb, SessionsDispatchResult as hc, GatewaySuspendTaskBlocker as hd, EnvironmentsDestroyParams as hf, TtsSpeakResult as hg, TalkClientCreateParams as hh, SystemInfoResultSchema as hi, WebPushSubscribeParams as hl, UpdateRunParams as hm, PluginsListResult as hn, SessionsCompanionAskResult as ho, SystemAgentChatHistoryParams as hp, TerminalResizeParams as hr, SessionsListParamsSchema as hs, WorkerLiveEventResultSchema as ht, NodeRenameParamsSchema as hu, SendParamsSchema as hv, ModelsAuthLogoutParamsSchema as hw, BoardWidgetResizeOpSchema as hx, SessionSuggestion as hy, WorktreeRecordSchema as i, DeniedApprovalSnapshotSchema as iC, ToolsCatalogResult as iE, WorkerInferenceErrorShape as iS, SkillsProposalEvaluateResult as iT, AuditActivityListResult as i_, SessionCompactionCheckpointSchema as ia, BoardChangedEventSchema as ib, SessionDiscussionOpenParamsSchema as ic, GatewaySuspendPrepareResultSchema as id, ExecApprovalsSetParamsSchema as if, TalkSessionSubmitToolResultParamsSchema as ig, ChannelsStatusResultSchema as ih, TaskSuggestionsDismissResultSchema as ii, QuestionSchema as il, ConfigPatchParamsSchema as im, PluginControlUiDescriptor as in, SessionsCompactionGetResultSchema as io, CronRemoveParamsSchema as ip, TerminalEventSchema as ir, SessionsGroupsListParams as is, WorkerLiveEventErrorDetails as it, NodePluginToolDescriptor as iu, ConversationTurnCancelResultSchema as iv, AgentsListResultSchema as iw, BoardWidgetMoveOpSchema as ix, SessionsCatalogReadParamsSchema as iy, WORKER_PROTOCOL_MAX_FEATURES as j, AgentSummary as jC, ApprovalDecision as jS, SkillsSearchResultSchema as jT, AgentsWorkspaceGetResultSchema as j_, SessionObserverPlanProgress as ja, BoardTabCreateOpSchema as jb, QuestionAnswersSchema as jc, DevicePairRenameParams as jd, WorkerTunnelStatus as jf, UsersListResultSchema as jg, TalkConfigResult as jh, SessionMembersListParamsSchema as ji, NodeInvokeParams as jl, CommandsListParams as jm, PluginsSetEnabledParams as jn, SessionsDescribeParamsSchema as jo, SystemAgentSetupAuthStartParams as jp, TasksCancelResult as jr, SessionsPreviewParamsSchema as js, WorkerTranscriptMessageSchema as jt, ChatInjectParams as ju, SessionCatalogDescriptorSchema as jv, SkillProposalLifecycleEventSchema as jw, UiCommandSchema as jx, SessionSuggestionsListResult as jy, WORKER_LIVE_EVENT_PROTOCOL_FEATURE as k, AgentKind as kC, ApprovalAllowedReasonSchema as kS, SkillsSearchParamsSchema as kT, AgentsWorkspaceGetParamsSchema as k_, SessionObserverHealth as ka, BoardSnapshotSchema as kb, Question as kc, DevicePairRemoveParams as kd, WorkerEnvironmentState as kf, UsersListParamsSchema as kg, TalkConfigParams as kh, SessionMemberSchema as ki, NodeInvokeInputEvent as kl, CommandEntry as km, PluginsSessionActionResultSchema as kn, SessionsDeleteParamsSchema as ko, SystemAgentSetupActivateResult as kp, TasksCancelParams as kr, SessionsPluginPatchResultSchema as ks, WorkerTranscriptCommitResultSchema as kt, ChatFinalEventSchema as ku, SessionCatalogCapabilitiesSchema as kv, SkillProposalEvaluationSchema as kw, UiCommandResult as kx, SessionSuggestionsListParams as ky, WorktreesBranchesResult as l, PendingApprovalSnapshot as lC, ToolsEffectiveGroupSchema as lE, WorkerInferenceOptions as lS, SkillsProposalEventsListResultSchema as lT, AuditActivityToolActionV1Schema as l_, SessionDiffFileStatus as la, BoardCommandSchema as lb, SessionPlacement as lc, GatewaySuspendStatusParams as ld, EnvironmentSummary as lf, TalkSpeakParams as lg, TalkCatalogParams as lh, SYSTEM_PRESENCE_CLEAR_LAST_INPUT_TAG as li, QuestionWaitAnswerResult as ll, ConfigSchemaParams as lm, PluginsInstallParams as ln, SessionsCompactionRestoreParams as lo, CronScratchGetResultSchema as lp, TerminalListResult as lr, SessionsGroupsMutationResultSchema as ls, WorkerLiveEventParamsSchema as lt, NodePresenceActivityPayloadSchema as lu, ConversationTurnResult as lv, AuthProbeStatus as lw, BoardWidgetPresentationSchema as lx, MemoryMigrationProviderPlan as ly, WorktreesGcParamsSchema as m, PluginApprovalSeverity as mC, ToolsEffectiveResult as mE, WorkerInferenceStartResponseFrame as mS, SkillsProposalRecordResult as mT, ArtifactsDownloadResult as m_, SessionFileBrowserResultSchema as ma, BoardEventParamsSchema as mb, SessionsDispatchParamsSchema as mc, GatewaySuspendStatusRunningResultSchema as md, EnvironmentsCreateResultSchema as mf, TtsSpeakParamsSchema as mg, TalkClientCloseParamsSchema as mh, SystemInfoResult as mi, PushTestResultSchema as ml, ConfigSetParamsSchema as mm, PluginsListParamsSchema as mn, SessionsCompanionAskParamsSchema as mo, CronUpdateParamsSchema as mp, TerminalOpenResultSchema as mr, SessionsListParams as ms, WorkerLiveEventResult as mt, NodeRenameParams as mu, PollParamsSchema as mv, ModelsAuthLogoutParams as mw, BoardWidgetRemoveOpSchema as mx, MigrationsMemoryPlanResult as my, WorktreeBranchSchema as n, CancelledApprovalSnapshotSchema as nC, ToolsCatalogParams as nE, WorkerInferenceContext as nS, SkillsProposalEvaluateParams as nT, AuditActivityListParams as n_, SessionBranchSchema as na, BoardCanvasDocumentSourceSchema as nb, SessionDiscussionInfoSchema as nc, GatewaySuspendPrepareReadyResultSchema as nd, ExecApprovalsNodeSnapshotSchema as nf, TalkSessionSteerParamsSchema as ng, ChannelsStatusParamsSchema as nh, TaskSuggestionsDismissParamsSchema as ni, QuestionResolvedEvent as nl, ConfigGetParamsSchema as nm, PluginCatalogInstallActionSchema as nn, SessionsCompactionGetParamsSchema as no, CronListParamsSchema as np, TerminalDataEventSchema as nr, SessionsGroupsDeleteParams as ns, WorkerHelloOk as nt, NodePendingEnqueueResult as nu, ConversationTurnCancelParamsSchema as nv, AgentsListParamsSchema as nw, BoardWidgetMcpAppContentSchema as nx, SessionsCatalogListResultSchema as ny, WorktreeRepositoryStatusSchema as o, ExecApprovalPresentationSchema as oC, ToolsEffectiveEntry as oE, WorkerInferenceEventParams as oS, SkillsProposalEventsListParams as oT, AuditActivityOutboundMessageV1 as o_, SessionCompanionExchangeSchema as oa, BoardCommand as ob, SessionDiscussionOpenResultSchema as oc, GatewaySuspendResumeParamsSchema as od, ExecApprovalsSnapshotSchema as of, TalkSessionTurnParamsSchema as og, ChannelsStopParamsSchema as oh, TaskSuggestionsListParamsSchema as oi, QuestionStatusSchema as ol, ConfigSchemaLookupParamsSchema as om, PluginJsonValueSchema as on, SessionsCompactionListParamsSchema as oo, CronRunParamsSchema as op, TerminalExitEventSchema as or, SessionsGroupsListResult as os, WorkerLiveEventErrorShape as ot, NodePluginToolsUpdateParams as ou, ConversationTurnParamsSchema as ov, AgentsUpdateParamsSchema as ow, BoardWidgetPluginContentSchema as ox, SessionsCatalogReadResultSchema as oy, WorktreesGcParams as p, PluginApprovalPresentationSchema as pC, ToolsEffectiveParamsSchema as pE, WorkerInferenceStartRequestFrameSchema as pS, SkillsProposalInspectResultSchema as pT, ArtifactsDownloadParamsSchema as p_, SessionFileBrowserResult as pa, BoardEventParams as pb, SessionsDispatchParams as pc, GatewaySuspendStatusResultSchema as pd, EnvironmentsCreateResult as pf, TtsSpeakParams as pg, TalkClientCloseParams as ph, SystemInfoParamsSchema as pi, PushTestResult as pl, ConfigSetParams as pm, PluginsListParams as pn, SessionsCompanionAskParams as po, CronStatusParamsSchema as pp, TerminalOpenResult as pr, SessionsGroupsRenameParamsSchema as ps, WorkerLiveEventResponseFrameSchema as pt, NodePresenceAliveReasonSchema as pu, PollParams as pv, ModelChoiceSchema as pw, BoardWidgetPutParamsSchema as px, MigrationsMemoryPlanParamsSchema as py, WorkerConnectRequestFrameSchema as q, AgentsFilesListParams as qC, ApprovalResolveParams as qS, SkillsUploadChunkParamsSchema as qT, ConversationListParams as q_, SessionsCleanupParams as qa, BoardWidgetContentSchema as qb, QuestionRequestQuestionSchema as qc, ExecApprovalResolveParams as qd, CronStatusParams as qf, AuditListParamsSchema as qg, TalkSessionCreateResult as qh, SessionVisibility as qi, NodePairRemoveParamsSchema as ql, ChannelsPairingListParamsSchema as qm, TerminalAckResult as qn, SessionsFilesRevealResultSchema as qo, SystemChangeSource as qp, TaskSuggestionsAcceptParams as qr, SessionsSendParamsSchema as qs, WizardStatusParams as qt, LogsTailParams as qu, SessionsCatalogContinueParams as qv, SkillsDetailResultSchema as qw, WORKER_INFERENCE_METHODS as qx, SessionToolOverrides as qy, WorktreeRecord as r, DeniedApprovalSnapshot as rC, ToolsCatalogParamsSchema as rE, WorkerInferenceErrorReason as rS, SkillsProposalEvaluateParamsSchema as rT, AuditActivityListParamsSchema as r_, SessionCompactionCheckpoint as ra, BoardChangedEvent as rb, SessionDiscussionOpenParams as rc, GatewaySuspendPrepareResult as rd, ExecApprovalsSetParams as rf, TalkSessionSubmitToolResultParams as rg, ChannelsStatusResult as rh, TaskSuggestionsDismissResult as ri, QuestionResolvedEventSchema as rl, ConfigPatchParams as rm, PluginCatalogOfficialInstallSchema as rn, SessionsCompactionGetResult as ro, CronPacingSchema as rp, TerminalEvent as rr, SessionsGroupsDeleteParamsSchema as rs, WorkerLiveEvent as rt, NodePendingEnqueueResultSchema as ru, ConversationTurnCancelResult as rv, AgentsListResult as rw, BoardWidgetMcpAppPutContentSchema as rx, SessionsCatalogReadParams as ry, WorktreesBranchesParams as s, ExpiredApprovalSnapshot as sC, ToolsEffectiveEntrySchema as sE, WorkerInferenceModelRef as sS, SkillsProposalEventsListParamsSchema as sT, AuditActivityOutboundMessageV1Schema as s_, SessionDiffFile as sa, BoardCommandEvent as sb, SessionDiscussionState as sc, GatewaySuspendResumeResult as sd, EnvironmentStatus as sf, TalkSessionTurnResult as sg, TalkAgentControlResult as sh, TaskSuggestionsListResult as si, QuestionWaitAnswerParams as sl, ConfigSchemaLookupResult as sm, PluginSearchPackageSchema as sn, SessionsCompactionListResult as so, CronRunsParamsSchema as sp, TerminalInputParams as sr, SessionsGroupsListResultSchema as ss, WorkerLiveEventErrorShapeSchema as st, NodePluginToolsUpdateParamsSchema as su, ConversationTurnReply as sv, AgentsUpdateResult as sw, BoardWidgetPluginKindSchema as sx, MAX_MEMORY_MIGRATION_ITEMS as sy, WorktreeBranch as t, CancelledApprovalSnapshot as tC, ToolCatalogProfileSchema as tE, WorkerInferenceCancelResult as tS, SkillsProposalCreateParamsSchema as tT, AuditActivityInboundMessageV1Schema as t_, SessionBranch as ta, BoardCanvasDocumentSource as tb, SessionDiscussionInfoResultSchema as tc, GatewaySuspendPrepareParamsSchema as td, ExecApprovalsNodeSnapshot as tf, TalkSessionSteerParams as tg, ChannelsStatusParams as th, TaskSuggestionsDismissParams as ti, QuestionResolveResultSchema as tl, ConfigGetParams as tm, PluginCatalogEntrySchema as tn, SessionsCompactionGetParams as to, CronJobStateSchema as tp, TerminalDataEvent as tr, SessionsForkResultSchema as ts, WorkerHeartbeatResult as tt, NodePendingEnqueueParamsSchema as tu, ConversationTurnCancelParams as tv, AgentsListParams as tw, BoardWidgetMaterializedPutParams as tx, SessionsCatalogListResult as ty, WorktreesBranchesResultSchema as u, PendingApprovalSnapshotSchema as uC, ToolsEffectiveNotice as uE, WorkerInferenceOptionsSchema as uS, SkillsProposalInspectParams as uT, ArtifactSummary as u_, SessionDiffFileStatusSchema as ua, BoardCronActionParamsSchema as ub, SessionPlacementProtocolSchemas as uc, GatewaySuspendStatusParamsSchema as ud, EnvironmentSummarySchema as uf, TalkSpeakParamsSchema as ug, TalkCatalogParamsSchema as uh, SYSTEM_PRESENCE_LEGACY_CLEAR_LAST_INPUT_SECONDS as ui, QuestionWaitAnswerResultSchema as ul, ConfigSchemaParamsSchema as um, PluginsInstallParamsSchema as un, SessionsCompactionRestoreParamsSchema as uo, CronScratchSchema as up, TerminalListResultSchema as ur, SessionsGroupsPutParams as us, WorkerLiveEventRequestFrame as ut, NodePresenceAlivePayload as uu, ConversationTurnResultSchema as uv, AuthProbeStatusSchema as uw, BoardWidgetPutContent as ux, MigrationProtocolSchemas as uy, WorktreesListParamsSchema as v, SessionApprovalReplay as vC, ToolsInvokeParamsSchema as vE, WorkerInferenceTerminalOutcome as vS, SkillsProposalRequestRevisionResult as vT, ArtifactsGetResult as v_, SessionFileEntrySchema as va, BoardLegacyEventParamsSchema as vb, SessionsReclaimParamsSchema as vc, FsDirEntrySchema as vd, EnvironmentsDestroyResultSchema as vf, WebLoginStartParamsSchema as vg, TalkClientCreateResultSchema as vh, Snapshot as vi, WebPushTestParamsSchema as vl, UpdateStatusParamsSchema as vm, PluginsRefreshParamsSchema as vn, SessionsCompanionResetParamsSchema as vo, SystemAgentChatHistoryResultSchema as vp, TerminalSessionInfoSchema as vr, SessionsMessagesUnsubscribeParams as vs, WorkerTranscriptCommitErrorReason as vt, NodeSkillsUpdateParams as vu, CHAT_SEND_SESSION_KEY_MAX_LENGTH as vv, ModelsListParams as vw, McpAppViewExpiredErrorDetailsSchema as vx, SessionSuggestionEvent as vy, WorktreesRemoveResultSchema as w, TerminalSessionApprovalEventSchema as wC, validateWorkerInferenceTerminalOutcome as wS, SkillsProposalsListParams as wT, AgentsWorkspaceEntry as w_, SessionFileRelevanceSchema as wa, BoardPromptAuthorizeParams as wb, SecretsResolveAssignmentSchema as wc, DevicePairApproveParamsSchema as wd, EnvironmentsStatusParamsSchema as wf, UsersLinkEmailParams as wg, TalkClientToolCallParamsSchema as wh, SessionMemberAddParamsSchema as wi, NodeDescribeParamsSchema as wl, COMMAND_CHOICE_LABEL_MAX_LENGTH as wm, PluginsSearchResultSchema as wn, SessionsCompanionStateResultSchema as wo, SystemAgentChatQuestionSchema as wp, TerminalUploadParamsSchema as wr, SessionsPatchParams as ws, WorkerTranscriptCommitRequestFrame as wt, ChatAttachmentsSchema as wu, SecretInputSchema as wv, ModelsProbeResult as ww, missingScopeErrorShape as wx, SessionSuggestionStateSchema as wy, WorktreesRemoveParams as x, SystemAgentApprovalPresentationSchema as xC, validateWorkerInferenceEventFrame as xS, SkillsProposalReviseParamsSchema as xT, ArtifactsListParamsSchema as x_, SessionFilePreviewKind as xa, BoardOp as xb, SessionPlacementState as xc, FsListDirResult as xd, EnvironmentsListResult as xf, UserProfile as xg, TalkClientSteerParams as xh, StateVersionSchema as xi, WebPushVapidPublicKeyParams as xl, COMMAND_ARG_CHOICES_MAX_ITEMS as xm, PluginsSearchParams as xn, SessionsCompanionStateParams as xo, SystemAgentChatParams as xp, TerminalTextResult as xr, SessionsObserverVisibilityParamsSchema as xs, WorkerTranscriptCommitErrorShapeSchema as xt, ChatAbortParamsSchema as xu, GatewayClientModeSchema as xv, ModelsListResultSchema as xw, WizardNotFoundErrorDetailsSchema as xx, SessionSuggestionResolutionSchema as xy, WorktreesListResult as y, SessionApprovalReplaySchema as yC, ToolsInvokeResult as yE, WorkerInferenceTerminalParams as yS, SkillsProposalRequestRevisionResultSchema as yT, ArtifactsGetResultSchema as y_, SessionFileKind as ya, BoardMcpAppDescriptor as yb, SessionsReclaimResult as yc, FsListDirParams as yd, EnvironmentsListParams as yf, WebLoginWaitParams as yg, TalkClientMutationResult as yh, SnapshotSchema as yi, WebPushUnsubscribeParams as yl, COMMAND_ALIAS_MAX_ITEMS as ym, PluginsRefreshResult as yn, SessionsCompanionResetResult as yo, SystemAgentChatHistoryTurn as yp, TerminalTextParams as yr, SessionsMessagesUnsubscribeParamsSchema as ys, WorkerTranscriptCommitErrorReasonSchema as yt, NodeSkillsUpdateParamsSchema as yu, ChatSendSessionKeyString as yv, ModelsListParamsSchema as yw, MissingScopeErrorDetailsSchema as yx, SessionSuggestionEventSchema as yy, WORKER_TRANSCRIPT_MAX_JSON_DEPTH as z, AgentsDeleteResult as zC, ApprovalHistoryParams as zS, SkillsSkillCardResultSchema as zT, AgentIdentityParamsSchema as z_, SessionsBranchesListParams as za, BoardUpdateParamsSchema as zb, QuestionListResultSchema as zc, DeviceTokenRevokeParams as zd, CronRemoveParams as zf, UsersSetAvatarResultSchema as zg, TalkSessionCancelOutputParams as zh, SessionSharingIdentitySchema as zi, NodeListParamsSchema as zl, ChannelsPairingApproveParamsSchema as zm, PluginsUninstallParams as zn, SessionsFilesGetResultSchema as zo, SystemAgentSetupVerifyParams as zp, TasksListResult as zr, SessionsRewindResultSchema as zs, WizardNextParams as zt, ChatRunStartupPhaseSchema as zu, SessionCatalogSession as zv, SkillsCuratorActionResultSchema as zw, SkillsProposalHistoryScanResult as zx, SessionTypingParams as zy };
|