@otto-code/protocol 0.8.18 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-labels.d.ts +13 -0
- package/dist/agent-labels.js +26 -1
- package/dist/agent-profiles.d.ts +1 -1
- package/dist/agent-profiles.js +3 -3
- package/dist/architectural-views/rpc-schemas.d.ts +342 -0
- package/dist/architectural-views/rpc-schemas.js +171 -0
- package/dist/artifacts/rpc-schemas.d.ts +360 -2
- package/dist/artifacts/rpc-schemas.js +75 -1
- package/dist/artifacts/types.d.ts +71 -0
- package/dist/artifacts/types.js +27 -0
- package/dist/binary-frames/terminal.d.ts +1 -1
- package/dist/daemon-config.d.ts +66 -0
- package/dist/daemon-config.js +76 -3
- package/dist/generated/validation/ws-outbound.aot.js +70170 -56553
- package/dist/git-hosting.d.ts +56 -0
- package/dist/git-hosting.js +50 -0
- package/dist/kanban.d.ts +4 -0
- package/dist/kanban.js +4 -0
- package/dist/messages.d.ts +12186 -1217
- package/dist/messages.js +642 -33
- package/dist/model-tiers.js +2 -0
- package/dist/project-knowledge.d.ts +172 -0
- package/dist/project-knowledge.js +77 -0
- package/dist/provider-config.js +1 -1
- package/dist/provider-icon-names.js +1 -0
- package/dist/schedule/rpc-schemas.d.ts +212 -0
- package/dist/schedule/rpc-schemas.js +2 -0
- package/dist/schedule/types.d.ts +110 -0
- package/dist/schedule/types.js +27 -0
- package/dist/search/text-match.d.ts +16 -0
- package/dist/search/text-match.js +31 -2
- package/dist/validation/ws-outbound-schema-metadata.d.ts +2481 -104
- package/dist/workflow.d.ts +3060 -0
- package/dist/{orchestration.js → workflow.js} +461 -29
- package/dist/workspace-labels.d.ts +9 -0
- package/dist/workspace-labels.js +19 -0
- package/package.json +1 -1
- package/dist/orchestration.d.ts +0 -1148
- package/dist/project-links.d.ts +0 -102
- package/dist/project-links.js +0 -62
|
@@ -311,6 +311,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
311
311
|
type: import("zod").ZodLiteral<"timeline">;
|
|
312
312
|
provider: import("zod").ZodString;
|
|
313
313
|
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
314
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
314
315
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
315
316
|
type: import("zod").ZodLiteral<"permission_requested">;
|
|
316
317
|
provider: import("zod").ZodString;
|
|
@@ -573,6 +574,254 @@ export declare const WSOutboundMessageSchema: {
|
|
|
573
574
|
}, import("zod/v4/core").$strict>;
|
|
574
575
|
}, import("zod/v4/core").$strip>], "command">;
|
|
575
576
|
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
577
|
+
type: import("zod").ZodLiteral<"plugin.catalog.get.response">;
|
|
578
|
+
payload: import("zod").ZodObject<{
|
|
579
|
+
requestId: import("zod").ZodString;
|
|
580
|
+
plugins: import("zod").ZodArray<import("zod").ZodObject<{
|
|
581
|
+
id: import("zod").ZodString;
|
|
582
|
+
clientBundle: import("zod").ZodString;
|
|
583
|
+
}, import("zod/v4/core").$strip>>;
|
|
584
|
+
}, import("zod/v4/core").$strip>;
|
|
585
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
586
|
+
type: import("zod").ZodLiteral<"plugin.list.response">;
|
|
587
|
+
payload: import("zod").ZodObject<{
|
|
588
|
+
requestId: import("zod").ZodString;
|
|
589
|
+
plugins: import("zod").ZodArray<import("zod").ZodObject<{
|
|
590
|
+
id: import("zod").ZodString;
|
|
591
|
+
path: import("zod").ZodString;
|
|
592
|
+
enabled: import("zod").ZodBoolean;
|
|
593
|
+
status: import("zod").ZodEnum<{
|
|
594
|
+
running: "running";
|
|
595
|
+
failed: "failed";
|
|
596
|
+
disabled: "disabled";
|
|
597
|
+
}>;
|
|
598
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
599
|
+
}, import("zod/v4/core").$strip>>;
|
|
600
|
+
}, import("zod/v4/core").$strip>;
|
|
601
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
602
|
+
type: import("zod").ZodLiteral<"plugin.logs.get.response">;
|
|
603
|
+
payload: import("zod").ZodObject<{
|
|
604
|
+
requestId: import("zod").ZodString;
|
|
605
|
+
pluginId: import("zod").ZodString;
|
|
606
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
607
|
+
sequence: import("zod").ZodNumber;
|
|
608
|
+
timestamp: import("zod").ZodString;
|
|
609
|
+
stream: import("zod").ZodEnum<{
|
|
610
|
+
stdout: "stdout";
|
|
611
|
+
stderr: "stderr";
|
|
612
|
+
}>;
|
|
613
|
+
message: import("zod").ZodString;
|
|
614
|
+
}, import("zod/v4/core").$strip>>;
|
|
615
|
+
}, import("zod/v4/core").$strip>;
|
|
616
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
617
|
+
type: import("zod").ZodLiteral<"plugin.directory.install.response">;
|
|
618
|
+
payload: import("zod").ZodObject<{
|
|
619
|
+
requestId: import("zod").ZodString;
|
|
620
|
+
plugin: import("zod").ZodObject<{
|
|
621
|
+
id: import("zod").ZodString;
|
|
622
|
+
path: import("zod").ZodString;
|
|
623
|
+
enabled: import("zod").ZodBoolean;
|
|
624
|
+
status: import("zod").ZodEnum<{
|
|
625
|
+
running: "running";
|
|
626
|
+
failed: "failed";
|
|
627
|
+
disabled: "disabled";
|
|
628
|
+
}>;
|
|
629
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
630
|
+
}, import("zod/v4/core").$strip>;
|
|
631
|
+
}, import("zod/v4/core").$strip>;
|
|
632
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
633
|
+
type: import("zod").ZodLiteral<"plugin.directory.inspect.response">;
|
|
634
|
+
payload: import("zod").ZodObject<{
|
|
635
|
+
requestId: import("zod").ZodString;
|
|
636
|
+
id: import("zod").ZodString;
|
|
637
|
+
}, import("zod/v4/core").$strip>;
|
|
638
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
639
|
+
type: import("zod").ZodLiteral<"plugin.reload.response">;
|
|
640
|
+
payload: import("zod").ZodObject<{
|
|
641
|
+
requestId: import("zod").ZodString;
|
|
642
|
+
plugin: import("zod").ZodObject<{
|
|
643
|
+
id: import("zod").ZodString;
|
|
644
|
+
path: import("zod").ZodString;
|
|
645
|
+
enabled: import("zod").ZodBoolean;
|
|
646
|
+
status: import("zod").ZodEnum<{
|
|
647
|
+
running: "running";
|
|
648
|
+
failed: "failed";
|
|
649
|
+
disabled: "disabled";
|
|
650
|
+
}>;
|
|
651
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
652
|
+
}, import("zod/v4/core").$strip>;
|
|
653
|
+
}, import("zod/v4/core").$strip>;
|
|
654
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
655
|
+
type: import("zod").ZodLiteral<"plugin.enable.response">;
|
|
656
|
+
payload: import("zod").ZodObject<{
|
|
657
|
+
requestId: import("zod").ZodString;
|
|
658
|
+
plugin: import("zod").ZodObject<{
|
|
659
|
+
id: import("zod").ZodString;
|
|
660
|
+
path: import("zod").ZodString;
|
|
661
|
+
enabled: import("zod").ZodBoolean;
|
|
662
|
+
status: import("zod").ZodEnum<{
|
|
663
|
+
running: "running";
|
|
664
|
+
failed: "failed";
|
|
665
|
+
disabled: "disabled";
|
|
666
|
+
}>;
|
|
667
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
668
|
+
}, import("zod/v4/core").$strip>;
|
|
669
|
+
}, import("zod/v4/core").$strip>;
|
|
670
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
671
|
+
type: import("zod").ZodLiteral<"plugin.disable.response">;
|
|
672
|
+
payload: import("zod").ZodObject<{
|
|
673
|
+
requestId: import("zod").ZodString;
|
|
674
|
+
plugin: import("zod").ZodObject<{
|
|
675
|
+
id: import("zod").ZodString;
|
|
676
|
+
path: import("zod").ZodString;
|
|
677
|
+
enabled: import("zod").ZodBoolean;
|
|
678
|
+
status: import("zod").ZodEnum<{
|
|
679
|
+
running: "running";
|
|
680
|
+
failed: "failed";
|
|
681
|
+
disabled: "disabled";
|
|
682
|
+
}>;
|
|
683
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
684
|
+
}, import("zod/v4/core").$strip>;
|
|
685
|
+
}, import("zod/v4/core").$strip>;
|
|
686
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
687
|
+
type: import("zod").ZodLiteral<"plugin.remove.response">;
|
|
688
|
+
payload: import("zod").ZodObject<{
|
|
689
|
+
requestId: import("zod").ZodString;
|
|
690
|
+
}, import("zod/v4/core").$strict>;
|
|
691
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
692
|
+
type: import("zod").ZodLiteral<"plugin.rpc.invoke.response">;
|
|
693
|
+
payload: import("zod").ZodObject<{
|
|
694
|
+
requestId: import("zod").ZodString;
|
|
695
|
+
output: import("zod").ZodUnknown;
|
|
696
|
+
}, import("zod/v4/core").$strip>;
|
|
697
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
698
|
+
type: import("zod").ZodLiteral<"agent.skills.get_status.response">;
|
|
699
|
+
payload: import("zod").ZodObject<{
|
|
700
|
+
state: import("zod").ZodEnum<{
|
|
701
|
+
"not-installed": "not-installed";
|
|
702
|
+
"up-to-date": "up-to-date";
|
|
703
|
+
drift: "drift";
|
|
704
|
+
}>;
|
|
705
|
+
ops: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
706
|
+
kind: import("zod").ZodLiteral<"add">;
|
|
707
|
+
name: import("zod").ZodString;
|
|
708
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
709
|
+
kind: import("zod").ZodLiteral<"update">;
|
|
710
|
+
name: import("zod").ZodString;
|
|
711
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
712
|
+
kind: import("zod").ZodLiteral<"delete">;
|
|
713
|
+
name: import("zod").ZodString;
|
|
714
|
+
}, import("zod/v4/core").$strict>], "kind">>;
|
|
715
|
+
available: import("zod").ZodArray<import("zod").ZodString>;
|
|
716
|
+
installed: import("zod").ZodArray<import("zod").ZodString>;
|
|
717
|
+
selection: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
718
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
719
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
720
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
721
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
722
|
+
}, import("zod/v4/core").$strict>], "mode">;
|
|
723
|
+
requestId: import("zod").ZodString;
|
|
724
|
+
}, import("zod/v4/core").$strip>;
|
|
725
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
726
|
+
type: import("zod").ZodLiteral<"agent.skills.reconcile.response">;
|
|
727
|
+
payload: import("zod").ZodObject<{
|
|
728
|
+
state: import("zod").ZodEnum<{
|
|
729
|
+
"not-installed": "not-installed";
|
|
730
|
+
"up-to-date": "up-to-date";
|
|
731
|
+
drift: "drift";
|
|
732
|
+
}>;
|
|
733
|
+
ops: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
734
|
+
kind: import("zod").ZodLiteral<"add">;
|
|
735
|
+
name: import("zod").ZodString;
|
|
736
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
737
|
+
kind: import("zod").ZodLiteral<"update">;
|
|
738
|
+
name: import("zod").ZodString;
|
|
739
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
740
|
+
kind: import("zod").ZodLiteral<"delete">;
|
|
741
|
+
name: import("zod").ZodString;
|
|
742
|
+
}, import("zod/v4/core").$strict>], "kind">>;
|
|
743
|
+
available: import("zod").ZodArray<import("zod").ZodString>;
|
|
744
|
+
installed: import("zod").ZodArray<import("zod").ZodString>;
|
|
745
|
+
selection: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
746
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
747
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
748
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
749
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
750
|
+
}, import("zod/v4/core").$strict>], "mode">;
|
|
751
|
+
requestId: import("zod").ZodString;
|
|
752
|
+
}, import("zod/v4/core").$strip>;
|
|
753
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
754
|
+
type: import("zod").ZodLiteral<"agent.skills.uninstall.response">;
|
|
755
|
+
payload: import("zod").ZodObject<{
|
|
756
|
+
state: import("zod").ZodEnum<{
|
|
757
|
+
"not-installed": "not-installed";
|
|
758
|
+
"up-to-date": "up-to-date";
|
|
759
|
+
drift: "drift";
|
|
760
|
+
}>;
|
|
761
|
+
ops: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
762
|
+
kind: import("zod").ZodLiteral<"add">;
|
|
763
|
+
name: import("zod").ZodString;
|
|
764
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
765
|
+
kind: import("zod").ZodLiteral<"update">;
|
|
766
|
+
name: import("zod").ZodString;
|
|
767
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
768
|
+
kind: import("zod").ZodLiteral<"delete">;
|
|
769
|
+
name: import("zod").ZodString;
|
|
770
|
+
}, import("zod/v4/core").$strict>], "kind">>;
|
|
771
|
+
available: import("zod").ZodArray<import("zod").ZodString>;
|
|
772
|
+
installed: import("zod").ZodArray<import("zod").ZodString>;
|
|
773
|
+
selection: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
774
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
775
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
776
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
777
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
778
|
+
}, import("zod/v4/core").$strict>], "mode">;
|
|
779
|
+
requestId: import("zod").ZodString;
|
|
780
|
+
}, import("zod/v4/core").$strip>;
|
|
781
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
782
|
+
type: import("zod").ZodLiteral<"agent.skills.save_selection.response">;
|
|
783
|
+
payload: import("zod").ZodObject<{
|
|
784
|
+
state: import("zod").ZodEnum<{
|
|
785
|
+
"not-installed": "not-installed";
|
|
786
|
+
"up-to-date": "up-to-date";
|
|
787
|
+
drift: "drift";
|
|
788
|
+
}>;
|
|
789
|
+
ops: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
790
|
+
kind: import("zod").ZodLiteral<"add">;
|
|
791
|
+
name: import("zod").ZodString;
|
|
792
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
793
|
+
kind: import("zod").ZodLiteral<"update">;
|
|
794
|
+
name: import("zod").ZodString;
|
|
795
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
796
|
+
kind: import("zod").ZodLiteral<"delete">;
|
|
797
|
+
name: import("zod").ZodString;
|
|
798
|
+
}, import("zod/v4/core").$strict>], "kind">>;
|
|
799
|
+
available: import("zod").ZodArray<import("zod").ZodString>;
|
|
800
|
+
installed: import("zod").ZodArray<import("zod").ZodString>;
|
|
801
|
+
selection: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
802
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
803
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
804
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
805
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
806
|
+
}, import("zod/v4/core").$strict>], "mode">;
|
|
807
|
+
confirmationRequired: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
808
|
+
removals: import("zod").ZodArray<import("zod").ZodString>;
|
|
809
|
+
}, import("zod/v4/core").$strict>>;
|
|
810
|
+
requestId: import("zod").ZodString;
|
|
811
|
+
}, import("zod/v4/core").$strip>;
|
|
812
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
813
|
+
type: import("zod").ZodLiteral<"agent.skills.import_legacy_selection.response">;
|
|
814
|
+
payload: import("zod").ZodObject<{
|
|
815
|
+
requestId: import("zod").ZodString;
|
|
816
|
+
imported: import("zod").ZodBoolean;
|
|
817
|
+
selection: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
818
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
819
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
820
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
821
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
822
|
+
}, import("zod/v4/core").$strict>], "mode">;
|
|
823
|
+
}, import("zod/v4/core").$strip>;
|
|
824
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
576
825
|
type: import("zod").ZodLiteral<"activity_log">;
|
|
577
826
|
payload: import("zod").ZodObject<{
|
|
578
827
|
id: import("zod").ZodString;
|
|
@@ -727,6 +976,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
727
976
|
glowB: import("zod").ZodString;
|
|
728
977
|
}, import("zod/v4/core").$loose>>>;
|
|
729
978
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
979
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
980
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
981
|
+
agentId: import("zod").ZodString;
|
|
982
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
983
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
984
|
+
workflowId: import("zod").ZodString;
|
|
985
|
+
runId: import("zod").ZodString;
|
|
986
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
987
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
988
|
+
scheduleId: import("zod").ZodString;
|
|
989
|
+
runId: import("zod").ZodString;
|
|
990
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
991
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
992
|
+
repository: "repository";
|
|
993
|
+
host: "host";
|
|
994
|
+
}>>;
|
|
995
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
730
996
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
731
997
|
}, import("zod/v4/core").$strip>;
|
|
732
998
|
}, import("zod/v4/core").$strip>;
|
|
@@ -922,9 +1188,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
922
1188
|
worktreeRoot?: string | undefined;
|
|
923
1189
|
}>>]>;
|
|
924
1190
|
}, import("zod/v4/core").$strip>>>;
|
|
1191
|
+
generation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1192
|
+
seq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
925
1193
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
926
1194
|
kind: import("zod").ZodLiteral<"remove">;
|
|
927
1195
|
agentId: import("zod").ZodString;
|
|
1196
|
+
generation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1197
|
+
seq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
928
1198
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
929
1199
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
930
1200
|
type: import("zod").ZodLiteral<"workspace_update">;
|
|
@@ -941,6 +1211,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
941
1211
|
jira: "jira";
|
|
942
1212
|
}>;
|
|
943
1213
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1214
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
944
1215
|
}, import("zod/v4/core").$loose>>>;
|
|
945
1216
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
946
1217
|
projectRootPath: import("zod").ZodString;
|
|
@@ -960,6 +1231,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
960
1231
|
name: import("zod").ZodString;
|
|
961
1232
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
962
1233
|
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1234
|
+
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
963
1235
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
964
1236
|
status: import("zod").ZodEnum<{
|
|
965
1237
|
running: "running";
|
|
@@ -1148,6 +1420,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1148
1420
|
worktreeRoot?: string | undefined;
|
|
1149
1421
|
}>>]>;
|
|
1150
1422
|
}, import("zod/v4/core").$strip>>;
|
|
1423
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1151
1424
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
1152
1425
|
workspaceDirectory: string;
|
|
1153
1426
|
id: string;
|
|
@@ -1186,11 +1459,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1186
1459
|
[x: string]: unknown;
|
|
1187
1460
|
adapter: "github" | "jira";
|
|
1188
1461
|
boardId?: string | null | undefined;
|
|
1462
|
+
boardOwner?: string | null | undefined;
|
|
1189
1463
|
} | null | undefined;
|
|
1190
1464
|
projectCustomIconRevision?: string | null | undefined;
|
|
1191
1465
|
worktreeSlug?: string | undefined;
|
|
1192
1466
|
title?: string | null | undefined;
|
|
1193
1467
|
pinnedAt?: string | null | undefined;
|
|
1468
|
+
labels?: string[] | undefined;
|
|
1194
1469
|
diffStat?: {
|
|
1195
1470
|
additions: number;
|
|
1196
1471
|
deletions: number;
|
|
@@ -1273,6 +1548,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1273
1548
|
};
|
|
1274
1549
|
workspaceName?: string | null | undefined;
|
|
1275
1550
|
} | undefined;
|
|
1551
|
+
syncSeq?: number | undefined;
|
|
1276
1552
|
}, {
|
|
1277
1553
|
id: string;
|
|
1278
1554
|
projectId: string;
|
|
@@ -1310,12 +1586,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1310
1586
|
[x: string]: unknown;
|
|
1311
1587
|
adapter: "github" | "jira";
|
|
1312
1588
|
boardId?: string | null | undefined;
|
|
1589
|
+
boardOwner?: string | null | undefined;
|
|
1313
1590
|
} | null | undefined;
|
|
1314
1591
|
projectCustomIconRevision?: string | null | undefined;
|
|
1315
1592
|
workspaceDirectory?: string | undefined;
|
|
1316
1593
|
worktreeSlug?: string | undefined;
|
|
1317
1594
|
title?: string | null | undefined;
|
|
1318
1595
|
pinnedAt?: string | null | undefined;
|
|
1596
|
+
labels?: string[] | undefined;
|
|
1319
1597
|
diffStat?: {
|
|
1320
1598
|
additions: number;
|
|
1321
1599
|
deletions: number;
|
|
@@ -1398,7 +1676,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1398
1676
|
};
|
|
1399
1677
|
workspaceName?: string | null | undefined;
|
|
1400
1678
|
} | undefined;
|
|
1679
|
+
syncSeq?: number | undefined;
|
|
1401
1680
|
}>>;
|
|
1681
|
+
generation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1682
|
+
seq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1402
1683
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1403
1684
|
kind: import("zod").ZodLiteral<"remove">;
|
|
1404
1685
|
id: import("zod").ZodString;
|
|
@@ -1413,21 +1694,148 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1413
1694
|
jira: "jira";
|
|
1414
1695
|
}>;
|
|
1415
1696
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1697
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1416
1698
|
}, import("zod/v4/core").$loose>>>;
|
|
1417
1699
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1418
1700
|
repository: "repository";
|
|
1419
1701
|
host: "host";
|
|
1420
1702
|
}>>>;
|
|
1703
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1704
|
+
repository: "repository";
|
|
1705
|
+
host: "host";
|
|
1706
|
+
}>>>;
|
|
1707
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1708
|
+
repository: "repository";
|
|
1709
|
+
host: "host";
|
|
1710
|
+
}>>>;
|
|
1421
1711
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1712
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1422
1713
|
projectRootPath: import("zod").ZodString;
|
|
1423
1714
|
projectKind: import("zod").ZodEnum<{
|
|
1424
1715
|
directory: "directory";
|
|
1425
1716
|
git: "git";
|
|
1426
1717
|
non_git: "non_git";
|
|
1427
1718
|
}>;
|
|
1719
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1428
1720
|
}, import("zod/v4/core").$strip>>;
|
|
1429
1721
|
removedProjectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1722
|
+
generation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1723
|
+
seq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1724
|
+
}, import("zod/v4/core").$strip>], "kind">;
|
|
1725
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1726
|
+
type: import("zod").ZodLiteral<"workspace.label.list.response">;
|
|
1727
|
+
payload: import("zod").ZodObject<{
|
|
1728
|
+
requestId: import("zod").ZodString;
|
|
1729
|
+
labels: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1730
|
+
name: import("zod").ZodString;
|
|
1731
|
+
color: import("zod").ZodEnum<{
|
|
1732
|
+
violet: "violet";
|
|
1733
|
+
sky: "sky";
|
|
1734
|
+
emerald: "emerald";
|
|
1735
|
+
orange: "orange";
|
|
1736
|
+
pink: "pink";
|
|
1737
|
+
indigo: "indigo";
|
|
1738
|
+
teal: "teal";
|
|
1739
|
+
red: "red";
|
|
1740
|
+
amber: "amber";
|
|
1741
|
+
blue: "blue";
|
|
1742
|
+
}>;
|
|
1743
|
+
}, import("zod/v4/core").$strip>>;
|
|
1744
|
+
sync: import("zod").ZodObject<{
|
|
1745
|
+
mode: import("zod").ZodEnum<{
|
|
1746
|
+
snapshot: "snapshot";
|
|
1747
|
+
changes: "changes";
|
|
1748
|
+
}>;
|
|
1749
|
+
generation: import("zod").ZodString;
|
|
1750
|
+
headSeq: import("zod").ZodNumber;
|
|
1751
|
+
removals: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1752
|
+
name: import("zod").ZodString;
|
|
1753
|
+
seq: import("zod").ZodNumber;
|
|
1754
|
+
}, import("zod/v4/core").$strip>>;
|
|
1755
|
+
}, import("zod/v4/core").$strip>;
|
|
1756
|
+
}, import("zod/v4/core").$strip>;
|
|
1757
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1758
|
+
type: import("zod").ZodLiteral<"workspace.label.update">;
|
|
1759
|
+
payload: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
1760
|
+
kind: import("zod").ZodLiteral<"upsert">;
|
|
1761
|
+
label: import("zod").ZodObject<{
|
|
1762
|
+
name: import("zod").ZodString;
|
|
1763
|
+
color: import("zod").ZodEnum<{
|
|
1764
|
+
violet: "violet";
|
|
1765
|
+
sky: "sky";
|
|
1766
|
+
emerald: "emerald";
|
|
1767
|
+
orange: "orange";
|
|
1768
|
+
pink: "pink";
|
|
1769
|
+
indigo: "indigo";
|
|
1770
|
+
teal: "teal";
|
|
1771
|
+
red: "red";
|
|
1772
|
+
amber: "amber";
|
|
1773
|
+
blue: "blue";
|
|
1774
|
+
}>;
|
|
1775
|
+
}, import("zod/v4/core").$strip>;
|
|
1776
|
+
previousName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1777
|
+
generation: import("zod").ZodString;
|
|
1778
|
+
seq: import("zod").ZodNumber;
|
|
1779
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1780
|
+
kind: import("zod").ZodLiteral<"remove">;
|
|
1781
|
+
name: import("zod").ZodString;
|
|
1782
|
+
generation: import("zod").ZodString;
|
|
1783
|
+
seq: import("zod").ZodNumber;
|
|
1430
1784
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
1785
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1786
|
+
type: import("zod").ZodLiteral<"workspace.label.assignment.set.response">;
|
|
1787
|
+
payload: import("zod").ZodObject<{
|
|
1788
|
+
requestId: import("zod").ZodString;
|
|
1789
|
+
label: import("zod").ZodObject<{
|
|
1790
|
+
name: import("zod").ZodString;
|
|
1791
|
+
color: import("zod").ZodEnum<{
|
|
1792
|
+
violet: "violet";
|
|
1793
|
+
sky: "sky";
|
|
1794
|
+
emerald: "emerald";
|
|
1795
|
+
orange: "orange";
|
|
1796
|
+
pink: "pink";
|
|
1797
|
+
indigo: "indigo";
|
|
1798
|
+
teal: "teal";
|
|
1799
|
+
red: "red";
|
|
1800
|
+
amber: "amber";
|
|
1801
|
+
blue: "blue";
|
|
1802
|
+
}>;
|
|
1803
|
+
}, import("zod/v4/core").$strip>;
|
|
1804
|
+
workspaceLabels: import("zod").ZodArray<import("zod").ZodString>;
|
|
1805
|
+
}, import("zod/v4/core").$strip>;
|
|
1806
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1807
|
+
type: import("zod").ZodLiteral<"workspace.label.update.response">;
|
|
1808
|
+
payload: import("zod").ZodObject<{
|
|
1809
|
+
requestId: import("zod").ZodString;
|
|
1810
|
+
label: import("zod").ZodObject<{
|
|
1811
|
+
name: import("zod").ZodString;
|
|
1812
|
+
color: import("zod").ZodEnum<{
|
|
1813
|
+
violet: "violet";
|
|
1814
|
+
sky: "sky";
|
|
1815
|
+
emerald: "emerald";
|
|
1816
|
+
orange: "orange";
|
|
1817
|
+
pink: "pink";
|
|
1818
|
+
indigo: "indigo";
|
|
1819
|
+
teal: "teal";
|
|
1820
|
+
red: "red";
|
|
1821
|
+
amber: "amber";
|
|
1822
|
+
blue: "blue";
|
|
1823
|
+
}>;
|
|
1824
|
+
}, import("zod/v4/core").$strip>;
|
|
1825
|
+
affectedWorkspaceCount: import("zod").ZodNumber;
|
|
1826
|
+
}, import("zod/v4/core").$strip>;
|
|
1827
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1828
|
+
type: import("zod").ZodLiteral<"workspace.label.delete.response">;
|
|
1829
|
+
payload: import("zod").ZodObject<{
|
|
1830
|
+
requestId: import("zod").ZodString;
|
|
1831
|
+
affectedWorkspaceCount: import("zod").ZodNumber;
|
|
1832
|
+
}, import("zod/v4/core").$strip>;
|
|
1833
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1834
|
+
type: import("zod").ZodLiteral<"workspace.label.delete.inspect.response">;
|
|
1835
|
+
payload: import("zod").ZodObject<{
|
|
1836
|
+
requestId: import("zod").ZodString;
|
|
1837
|
+
affectedWorkspaceCount: import("zod").ZodNumber;
|
|
1838
|
+
}, import("zod/v4/core").$strip>;
|
|
1431
1839
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1432
1840
|
type: import("zod").ZodLiteral<"project.update">;
|
|
1433
1841
|
payload: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
@@ -1443,22 +1851,37 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1443
1851
|
jira: "jira";
|
|
1444
1852
|
}>;
|
|
1445
1853
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1854
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1446
1855
|
}, import("zod/v4/core").$loose>>>;
|
|
1447
1856
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1448
1857
|
repository: "repository";
|
|
1449
1858
|
host: "host";
|
|
1450
1859
|
}>>>;
|
|
1860
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1861
|
+
repository: "repository";
|
|
1862
|
+
host: "host";
|
|
1863
|
+
}>>>;
|
|
1864
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1865
|
+
repository: "repository";
|
|
1866
|
+
host: "host";
|
|
1867
|
+
}>>>;
|
|
1451
1868
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1869
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1452
1870
|
projectRootPath: import("zod").ZodString;
|
|
1453
1871
|
projectKind: import("zod").ZodEnum<{
|
|
1454
1872
|
directory: "directory";
|
|
1455
1873
|
git: "git";
|
|
1456
1874
|
non_git: "non_git";
|
|
1457
1875
|
}>;
|
|
1876
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1458
1877
|
}, import("zod/v4/core").$strip>;
|
|
1878
|
+
generation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1879
|
+
seq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1459
1880
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1460
1881
|
kind: import("zod").ZodLiteral<"remove">;
|
|
1461
1882
|
projectId: import("zod").ZodString;
|
|
1883
|
+
generation: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1884
|
+
seq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1462
1885
|
}, import("zod/v4/core").$strip>], "kind">;
|
|
1463
1886
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1464
1887
|
type: import("zod").ZodLiteral<"project.list.response">;
|
|
@@ -1475,18 +1898,47 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1475
1898
|
jira: "jira";
|
|
1476
1899
|
}>;
|
|
1477
1900
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1901
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1478
1902
|
}, import("zod/v4/core").$loose>>>;
|
|
1479
1903
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1480
1904
|
repository: "repository";
|
|
1481
1905
|
host: "host";
|
|
1482
1906
|
}>>>;
|
|
1907
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1908
|
+
repository: "repository";
|
|
1909
|
+
host: "host";
|
|
1910
|
+
}>>>;
|
|
1911
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1912
|
+
repository: "repository";
|
|
1913
|
+
host: "host";
|
|
1914
|
+
}>>>;
|
|
1483
1915
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1916
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1484
1917
|
projectRootPath: import("zod").ZodString;
|
|
1485
1918
|
projectKind: import("zod").ZodEnum<{
|
|
1486
1919
|
directory: "directory";
|
|
1487
1920
|
git: "git";
|
|
1488
1921
|
non_git: "non_git";
|
|
1489
1922
|
}>;
|
|
1923
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1924
|
+
}, import("zod/v4/core").$strip>>;
|
|
1925
|
+
sync: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1926
|
+
generation: import("zod").ZodString;
|
|
1927
|
+
headSeq: import("zod").ZodNumber;
|
|
1928
|
+
mode: import("zod").ZodEnum<{
|
|
1929
|
+
snapshot: "snapshot";
|
|
1930
|
+
changes: "changes";
|
|
1931
|
+
}>;
|
|
1932
|
+
reason: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1933
|
+
no_cursor: "no_cursor";
|
|
1934
|
+
generation_changed: "generation_changed";
|
|
1935
|
+
cursor_expired: "cursor_expired";
|
|
1936
|
+
changes_too_large: "changes_too_large";
|
|
1937
|
+
}>>;
|
|
1938
|
+
removals: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1939
|
+
id: import("zod").ZodString;
|
|
1940
|
+
seq: import("zod").ZodNumber;
|
|
1941
|
+
}, import("zod/v4/core").$strip>>;
|
|
1490
1942
|
}, import("zod/v4/core").$strip>>;
|
|
1491
1943
|
}, import("zod/v4/core").$strip>;
|
|
1492
1944
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -1627,6 +2079,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1627
2079
|
type: import("zod").ZodLiteral<"timeline">;
|
|
1628
2080
|
provider: import("zod").ZodString;
|
|
1629
2081
|
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
2082
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1630
2083
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1631
2084
|
type: import("zod").ZodLiteral<"permission_requested">;
|
|
1632
2085
|
provider: import("zod").ZodString;
|
|
@@ -2006,12 +2459,31 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2006
2459
|
length: import("zod").ZodNumber;
|
|
2007
2460
|
}, import("zod/v4/core").$strip>>;
|
|
2008
2461
|
}, import("zod/v4/core").$strip>>>;
|
|
2462
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2009
2463
|
}, import("zod/v4/core").$strip>>;
|
|
2010
2464
|
pageInfo: import("zod").ZodObject<{
|
|
2011
2465
|
nextCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2012
2466
|
prevCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2013
2467
|
hasMore: import("zod").ZodBoolean;
|
|
2014
2468
|
}, import("zod/v4/core").$strip>;
|
|
2469
|
+
sync: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2470
|
+
generation: import("zod").ZodString;
|
|
2471
|
+
headSeq: import("zod").ZodNumber;
|
|
2472
|
+
mode: import("zod").ZodEnum<{
|
|
2473
|
+
snapshot: "snapshot";
|
|
2474
|
+
changes: "changes";
|
|
2475
|
+
}>;
|
|
2476
|
+
reason: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2477
|
+
no_cursor: "no_cursor";
|
|
2478
|
+
generation_changed: "generation_changed";
|
|
2479
|
+
cursor_expired: "cursor_expired";
|
|
2480
|
+
changes_too_large: "changes_too_large";
|
|
2481
|
+
}>>;
|
|
2482
|
+
removals: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2483
|
+
id: import("zod").ZodString;
|
|
2484
|
+
seq: import("zod").ZodNumber;
|
|
2485
|
+
}, import("zod/v4/core").$strip>>;
|
|
2486
|
+
}, import("zod/v4/core").$strip>>;
|
|
2015
2487
|
}, import("zod/v4/core").$strip>;
|
|
2016
2488
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2017
2489
|
type: import("zod").ZodLiteral<"fetch_agent_history_response">;
|
|
@@ -2219,6 +2691,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2219
2691
|
length: import("zod").ZodNumber;
|
|
2220
2692
|
}, import("zod/v4/core").$strip>>;
|
|
2221
2693
|
}, import("zod/v4/core").$strip>>>;
|
|
2694
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2222
2695
|
}, import("zod/v4/core").$strip>>;
|
|
2223
2696
|
pageInfo: import("zod").ZodObject<{
|
|
2224
2697
|
nextCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2259,6 +2732,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2259
2732
|
jira: "jira";
|
|
2260
2733
|
}>;
|
|
2261
2734
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2735
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2262
2736
|
}, import("zod/v4/core").$loose>>>;
|
|
2263
2737
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2264
2738
|
projectRootPath: import("zod").ZodString;
|
|
@@ -2278,6 +2752,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2278
2752
|
name: import("zod").ZodString;
|
|
2279
2753
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2280
2754
|
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2755
|
+
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2281
2756
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2282
2757
|
status: import("zod").ZodEnum<{
|
|
2283
2758
|
running: "running";
|
|
@@ -2466,6 +2941,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2466
2941
|
worktreeRoot?: string | undefined;
|
|
2467
2942
|
}>>]>;
|
|
2468
2943
|
}, import("zod/v4/core").$strip>>;
|
|
2944
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2469
2945
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2470
2946
|
workspaceDirectory: string;
|
|
2471
2947
|
id: string;
|
|
@@ -2504,11 +2980,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2504
2980
|
[x: string]: unknown;
|
|
2505
2981
|
adapter: "github" | "jira";
|
|
2506
2982
|
boardId?: string | null | undefined;
|
|
2983
|
+
boardOwner?: string | null | undefined;
|
|
2507
2984
|
} | null | undefined;
|
|
2508
2985
|
projectCustomIconRevision?: string | null | undefined;
|
|
2509
2986
|
worktreeSlug?: string | undefined;
|
|
2510
2987
|
title?: string | null | undefined;
|
|
2511
2988
|
pinnedAt?: string | null | undefined;
|
|
2989
|
+
labels?: string[] | undefined;
|
|
2512
2990
|
diffStat?: {
|
|
2513
2991
|
additions: number;
|
|
2514
2992
|
deletions: number;
|
|
@@ -2591,6 +3069,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2591
3069
|
};
|
|
2592
3070
|
workspaceName?: string | null | undefined;
|
|
2593
3071
|
} | undefined;
|
|
3072
|
+
syncSeq?: number | undefined;
|
|
2594
3073
|
}, {
|
|
2595
3074
|
id: string;
|
|
2596
3075
|
projectId: string;
|
|
@@ -2628,12 +3107,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2628
3107
|
[x: string]: unknown;
|
|
2629
3108
|
adapter: "github" | "jira";
|
|
2630
3109
|
boardId?: string | null | undefined;
|
|
3110
|
+
boardOwner?: string | null | undefined;
|
|
2631
3111
|
} | null | undefined;
|
|
2632
3112
|
projectCustomIconRevision?: string | null | undefined;
|
|
2633
3113
|
workspaceDirectory?: string | undefined;
|
|
2634
3114
|
worktreeSlug?: string | undefined;
|
|
2635
3115
|
title?: string | null | undefined;
|
|
2636
3116
|
pinnedAt?: string | null | undefined;
|
|
3117
|
+
labels?: string[] | undefined;
|
|
2637
3118
|
diffStat?: {
|
|
2638
3119
|
additions: number;
|
|
2639
3120
|
deletions: number;
|
|
@@ -2716,6 +3197,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2716
3197
|
};
|
|
2717
3198
|
workspaceName?: string | null | undefined;
|
|
2718
3199
|
} | undefined;
|
|
3200
|
+
syncSeq?: number | undefined;
|
|
2719
3201
|
}>>>;
|
|
2720
3202
|
emptyProjects: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2721
3203
|
projectId: import("zod").ZodString;
|
|
@@ -2728,24 +3210,53 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2728
3210
|
jira: "jira";
|
|
2729
3211
|
}>;
|
|
2730
3212
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3213
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2731
3214
|
}, import("zod/v4/core").$loose>>>;
|
|
2732
3215
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2733
3216
|
repository: "repository";
|
|
2734
3217
|
host: "host";
|
|
2735
3218
|
}>>>;
|
|
3219
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3220
|
+
repository: "repository";
|
|
3221
|
+
host: "host";
|
|
3222
|
+
}>>>;
|
|
3223
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3224
|
+
repository: "repository";
|
|
3225
|
+
host: "host";
|
|
3226
|
+
}>>>;
|
|
2736
3227
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3228
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2737
3229
|
projectRootPath: import("zod").ZodString;
|
|
2738
3230
|
projectKind: import("zod").ZodEnum<{
|
|
2739
3231
|
directory: "directory";
|
|
2740
3232
|
git: "git";
|
|
2741
3233
|
non_git: "non_git";
|
|
2742
3234
|
}>;
|
|
3235
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2743
3236
|
}, import("zod/v4/core").$strip>>>>;
|
|
2744
3237
|
pageInfo: import("zod").ZodObject<{
|
|
2745
3238
|
nextCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2746
3239
|
prevCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2747
3240
|
hasMore: import("zod").ZodBoolean;
|
|
2748
3241
|
}, import("zod/v4/core").$strip>;
|
|
3242
|
+
sync: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3243
|
+
generation: import("zod").ZodString;
|
|
3244
|
+
headSeq: import("zod").ZodNumber;
|
|
3245
|
+
mode: import("zod").ZodEnum<{
|
|
3246
|
+
snapshot: "snapshot";
|
|
3247
|
+
changes: "changes";
|
|
3248
|
+
}>;
|
|
3249
|
+
reason: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3250
|
+
no_cursor: "no_cursor";
|
|
3251
|
+
generation_changed: "generation_changed";
|
|
3252
|
+
cursor_expired: "cursor_expired";
|
|
3253
|
+
changes_too_large: "changes_too_large";
|
|
3254
|
+
}>>;
|
|
3255
|
+
removals: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3256
|
+
id: import("zod").ZodString;
|
|
3257
|
+
seq: import("zod").ZodNumber;
|
|
3258
|
+
}, import("zod/v4/core").$strip>>;
|
|
3259
|
+
}, import("zod/v4/core").$strip>>;
|
|
2749
3260
|
}, import("zod/v4/core").$strip>;
|
|
2750
3261
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2751
3262
|
type: import("zod").ZodLiteral<"project.add.response">;
|
|
@@ -2762,18 +3273,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2762
3273
|
jira: "jira";
|
|
2763
3274
|
}>;
|
|
2764
3275
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3276
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2765
3277
|
}, import("zod/v4/core").$loose>>>;
|
|
2766
3278
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2767
3279
|
repository: "repository";
|
|
2768
3280
|
host: "host";
|
|
2769
3281
|
}>>>;
|
|
3282
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3283
|
+
repository: "repository";
|
|
3284
|
+
host: "host";
|
|
3285
|
+
}>>>;
|
|
3286
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3287
|
+
repository: "repository";
|
|
3288
|
+
host: "host";
|
|
3289
|
+
}>>>;
|
|
2770
3290
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3291
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2771
3292
|
projectRootPath: import("zod").ZodString;
|
|
2772
3293
|
projectKind: import("zod").ZodEnum<{
|
|
2773
3294
|
directory: "directory";
|
|
2774
3295
|
git: "git";
|
|
2775
3296
|
non_git: "non_git";
|
|
2776
3297
|
}>;
|
|
3298
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2777
3299
|
}, import("zod/v4/core").$strip>>;
|
|
2778
3300
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2779
3301
|
errorCode: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -2795,18 +3317,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2795
3317
|
jira: "jira";
|
|
2796
3318
|
}>;
|
|
2797
3319
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3320
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2798
3321
|
}, import("zod/v4/core").$loose>>>;
|
|
2799
3322
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2800
3323
|
repository: "repository";
|
|
2801
3324
|
host: "host";
|
|
2802
3325
|
}>>>;
|
|
3326
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3327
|
+
repository: "repository";
|
|
3328
|
+
host: "host";
|
|
3329
|
+
}>>>;
|
|
3330
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3331
|
+
repository: "repository";
|
|
3332
|
+
host: "host";
|
|
3333
|
+
}>>>;
|
|
2803
3334
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3335
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2804
3336
|
projectRootPath: import("zod").ZodString;
|
|
2805
3337
|
projectKind: import("zod").ZodEnum<{
|
|
2806
3338
|
directory: "directory";
|
|
2807
3339
|
git: "git";
|
|
2808
3340
|
non_git: "non_git";
|
|
2809
3341
|
}>;
|
|
3342
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2810
3343
|
}, import("zod/v4/core").$strip>>;
|
|
2811
3344
|
path: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2812
3345
|
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2862,18 +3395,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2862
3395
|
jira: "jira";
|
|
2863
3396
|
}>;
|
|
2864
3397
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3398
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2865
3399
|
}, import("zod/v4/core").$loose>>>;
|
|
2866
3400
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2867
3401
|
repository: "repository";
|
|
2868
3402
|
host: "host";
|
|
2869
3403
|
}>>>;
|
|
3404
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3405
|
+
repository: "repository";
|
|
3406
|
+
host: "host";
|
|
3407
|
+
}>>>;
|
|
3408
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3409
|
+
repository: "repository";
|
|
3410
|
+
host: "host";
|
|
3411
|
+
}>>>;
|
|
2870
3412
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3413
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2871
3414
|
projectRootPath: import("zod").ZodString;
|
|
2872
3415
|
projectKind: import("zod").ZodEnum<{
|
|
2873
3416
|
directory: "directory";
|
|
2874
3417
|
git: "git";
|
|
2875
3418
|
non_git: "non_git";
|
|
2876
3419
|
}>;
|
|
3420
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2877
3421
|
}, import("zod/v4/core").$strip>>;
|
|
2878
3422
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2879
3423
|
errorCode: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2893,6 +3437,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2893
3437
|
jira: "jira";
|
|
2894
3438
|
}>;
|
|
2895
3439
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3440
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2896
3441
|
}, import("zod/v4/core").$loose>>>;
|
|
2897
3442
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2898
3443
|
projectRootPath: import("zod").ZodString;
|
|
@@ -2912,6 +3457,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2912
3457
|
name: import("zod").ZodString;
|
|
2913
3458
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2914
3459
|
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3460
|
+
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2915
3461
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2916
3462
|
status: import("zod").ZodEnum<{
|
|
2917
3463
|
running: "running";
|
|
@@ -3100,6 +3646,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3100
3646
|
worktreeRoot?: string | undefined;
|
|
3101
3647
|
}>>]>;
|
|
3102
3648
|
}, import("zod/v4/core").$strip>>;
|
|
3649
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3103
3650
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
3104
3651
|
workspaceDirectory: string;
|
|
3105
3652
|
id: string;
|
|
@@ -3138,11 +3685,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3138
3685
|
[x: string]: unknown;
|
|
3139
3686
|
adapter: "github" | "jira";
|
|
3140
3687
|
boardId?: string | null | undefined;
|
|
3688
|
+
boardOwner?: string | null | undefined;
|
|
3141
3689
|
} | null | undefined;
|
|
3142
3690
|
projectCustomIconRevision?: string | null | undefined;
|
|
3143
3691
|
worktreeSlug?: string | undefined;
|
|
3144
3692
|
title?: string | null | undefined;
|
|
3145
3693
|
pinnedAt?: string | null | undefined;
|
|
3694
|
+
labels?: string[] | undefined;
|
|
3146
3695
|
diffStat?: {
|
|
3147
3696
|
additions: number;
|
|
3148
3697
|
deletions: number;
|
|
@@ -3225,6 +3774,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3225
3774
|
};
|
|
3226
3775
|
workspaceName?: string | null | undefined;
|
|
3227
3776
|
} | undefined;
|
|
3777
|
+
syncSeq?: number | undefined;
|
|
3228
3778
|
}, {
|
|
3229
3779
|
id: string;
|
|
3230
3780
|
projectId: string;
|
|
@@ -3262,12 +3812,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3262
3812
|
[x: string]: unknown;
|
|
3263
3813
|
adapter: "github" | "jira";
|
|
3264
3814
|
boardId?: string | null | undefined;
|
|
3815
|
+
boardOwner?: string | null | undefined;
|
|
3265
3816
|
} | null | undefined;
|
|
3266
3817
|
projectCustomIconRevision?: string | null | undefined;
|
|
3267
3818
|
workspaceDirectory?: string | undefined;
|
|
3268
3819
|
worktreeSlug?: string | undefined;
|
|
3269
3820
|
title?: string | null | undefined;
|
|
3270
3821
|
pinnedAt?: string | null | undefined;
|
|
3822
|
+
labels?: string[] | undefined;
|
|
3271
3823
|
diffStat?: {
|
|
3272
3824
|
additions: number;
|
|
3273
3825
|
deletions: number;
|
|
@@ -3350,6 +3902,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3350
3902
|
};
|
|
3351
3903
|
workspaceName?: string | null | undefined;
|
|
3352
3904
|
} | undefined;
|
|
3905
|
+
syncSeq?: number | undefined;
|
|
3353
3906
|
}>>>;
|
|
3354
3907
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3355
3908
|
errorCode: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -3449,18 +4002,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3449
4002
|
jira: "jira";
|
|
3450
4003
|
}>;
|
|
3451
4004
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4005
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3452
4006
|
}, import("zod/v4/core").$loose>>>;
|
|
3453
4007
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3454
4008
|
repository: "repository";
|
|
3455
4009
|
host: "host";
|
|
3456
4010
|
}>>>;
|
|
4011
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
4012
|
+
repository: "repository";
|
|
4013
|
+
host: "host";
|
|
4014
|
+
}>>>;
|
|
4015
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
4016
|
+
repository: "repository";
|
|
4017
|
+
host: "host";
|
|
4018
|
+
}>>>;
|
|
3457
4019
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4020
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3458
4021
|
projectRootPath: import("zod").ZodString;
|
|
3459
4022
|
projectKind: import("zod").ZodEnum<{
|
|
3460
4023
|
directory: "directory";
|
|
3461
4024
|
git: "git";
|
|
3462
4025
|
non_git: "non_git";
|
|
3463
4026
|
}>;
|
|
4027
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3464
4028
|
}, import("zod/v4/core").$strip>>;
|
|
3465
4029
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3466
4030
|
}, import("zod/v4/core").$strip>;
|
|
@@ -3762,6 +4326,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3762
4326
|
jira: "jira";
|
|
3763
4327
|
}>;
|
|
3764
4328
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4329
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3765
4330
|
}, import("zod/v4/core").$loose>>>;
|
|
3766
4331
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3767
4332
|
projectRootPath: import("zod").ZodString;
|
|
@@ -3781,6 +4346,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3781
4346
|
name: import("zod").ZodString;
|
|
3782
4347
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3783
4348
|
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4349
|
+
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3784
4350
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
3785
4351
|
status: import("zod").ZodEnum<{
|
|
3786
4352
|
running: "running";
|
|
@@ -3969,6 +4535,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3969
4535
|
worktreeRoot?: string | undefined;
|
|
3970
4536
|
}>>]>;
|
|
3971
4537
|
}, import("zod/v4/core").$strip>>;
|
|
4538
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3972
4539
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
3973
4540
|
workspaceDirectory: string;
|
|
3974
4541
|
id: string;
|
|
@@ -4007,11 +4574,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4007
4574
|
[x: string]: unknown;
|
|
4008
4575
|
adapter: "github" | "jira";
|
|
4009
4576
|
boardId?: string | null | undefined;
|
|
4577
|
+
boardOwner?: string | null | undefined;
|
|
4010
4578
|
} | null | undefined;
|
|
4011
4579
|
projectCustomIconRevision?: string | null | undefined;
|
|
4012
4580
|
worktreeSlug?: string | undefined;
|
|
4013
4581
|
title?: string | null | undefined;
|
|
4014
4582
|
pinnedAt?: string | null | undefined;
|
|
4583
|
+
labels?: string[] | undefined;
|
|
4015
4584
|
diffStat?: {
|
|
4016
4585
|
additions: number;
|
|
4017
4586
|
deletions: number;
|
|
@@ -4094,6 +4663,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4094
4663
|
};
|
|
4095
4664
|
workspaceName?: string | null | undefined;
|
|
4096
4665
|
} | undefined;
|
|
4666
|
+
syncSeq?: number | undefined;
|
|
4097
4667
|
}, {
|
|
4098
4668
|
id: string;
|
|
4099
4669
|
projectId: string;
|
|
@@ -4131,12 +4701,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4131
4701
|
[x: string]: unknown;
|
|
4132
4702
|
adapter: "github" | "jira";
|
|
4133
4703
|
boardId?: string | null | undefined;
|
|
4704
|
+
boardOwner?: string | null | undefined;
|
|
4134
4705
|
} | null | undefined;
|
|
4135
4706
|
projectCustomIconRevision?: string | null | undefined;
|
|
4136
4707
|
workspaceDirectory?: string | undefined;
|
|
4137
4708
|
worktreeSlug?: string | undefined;
|
|
4138
4709
|
title?: string | null | undefined;
|
|
4139
4710
|
pinnedAt?: string | null | undefined;
|
|
4711
|
+
labels?: string[] | undefined;
|
|
4140
4712
|
diffStat?: {
|
|
4141
4713
|
additions: number;
|
|
4142
4714
|
deletions: number;
|
|
@@ -4219,6 +4791,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4219
4791
|
};
|
|
4220
4792
|
workspaceName?: string | null | undefined;
|
|
4221
4793
|
} | undefined;
|
|
4794
|
+
syncSeq?: number | undefined;
|
|
4222
4795
|
}>>>;
|
|
4223
4796
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4224
4797
|
}, import("zod/v4/core").$strip>;
|
|
@@ -4563,6 +5136,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4563
5136
|
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4564
5137
|
provider: import("zod").ZodString;
|
|
4565
5138
|
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
5139
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4566
5140
|
timestamp: import("zod").ZodString;
|
|
4567
5141
|
seqStart: import("zod").ZodNumber;
|
|
4568
5142
|
seqEnd: import("zod").ZodNumber;
|
|
@@ -4725,18 +5299,45 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4725
5299
|
contextKind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4726
5300
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4727
5301
|
text: import("zod").ZodString;
|
|
5302
|
+
externalResource: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5303
|
+
provider: import("zod").ZodString;
|
|
5304
|
+
providerLabel: import("zod").ZodString;
|
|
5305
|
+
resourceType: import("zod").ZodString;
|
|
5306
|
+
id: import("zod").ZodString;
|
|
5307
|
+
identifier: import("zod").ZodString;
|
|
5308
|
+
title: import("zod").ZodString;
|
|
5309
|
+
url: import("zod").ZodString;
|
|
5310
|
+
}, import("zod/v4/core").$strip>>;
|
|
4728
5311
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
4729
5312
|
contextKind?: string | undefined;
|
|
4730
5313
|
type: "text";
|
|
4731
5314
|
mimeType: "text/plain";
|
|
4732
5315
|
text: string;
|
|
4733
5316
|
title?: string | null | undefined;
|
|
5317
|
+
externalResource?: {
|
|
5318
|
+
provider: string;
|
|
5319
|
+
providerLabel: string;
|
|
5320
|
+
resourceType: string;
|
|
5321
|
+
id: string;
|
|
5322
|
+
identifier: string;
|
|
5323
|
+
title: string;
|
|
5324
|
+
url: string;
|
|
5325
|
+
} | undefined;
|
|
4734
5326
|
}, {
|
|
4735
5327
|
type: "text";
|
|
4736
5328
|
mimeType: "text/plain";
|
|
4737
5329
|
text: string;
|
|
4738
5330
|
contextKind?: string | undefined;
|
|
4739
5331
|
title?: string | null | undefined;
|
|
5332
|
+
externalResource?: {
|
|
5333
|
+
provider: string;
|
|
5334
|
+
providerLabel: string;
|
|
5335
|
+
resourceType: string;
|
|
5336
|
+
id: string;
|
|
5337
|
+
identifier: string;
|
|
5338
|
+
title: string;
|
|
5339
|
+
url: string;
|
|
5340
|
+
} | undefined;
|
|
4740
5341
|
}>>>;
|
|
4741
5342
|
itemCount: import("zod").ZodNumber;
|
|
4742
5343
|
boundaryMessageId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -4994,6 +5595,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4994
5595
|
jira: "jira";
|
|
4995
5596
|
}>;
|
|
4996
5597
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5598
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4997
5599
|
}, import("zod/v4/core").$loose>>>;
|
|
4998
5600
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4999
5601
|
projectRootPath: import("zod").ZodString;
|
|
@@ -5013,6 +5615,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5013
5615
|
name: import("zod").ZodString;
|
|
5014
5616
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5015
5617
|
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5618
|
+
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5016
5619
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
5017
5620
|
status: import("zod").ZodEnum<{
|
|
5018
5621
|
running: "running";
|
|
@@ -5201,6 +5804,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5201
5804
|
worktreeRoot?: string | undefined;
|
|
5202
5805
|
}>>]>;
|
|
5203
5806
|
}, import("zod/v4/core").$strip>>;
|
|
5807
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5204
5808
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
5205
5809
|
workspaceDirectory: string;
|
|
5206
5810
|
id: string;
|
|
@@ -5239,11 +5843,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5239
5843
|
[x: string]: unknown;
|
|
5240
5844
|
adapter: "github" | "jira";
|
|
5241
5845
|
boardId?: string | null | undefined;
|
|
5846
|
+
boardOwner?: string | null | undefined;
|
|
5242
5847
|
} | null | undefined;
|
|
5243
5848
|
projectCustomIconRevision?: string | null | undefined;
|
|
5244
5849
|
worktreeSlug?: string | undefined;
|
|
5245
5850
|
title?: string | null | undefined;
|
|
5246
5851
|
pinnedAt?: string | null | undefined;
|
|
5852
|
+
labels?: string[] | undefined;
|
|
5247
5853
|
diffStat?: {
|
|
5248
5854
|
additions: number;
|
|
5249
5855
|
deletions: number;
|
|
@@ -5326,6 +5932,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5326
5932
|
};
|
|
5327
5933
|
workspaceName?: string | null | undefined;
|
|
5328
5934
|
} | undefined;
|
|
5935
|
+
syncSeq?: number | undefined;
|
|
5329
5936
|
}, {
|
|
5330
5937
|
id: string;
|
|
5331
5938
|
projectId: string;
|
|
@@ -5363,12 +5970,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5363
5970
|
[x: string]: unknown;
|
|
5364
5971
|
adapter: "github" | "jira";
|
|
5365
5972
|
boardId?: string | null | undefined;
|
|
5973
|
+
boardOwner?: string | null | undefined;
|
|
5366
5974
|
} | null | undefined;
|
|
5367
5975
|
projectCustomIconRevision?: string | null | undefined;
|
|
5368
5976
|
workspaceDirectory?: string | undefined;
|
|
5369
5977
|
worktreeSlug?: string | undefined;
|
|
5370
5978
|
title?: string | null | undefined;
|
|
5371
5979
|
pinnedAt?: string | null | undefined;
|
|
5980
|
+
labels?: string[] | undefined;
|
|
5372
5981
|
diffStat?: {
|
|
5373
5982
|
additions: number;
|
|
5374
5983
|
deletions: number;
|
|
@@ -5451,6 +6060,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5451
6060
|
};
|
|
5452
6061
|
workspaceName?: string | null | undefined;
|
|
5453
6062
|
} | undefined;
|
|
6063
|
+
syncSeq?: number | undefined;
|
|
5454
6064
|
}>>>;
|
|
5455
6065
|
setupTerminalId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5456
6066
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -5525,6 +6135,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5525
6135
|
qr: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5526
6136
|
relayEnabled: import("zod").ZodBoolean;
|
|
5527
6137
|
}, import("zod/v4/core").$loose>;
|
|
6138
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6139
|
+
type: import("zod").ZodLiteral<"daemon.config.reload.response">;
|
|
6140
|
+
payload: import("zod").ZodObject<{
|
|
6141
|
+
requestId: import("zod").ZodString;
|
|
6142
|
+
appliedPaths: import("zod").ZodArray<import("zod").ZodString>;
|
|
6143
|
+
restartRequiredPaths: import("zod").ZodArray<import("zod").ZodString>;
|
|
6144
|
+
overrideControlledPaths: import("zod").ZodArray<import("zod").ZodString>;
|
|
6145
|
+
}, import("zod/v4/core").$loose>;
|
|
5528
6146
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5529
6147
|
type: import("zod").ZodLiteral<"hub.management.daemon.connect.response">;
|
|
5530
6148
|
payload: import("zod").ZodObject<{
|
|
@@ -5601,10 +6219,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5601
6219
|
enabled: import("zod").ZodBoolean;
|
|
5602
6220
|
}, import("zod/v4/core").$loose>>;
|
|
5603
6221
|
mcp: import("zod").ZodObject<{
|
|
6222
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5604
6223
|
injectIntoAgents: import("zod").ZodBoolean;
|
|
5605
6224
|
toolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5606
6225
|
toolGroupsV2: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5607
6226
|
}, import("zod/v4/core").$loose>;
|
|
6227
|
+
hostnames: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodLiteral<true>, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
6228
|
+
cors: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6229
|
+
allowedOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
6230
|
+
}, import("zod/v4/core").$loose>>;
|
|
6231
|
+
trustedProxies: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodLiteral<true>, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
6232
|
+
git: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6233
|
+
maxProcessesPerSecond: import("zod").ZodNumber;
|
|
6234
|
+
maxProcessConcurrency: import("zod").ZodNumber;
|
|
6235
|
+
}, import("zod/v4/core").$strip>>;
|
|
6236
|
+
app: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6237
|
+
baseUrl: import("zod").ZodString;
|
|
6238
|
+
}, import("zod/v4/core").$strip>>;
|
|
6239
|
+
catalogRefreshTimeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5608
6240
|
browserTools: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5609
6241
|
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5610
6242
|
}, import("zod/v4/core").$loose>>;
|
|
@@ -5895,6 +6527,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5895
6527
|
host: "host";
|
|
5896
6528
|
}>>;
|
|
5897
6529
|
}, import("zod/v4/core").$loose>>;
|
|
6530
|
+
projectArtifacts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6531
|
+
defaultStoreLocation: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
6532
|
+
repository: "repository";
|
|
6533
|
+
host: "host";
|
|
6534
|
+
}>>;
|
|
6535
|
+
}, import("zod/v4/core").$loose>>;
|
|
6536
|
+
projectWorkflows: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6537
|
+
defaultStoreLocation: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
6538
|
+
repository: "repository";
|
|
6539
|
+
host: "host";
|
|
6540
|
+
}>>;
|
|
6541
|
+
}, import("zod/v4/core").$loose>>;
|
|
5898
6542
|
agentProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5899
6543
|
id: import("zod").ZodString;
|
|
5900
6544
|
name: import("zod").ZodString;
|
|
@@ -5927,6 +6571,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5927
6571
|
}, import("zod/v4/core").$loose>>;
|
|
5928
6572
|
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5929
6573
|
}, import("zod/v4/core").$loose>>>;
|
|
6574
|
+
skills: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6575
|
+
selection: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6576
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
6577
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
6578
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
6579
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
6580
|
+
}, import("zod/v4/core").$strict>], "mode">>;
|
|
6581
|
+
}, import("zod/v4/core").$strict>>;
|
|
6582
|
+
pluginsEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6583
|
+
plugins: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6584
|
+
source: import("zod").ZodLiteral<"directory">;
|
|
6585
|
+
path: import("zod").ZodString;
|
|
6586
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6587
|
+
}, import("zod/v4/core").$strict>], "source">>>;
|
|
5930
6588
|
}, import("zod/v4/core").$loose>;
|
|
5931
6589
|
}, import("zod/v4/core").$loose>;
|
|
5932
6590
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -5938,10 +6596,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5938
6596
|
enabled: import("zod").ZodBoolean;
|
|
5939
6597
|
}, import("zod/v4/core").$loose>>;
|
|
5940
6598
|
mcp: import("zod").ZodObject<{
|
|
6599
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5941
6600
|
injectIntoAgents: import("zod").ZodBoolean;
|
|
5942
6601
|
toolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5943
6602
|
toolGroupsV2: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5944
6603
|
}, import("zod/v4/core").$loose>;
|
|
6604
|
+
hostnames: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodLiteral<true>, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
6605
|
+
cors: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6606
|
+
allowedOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
6607
|
+
}, import("zod/v4/core").$loose>>;
|
|
6608
|
+
trustedProxies: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodLiteral<true>, import("zod").ZodArray<import("zod").ZodString>]>>;
|
|
6609
|
+
git: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6610
|
+
maxProcessesPerSecond: import("zod").ZodNumber;
|
|
6611
|
+
maxProcessConcurrency: import("zod").ZodNumber;
|
|
6612
|
+
}, import("zod/v4/core").$strip>>;
|
|
6613
|
+
app: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6614
|
+
baseUrl: import("zod").ZodString;
|
|
6615
|
+
}, import("zod/v4/core").$strip>>;
|
|
6616
|
+
catalogRefreshTimeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5945
6617
|
browserTools: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5946
6618
|
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5947
6619
|
}, import("zod/v4/core").$loose>>;
|
|
@@ -6232,6 +6904,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6232
6904
|
host: "host";
|
|
6233
6905
|
}>>;
|
|
6234
6906
|
}, import("zod/v4/core").$loose>>;
|
|
6907
|
+
projectArtifacts: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6908
|
+
defaultStoreLocation: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
6909
|
+
repository: "repository";
|
|
6910
|
+
host: "host";
|
|
6911
|
+
}>>;
|
|
6912
|
+
}, import("zod/v4/core").$loose>>;
|
|
6913
|
+
projectWorkflows: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6914
|
+
defaultStoreLocation: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
6915
|
+
repository: "repository";
|
|
6916
|
+
host: "host";
|
|
6917
|
+
}>>;
|
|
6918
|
+
}, import("zod/v4/core").$loose>>;
|
|
6235
6919
|
agentProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6236
6920
|
id: import("zod").ZodString;
|
|
6237
6921
|
name: import("zod").ZodString;
|
|
@@ -6264,6 +6948,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6264
6948
|
}, import("zod/v4/core").$loose>>;
|
|
6265
6949
|
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6266
6950
|
}, import("zod/v4/core").$loose>>>;
|
|
6951
|
+
skills: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6952
|
+
selection: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6953
|
+
mode: import("zod").ZodLiteral<"all">;
|
|
6954
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
6955
|
+
mode: import("zod").ZodLiteral<"custom">;
|
|
6956
|
+
skills: import("zod").ZodArray<import("zod").ZodString>;
|
|
6957
|
+
}, import("zod/v4/core").$strict>], "mode">>;
|
|
6958
|
+
}, import("zod/v4/core").$strict>>;
|
|
6959
|
+
pluginsEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6960
|
+
plugins: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6961
|
+
source: import("zod").ZodLiteral<"directory">;
|
|
6962
|
+
path: import("zod").ZodString;
|
|
6963
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6964
|
+
}, import("zod/v4/core").$strict>], "source">>>;
|
|
6267
6965
|
}, import("zod/v4/core").$loose>;
|
|
6268
6966
|
}, import("zod/v4/core").$loose>;
|
|
6269
6967
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -7590,6 +8288,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7590
8288
|
jira: "jira";
|
|
7591
8289
|
}>;
|
|
7592
8290
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8291
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7593
8292
|
}, import("zod/v4/core").$loose>>;
|
|
7594
8293
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7595
8294
|
}, import("zod/v4/core").$strip>;
|
|
@@ -7607,18 +8306,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7607
8306
|
jira: "jira";
|
|
7608
8307
|
}>;
|
|
7609
8308
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8309
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7610
8310
|
}, import("zod/v4/core").$loose>>>;
|
|
7611
8311
|
projectKnowledgeLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
7612
8312
|
repository: "repository";
|
|
7613
8313
|
host: "host";
|
|
7614
8314
|
}>>>;
|
|
8315
|
+
projectArtifactLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
8316
|
+
repository: "repository";
|
|
8317
|
+
host: "host";
|
|
8318
|
+
}>>>;
|
|
8319
|
+
projectWorkflowLocation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
8320
|
+
repository: "repository";
|
|
8321
|
+
host: "host";
|
|
8322
|
+
}>>>;
|
|
7615
8323
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8324
|
+
projectIconRevision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7616
8325
|
projectRootPath: import("zod").ZodString;
|
|
7617
8326
|
projectKind: import("zod").ZodEnum<{
|
|
7618
8327
|
directory: "directory";
|
|
7619
8328
|
git: "git";
|
|
7620
8329
|
non_git: "non_git";
|
|
7621
8330
|
}>;
|
|
8331
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7622
8332
|
}, import("zod/v4/core").$strip>;
|
|
7623
8333
|
hasActiveWorkspaces: import("zod").ZodBoolean;
|
|
7624
8334
|
}, import("zod/v4/core").$strip>;
|
|
@@ -7639,46 +8349,6 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7639
8349
|
removedWorkspaceIds: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7640
8350
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7641
8351
|
}, import("zod/v4/core").$strip>;
|
|
7642
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7643
|
-
type: import("zod").ZodLiteral<"project.links.list.response">;
|
|
7644
|
-
payload: import("zod").ZodObject<{
|
|
7645
|
-
requestId: import("zod").ZodString;
|
|
7646
|
-
links: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7647
|
-
projectAId: import("zod").ZodString;
|
|
7648
|
-
projectBId: import("zod").ZodString;
|
|
7649
|
-
}, import("zod/v4/core").$strip>>>;
|
|
7650
|
-
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7651
|
-
}, import("zod/v4/core").$strip>;
|
|
7652
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7653
|
-
type: import("zod").ZodLiteral<"project.links.set.response">;
|
|
7654
|
-
payload: import("zod").ZodObject<{
|
|
7655
|
-
requestId: import("zod").ZodString;
|
|
7656
|
-
accepted: import("zod").ZodBoolean;
|
|
7657
|
-
links: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7658
|
-
projectAId: import("zod").ZodString;
|
|
7659
|
-
projectBId: import("zod").ZodString;
|
|
7660
|
-
}, import("zod/v4/core").$strip>>>;
|
|
7661
|
-
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7662
|
-
}, import("zod/v4/core").$strip>;
|
|
7663
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7664
|
-
type: import("zod").ZodLiteral<"project.links.unset.response">;
|
|
7665
|
-
payload: import("zod").ZodObject<{
|
|
7666
|
-
requestId: import("zod").ZodString;
|
|
7667
|
-
accepted: import("zod").ZodBoolean;
|
|
7668
|
-
links: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7669
|
-
projectAId: import("zod").ZodString;
|
|
7670
|
-
projectBId: import("zod").ZodString;
|
|
7671
|
-
}, import("zod/v4/core").$strip>>>;
|
|
7672
|
-
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7673
|
-
}, import("zod/v4/core").$strip>;
|
|
7674
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7675
|
-
type: import("zod").ZodLiteral<"project.links.changed">;
|
|
7676
|
-
payload: import("zod").ZodObject<{
|
|
7677
|
-
links: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7678
|
-
projectAId: import("zod").ZodString;
|
|
7679
|
-
projectBId: import("zod").ZodString;
|
|
7680
|
-
}, import("zod/v4/core").$strip>>>;
|
|
7681
|
-
}, import("zod/v4/core").$strip>;
|
|
7682
8352
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7683
8353
|
type: import("zod").ZodLiteral<"workspace.title.set.response">;
|
|
7684
8354
|
payload: import("zod").ZodObject<{
|
|
@@ -9579,6 +10249,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9579
10249
|
checkDetails: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
9580
10250
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
9581
10251
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
10252
|
+
reviewThreads: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
10253
|
+
commentReactions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
9582
10254
|
issues: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
9583
10255
|
listRepositories: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
9584
10256
|
createRepository: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
@@ -9986,6 +10658,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9986
10658
|
status: import("zod").ZodString;
|
|
9987
10659
|
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9988
10660
|
graphId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10661
|
+
graphSnapshot: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10662
|
+
id: import("zod").ZodString;
|
|
10663
|
+
name: import("zod").ZodString;
|
|
10664
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10665
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown>>;
|
|
10666
|
+
nodes: import("zod").ZodArray<import("zod").ZodUnknown>;
|
|
10667
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown>>;
|
|
10668
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10669
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10670
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10671
|
+
}, import("zod/v4/core").$loose>>;
|
|
9989
10672
|
graphInputs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
9990
10673
|
requirements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
9991
10674
|
autopilot: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -10013,6 +10696,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10013
10696
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10014
10697
|
}, import("zod/v4/core").$loose>>;
|
|
10015
10698
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10699
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10016
10700
|
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
10017
10701
|
}, import("zod/v4/core").$loose>>>;
|
|
10018
10702
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10030,6 +10714,35 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10030
10714
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10031
10715
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10032
10716
|
summaryStatus: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10717
|
+
startConfirmation: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10718
|
+
reason: import("zod").ZodString;
|
|
10719
|
+
plannedAgentCount: import("zod").ZodNumber;
|
|
10720
|
+
fanOutPhaseCount: import("zod").ZodNumber;
|
|
10721
|
+
phaseCount: import("zod").ZodNumber;
|
|
10722
|
+
agentCap: import("zod").ZodNumber;
|
|
10723
|
+
threshold: import("zod").ZodNumber;
|
|
10724
|
+
}, import("zod/v4/core").$loose>>;
|
|
10725
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10726
|
+
schemaVersion: import("zod").ZodNumber;
|
|
10727
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10728
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10729
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10730
|
+
location: import("zod").ZodEnum<{
|
|
10731
|
+
repository: "repository";
|
|
10732
|
+
host: "host";
|
|
10733
|
+
}>;
|
|
10734
|
+
storeKey: import("zod").ZodString;
|
|
10735
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10736
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10737
|
+
source: import("zod").ZodEnum<{
|
|
10738
|
+
"project-store": "project-store";
|
|
10739
|
+
"legacy-host-library": "legacy-host-library";
|
|
10740
|
+
}>;
|
|
10741
|
+
}, import("zod/v4/core").$loose>>;
|
|
10742
|
+
scheduleSource: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10743
|
+
scheduleId: import("zod").ZodString;
|
|
10744
|
+
scheduleRunId: import("zod").ZodString;
|
|
10745
|
+
}, import("zod/v4/core").$loose>>;
|
|
10033
10746
|
agentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10034
10747
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10035
10748
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10046,6 +10759,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10046
10759
|
status: import("zod").ZodString;
|
|
10047
10760
|
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10048
10761
|
graphId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10762
|
+
graphSnapshot: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10763
|
+
id: import("zod").ZodString;
|
|
10764
|
+
name: import("zod").ZodString;
|
|
10765
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10766
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown>>;
|
|
10767
|
+
nodes: import("zod").ZodArray<import("zod").ZodUnknown>;
|
|
10768
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnknown>>;
|
|
10769
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10770
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10771
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10772
|
+
}, import("zod/v4/core").$loose>>;
|
|
10049
10773
|
graphInputs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
10050
10774
|
requirements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10051
10775
|
autopilot: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -10073,6 +10797,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10073
10797
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10074
10798
|
}, import("zod/v4/core").$loose>>;
|
|
10075
10799
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10800
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10076
10801
|
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
10077
10802
|
}, import("zod/v4/core").$loose>>>;
|
|
10078
10803
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10090,6 +10815,35 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10090
10815
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10091
10816
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10092
10817
|
summaryStatus: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10818
|
+
startConfirmation: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10819
|
+
reason: import("zod").ZodString;
|
|
10820
|
+
plannedAgentCount: import("zod").ZodNumber;
|
|
10821
|
+
fanOutPhaseCount: import("zod").ZodNumber;
|
|
10822
|
+
phaseCount: import("zod").ZodNumber;
|
|
10823
|
+
agentCap: import("zod").ZodNumber;
|
|
10824
|
+
threshold: import("zod").ZodNumber;
|
|
10825
|
+
}, import("zod/v4/core").$loose>>;
|
|
10826
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10827
|
+
schemaVersion: import("zod").ZodNumber;
|
|
10828
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10829
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10830
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10831
|
+
location: import("zod").ZodEnum<{
|
|
10832
|
+
repository: "repository";
|
|
10833
|
+
host: "host";
|
|
10834
|
+
}>;
|
|
10835
|
+
storeKey: import("zod").ZodString;
|
|
10836
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10837
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10838
|
+
source: import("zod").ZodEnum<{
|
|
10839
|
+
"project-store": "project-store";
|
|
10840
|
+
"legacy-host-library": "legacy-host-library";
|
|
10841
|
+
}>;
|
|
10842
|
+
}, import("zod/v4/core").$loose>>;
|
|
10843
|
+
scheduleSource: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10844
|
+
scheduleId: import("zod").ZodString;
|
|
10845
|
+
scheduleRunId: import("zod").ZodString;
|
|
10846
|
+
}, import("zod/v4/core").$loose>>;
|
|
10093
10847
|
agentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10094
10848
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10095
10849
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10131,6 +10885,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10131
10885
|
type: import("zod").ZodLiteral<"runs.graphs.list.response">;
|
|
10132
10886
|
payload: import("zod").ZodObject<{
|
|
10133
10887
|
graphs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10888
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10889
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10134
10890
|
id: import("zod").ZodString;
|
|
10135
10891
|
name: import("zod").ZodString;
|
|
10136
10892
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10191,6 +10947,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10191
10947
|
backoffMs: import("zod").ZodNumber;
|
|
10192
10948
|
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10193
10949
|
}, import("zod/v4/core").$loose>>;
|
|
10950
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10951
|
+
expression: import("zod").ZodString;
|
|
10952
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10953
|
+
}, import("zod/v4/core").$loose>>;
|
|
10194
10954
|
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10195
10955
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10196
10956
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -10211,8 +10971,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10211
10971
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10212
10972
|
}, import("zod/v4/core").$loose>>>;
|
|
10213
10973
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10974
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10214
10975
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10215
10976
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10977
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
10978
|
+
schemaVersion: import("zod").ZodNumber;
|
|
10979
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10980
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10981
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10982
|
+
location: import("zod").ZodEnum<{
|
|
10983
|
+
repository: "repository";
|
|
10984
|
+
host: "host";
|
|
10985
|
+
}>;
|
|
10986
|
+
storeKey: import("zod").ZodString;
|
|
10987
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10988
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10989
|
+
source: import("zod").ZodEnum<{
|
|
10990
|
+
"project-store": "project-store";
|
|
10991
|
+
"legacy-host-library": "legacy-host-library";
|
|
10992
|
+
}>;
|
|
10993
|
+
}, import("zod/v4/core").$loose>>;
|
|
10216
10994
|
}, import("zod/v4/core").$loose>>;
|
|
10217
10995
|
requestId: import("zod").ZodString;
|
|
10218
10996
|
}, import("zod/v4/core").$strip>;
|
|
@@ -10220,6 +10998,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10220
10998
|
type: import("zod").ZodLiteral<"runs.graphs.save.response">;
|
|
10221
10999
|
payload: import("zod").ZodObject<{
|
|
10222
11000
|
graph: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11001
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11002
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10223
11003
|
id: import("zod").ZodString;
|
|
10224
11004
|
name: import("zod").ZodString;
|
|
10225
11005
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10280,6 +11060,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10280
11060
|
backoffMs: import("zod").ZodNumber;
|
|
10281
11061
|
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10282
11062
|
}, import("zod/v4/core").$loose>>;
|
|
11063
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11064
|
+
expression: import("zod").ZodString;
|
|
11065
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11066
|
+
}, import("zod/v4/core").$loose>>;
|
|
10283
11067
|
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10284
11068
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10285
11069
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -10300,8 +11084,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10300
11084
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10301
11085
|
}, import("zod/v4/core").$loose>>>;
|
|
10302
11086
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11087
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10303
11088
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10304
11089
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11090
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11091
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11092
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11093
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11094
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11095
|
+
location: import("zod").ZodEnum<{
|
|
11096
|
+
repository: "repository";
|
|
11097
|
+
host: "host";
|
|
11098
|
+
}>;
|
|
11099
|
+
storeKey: import("zod").ZodString;
|
|
11100
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11101
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11102
|
+
source: import("zod").ZodEnum<{
|
|
11103
|
+
"project-store": "project-store";
|
|
11104
|
+
"legacy-host-library": "legacy-host-library";
|
|
11105
|
+
}>;
|
|
11106
|
+
}, import("zod/v4/core").$loose>>;
|
|
10305
11107
|
}, import("zod/v4/core").$loose>>;
|
|
10306
11108
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10307
11109
|
requestId: import("zod").ZodString;
|
|
@@ -10317,6 +11119,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10317
11119
|
type: import("zod").ZodLiteral<"runs.graphs.changed.notification">;
|
|
10318
11120
|
payload: import("zod").ZodObject<{
|
|
10319
11121
|
graphs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11122
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11123
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10320
11124
|
id: import("zod").ZodString;
|
|
10321
11125
|
name: import("zod").ZodString;
|
|
10322
11126
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10377,6 +11181,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10377
11181
|
backoffMs: import("zod").ZodNumber;
|
|
10378
11182
|
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10379
11183
|
}, import("zod/v4/core").$loose>>;
|
|
11184
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11185
|
+
expression: import("zod").ZodString;
|
|
11186
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11187
|
+
}, import("zod/v4/core").$loose>>;
|
|
10380
11188
|
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10381
11189
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10382
11190
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -10397,19 +11205,38 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10397
11205
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10398
11206
|
}, import("zod/v4/core").$loose>>>;
|
|
10399
11207
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11208
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10400
11209
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10401
11210
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11211
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11212
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11213
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11214
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11215
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11216
|
+
location: import("zod").ZodEnum<{
|
|
11217
|
+
repository: "repository";
|
|
11218
|
+
host: "host";
|
|
11219
|
+
}>;
|
|
11220
|
+
storeKey: import("zod").ZodString;
|
|
11221
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11222
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11223
|
+
source: import("zod").ZodEnum<{
|
|
11224
|
+
"project-store": "project-store";
|
|
11225
|
+
"legacy-host-library": "legacy-host-library";
|
|
11226
|
+
}>;
|
|
11227
|
+
}, import("zod/v4/core").$loose>>;
|
|
10402
11228
|
}, import("zod/v4/core").$loose>>;
|
|
10403
11229
|
}, import("zod/v4/core").$strip>;
|
|
10404
11230
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10405
|
-
type: import("zod").ZodLiteral<"
|
|
11231
|
+
type: import("zod").ZodLiteral<"workflows.graphs.list.response">;
|
|
10406
11232
|
payload: import("zod").ZodObject<{
|
|
10407
|
-
|
|
11233
|
+
graphs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11234
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11235
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10408
11236
|
id: import("zod").ZodString;
|
|
10409
11237
|
name: import("zod").ZodString;
|
|
10410
11238
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10411
|
-
|
|
10412
|
-
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11239
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
10413
11240
|
key: import("zod").ZodString;
|
|
10414
11241
|
label: import("zod").ZodString;
|
|
10415
11242
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10417,53 +11244,113 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10417
11244
|
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10418
11245
|
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10419
11246
|
}, import("zod/v4/core").$loose>>>;
|
|
10420
|
-
|
|
10421
|
-
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
10425
|
-
|
|
10426
|
-
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
|
-
|
|
10433
|
-
|
|
10434
|
-
|
|
10435
|
-
|
|
10436
|
-
|
|
10437
|
-
|
|
10438
|
-
|
|
10439
|
-
|
|
10440
|
-
|
|
10441
|
-
|
|
11247
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11248
|
+
id: import("zod").ZodString;
|
|
11249
|
+
kind: import("zod").ZodString;
|
|
11250
|
+
title: import("zod").ZodString;
|
|
11251
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11252
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11253
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11254
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11255
|
+
templateId: import("zod").ZodString;
|
|
11256
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
11257
|
+
}, import("zod/v4/core").$loose>>;
|
|
11258
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11259
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11260
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11261
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11262
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
11263
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11264
|
+
max: import("zod").ZodNumber;
|
|
11265
|
+
}, import("zod/v4/core").$loose>>;
|
|
11266
|
+
}, import("zod/v4/core").$loose>>;
|
|
11267
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11268
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11269
|
+
key: import("zod").ZodString;
|
|
11270
|
+
type: import("zod").ZodString;
|
|
11271
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11272
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11273
|
+
}, import("zod/v4/core").$loose>>;
|
|
11274
|
+
}, import("zod/v4/core").$loose>>;
|
|
11275
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11276
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11277
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11278
|
+
name: import("zod").ZodString;
|
|
11279
|
+
description: import("zod").ZodString;
|
|
11280
|
+
kind: import("zod").ZodString;
|
|
11281
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11282
|
+
key: import("zod").ZodString;
|
|
11283
|
+
type: import("zod").ZodString;
|
|
11284
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11285
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11286
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11287
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11288
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11289
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11290
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11291
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11292
|
+
maxAttempts: import("zod").ZodNumber;
|
|
11293
|
+
backoffMs: import("zod").ZodNumber;
|
|
11294
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11295
|
+
}, import("zod/v4/core").$loose>>;
|
|
11296
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11297
|
+
expression: import("zod").ZodString;
|
|
11298
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11299
|
+
}, import("zod/v4/core").$loose>>;
|
|
11300
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11301
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11302
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11303
|
+
x: import("zod").ZodNumber;
|
|
11304
|
+
y: import("zod").ZodNumber;
|
|
11305
|
+
}, import("zod/v4/core").$loose>>;
|
|
11306
|
+
}, import("zod/v4/core").$loose>>;
|
|
11307
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11308
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11309
|
+
from: import("zod").ZodString;
|
|
11310
|
+
to: import("zod").ZodString;
|
|
11311
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11312
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11313
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11314
|
+
expression: import("zod").ZodString;
|
|
11315
|
+
}, import("zod/v4/core").$loose>>;
|
|
11316
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11317
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10442
11318
|
}, import("zod/v4/core").$loose>>>;
|
|
10443
|
-
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10444
11319
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11320
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10445
11321
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10446
11322
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11323
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11324
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11325
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11326
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11327
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11328
|
+
location: import("zod").ZodEnum<{
|
|
11329
|
+
repository: "repository";
|
|
11330
|
+
host: "host";
|
|
11331
|
+
}>;
|
|
11332
|
+
storeKey: import("zod").ZodString;
|
|
11333
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11334
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11335
|
+
source: import("zod").ZodEnum<{
|
|
11336
|
+
"project-store": "project-store";
|
|
11337
|
+
"legacy-host-library": "legacy-host-library";
|
|
11338
|
+
}>;
|
|
11339
|
+
}, import("zod/v4/core").$loose>>;
|
|
10447
11340
|
}, import("zod/v4/core").$loose>>;
|
|
10448
11341
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10449
11342
|
requestId: import("zod").ZodString;
|
|
10450
11343
|
}, import("zod/v4/core").$strip>;
|
|
10451
11344
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10452
|
-
type: import("zod").ZodLiteral<"
|
|
10453
|
-
payload: import("zod").ZodObject<{
|
|
10454
|
-
deleted: import("zod").ZodBoolean;
|
|
10455
|
-
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10456
|
-
requestId: import("zod").ZodString;
|
|
10457
|
-
}, import("zod/v4/core").$strip>;
|
|
10458
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10459
|
-
type: import("zod").ZodLiteral<"runs.templates.changed.notification">;
|
|
11345
|
+
type: import("zod").ZodLiteral<"workflows.graph.save.response">;
|
|
10460
11346
|
payload: import("zod").ZodObject<{
|
|
10461
|
-
|
|
11347
|
+
graph: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11348
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11349
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
10462
11350
|
id: import("zod").ZodString;
|
|
10463
11351
|
name: import("zod").ZodString;
|
|
10464
11352
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10465
|
-
|
|
10466
|
-
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11353
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
10467
11354
|
key: import("zod").ZodString;
|
|
10468
11355
|
label: import("zod").ZodString;
|
|
10469
11356
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -10471,21 +11358,687 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10471
11358
|
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10472
11359
|
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10473
11360
|
}, import("zod/v4/core").$loose>>>;
|
|
10474
|
-
|
|
10475
|
-
|
|
10476
|
-
|
|
10477
|
-
|
|
10478
|
-
|
|
10479
|
-
|
|
10480
|
-
|
|
10481
|
-
|
|
10482
|
-
|
|
10483
|
-
|
|
10484
|
-
|
|
10485
|
-
|
|
11361
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11362
|
+
id: import("zod").ZodString;
|
|
11363
|
+
kind: import("zod").ZodString;
|
|
11364
|
+
title: import("zod").ZodString;
|
|
11365
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11366
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11367
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11368
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11369
|
+
templateId: import("zod").ZodString;
|
|
11370
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
11371
|
+
}, import("zod/v4/core").$loose>>;
|
|
11372
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11373
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11374
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11375
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11376
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
11377
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11378
|
+
max: import("zod").ZodNumber;
|
|
11379
|
+
}, import("zod/v4/core").$loose>>;
|
|
11380
|
+
}, import("zod/v4/core").$loose>>;
|
|
11381
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11382
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11383
|
+
key: import("zod").ZodString;
|
|
11384
|
+
type: import("zod").ZodString;
|
|
11385
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11386
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11387
|
+
}, import("zod/v4/core").$loose>>;
|
|
11388
|
+
}, import("zod/v4/core").$loose>>;
|
|
11389
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11390
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11391
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11392
|
+
name: import("zod").ZodString;
|
|
11393
|
+
description: import("zod").ZodString;
|
|
11394
|
+
kind: import("zod").ZodString;
|
|
11395
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11396
|
+
key: import("zod").ZodString;
|
|
11397
|
+
type: import("zod").ZodString;
|
|
11398
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11399
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11400
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11401
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11402
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11403
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11404
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11405
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11406
|
+
maxAttempts: import("zod").ZodNumber;
|
|
11407
|
+
backoffMs: import("zod").ZodNumber;
|
|
11408
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11409
|
+
}, import("zod/v4/core").$loose>>;
|
|
11410
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11411
|
+
expression: import("zod").ZodString;
|
|
11412
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11413
|
+
}, import("zod/v4/core").$loose>>;
|
|
11414
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11415
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11416
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11417
|
+
x: import("zod").ZodNumber;
|
|
11418
|
+
y: import("zod").ZodNumber;
|
|
11419
|
+
}, import("zod/v4/core").$loose>>;
|
|
11420
|
+
}, import("zod/v4/core").$loose>>;
|
|
11421
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11422
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11423
|
+
from: import("zod").ZodString;
|
|
11424
|
+
to: import("zod").ZodString;
|
|
11425
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11426
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11427
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11428
|
+
expression: import("zod").ZodString;
|
|
11429
|
+
}, import("zod/v4/core").$loose>>;
|
|
11430
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11431
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11432
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11433
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11434
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11435
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11436
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11437
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11438
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11439
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11440
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11441
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11442
|
+
location: import("zod").ZodEnum<{
|
|
11443
|
+
repository: "repository";
|
|
11444
|
+
host: "host";
|
|
11445
|
+
}>;
|
|
11446
|
+
storeKey: import("zod").ZodString;
|
|
11447
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11448
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11449
|
+
source: import("zod").ZodEnum<{
|
|
11450
|
+
"project-store": "project-store";
|
|
11451
|
+
"legacy-host-library": "legacy-host-library";
|
|
11452
|
+
}>;
|
|
11453
|
+
}, import("zod/v4/core").$loose>>;
|
|
11454
|
+
}, import("zod/v4/core").$loose>>;
|
|
11455
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11456
|
+
requestId: import("zod").ZodString;
|
|
11457
|
+
}, import("zod/v4/core").$strip>;
|
|
11458
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11459
|
+
type: import("zod").ZodLiteral<"workflows.graph.export.response">;
|
|
11460
|
+
payload: import("zod").ZodObject<{
|
|
11461
|
+
export: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11462
|
+
schemaVersion: import("zod").ZodLiteral<1>;
|
|
11463
|
+
graph: import("zod").ZodObject<{
|
|
11464
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11465
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11466
|
+
id: import("zod").ZodString;
|
|
11467
|
+
name: import("zod").ZodString;
|
|
11468
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11469
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11470
|
+
key: import("zod").ZodString;
|
|
11471
|
+
label: import("zod").ZodString;
|
|
11472
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11473
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11474
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11475
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11476
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11477
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11478
|
+
id: import("zod").ZodString;
|
|
11479
|
+
kind: import("zod").ZodString;
|
|
11480
|
+
title: import("zod").ZodString;
|
|
11481
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11482
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11483
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11484
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11485
|
+
templateId: import("zod").ZodString;
|
|
11486
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
11487
|
+
}, import("zod/v4/core").$loose>>;
|
|
11488
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11489
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11490
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11491
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11492
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
11493
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11494
|
+
max: import("zod").ZodNumber;
|
|
11495
|
+
}, import("zod/v4/core").$loose>>;
|
|
11496
|
+
}, import("zod/v4/core").$loose>>;
|
|
11497
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11498
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11499
|
+
key: import("zod").ZodString;
|
|
11500
|
+
type: import("zod").ZodString;
|
|
11501
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11502
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11503
|
+
}, import("zod/v4/core").$loose>>;
|
|
11504
|
+
}, import("zod/v4/core").$loose>>;
|
|
11505
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11506
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11507
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11508
|
+
name: import("zod").ZodString;
|
|
11509
|
+
description: import("zod").ZodString;
|
|
11510
|
+
kind: import("zod").ZodString;
|
|
11511
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11512
|
+
key: import("zod").ZodString;
|
|
11513
|
+
type: import("zod").ZodString;
|
|
11514
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11515
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11516
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11517
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11518
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11519
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11520
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11521
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11522
|
+
maxAttempts: import("zod").ZodNumber;
|
|
11523
|
+
backoffMs: import("zod").ZodNumber;
|
|
11524
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11525
|
+
}, import("zod/v4/core").$loose>>;
|
|
11526
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11527
|
+
expression: import("zod").ZodString;
|
|
11528
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11529
|
+
}, import("zod/v4/core").$loose>>;
|
|
11530
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11531
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11532
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11533
|
+
x: import("zod").ZodNumber;
|
|
11534
|
+
y: import("zod").ZodNumber;
|
|
11535
|
+
}, import("zod/v4/core").$loose>>;
|
|
11536
|
+
}, import("zod/v4/core").$loose>>;
|
|
11537
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11538
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11539
|
+
from: import("zod").ZodString;
|
|
11540
|
+
to: import("zod").ZodString;
|
|
11541
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11542
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11543
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11544
|
+
expression: import("zod").ZodString;
|
|
11545
|
+
}, import("zod/v4/core").$loose>>;
|
|
11546
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11547
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11548
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11549
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11550
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11551
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11552
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11553
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11554
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11555
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11556
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11557
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11558
|
+
location: import("zod").ZodEnum<{
|
|
11559
|
+
repository: "repository";
|
|
11560
|
+
host: "host";
|
|
11561
|
+
}>;
|
|
11562
|
+
storeKey: import("zod").ZodString;
|
|
11563
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11564
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11565
|
+
source: import("zod").ZodEnum<{
|
|
11566
|
+
"project-store": "project-store";
|
|
11567
|
+
"legacy-host-library": "legacy-host-library";
|
|
11568
|
+
}>;
|
|
11569
|
+
}, import("zod/v4/core").$loose>>;
|
|
11570
|
+
}, import("zod/v4/core").$loose>;
|
|
11571
|
+
source: import("zod").ZodObject<{
|
|
11572
|
+
storeKey: import("zod").ZodString;
|
|
11573
|
+
location: import("zod").ZodEnum<{
|
|
11574
|
+
repository: "repository";
|
|
11575
|
+
host: "host";
|
|
11576
|
+
}>;
|
|
11577
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11578
|
+
source: import("zod").ZodEnum<{
|
|
11579
|
+
"project-store": "project-store";
|
|
11580
|
+
"legacy-host-library": "legacy-host-library";
|
|
11581
|
+
}>;
|
|
11582
|
+
}, import("zod/v4/core").$loose>;
|
|
11583
|
+
exportedAt: import("zod").ZodString;
|
|
11584
|
+
contentHash: import("zod").ZodString;
|
|
11585
|
+
}, import("zod/v4/core").$loose>>;
|
|
11586
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11587
|
+
requestId: import("zod").ZodString;
|
|
11588
|
+
}, import("zod/v4/core").$strip>;
|
|
11589
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11590
|
+
type: import("zod").ZodLiteral<"workflows.graph.import.response">;
|
|
11591
|
+
payload: import("zod").ZodObject<{
|
|
11592
|
+
result: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11593
|
+
status: import("zod").ZodEnum<{
|
|
11594
|
+
failed: "failed";
|
|
11595
|
+
review_required: "review_required";
|
|
11596
|
+
imported: "imported";
|
|
11597
|
+
}>;
|
|
11598
|
+
graph: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11599
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11600
|
+
formatVersion: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11601
|
+
id: import("zod").ZodString;
|
|
11602
|
+
name: import("zod").ZodString;
|
|
11603
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11604
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11605
|
+
key: import("zod").ZodString;
|
|
11606
|
+
label: import("zod").ZodString;
|
|
11607
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11608
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11609
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11610
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11611
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11612
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11613
|
+
id: import("zod").ZodString;
|
|
11614
|
+
kind: import("zod").ZodString;
|
|
11615
|
+
title: import("zod").ZodString;
|
|
11616
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11617
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11618
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11619
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11620
|
+
templateId: import("zod").ZodString;
|
|
11621
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
11622
|
+
}, import("zod/v4/core").$loose>>;
|
|
11623
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11624
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11625
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11626
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11627
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
11628
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11629
|
+
max: import("zod").ZodNumber;
|
|
11630
|
+
}, import("zod/v4/core").$loose>>;
|
|
11631
|
+
}, import("zod/v4/core").$loose>>;
|
|
11632
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11633
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11634
|
+
key: import("zod").ZodString;
|
|
11635
|
+
type: import("zod").ZodString;
|
|
11636
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11637
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11638
|
+
}, import("zod/v4/core").$loose>>;
|
|
11639
|
+
}, import("zod/v4/core").$loose>>;
|
|
11640
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11641
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11642
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11643
|
+
name: import("zod").ZodString;
|
|
11644
|
+
description: import("zod").ZodString;
|
|
11645
|
+
kind: import("zod").ZodString;
|
|
11646
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11647
|
+
key: import("zod").ZodString;
|
|
11648
|
+
type: import("zod").ZodString;
|
|
11649
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11650
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11651
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11652
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11653
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11654
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11655
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11656
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11657
|
+
maxAttempts: import("zod").ZodNumber;
|
|
11658
|
+
backoffMs: import("zod").ZodNumber;
|
|
11659
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11660
|
+
}, import("zod/v4/core").$loose>>;
|
|
11661
|
+
check: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11662
|
+
expression: import("zod").ZodString;
|
|
11663
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11664
|
+
}, import("zod/v4/core").$loose>>;
|
|
11665
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11666
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11667
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11668
|
+
x: import("zod").ZodNumber;
|
|
11669
|
+
y: import("zod").ZodNumber;
|
|
11670
|
+
}, import("zod/v4/core").$loose>>;
|
|
11671
|
+
}, import("zod/v4/core").$loose>>;
|
|
11672
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11673
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11674
|
+
from: import("zod").ZodString;
|
|
11675
|
+
to: import("zod").ZodString;
|
|
11676
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11677
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11678
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11679
|
+
expression: import("zod").ZodString;
|
|
11680
|
+
}, import("zod/v4/core").$loose>>;
|
|
11681
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11682
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11683
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11684
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11685
|
+
requires: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11686
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11687
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11688
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11689
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11690
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11691
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11692
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11693
|
+
location: import("zod").ZodEnum<{
|
|
11694
|
+
repository: "repository";
|
|
11695
|
+
host: "host";
|
|
11696
|
+
}>;
|
|
11697
|
+
storeKey: import("zod").ZodString;
|
|
11698
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11699
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11700
|
+
source: import("zod").ZodEnum<{
|
|
11701
|
+
"project-store": "project-store";
|
|
11702
|
+
"legacy-host-library": "legacy-host-library";
|
|
11703
|
+
}>;
|
|
11704
|
+
}, import("zod/v4/core").$loose>>;
|
|
11705
|
+
}, import("zod/v4/core").$loose>>;
|
|
11706
|
+
source: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11707
|
+
storeKey: import("zod").ZodString;
|
|
11708
|
+
location: import("zod").ZodEnum<{
|
|
11709
|
+
repository: "repository";
|
|
11710
|
+
host: "host";
|
|
11711
|
+
}>;
|
|
11712
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11713
|
+
source: import("zod").ZodEnum<{
|
|
11714
|
+
"project-store": "project-store";
|
|
11715
|
+
"legacy-host-library": "legacy-host-library";
|
|
11716
|
+
}>;
|
|
11717
|
+
}, import("zod/v4/core").$loose>>;
|
|
11718
|
+
destination: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11719
|
+
storeKey: import("zod").ZodString;
|
|
11720
|
+
location: import("zod").ZodEnum<{
|
|
11721
|
+
repository: "repository";
|
|
11722
|
+
host: "host";
|
|
11723
|
+
}>;
|
|
11724
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11725
|
+
source: import("zod").ZodEnum<{
|
|
11726
|
+
"project-store": "project-store";
|
|
11727
|
+
"legacy-host-library": "legacy-host-library";
|
|
11728
|
+
}>;
|
|
11729
|
+
}, import("zod/v4/core").$loose>>;
|
|
11730
|
+
contentHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11731
|
+
remediation: import("zod").ZodString;
|
|
11732
|
+
}, import("zod/v4/core").$loose>>;
|
|
11733
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11734
|
+
requestId: import("zod").ZodString;
|
|
11735
|
+
}, import("zod/v4/core").$strip>;
|
|
11736
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11737
|
+
type: import("zod").ZodLiteral<"runs.templates.list.response">;
|
|
11738
|
+
payload: import("zod").ZodObject<{
|
|
11739
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11740
|
+
id: import("zod").ZodString;
|
|
11741
|
+
name: import("zod").ZodString;
|
|
11742
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11743
|
+
content: import("zod").ZodString;
|
|
11744
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11745
|
+
key: import("zod").ZodString;
|
|
11746
|
+
label: import("zod").ZodString;
|
|
11747
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11748
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11749
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11750
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11751
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11752
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11753
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11754
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11755
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11756
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11757
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11758
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11759
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11760
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11761
|
+
location: import("zod").ZodEnum<{
|
|
11762
|
+
repository: "repository";
|
|
11763
|
+
host: "host";
|
|
11764
|
+
}>;
|
|
11765
|
+
storeKey: import("zod").ZodString;
|
|
11766
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11767
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11768
|
+
source: import("zod").ZodEnum<{
|
|
11769
|
+
"project-store": "project-store";
|
|
11770
|
+
"legacy-host-library": "legacy-host-library";
|
|
11771
|
+
}>;
|
|
11772
|
+
}, import("zod/v4/core").$loose>>;
|
|
11773
|
+
}, import("zod/v4/core").$loose>>;
|
|
11774
|
+
requestId: import("zod").ZodString;
|
|
11775
|
+
}, import("zod/v4/core").$strip>;
|
|
11776
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11777
|
+
type: import("zod").ZodLiteral<"runs.templates.save.response">;
|
|
11778
|
+
payload: import("zod").ZodObject<{
|
|
11779
|
+
template: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11780
|
+
id: import("zod").ZodString;
|
|
11781
|
+
name: import("zod").ZodString;
|
|
11782
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11783
|
+
content: import("zod").ZodString;
|
|
11784
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11785
|
+
key: import("zod").ZodString;
|
|
11786
|
+
label: import("zod").ZodString;
|
|
11787
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11788
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11789
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11790
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11791
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11792
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11793
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11794
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11795
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11796
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11797
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11798
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11799
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11800
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11801
|
+
location: import("zod").ZodEnum<{
|
|
11802
|
+
repository: "repository";
|
|
11803
|
+
host: "host";
|
|
11804
|
+
}>;
|
|
11805
|
+
storeKey: import("zod").ZodString;
|
|
11806
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11807
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11808
|
+
source: import("zod").ZodEnum<{
|
|
11809
|
+
"project-store": "project-store";
|
|
11810
|
+
"legacy-host-library": "legacy-host-library";
|
|
11811
|
+
}>;
|
|
11812
|
+
}, import("zod/v4/core").$loose>>;
|
|
11813
|
+
}, import("zod/v4/core").$loose>>;
|
|
11814
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11815
|
+
requestId: import("zod").ZodString;
|
|
11816
|
+
}, import("zod/v4/core").$strip>;
|
|
11817
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11818
|
+
type: import("zod").ZodLiteral<"runs.templates.delete.response">;
|
|
11819
|
+
payload: import("zod").ZodObject<{
|
|
11820
|
+
deleted: import("zod").ZodBoolean;
|
|
11821
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11822
|
+
requestId: import("zod").ZodString;
|
|
11823
|
+
}, import("zod/v4/core").$strip>;
|
|
11824
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11825
|
+
type: import("zod").ZodLiteral<"runs.templates.changed.notification">;
|
|
11826
|
+
payload: import("zod").ZodObject<{
|
|
11827
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11828
|
+
id: import("zod").ZodString;
|
|
11829
|
+
name: import("zod").ZodString;
|
|
11830
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11831
|
+
content: import("zod").ZodString;
|
|
11832
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11833
|
+
key: import("zod").ZodString;
|
|
11834
|
+
label: import("zod").ZodString;
|
|
11835
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11836
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11837
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11838
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11839
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11840
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11841
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11842
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11843
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11844
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11845
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11846
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11847
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11848
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11849
|
+
location: import("zod").ZodEnum<{
|
|
11850
|
+
repository: "repository";
|
|
11851
|
+
host: "host";
|
|
11852
|
+
}>;
|
|
11853
|
+
storeKey: import("zod").ZodString;
|
|
11854
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11855
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11856
|
+
source: import("zod").ZodEnum<{
|
|
11857
|
+
"project-store": "project-store";
|
|
11858
|
+
"legacy-host-library": "legacy-host-library";
|
|
11859
|
+
}>;
|
|
11860
|
+
}, import("zod/v4/core").$loose>>;
|
|
11861
|
+
}, import("zod/v4/core").$loose>>;
|
|
11862
|
+
}, import("zod/v4/core").$strip>;
|
|
11863
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11864
|
+
type: import("zod").ZodLiteral<"workflows.templates.list.response">;
|
|
11865
|
+
payload: import("zod").ZodObject<{
|
|
11866
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11867
|
+
id: import("zod").ZodString;
|
|
11868
|
+
name: import("zod").ZodString;
|
|
11869
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11870
|
+
content: import("zod").ZodString;
|
|
11871
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11872
|
+
key: import("zod").ZodString;
|
|
11873
|
+
label: import("zod").ZodString;
|
|
11874
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11875
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11876
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11877
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11878
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11879
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11880
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11881
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11882
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11883
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11884
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11885
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11886
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11887
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11888
|
+
location: import("zod").ZodEnum<{
|
|
11889
|
+
repository: "repository";
|
|
11890
|
+
host: "host";
|
|
11891
|
+
}>;
|
|
11892
|
+
storeKey: import("zod").ZodString;
|
|
11893
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11894
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11895
|
+
source: import("zod").ZodEnum<{
|
|
11896
|
+
"project-store": "project-store";
|
|
11897
|
+
"legacy-host-library": "legacy-host-library";
|
|
11898
|
+
}>;
|
|
11899
|
+
}, import("zod/v4/core").$loose>>;
|
|
11900
|
+
}, import("zod/v4/core").$loose>>;
|
|
11901
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11902
|
+
requestId: import("zod").ZodString;
|
|
11903
|
+
}, import("zod/v4/core").$strip>;
|
|
11904
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11905
|
+
type: import("zod").ZodLiteral<"workflows.template.save.response">;
|
|
11906
|
+
payload: import("zod").ZodObject<{
|
|
11907
|
+
template: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11908
|
+
id: import("zod").ZodString;
|
|
11909
|
+
name: import("zod").ZodString;
|
|
11910
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11911
|
+
content: import("zod").ZodString;
|
|
11912
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
11913
|
+
key: import("zod").ZodString;
|
|
11914
|
+
label: import("zod").ZodString;
|
|
11915
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11916
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11917
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11918
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11919
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11920
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11921
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11922
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11923
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11924
|
+
workflowStorage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11925
|
+
schemaVersion: import("zod").ZodNumber;
|
|
11926
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11927
|
+
projectId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11928
|
+
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11929
|
+
location: import("zod").ZodEnum<{
|
|
11930
|
+
repository: "repository";
|
|
11931
|
+
host: "host";
|
|
11932
|
+
}>;
|
|
11933
|
+
storeKey: import("zod").ZodString;
|
|
11934
|
+
hostId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11935
|
+
hostName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11936
|
+
source: import("zod").ZodEnum<{
|
|
11937
|
+
"project-store": "project-store";
|
|
11938
|
+
"legacy-host-library": "legacy-host-library";
|
|
11939
|
+
}>;
|
|
11940
|
+
}, import("zod/v4/core").$loose>>;
|
|
11941
|
+
}, import("zod/v4/core").$loose>>;
|
|
11942
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11943
|
+
requestId: import("zod").ZodString;
|
|
11944
|
+
}, import("zod/v4/core").$strip>;
|
|
11945
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11946
|
+
type: import("zod").ZodLiteral<"workflows.storage.transfer.response">;
|
|
11947
|
+
payload: import("zod").ZodObject<{
|
|
11948
|
+
receipt: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11949
|
+
schemaVersion: import("zod").ZodLiteral<1>;
|
|
11950
|
+
receiptId: import("zod").ZodString;
|
|
11951
|
+
recordKind: import("zod").ZodEnum<{
|
|
11952
|
+
graph: "graph";
|
|
11953
|
+
run: "run";
|
|
11954
|
+
template: "template";
|
|
11955
|
+
}>;
|
|
11956
|
+
recordId: import("zod").ZodString;
|
|
11957
|
+
mode: import("zod").ZodEnum<{
|
|
11958
|
+
copy: "copy";
|
|
11959
|
+
move: "move";
|
|
11960
|
+
}>;
|
|
11961
|
+
source: import("zod").ZodObject<{
|
|
11962
|
+
source: import("zod").ZodEnum<{
|
|
11963
|
+
repository: "repository";
|
|
11964
|
+
host: "host";
|
|
11965
|
+
"legacy-host-library": "legacy-host-library";
|
|
11966
|
+
}>;
|
|
11967
|
+
storeKey: import("zod").ZodString;
|
|
11968
|
+
}, import("zod/v4/core").$strip>;
|
|
11969
|
+
destination: import("zod").ZodObject<{
|
|
11970
|
+
location: import("zod").ZodEnum<{
|
|
11971
|
+
repository: "repository";
|
|
11972
|
+
host: "host";
|
|
11973
|
+
}>;
|
|
11974
|
+
storeKey: import("zod").ZodString;
|
|
11975
|
+
}, import("zod/v4/core").$strip>;
|
|
11976
|
+
contentHash: import("zod").ZodString;
|
|
11977
|
+
status: import("zod").ZodEnum<{
|
|
11978
|
+
failed: "failed";
|
|
11979
|
+
moved: "moved";
|
|
11980
|
+
prepared: "prepared";
|
|
11981
|
+
verified: "verified";
|
|
11982
|
+
"source-retained": "source-retained";
|
|
11983
|
+
}>;
|
|
11984
|
+
createdAt: import("zod").ZodString;
|
|
11985
|
+
updatedAt: import("zod").ZodString;
|
|
11986
|
+
recovery: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11987
|
+
}, import("zod/v4/core").$strip>>;
|
|
11988
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11989
|
+
requestId: import("zod").ZodString;
|
|
11990
|
+
}, import("zod/v4/core").$strip>;
|
|
11991
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11992
|
+
type: import("zod").ZodLiteral<"workflows.start.response">;
|
|
11993
|
+
payload: import("zod").ZodObject<{
|
|
11994
|
+
runId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11995
|
+
agentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11996
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11997
|
+
confirmation: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
11998
|
+
reason: import("zod").ZodString;
|
|
11999
|
+
plannedAgentCount: import("zod").ZodNumber;
|
|
12000
|
+
fanOutPhaseCount: import("zod").ZodNumber;
|
|
12001
|
+
phaseCount: import("zod").ZodNumber;
|
|
12002
|
+
agentCap: import("zod").ZodNumber;
|
|
12003
|
+
threshold: import("zod").ZodNumber;
|
|
12004
|
+
}, import("zod/v4/core").$loose>>;
|
|
12005
|
+
confirmationToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12006
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12007
|
+
requestId: import("zod").ZodString;
|
|
12008
|
+
}, import("zod/v4/core").$strip>;
|
|
12009
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12010
|
+
type: import("zod").ZodLiteral<"runs.start.response">;
|
|
12011
|
+
payload: import("zod").ZodObject<{
|
|
12012
|
+
runId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12013
|
+
agentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12014
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12015
|
+
confirmation: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12016
|
+
reason: import("zod").ZodString;
|
|
12017
|
+
plannedAgentCount: import("zod").ZodNumber;
|
|
12018
|
+
fanOutPhaseCount: import("zod").ZodNumber;
|
|
12019
|
+
phaseCount: import("zod").ZodNumber;
|
|
12020
|
+
agentCap: import("zod").ZodNumber;
|
|
12021
|
+
threshold: import("zod").ZodNumber;
|
|
12022
|
+
}, import("zod/v4/core").$loose>>;
|
|
12023
|
+
confirmationToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10486
12024
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10487
12025
|
requestId: import("zod").ZodString;
|
|
10488
12026
|
}, import("zod/v4/core").$strip>;
|
|
12027
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12028
|
+
type: import("zod").ZodLiteral<"workflows.start_confirmation.respond.response">;
|
|
12029
|
+
payload: import("zod").ZodObject<{
|
|
12030
|
+
runId: import("zod").ZodString;
|
|
12031
|
+
accepted: import("zod").ZodBoolean;
|
|
12032
|
+
requestId: import("zod").ZodString;
|
|
12033
|
+
}, import("zod/v4/core").$strip>;
|
|
12034
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12035
|
+
type: import("zod").ZodLiteral<"project.workflow.store.set.response">;
|
|
12036
|
+
payload: import("zod").ZodObject<{
|
|
12037
|
+
requestId: import("zod").ZodString;
|
|
12038
|
+
projectId: import("zod").ZodString;
|
|
12039
|
+
accepted: import("zod").ZodBoolean;
|
|
12040
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12041
|
+
}, import("zod/v4/core").$strip>;
|
|
10489
12042
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10490
12043
|
type: import("zod").ZodLiteral<"checkout_merge_response">;
|
|
10491
12044
|
payload: import("zod").ZodObject<{
|
|
@@ -11028,6 +12581,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11028
12581
|
checkDetails: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11029
12582
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11030
12583
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
12584
|
+
reviewThreads: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
12585
|
+
commentReactions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11031
12586
|
issues: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11032
12587
|
listRepositories: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11033
12588
|
createRepository: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
@@ -11074,6 +12629,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11074
12629
|
body: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
11075
12630
|
createdAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
11076
12631
|
url: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
12632
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12633
|
+
content: import("zod").ZodEnum<{
|
|
12634
|
+
THUMBS_UP: "THUMBS_UP";
|
|
12635
|
+
THUMBS_DOWN: "THUMBS_DOWN";
|
|
12636
|
+
LAUGH: "LAUGH";
|
|
12637
|
+
HOORAY: "HOORAY";
|
|
12638
|
+
CONFUSED: "CONFUSED";
|
|
12639
|
+
HEART: "HEART";
|
|
12640
|
+
ROCKET: "ROCKET";
|
|
12641
|
+
EYES: "EYES";
|
|
12642
|
+
}>;
|
|
12643
|
+
count: import("zod").ZodNumber;
|
|
12644
|
+
viewerHasReacted: import("zod").ZodBoolean;
|
|
12645
|
+
}, import("zod/v4/core").$strip>>>;
|
|
11077
12646
|
reviewId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11078
12647
|
threadId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11079
12648
|
threadIsResolved: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -11086,6 +12655,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11086
12655
|
isOutdated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11087
12656
|
}, import("zod/v4/core").$strip>>;
|
|
11088
12657
|
}, import("zod/v4/core").$strip>], "kind">>>>>;
|
|
12658
|
+
commentReactionsSupported: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11089
12659
|
truncated: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11090
12660
|
error: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodPreprocess<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
11091
12661
|
kind: import("zod").ZodLiteral<"not_found">;
|
|
@@ -11101,6 +12671,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11101
12671
|
githubFeaturesEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
11102
12672
|
authState: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
11103
12673
|
}, import("zod/v4/core").$strip>>>;
|
|
12674
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12675
|
+
type: import("zod").ZodLiteral<"hosting.pull_request_thread.set_resolved.response">;
|
|
12676
|
+
payload: import("zod").ZodObject<{
|
|
12677
|
+
success: import("zod").ZodBoolean;
|
|
12678
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12679
|
+
requestId: import("zod").ZodString;
|
|
12680
|
+
}, import("zod/v4/core").$strip>;
|
|
12681
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12682
|
+
type: import("zod").ZodLiteral<"hosting.pull_request_comment.set_reaction.response">;
|
|
12683
|
+
payload: import("zod").ZodObject<{
|
|
12684
|
+
success: import("zod").ZodBoolean;
|
|
12685
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12686
|
+
requestId: import("zod").ZodString;
|
|
12687
|
+
}, import("zod/v4/core").$strip>;
|
|
11104
12688
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11105
12689
|
type: import("zod").ZodLiteral<"checkout_switch_branch_response">;
|
|
11106
12690
|
payload: import("zod").ZodObject<{
|
|
@@ -11492,6 +13076,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11492
13076
|
jira: "jira";
|
|
11493
13077
|
}>;
|
|
11494
13078
|
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
13079
|
+
boardOwner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11495
13080
|
}, import("zod/v4/core").$loose>>>;
|
|
11496
13081
|
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11497
13082
|
projectRootPath: import("zod").ZodString;
|
|
@@ -11511,6 +13096,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11511
13096
|
name: import("zod").ZodString;
|
|
11512
13097
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11513
13098
|
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
13099
|
+
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11514
13100
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
11515
13101
|
status: import("zod").ZodEnum<{
|
|
11516
13102
|
running: "running";
|
|
@@ -11699,6 +13285,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11699
13285
|
worktreeRoot?: string | undefined;
|
|
11700
13286
|
}>>]>;
|
|
11701
13287
|
}, import("zod/v4/core").$strip>>;
|
|
13288
|
+
syncSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11702
13289
|
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
11703
13290
|
workspaceDirectory: string;
|
|
11704
13291
|
id: string;
|
|
@@ -11737,11 +13324,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11737
13324
|
[x: string]: unknown;
|
|
11738
13325
|
adapter: "github" | "jira";
|
|
11739
13326
|
boardId?: string | null | undefined;
|
|
13327
|
+
boardOwner?: string | null | undefined;
|
|
11740
13328
|
} | null | undefined;
|
|
11741
13329
|
projectCustomIconRevision?: string | null | undefined;
|
|
11742
13330
|
worktreeSlug?: string | undefined;
|
|
11743
13331
|
title?: string | null | undefined;
|
|
11744
13332
|
pinnedAt?: string | null | undefined;
|
|
13333
|
+
labels?: string[] | undefined;
|
|
11745
13334
|
diffStat?: {
|
|
11746
13335
|
additions: number;
|
|
11747
13336
|
deletions: number;
|
|
@@ -11824,6 +13413,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11824
13413
|
};
|
|
11825
13414
|
workspaceName?: string | null | undefined;
|
|
11826
13415
|
} | undefined;
|
|
13416
|
+
syncSeq?: number | undefined;
|
|
11827
13417
|
}, {
|
|
11828
13418
|
id: string;
|
|
11829
13419
|
projectId: string;
|
|
@@ -11861,12 +13451,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11861
13451
|
[x: string]: unknown;
|
|
11862
13452
|
adapter: "github" | "jira";
|
|
11863
13453
|
boardId?: string | null | undefined;
|
|
13454
|
+
boardOwner?: string | null | undefined;
|
|
11864
13455
|
} | null | undefined;
|
|
11865
13456
|
projectCustomIconRevision?: string | null | undefined;
|
|
11866
13457
|
workspaceDirectory?: string | undefined;
|
|
11867
13458
|
worktreeSlug?: string | undefined;
|
|
11868
13459
|
title?: string | null | undefined;
|
|
11869
13460
|
pinnedAt?: string | null | undefined;
|
|
13461
|
+
labels?: string[] | undefined;
|
|
11870
13462
|
diffStat?: {
|
|
11871
13463
|
additions: number;
|
|
11872
13464
|
deletions: number;
|
|
@@ -11949,6 +13541,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11949
13541
|
};
|
|
11950
13542
|
workspaceName?: string | null | undefined;
|
|
11951
13543
|
} | undefined;
|
|
13544
|
+
syncSeq?: number | undefined;
|
|
11952
13545
|
}>>>;
|
|
11953
13546
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11954
13547
|
errorCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -13452,6 +15045,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13452
15045
|
path: import("zod").ZodString;
|
|
13453
15046
|
absolutePath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13454
15047
|
body: import("zod").ZodString;
|
|
15048
|
+
bodyDigest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13455
15049
|
}, import("zod/v4/core").$strip>>>;
|
|
13456
15050
|
findings: import("zod").ZodArray<import("zod").ZodObject<{
|
|
13457
15051
|
kind: import("zod").ZodEnum<{
|
|
@@ -13852,7 +15446,86 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13852
15446
|
path: import("zod").ZodString;
|
|
13853
15447
|
absolutePath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13854
15448
|
body: import("zod").ZodString;
|
|
15449
|
+
bodyDigest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15450
|
+
}, import("zod/v4/core").$strip>>;
|
|
15451
|
+
}, import("zod/v4/core").$strip>;
|
|
15452
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15453
|
+
type: import("zod").ZodLiteral<"project.knowledge.refine.apply.response">;
|
|
15454
|
+
payload: import("zod").ZodObject<{
|
|
15455
|
+
requestId: import("zod").ZodString;
|
|
15456
|
+
record: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
15457
|
+
id: import("zod").ZodString;
|
|
15458
|
+
kind: import("zod").ZodEnum<{
|
|
15459
|
+
project: "project";
|
|
15460
|
+
reference: "reference";
|
|
15461
|
+
decision: "decision";
|
|
15462
|
+
constraint: "constraint";
|
|
15463
|
+
requirement: "requirement";
|
|
15464
|
+
architecture: "architecture";
|
|
15465
|
+
finding: "finding";
|
|
15466
|
+
}>;
|
|
15467
|
+
title: import("zod").ZodString;
|
|
15468
|
+
statement: import("zod").ZodString;
|
|
15469
|
+
statementDigest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15470
|
+
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15471
|
+
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
15472
|
+
status: import("zod").ZodEnum<{
|
|
15473
|
+
superseded: "superseded";
|
|
15474
|
+
proposed: "proposed";
|
|
15475
|
+
confirmed: "confirmed";
|
|
15476
|
+
}>;
|
|
15477
|
+
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
15478
|
+
reference: "reference";
|
|
15479
|
+
charter: "charter";
|
|
15480
|
+
in_build: "in_build";
|
|
15481
|
+
partial: "partial";
|
|
15482
|
+
blocked: "blocked";
|
|
15483
|
+
complete: "complete";
|
|
15484
|
+
deferred: "deferred";
|
|
15485
|
+
cancelled: "cancelled";
|
|
15486
|
+
}>>;
|
|
15487
|
+
progress: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
15488
|
+
completed: import("zod").ZodNumber;
|
|
15489
|
+
total: import("zod").ZodNumber;
|
|
15490
|
+
unit: import("zod").ZodString;
|
|
15491
|
+
}, import("zod/v4/core").$strip>>;
|
|
15492
|
+
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
15493
|
+
read: "read";
|
|
15494
|
+
unevaluated: "unevaluated";
|
|
15495
|
+
adopted: "adopted";
|
|
15496
|
+
rejected: "rejected";
|
|
15497
|
+
dependency: "dependency";
|
|
15498
|
+
}>>;
|
|
15499
|
+
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15500
|
+
createdAt: import("zod").ZodString;
|
|
15501
|
+
updatedAt: import("zod").ZodString;
|
|
15502
|
+
provenance: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
15503
|
+
text: import("zod").ZodString;
|
|
15504
|
+
recordedAt: import("zod").ZodString;
|
|
15505
|
+
source: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15506
|
+
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15507
|
+
affects: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
15508
|
+
}, import("zod/v4/core").$strip>>>;
|
|
15509
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15510
|
+
absolutePath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15511
|
+
}, import("zod/v4/core").$strip>>;
|
|
15512
|
+
page: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
15513
|
+
slug: import("zod").ZodString;
|
|
15514
|
+
title: import("zod").ZodString;
|
|
15515
|
+
path: import("zod").ZodString;
|
|
15516
|
+
absolutePath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15517
|
+
body: import("zod").ZodString;
|
|
15518
|
+
bodyDigest: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13855
15519
|
}, import("zod/v4/core").$strip>>;
|
|
15520
|
+
demoted: import("zod").ZodBoolean;
|
|
15521
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15522
|
+
}, import("zod/v4/core").$strip>;
|
|
15523
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15524
|
+
type: import("zod").ZodLiteral<"project.knowledge.refinement.propose.response">;
|
|
15525
|
+
payload: import("zod").ZodObject<{
|
|
15526
|
+
requestId: import("zod").ZodString;
|
|
15527
|
+
content: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15528
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13856
15529
|
}, import("zod/v4/core").$strip>;
|
|
13857
15530
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
13858
15531
|
type: import("zod").ZodLiteral<"project.knowledge.delete.response">;
|
|
@@ -14395,6 +16068,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14395
16068
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14396
16069
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14397
16070
|
}, import("zod/v4/core").$strip>;
|
|
16071
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16072
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16073
|
+
definitionId: import("zod").ZodString;
|
|
16074
|
+
projectRoot: import("zod").ZodString;
|
|
14398
16075
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14399
16076
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14400
16077
|
type: import("zod").ZodLiteral<"every">;
|
|
@@ -14467,6 +16144,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14467
16144
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14468
16145
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14469
16146
|
}, import("zod/v4/core").$strip>;
|
|
16147
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16148
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16149
|
+
definitionId: import("zod").ZodString;
|
|
16150
|
+
projectRoot: import("zod").ZodString;
|
|
14470
16151
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14471
16152
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14472
16153
|
type: import("zod").ZodLiteral<"every">;
|
|
@@ -14539,6 +16220,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14539
16220
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14540
16221
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14541
16222
|
}, import("zod/v4/core").$strip>;
|
|
16223
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16224
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16225
|
+
definitionId: import("zod").ZodString;
|
|
16226
|
+
projectRoot: import("zod").ZodString;
|
|
14542
16227
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14543
16228
|
status: import("zod").ZodEnum<{
|
|
14544
16229
|
completed: "completed";
|
|
@@ -14570,6 +16255,51 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14570
16255
|
failed: "failed";
|
|
14571
16256
|
succeeded: "succeeded";
|
|
14572
16257
|
}>;
|
|
16258
|
+
target: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
16259
|
+
type: import("zod").ZodLiteral<"agent">;
|
|
16260
|
+
agentId: import("zod").ZodGUID;
|
|
16261
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16262
|
+
type: import("zod").ZodLiteral<"new-agent">;
|
|
16263
|
+
config: import("zod").ZodObject<{
|
|
16264
|
+
provider: import("zod").ZodString;
|
|
16265
|
+
cwd: import("zod").ZodString;
|
|
16266
|
+
personality: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16267
|
+
agentProfile: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16268
|
+
modeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16269
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16270
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16271
|
+
archiveOnFinish: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16272
|
+
isolation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
16273
|
+
worktree: "worktree";
|
|
16274
|
+
local: "local";
|
|
16275
|
+
}>>;
|
|
16276
|
+
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
16277
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
16278
|
+
approvalPolicy: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16279
|
+
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16280
|
+
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16281
|
+
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16282
|
+
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16283
|
+
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16284
|
+
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16285
|
+
}, import("zod/v4/core").$strip>>;
|
|
16286
|
+
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16287
|
+
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16288
|
+
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16289
|
+
}, import("zod/v4/core").$strip>;
|
|
16290
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16291
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16292
|
+
definitionId: import("zod").ZodString;
|
|
16293
|
+
projectRoot: import("zod").ZodString;
|
|
16294
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
16295
|
+
workflow: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16296
|
+
definitionId: import("zod").ZodString;
|
|
16297
|
+
title: import("zod").ZodString;
|
|
16298
|
+
kind: import("zod").ZodString;
|
|
16299
|
+
projectRoot: import("zod").ZodString;
|
|
16300
|
+
fingerprint: import("zod").ZodString;
|
|
16301
|
+
runId: import("zod").ZodString;
|
|
16302
|
+
}, import("zod/v4/core").$strip>>;
|
|
14573
16303
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
14574
16304
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
14575
16305
|
personalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -14595,6 +16325,51 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14595
16325
|
failed: "failed";
|
|
14596
16326
|
succeeded: "succeeded";
|
|
14597
16327
|
}>;
|
|
16328
|
+
target: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
16329
|
+
type: import("zod").ZodLiteral<"agent">;
|
|
16330
|
+
agentId: import("zod").ZodGUID;
|
|
16331
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16332
|
+
type: import("zod").ZodLiteral<"new-agent">;
|
|
16333
|
+
config: import("zod").ZodObject<{
|
|
16334
|
+
provider: import("zod").ZodString;
|
|
16335
|
+
cwd: import("zod").ZodString;
|
|
16336
|
+
personality: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16337
|
+
agentProfile: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16338
|
+
modeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16339
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16340
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16341
|
+
archiveOnFinish: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16342
|
+
isolation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
16343
|
+
worktree: "worktree";
|
|
16344
|
+
local: "local";
|
|
16345
|
+
}>>;
|
|
16346
|
+
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
16347
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
16348
|
+
approvalPolicy: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16349
|
+
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16350
|
+
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16351
|
+
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16352
|
+
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16353
|
+
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16354
|
+
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16355
|
+
}, import("zod/v4/core").$strip>>;
|
|
16356
|
+
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16357
|
+
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16358
|
+
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16359
|
+
}, import("zod/v4/core").$strip>;
|
|
16360
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16361
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16362
|
+
definitionId: import("zod").ZodString;
|
|
16363
|
+
projectRoot: import("zod").ZodString;
|
|
16364
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
16365
|
+
workflow: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16366
|
+
definitionId: import("zod").ZodString;
|
|
16367
|
+
title: import("zod").ZodString;
|
|
16368
|
+
kind: import("zod").ZodString;
|
|
16369
|
+
projectRoot: import("zod").ZodString;
|
|
16370
|
+
fingerprint: import("zod").ZodString;
|
|
16371
|
+
runId: import("zod").ZodString;
|
|
16372
|
+
}, import("zod/v4/core").$strip>>;
|
|
14598
16373
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
14599
16374
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
14600
16375
|
personalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -14653,6 +16428,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14653
16428
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14654
16429
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14655
16430
|
}, import("zod/v4/core").$strip>;
|
|
16431
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16432
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16433
|
+
definitionId: import("zod").ZodString;
|
|
16434
|
+
projectRoot: import("zod").ZodString;
|
|
14656
16435
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14657
16436
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14658
16437
|
type: import("zod").ZodLiteral<"every">;
|
|
@@ -14725,6 +16504,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14725
16504
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14726
16505
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14727
16506
|
}, import("zod/v4/core").$strip>;
|
|
16507
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16508
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16509
|
+
definitionId: import("zod").ZodString;
|
|
16510
|
+
projectRoot: import("zod").ZodString;
|
|
14728
16511
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14729
16512
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14730
16513
|
type: import("zod").ZodLiteral<"every">;
|
|
@@ -14804,6 +16587,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14804
16587
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14805
16588
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14806
16589
|
}, import("zod/v4/core").$strip>;
|
|
16590
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16591
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16592
|
+
definitionId: import("zod").ZodString;
|
|
16593
|
+
projectRoot: import("zod").ZodString;
|
|
14807
16594
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14808
16595
|
status: import("zod").ZodEnum<{
|
|
14809
16596
|
completed: "completed";
|
|
@@ -14835,6 +16622,51 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14835
16622
|
failed: "failed";
|
|
14836
16623
|
succeeded: "succeeded";
|
|
14837
16624
|
}>;
|
|
16625
|
+
target: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
16626
|
+
type: import("zod").ZodLiteral<"agent">;
|
|
16627
|
+
agentId: import("zod").ZodGUID;
|
|
16628
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16629
|
+
type: import("zod").ZodLiteral<"new-agent">;
|
|
16630
|
+
config: import("zod").ZodObject<{
|
|
16631
|
+
provider: import("zod").ZodString;
|
|
16632
|
+
cwd: import("zod").ZodString;
|
|
16633
|
+
personality: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16634
|
+
agentProfile: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16635
|
+
modeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16636
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16637
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16638
|
+
archiveOnFinish: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16639
|
+
isolation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
16640
|
+
worktree: "worktree";
|
|
16641
|
+
local: "local";
|
|
16642
|
+
}>>;
|
|
16643
|
+
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
16644
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
16645
|
+
approvalPolicy: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16646
|
+
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16647
|
+
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16648
|
+
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16649
|
+
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16650
|
+
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16651
|
+
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16652
|
+
}, import("zod/v4/core").$strip>>;
|
|
16653
|
+
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16654
|
+
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16655
|
+
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16656
|
+
}, import("zod/v4/core").$strip>;
|
|
16657
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16658
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16659
|
+
definitionId: import("zod").ZodString;
|
|
16660
|
+
projectRoot: import("zod").ZodString;
|
|
16661
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
16662
|
+
workflow: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16663
|
+
definitionId: import("zod").ZodString;
|
|
16664
|
+
title: import("zod").ZodString;
|
|
16665
|
+
kind: import("zod").ZodString;
|
|
16666
|
+
projectRoot: import("zod").ZodString;
|
|
16667
|
+
fingerprint: import("zod").ZodString;
|
|
16668
|
+
runId: import("zod").ZodString;
|
|
16669
|
+
}, import("zod/v4/core").$strip>>;
|
|
14838
16670
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
14839
16671
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
14840
16672
|
personalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -14894,6 +16726,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14894
16726
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14895
16727
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
14896
16728
|
}, import("zod/v4/core").$strip>;
|
|
16729
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16730
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16731
|
+
definitionId: import("zod").ZodString;
|
|
16732
|
+
projectRoot: import("zod").ZodString;
|
|
14897
16733
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14898
16734
|
status: import("zod").ZodEnum<{
|
|
14899
16735
|
completed: "completed";
|
|
@@ -14925,6 +16761,51 @@ export declare const WSOutboundMessageSchema: {
|
|
|
14925
16761
|
failed: "failed";
|
|
14926
16762
|
succeeded: "succeeded";
|
|
14927
16763
|
}>;
|
|
16764
|
+
target: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
16765
|
+
type: import("zod").ZodLiteral<"agent">;
|
|
16766
|
+
agentId: import("zod").ZodGUID;
|
|
16767
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16768
|
+
type: import("zod").ZodLiteral<"new-agent">;
|
|
16769
|
+
config: import("zod").ZodObject<{
|
|
16770
|
+
provider: import("zod").ZodString;
|
|
16771
|
+
cwd: import("zod").ZodString;
|
|
16772
|
+
personality: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16773
|
+
agentProfile: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16774
|
+
modeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16775
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16776
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16777
|
+
archiveOnFinish: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16778
|
+
isolation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
16779
|
+
worktree: "worktree";
|
|
16780
|
+
local: "local";
|
|
16781
|
+
}>>;
|
|
16782
|
+
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
16783
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
16784
|
+
approvalPolicy: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16785
|
+
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16786
|
+
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16787
|
+
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
16788
|
+
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16789
|
+
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16790
|
+
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
16791
|
+
}, import("zod/v4/core").$strip>>;
|
|
16792
|
+
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16793
|
+
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16794
|
+
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
16795
|
+
}, import("zod/v4/core").$strip>;
|
|
16796
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16797
|
+
type: import("zod").ZodLiteral<"workflow">;
|
|
16798
|
+
definitionId: import("zod").ZodString;
|
|
16799
|
+
projectRoot: import("zod").ZodString;
|
|
16800
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
16801
|
+
workflow: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
16802
|
+
definitionId: import("zod").ZodString;
|
|
16803
|
+
title: import("zod").ZodString;
|
|
16804
|
+
kind: import("zod").ZodString;
|
|
16805
|
+
projectRoot: import("zod").ZodString;
|
|
16806
|
+
fingerprint: import("zod").ZodString;
|
|
16807
|
+
runId: import("zod").ZodString;
|
|
16808
|
+
}, import("zod/v4/core").$strip>>;
|
|
14928
16809
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
14929
16810
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
14930
16811
|
personalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -15357,14 +17238,120 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15357
17238
|
payload: import("zod").ZodObject<{
|
|
15358
17239
|
requestId: import("zod").ZodString;
|
|
15359
17240
|
success: import("zod").ZodBoolean;
|
|
15360
|
-
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15361
|
-
previousVersion: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15362
|
-
newVersion: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17241
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17242
|
+
previousVersion: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17243
|
+
newVersion: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17244
|
+
}, import("zod/v4/core").$strip>;
|
|
17245
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17246
|
+
type: import("zod").ZodLiteral<"artifact.list.response">;
|
|
17247
|
+
payload: import("zod").ZodObject<{
|
|
17248
|
+
artifacts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17249
|
+
id: import("zod").ZodString;
|
|
17250
|
+
name: import("zod").ZodString;
|
|
17251
|
+
description: import("zod").ZodString;
|
|
17252
|
+
projectId: import("zod").ZodString;
|
|
17253
|
+
filePath: import("zod").ZodString;
|
|
17254
|
+
kind: import("zod").ZodEnum<{
|
|
17255
|
+
html: "html";
|
|
17256
|
+
}>;
|
|
17257
|
+
starred: import("zod").ZodBoolean;
|
|
17258
|
+
status: import("zod").ZodEnum<{
|
|
17259
|
+
error: "error";
|
|
17260
|
+
ready: "ready";
|
|
17261
|
+
generating: "generating";
|
|
17262
|
+
}>;
|
|
17263
|
+
createdAt: import("zod").ZodString;
|
|
17264
|
+
updatedAt: import("zod").ZodString;
|
|
17265
|
+
generationAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17266
|
+
generationProvider: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17267
|
+
generationModel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17268
|
+
generationModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17269
|
+
generationThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17270
|
+
generationSpinner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17271
|
+
glowA: import("zod").ZodString;
|
|
17272
|
+
glowB: import("zod").ZodString;
|
|
17273
|
+
}, import("zod/v4/core").$loose>>>;
|
|
17274
|
+
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17275
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17276
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17277
|
+
agentId: import("zod").ZodString;
|
|
17278
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17279
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17280
|
+
workflowId: import("zod").ZodString;
|
|
17281
|
+
runId: import("zod").ZodString;
|
|
17282
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17283
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17284
|
+
scheduleId: import("zod").ZodString;
|
|
17285
|
+
runId: import("zod").ZodString;
|
|
17286
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17287
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17288
|
+
repository: "repository";
|
|
17289
|
+
host: "host";
|
|
17290
|
+
}>>;
|
|
17291
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
17292
|
+
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17293
|
+
}, import("zod/v4/core").$strip>>;
|
|
17294
|
+
success: import("zod").ZodBoolean;
|
|
17295
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17296
|
+
requestId: import("zod").ZodString;
|
|
17297
|
+
}, import("zod/v4/core").$strip>;
|
|
17298
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17299
|
+
type: import("zod").ZodLiteral<"artifact.create.response">;
|
|
17300
|
+
payload: import("zod").ZodObject<{
|
|
17301
|
+
artifact: import("zod").ZodObject<{
|
|
17302
|
+
id: import("zod").ZodString;
|
|
17303
|
+
name: import("zod").ZodString;
|
|
17304
|
+
description: import("zod").ZodString;
|
|
17305
|
+
projectId: import("zod").ZodString;
|
|
17306
|
+
filePath: import("zod").ZodString;
|
|
17307
|
+
kind: import("zod").ZodEnum<{
|
|
17308
|
+
html: "html";
|
|
17309
|
+
}>;
|
|
17310
|
+
starred: import("zod").ZodBoolean;
|
|
17311
|
+
status: import("zod").ZodEnum<{
|
|
17312
|
+
error: "error";
|
|
17313
|
+
ready: "ready";
|
|
17314
|
+
generating: "generating";
|
|
17315
|
+
}>;
|
|
17316
|
+
createdAt: import("zod").ZodString;
|
|
17317
|
+
updatedAt: import("zod").ZodString;
|
|
17318
|
+
generationAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17319
|
+
generationProvider: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17320
|
+
generationModel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17321
|
+
generationModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17322
|
+
generationThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17323
|
+
generationSpinner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17324
|
+
glowA: import("zod").ZodString;
|
|
17325
|
+
glowB: import("zod").ZodString;
|
|
17326
|
+
}, import("zod/v4/core").$loose>>>;
|
|
17327
|
+
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17328
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17329
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17330
|
+
agentId: import("zod").ZodString;
|
|
17331
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17332
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17333
|
+
workflowId: import("zod").ZodString;
|
|
17334
|
+
runId: import("zod").ZodString;
|
|
17335
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17336
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17337
|
+
scheduleId: import("zod").ZodString;
|
|
17338
|
+
runId: import("zod").ZodString;
|
|
17339
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17340
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17341
|
+
repository: "repository";
|
|
17342
|
+
host: "host";
|
|
17343
|
+
}>>;
|
|
17344
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
17345
|
+
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17346
|
+
}, import("zod/v4/core").$strip>;
|
|
17347
|
+
success: import("zod").ZodBoolean;
|
|
17348
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17349
|
+
requestId: import("zod").ZodString;
|
|
15363
17350
|
}, import("zod/v4/core").$strip>;
|
|
15364
17351
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15365
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17352
|
+
type: import("zod").ZodLiteral<"artifact.update.response">;
|
|
15366
17353
|
payload: import("zod").ZodObject<{
|
|
15367
|
-
|
|
17354
|
+
artifact: import("zod").ZodObject<{
|
|
15368
17355
|
id: import("zod").ZodString;
|
|
15369
17356
|
name: import("zod").ZodString;
|
|
15370
17357
|
description: import("zod").ZodString;
|
|
@@ -15391,14 +17378,31 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15391
17378
|
glowB: import("zod").ZodString;
|
|
15392
17379
|
}, import("zod/v4/core").$loose>>>;
|
|
15393
17380
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17381
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17382
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17383
|
+
agentId: import("zod").ZodString;
|
|
17384
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17385
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17386
|
+
workflowId: import("zod").ZodString;
|
|
17387
|
+
runId: import("zod").ZodString;
|
|
17388
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17389
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17390
|
+
scheduleId: import("zod").ZodString;
|
|
17391
|
+
runId: import("zod").ZodString;
|
|
17392
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17393
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17394
|
+
repository: "repository";
|
|
17395
|
+
host: "host";
|
|
17396
|
+
}>>;
|
|
17397
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15394
17398
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15395
|
-
}, import("zod/v4/core").$strip
|
|
17399
|
+
}, import("zod/v4/core").$strip>;
|
|
15396
17400
|
success: import("zod").ZodBoolean;
|
|
15397
17401
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15398
17402
|
requestId: import("zod").ZodString;
|
|
15399
17403
|
}, import("zod/v4/core").$strip>;
|
|
15400
17404
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15401
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17405
|
+
type: import("zod").ZodLiteral<"artifact.regenerate.response">;
|
|
15402
17406
|
payload: import("zod").ZodObject<{
|
|
15403
17407
|
artifact: import("zod").ZodObject<{
|
|
15404
17408
|
id: import("zod").ZodString;
|
|
@@ -15427,6 +17431,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15427
17431
|
glowB: import("zod").ZodString;
|
|
15428
17432
|
}, import("zod/v4/core").$loose>>>;
|
|
15429
17433
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17434
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17435
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17436
|
+
agentId: import("zod").ZodString;
|
|
17437
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17438
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17439
|
+
workflowId: import("zod").ZodString;
|
|
17440
|
+
runId: import("zod").ZodString;
|
|
17441
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17442
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17443
|
+
scheduleId: import("zod").ZodString;
|
|
17444
|
+
runId: import("zod").ZodString;
|
|
17445
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17446
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17447
|
+
repository: "repository";
|
|
17448
|
+
host: "host";
|
|
17449
|
+
}>>;
|
|
17450
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15430
17451
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15431
17452
|
}, import("zod/v4/core").$strip>;
|
|
15432
17453
|
success: import("zod").ZodBoolean;
|
|
@@ -15434,7 +17455,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15434
17455
|
requestId: import("zod").ZodString;
|
|
15435
17456
|
}, import("zod/v4/core").$strip>;
|
|
15436
17457
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15437
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17458
|
+
type: import("zod").ZodLiteral<"artifact.cancel.response">;
|
|
15438
17459
|
payload: import("zod").ZodObject<{
|
|
15439
17460
|
artifact: import("zod").ZodObject<{
|
|
15440
17461
|
id: import("zod").ZodString;
|
|
@@ -15463,6 +17484,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15463
17484
|
glowB: import("zod").ZodString;
|
|
15464
17485
|
}, import("zod/v4/core").$loose>>>;
|
|
15465
17486
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17487
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17488
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17489
|
+
agentId: import("zod").ZodString;
|
|
17490
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17491
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17492
|
+
workflowId: import("zod").ZodString;
|
|
17493
|
+
runId: import("zod").ZodString;
|
|
17494
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17495
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17496
|
+
scheduleId: import("zod").ZodString;
|
|
17497
|
+
runId: import("zod").ZodString;
|
|
17498
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17499
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17500
|
+
repository: "repository";
|
|
17501
|
+
host: "host";
|
|
17502
|
+
}>>;
|
|
17503
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15466
17504
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15467
17505
|
}, import("zod/v4/core").$strip>;
|
|
15468
17506
|
success: import("zod").ZodBoolean;
|
|
@@ -15470,7 +17508,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15470
17508
|
requestId: import("zod").ZodString;
|
|
15471
17509
|
}, import("zod/v4/core").$strip>;
|
|
15472
17510
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15473
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17511
|
+
type: import("zod").ZodLiteral<"artifact.delete.response">;
|
|
17512
|
+
payload: import("zod").ZodObject<{
|
|
17513
|
+
success: import("zod").ZodBoolean;
|
|
17514
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17515
|
+
requestId: import("zod").ZodString;
|
|
17516
|
+
}, import("zod/v4/core").$strip>;
|
|
17517
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17518
|
+
type: import("zod").ZodLiteral<"artifact.star.response">;
|
|
15474
17519
|
payload: import("zod").ZodObject<{
|
|
15475
17520
|
artifact: import("zod").ZodObject<{
|
|
15476
17521
|
id: import("zod").ZodString;
|
|
@@ -15499,6 +17544,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15499
17544
|
glowB: import("zod").ZodString;
|
|
15500
17545
|
}, import("zod/v4/core").$loose>>>;
|
|
15501
17546
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17547
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17548
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17549
|
+
agentId: import("zod").ZodString;
|
|
17550
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17551
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17552
|
+
workflowId: import("zod").ZodString;
|
|
17553
|
+
runId: import("zod").ZodString;
|
|
17554
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17555
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17556
|
+
scheduleId: import("zod").ZodString;
|
|
17557
|
+
runId: import("zod").ZodString;
|
|
17558
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17559
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17560
|
+
repository: "repository";
|
|
17561
|
+
host: "host";
|
|
17562
|
+
}>>;
|
|
17563
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15502
17564
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15503
17565
|
}, import("zod/v4/core").$strip>;
|
|
15504
17566
|
success: import("zod").ZodBoolean;
|
|
@@ -15506,7 +17568,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15506
17568
|
requestId: import("zod").ZodString;
|
|
15507
17569
|
}, import("zod/v4/core").$strip>;
|
|
15508
17570
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15509
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17571
|
+
type: import("zod").ZodLiteral<"artifact.get-content.response">;
|
|
17572
|
+
payload: import("zod").ZodObject<{
|
|
17573
|
+
content: import("zod").ZodString;
|
|
17574
|
+
success: import("zod").ZodBoolean;
|
|
17575
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17576
|
+
requestId: import("zod").ZodString;
|
|
17577
|
+
}, import("zod/v4/core").$strip>;
|
|
17578
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17579
|
+
type: import("zod").ZodLiteral<"artifact.repair.response">;
|
|
15510
17580
|
payload: import("zod").ZodObject<{
|
|
15511
17581
|
artifact: import("zod").ZodObject<{
|
|
15512
17582
|
id: import("zod").ZodString;
|
|
@@ -15535,6 +17605,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15535
17605
|
glowB: import("zod").ZodString;
|
|
15536
17606
|
}, import("zod/v4/core").$loose>>>;
|
|
15537
17607
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17608
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17609
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17610
|
+
agentId: import("zod").ZodString;
|
|
17611
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17612
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17613
|
+
workflowId: import("zod").ZodString;
|
|
17614
|
+
runId: import("zod").ZodString;
|
|
17615
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17616
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17617
|
+
scheduleId: import("zod").ZodString;
|
|
17618
|
+
runId: import("zod").ZodString;
|
|
17619
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17620
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17621
|
+
repository: "repository";
|
|
17622
|
+
host: "host";
|
|
17623
|
+
}>>;
|
|
17624
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15538
17625
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15539
17626
|
}, import("zod/v4/core").$strip>;
|
|
15540
17627
|
success: import("zod").ZodBoolean;
|
|
@@ -15542,14 +17629,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15542
17629
|
requestId: import("zod").ZodString;
|
|
15543
17630
|
}, import("zod/v4/core").$strip>;
|
|
15544
17631
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15545
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17632
|
+
type: import("zod").ZodLiteral<"artifact.data.get.response">;
|
|
15546
17633
|
payload: import("zod").ZodObject<{
|
|
17634
|
+
data: import("zod").ZodNullable<import("zod").ZodJSONSchema>;
|
|
15547
17635
|
success: import("zod").ZodBoolean;
|
|
15548
17636
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15549
17637
|
requestId: import("zod").ZodString;
|
|
15550
17638
|
}, import("zod/v4/core").$strip>;
|
|
15551
17639
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15552
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17640
|
+
type: import("zod").ZodLiteral<"artifact.data.update.response">;
|
|
15553
17641
|
payload: import("zod").ZodObject<{
|
|
15554
17642
|
artifact: import("zod").ZodObject<{
|
|
15555
17643
|
id: import("zod").ZodString;
|
|
@@ -15578,6 +17666,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15578
17666
|
glowB: import("zod").ZodString;
|
|
15579
17667
|
}, import("zod/v4/core").$loose>>>;
|
|
15580
17668
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17669
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17670
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17671
|
+
agentId: import("zod").ZodString;
|
|
17672
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17673
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17674
|
+
workflowId: import("zod").ZodString;
|
|
17675
|
+
runId: import("zod").ZodString;
|
|
17676
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17677
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17678
|
+
scheduleId: import("zod").ZodString;
|
|
17679
|
+
runId: import("zod").ZodString;
|
|
17680
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17681
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17682
|
+
repository: "repository";
|
|
17683
|
+
host: "host";
|
|
17684
|
+
}>>;
|
|
17685
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15581
17686
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15582
17687
|
}, import("zod/v4/core").$strip>;
|
|
15583
17688
|
success: import("zod").ZodBoolean;
|
|
@@ -15585,13 +17690,66 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15585
17690
|
requestId: import("zod").ZodString;
|
|
15586
17691
|
}, import("zod/v4/core").$strip>;
|
|
15587
17692
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15588
|
-
type: import("zod").ZodLiteral<"artifact.
|
|
17693
|
+
type: import("zod").ZodLiteral<"artifact.store.move.response">;
|
|
15589
17694
|
payload: import("zod").ZodObject<{
|
|
15590
|
-
|
|
17695
|
+
artifact: import("zod").ZodObject<{
|
|
17696
|
+
id: import("zod").ZodString;
|
|
17697
|
+
name: import("zod").ZodString;
|
|
17698
|
+
description: import("zod").ZodString;
|
|
17699
|
+
projectId: import("zod").ZodString;
|
|
17700
|
+
filePath: import("zod").ZodString;
|
|
17701
|
+
kind: import("zod").ZodEnum<{
|
|
17702
|
+
html: "html";
|
|
17703
|
+
}>;
|
|
17704
|
+
starred: import("zod").ZodBoolean;
|
|
17705
|
+
status: import("zod").ZodEnum<{
|
|
17706
|
+
error: "error";
|
|
17707
|
+
ready: "ready";
|
|
17708
|
+
generating: "generating";
|
|
17709
|
+
}>;
|
|
17710
|
+
createdAt: import("zod").ZodString;
|
|
17711
|
+
updatedAt: import("zod").ZodString;
|
|
17712
|
+
generationAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17713
|
+
generationProvider: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17714
|
+
generationModel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17715
|
+
generationModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17716
|
+
generationThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17717
|
+
generationSpinner: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17718
|
+
glowA: import("zod").ZodString;
|
|
17719
|
+
glowB: import("zod").ZodString;
|
|
17720
|
+
}, import("zod/v4/core").$loose>>>;
|
|
17721
|
+
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17722
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17723
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17724
|
+
agentId: import("zod").ZodString;
|
|
17725
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17726
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17727
|
+
workflowId: import("zod").ZodString;
|
|
17728
|
+
runId: import("zod").ZodString;
|
|
17729
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17730
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17731
|
+
scheduleId: import("zod").ZodString;
|
|
17732
|
+
runId: import("zod").ZodString;
|
|
17733
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17734
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17735
|
+
repository: "repository";
|
|
17736
|
+
host: "host";
|
|
17737
|
+
}>>;
|
|
17738
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
17739
|
+
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17740
|
+
}, import("zod/v4/core").$strip>;
|
|
15591
17741
|
success: import("zod").ZodBoolean;
|
|
15592
17742
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15593
17743
|
requestId: import("zod").ZodString;
|
|
15594
17744
|
}, import("zod/v4/core").$strip>;
|
|
17745
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17746
|
+
type: import("zod").ZodLiteral<"project.artifact.store.set.response">;
|
|
17747
|
+
payload: import("zod").ZodObject<{
|
|
17748
|
+
requestId: import("zod").ZodString;
|
|
17749
|
+
projectId: import("zod").ZodString;
|
|
17750
|
+
accepted: import("zod").ZodBoolean;
|
|
17751
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17752
|
+
}, import("zod/v4/core").$strip>;
|
|
15595
17753
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
15596
17754
|
type: import("zod").ZodLiteral<"artifact.created.notification">;
|
|
15597
17755
|
payload: import("zod").ZodObject<{
|
|
@@ -15622,6 +17780,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15622
17780
|
glowB: import("zod").ZodString;
|
|
15623
17781
|
}, import("zod/v4/core").$loose>>>;
|
|
15624
17782
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17783
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17784
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17785
|
+
agentId: import("zod").ZodString;
|
|
17786
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17787
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17788
|
+
workflowId: import("zod").ZodString;
|
|
17789
|
+
runId: import("zod").ZodString;
|
|
17790
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17791
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17792
|
+
scheduleId: import("zod").ZodString;
|
|
17793
|
+
runId: import("zod").ZodString;
|
|
17794
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17795
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17796
|
+
repository: "repository";
|
|
17797
|
+
host: "host";
|
|
17798
|
+
}>>;
|
|
17799
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15625
17800
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15626
17801
|
}, import("zod/v4/core").$strip>;
|
|
15627
17802
|
}, import("zod/v4/core").$strip>;
|
|
@@ -15655,6 +17830,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15655
17830
|
glowB: import("zod").ZodString;
|
|
15656
17831
|
}, import("zod/v4/core").$loose>>>;
|
|
15657
17832
|
generationPersonalityName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17833
|
+
source: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
17834
|
+
kind: import("zod").ZodLiteral<"chat">;
|
|
17835
|
+
agentId: import("zod").ZodString;
|
|
17836
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17837
|
+
kind: import("zod").ZodLiteral<"workflow">;
|
|
17838
|
+
workflowId: import("zod").ZodString;
|
|
17839
|
+
runId: import("zod").ZodString;
|
|
17840
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17841
|
+
kind: import("zod").ZodLiteral<"schedule">;
|
|
17842
|
+
scheduleId: import("zod").ZodString;
|
|
17843
|
+
runId: import("zod").ZodString;
|
|
17844
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
17845
|
+
storageLocation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17846
|
+
repository: "repository";
|
|
17847
|
+
host: "host";
|
|
17848
|
+
}>>;
|
|
17849
|
+
repairAvailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
15658
17850
|
errorMessage: import("zod").ZodNullable<import("zod").ZodString>;
|
|
15659
17851
|
}, import("zod/v4/core").$strip>;
|
|
15660
17852
|
}, import("zod/v4/core").$strip>;
|
|
@@ -15663,6 +17855,191 @@ export declare const WSOutboundMessageSchema: {
|
|
|
15663
17855
|
payload: import("zod").ZodObject<{
|
|
15664
17856
|
artifactId: import("zod").ZodString;
|
|
15665
17857
|
}, import("zod/v4/core").$strip>;
|
|
17858
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17859
|
+
type: import("zod").ZodLiteral<"architectural-views.deliver.response">;
|
|
17860
|
+
payload: import("zod").ZodObject<{
|
|
17861
|
+
requestId: import("zod").ZodString;
|
|
17862
|
+
success: import("zod").ZodBoolean;
|
|
17863
|
+
viewId: import("zod").ZodString;
|
|
17864
|
+
storeLocation: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
17865
|
+
repository: "repository";
|
|
17866
|
+
host: "host";
|
|
17867
|
+
}>>;
|
|
17868
|
+
htmlPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17869
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17870
|
+
}, import("zod/v4/core").$strip>;
|
|
17871
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17872
|
+
type: import("zod").ZodLiteral<"architectural-views.list.response">;
|
|
17873
|
+
payload: import("zod").ZodObject<{
|
|
17874
|
+
requestId: import("zod").ZodString;
|
|
17875
|
+
success: import("zod").ZodBoolean;
|
|
17876
|
+
views: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17877
|
+
id: import("zod").ZodString;
|
|
17878
|
+
title: import("zod").ZodString;
|
|
17879
|
+
knowledgeReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17880
|
+
kind: import("zod").ZodEnum<{
|
|
17881
|
+
record: "record";
|
|
17882
|
+
root: "root";
|
|
17883
|
+
}>;
|
|
17884
|
+
id: import("zod").ZodString;
|
|
17885
|
+
}, import("zod/v4/core").$strip>>;
|
|
17886
|
+
storeLocation: import("zod").ZodEnum<{
|
|
17887
|
+
repository: "repository";
|
|
17888
|
+
host: "host";
|
|
17889
|
+
}>;
|
|
17890
|
+
htmlPath: import("zod").ZodString;
|
|
17891
|
+
renderedAt: import("zod").ZodString;
|
|
17892
|
+
sourceStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17893
|
+
unknown: "unknown";
|
|
17894
|
+
stale: "stale";
|
|
17895
|
+
current: "current";
|
|
17896
|
+
}>>;
|
|
17897
|
+
}, import("zod/v4/core").$strip>>;
|
|
17898
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17899
|
+
}, import("zod/v4/core").$strip>;
|
|
17900
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17901
|
+
type: import("zod").ZodLiteral<"architectural-views.get-content.response">;
|
|
17902
|
+
payload: import("zod").ZodObject<{
|
|
17903
|
+
requestId: import("zod").ZodString;
|
|
17904
|
+
success: import("zod").ZodBoolean;
|
|
17905
|
+
view: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17906
|
+
id: import("zod").ZodString;
|
|
17907
|
+
title: import("zod").ZodString;
|
|
17908
|
+
knowledgeReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17909
|
+
kind: import("zod").ZodEnum<{
|
|
17910
|
+
record: "record";
|
|
17911
|
+
root: "root";
|
|
17912
|
+
}>;
|
|
17913
|
+
id: import("zod").ZodString;
|
|
17914
|
+
}, import("zod/v4/core").$strip>>;
|
|
17915
|
+
storeLocation: import("zod").ZodEnum<{
|
|
17916
|
+
repository: "repository";
|
|
17917
|
+
host: "host";
|
|
17918
|
+
}>;
|
|
17919
|
+
htmlPath: import("zod").ZodString;
|
|
17920
|
+
renderedAt: import("zod").ZodString;
|
|
17921
|
+
sourceStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17922
|
+
unknown: "unknown";
|
|
17923
|
+
stale: "stale";
|
|
17924
|
+
current: "current";
|
|
17925
|
+
}>>;
|
|
17926
|
+
}, import("zod/v4/core").$strip>>;
|
|
17927
|
+
html: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17928
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17929
|
+
}, import("zod/v4/core").$strip>;
|
|
17930
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17931
|
+
type: import("zod").ZodLiteral<"architectural-views.draft.create.response">;
|
|
17932
|
+
payload: import("zod").ZodObject<{
|
|
17933
|
+
requestId: import("zod").ZodString;
|
|
17934
|
+
success: import("zod").ZodBoolean;
|
|
17935
|
+
draft: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17936
|
+
id: import("zod").ZodString;
|
|
17937
|
+
viewId: import("zod").ZodString;
|
|
17938
|
+
title: import("zod").ZodString;
|
|
17939
|
+
knowledgeReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17940
|
+
kind: import("zod").ZodEnum<{
|
|
17941
|
+
record: "record";
|
|
17942
|
+
root: "root";
|
|
17943
|
+
}>;
|
|
17944
|
+
id: import("zod").ZodString;
|
|
17945
|
+
}, import("zod/v4/core").$strip>>;
|
|
17946
|
+
baseSpecificationSha256: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17947
|
+
authoringAgentId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17948
|
+
createdAt: import("zod").ZodString;
|
|
17949
|
+
updatedAt: import("zod").ZodString;
|
|
17950
|
+
}, import("zod/v4/core").$strip>>;
|
|
17951
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17952
|
+
}, import("zod/v4/core").$strip>;
|
|
17953
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17954
|
+
type: import("zod").ZodLiteral<"architectural-views.draft.update.response">;
|
|
17955
|
+
payload: import("zod").ZodObject<{
|
|
17956
|
+
requestId: import("zod").ZodString;
|
|
17957
|
+
success: import("zod").ZodBoolean;
|
|
17958
|
+
draft: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17959
|
+
id: import("zod").ZodString;
|
|
17960
|
+
viewId: import("zod").ZodString;
|
|
17961
|
+
title: import("zod").ZodString;
|
|
17962
|
+
knowledgeReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17963
|
+
kind: import("zod").ZodEnum<{
|
|
17964
|
+
record: "record";
|
|
17965
|
+
root: "root";
|
|
17966
|
+
}>;
|
|
17967
|
+
id: import("zod").ZodString;
|
|
17968
|
+
}, import("zod/v4/core").$strip>>;
|
|
17969
|
+
baseSpecificationSha256: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17970
|
+
authoringAgentId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
17971
|
+
createdAt: import("zod").ZodString;
|
|
17972
|
+
updatedAt: import("zod").ZodString;
|
|
17973
|
+
}, import("zod/v4/core").$strip>>;
|
|
17974
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
17975
|
+
}, import("zod/v4/core").$strip>;
|
|
17976
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
17977
|
+
type: import("zod").ZodLiteral<"architectural-views.draft.publish.response">;
|
|
17978
|
+
payload: import("zod").ZodObject<{
|
|
17979
|
+
requestId: import("zod").ZodString;
|
|
17980
|
+
success: import("zod").ZodBoolean;
|
|
17981
|
+
view: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
17982
|
+
id: import("zod").ZodString;
|
|
17983
|
+
title: import("zod").ZodString;
|
|
17984
|
+
knowledgeReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17985
|
+
kind: import("zod").ZodEnum<{
|
|
17986
|
+
record: "record";
|
|
17987
|
+
root: "root";
|
|
17988
|
+
}>;
|
|
17989
|
+
id: import("zod").ZodString;
|
|
17990
|
+
}, import("zod/v4/core").$strip>>;
|
|
17991
|
+
storeLocation: import("zod").ZodEnum<{
|
|
17992
|
+
repository: "repository";
|
|
17993
|
+
host: "host";
|
|
17994
|
+
}>;
|
|
17995
|
+
htmlPath: import("zod").ZodString;
|
|
17996
|
+
renderedAt: import("zod").ZodString;
|
|
17997
|
+
sourceStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
17998
|
+
unknown: "unknown";
|
|
17999
|
+
stale: "stale";
|
|
18000
|
+
current: "current";
|
|
18001
|
+
}>>;
|
|
18002
|
+
}, import("zod/v4/core").$strip>>;
|
|
18003
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18004
|
+
}, import("zod/v4/core").$strip>;
|
|
18005
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
18006
|
+
type: import("zod").ZodLiteral<"architectural-views.draft.discard.response">;
|
|
18007
|
+
payload: import("zod").ZodObject<{
|
|
18008
|
+
requestId: import("zod").ZodString;
|
|
18009
|
+
success: import("zod").ZodBoolean;
|
|
18010
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18011
|
+
}, import("zod/v4/core").$strip>;
|
|
18012
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
18013
|
+
type: import("zod").ZodLiteral<"architectural-views.draft.get-content.response">;
|
|
18014
|
+
payload: import("zod").ZodObject<{
|
|
18015
|
+
requestId: import("zod").ZodString;
|
|
18016
|
+
success: import("zod").ZodBoolean;
|
|
18017
|
+
draft: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
18018
|
+
id: import("zod").ZodString;
|
|
18019
|
+
viewId: import("zod").ZodString;
|
|
18020
|
+
title: import("zod").ZodString;
|
|
18021
|
+
knowledgeReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
18022
|
+
kind: import("zod").ZodEnum<{
|
|
18023
|
+
record: "record";
|
|
18024
|
+
root: "root";
|
|
18025
|
+
}>;
|
|
18026
|
+
id: import("zod").ZodString;
|
|
18027
|
+
}, import("zod/v4/core").$strip>>;
|
|
18028
|
+
baseSpecificationSha256: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18029
|
+
authoringAgentId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
18030
|
+
createdAt: import("zod").ZodString;
|
|
18031
|
+
updatedAt: import("zod").ZodString;
|
|
18032
|
+
}, import("zod/v4/core").$strip>>;
|
|
18033
|
+
html: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18034
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18035
|
+
}, import("zod/v4/core").$strip>;
|
|
18036
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
18037
|
+
type: import("zod").ZodLiteral<"architectural-views.open.notification">;
|
|
18038
|
+
payload: import("zod").ZodObject<{
|
|
18039
|
+
workspaceId: import("zod").ZodString;
|
|
18040
|
+
agentId: import("zod").ZodString;
|
|
18041
|
+
viewId: import("zod").ZodString;
|
|
18042
|
+
}, import("zod/v4/core").$strip>;
|
|
15666
18043
|
}, import("zod/v4/core").$strip>], "type">;
|
|
15667
18044
|
}, import("zod/v4/core").$strip>], "type">;
|
|
15668
18045
|
};
|