@junctionpanel/server 0.1.32 → 0.1.33
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/client/daemon-client.d.ts +4 -1
- package/dist/server/client/daemon-client.d.ts.map +1 -1
- package/dist/server/client/daemon-client.js +15 -0
- package/dist/server/client/daemon-client.js.map +1 -1
- package/dist/server/server/agent/agent-manager.d.ts +1 -0
- package/dist/server/server/agent/agent-manager.d.ts.map +1 -1
- package/dist/server/server/agent/agent-manager.js +25 -1
- package/dist/server/server/agent/agent-manager.js.map +1 -1
- package/dist/server/server/agent/agent-sdk-types.d.ts +6 -1
- package/dist/server/server/agent/agent-sdk-types.d.ts.map +1 -1
- package/dist/server/server/bootstrap.d.ts.map +1 -1
- package/dist/server/server/bootstrap.js +2 -1
- package/dist/server/server/bootstrap.js.map +1 -1
- package/dist/server/server/cli-runtime-exports.d.ts +2 -0
- package/dist/server/server/cli-runtime-exports.d.ts.map +1 -1
- package/dist/server/server/cli-runtime-exports.js +2 -0
- package/dist/server/server/cli-runtime-exports.js.map +1 -1
- package/dist/server/server/daemon-doctor.d.ts +4 -0
- package/dist/server/server/daemon-doctor.d.ts.map +1 -1
- package/dist/server/server/daemon-doctor.js +33 -12
- package/dist/server/server/daemon-doctor.js.map +1 -1
- package/dist/server/server/daemon-package-context.d.ts +10 -0
- package/dist/server/server/daemon-package-context.d.ts.map +1 -0
- package/dist/server/server/daemon-package-context.js +31 -0
- package/dist/server/server/daemon-package-context.js.map +1 -0
- package/dist/server/server/package-update.d.ts +32 -0
- package/dist/server/server/package-update.d.ts.map +1 -0
- package/dist/server/server/package-update.js +196 -0
- package/dist/server/server/package-update.js.map +1 -0
- package/dist/server/server/session.d.ts.map +1 -1
- package/dist/server/server/session.js +14 -16
- package/dist/server/server/session.js.map +1 -1
- package/dist/server/shared/messages.d.ts +340 -228
- package/dist/server/shared/messages.d.ts.map +1 -1
- package/dist/server/shared/messages.js +17 -1
- package/dist/server/shared/messages.js.map +1 -1
- package/package.json +2 -2
|
@@ -1363,13 +1363,13 @@ export declare const SetAgentModelRequestMessageSchema: z.ZodObject<{
|
|
|
1363
1363
|
}, "strip", z.ZodTypeAny, {
|
|
1364
1364
|
agentId: string;
|
|
1365
1365
|
type: "set_agent_model_request";
|
|
1366
|
-
requestId: string;
|
|
1367
1366
|
modelId: string | null;
|
|
1367
|
+
requestId: string;
|
|
1368
1368
|
}, {
|
|
1369
1369
|
agentId: string;
|
|
1370
1370
|
type: "set_agent_model_request";
|
|
1371
|
-
requestId: string;
|
|
1372
1371
|
modelId: string | null;
|
|
1372
|
+
requestId: string;
|
|
1373
1373
|
}>;
|
|
1374
1374
|
export declare const SetAgentModelResponseMessageSchema: z.ZodObject<{
|
|
1375
1375
|
type: z.ZodLiteral<"set_agent_model_response">;
|
|
@@ -3261,13 +3261,13 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<"type"
|
|
|
3261
3261
|
}, "strip", z.ZodTypeAny, {
|
|
3262
3262
|
agentId: string;
|
|
3263
3263
|
type: "set_agent_model_request";
|
|
3264
|
-
requestId: string;
|
|
3265
3264
|
modelId: string | null;
|
|
3265
|
+
requestId: string;
|
|
3266
3266
|
}, {
|
|
3267
3267
|
agentId: string;
|
|
3268
3268
|
type: "set_agent_model_request";
|
|
3269
|
-
requestId: string;
|
|
3270
3269
|
modelId: string | null;
|
|
3270
|
+
requestId: string;
|
|
3271
3271
|
}>, z.ZodObject<{
|
|
3272
3272
|
type: z.ZodLiteral<"set_agent_thinking_request">;
|
|
3273
3273
|
agentId: z.ZodString;
|
|
@@ -10715,6 +10715,31 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10715
10715
|
homeDir: string;
|
|
10716
10716
|
rootDir: string;
|
|
10717
10717
|
}>;
|
|
10718
|
+
update: z.ZodOptional<z.ZodObject<{
|
|
10719
|
+
packageName: z.ZodString;
|
|
10720
|
+
currentVersion: z.ZodNullable<z.ZodString>;
|
|
10721
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
10722
|
+
status: z.ZodEnum<["current", "stale", "unknown"]>;
|
|
10723
|
+
blocked: z.ZodBoolean;
|
|
10724
|
+
message: z.ZodString;
|
|
10725
|
+
remediation: z.ZodNullable<z.ZodString>;
|
|
10726
|
+
}, "strip", z.ZodTypeAny, {
|
|
10727
|
+
status: "unknown" | "current" | "stale";
|
|
10728
|
+
message: string;
|
|
10729
|
+
remediation: string | null;
|
|
10730
|
+
packageName: string;
|
|
10731
|
+
currentVersion: string | null;
|
|
10732
|
+
latestVersion: string | null;
|
|
10733
|
+
blocked: boolean;
|
|
10734
|
+
}, {
|
|
10735
|
+
status: "unknown" | "current" | "stale";
|
|
10736
|
+
message: string;
|
|
10737
|
+
remediation: string | null;
|
|
10738
|
+
packageName: string;
|
|
10739
|
+
currentVersion: string | null;
|
|
10740
|
+
latestVersion: string | null;
|
|
10741
|
+
blocked: boolean;
|
|
10742
|
+
}>>;
|
|
10718
10743
|
summary: z.ZodEnum<["pass", "warn", "fail"]>;
|
|
10719
10744
|
checks: z.ZodArray<z.ZodObject<{
|
|
10720
10745
|
id: z.ZodString;
|
|
@@ -10769,6 +10794,15 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10769
10794
|
remediation: string | null;
|
|
10770
10795
|
}[];
|
|
10771
10796
|
ranAt: string;
|
|
10797
|
+
update?: {
|
|
10798
|
+
status: "unknown" | "current" | "stale";
|
|
10799
|
+
message: string;
|
|
10800
|
+
remediation: string | null;
|
|
10801
|
+
packageName: string;
|
|
10802
|
+
currentVersion: string | null;
|
|
10803
|
+
latestVersion: string | null;
|
|
10804
|
+
blocked: boolean;
|
|
10805
|
+
} | undefined;
|
|
10772
10806
|
}, {
|
|
10773
10807
|
error: string | null;
|
|
10774
10808
|
summary: "pass" | "warn" | "fail";
|
|
@@ -10791,6 +10825,15 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10791
10825
|
remediation: string | null;
|
|
10792
10826
|
}[];
|
|
10793
10827
|
ranAt: string;
|
|
10828
|
+
update?: {
|
|
10829
|
+
status: "unknown" | "current" | "stale";
|
|
10830
|
+
message: string;
|
|
10831
|
+
remediation: string | null;
|
|
10832
|
+
packageName: string;
|
|
10833
|
+
currentVersion: string | null;
|
|
10834
|
+
latestVersion: string | null;
|
|
10835
|
+
blocked: boolean;
|
|
10836
|
+
} | undefined;
|
|
10794
10837
|
}>;
|
|
10795
10838
|
}, "strip", z.ZodTypeAny, {
|
|
10796
10839
|
type: "run_daemon_doctor_response";
|
|
@@ -10816,6 +10859,15 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10816
10859
|
remediation: string | null;
|
|
10817
10860
|
}[];
|
|
10818
10861
|
ranAt: string;
|
|
10862
|
+
update?: {
|
|
10863
|
+
status: "unknown" | "current" | "stale";
|
|
10864
|
+
message: string;
|
|
10865
|
+
remediation: string | null;
|
|
10866
|
+
packageName: string;
|
|
10867
|
+
currentVersion: string | null;
|
|
10868
|
+
latestVersion: string | null;
|
|
10869
|
+
blocked: boolean;
|
|
10870
|
+
} | undefined;
|
|
10819
10871
|
};
|
|
10820
10872
|
}, {
|
|
10821
10873
|
type: "run_daemon_doctor_response";
|
|
@@ -10841,6 +10893,15 @@ export declare const RunDaemonDoctorResponseSchema: z.ZodObject<{
|
|
|
10841
10893
|
remediation: string | null;
|
|
10842
10894
|
}[];
|
|
10843
10895
|
ranAt: string;
|
|
10896
|
+
update?: {
|
|
10897
|
+
status: "unknown" | "current" | "stale";
|
|
10898
|
+
message: string;
|
|
10899
|
+
remediation: string | null;
|
|
10900
|
+
packageName: string;
|
|
10901
|
+
currentVersion: string | null;
|
|
10902
|
+
latestVersion: string | null;
|
|
10903
|
+
blocked: boolean;
|
|
10904
|
+
} | undefined;
|
|
10844
10905
|
};
|
|
10845
10906
|
}>;
|
|
10846
10907
|
export declare const GetDaemonProviderSettingsResponseSchema: z.ZodObject<{
|
|
@@ -11103,37 +11164,15 @@ export declare const AutoRouteProviderResponseSchema: z.ZodObject<{
|
|
|
11103
11164
|
homeDir: string;
|
|
11104
11165
|
rootDir: string;
|
|
11105
11166
|
}>;
|
|
11106
|
-
provider: z.
|
|
11107
|
-
|
|
11108
|
-
source: z.ZodEnum<["system", "manual", "custom"]>;
|
|
11109
|
-
executablePath: z.ZodNullable<z.ZodString>;
|
|
11110
|
-
commandSummary: z.ZodNullable<z.ZodString>;
|
|
11111
|
-
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
11112
|
-
}, "strip", z.ZodTypeAny, {
|
|
11113
|
-
provider: "codex" | "claude" | "gemini";
|
|
11114
|
-
source: "manual" | "custom" | "system";
|
|
11115
|
-
resolvedPath: string | null;
|
|
11116
|
-
executablePath: string | null;
|
|
11117
|
-
commandSummary: string | null;
|
|
11118
|
-
}, {
|
|
11119
|
-
provider: "codex" | "claude" | "gemini";
|
|
11120
|
-
source: "manual" | "custom" | "system";
|
|
11121
|
-
resolvedPath: string | null;
|
|
11122
|
-
executablePath: string | null;
|
|
11123
|
-
commandSummary: string | null;
|
|
11124
|
-
}>>;
|
|
11167
|
+
provider: z.ZodEnum<["claude", "codex", "gemini"]>;
|
|
11168
|
+
executablePath: z.ZodNullable<z.ZodString>;
|
|
11125
11169
|
error: z.ZodNullable<z.ZodString>;
|
|
11126
11170
|
requestId: z.ZodString;
|
|
11127
11171
|
}, "strip", z.ZodTypeAny, {
|
|
11128
11172
|
error: string | null;
|
|
11129
|
-
provider:
|
|
11130
|
-
provider: "codex" | "claude" | "gemini";
|
|
11131
|
-
source: "manual" | "custom" | "system";
|
|
11132
|
-
resolvedPath: string | null;
|
|
11133
|
-
executablePath: string | null;
|
|
11134
|
-
commandSummary: string | null;
|
|
11135
|
-
} | null;
|
|
11173
|
+
provider: "codex" | "claude" | "gemini";
|
|
11136
11174
|
requestId: string;
|
|
11175
|
+
executablePath: string | null;
|
|
11137
11176
|
daemon: {
|
|
11138
11177
|
hostname: string | null;
|
|
11139
11178
|
version: string | null;
|
|
@@ -11143,14 +11182,9 @@ export declare const AutoRouteProviderResponseSchema: z.ZodObject<{
|
|
|
11143
11182
|
};
|
|
11144
11183
|
}, {
|
|
11145
11184
|
error: string | null;
|
|
11146
|
-
provider:
|
|
11147
|
-
provider: "codex" | "claude" | "gemini";
|
|
11148
|
-
source: "manual" | "custom" | "system";
|
|
11149
|
-
resolvedPath: string | null;
|
|
11150
|
-
executablePath: string | null;
|
|
11151
|
-
commandSummary: string | null;
|
|
11152
|
-
} | null;
|
|
11185
|
+
provider: "codex" | "claude" | "gemini";
|
|
11153
11186
|
requestId: string;
|
|
11187
|
+
executablePath: string | null;
|
|
11154
11188
|
daemon: {
|
|
11155
11189
|
hostname: string | null;
|
|
11156
11190
|
version: string | null;
|
|
@@ -11163,14 +11197,9 @@ export declare const AutoRouteProviderResponseSchema: z.ZodObject<{
|
|
|
11163
11197
|
type: "auto_route_provider_response";
|
|
11164
11198
|
payload: {
|
|
11165
11199
|
error: string | null;
|
|
11166
|
-
provider:
|
|
11167
|
-
provider: "codex" | "claude" | "gemini";
|
|
11168
|
-
source: "manual" | "custom" | "system";
|
|
11169
|
-
resolvedPath: string | null;
|
|
11170
|
-
executablePath: string | null;
|
|
11171
|
-
commandSummary: string | null;
|
|
11172
|
-
} | null;
|
|
11200
|
+
provider: "codex" | "claude" | "gemini";
|
|
11173
11201
|
requestId: string;
|
|
11202
|
+
executablePath: string | null;
|
|
11174
11203
|
daemon: {
|
|
11175
11204
|
hostname: string | null;
|
|
11176
11205
|
version: string | null;
|
|
@@ -11183,14 +11212,9 @@ export declare const AutoRouteProviderResponseSchema: z.ZodObject<{
|
|
|
11183
11212
|
type: "auto_route_provider_response";
|
|
11184
11213
|
payload: {
|
|
11185
11214
|
error: string | null;
|
|
11186
|
-
provider:
|
|
11187
|
-
provider: "codex" | "claude" | "gemini";
|
|
11188
|
-
source: "manual" | "custom" | "system";
|
|
11189
|
-
resolvedPath: string | null;
|
|
11190
|
-
executablePath: string | null;
|
|
11191
|
-
commandSummary: string | null;
|
|
11192
|
-
} | null;
|
|
11215
|
+
provider: "codex" | "claude" | "gemini";
|
|
11193
11216
|
requestId: string;
|
|
11217
|
+
executablePath: string | null;
|
|
11194
11218
|
daemon: {
|
|
11195
11219
|
hostname: string | null;
|
|
11196
11220
|
version: string | null;
|
|
@@ -17557,6 +17581,31 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17557
17581
|
homeDir: string;
|
|
17558
17582
|
rootDir: string;
|
|
17559
17583
|
}>;
|
|
17584
|
+
update: z.ZodOptional<z.ZodObject<{
|
|
17585
|
+
packageName: z.ZodString;
|
|
17586
|
+
currentVersion: z.ZodNullable<z.ZodString>;
|
|
17587
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
17588
|
+
status: z.ZodEnum<["current", "stale", "unknown"]>;
|
|
17589
|
+
blocked: z.ZodBoolean;
|
|
17590
|
+
message: z.ZodString;
|
|
17591
|
+
remediation: z.ZodNullable<z.ZodString>;
|
|
17592
|
+
}, "strip", z.ZodTypeAny, {
|
|
17593
|
+
status: "unknown" | "current" | "stale";
|
|
17594
|
+
message: string;
|
|
17595
|
+
remediation: string | null;
|
|
17596
|
+
packageName: string;
|
|
17597
|
+
currentVersion: string | null;
|
|
17598
|
+
latestVersion: string | null;
|
|
17599
|
+
blocked: boolean;
|
|
17600
|
+
}, {
|
|
17601
|
+
status: "unknown" | "current" | "stale";
|
|
17602
|
+
message: string;
|
|
17603
|
+
remediation: string | null;
|
|
17604
|
+
packageName: string;
|
|
17605
|
+
currentVersion: string | null;
|
|
17606
|
+
latestVersion: string | null;
|
|
17607
|
+
blocked: boolean;
|
|
17608
|
+
}>>;
|
|
17560
17609
|
summary: z.ZodEnum<["pass", "warn", "fail"]>;
|
|
17561
17610
|
checks: z.ZodArray<z.ZodObject<{
|
|
17562
17611
|
id: z.ZodString;
|
|
@@ -17611,6 +17660,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17611
17660
|
remediation: string | null;
|
|
17612
17661
|
}[];
|
|
17613
17662
|
ranAt: string;
|
|
17663
|
+
update?: {
|
|
17664
|
+
status: "unknown" | "current" | "stale";
|
|
17665
|
+
message: string;
|
|
17666
|
+
remediation: string | null;
|
|
17667
|
+
packageName: string;
|
|
17668
|
+
currentVersion: string | null;
|
|
17669
|
+
latestVersion: string | null;
|
|
17670
|
+
blocked: boolean;
|
|
17671
|
+
} | undefined;
|
|
17614
17672
|
}, {
|
|
17615
17673
|
error: string | null;
|
|
17616
17674
|
summary: "pass" | "warn" | "fail";
|
|
@@ -17633,6 +17691,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17633
17691
|
remediation: string | null;
|
|
17634
17692
|
}[];
|
|
17635
17693
|
ranAt: string;
|
|
17694
|
+
update?: {
|
|
17695
|
+
status: "unknown" | "current" | "stale";
|
|
17696
|
+
message: string;
|
|
17697
|
+
remediation: string | null;
|
|
17698
|
+
packageName: string;
|
|
17699
|
+
currentVersion: string | null;
|
|
17700
|
+
latestVersion: string | null;
|
|
17701
|
+
blocked: boolean;
|
|
17702
|
+
} | undefined;
|
|
17636
17703
|
}>;
|
|
17637
17704
|
}, "strip", z.ZodTypeAny, {
|
|
17638
17705
|
type: "run_daemon_doctor_response";
|
|
@@ -17658,6 +17725,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17658
17725
|
remediation: string | null;
|
|
17659
17726
|
}[];
|
|
17660
17727
|
ranAt: string;
|
|
17728
|
+
update?: {
|
|
17729
|
+
status: "unknown" | "current" | "stale";
|
|
17730
|
+
message: string;
|
|
17731
|
+
remediation: string | null;
|
|
17732
|
+
packageName: string;
|
|
17733
|
+
currentVersion: string | null;
|
|
17734
|
+
latestVersion: string | null;
|
|
17735
|
+
blocked: boolean;
|
|
17736
|
+
} | undefined;
|
|
17661
17737
|
};
|
|
17662
17738
|
}, {
|
|
17663
17739
|
type: "run_daemon_doctor_response";
|
|
@@ -17683,6 +17759,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17683
17759
|
remediation: string | null;
|
|
17684
17760
|
}[];
|
|
17685
17761
|
ranAt: string;
|
|
17762
|
+
update?: {
|
|
17763
|
+
status: "unknown" | "current" | "stale";
|
|
17764
|
+
message: string;
|
|
17765
|
+
remediation: string | null;
|
|
17766
|
+
packageName: string;
|
|
17767
|
+
currentVersion: string | null;
|
|
17768
|
+
latestVersion: string | null;
|
|
17769
|
+
blocked: boolean;
|
|
17770
|
+
} | undefined;
|
|
17686
17771
|
};
|
|
17687
17772
|
}>, z.ZodObject<{
|
|
17688
17773
|
type: z.ZodLiteral<"get_daemon_provider_settings_response">;
|
|
@@ -17942,37 +18027,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17942
18027
|
homeDir: string;
|
|
17943
18028
|
rootDir: string;
|
|
17944
18029
|
}>;
|
|
17945
|
-
provider: z.
|
|
17946
|
-
|
|
17947
|
-
source: z.ZodEnum<["system", "manual", "custom"]>;
|
|
17948
|
-
executablePath: z.ZodNullable<z.ZodString>;
|
|
17949
|
-
commandSummary: z.ZodNullable<z.ZodString>;
|
|
17950
|
-
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
17951
|
-
}, "strip", z.ZodTypeAny, {
|
|
17952
|
-
provider: "codex" | "claude" | "gemini";
|
|
17953
|
-
source: "manual" | "custom" | "system";
|
|
17954
|
-
resolvedPath: string | null;
|
|
17955
|
-
executablePath: string | null;
|
|
17956
|
-
commandSummary: string | null;
|
|
17957
|
-
}, {
|
|
17958
|
-
provider: "codex" | "claude" | "gemini";
|
|
17959
|
-
source: "manual" | "custom" | "system";
|
|
17960
|
-
resolvedPath: string | null;
|
|
17961
|
-
executablePath: string | null;
|
|
17962
|
-
commandSummary: string | null;
|
|
17963
|
-
}>>;
|
|
18030
|
+
provider: z.ZodEnum<["claude", "codex", "gemini"]>;
|
|
18031
|
+
executablePath: z.ZodNullable<z.ZodString>;
|
|
17964
18032
|
error: z.ZodNullable<z.ZodString>;
|
|
17965
18033
|
requestId: z.ZodString;
|
|
17966
18034
|
}, "strip", z.ZodTypeAny, {
|
|
17967
18035
|
error: string | null;
|
|
17968
|
-
provider:
|
|
17969
|
-
provider: "codex" | "claude" | "gemini";
|
|
17970
|
-
source: "manual" | "custom" | "system";
|
|
17971
|
-
resolvedPath: string | null;
|
|
17972
|
-
executablePath: string | null;
|
|
17973
|
-
commandSummary: string | null;
|
|
17974
|
-
} | null;
|
|
18036
|
+
provider: "codex" | "claude" | "gemini";
|
|
17975
18037
|
requestId: string;
|
|
18038
|
+
executablePath: string | null;
|
|
17976
18039
|
daemon: {
|
|
17977
18040
|
hostname: string | null;
|
|
17978
18041
|
version: string | null;
|
|
@@ -17982,14 +18045,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
17982
18045
|
};
|
|
17983
18046
|
}, {
|
|
17984
18047
|
error: string | null;
|
|
17985
|
-
provider:
|
|
17986
|
-
provider: "codex" | "claude" | "gemini";
|
|
17987
|
-
source: "manual" | "custom" | "system";
|
|
17988
|
-
resolvedPath: string | null;
|
|
17989
|
-
executablePath: string | null;
|
|
17990
|
-
commandSummary: string | null;
|
|
17991
|
-
} | null;
|
|
18048
|
+
provider: "codex" | "claude" | "gemini";
|
|
17992
18049
|
requestId: string;
|
|
18050
|
+
executablePath: string | null;
|
|
17993
18051
|
daemon: {
|
|
17994
18052
|
hostname: string | null;
|
|
17995
18053
|
version: string | null;
|
|
@@ -18002,14 +18060,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18002
18060
|
type: "auto_route_provider_response";
|
|
18003
18061
|
payload: {
|
|
18004
18062
|
error: string | null;
|
|
18005
|
-
provider:
|
|
18006
|
-
provider: "codex" | "claude" | "gemini";
|
|
18007
|
-
source: "manual" | "custom" | "system";
|
|
18008
|
-
resolvedPath: string | null;
|
|
18009
|
-
executablePath: string | null;
|
|
18010
|
-
commandSummary: string | null;
|
|
18011
|
-
} | null;
|
|
18063
|
+
provider: "codex" | "claude" | "gemini";
|
|
18012
18064
|
requestId: string;
|
|
18065
|
+
executablePath: string | null;
|
|
18013
18066
|
daemon: {
|
|
18014
18067
|
hostname: string | null;
|
|
18015
18068
|
version: string | null;
|
|
@@ -18022,14 +18075,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<"type
|
|
|
18022
18075
|
type: "auto_route_provider_response";
|
|
18023
18076
|
payload: {
|
|
18024
18077
|
error: string | null;
|
|
18025
|
-
provider:
|
|
18026
|
-
provider: "codex" | "claude" | "gemini";
|
|
18027
|
-
source: "manual" | "custom" | "system";
|
|
18028
|
-
resolvedPath: string | null;
|
|
18029
|
-
executablePath: string | null;
|
|
18030
|
-
commandSummary: string | null;
|
|
18031
|
-
} | null;
|
|
18078
|
+
provider: "codex" | "claude" | "gemini";
|
|
18032
18079
|
requestId: string;
|
|
18080
|
+
executablePath: string | null;
|
|
18033
18081
|
daemon: {
|
|
18034
18082
|
hostname: string | null;
|
|
18035
18083
|
version: string | null;
|
|
@@ -19994,13 +20042,13 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
19994
20042
|
}, "strip", z.ZodTypeAny, {
|
|
19995
20043
|
agentId: string;
|
|
19996
20044
|
type: "set_agent_model_request";
|
|
19997
|
-
requestId: string;
|
|
19998
20045
|
modelId: string | null;
|
|
20046
|
+
requestId: string;
|
|
19999
20047
|
}, {
|
|
20000
20048
|
agentId: string;
|
|
20001
20049
|
type: "set_agent_model_request";
|
|
20002
|
-
requestId: string;
|
|
20003
20050
|
modelId: string | null;
|
|
20051
|
+
requestId: string;
|
|
20004
20052
|
}>, z.ZodObject<{
|
|
20005
20053
|
type: z.ZodLiteral<"set_agent_thinking_request">;
|
|
20006
20054
|
agentId: z.ZodString;
|
|
@@ -21004,8 +21052,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21004
21052
|
} | {
|
|
21005
21053
|
agentId: string;
|
|
21006
21054
|
type: "set_agent_model_request";
|
|
21007
|
-
requestId: string;
|
|
21008
21055
|
modelId: string | null;
|
|
21056
|
+
requestId: string;
|
|
21009
21057
|
} | {
|
|
21010
21058
|
agentId: string;
|
|
21011
21059
|
thinkingOptionId: string | null;
|
|
@@ -21472,8 +21520,8 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21472
21520
|
} | {
|
|
21473
21521
|
agentId: string;
|
|
21474
21522
|
type: "set_agent_model_request";
|
|
21475
|
-
requestId: string;
|
|
21476
21523
|
modelId: string | null;
|
|
21524
|
+
requestId: string;
|
|
21477
21525
|
} | {
|
|
21478
21526
|
agentId: string;
|
|
21479
21527
|
thinkingOptionId: string | null;
|
|
@@ -27264,6 +27312,31 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27264
27312
|
homeDir: string;
|
|
27265
27313
|
rootDir: string;
|
|
27266
27314
|
}>;
|
|
27315
|
+
update: z.ZodOptional<z.ZodObject<{
|
|
27316
|
+
packageName: z.ZodString;
|
|
27317
|
+
currentVersion: z.ZodNullable<z.ZodString>;
|
|
27318
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
27319
|
+
status: z.ZodEnum<["current", "stale", "unknown"]>;
|
|
27320
|
+
blocked: z.ZodBoolean;
|
|
27321
|
+
message: z.ZodString;
|
|
27322
|
+
remediation: z.ZodNullable<z.ZodString>;
|
|
27323
|
+
}, "strip", z.ZodTypeAny, {
|
|
27324
|
+
status: "unknown" | "current" | "stale";
|
|
27325
|
+
message: string;
|
|
27326
|
+
remediation: string | null;
|
|
27327
|
+
packageName: string;
|
|
27328
|
+
currentVersion: string | null;
|
|
27329
|
+
latestVersion: string | null;
|
|
27330
|
+
blocked: boolean;
|
|
27331
|
+
}, {
|
|
27332
|
+
status: "unknown" | "current" | "stale";
|
|
27333
|
+
message: string;
|
|
27334
|
+
remediation: string | null;
|
|
27335
|
+
packageName: string;
|
|
27336
|
+
currentVersion: string | null;
|
|
27337
|
+
latestVersion: string | null;
|
|
27338
|
+
blocked: boolean;
|
|
27339
|
+
}>>;
|
|
27267
27340
|
summary: z.ZodEnum<["pass", "warn", "fail"]>;
|
|
27268
27341
|
checks: z.ZodArray<z.ZodObject<{
|
|
27269
27342
|
id: z.ZodString;
|
|
@@ -27318,6 +27391,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27318
27391
|
remediation: string | null;
|
|
27319
27392
|
}[];
|
|
27320
27393
|
ranAt: string;
|
|
27394
|
+
update?: {
|
|
27395
|
+
status: "unknown" | "current" | "stale";
|
|
27396
|
+
message: string;
|
|
27397
|
+
remediation: string | null;
|
|
27398
|
+
packageName: string;
|
|
27399
|
+
currentVersion: string | null;
|
|
27400
|
+
latestVersion: string | null;
|
|
27401
|
+
blocked: boolean;
|
|
27402
|
+
} | undefined;
|
|
27321
27403
|
}, {
|
|
27322
27404
|
error: string | null;
|
|
27323
27405
|
summary: "pass" | "warn" | "fail";
|
|
@@ -27340,6 +27422,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27340
27422
|
remediation: string | null;
|
|
27341
27423
|
}[];
|
|
27342
27424
|
ranAt: string;
|
|
27425
|
+
update?: {
|
|
27426
|
+
status: "unknown" | "current" | "stale";
|
|
27427
|
+
message: string;
|
|
27428
|
+
remediation: string | null;
|
|
27429
|
+
packageName: string;
|
|
27430
|
+
currentVersion: string | null;
|
|
27431
|
+
latestVersion: string | null;
|
|
27432
|
+
blocked: boolean;
|
|
27433
|
+
} | undefined;
|
|
27343
27434
|
}>;
|
|
27344
27435
|
}, "strip", z.ZodTypeAny, {
|
|
27345
27436
|
type: "run_daemon_doctor_response";
|
|
@@ -27365,6 +27456,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27365
27456
|
remediation: string | null;
|
|
27366
27457
|
}[];
|
|
27367
27458
|
ranAt: string;
|
|
27459
|
+
update?: {
|
|
27460
|
+
status: "unknown" | "current" | "stale";
|
|
27461
|
+
message: string;
|
|
27462
|
+
remediation: string | null;
|
|
27463
|
+
packageName: string;
|
|
27464
|
+
currentVersion: string | null;
|
|
27465
|
+
latestVersion: string | null;
|
|
27466
|
+
blocked: boolean;
|
|
27467
|
+
} | undefined;
|
|
27368
27468
|
};
|
|
27369
27469
|
}, {
|
|
27370
27470
|
type: "run_daemon_doctor_response";
|
|
@@ -27390,6 +27490,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27390
27490
|
remediation: string | null;
|
|
27391
27491
|
}[];
|
|
27392
27492
|
ranAt: string;
|
|
27493
|
+
update?: {
|
|
27494
|
+
status: "unknown" | "current" | "stale";
|
|
27495
|
+
message: string;
|
|
27496
|
+
remediation: string | null;
|
|
27497
|
+
packageName: string;
|
|
27498
|
+
currentVersion: string | null;
|
|
27499
|
+
latestVersion: string | null;
|
|
27500
|
+
blocked: boolean;
|
|
27501
|
+
} | undefined;
|
|
27393
27502
|
};
|
|
27394
27503
|
}>, z.ZodObject<{
|
|
27395
27504
|
type: z.ZodLiteral<"get_daemon_provider_settings_response">;
|
|
@@ -27649,37 +27758,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27649
27758
|
homeDir: string;
|
|
27650
27759
|
rootDir: string;
|
|
27651
27760
|
}>;
|
|
27652
|
-
provider: z.
|
|
27653
|
-
|
|
27654
|
-
source: z.ZodEnum<["system", "manual", "custom"]>;
|
|
27655
|
-
executablePath: z.ZodNullable<z.ZodString>;
|
|
27656
|
-
commandSummary: z.ZodNullable<z.ZodString>;
|
|
27657
|
-
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
27658
|
-
}, "strip", z.ZodTypeAny, {
|
|
27659
|
-
provider: "codex" | "claude" | "gemini";
|
|
27660
|
-
source: "manual" | "custom" | "system";
|
|
27661
|
-
resolvedPath: string | null;
|
|
27662
|
-
executablePath: string | null;
|
|
27663
|
-
commandSummary: string | null;
|
|
27664
|
-
}, {
|
|
27665
|
-
provider: "codex" | "claude" | "gemini";
|
|
27666
|
-
source: "manual" | "custom" | "system";
|
|
27667
|
-
resolvedPath: string | null;
|
|
27668
|
-
executablePath: string | null;
|
|
27669
|
-
commandSummary: string | null;
|
|
27670
|
-
}>>;
|
|
27761
|
+
provider: z.ZodEnum<["claude", "codex", "gemini"]>;
|
|
27762
|
+
executablePath: z.ZodNullable<z.ZodString>;
|
|
27671
27763
|
error: z.ZodNullable<z.ZodString>;
|
|
27672
27764
|
requestId: z.ZodString;
|
|
27673
27765
|
}, "strip", z.ZodTypeAny, {
|
|
27674
27766
|
error: string | null;
|
|
27675
|
-
provider:
|
|
27676
|
-
provider: "codex" | "claude" | "gemini";
|
|
27677
|
-
source: "manual" | "custom" | "system";
|
|
27678
|
-
resolvedPath: string | null;
|
|
27679
|
-
executablePath: string | null;
|
|
27680
|
-
commandSummary: string | null;
|
|
27681
|
-
} | null;
|
|
27767
|
+
provider: "codex" | "claude" | "gemini";
|
|
27682
27768
|
requestId: string;
|
|
27769
|
+
executablePath: string | null;
|
|
27683
27770
|
daemon: {
|
|
27684
27771
|
hostname: string | null;
|
|
27685
27772
|
version: string | null;
|
|
@@ -27689,14 +27776,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27689
27776
|
};
|
|
27690
27777
|
}, {
|
|
27691
27778
|
error: string | null;
|
|
27692
|
-
provider:
|
|
27693
|
-
provider: "codex" | "claude" | "gemini";
|
|
27694
|
-
source: "manual" | "custom" | "system";
|
|
27695
|
-
resolvedPath: string | null;
|
|
27696
|
-
executablePath: string | null;
|
|
27697
|
-
commandSummary: string | null;
|
|
27698
|
-
} | null;
|
|
27779
|
+
provider: "codex" | "claude" | "gemini";
|
|
27699
27780
|
requestId: string;
|
|
27781
|
+
executablePath: string | null;
|
|
27700
27782
|
daemon: {
|
|
27701
27783
|
hostname: string | null;
|
|
27702
27784
|
version: string | null;
|
|
@@ -27709,14 +27791,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27709
27791
|
type: "auto_route_provider_response";
|
|
27710
27792
|
payload: {
|
|
27711
27793
|
error: string | null;
|
|
27712
|
-
provider:
|
|
27713
|
-
provider: "codex" | "claude" | "gemini";
|
|
27714
|
-
source: "manual" | "custom" | "system";
|
|
27715
|
-
resolvedPath: string | null;
|
|
27716
|
-
executablePath: string | null;
|
|
27717
|
-
commandSummary: string | null;
|
|
27718
|
-
} | null;
|
|
27794
|
+
provider: "codex" | "claude" | "gemini";
|
|
27719
27795
|
requestId: string;
|
|
27796
|
+
executablePath: string | null;
|
|
27720
27797
|
daemon: {
|
|
27721
27798
|
hostname: string | null;
|
|
27722
27799
|
version: string | null;
|
|
@@ -27729,14 +27806,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27729
27806
|
type: "auto_route_provider_response";
|
|
27730
27807
|
payload: {
|
|
27731
27808
|
error: string | null;
|
|
27732
|
-
provider:
|
|
27733
|
-
provider: "codex" | "claude" | "gemini";
|
|
27734
|
-
source: "manual" | "custom" | "system";
|
|
27735
|
-
resolvedPath: string | null;
|
|
27736
|
-
executablePath: string | null;
|
|
27737
|
-
commandSummary: string | null;
|
|
27738
|
-
} | null;
|
|
27809
|
+
provider: "codex" | "claude" | "gemini";
|
|
27739
27810
|
requestId: string;
|
|
27811
|
+
executablePath: string | null;
|
|
27740
27812
|
daemon: {
|
|
27741
27813
|
hostname: string | null;
|
|
27742
27814
|
version: string | null;
|
|
@@ -29495,6 +29567,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29495
29567
|
remediation: string | null;
|
|
29496
29568
|
}[];
|
|
29497
29569
|
ranAt: string;
|
|
29570
|
+
update?: {
|
|
29571
|
+
status: "unknown" | "current" | "stale";
|
|
29572
|
+
message: string;
|
|
29573
|
+
remediation: string | null;
|
|
29574
|
+
packageName: string;
|
|
29575
|
+
currentVersion: string | null;
|
|
29576
|
+
latestVersion: string | null;
|
|
29577
|
+
blocked: boolean;
|
|
29578
|
+
} | undefined;
|
|
29498
29579
|
};
|
|
29499
29580
|
} | {
|
|
29500
29581
|
type: "get_daemon_provider_settings_response";
|
|
@@ -29540,14 +29621,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
29540
29621
|
type: "auto_route_provider_response";
|
|
29541
29622
|
payload: {
|
|
29542
29623
|
error: string | null;
|
|
29543
|
-
provider:
|
|
29544
|
-
provider: "codex" | "claude" | "gemini";
|
|
29545
|
-
source: "manual" | "custom" | "system";
|
|
29546
|
-
resolvedPath: string | null;
|
|
29547
|
-
executablePath: string | null;
|
|
29548
|
-
commandSummary: string | null;
|
|
29549
|
-
} | null;
|
|
29624
|
+
provider: "codex" | "claude" | "gemini";
|
|
29550
29625
|
requestId: string;
|
|
29626
|
+
executablePath: string | null;
|
|
29551
29627
|
daemon: {
|
|
29552
29628
|
hostname: string | null;
|
|
29553
29629
|
version: string | null;
|
|
@@ -30627,6 +30703,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30627
30703
|
remediation: string | null;
|
|
30628
30704
|
}[];
|
|
30629
30705
|
ranAt: string;
|
|
30706
|
+
update?: {
|
|
30707
|
+
status: "unknown" | "current" | "stale";
|
|
30708
|
+
message: string;
|
|
30709
|
+
remediation: string | null;
|
|
30710
|
+
packageName: string;
|
|
30711
|
+
currentVersion: string | null;
|
|
30712
|
+
latestVersion: string | null;
|
|
30713
|
+
blocked: boolean;
|
|
30714
|
+
} | undefined;
|
|
30630
30715
|
};
|
|
30631
30716
|
} | {
|
|
30632
30717
|
type: "get_daemon_provider_settings_response";
|
|
@@ -30672,14 +30757,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
30672
30757
|
type: "auto_route_provider_response";
|
|
30673
30758
|
payload: {
|
|
30674
30759
|
error: string | null;
|
|
30675
|
-
provider:
|
|
30676
|
-
provider: "codex" | "claude" | "gemini";
|
|
30677
|
-
source: "manual" | "custom" | "system";
|
|
30678
|
-
resolvedPath: string | null;
|
|
30679
|
-
executablePath: string | null;
|
|
30680
|
-
commandSummary: string | null;
|
|
30681
|
-
} | null;
|
|
30760
|
+
provider: "codex" | "claude" | "gemini";
|
|
30682
30761
|
requestId: string;
|
|
30762
|
+
executablePath: string | null;
|
|
30683
30763
|
daemon: {
|
|
30684
30764
|
hostname: string | null;
|
|
30685
30765
|
version: string | null;
|
|
@@ -31806,13 +31886,13 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
31806
31886
|
}, "strip", z.ZodTypeAny, {
|
|
31807
31887
|
agentId: string;
|
|
31808
31888
|
type: "set_agent_model_request";
|
|
31809
|
-
requestId: string;
|
|
31810
31889
|
modelId: string | null;
|
|
31890
|
+
requestId: string;
|
|
31811
31891
|
}, {
|
|
31812
31892
|
agentId: string;
|
|
31813
31893
|
type: "set_agent_model_request";
|
|
31814
|
-
requestId: string;
|
|
31815
31894
|
modelId: string | null;
|
|
31895
|
+
requestId: string;
|
|
31816
31896
|
}>, z.ZodObject<{
|
|
31817
31897
|
type: z.ZodLiteral<"set_agent_thinking_request">;
|
|
31818
31898
|
agentId: z.ZodString;
|
|
@@ -32816,8 +32896,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
32816
32896
|
} | {
|
|
32817
32897
|
agentId: string;
|
|
32818
32898
|
type: "set_agent_model_request";
|
|
32819
|
-
requestId: string;
|
|
32820
32899
|
modelId: string | null;
|
|
32900
|
+
requestId: string;
|
|
32821
32901
|
} | {
|
|
32822
32902
|
agentId: string;
|
|
32823
32903
|
thinkingOptionId: string | null;
|
|
@@ -33284,8 +33364,8 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
33284
33364
|
} | {
|
|
33285
33365
|
agentId: string;
|
|
33286
33366
|
type: "set_agent_model_request";
|
|
33287
|
-
requestId: string;
|
|
33288
33367
|
modelId: string | null;
|
|
33368
|
+
requestId: string;
|
|
33289
33369
|
} | {
|
|
33290
33370
|
agentId: string;
|
|
33291
33371
|
thinkingOptionId: string | null;
|
|
@@ -39103,6 +39183,31 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39103
39183
|
homeDir: string;
|
|
39104
39184
|
rootDir: string;
|
|
39105
39185
|
}>;
|
|
39186
|
+
update: z.ZodOptional<z.ZodObject<{
|
|
39187
|
+
packageName: z.ZodString;
|
|
39188
|
+
currentVersion: z.ZodNullable<z.ZodString>;
|
|
39189
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
39190
|
+
status: z.ZodEnum<["current", "stale", "unknown"]>;
|
|
39191
|
+
blocked: z.ZodBoolean;
|
|
39192
|
+
message: z.ZodString;
|
|
39193
|
+
remediation: z.ZodNullable<z.ZodString>;
|
|
39194
|
+
}, "strip", z.ZodTypeAny, {
|
|
39195
|
+
status: "unknown" | "current" | "stale";
|
|
39196
|
+
message: string;
|
|
39197
|
+
remediation: string | null;
|
|
39198
|
+
packageName: string;
|
|
39199
|
+
currentVersion: string | null;
|
|
39200
|
+
latestVersion: string | null;
|
|
39201
|
+
blocked: boolean;
|
|
39202
|
+
}, {
|
|
39203
|
+
status: "unknown" | "current" | "stale";
|
|
39204
|
+
message: string;
|
|
39205
|
+
remediation: string | null;
|
|
39206
|
+
packageName: string;
|
|
39207
|
+
currentVersion: string | null;
|
|
39208
|
+
latestVersion: string | null;
|
|
39209
|
+
blocked: boolean;
|
|
39210
|
+
}>>;
|
|
39106
39211
|
summary: z.ZodEnum<["pass", "warn", "fail"]>;
|
|
39107
39212
|
checks: z.ZodArray<z.ZodObject<{
|
|
39108
39213
|
id: z.ZodString;
|
|
@@ -39157,6 +39262,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39157
39262
|
remediation: string | null;
|
|
39158
39263
|
}[];
|
|
39159
39264
|
ranAt: string;
|
|
39265
|
+
update?: {
|
|
39266
|
+
status: "unknown" | "current" | "stale";
|
|
39267
|
+
message: string;
|
|
39268
|
+
remediation: string | null;
|
|
39269
|
+
packageName: string;
|
|
39270
|
+
currentVersion: string | null;
|
|
39271
|
+
latestVersion: string | null;
|
|
39272
|
+
blocked: boolean;
|
|
39273
|
+
} | undefined;
|
|
39160
39274
|
}, {
|
|
39161
39275
|
error: string | null;
|
|
39162
39276
|
summary: "pass" | "warn" | "fail";
|
|
@@ -39179,6 +39293,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39179
39293
|
remediation: string | null;
|
|
39180
39294
|
}[];
|
|
39181
39295
|
ranAt: string;
|
|
39296
|
+
update?: {
|
|
39297
|
+
status: "unknown" | "current" | "stale";
|
|
39298
|
+
message: string;
|
|
39299
|
+
remediation: string | null;
|
|
39300
|
+
packageName: string;
|
|
39301
|
+
currentVersion: string | null;
|
|
39302
|
+
latestVersion: string | null;
|
|
39303
|
+
blocked: boolean;
|
|
39304
|
+
} | undefined;
|
|
39182
39305
|
}>;
|
|
39183
39306
|
}, "strip", z.ZodTypeAny, {
|
|
39184
39307
|
type: "run_daemon_doctor_response";
|
|
@@ -39204,6 +39327,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39204
39327
|
remediation: string | null;
|
|
39205
39328
|
}[];
|
|
39206
39329
|
ranAt: string;
|
|
39330
|
+
update?: {
|
|
39331
|
+
status: "unknown" | "current" | "stale";
|
|
39332
|
+
message: string;
|
|
39333
|
+
remediation: string | null;
|
|
39334
|
+
packageName: string;
|
|
39335
|
+
currentVersion: string | null;
|
|
39336
|
+
latestVersion: string | null;
|
|
39337
|
+
blocked: boolean;
|
|
39338
|
+
} | undefined;
|
|
39207
39339
|
};
|
|
39208
39340
|
}, {
|
|
39209
39341
|
type: "run_daemon_doctor_response";
|
|
@@ -39229,6 +39361,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39229
39361
|
remediation: string | null;
|
|
39230
39362
|
}[];
|
|
39231
39363
|
ranAt: string;
|
|
39364
|
+
update?: {
|
|
39365
|
+
status: "unknown" | "current" | "stale";
|
|
39366
|
+
message: string;
|
|
39367
|
+
remediation: string | null;
|
|
39368
|
+
packageName: string;
|
|
39369
|
+
currentVersion: string | null;
|
|
39370
|
+
latestVersion: string | null;
|
|
39371
|
+
blocked: boolean;
|
|
39372
|
+
} | undefined;
|
|
39232
39373
|
};
|
|
39233
39374
|
}>, z.ZodObject<{
|
|
39234
39375
|
type: z.ZodLiteral<"get_daemon_provider_settings_response">;
|
|
@@ -39488,37 +39629,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39488
39629
|
homeDir: string;
|
|
39489
39630
|
rootDir: string;
|
|
39490
39631
|
}>;
|
|
39491
|
-
provider: z.
|
|
39492
|
-
|
|
39493
|
-
source: z.ZodEnum<["system", "manual", "custom"]>;
|
|
39494
|
-
executablePath: z.ZodNullable<z.ZodString>;
|
|
39495
|
-
commandSummary: z.ZodNullable<z.ZodString>;
|
|
39496
|
-
resolvedPath: z.ZodNullable<z.ZodString>;
|
|
39497
|
-
}, "strip", z.ZodTypeAny, {
|
|
39498
|
-
provider: "codex" | "claude" | "gemini";
|
|
39499
|
-
source: "manual" | "custom" | "system";
|
|
39500
|
-
resolvedPath: string | null;
|
|
39501
|
-
executablePath: string | null;
|
|
39502
|
-
commandSummary: string | null;
|
|
39503
|
-
}, {
|
|
39504
|
-
provider: "codex" | "claude" | "gemini";
|
|
39505
|
-
source: "manual" | "custom" | "system";
|
|
39506
|
-
resolvedPath: string | null;
|
|
39507
|
-
executablePath: string | null;
|
|
39508
|
-
commandSummary: string | null;
|
|
39509
|
-
}>>;
|
|
39632
|
+
provider: z.ZodEnum<["claude", "codex", "gemini"]>;
|
|
39633
|
+
executablePath: z.ZodNullable<z.ZodString>;
|
|
39510
39634
|
error: z.ZodNullable<z.ZodString>;
|
|
39511
39635
|
requestId: z.ZodString;
|
|
39512
39636
|
}, "strip", z.ZodTypeAny, {
|
|
39513
39637
|
error: string | null;
|
|
39514
|
-
provider:
|
|
39515
|
-
provider: "codex" | "claude" | "gemini";
|
|
39516
|
-
source: "manual" | "custom" | "system";
|
|
39517
|
-
resolvedPath: string | null;
|
|
39518
|
-
executablePath: string | null;
|
|
39519
|
-
commandSummary: string | null;
|
|
39520
|
-
} | null;
|
|
39638
|
+
provider: "codex" | "claude" | "gemini";
|
|
39521
39639
|
requestId: string;
|
|
39640
|
+
executablePath: string | null;
|
|
39522
39641
|
daemon: {
|
|
39523
39642
|
hostname: string | null;
|
|
39524
39643
|
version: string | null;
|
|
@@ -39528,14 +39647,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39528
39647
|
};
|
|
39529
39648
|
}, {
|
|
39530
39649
|
error: string | null;
|
|
39531
|
-
provider:
|
|
39532
|
-
provider: "codex" | "claude" | "gemini";
|
|
39533
|
-
source: "manual" | "custom" | "system";
|
|
39534
|
-
resolvedPath: string | null;
|
|
39535
|
-
executablePath: string | null;
|
|
39536
|
-
commandSummary: string | null;
|
|
39537
|
-
} | null;
|
|
39650
|
+
provider: "codex" | "claude" | "gemini";
|
|
39538
39651
|
requestId: string;
|
|
39652
|
+
executablePath: string | null;
|
|
39539
39653
|
daemon: {
|
|
39540
39654
|
hostname: string | null;
|
|
39541
39655
|
version: string | null;
|
|
@@ -39548,14 +39662,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39548
39662
|
type: "auto_route_provider_response";
|
|
39549
39663
|
payload: {
|
|
39550
39664
|
error: string | null;
|
|
39551
|
-
provider:
|
|
39552
|
-
provider: "codex" | "claude" | "gemini";
|
|
39553
|
-
source: "manual" | "custom" | "system";
|
|
39554
|
-
resolvedPath: string | null;
|
|
39555
|
-
executablePath: string | null;
|
|
39556
|
-
commandSummary: string | null;
|
|
39557
|
-
} | null;
|
|
39665
|
+
provider: "codex" | "claude" | "gemini";
|
|
39558
39666
|
requestId: string;
|
|
39667
|
+
executablePath: string | null;
|
|
39559
39668
|
daemon: {
|
|
39560
39669
|
hostname: string | null;
|
|
39561
39670
|
version: string | null;
|
|
@@ -39568,14 +39677,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
39568
39677
|
type: "auto_route_provider_response";
|
|
39569
39678
|
payload: {
|
|
39570
39679
|
error: string | null;
|
|
39571
|
-
provider:
|
|
39572
|
-
provider: "codex" | "claude" | "gemini";
|
|
39573
|
-
source: "manual" | "custom" | "system";
|
|
39574
|
-
resolvedPath: string | null;
|
|
39575
|
-
executablePath: string | null;
|
|
39576
|
-
commandSummary: string | null;
|
|
39577
|
-
} | null;
|
|
39680
|
+
provider: "codex" | "claude" | "gemini";
|
|
39578
39681
|
requestId: string;
|
|
39682
|
+
executablePath: string | null;
|
|
39579
39683
|
daemon: {
|
|
39580
39684
|
hostname: string | null;
|
|
39581
39685
|
version: string | null;
|
|
@@ -41334,6 +41438,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41334
41438
|
remediation: string | null;
|
|
41335
41439
|
}[];
|
|
41336
41440
|
ranAt: string;
|
|
41441
|
+
update?: {
|
|
41442
|
+
status: "unknown" | "current" | "stale";
|
|
41443
|
+
message: string;
|
|
41444
|
+
remediation: string | null;
|
|
41445
|
+
packageName: string;
|
|
41446
|
+
currentVersion: string | null;
|
|
41447
|
+
latestVersion: string | null;
|
|
41448
|
+
blocked: boolean;
|
|
41449
|
+
} | undefined;
|
|
41337
41450
|
};
|
|
41338
41451
|
} | {
|
|
41339
41452
|
type: "get_daemon_provider_settings_response";
|
|
@@ -41379,14 +41492,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
41379
41492
|
type: "auto_route_provider_response";
|
|
41380
41493
|
payload: {
|
|
41381
41494
|
error: string | null;
|
|
41382
|
-
provider:
|
|
41383
|
-
provider: "codex" | "claude" | "gemini";
|
|
41384
|
-
source: "manual" | "custom" | "system";
|
|
41385
|
-
resolvedPath: string | null;
|
|
41386
|
-
executablePath: string | null;
|
|
41387
|
-
commandSummary: string | null;
|
|
41388
|
-
} | null;
|
|
41495
|
+
provider: "codex" | "claude" | "gemini";
|
|
41389
41496
|
requestId: string;
|
|
41497
|
+
executablePath: string | null;
|
|
41390
41498
|
daemon: {
|
|
41391
41499
|
hostname: string | null;
|
|
41392
41500
|
version: string | null;
|
|
@@ -42466,6 +42574,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
42466
42574
|
remediation: string | null;
|
|
42467
42575
|
}[];
|
|
42468
42576
|
ranAt: string;
|
|
42577
|
+
update?: {
|
|
42578
|
+
status: "unknown" | "current" | "stale";
|
|
42579
|
+
message: string;
|
|
42580
|
+
remediation: string | null;
|
|
42581
|
+
packageName: string;
|
|
42582
|
+
currentVersion: string | null;
|
|
42583
|
+
latestVersion: string | null;
|
|
42584
|
+
blocked: boolean;
|
|
42585
|
+
} | undefined;
|
|
42469
42586
|
};
|
|
42470
42587
|
} | {
|
|
42471
42588
|
type: "get_daemon_provider_settings_response";
|
|
@@ -42511,14 +42628,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
42511
42628
|
type: "auto_route_provider_response";
|
|
42512
42629
|
payload: {
|
|
42513
42630
|
error: string | null;
|
|
42514
|
-
provider:
|
|
42515
|
-
provider: "codex" | "claude" | "gemini";
|
|
42516
|
-
source: "manual" | "custom" | "system";
|
|
42517
|
-
resolvedPath: string | null;
|
|
42518
|
-
executablePath: string | null;
|
|
42519
|
-
commandSummary: string | null;
|
|
42520
|
-
} | null;
|
|
42631
|
+
provider: "codex" | "claude" | "gemini";
|
|
42521
42632
|
requestId: string;
|
|
42633
|
+
executablePath: string | null;
|
|
42522
42634
|
daemon: {
|
|
42523
42635
|
hostname: string | null;
|
|
42524
42636
|
version: string | null;
|