@junctionpanel/server 0.1.34 → 0.1.35
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/server/server/agent/agent-manager.d.ts.map +1 -1
- package/dist/server/server/agent/agent-manager.js +3 -3
- package/dist/server/server/agent/agent-manager.js.map +1 -1
- package/dist/server/server/agent/agent-sdk-types.d.ts +1 -0
- package/dist/server/server/agent/agent-sdk-types.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/claude-agent.js +38 -90
- package/dist/server/server/agent/providers/claude-agent.js.map +1 -1
- package/dist/server/server/agent/providers/claude-cli-capabilities.d.ts +50 -0
- package/dist/server/server/agent/providers/claude-cli-capabilities.d.ts.map +1 -0
- package/dist/server/server/agent/providers/claude-cli-capabilities.js +247 -0
- package/dist/server/server/agent/providers/claude-cli-capabilities.js.map +1 -0
- package/dist/server/server/agent/providers/gemini-agent.d.ts +287 -1
- package/dist/server/server/agent/providers/gemini-agent.d.ts.map +1 -1
- package/dist/server/server/agent/providers/gemini-agent.js +255 -16
- package/dist/server/server/agent/providers/gemini-agent.js.map +1 -1
- package/dist/server/server/daemon-doctor.d.ts +5 -0
- package/dist/server/server/daemon-doctor.d.ts.map +1 -1
- package/dist/server/server/daemon-doctor.js +26 -0
- package/dist/server/server/daemon-doctor.js.map +1 -1
- package/dist/server/server/file-explorer/service.d.ts +1 -0
- package/dist/server/server/file-explorer/service.d.ts.map +1 -1
- package/dist/server/server/file-explorer/service.js +36 -0
- package/dist/server/server/file-explorer/service.js.map +1 -1
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +5 -2
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/shared/messages.d.ts +147 -0
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +4 -0
- package/dist/server/shared/messages.js.map +1 -1
- package/package.json +2 -2
|
@@ -30,14 +30,17 @@ export declare const AgentStreamEventPayloadSchema: z.ZodDiscriminatedUnion<"typ
|
|
|
30
30
|
type: z.ZodLiteral<"turn_completed">;
|
|
31
31
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
32
32
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
33
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33
34
|
}, "strip", z.ZodTypeAny, {
|
|
34
35
|
provider: string;
|
|
35
36
|
type: "turn_completed";
|
|
36
37
|
usage?: AgentUsage | undefined;
|
|
38
|
+
modelId?: string | null | undefined;
|
|
37
39
|
}, {
|
|
38
40
|
provider: string;
|
|
39
41
|
type: "turn_completed";
|
|
40
42
|
usage?: AgentUsage | undefined;
|
|
43
|
+
modelId?: string | null | undefined;
|
|
41
44
|
}>, z.ZodObject<{
|
|
42
45
|
type: z.ZodLiteral<"turn_failed">;
|
|
43
46
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -5741,14 +5744,17 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5741
5744
|
type: z.ZodLiteral<"turn_completed">;
|
|
5742
5745
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
5743
5746
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
5747
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5744
5748
|
}, "strip", z.ZodTypeAny, {
|
|
5745
5749
|
provider: string;
|
|
5746
5750
|
type: "turn_completed";
|
|
5747
5751
|
usage?: AgentUsage | undefined;
|
|
5752
|
+
modelId?: string | null | undefined;
|
|
5748
5753
|
}, {
|
|
5749
5754
|
provider: string;
|
|
5750
5755
|
type: "turn_completed";
|
|
5751
5756
|
usage?: AgentUsage | undefined;
|
|
5757
|
+
modelId?: string | null | undefined;
|
|
5752
5758
|
}>, z.ZodObject<{
|
|
5753
5759
|
type: z.ZodLiteral<"turn_failed">;
|
|
5754
5760
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -5899,6 +5905,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5899
5905
|
provider: string;
|
|
5900
5906
|
type: "turn_completed";
|
|
5901
5907
|
usage?: AgentUsage | undefined;
|
|
5908
|
+
modelId?: string | null | undefined;
|
|
5902
5909
|
} | {
|
|
5903
5910
|
error: string;
|
|
5904
5911
|
provider: string;
|
|
@@ -5952,6 +5959,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
5952
5959
|
provider: string;
|
|
5953
5960
|
type: "turn_completed";
|
|
5954
5961
|
usage?: AgentUsage | undefined;
|
|
5962
|
+
modelId?: string | null | undefined;
|
|
5955
5963
|
} | {
|
|
5956
5964
|
error: string;
|
|
5957
5965
|
provider: string;
|
|
@@ -6008,6 +6016,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
6008
6016
|
provider: string;
|
|
6009
6017
|
type: "turn_completed";
|
|
6010
6018
|
usage?: AgentUsage | undefined;
|
|
6019
|
+
modelId?: string | null | undefined;
|
|
6011
6020
|
} | {
|
|
6012
6021
|
error: string;
|
|
6013
6022
|
provider: string;
|
|
@@ -6064,6 +6073,7 @@ export declare const AgentStreamMessageSchema: z.ZodObject<{
|
|
|
6064
6073
|
provider: string;
|
|
6065
6074
|
type: "turn_completed";
|
|
6066
6075
|
usage?: AgentUsage | undefined;
|
|
6076
|
+
modelId?: string | null | undefined;
|
|
6067
6077
|
} | {
|
|
6068
6078
|
error: string;
|
|
6069
6079
|
provider: string;
|
|
@@ -10775,6 +10785,13 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10775
10785
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
10776
10786
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
10777
10787
|
remediation: z.ZodNullable<z.ZodString>;
|
|
10788
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10789
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
10790
|
+
}, "strip", z.ZodTypeAny, {
|
|
10791
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10792
|
+
}, {
|
|
10793
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10794
|
+
}>>>;
|
|
10778
10795
|
}, "strip", z.ZodTypeAny, {
|
|
10779
10796
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
10780
10797
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -10784,6 +10801,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10784
10801
|
resolvedPath: string | null;
|
|
10785
10802
|
configuredPath: string | null;
|
|
10786
10803
|
remediation: string | null;
|
|
10804
|
+
details?: {
|
|
10805
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10806
|
+
} | null | undefined;
|
|
10787
10807
|
}, {
|
|
10788
10808
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
10789
10809
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -10793,6 +10813,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10793
10813
|
resolvedPath: string | null;
|
|
10794
10814
|
configuredPath: string | null;
|
|
10795
10815
|
remediation: string | null;
|
|
10816
|
+
details?: {
|
|
10817
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10818
|
+
} | null | undefined;
|
|
10796
10819
|
}>, "many">;
|
|
10797
10820
|
ranAt: z.ZodString;
|
|
10798
10821
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -10817,6 +10840,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10817
10840
|
resolvedPath: string | null;
|
|
10818
10841
|
configuredPath: string | null;
|
|
10819
10842
|
remediation: string | null;
|
|
10843
|
+
details?: {
|
|
10844
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10845
|
+
} | null | undefined;
|
|
10820
10846
|
}[];
|
|
10821
10847
|
ranAt: string;
|
|
10822
10848
|
update?: {
|
|
@@ -10848,6 +10874,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10848
10874
|
resolvedPath: string | null;
|
|
10849
10875
|
configuredPath: string | null;
|
|
10850
10876
|
remediation: string | null;
|
|
10877
|
+
details?: {
|
|
10878
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10879
|
+
} | null | undefined;
|
|
10851
10880
|
}[];
|
|
10852
10881
|
ranAt: string;
|
|
10853
10882
|
update?: {
|
|
@@ -10882,6 +10911,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10882
10911
|
resolvedPath: string | null;
|
|
10883
10912
|
configuredPath: string | null;
|
|
10884
10913
|
remediation: string | null;
|
|
10914
|
+
details?: {
|
|
10915
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10916
|
+
} | null | undefined;
|
|
10885
10917
|
}[];
|
|
10886
10918
|
ranAt: string;
|
|
10887
10919
|
update?: {
|
|
@@ -10916,6 +10948,9 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10916
10948
|
resolvedPath: string | null;
|
|
10917
10949
|
configuredPath: string | null;
|
|
10918
10950
|
remediation: string | null;
|
|
10951
|
+
details?: {
|
|
10952
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
10953
|
+
} | null | undefined;
|
|
10919
10954
|
}[];
|
|
10920
10955
|
ranAt: string;
|
|
10921
10956
|
update?: {
|
|
@@ -12721,14 +12756,17 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12721
12756
|
type: z.ZodLiteral<"turn_completed">;
|
|
12722
12757
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
12723
12758
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
12759
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12724
12760
|
}, "strip", z.ZodTypeAny, {
|
|
12725
12761
|
provider: string;
|
|
12726
12762
|
type: "turn_completed";
|
|
12727
12763
|
usage?: AgentUsage | undefined;
|
|
12764
|
+
modelId?: string | null | undefined;
|
|
12728
12765
|
}, {
|
|
12729
12766
|
provider: string;
|
|
12730
12767
|
type: "turn_completed";
|
|
12731
12768
|
usage?: AgentUsage | undefined;
|
|
12769
|
+
modelId?: string | null | undefined;
|
|
12732
12770
|
}>, z.ZodObject<{
|
|
12733
12771
|
type: z.ZodLiteral<"turn_failed">;
|
|
12734
12772
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -12879,6 +12917,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12879
12917
|
provider: string;
|
|
12880
12918
|
type: "turn_completed";
|
|
12881
12919
|
usage?: AgentUsage | undefined;
|
|
12920
|
+
modelId?: string | null | undefined;
|
|
12882
12921
|
} | {
|
|
12883
12922
|
error: string;
|
|
12884
12923
|
provider: string;
|
|
@@ -12932,6 +12971,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12932
12971
|
provider: string;
|
|
12933
12972
|
type: "turn_completed";
|
|
12934
12973
|
usage?: AgentUsage | undefined;
|
|
12974
|
+
modelId?: string | null | undefined;
|
|
12935
12975
|
} | {
|
|
12936
12976
|
error: string;
|
|
12937
12977
|
provider: string;
|
|
@@ -12988,6 +13028,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
12988
13028
|
provider: string;
|
|
12989
13029
|
type: "turn_completed";
|
|
12990
13030
|
usage?: AgentUsage | undefined;
|
|
13031
|
+
modelId?: string | null | undefined;
|
|
12991
13032
|
} | {
|
|
12992
13033
|
error: string;
|
|
12993
13034
|
provider: string;
|
|
@@ -13044,6 +13085,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
13044
13085
|
provider: string;
|
|
13045
13086
|
type: "turn_completed";
|
|
13046
13087
|
usage?: AgentUsage | undefined;
|
|
13088
|
+
modelId?: string | null | undefined;
|
|
13047
13089
|
} | {
|
|
13048
13090
|
error: string;
|
|
13049
13091
|
provider: string;
|
|
@@ -17641,6 +17683,13 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17641
17683
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
17642
17684
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
17643
17685
|
remediation: z.ZodNullable<z.ZodString>;
|
|
17686
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17687
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
17688
|
+
}, "strip", z.ZodTypeAny, {
|
|
17689
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17690
|
+
}, {
|
|
17691
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17692
|
+
}>>>;
|
|
17644
17693
|
}, "strip", z.ZodTypeAny, {
|
|
17645
17694
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
17646
17695
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -17650,6 +17699,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17650
17699
|
resolvedPath: string | null;
|
|
17651
17700
|
configuredPath: string | null;
|
|
17652
17701
|
remediation: string | null;
|
|
17702
|
+
details?: {
|
|
17703
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17704
|
+
} | null | undefined;
|
|
17653
17705
|
}, {
|
|
17654
17706
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
17655
17707
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -17659,6 +17711,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17659
17711
|
resolvedPath: string | null;
|
|
17660
17712
|
configuredPath: string | null;
|
|
17661
17713
|
remediation: string | null;
|
|
17714
|
+
details?: {
|
|
17715
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17716
|
+
} | null | undefined;
|
|
17662
17717
|
}>, "many">;
|
|
17663
17718
|
ranAt: z.ZodString;
|
|
17664
17719
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -17683,6 +17738,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17683
17738
|
resolvedPath: string | null;
|
|
17684
17739
|
configuredPath: string | null;
|
|
17685
17740
|
remediation: string | null;
|
|
17741
|
+
details?: {
|
|
17742
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17743
|
+
} | null | undefined;
|
|
17686
17744
|
}[];
|
|
17687
17745
|
ranAt: string;
|
|
17688
17746
|
update?: {
|
|
@@ -17714,6 +17772,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17714
17772
|
resolvedPath: string | null;
|
|
17715
17773
|
configuredPath: string | null;
|
|
17716
17774
|
remediation: string | null;
|
|
17775
|
+
details?: {
|
|
17776
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17777
|
+
} | null | undefined;
|
|
17717
17778
|
}[];
|
|
17718
17779
|
ranAt: string;
|
|
17719
17780
|
update?: {
|
|
@@ -17748,6 +17809,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17748
17809
|
resolvedPath: string | null;
|
|
17749
17810
|
configuredPath: string | null;
|
|
17750
17811
|
remediation: string | null;
|
|
17812
|
+
details?: {
|
|
17813
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17814
|
+
} | null | undefined;
|
|
17751
17815
|
}[];
|
|
17752
17816
|
ranAt: string;
|
|
17753
17817
|
update?: {
|
|
@@ -17782,6 +17846,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17782
17846
|
resolvedPath: string | null;
|
|
17783
17847
|
configuredPath: string | null;
|
|
17784
17848
|
remediation: string | null;
|
|
17849
|
+
details?: {
|
|
17850
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
17851
|
+
} | null | undefined;
|
|
17785
17852
|
}[];
|
|
17786
17853
|
ranAt: string;
|
|
17787
17854
|
update?: {
|
|
@@ -22469,14 +22536,17 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22469
22536
|
type: z.ZodLiteral<"turn_completed">;
|
|
22470
22537
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
22471
22538
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
22539
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22472
22540
|
}, "strip", z.ZodTypeAny, {
|
|
22473
22541
|
provider: string;
|
|
22474
22542
|
type: "turn_completed";
|
|
22475
22543
|
usage?: AgentUsage | undefined;
|
|
22544
|
+
modelId?: string | null | undefined;
|
|
22476
22545
|
}, {
|
|
22477
22546
|
provider: string;
|
|
22478
22547
|
type: "turn_completed";
|
|
22479
22548
|
usage?: AgentUsage | undefined;
|
|
22549
|
+
modelId?: string | null | undefined;
|
|
22480
22550
|
}>, z.ZodObject<{
|
|
22481
22551
|
type: z.ZodLiteral<"turn_failed">;
|
|
22482
22552
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -22627,6 +22697,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22627
22697
|
provider: string;
|
|
22628
22698
|
type: "turn_completed";
|
|
22629
22699
|
usage?: AgentUsage | undefined;
|
|
22700
|
+
modelId?: string | null | undefined;
|
|
22630
22701
|
} | {
|
|
22631
22702
|
error: string;
|
|
22632
22703
|
provider: string;
|
|
@@ -22680,6 +22751,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22680
22751
|
provider: string;
|
|
22681
22752
|
type: "turn_completed";
|
|
22682
22753
|
usage?: AgentUsage | undefined;
|
|
22754
|
+
modelId?: string | null | undefined;
|
|
22683
22755
|
} | {
|
|
22684
22756
|
error: string;
|
|
22685
22757
|
provider: string;
|
|
@@ -22736,6 +22808,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22736
22808
|
provider: string;
|
|
22737
22809
|
type: "turn_completed";
|
|
22738
22810
|
usage?: AgentUsage | undefined;
|
|
22811
|
+
modelId?: string | null | undefined;
|
|
22739
22812
|
} | {
|
|
22740
22813
|
error: string;
|
|
22741
22814
|
provider: string;
|
|
@@ -22792,6 +22865,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22792
22865
|
provider: string;
|
|
22793
22866
|
type: "turn_completed";
|
|
22794
22867
|
usage?: AgentUsage | undefined;
|
|
22868
|
+
modelId?: string | null | undefined;
|
|
22795
22869
|
} | {
|
|
22796
22870
|
error: string;
|
|
22797
22871
|
provider: string;
|
|
@@ -27389,6 +27463,13 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27389
27463
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
27390
27464
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
27391
27465
|
remediation: z.ZodNullable<z.ZodString>;
|
|
27466
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27467
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
27468
|
+
}, "strip", z.ZodTypeAny, {
|
|
27469
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27470
|
+
}, {
|
|
27471
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27472
|
+
}>>>;
|
|
27392
27473
|
}, "strip", z.ZodTypeAny, {
|
|
27393
27474
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
27394
27475
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -27398,6 +27479,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27398
27479
|
resolvedPath: string | null;
|
|
27399
27480
|
configuredPath: string | null;
|
|
27400
27481
|
remediation: string | null;
|
|
27482
|
+
details?: {
|
|
27483
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27484
|
+
} | null | undefined;
|
|
27401
27485
|
}, {
|
|
27402
27486
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
27403
27487
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -27407,6 +27491,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27407
27491
|
resolvedPath: string | null;
|
|
27408
27492
|
configuredPath: string | null;
|
|
27409
27493
|
remediation: string | null;
|
|
27494
|
+
details?: {
|
|
27495
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27496
|
+
} | null | undefined;
|
|
27410
27497
|
}>, "many">;
|
|
27411
27498
|
ranAt: z.ZodString;
|
|
27412
27499
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -27431,6 +27518,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27431
27518
|
resolvedPath: string | null;
|
|
27432
27519
|
configuredPath: string | null;
|
|
27433
27520
|
remediation: string | null;
|
|
27521
|
+
details?: {
|
|
27522
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27523
|
+
} | null | undefined;
|
|
27434
27524
|
}[];
|
|
27435
27525
|
ranAt: string;
|
|
27436
27526
|
update?: {
|
|
@@ -27462,6 +27552,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27462
27552
|
resolvedPath: string | null;
|
|
27463
27553
|
configuredPath: string | null;
|
|
27464
27554
|
remediation: string | null;
|
|
27555
|
+
details?: {
|
|
27556
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27557
|
+
} | null | undefined;
|
|
27465
27558
|
}[];
|
|
27466
27559
|
ranAt: string;
|
|
27467
27560
|
update?: {
|
|
@@ -27496,6 +27589,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27496
27589
|
resolvedPath: string | null;
|
|
27497
27590
|
configuredPath: string | null;
|
|
27498
27591
|
remediation: string | null;
|
|
27592
|
+
details?: {
|
|
27593
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27594
|
+
} | null | undefined;
|
|
27499
27595
|
}[];
|
|
27500
27596
|
ranAt: string;
|
|
27501
27597
|
update?: {
|
|
@@ -27530,6 +27626,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27530
27626
|
resolvedPath: string | null;
|
|
27531
27627
|
configuredPath: string | null;
|
|
27532
27628
|
remediation: string | null;
|
|
27629
|
+
details?: {
|
|
27630
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
27631
|
+
} | null | undefined;
|
|
27533
27632
|
}[];
|
|
27534
27633
|
ranAt: string;
|
|
27535
27634
|
update?: {
|
|
@@ -28833,6 +28932,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28833
28932
|
provider: string;
|
|
28834
28933
|
type: "turn_completed";
|
|
28835
28934
|
usage?: AgentUsage | undefined;
|
|
28935
|
+
modelId?: string | null | undefined;
|
|
28836
28936
|
} | {
|
|
28837
28937
|
error: string;
|
|
28838
28938
|
provider: string;
|
|
@@ -29607,6 +29707,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29607
29707
|
resolvedPath: string | null;
|
|
29608
29708
|
configuredPath: string | null;
|
|
29609
29709
|
remediation: string | null;
|
|
29710
|
+
details?: {
|
|
29711
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
29712
|
+
} | null | undefined;
|
|
29610
29713
|
}[];
|
|
29611
29714
|
ranAt: string;
|
|
29612
29715
|
update?: {
|
|
@@ -29969,6 +30072,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29969
30072
|
provider: string;
|
|
29970
30073
|
type: "turn_completed";
|
|
29971
30074
|
usage?: AgentUsage | undefined;
|
|
30075
|
+
modelId?: string | null | undefined;
|
|
29972
30076
|
} | {
|
|
29973
30077
|
error: string;
|
|
29974
30078
|
provider: string;
|
|
@@ -30743,6 +30847,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30743
30847
|
resolvedPath: string | null;
|
|
30744
30848
|
configuredPath: string | null;
|
|
30745
30849
|
remediation: string | null;
|
|
30850
|
+
details?: {
|
|
30851
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
30852
|
+
} | null | undefined;
|
|
30746
30853
|
}[];
|
|
30747
30854
|
ranAt: string;
|
|
30748
30855
|
update?: {
|
|
@@ -34357,14 +34464,17 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34357
34464
|
type: z.ZodLiteral<"turn_completed">;
|
|
34358
34465
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
34359
34466
|
usage: z.ZodOptional<z.ZodType<AgentUsage, z.ZodTypeDef, AgentUsage>>;
|
|
34467
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34360
34468
|
}, "strip", z.ZodTypeAny, {
|
|
34361
34469
|
provider: string;
|
|
34362
34470
|
type: "turn_completed";
|
|
34363
34471
|
usage?: AgentUsage | undefined;
|
|
34472
|
+
modelId?: string | null | undefined;
|
|
34364
34473
|
}, {
|
|
34365
34474
|
provider: string;
|
|
34366
34475
|
type: "turn_completed";
|
|
34367
34476
|
usage?: AgentUsage | undefined;
|
|
34477
|
+
modelId?: string | null | undefined;
|
|
34368
34478
|
}>, z.ZodObject<{
|
|
34369
34479
|
type: z.ZodLiteral<"turn_failed">;
|
|
34370
34480
|
provider: z.ZodEnum<[string, ...string[]]>;
|
|
@@ -34515,6 +34625,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34515
34625
|
provider: string;
|
|
34516
34626
|
type: "turn_completed";
|
|
34517
34627
|
usage?: AgentUsage | undefined;
|
|
34628
|
+
modelId?: string | null | undefined;
|
|
34518
34629
|
} | {
|
|
34519
34630
|
error: string;
|
|
34520
34631
|
provider: string;
|
|
@@ -34568,6 +34679,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34568
34679
|
provider: string;
|
|
34569
34680
|
type: "turn_completed";
|
|
34570
34681
|
usage?: AgentUsage | undefined;
|
|
34682
|
+
modelId?: string | null | undefined;
|
|
34571
34683
|
} | {
|
|
34572
34684
|
error: string;
|
|
34573
34685
|
provider: string;
|
|
@@ -34624,6 +34736,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34624
34736
|
provider: string;
|
|
34625
34737
|
type: "turn_completed";
|
|
34626
34738
|
usage?: AgentUsage | undefined;
|
|
34739
|
+
modelId?: string | null | undefined;
|
|
34627
34740
|
} | {
|
|
34628
34741
|
error: string;
|
|
34629
34742
|
provider: string;
|
|
@@ -34680,6 +34793,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
34680
34793
|
provider: string;
|
|
34681
34794
|
type: "turn_completed";
|
|
34682
34795
|
usage?: AgentUsage | undefined;
|
|
34796
|
+
modelId?: string | null | undefined;
|
|
34683
34797
|
} | {
|
|
34684
34798
|
error: string;
|
|
34685
34799
|
provider: string;
|
|
@@ -39277,6 +39391,13 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39277
39391
|
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
39278
39392
|
configuredPath: z.ZodNullable<z.ZodString>;
|
|
39279
39393
|
remediation: z.ZodNullable<z.ZodString>;
|
|
39394
|
+
details: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39395
|
+
compatibilityStatus: z.ZodOptional<z.ZodEnum<["supported", "unsupported", "unknown"]>>;
|
|
39396
|
+
}, "strip", z.ZodTypeAny, {
|
|
39397
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39398
|
+
}, {
|
|
39399
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39400
|
+
}>>>;
|
|
39280
39401
|
}, "strip", z.ZodTypeAny, {
|
|
39281
39402
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
39282
39403
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -39286,6 +39407,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39286
39407
|
resolvedPath: string | null;
|
|
39287
39408
|
configuredPath: string | null;
|
|
39288
39409
|
remediation: string | null;
|
|
39410
|
+
details?: {
|
|
39411
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39412
|
+
} | null | undefined;
|
|
39289
39413
|
}, {
|
|
39290
39414
|
status: "pass" | "warn" | "fail" | "skipped";
|
|
39291
39415
|
provider: "codex" | "claude" | "gemini" | null;
|
|
@@ -39295,6 +39419,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39295
39419
|
resolvedPath: string | null;
|
|
39296
39420
|
configuredPath: string | null;
|
|
39297
39421
|
remediation: string | null;
|
|
39422
|
+
details?: {
|
|
39423
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39424
|
+
} | null | undefined;
|
|
39298
39425
|
}>, "many">;
|
|
39299
39426
|
ranAt: z.ZodString;
|
|
39300
39427
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -39319,6 +39446,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39319
39446
|
resolvedPath: string | null;
|
|
39320
39447
|
configuredPath: string | null;
|
|
39321
39448
|
remediation: string | null;
|
|
39449
|
+
details?: {
|
|
39450
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39451
|
+
} | null | undefined;
|
|
39322
39452
|
}[];
|
|
39323
39453
|
ranAt: string;
|
|
39324
39454
|
update?: {
|
|
@@ -39350,6 +39480,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39350
39480
|
resolvedPath: string | null;
|
|
39351
39481
|
configuredPath: string | null;
|
|
39352
39482
|
remediation: string | null;
|
|
39483
|
+
details?: {
|
|
39484
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39485
|
+
} | null | undefined;
|
|
39353
39486
|
}[];
|
|
39354
39487
|
ranAt: string;
|
|
39355
39488
|
update?: {
|
|
@@ -39384,6 +39517,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39384
39517
|
resolvedPath: string | null;
|
|
39385
39518
|
configuredPath: string | null;
|
|
39386
39519
|
remediation: string | null;
|
|
39520
|
+
details?: {
|
|
39521
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39522
|
+
} | null | undefined;
|
|
39387
39523
|
}[];
|
|
39388
39524
|
ranAt: string;
|
|
39389
39525
|
update?: {
|
|
@@ -39418,6 +39554,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39418
39554
|
resolvedPath: string | null;
|
|
39419
39555
|
configuredPath: string | null;
|
|
39420
39556
|
remediation: string | null;
|
|
39557
|
+
details?: {
|
|
39558
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
39559
|
+
} | null | undefined;
|
|
39421
39560
|
}[];
|
|
39422
39561
|
ranAt: string;
|
|
39423
39562
|
update?: {
|
|
@@ -40721,6 +40860,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
40721
40860
|
provider: string;
|
|
40722
40861
|
type: "turn_completed";
|
|
40723
40862
|
usage?: AgentUsage | undefined;
|
|
40863
|
+
modelId?: string | null | undefined;
|
|
40724
40864
|
} | {
|
|
40725
40865
|
error: string;
|
|
40726
40866
|
provider: string;
|
|
@@ -41495,6 +41635,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41495
41635
|
resolvedPath: string | null;
|
|
41496
41636
|
configuredPath: string | null;
|
|
41497
41637
|
remediation: string | null;
|
|
41638
|
+
details?: {
|
|
41639
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
41640
|
+
} | null | undefined;
|
|
41498
41641
|
}[];
|
|
41499
41642
|
ranAt: string;
|
|
41500
41643
|
update?: {
|
|
@@ -41857,6 +42000,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41857
42000
|
provider: string;
|
|
41858
42001
|
type: "turn_completed";
|
|
41859
42002
|
usage?: AgentUsage | undefined;
|
|
42003
|
+
modelId?: string | null | undefined;
|
|
41860
42004
|
} | {
|
|
41861
42005
|
error: string;
|
|
41862
42006
|
provider: string;
|
|
@@ -42631,6 +42775,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
42631
42775
|
resolvedPath: string | null;
|
|
42632
42776
|
configuredPath: string | null;
|
|
42633
42777
|
remediation: string | null;
|
|
42778
|
+
details?: {
|
|
42779
|
+
compatibilityStatus?: "unknown" | "supported" | "unsupported" | undefined;
|
|
42780
|
+
} | null | undefined;
|
|
42634
42781
|
}[];
|
|
42635
42782
|
ranAt: string;
|
|
42636
42783
|
update?: {
|