@otto-code/protocol 0.8.7 → 0.8.8
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/generated/validation/ws-outbound.aot.js +47823 -46923
- package/dist/messages.d.ts +1076 -12
- package/dist/messages.js +118 -2
- package/dist/validation/ws-outbound-schema-metadata.d.ts +215 -2
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -207,6 +207,14 @@ export declare const MutableBrainConfigSchema: z.ZodObject<{
|
|
|
207
207
|
port: z.ZodDefault<z.ZodNumber>;
|
|
208
208
|
}, z.core.$loose>>;
|
|
209
209
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
210
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
211
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
212
|
+
auto: "auto";
|
|
213
|
+
managed: "managed";
|
|
214
|
+
lmstudio: "lmstudio";
|
|
215
|
+
}>>;
|
|
216
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
217
|
+
}, z.core.$strip>>;
|
|
210
218
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
211
219
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
212
220
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -249,6 +257,14 @@ export declare const MutableBrainConfigPatchSchema: z.ZodObject<{
|
|
|
249
257
|
port: z.ZodOptional<z.ZodNumber>;
|
|
250
258
|
}, z.core.$loose>>;
|
|
251
259
|
defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
260
|
+
runtime: z.ZodOptional<z.ZodObject<{
|
|
261
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
262
|
+
auto: "auto";
|
|
263
|
+
managed: "managed";
|
|
264
|
+
lmstudio: "lmstudio";
|
|
265
|
+
}>>;
|
|
266
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
267
|
+
}, z.core.$strip>>;
|
|
252
268
|
lockModel: z.ZodOptional<z.ZodBoolean>;
|
|
253
269
|
allowRemoteConfig: z.ZodOptional<z.ZodBoolean>;
|
|
254
270
|
allowInsecureBind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -287,6 +303,10 @@ export declare const DEFAULT_MUTABLE_BRAIN_CONFIG: {
|
|
|
287
303
|
port: number;
|
|
288
304
|
};
|
|
289
305
|
defaultModel: null;
|
|
306
|
+
runtime: {
|
|
307
|
+
source: "auto";
|
|
308
|
+
path: null;
|
|
309
|
+
};
|
|
290
310
|
lockModel: boolean;
|
|
291
311
|
allowRemoteConfig: boolean;
|
|
292
312
|
allowInsecureBind: boolean;
|
|
@@ -500,6 +520,14 @@ export declare const MutableDaemonConfigSchema: z.ZodObject<{
|
|
|
500
520
|
port: z.ZodDefault<z.ZodNumber>;
|
|
501
521
|
}, z.core.$loose>>;
|
|
502
522
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
523
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
524
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
525
|
+
auto: "auto";
|
|
526
|
+
managed: "managed";
|
|
527
|
+
lmstudio: "lmstudio";
|
|
528
|
+
}>>;
|
|
529
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
503
531
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
504
532
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
505
533
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -767,6 +795,14 @@ export declare const MutableDaemonConfigPatchSchema: z.ZodObject<{
|
|
|
767
795
|
port: z.ZodOptional<z.ZodNumber>;
|
|
768
796
|
}, z.core.$loose>>;
|
|
769
797
|
defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
798
|
+
runtime: z.ZodOptional<z.ZodObject<{
|
|
799
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
800
|
+
auto: "auto";
|
|
801
|
+
managed: "managed";
|
|
802
|
+
lmstudio: "lmstudio";
|
|
803
|
+
}>>;
|
|
804
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
805
|
+
}, z.core.$strip>>;
|
|
770
806
|
lockModel: z.ZodOptional<z.ZodBoolean>;
|
|
771
807
|
allowRemoteConfig: z.ZodOptional<z.ZodBoolean>;
|
|
772
808
|
allowInsecureBind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1866,10 +1902,24 @@ export declare const BrainCatalogModelSchema: z.ZodObject<{
|
|
|
1866
1902
|
tier: z.ZodDefault<z.ZodString>;
|
|
1867
1903
|
useCases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1868
1904
|
why: z.ZodDefault<z.ZodString>;
|
|
1905
|
+
components: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1906
|
+
id: z.ZodString;
|
|
1907
|
+
label: z.ZodDefault<z.ZodString>;
|
|
1908
|
+
description: z.ZodDefault<z.ZodString>;
|
|
1909
|
+
role: z.ZodDefault<z.ZodString>;
|
|
1910
|
+
hfRepo: z.ZodOptional<z.ZodString>;
|
|
1911
|
+
file: z.ZodDefault<z.ZodString>;
|
|
1912
|
+
bytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1913
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1914
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
1915
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
1916
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
1917
|
+
}, z.core.$strip>>>;
|
|
1869
1918
|
}, z.core.$loose>;
|
|
1870
1919
|
export type BrainCatalogModel = z.infer<typeof BrainCatalogModelSchema>;
|
|
1871
1920
|
export declare const BrainRuntimeSchema: z.ZodObject<{
|
|
1872
1921
|
label: z.ZodDefault<z.ZodString>;
|
|
1922
|
+
displayName: z.ZodDefault<z.ZodString>;
|
|
1873
1923
|
version: z.ZodDefault<z.ZodString>;
|
|
1874
1924
|
source: z.ZodDefault<z.ZodString>;
|
|
1875
1925
|
dir: z.ZodDefault<z.ZodString>;
|
|
@@ -1878,6 +1928,7 @@ export type BrainRuntime = z.infer<typeof BrainRuntimeSchema>;
|
|
|
1878
1928
|
export declare const BrainJobKindSchema: z.ZodEnum<{
|
|
1879
1929
|
pull: "pull";
|
|
1880
1930
|
"runtime-install": "runtime-install";
|
|
1931
|
+
"runtime-remove": "runtime-remove";
|
|
1881
1932
|
calibrate: "calibrate";
|
|
1882
1933
|
sweep: "sweep";
|
|
1883
1934
|
bench: "bench";
|
|
@@ -1895,6 +1946,7 @@ export declare const BrainJobSchema: z.ZodObject<{
|
|
|
1895
1946
|
kind: z.ZodEnum<{
|
|
1896
1947
|
pull: "pull";
|
|
1897
1948
|
"runtime-install": "runtime-install";
|
|
1949
|
+
"runtime-remove": "runtime-remove";
|
|
1898
1950
|
calibrate: "calibrate";
|
|
1899
1951
|
sweep: "sweep";
|
|
1900
1952
|
bench: "bench";
|
|
@@ -1959,6 +2011,19 @@ export declare const BrainCatalogListResponseSchema: z.ZodObject<{
|
|
|
1959
2011
|
tier: z.ZodDefault<z.ZodString>;
|
|
1960
2012
|
useCases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1961
2013
|
why: z.ZodDefault<z.ZodString>;
|
|
2014
|
+
components: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2015
|
+
id: z.ZodString;
|
|
2016
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2017
|
+
description: z.ZodDefault<z.ZodString>;
|
|
2018
|
+
role: z.ZodDefault<z.ZodString>;
|
|
2019
|
+
hfRepo: z.ZodOptional<z.ZodString>;
|
|
2020
|
+
file: z.ZodDefault<z.ZodString>;
|
|
2021
|
+
bytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2022
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2023
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
2024
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
2025
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
2026
|
+
}, z.core.$strip>>>;
|
|
1962
2027
|
}, z.core.$loose>>>;
|
|
1963
2028
|
error: z.ZodNullable<z.ZodString>;
|
|
1964
2029
|
requestId: z.ZodString;
|
|
@@ -1973,6 +2038,7 @@ export declare const BrainRuntimeListResponseSchema: z.ZodObject<{
|
|
|
1973
2038
|
payload: z.ZodObject<{
|
|
1974
2039
|
runtimes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1975
2040
|
label: z.ZodDefault<z.ZodString>;
|
|
2041
|
+
displayName: z.ZodDefault<z.ZodString>;
|
|
1976
2042
|
version: z.ZodDefault<z.ZodString>;
|
|
1977
2043
|
source: z.ZodDefault<z.ZodString>;
|
|
1978
2044
|
dir: z.ZodDefault<z.ZodString>;
|
|
@@ -1984,6 +2050,8 @@ export declare const BrainRuntimeListResponseSchema: z.ZodObject<{
|
|
|
1984
2050
|
export declare const BrainModelsPullRequestSchema: z.ZodObject<{
|
|
1985
2051
|
type: z.ZodLiteral<"brain.models.pull.request">;
|
|
1986
2052
|
model: z.ZodString;
|
|
2053
|
+
quant: z.ZodOptional<z.ZodString>;
|
|
2054
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1987
2055
|
requestId: z.ZodString;
|
|
1988
2056
|
}, z.core.$strip>;
|
|
1989
2057
|
export declare const BrainModelsPullResponseSchema: z.ZodObject<{
|
|
@@ -1994,6 +2062,7 @@ export declare const BrainModelsPullResponseSchema: z.ZodObject<{
|
|
|
1994
2062
|
kind: z.ZodEnum<{
|
|
1995
2063
|
pull: "pull";
|
|
1996
2064
|
"runtime-install": "runtime-install";
|
|
2065
|
+
"runtime-remove": "runtime-remove";
|
|
1997
2066
|
calibrate: "calibrate";
|
|
1998
2067
|
sweep: "sweep";
|
|
1999
2068
|
bench: "bench";
|
|
@@ -2029,6 +2098,43 @@ export declare const BrainRuntimeInstallResponseSchema: z.ZodObject<{
|
|
|
2029
2098
|
kind: z.ZodEnum<{
|
|
2030
2099
|
pull: "pull";
|
|
2031
2100
|
"runtime-install": "runtime-install";
|
|
2101
|
+
"runtime-remove": "runtime-remove";
|
|
2102
|
+
calibrate: "calibrate";
|
|
2103
|
+
sweep: "sweep";
|
|
2104
|
+
bench: "bench";
|
|
2105
|
+
}>;
|
|
2106
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2107
|
+
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2108
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
2109
|
+
running: "running";
|
|
2110
|
+
failed: "failed";
|
|
2111
|
+
canceled: "canceled";
|
|
2112
|
+
succeeded: "succeeded";
|
|
2113
|
+
}>>;
|
|
2114
|
+
percent: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2115
|
+
message: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2116
|
+
error: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2117
|
+
startedAt: z.ZodDefault<z.ZodString>;
|
|
2118
|
+
finishedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2119
|
+
}, z.core.$loose>>;
|
|
2120
|
+
error: z.ZodNullable<z.ZodString>;
|
|
2121
|
+
requestId: z.ZodString;
|
|
2122
|
+
}, z.core.$strip>;
|
|
2123
|
+
}, z.core.$strip>;
|
|
2124
|
+
export declare const BrainRuntimeRemoveRequestSchema: z.ZodObject<{
|
|
2125
|
+
type: z.ZodLiteral<"brain.runtime.remove.request">;
|
|
2126
|
+
name: z.ZodString;
|
|
2127
|
+
requestId: z.ZodString;
|
|
2128
|
+
}, z.core.$strip>;
|
|
2129
|
+
export declare const BrainRuntimeRemoveResponseSchema: z.ZodObject<{
|
|
2130
|
+
type: z.ZodLiteral<"brain.runtime.remove.response">;
|
|
2131
|
+
payload: z.ZodObject<{
|
|
2132
|
+
job: z.ZodNullable<z.ZodObject<{
|
|
2133
|
+
id: z.ZodString;
|
|
2134
|
+
kind: z.ZodEnum<{
|
|
2135
|
+
pull: "pull";
|
|
2136
|
+
"runtime-install": "runtime-install";
|
|
2137
|
+
"runtime-remove": "runtime-remove";
|
|
2032
2138
|
calibrate: "calibrate";
|
|
2033
2139
|
sweep: "sweep";
|
|
2034
2140
|
bench: "bench";
|
|
@@ -2064,6 +2170,7 @@ export declare const BrainCalibrateResponseSchema: z.ZodObject<{
|
|
|
2064
2170
|
kind: z.ZodEnum<{
|
|
2065
2171
|
pull: "pull";
|
|
2066
2172
|
"runtime-install": "runtime-install";
|
|
2173
|
+
"runtime-remove": "runtime-remove";
|
|
2067
2174
|
calibrate: "calibrate";
|
|
2068
2175
|
sweep: "sweep";
|
|
2069
2176
|
bench: "bench";
|
|
@@ -2099,6 +2206,7 @@ export declare const BrainSweepResponseSchema: z.ZodObject<{
|
|
|
2099
2206
|
kind: z.ZodEnum<{
|
|
2100
2207
|
pull: "pull";
|
|
2101
2208
|
"runtime-install": "runtime-install";
|
|
2209
|
+
"runtime-remove": "runtime-remove";
|
|
2102
2210
|
calibrate: "calibrate";
|
|
2103
2211
|
sweep: "sweep";
|
|
2104
2212
|
bench: "bench";
|
|
@@ -2134,6 +2242,7 @@ export declare const BrainBenchResponseSchema: z.ZodObject<{
|
|
|
2134
2242
|
kind: z.ZodEnum<{
|
|
2135
2243
|
pull: "pull";
|
|
2136
2244
|
"runtime-install": "runtime-install";
|
|
2245
|
+
"runtime-remove": "runtime-remove";
|
|
2137
2246
|
calibrate: "calibrate";
|
|
2138
2247
|
sweep: "sweep";
|
|
2139
2248
|
bench: "bench";
|
|
@@ -2168,6 +2277,7 @@ export declare const BrainJobsListResponseSchema: z.ZodObject<{
|
|
|
2168
2277
|
kind: z.ZodEnum<{
|
|
2169
2278
|
pull: "pull";
|
|
2170
2279
|
"runtime-install": "runtime-install";
|
|
2280
|
+
"runtime-remove": "runtime-remove";
|
|
2171
2281
|
calibrate: "calibrate";
|
|
2172
2282
|
sweep: "sweep";
|
|
2173
2283
|
bench: "bench";
|
|
@@ -2203,6 +2313,7 @@ export declare const BrainJobsCancelResponseSchema: z.ZodObject<{
|
|
|
2203
2313
|
kind: z.ZodEnum<{
|
|
2204
2314
|
pull: "pull";
|
|
2205
2315
|
"runtime-install": "runtime-install";
|
|
2316
|
+
"runtime-remove": "runtime-remove";
|
|
2206
2317
|
calibrate: "calibrate";
|
|
2207
2318
|
sweep: "sweep";
|
|
2208
2319
|
bench: "bench";
|
|
@@ -2230,6 +2341,7 @@ export declare const BrainHfSearchResultSchema: z.ZodObject<{
|
|
|
2230
2341
|
downloads: z.ZodDefault<z.ZodNumber>;
|
|
2231
2342
|
likes: z.ZodDefault<z.ZodNumber>;
|
|
2232
2343
|
gated: z.ZodDefault<z.ZodBoolean>;
|
|
2344
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2233
2345
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
2234
2346
|
}, z.core.$loose>;
|
|
2235
2347
|
export type BrainHfSearchResult = z.infer<typeof BrainHfSearchResultSchema>;
|
|
@@ -2238,7 +2350,14 @@ export declare const BrainRepoQuantSchema: z.ZodObject<{
|
|
|
2238
2350
|
size: z.ZodDefault<z.ZodString>;
|
|
2239
2351
|
sizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
2240
2352
|
files: z.ZodDefault<z.ZodNumber>;
|
|
2353
|
+
fileNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2241
2354
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
2355
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2356
|
+
projector: z.ZodOptional<z.ZodObject<{
|
|
2357
|
+
file: z.ZodString;
|
|
2358
|
+
sizeBytes: z.ZodNumber;
|
|
2359
|
+
installed: z.ZodOptional<z.ZodBoolean>;
|
|
2360
|
+
}, z.core.$strip>>;
|
|
2242
2361
|
}, z.core.$loose>;
|
|
2243
2362
|
export type BrainRepoQuant = z.infer<typeof BrainRepoQuantSchema>;
|
|
2244
2363
|
export declare const BrainHfSearchRequestSchema: z.ZodObject<{
|
|
@@ -2255,6 +2374,7 @@ export declare const BrainHfSearchResponseSchema: z.ZodObject<{
|
|
|
2255
2374
|
downloads: z.ZodDefault<z.ZodNumber>;
|
|
2256
2375
|
likes: z.ZodDefault<z.ZodNumber>;
|
|
2257
2376
|
gated: z.ZodDefault<z.ZodBoolean>;
|
|
2377
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2258
2378
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
2259
2379
|
}, z.core.$loose>>>;
|
|
2260
2380
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -2274,7 +2394,14 @@ export declare const BrainHfQuantsResponseSchema: z.ZodObject<{
|
|
|
2274
2394
|
size: z.ZodDefault<z.ZodString>;
|
|
2275
2395
|
sizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
2276
2396
|
files: z.ZodDefault<z.ZodNumber>;
|
|
2397
|
+
fileNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2277
2398
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
2399
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2400
|
+
projector: z.ZodOptional<z.ZodObject<{
|
|
2401
|
+
file: z.ZodString;
|
|
2402
|
+
sizeBytes: z.ZodNumber;
|
|
2403
|
+
installed: z.ZodOptional<z.ZodBoolean>;
|
|
2404
|
+
}, z.core.$strip>>;
|
|
2278
2405
|
}, z.core.$loose>>>;
|
|
2279
2406
|
error: z.ZodNullable<z.ZodString>;
|
|
2280
2407
|
requestId: z.ZodString;
|
|
@@ -2284,6 +2411,7 @@ export declare const BrainModelsAddRequestSchema: z.ZodObject<{
|
|
|
2284
2411
|
type: z.ZodLiteral<"brain.models.add.request">;
|
|
2285
2412
|
repo: z.ZodString;
|
|
2286
2413
|
quant: z.ZodString;
|
|
2414
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2287
2415
|
requestId: z.ZodString;
|
|
2288
2416
|
}, z.core.$strip>;
|
|
2289
2417
|
export declare const BrainModelsAddResponseSchema: z.ZodObject<{
|
|
@@ -2294,6 +2422,7 @@ export declare const BrainModelsAddResponseSchema: z.ZodObject<{
|
|
|
2294
2422
|
kind: z.ZodEnum<{
|
|
2295
2423
|
pull: "pull";
|
|
2296
2424
|
"runtime-install": "runtime-install";
|
|
2425
|
+
"runtime-remove": "runtime-remove";
|
|
2297
2426
|
calibrate: "calibrate";
|
|
2298
2427
|
sweep: "sweep";
|
|
2299
2428
|
bench: "bench";
|
|
@@ -2328,6 +2457,7 @@ export declare const BrainProfileSchema: z.ZodObject<{
|
|
|
2328
2457
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2329
2458
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2330
2459
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2460
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2331
2461
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2332
2462
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2333
2463
|
}, z.core.$loose>;
|
|
@@ -2370,6 +2500,9 @@ export type BrainCalibrationInfo = z.infer<typeof BrainCalibrationInfoSchema>;
|
|
|
2370
2500
|
export declare const BrainBudgetSchema: z.ZodObject<{
|
|
2371
2501
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
2372
2502
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
2503
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
2504
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
2505
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
2373
2506
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
2374
2507
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
2375
2508
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2413,6 +2546,19 @@ export declare const BrainInventoryModelSchema: z.ZodObject<{
|
|
|
2413
2546
|
blockCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2414
2547
|
headCountKv: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2415
2548
|
hasProjector: z.ZodDefault<z.ZodBoolean>;
|
|
2549
|
+
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2550
|
+
id: z.ZodString;
|
|
2551
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2552
|
+
description: z.ZodDefault<z.ZodString>;
|
|
2553
|
+
role: z.ZodDefault<z.ZodString>;
|
|
2554
|
+
bytes: z.ZodDefault<z.ZodNumber>;
|
|
2555
|
+
available: z.ZodDefault<z.ZodBoolean>;
|
|
2556
|
+
unavailableReason: z.ZodOptional<z.ZodString>;
|
|
2557
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2558
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
2559
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
2560
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
2561
|
+
}, z.core.$strip>>>>;
|
|
2416
2562
|
reasoning: z.ZodDefault<z.ZodBoolean>;
|
|
2417
2563
|
mtp: z.ZodDefault<z.ZodBoolean>;
|
|
2418
2564
|
distilled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2425,6 +2571,7 @@ export declare const BrainInventoryModelSchema: z.ZodObject<{
|
|
|
2425
2571
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2426
2572
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2427
2573
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2574
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2428
2575
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2429
2576
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2430
2577
|
}, z.core.$loose>>>;
|
|
@@ -2437,6 +2584,9 @@ export declare const BrainInventoryModelSchema: z.ZodObject<{
|
|
|
2437
2584
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
2438
2585
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
2439
2586
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
2587
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
2588
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
2589
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
2440
2590
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
2441
2591
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
2442
2592
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2495,6 +2645,19 @@ export declare const BrainModelsInventoryResponseSchema: z.ZodObject<{
|
|
|
2495
2645
|
blockCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2496
2646
|
headCountKv: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2497
2647
|
hasProjector: z.ZodDefault<z.ZodBoolean>;
|
|
2648
|
+
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2649
|
+
id: z.ZodString;
|
|
2650
|
+
label: z.ZodDefault<z.ZodString>;
|
|
2651
|
+
description: z.ZodDefault<z.ZodString>;
|
|
2652
|
+
role: z.ZodDefault<z.ZodString>;
|
|
2653
|
+
bytes: z.ZodDefault<z.ZodNumber>;
|
|
2654
|
+
available: z.ZodDefault<z.ZodBoolean>;
|
|
2655
|
+
unavailableReason: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
2657
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
2658
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
2659
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
2660
|
+
}, z.core.$strip>>>>;
|
|
2498
2661
|
reasoning: z.ZodDefault<z.ZodBoolean>;
|
|
2499
2662
|
mtp: z.ZodDefault<z.ZodBoolean>;
|
|
2500
2663
|
distilled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2507,6 +2670,7 @@ export declare const BrainModelsInventoryResponseSchema: z.ZodObject<{
|
|
|
2507
2670
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2508
2671
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2509
2672
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2673
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2510
2674
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2511
2675
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2512
2676
|
}, z.core.$loose>>>;
|
|
@@ -2519,6 +2683,9 @@ export declare const BrainModelsInventoryResponseSchema: z.ZodObject<{
|
|
|
2519
2683
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
2520
2684
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
2521
2685
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
2686
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
2687
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
2688
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
2522
2689
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
2523
2690
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
2524
2691
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2574,6 +2741,7 @@ export declare const BrainModelProfileGetResponseSchema: z.ZodObject<{
|
|
|
2574
2741
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2575
2742
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2576
2743
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2744
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2577
2745
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2578
2746
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2579
2747
|
}, z.core.$loose>>>;
|
|
@@ -2621,6 +2789,7 @@ export declare const BrainModelProfileSetResponseSchema: z.ZodObject<{
|
|
|
2621
2789
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2622
2790
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2623
2791
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2792
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2624
2793
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2625
2794
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2626
2795
|
}, z.core.$loose>>>;
|
|
@@ -2640,6 +2809,9 @@ export declare const BrainModelProfileSetResponseSchema: z.ZodObject<{
|
|
|
2640
2809
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
2641
2810
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
2642
2811
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
2812
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
2813
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
2814
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
2643
2815
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
2644
2816
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
2645
2817
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2675,12 +2847,16 @@ export declare const BrainModelBudgetGetResponseSchema: z.ZodObject<{
|
|
|
2675
2847
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2676
2848
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2677
2849
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2850
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2678
2851
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2679
2852
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2680
2853
|
}, z.core.$loose>>>;
|
|
2681
2854
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
2682
2855
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
2683
2856
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
2857
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
2858
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
2859
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
2684
2860
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
2685
2861
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
2686
2862
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2790,6 +2966,7 @@ export declare const BrainModelLoadResponseSchema: z.ZodObject<{
|
|
|
2790
2966
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
2791
2967
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
2792
2968
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
2969
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2793
2970
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
2794
2971
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
2795
2972
|
}, z.core.$loose>>>;
|
|
@@ -2893,6 +3070,21 @@ export declare const BrainModelDeleteResponseSchema: z.ZodObject<{
|
|
|
2893
3070
|
requestId: z.ZodString;
|
|
2894
3071
|
}, z.core.$strip>;
|
|
2895
3072
|
}, z.core.$strip>;
|
|
3073
|
+
export declare const BrainModelComponentDeleteRequestSchema: z.ZodObject<{
|
|
3074
|
+
type: z.ZodLiteral<"brain.model.component.delete.request">;
|
|
3075
|
+
modelId: z.ZodString;
|
|
3076
|
+
componentId: z.ZodString;
|
|
3077
|
+
requestId: z.ZodString;
|
|
3078
|
+
}, z.core.$strip>;
|
|
3079
|
+
export declare const BrainModelComponentDeleteResponseSchema: z.ZodObject<{
|
|
3080
|
+
type: z.ZodLiteral<"brain.model.component.delete.response">;
|
|
3081
|
+
payload: z.ZodObject<{
|
|
3082
|
+
deleted: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3083
|
+
freedBytes: z.ZodDefault<z.ZodNumber>;
|
|
3084
|
+
error: z.ZodNullable<z.ZodString>;
|
|
3085
|
+
requestId: z.ZodString;
|
|
3086
|
+
}, z.core.$strip>;
|
|
3087
|
+
}, z.core.$strip>;
|
|
2896
3088
|
export declare const BrainModelRenameRequestSchema: z.ZodObject<{
|
|
2897
3089
|
type: z.ZodLiteral<"brain.model.rename.request">;
|
|
2898
3090
|
modelId: z.ZodString;
|
|
@@ -3908,6 +4100,14 @@ export declare const SetDaemonConfigRequestMessageSchema: z.ZodObject<{
|
|
|
3908
4100
|
port: z.ZodOptional<z.ZodNumber>;
|
|
3909
4101
|
}, z.core.$loose>>;
|
|
3910
4102
|
defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4103
|
+
runtime: z.ZodOptional<z.ZodObject<{
|
|
4104
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
4105
|
+
auto: "auto";
|
|
4106
|
+
managed: "managed";
|
|
4107
|
+
lmstudio: "lmstudio";
|
|
4108
|
+
}>>;
|
|
4109
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4110
|
+
}, z.core.$strip>>;
|
|
3911
4111
|
lockModel: z.ZodOptional<z.ZodBoolean>;
|
|
3912
4112
|
allowRemoteConfig: z.ZodOptional<z.ZodBoolean>;
|
|
3913
4113
|
allowInsecureBind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5013,11 +5213,11 @@ export declare const SuggestedTasksChangedSchema: z.ZodObject<{
|
|
|
5013
5213
|
}, z.core.$strip>;
|
|
5014
5214
|
export declare const ContextScopeSchema: z.ZodEnum<{
|
|
5015
5215
|
local: "local";
|
|
5216
|
+
runtime: "runtime";
|
|
5016
5217
|
enterprise: "enterprise";
|
|
5017
5218
|
global: "global";
|
|
5018
5219
|
project: "project";
|
|
5019
5220
|
subdirectory: "subdirectory";
|
|
5020
|
-
runtime: "runtime";
|
|
5021
5221
|
}>;
|
|
5022
5222
|
export declare const ContextCategorySchema: z.ZodEnum<{
|
|
5023
5223
|
context_files: "context_files";
|
|
@@ -5090,11 +5290,11 @@ export declare const ContextNodeSchema: z.ZodObject<{
|
|
|
5090
5290
|
relPath: z.ZodString;
|
|
5091
5291
|
scope: z.ZodEnum<{
|
|
5092
5292
|
local: "local";
|
|
5293
|
+
runtime: "runtime";
|
|
5093
5294
|
enterprise: "enterprise";
|
|
5094
5295
|
global: "global";
|
|
5095
5296
|
project: "project";
|
|
5096
5297
|
subdirectory: "subdirectory";
|
|
5097
|
-
runtime: "runtime";
|
|
5098
5298
|
}>;
|
|
5099
5299
|
category: z.ZodEnum<{
|
|
5100
5300
|
context_files: "context_files";
|
|
@@ -5190,11 +5390,11 @@ export declare const ContextReportSchema: z.ZodObject<{
|
|
|
5190
5390
|
relPath: z.ZodString;
|
|
5191
5391
|
scope: z.ZodEnum<{
|
|
5192
5392
|
local: "local";
|
|
5393
|
+
runtime: "runtime";
|
|
5193
5394
|
enterprise: "enterprise";
|
|
5194
5395
|
global: "global";
|
|
5195
5396
|
project: "project";
|
|
5196
5397
|
subdirectory: "subdirectory";
|
|
5197
|
-
runtime: "runtime";
|
|
5198
5398
|
}>;
|
|
5199
5399
|
category: z.ZodEnum<{
|
|
5200
5400
|
context_files: "context_files";
|
|
@@ -5330,11 +5530,11 @@ export declare const ContextReportChangedSchema: z.ZodObject<{
|
|
|
5330
5530
|
relPath: z.ZodString;
|
|
5331
5531
|
scope: z.ZodEnum<{
|
|
5332
5532
|
local: "local";
|
|
5533
|
+
runtime: "runtime";
|
|
5333
5534
|
enterprise: "enterprise";
|
|
5334
5535
|
global: "global";
|
|
5335
5536
|
project: "project";
|
|
5336
5537
|
subdirectory: "subdirectory";
|
|
5337
|
-
runtime: "runtime";
|
|
5338
5538
|
}>;
|
|
5339
5539
|
category: z.ZodEnum<{
|
|
5340
5540
|
context_files: "context_files";
|
|
@@ -5480,11 +5680,11 @@ export declare const ContextReportGetResponseMessageSchema: z.ZodObject<{
|
|
|
5480
5680
|
relPath: z.ZodString;
|
|
5481
5681
|
scope: z.ZodEnum<{
|
|
5482
5682
|
local: "local";
|
|
5683
|
+
runtime: "runtime";
|
|
5483
5684
|
enterprise: "enterprise";
|
|
5484
5685
|
global: "global";
|
|
5485
5686
|
project: "project";
|
|
5486
5687
|
subdirectory: "subdirectory";
|
|
5487
|
-
runtime: "runtime";
|
|
5488
5688
|
}>;
|
|
5489
5689
|
category: z.ZodEnum<{
|
|
5490
5690
|
context_files: "context_files";
|
|
@@ -5692,6 +5892,7 @@ export declare const ProjectKnowledgeKindSchema: z.ZodEnum<{
|
|
|
5692
5892
|
constraint: "constraint";
|
|
5693
5893
|
requirement: "requirement";
|
|
5694
5894
|
architecture: "architecture";
|
|
5895
|
+
finding: "finding";
|
|
5695
5896
|
}>;
|
|
5696
5897
|
export declare const ProjectKnowledgeStatusSchema: z.ZodEnum<{
|
|
5697
5898
|
proposed: "proposed";
|
|
@@ -5729,6 +5930,7 @@ export declare const ProjectKnowledgeRecordSchema: z.ZodObject<{
|
|
|
5729
5930
|
constraint: "constraint";
|
|
5730
5931
|
requirement: "requirement";
|
|
5731
5932
|
architecture: "architecture";
|
|
5933
|
+
finding: "finding";
|
|
5732
5934
|
}>;
|
|
5733
5935
|
title: z.ZodString;
|
|
5734
5936
|
statement: z.ZodString;
|
|
@@ -5774,7 +5976,8 @@ export declare const ProjectKnowledgeRecordSchema: z.ZodObject<{
|
|
|
5774
5976
|
}, z.core.$strip>>>;
|
|
5775
5977
|
path: z.ZodOptional<z.ZodString>;
|
|
5776
5978
|
}, z.core.$strip>;
|
|
5777
|
-
|
|
5979
|
+
/** Review health, not a persisted project-knowledge finding record. */
|
|
5980
|
+
export declare const ProjectKnowledgeHealthSchema: z.ZodObject<{
|
|
5778
5981
|
kind: z.ZodEnum<{
|
|
5779
5982
|
stale: "stale";
|
|
5780
5983
|
overlapping_tags: "overlapping_tags";
|
|
@@ -5782,6 +5985,11 @@ export declare const ProjectKnowledgeFindingSchema: z.ZodObject<{
|
|
|
5782
5985
|
}>;
|
|
5783
5986
|
recordId: z.ZodString;
|
|
5784
5987
|
relatedRecordId: z.ZodOptional<z.ZodString>;
|
|
5988
|
+
tagOverlap: z.ZodOptional<z.ZodEnum<{
|
|
5989
|
+
complete: "complete";
|
|
5990
|
+
partial: "partial";
|
|
5991
|
+
}>>;
|
|
5992
|
+
sharedTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5785
5993
|
message: z.ZodString;
|
|
5786
5994
|
}, z.core.$strip>;
|
|
5787
5995
|
export declare const ProjectKnowledgeRootPageSchema: z.ZodObject<{
|
|
@@ -5808,6 +6016,7 @@ export declare const ProjectKnowledgeListResponseMessageSchema: z.ZodObject<{
|
|
|
5808
6016
|
constraint: "constraint";
|
|
5809
6017
|
requirement: "requirement";
|
|
5810
6018
|
architecture: "architecture";
|
|
6019
|
+
finding: "finding";
|
|
5811
6020
|
}>;
|
|
5812
6021
|
title: z.ZodString;
|
|
5813
6022
|
statement: z.ZodString;
|
|
@@ -5867,6 +6076,11 @@ export declare const ProjectKnowledgeListResponseMessageSchema: z.ZodObject<{
|
|
|
5867
6076
|
}>;
|
|
5868
6077
|
recordId: z.ZodString;
|
|
5869
6078
|
relatedRecordId: z.ZodOptional<z.ZodString>;
|
|
6079
|
+
tagOverlap: z.ZodOptional<z.ZodEnum<{
|
|
6080
|
+
complete: "complete";
|
|
6081
|
+
partial: "partial";
|
|
6082
|
+
}>>;
|
|
6083
|
+
sharedTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5870
6084
|
message: z.ZodString;
|
|
5871
6085
|
}, z.core.$strip>>;
|
|
5872
6086
|
brief: z.ZodString;
|
|
@@ -5894,6 +6108,7 @@ export declare const ProjectKnowledgeGetResponseMessageSchema: z.ZodObject<{
|
|
|
5894
6108
|
constraint: "constraint";
|
|
5895
6109
|
requirement: "requirement";
|
|
5896
6110
|
architecture: "architecture";
|
|
6111
|
+
finding: "finding";
|
|
5897
6112
|
}>;
|
|
5898
6113
|
title: z.ZodString;
|
|
5899
6114
|
statement: z.ZodString;
|
|
@@ -5953,6 +6168,7 @@ export declare const ProjectKnowledgeCreateRequestMessageSchema: z.ZodObject<{
|
|
|
5953
6168
|
constraint: "constraint";
|
|
5954
6169
|
requirement: "requirement";
|
|
5955
6170
|
architecture: "architecture";
|
|
6171
|
+
finding: "finding";
|
|
5956
6172
|
}>;
|
|
5957
6173
|
title: z.ZodString;
|
|
5958
6174
|
statement: z.ZodString;
|
|
@@ -6001,6 +6217,7 @@ export declare const ProjectKnowledgeCreateResponseMessageSchema: z.ZodObject<{
|
|
|
6001
6217
|
constraint: "constraint";
|
|
6002
6218
|
requirement: "requirement";
|
|
6003
6219
|
architecture: "architecture";
|
|
6220
|
+
finding: "finding";
|
|
6004
6221
|
}>;
|
|
6005
6222
|
title: z.ZodString;
|
|
6006
6223
|
statement: z.ZodString;
|
|
@@ -6074,6 +6291,7 @@ export declare const ProjectKnowledgeApplyResponseMessageSchema: z.ZodObject<{
|
|
|
6074
6291
|
constraint: "constraint";
|
|
6075
6292
|
requirement: "requirement";
|
|
6076
6293
|
architecture: "architecture";
|
|
6294
|
+
finding: "finding";
|
|
6077
6295
|
}>;
|
|
6078
6296
|
title: z.ZodString;
|
|
6079
6297
|
statement: z.ZodString;
|
|
@@ -6147,6 +6365,7 @@ export declare const ProjectKnowledgeStatusResponseMessageSchema: z.ZodObject<{
|
|
|
6147
6365
|
constraint: "constraint";
|
|
6148
6366
|
requirement: "requirement";
|
|
6149
6367
|
architecture: "architecture";
|
|
6368
|
+
finding: "finding";
|
|
6150
6369
|
}>;
|
|
6151
6370
|
title: z.ZodString;
|
|
6152
6371
|
statement: z.ZodString;
|
|
@@ -6230,6 +6449,7 @@ export declare const ProjectKnowledgeProjectApplyResponseMessageSchema: z.ZodObj
|
|
|
6230
6449
|
constraint: "constraint";
|
|
6231
6450
|
requirement: "requirement";
|
|
6232
6451
|
architecture: "architecture";
|
|
6452
|
+
finding: "finding";
|
|
6233
6453
|
}>;
|
|
6234
6454
|
title: z.ZodString;
|
|
6235
6455
|
statement: z.ZodString;
|
|
@@ -6307,6 +6527,7 @@ export declare const ProjectKnowledgeReferenceApplyResponseMessageSchema: z.ZodO
|
|
|
6307
6527
|
constraint: "constraint";
|
|
6308
6528
|
requirement: "requirement";
|
|
6309
6529
|
architecture: "architecture";
|
|
6530
|
+
finding: "finding";
|
|
6310
6531
|
}>;
|
|
6311
6532
|
title: z.ZodString;
|
|
6312
6533
|
statement: z.ZodString;
|
|
@@ -9899,11 +10120,17 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9899
10120
|
}, z.core.$strip>, z.ZodObject<{
|
|
9900
10121
|
type: z.ZodLiteral<"brain.models.pull.request">;
|
|
9901
10122
|
model: z.ZodString;
|
|
10123
|
+
quant: z.ZodOptional<z.ZodString>;
|
|
10124
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9902
10125
|
requestId: z.ZodString;
|
|
9903
10126
|
}, z.core.$strip>, z.ZodObject<{
|
|
9904
10127
|
type: z.ZodLiteral<"brain.runtime.install.request">;
|
|
9905
10128
|
build: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
9906
10129
|
requestId: z.ZodString;
|
|
10130
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10131
|
+
type: z.ZodLiteral<"brain.runtime.remove.request">;
|
|
10132
|
+
name: z.ZodString;
|
|
10133
|
+
requestId: z.ZodString;
|
|
9907
10134
|
}, z.core.$strip>, z.ZodObject<{
|
|
9908
10135
|
type: z.ZodLiteral<"brain.calibrate.request">;
|
|
9909
10136
|
model: z.ZodString;
|
|
@@ -9936,6 +10163,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9936
10163
|
type: z.ZodLiteral<"brain.models.add.request">;
|
|
9937
10164
|
repo: z.ZodString;
|
|
9938
10165
|
quant: z.ZodString;
|
|
10166
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9939
10167
|
requestId: z.ZodString;
|
|
9940
10168
|
}, z.core.$strip>, z.ZodObject<{
|
|
9941
10169
|
type: z.ZodLiteral<"brain.models.inventory.request">;
|
|
@@ -9965,6 +10193,11 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
9965
10193
|
type: z.ZodLiteral<"brain.model.delete.request">;
|
|
9966
10194
|
modelId: z.ZodString;
|
|
9967
10195
|
requestId: z.ZodString;
|
|
10196
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10197
|
+
type: z.ZodLiteral<"brain.model.component.delete.request">;
|
|
10198
|
+
modelId: z.ZodString;
|
|
10199
|
+
componentId: z.ZodString;
|
|
10200
|
+
requestId: z.ZodString;
|
|
9968
10201
|
}, z.core.$strip>, z.ZodObject<{
|
|
9969
10202
|
type: z.ZodLiteral<"brain.model.rename.request">;
|
|
9970
10203
|
modelId: z.ZodString;
|
|
@@ -10370,6 +10603,14 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10370
10603
|
port: z.ZodOptional<z.ZodNumber>;
|
|
10371
10604
|
}, z.core.$loose>>;
|
|
10372
10605
|
defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10606
|
+
runtime: z.ZodOptional<z.ZodObject<{
|
|
10607
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
10608
|
+
auto: "auto";
|
|
10609
|
+
managed: "managed";
|
|
10610
|
+
lmstudio: "lmstudio";
|
|
10611
|
+
}>>;
|
|
10612
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10613
|
+
}, z.core.$strip>>;
|
|
10373
10614
|
lockModel: z.ZodOptional<z.ZodBoolean>;
|
|
10374
10615
|
allowRemoteConfig: z.ZodOptional<z.ZodBoolean>;
|
|
10375
10616
|
allowInsecureBind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10823,6 +11064,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
10823
11064
|
constraint: "constraint";
|
|
10824
11065
|
requirement: "requirement";
|
|
10825
11066
|
architecture: "architecture";
|
|
11067
|
+
finding: "finding";
|
|
10826
11068
|
}>;
|
|
10827
11069
|
title: z.ZodString;
|
|
10828
11070
|
statement: z.ZodString;
|
|
@@ -13746,6 +13988,14 @@ export declare const DaemonConfigChangedStatusPayloadSchema: z.ZodObject<{
|
|
|
13746
13988
|
port: z.ZodDefault<z.ZodNumber>;
|
|
13747
13989
|
}, z.core.$loose>>;
|
|
13748
13990
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13991
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
13992
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
13993
|
+
auto: "auto";
|
|
13994
|
+
managed: "managed";
|
|
13995
|
+
lmstudio: "lmstudio";
|
|
13996
|
+
}>>;
|
|
13997
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13998
|
+
}, z.core.$strip>>;
|
|
13749
13999
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
13750
14000
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
13751
14001
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -14497,6 +14747,14 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
14497
14747
|
port: z.ZodDefault<z.ZodNumber>;
|
|
14498
14748
|
}, z.core.$loose>>;
|
|
14499
14749
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
14750
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
14751
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
14752
|
+
auto: "auto";
|
|
14753
|
+
managed: "managed";
|
|
14754
|
+
lmstudio: "lmstudio";
|
|
14755
|
+
}>>;
|
|
14756
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
14757
|
+
}, z.core.$strip>>;
|
|
14500
14758
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
14501
14759
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
14502
14760
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -14884,6 +15142,10 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
14884
15142
|
additions: z.ZodNumber;
|
|
14885
15143
|
deletions: z.ZodNumber;
|
|
14886
15144
|
}, z.core.$strip>>>;
|
|
15145
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15146
|
+
additions: z.ZodNumber;
|
|
15147
|
+
deletions: z.ZodNumber;
|
|
15148
|
+
}, z.core.$strip>>>;
|
|
14887
15149
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
14888
15150
|
scriptName: z.ZodString;
|
|
14889
15151
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -14918,6 +15180,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
14918
15180
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14919
15181
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
14920
15182
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
15183
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14921
15184
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
14922
15185
|
ahead: z.ZodNumber;
|
|
14923
15186
|
behind: z.ZodNumber;
|
|
@@ -15093,11 +15356,16 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
15093
15356
|
additions: number;
|
|
15094
15357
|
deletions: number;
|
|
15095
15358
|
} | null | undefined;
|
|
15359
|
+
workingTreeDiffStat?: {
|
|
15360
|
+
additions: number;
|
|
15361
|
+
deletions: number;
|
|
15362
|
+
} | null | undefined;
|
|
15096
15363
|
gitRuntime?: {
|
|
15097
15364
|
currentBranch?: string | null | undefined;
|
|
15098
15365
|
remoteUrl?: string | null | undefined;
|
|
15099
15366
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
15100
15367
|
isDirty?: boolean | null | undefined;
|
|
15368
|
+
baseRef?: string | null | undefined;
|
|
15101
15369
|
aheadBehind?: {
|
|
15102
15370
|
ahead: number;
|
|
15103
15371
|
behind: number;
|
|
@@ -15206,11 +15474,16 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
15206
15474
|
additions: number;
|
|
15207
15475
|
deletions: number;
|
|
15208
15476
|
} | null | undefined;
|
|
15477
|
+
workingTreeDiffStat?: {
|
|
15478
|
+
additions: number;
|
|
15479
|
+
deletions: number;
|
|
15480
|
+
} | null | undefined;
|
|
15209
15481
|
gitRuntime?: {
|
|
15210
15482
|
currentBranch?: string | null | undefined;
|
|
15211
15483
|
remoteUrl?: string | null | undefined;
|
|
15212
15484
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
15213
15485
|
isDirty?: boolean | null | undefined;
|
|
15486
|
+
baseRef?: string | null | undefined;
|
|
15214
15487
|
aheadBehind?: {
|
|
15215
15488
|
ahead: number;
|
|
15216
15489
|
behind: number;
|
|
@@ -16246,6 +16519,10 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
16246
16519
|
additions: z.ZodNumber;
|
|
16247
16520
|
deletions: z.ZodNumber;
|
|
16248
16521
|
}, z.core.$strip>>>;
|
|
16522
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16523
|
+
additions: z.ZodNumber;
|
|
16524
|
+
deletions: z.ZodNumber;
|
|
16525
|
+
}, z.core.$strip>>>;
|
|
16249
16526
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
16250
16527
|
scriptName: z.ZodString;
|
|
16251
16528
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -16280,6 +16557,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
16280
16557
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16281
16558
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
16282
16559
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
16560
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16283
16561
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16284
16562
|
ahead: z.ZodNumber;
|
|
16285
16563
|
behind: z.ZodNumber;
|
|
@@ -16455,11 +16733,16 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
16455
16733
|
additions: number;
|
|
16456
16734
|
deletions: number;
|
|
16457
16735
|
} | null | undefined;
|
|
16736
|
+
workingTreeDiffStat?: {
|
|
16737
|
+
additions: number;
|
|
16738
|
+
deletions: number;
|
|
16739
|
+
} | null | undefined;
|
|
16458
16740
|
gitRuntime?: {
|
|
16459
16741
|
currentBranch?: string | null | undefined;
|
|
16460
16742
|
remoteUrl?: string | null | undefined;
|
|
16461
16743
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
16462
16744
|
isDirty?: boolean | null | undefined;
|
|
16745
|
+
baseRef?: string | null | undefined;
|
|
16463
16746
|
aheadBehind?: {
|
|
16464
16747
|
ahead: number;
|
|
16465
16748
|
behind: number;
|
|
@@ -16568,11 +16851,16 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
16568
16851
|
additions: number;
|
|
16569
16852
|
deletions: number;
|
|
16570
16853
|
} | null | undefined;
|
|
16854
|
+
workingTreeDiffStat?: {
|
|
16855
|
+
additions: number;
|
|
16856
|
+
deletions: number;
|
|
16857
|
+
} | null | undefined;
|
|
16571
16858
|
gitRuntime?: {
|
|
16572
16859
|
currentBranch?: string | null | undefined;
|
|
16573
16860
|
remoteUrl?: string | null | undefined;
|
|
16574
16861
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
16575
16862
|
isDirty?: boolean | null | undefined;
|
|
16863
|
+
baseRef?: string | null | undefined;
|
|
16576
16864
|
aheadBehind?: {
|
|
16577
16865
|
ahead: number;
|
|
16578
16866
|
behind: number;
|
|
@@ -16700,6 +16988,10 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
16700
16988
|
additions: z.ZodNumber;
|
|
16701
16989
|
deletions: z.ZodNumber;
|
|
16702
16990
|
}, z.core.$strip>>>;
|
|
16991
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16992
|
+
additions: z.ZodNumber;
|
|
16993
|
+
deletions: z.ZodNumber;
|
|
16994
|
+
}, z.core.$strip>>>;
|
|
16703
16995
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
16704
16996
|
scriptName: z.ZodString;
|
|
16705
16997
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -16734,6 +17026,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
16734
17026
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16735
17027
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
16736
17028
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
17029
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16737
17030
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16738
17031
|
ahead: z.ZodNumber;
|
|
16739
17032
|
behind: z.ZodNumber;
|
|
@@ -16909,11 +17202,16 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
16909
17202
|
additions: number;
|
|
16910
17203
|
deletions: number;
|
|
16911
17204
|
} | null | undefined;
|
|
17205
|
+
workingTreeDiffStat?: {
|
|
17206
|
+
additions: number;
|
|
17207
|
+
deletions: number;
|
|
17208
|
+
} | null | undefined;
|
|
16912
17209
|
gitRuntime?: {
|
|
16913
17210
|
currentBranch?: string | null | undefined;
|
|
16914
17211
|
remoteUrl?: string | null | undefined;
|
|
16915
17212
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
16916
17213
|
isDirty?: boolean | null | undefined;
|
|
17214
|
+
baseRef?: string | null | undefined;
|
|
16917
17215
|
aheadBehind?: {
|
|
16918
17216
|
ahead: number;
|
|
16919
17217
|
behind: number;
|
|
@@ -17022,11 +17320,16 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
17022
17320
|
additions: number;
|
|
17023
17321
|
deletions: number;
|
|
17024
17322
|
} | null | undefined;
|
|
17323
|
+
workingTreeDiffStat?: {
|
|
17324
|
+
additions: number;
|
|
17325
|
+
deletions: number;
|
|
17326
|
+
} | null | undefined;
|
|
17025
17327
|
gitRuntime?: {
|
|
17026
17328
|
currentBranch?: string | null | undefined;
|
|
17027
17329
|
remoteUrl?: string | null | undefined;
|
|
17028
17330
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
17029
17331
|
isDirty?: boolean | null | undefined;
|
|
17332
|
+
baseRef?: string | null | undefined;
|
|
17030
17333
|
aheadBehind?: {
|
|
17031
17334
|
ahead: number;
|
|
17032
17335
|
behind: number;
|
|
@@ -17347,6 +17650,10 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
17347
17650
|
additions: z.ZodNumber;
|
|
17348
17651
|
deletions: z.ZodNumber;
|
|
17349
17652
|
}, z.core.$strip>>>;
|
|
17653
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17654
|
+
additions: z.ZodNumber;
|
|
17655
|
+
deletions: z.ZodNumber;
|
|
17656
|
+
}, z.core.$strip>>>;
|
|
17350
17657
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
17351
17658
|
scriptName: z.ZodString;
|
|
17352
17659
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -17381,6 +17688,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
17381
17688
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17382
17689
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
17383
17690
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
17691
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17384
17692
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
17385
17693
|
ahead: z.ZodNumber;
|
|
17386
17694
|
behind: z.ZodNumber;
|
|
@@ -17556,11 +17864,16 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
17556
17864
|
additions: number;
|
|
17557
17865
|
deletions: number;
|
|
17558
17866
|
} | null | undefined;
|
|
17867
|
+
workingTreeDiffStat?: {
|
|
17868
|
+
additions: number;
|
|
17869
|
+
deletions: number;
|
|
17870
|
+
} | null | undefined;
|
|
17559
17871
|
gitRuntime?: {
|
|
17560
17872
|
currentBranch?: string | null | undefined;
|
|
17561
17873
|
remoteUrl?: string | null | undefined;
|
|
17562
17874
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
17563
17875
|
isDirty?: boolean | null | undefined;
|
|
17876
|
+
baseRef?: string | null | undefined;
|
|
17564
17877
|
aheadBehind?: {
|
|
17565
17878
|
ahead: number;
|
|
17566
17879
|
behind: number;
|
|
@@ -17669,11 +17982,16 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
17669
17982
|
additions: number;
|
|
17670
17983
|
deletions: number;
|
|
17671
17984
|
} | null | undefined;
|
|
17985
|
+
workingTreeDiffStat?: {
|
|
17986
|
+
additions: number;
|
|
17987
|
+
deletions: number;
|
|
17988
|
+
} | null | undefined;
|
|
17672
17989
|
gitRuntime?: {
|
|
17673
17990
|
currentBranch?: string | null | undefined;
|
|
17674
17991
|
remoteUrl?: string | null | undefined;
|
|
17675
17992
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
17676
17993
|
isDirty?: boolean | null | undefined;
|
|
17994
|
+
baseRef?: string | null | undefined;
|
|
17677
17995
|
aheadBehind?: {
|
|
17678
17996
|
ahead: number;
|
|
17679
17997
|
behind: number;
|
|
@@ -18353,6 +18671,10 @@ export declare const WorktreeReattachResponseSchema: z.ZodObject<{
|
|
|
18353
18671
|
additions: z.ZodNumber;
|
|
18354
18672
|
deletions: z.ZodNumber;
|
|
18355
18673
|
}, z.core.$strip>>>;
|
|
18674
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
18675
|
+
additions: z.ZodNumber;
|
|
18676
|
+
deletions: z.ZodNumber;
|
|
18677
|
+
}, z.core.$strip>>>;
|
|
18356
18678
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
18357
18679
|
scriptName: z.ZodString;
|
|
18358
18680
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -18387,6 +18709,7 @@ export declare const WorktreeReattachResponseSchema: z.ZodObject<{
|
|
|
18387
18709
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18388
18710
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
18389
18711
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
18712
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18390
18713
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
18391
18714
|
ahead: z.ZodNumber;
|
|
18392
18715
|
behind: z.ZodNumber;
|
|
@@ -18562,11 +18885,16 @@ export declare const WorktreeReattachResponseSchema: z.ZodObject<{
|
|
|
18562
18885
|
additions: number;
|
|
18563
18886
|
deletions: number;
|
|
18564
18887
|
} | null | undefined;
|
|
18888
|
+
workingTreeDiffStat?: {
|
|
18889
|
+
additions: number;
|
|
18890
|
+
deletions: number;
|
|
18891
|
+
} | null | undefined;
|
|
18565
18892
|
gitRuntime?: {
|
|
18566
18893
|
currentBranch?: string | null | undefined;
|
|
18567
18894
|
remoteUrl?: string | null | undefined;
|
|
18568
18895
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
18569
18896
|
isDirty?: boolean | null | undefined;
|
|
18897
|
+
baseRef?: string | null | undefined;
|
|
18570
18898
|
aheadBehind?: {
|
|
18571
18899
|
ahead: number;
|
|
18572
18900
|
behind: number;
|
|
@@ -18675,11 +19003,16 @@ export declare const WorktreeReattachResponseSchema: z.ZodObject<{
|
|
|
18675
19003
|
additions: number;
|
|
18676
19004
|
deletions: number;
|
|
18677
19005
|
} | null | undefined;
|
|
19006
|
+
workingTreeDiffStat?: {
|
|
19007
|
+
additions: number;
|
|
19008
|
+
deletions: number;
|
|
19009
|
+
} | null | undefined;
|
|
18678
19010
|
gitRuntime?: {
|
|
18679
19011
|
currentBranch?: string | null | undefined;
|
|
18680
19012
|
remoteUrl?: string | null | undefined;
|
|
18681
19013
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
18682
19014
|
isDirty?: boolean | null | undefined;
|
|
19015
|
+
baseRef?: string | null | undefined;
|
|
18683
19016
|
aheadBehind?: {
|
|
18684
19017
|
ahead: number;
|
|
18685
19018
|
behind: number;
|
|
@@ -19562,6 +19895,10 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
19562
19895
|
additions: z.ZodNumber;
|
|
19563
19896
|
deletions: z.ZodNumber;
|
|
19564
19897
|
}, z.core.$strip>>>;
|
|
19898
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
19899
|
+
additions: z.ZodNumber;
|
|
19900
|
+
deletions: z.ZodNumber;
|
|
19901
|
+
}, z.core.$strip>>>;
|
|
19565
19902
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
19566
19903
|
scriptName: z.ZodString;
|
|
19567
19904
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -19596,6 +19933,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
19596
19933
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19597
19934
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
19598
19935
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
19936
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19599
19937
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
19600
19938
|
ahead: z.ZodNumber;
|
|
19601
19939
|
behind: z.ZodNumber;
|
|
@@ -19771,11 +20109,16 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
19771
20109
|
additions: number;
|
|
19772
20110
|
deletions: number;
|
|
19773
20111
|
} | null | undefined;
|
|
20112
|
+
workingTreeDiffStat?: {
|
|
20113
|
+
additions: number;
|
|
20114
|
+
deletions: number;
|
|
20115
|
+
} | null | undefined;
|
|
19774
20116
|
gitRuntime?: {
|
|
19775
20117
|
currentBranch?: string | null | undefined;
|
|
19776
20118
|
remoteUrl?: string | null | undefined;
|
|
19777
20119
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
19778
20120
|
isDirty?: boolean | null | undefined;
|
|
20121
|
+
baseRef?: string | null | undefined;
|
|
19779
20122
|
aheadBehind?: {
|
|
19780
20123
|
ahead: number;
|
|
19781
20124
|
behind: number;
|
|
@@ -19884,11 +20227,16 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
19884
20227
|
additions: number;
|
|
19885
20228
|
deletions: number;
|
|
19886
20229
|
} | null | undefined;
|
|
20230
|
+
workingTreeDiffStat?: {
|
|
20231
|
+
additions: number;
|
|
20232
|
+
deletions: number;
|
|
20233
|
+
} | null | undefined;
|
|
19887
20234
|
gitRuntime?: {
|
|
19888
20235
|
currentBranch?: string | null | undefined;
|
|
19889
20236
|
remoteUrl?: string | null | undefined;
|
|
19890
20237
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
19891
20238
|
isDirty?: boolean | null | undefined;
|
|
20239
|
+
baseRef?: string | null | undefined;
|
|
19892
20240
|
aheadBehind?: {
|
|
19893
20241
|
ahead: number;
|
|
19894
20242
|
behind: number;
|
|
@@ -20307,6 +20655,14 @@ export declare const GetDaemonConfigResponseMessageSchema: z.ZodObject<{
|
|
|
20307
20655
|
port: z.ZodDefault<z.ZodNumber>;
|
|
20308
20656
|
}, z.core.$loose>>;
|
|
20309
20657
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
20658
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
20659
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
20660
|
+
auto: "auto";
|
|
20661
|
+
managed: "managed";
|
|
20662
|
+
lmstudio: "lmstudio";
|
|
20663
|
+
}>>;
|
|
20664
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
20665
|
+
}, z.core.$strip>>;
|
|
20310
20666
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
20311
20667
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
20312
20668
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -20794,6 +21150,14 @@ export declare const SetDaemonConfigResponseMessageSchema: z.ZodObject<{
|
|
|
20794
21150
|
port: z.ZodDefault<z.ZodNumber>;
|
|
20795
21151
|
}, z.core.$loose>>;
|
|
20796
21152
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
21153
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
21154
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
21155
|
+
auto: "auto";
|
|
21156
|
+
managed: "managed";
|
|
21157
|
+
lmstudio: "lmstudio";
|
|
21158
|
+
}>>;
|
|
21159
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
21160
|
+
}, z.core.$strip>>;
|
|
20797
21161
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
20798
21162
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
20799
21163
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -22931,6 +23295,10 @@ export declare const CreateOttoWorktreeResponseSchema: z.ZodObject<{
|
|
|
22931
23295
|
additions: z.ZodNumber;
|
|
22932
23296
|
deletions: z.ZodNumber;
|
|
22933
23297
|
}, z.core.$strip>>>;
|
|
23298
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
23299
|
+
additions: z.ZodNumber;
|
|
23300
|
+
deletions: z.ZodNumber;
|
|
23301
|
+
}, z.core.$strip>>>;
|
|
22934
23302
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
22935
23303
|
scriptName: z.ZodString;
|
|
22936
23304
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -22965,6 +23333,7 @@ export declare const CreateOttoWorktreeResponseSchema: z.ZodObject<{
|
|
|
22965
23333
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22966
23334
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
22967
23335
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
23336
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22968
23337
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
22969
23338
|
ahead: z.ZodNumber;
|
|
22970
23339
|
behind: z.ZodNumber;
|
|
@@ -23140,11 +23509,16 @@ export declare const CreateOttoWorktreeResponseSchema: z.ZodObject<{
|
|
|
23140
23509
|
additions: number;
|
|
23141
23510
|
deletions: number;
|
|
23142
23511
|
} | null | undefined;
|
|
23512
|
+
workingTreeDiffStat?: {
|
|
23513
|
+
additions: number;
|
|
23514
|
+
deletions: number;
|
|
23515
|
+
} | null | undefined;
|
|
23143
23516
|
gitRuntime?: {
|
|
23144
23517
|
currentBranch?: string | null | undefined;
|
|
23145
23518
|
remoteUrl?: string | null | undefined;
|
|
23146
23519
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
23147
23520
|
isDirty?: boolean | null | undefined;
|
|
23521
|
+
baseRef?: string | null | undefined;
|
|
23148
23522
|
aheadBehind?: {
|
|
23149
23523
|
ahead: number;
|
|
23150
23524
|
behind: number;
|
|
@@ -23253,11 +23627,16 @@ export declare const CreateOttoWorktreeResponseSchema: z.ZodObject<{
|
|
|
23253
23627
|
additions: number;
|
|
23254
23628
|
deletions: number;
|
|
23255
23629
|
} | null | undefined;
|
|
23630
|
+
workingTreeDiffStat?: {
|
|
23631
|
+
additions: number;
|
|
23632
|
+
deletions: number;
|
|
23633
|
+
} | null | undefined;
|
|
23256
23634
|
gitRuntime?: {
|
|
23257
23635
|
currentBranch?: string | null | undefined;
|
|
23258
23636
|
remoteUrl?: string | null | undefined;
|
|
23259
23637
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
23260
23638
|
isDirty?: boolean | null | undefined;
|
|
23639
|
+
baseRef?: string | null | undefined;
|
|
23261
23640
|
aheadBehind?: {
|
|
23262
23641
|
ahead: number;
|
|
23263
23642
|
behind: number;
|
|
@@ -26578,6 +26957,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
26578
26957
|
additions: z.ZodNumber;
|
|
26579
26958
|
deletions: z.ZodNumber;
|
|
26580
26959
|
}, z.core.$strip>>>;
|
|
26960
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
26961
|
+
additions: z.ZodNumber;
|
|
26962
|
+
deletions: z.ZodNumber;
|
|
26963
|
+
}, z.core.$strip>>>;
|
|
26581
26964
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
26582
26965
|
scriptName: z.ZodString;
|
|
26583
26966
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -26612,6 +26995,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
26612
26995
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26613
26996
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
26614
26997
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
26998
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26615
26999
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
26616
27000
|
ahead: z.ZodNumber;
|
|
26617
27001
|
behind: z.ZodNumber;
|
|
@@ -26787,11 +27171,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
26787
27171
|
additions: number;
|
|
26788
27172
|
deletions: number;
|
|
26789
27173
|
} | null | undefined;
|
|
27174
|
+
workingTreeDiffStat?: {
|
|
27175
|
+
additions: number;
|
|
27176
|
+
deletions: number;
|
|
27177
|
+
} | null | undefined;
|
|
26790
27178
|
gitRuntime?: {
|
|
26791
27179
|
currentBranch?: string | null | undefined;
|
|
26792
27180
|
remoteUrl?: string | null | undefined;
|
|
26793
27181
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
26794
27182
|
isDirty?: boolean | null | undefined;
|
|
27183
|
+
baseRef?: string | null | undefined;
|
|
26795
27184
|
aheadBehind?: {
|
|
26796
27185
|
ahead: number;
|
|
26797
27186
|
behind: number;
|
|
@@ -26900,11 +27289,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
26900
27289
|
additions: number;
|
|
26901
27290
|
deletions: number;
|
|
26902
27291
|
} | null | undefined;
|
|
27292
|
+
workingTreeDiffStat?: {
|
|
27293
|
+
additions: number;
|
|
27294
|
+
deletions: number;
|
|
27295
|
+
} | null | undefined;
|
|
26903
27296
|
gitRuntime?: {
|
|
26904
27297
|
currentBranch?: string | null | undefined;
|
|
26905
27298
|
remoteUrl?: string | null | undefined;
|
|
26906
27299
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
26907
27300
|
isDirty?: boolean | null | undefined;
|
|
27301
|
+
baseRef?: string | null | undefined;
|
|
26908
27302
|
aheadBehind?: {
|
|
26909
27303
|
ahead: number;
|
|
26910
27304
|
behind: number;
|
|
@@ -27758,6 +28152,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
27758
28152
|
additions: z.ZodNumber;
|
|
27759
28153
|
deletions: z.ZodNumber;
|
|
27760
28154
|
}, z.core.$strip>>>;
|
|
28155
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28156
|
+
additions: z.ZodNumber;
|
|
28157
|
+
deletions: z.ZodNumber;
|
|
28158
|
+
}, z.core.$strip>>>;
|
|
27761
28159
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
27762
28160
|
scriptName: z.ZodString;
|
|
27763
28161
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -27792,6 +28190,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
27792
28190
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27793
28191
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
27794
28192
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
28193
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27795
28194
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27796
28195
|
ahead: z.ZodNumber;
|
|
27797
28196
|
behind: z.ZodNumber;
|
|
@@ -27967,11 +28366,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
27967
28366
|
additions: number;
|
|
27968
28367
|
deletions: number;
|
|
27969
28368
|
} | null | undefined;
|
|
28369
|
+
workingTreeDiffStat?: {
|
|
28370
|
+
additions: number;
|
|
28371
|
+
deletions: number;
|
|
28372
|
+
} | null | undefined;
|
|
27970
28373
|
gitRuntime?: {
|
|
27971
28374
|
currentBranch?: string | null | undefined;
|
|
27972
28375
|
remoteUrl?: string | null | undefined;
|
|
27973
28376
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
27974
28377
|
isDirty?: boolean | null | undefined;
|
|
28378
|
+
baseRef?: string | null | undefined;
|
|
27975
28379
|
aheadBehind?: {
|
|
27976
28380
|
ahead: number;
|
|
27977
28381
|
behind: number;
|
|
@@ -28080,11 +28484,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
28080
28484
|
additions: number;
|
|
28081
28485
|
deletions: number;
|
|
28082
28486
|
} | null | undefined;
|
|
28487
|
+
workingTreeDiffStat?: {
|
|
28488
|
+
additions: number;
|
|
28489
|
+
deletions: number;
|
|
28490
|
+
} | null | undefined;
|
|
28083
28491
|
gitRuntime?: {
|
|
28084
28492
|
currentBranch?: string | null | undefined;
|
|
28085
28493
|
remoteUrl?: string | null | undefined;
|
|
28086
28494
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
28087
28495
|
isDirty?: boolean | null | undefined;
|
|
28496
|
+
baseRef?: string | null | undefined;
|
|
28088
28497
|
aheadBehind?: {
|
|
28089
28498
|
ahead: number;
|
|
28090
28499
|
behind: number;
|
|
@@ -28306,6 +28715,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
28306
28715
|
additions: z.ZodNumber;
|
|
28307
28716
|
deletions: z.ZodNumber;
|
|
28308
28717
|
}, z.core.$strip>>>;
|
|
28718
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28719
|
+
additions: z.ZodNumber;
|
|
28720
|
+
deletions: z.ZodNumber;
|
|
28721
|
+
}, z.core.$strip>>>;
|
|
28309
28722
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
28310
28723
|
scriptName: z.ZodString;
|
|
28311
28724
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -28340,6 +28753,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
28340
28753
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28341
28754
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
28342
28755
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
28756
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28343
28757
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
28344
28758
|
ahead: z.ZodNumber;
|
|
28345
28759
|
behind: z.ZodNumber;
|
|
@@ -28515,11 +28929,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
28515
28929
|
additions: number;
|
|
28516
28930
|
deletions: number;
|
|
28517
28931
|
} | null | undefined;
|
|
28932
|
+
workingTreeDiffStat?: {
|
|
28933
|
+
additions: number;
|
|
28934
|
+
deletions: number;
|
|
28935
|
+
} | null | undefined;
|
|
28518
28936
|
gitRuntime?: {
|
|
28519
28937
|
currentBranch?: string | null | undefined;
|
|
28520
28938
|
remoteUrl?: string | null | undefined;
|
|
28521
28939
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
28522
28940
|
isDirty?: boolean | null | undefined;
|
|
28941
|
+
baseRef?: string | null | undefined;
|
|
28523
28942
|
aheadBehind?: {
|
|
28524
28943
|
ahead: number;
|
|
28525
28944
|
behind: number;
|
|
@@ -28628,11 +29047,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
28628
29047
|
additions: number;
|
|
28629
29048
|
deletions: number;
|
|
28630
29049
|
} | null | undefined;
|
|
29050
|
+
workingTreeDiffStat?: {
|
|
29051
|
+
additions: number;
|
|
29052
|
+
deletions: number;
|
|
29053
|
+
} | null | undefined;
|
|
28631
29054
|
gitRuntime?: {
|
|
28632
29055
|
currentBranch?: string | null | undefined;
|
|
28633
29056
|
remoteUrl?: string | null | undefined;
|
|
28634
29057
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
28635
29058
|
isDirty?: boolean | null | undefined;
|
|
29059
|
+
baseRef?: string | null | undefined;
|
|
28636
29060
|
aheadBehind?: {
|
|
28637
29061
|
ahead: number;
|
|
28638
29062
|
behind: number;
|
|
@@ -29125,6 +29549,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
29125
29549
|
additions: z.ZodNumber;
|
|
29126
29550
|
deletions: z.ZodNumber;
|
|
29127
29551
|
}, z.core.$strip>>>;
|
|
29552
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29553
|
+
additions: z.ZodNumber;
|
|
29554
|
+
deletions: z.ZodNumber;
|
|
29555
|
+
}, z.core.$strip>>>;
|
|
29128
29556
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
29129
29557
|
scriptName: z.ZodString;
|
|
29130
29558
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -29159,6 +29587,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
29159
29587
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29160
29588
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
29161
29589
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
29590
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29162
29591
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29163
29592
|
ahead: z.ZodNumber;
|
|
29164
29593
|
behind: z.ZodNumber;
|
|
@@ -29334,11 +29763,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
29334
29763
|
additions: number;
|
|
29335
29764
|
deletions: number;
|
|
29336
29765
|
} | null | undefined;
|
|
29766
|
+
workingTreeDiffStat?: {
|
|
29767
|
+
additions: number;
|
|
29768
|
+
deletions: number;
|
|
29769
|
+
} | null | undefined;
|
|
29337
29770
|
gitRuntime?: {
|
|
29338
29771
|
currentBranch?: string | null | undefined;
|
|
29339
29772
|
remoteUrl?: string | null | undefined;
|
|
29340
29773
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
29341
29774
|
isDirty?: boolean | null | undefined;
|
|
29775
|
+
baseRef?: string | null | undefined;
|
|
29342
29776
|
aheadBehind?: {
|
|
29343
29777
|
ahead: number;
|
|
29344
29778
|
behind: number;
|
|
@@ -29447,11 +29881,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
29447
29881
|
additions: number;
|
|
29448
29882
|
deletions: number;
|
|
29449
29883
|
} | null | undefined;
|
|
29884
|
+
workingTreeDiffStat?: {
|
|
29885
|
+
additions: number;
|
|
29886
|
+
deletions: number;
|
|
29887
|
+
} | null | undefined;
|
|
29450
29888
|
gitRuntime?: {
|
|
29451
29889
|
currentBranch?: string | null | undefined;
|
|
29452
29890
|
remoteUrl?: string | null | undefined;
|
|
29453
29891
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
29454
29892
|
isDirty?: boolean | null | undefined;
|
|
29893
|
+
baseRef?: string | null | undefined;
|
|
29455
29894
|
aheadBehind?: {
|
|
29456
29895
|
ahead: number;
|
|
29457
29896
|
behind: number;
|
|
@@ -30259,6 +30698,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
30259
30698
|
additions: z.ZodNumber;
|
|
30260
30699
|
deletions: z.ZodNumber;
|
|
30261
30700
|
}, z.core.$strip>>>;
|
|
30701
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30702
|
+
additions: z.ZodNumber;
|
|
30703
|
+
deletions: z.ZodNumber;
|
|
30704
|
+
}, z.core.$strip>>>;
|
|
30262
30705
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
30263
30706
|
scriptName: z.ZodString;
|
|
30264
30707
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -30293,6 +30736,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
30293
30736
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30294
30737
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
30295
30738
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
30739
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30296
30740
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30297
30741
|
ahead: z.ZodNumber;
|
|
30298
30742
|
behind: z.ZodNumber;
|
|
@@ -30468,11 +30912,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
30468
30912
|
additions: number;
|
|
30469
30913
|
deletions: number;
|
|
30470
30914
|
} | null | undefined;
|
|
30915
|
+
workingTreeDiffStat?: {
|
|
30916
|
+
additions: number;
|
|
30917
|
+
deletions: number;
|
|
30918
|
+
} | null | undefined;
|
|
30471
30919
|
gitRuntime?: {
|
|
30472
30920
|
currentBranch?: string | null | undefined;
|
|
30473
30921
|
remoteUrl?: string | null | undefined;
|
|
30474
30922
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
30475
30923
|
isDirty?: boolean | null | undefined;
|
|
30924
|
+
baseRef?: string | null | undefined;
|
|
30476
30925
|
aheadBehind?: {
|
|
30477
30926
|
ahead: number;
|
|
30478
30927
|
behind: number;
|
|
@@ -30581,11 +31030,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
30581
31030
|
additions: number;
|
|
30582
31031
|
deletions: number;
|
|
30583
31032
|
} | null | undefined;
|
|
31033
|
+
workingTreeDiffStat?: {
|
|
31034
|
+
additions: number;
|
|
31035
|
+
deletions: number;
|
|
31036
|
+
} | null | undefined;
|
|
30584
31037
|
gitRuntime?: {
|
|
30585
31038
|
currentBranch?: string | null | undefined;
|
|
30586
31039
|
remoteUrl?: string | null | undefined;
|
|
30587
31040
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
30588
31041
|
isDirty?: boolean | null | undefined;
|
|
31042
|
+
baseRef?: string | null | undefined;
|
|
30589
31043
|
aheadBehind?: {
|
|
30590
31044
|
ahead: number;
|
|
30591
31045
|
behind: number;
|
|
@@ -30998,6 +31452,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
30998
31452
|
port: z.ZodDefault<z.ZodNumber>;
|
|
30999
31453
|
}, z.core.$loose>>;
|
|
31000
31454
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
31455
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
31456
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
31457
|
+
auto: "auto";
|
|
31458
|
+
managed: "managed";
|
|
31459
|
+
lmstudio: "lmstudio";
|
|
31460
|
+
}>>;
|
|
31461
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
31462
|
+
}, z.core.$strip>>;
|
|
31001
31463
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
31002
31464
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
31003
31465
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -31269,6 +31731,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
31269
31731
|
port: z.ZodDefault<z.ZodNumber>;
|
|
31270
31732
|
}, z.core.$loose>>;
|
|
31271
31733
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
31734
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
31735
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
31736
|
+
auto: "auto";
|
|
31737
|
+
managed: "managed";
|
|
31738
|
+
lmstudio: "lmstudio";
|
|
31739
|
+
}>>;
|
|
31740
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
31741
|
+
}, z.core.$strip>>;
|
|
31272
31742
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
31273
31743
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
31274
31744
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -31775,11 +32245,11 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
31775
32245
|
relPath: z.ZodString;
|
|
31776
32246
|
scope: z.ZodEnum<{
|
|
31777
32247
|
local: "local";
|
|
32248
|
+
runtime: "runtime";
|
|
31778
32249
|
enterprise: "enterprise";
|
|
31779
32250
|
global: "global";
|
|
31780
32251
|
project: "project";
|
|
31781
32252
|
subdirectory: "subdirectory";
|
|
31782
|
-
runtime: "runtime";
|
|
31783
32253
|
}>;
|
|
31784
32254
|
category: z.ZodEnum<{
|
|
31785
32255
|
context_files: "context_files";
|
|
@@ -32604,6 +33074,19 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32604
33074
|
tier: z.ZodDefault<z.ZodString>;
|
|
32605
33075
|
useCases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
32606
33076
|
why: z.ZodDefault<z.ZodString>;
|
|
33077
|
+
components: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33078
|
+
id: z.ZodString;
|
|
33079
|
+
label: z.ZodDefault<z.ZodString>;
|
|
33080
|
+
description: z.ZodDefault<z.ZodString>;
|
|
33081
|
+
role: z.ZodDefault<z.ZodString>;
|
|
33082
|
+
hfRepo: z.ZodOptional<z.ZodString>;
|
|
33083
|
+
file: z.ZodDefault<z.ZodString>;
|
|
33084
|
+
bytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
33085
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
33086
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
33087
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
33088
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
33089
|
+
}, z.core.$strip>>>;
|
|
32607
33090
|
}, z.core.$loose>>>;
|
|
32608
33091
|
error: z.ZodNullable<z.ZodString>;
|
|
32609
33092
|
requestId: z.ZodString;
|
|
@@ -32613,6 +33096,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32613
33096
|
payload: z.ZodObject<{
|
|
32614
33097
|
runtimes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
32615
33098
|
label: z.ZodDefault<z.ZodString>;
|
|
33099
|
+
displayName: z.ZodDefault<z.ZodString>;
|
|
32616
33100
|
version: z.ZodDefault<z.ZodString>;
|
|
32617
33101
|
source: z.ZodDefault<z.ZodString>;
|
|
32618
33102
|
dir: z.ZodDefault<z.ZodString>;
|
|
@@ -32628,6 +33112,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32628
33112
|
kind: z.ZodEnum<{
|
|
32629
33113
|
pull: "pull";
|
|
32630
33114
|
"runtime-install": "runtime-install";
|
|
33115
|
+
"runtime-remove": "runtime-remove";
|
|
32631
33116
|
calibrate: "calibrate";
|
|
32632
33117
|
sweep: "sweep";
|
|
32633
33118
|
bench: "bench";
|
|
@@ -32657,6 +33142,37 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32657
33142
|
kind: z.ZodEnum<{
|
|
32658
33143
|
pull: "pull";
|
|
32659
33144
|
"runtime-install": "runtime-install";
|
|
33145
|
+
"runtime-remove": "runtime-remove";
|
|
33146
|
+
calibrate: "calibrate";
|
|
33147
|
+
sweep: "sweep";
|
|
33148
|
+
bench: "bench";
|
|
33149
|
+
}>;
|
|
33150
|
+
label: z.ZodDefault<z.ZodString>;
|
|
33151
|
+
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
33152
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
33153
|
+
running: "running";
|
|
33154
|
+
failed: "failed";
|
|
33155
|
+
canceled: "canceled";
|
|
33156
|
+
succeeded: "succeeded";
|
|
33157
|
+
}>>;
|
|
33158
|
+
percent: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
33159
|
+
message: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
33160
|
+
error: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
33161
|
+
startedAt: z.ZodDefault<z.ZodString>;
|
|
33162
|
+
finishedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
33163
|
+
}, z.core.$loose>>;
|
|
33164
|
+
error: z.ZodNullable<z.ZodString>;
|
|
33165
|
+
requestId: z.ZodString;
|
|
33166
|
+
}, z.core.$strip>;
|
|
33167
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33168
|
+
type: z.ZodLiteral<"brain.runtime.remove.response">;
|
|
33169
|
+
payload: z.ZodObject<{
|
|
33170
|
+
job: z.ZodNullable<z.ZodObject<{
|
|
33171
|
+
id: z.ZodString;
|
|
33172
|
+
kind: z.ZodEnum<{
|
|
33173
|
+
pull: "pull";
|
|
33174
|
+
"runtime-install": "runtime-install";
|
|
33175
|
+
"runtime-remove": "runtime-remove";
|
|
32660
33176
|
calibrate: "calibrate";
|
|
32661
33177
|
sweep: "sweep";
|
|
32662
33178
|
bench: "bench";
|
|
@@ -32686,6 +33202,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32686
33202
|
kind: z.ZodEnum<{
|
|
32687
33203
|
pull: "pull";
|
|
32688
33204
|
"runtime-install": "runtime-install";
|
|
33205
|
+
"runtime-remove": "runtime-remove";
|
|
32689
33206
|
calibrate: "calibrate";
|
|
32690
33207
|
sweep: "sweep";
|
|
32691
33208
|
bench: "bench";
|
|
@@ -32715,6 +33232,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32715
33232
|
kind: z.ZodEnum<{
|
|
32716
33233
|
pull: "pull";
|
|
32717
33234
|
"runtime-install": "runtime-install";
|
|
33235
|
+
"runtime-remove": "runtime-remove";
|
|
32718
33236
|
calibrate: "calibrate";
|
|
32719
33237
|
sweep: "sweep";
|
|
32720
33238
|
bench: "bench";
|
|
@@ -32744,6 +33262,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32744
33262
|
kind: z.ZodEnum<{
|
|
32745
33263
|
pull: "pull";
|
|
32746
33264
|
"runtime-install": "runtime-install";
|
|
33265
|
+
"runtime-remove": "runtime-remove";
|
|
32747
33266
|
calibrate: "calibrate";
|
|
32748
33267
|
sweep: "sweep";
|
|
32749
33268
|
bench: "bench";
|
|
@@ -32773,6 +33292,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32773
33292
|
kind: z.ZodEnum<{
|
|
32774
33293
|
pull: "pull";
|
|
32775
33294
|
"runtime-install": "runtime-install";
|
|
33295
|
+
"runtime-remove": "runtime-remove";
|
|
32776
33296
|
calibrate: "calibrate";
|
|
32777
33297
|
sweep: "sweep";
|
|
32778
33298
|
bench: "bench";
|
|
@@ -32802,6 +33322,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32802
33322
|
kind: z.ZodEnum<{
|
|
32803
33323
|
pull: "pull";
|
|
32804
33324
|
"runtime-install": "runtime-install";
|
|
33325
|
+
"runtime-remove": "runtime-remove";
|
|
32805
33326
|
calibrate: "calibrate";
|
|
32806
33327
|
sweep: "sweep";
|
|
32807
33328
|
bench: "bench";
|
|
@@ -32831,6 +33352,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32831
33352
|
downloads: z.ZodDefault<z.ZodNumber>;
|
|
32832
33353
|
likes: z.ZodDefault<z.ZodNumber>;
|
|
32833
33354
|
gated: z.ZodDefault<z.ZodBoolean>;
|
|
33355
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32834
33356
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
32835
33357
|
}, z.core.$loose>>>;
|
|
32836
33358
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -32844,7 +33366,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32844
33366
|
size: z.ZodDefault<z.ZodString>;
|
|
32845
33367
|
sizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
32846
33368
|
files: z.ZodDefault<z.ZodNumber>;
|
|
33369
|
+
fileNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32847
33370
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
33371
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33372
|
+
projector: z.ZodOptional<z.ZodObject<{
|
|
33373
|
+
file: z.ZodString;
|
|
33374
|
+
sizeBytes: z.ZodNumber;
|
|
33375
|
+
installed: z.ZodOptional<z.ZodBoolean>;
|
|
33376
|
+
}, z.core.$strip>>;
|
|
32848
33377
|
}, z.core.$loose>>>;
|
|
32849
33378
|
error: z.ZodNullable<z.ZodString>;
|
|
32850
33379
|
requestId: z.ZodString;
|
|
@@ -32857,6 +33386,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32857
33386
|
kind: z.ZodEnum<{
|
|
32858
33387
|
pull: "pull";
|
|
32859
33388
|
"runtime-install": "runtime-install";
|
|
33389
|
+
"runtime-remove": "runtime-remove";
|
|
32860
33390
|
calibrate: "calibrate";
|
|
32861
33391
|
sweep: "sweep";
|
|
32862
33392
|
bench: "bench";
|
|
@@ -32894,6 +33424,19 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32894
33424
|
blockCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
32895
33425
|
headCountKv: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
32896
33426
|
hasProjector: z.ZodDefault<z.ZodBoolean>;
|
|
33427
|
+
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
33428
|
+
id: z.ZodString;
|
|
33429
|
+
label: z.ZodDefault<z.ZodString>;
|
|
33430
|
+
description: z.ZodDefault<z.ZodString>;
|
|
33431
|
+
role: z.ZodDefault<z.ZodString>;
|
|
33432
|
+
bytes: z.ZodDefault<z.ZodNumber>;
|
|
33433
|
+
available: z.ZodDefault<z.ZodBoolean>;
|
|
33434
|
+
unavailableReason: z.ZodOptional<z.ZodString>;
|
|
33435
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
33436
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
33437
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
33438
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
33439
|
+
}, z.core.$strip>>>>;
|
|
32897
33440
|
reasoning: z.ZodDefault<z.ZodBoolean>;
|
|
32898
33441
|
mtp: z.ZodDefault<z.ZodBoolean>;
|
|
32899
33442
|
distilled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -32906,6 +33449,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32906
33449
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
32907
33450
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
32908
33451
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
33452
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32909
33453
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
32910
33454
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
32911
33455
|
}, z.core.$loose>>>;
|
|
@@ -32918,6 +33462,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32918
33462
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
32919
33463
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
32920
33464
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
33465
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
33466
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
33467
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
32921
33468
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
32922
33469
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
32923
33470
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -32967,6 +33514,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
32967
33514
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
32968
33515
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
32969
33516
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
33517
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
32970
33518
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
32971
33519
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
32972
33520
|
}, z.core.$loose>>>;
|
|
@@ -33007,6 +33555,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
33007
33555
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
33008
33556
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
33009
33557
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
33558
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
33010
33559
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
33011
33560
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
33012
33561
|
}, z.core.$loose>>>;
|
|
@@ -33026,6 +33575,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
33026
33575
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
33027
33576
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
33028
33577
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
33578
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
33579
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
33580
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
33029
33581
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
33030
33582
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
33031
33583
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -33054,12 +33606,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
33054
33606
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
33055
33607
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
33056
33608
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
33609
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
33057
33610
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
33058
33611
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
33059
33612
|
}, z.core.$loose>>>;
|
|
33060
33613
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
33061
33614
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
33062
33615
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
33616
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
33617
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
33618
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
33063
33619
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
33064
33620
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
33065
33621
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -33163,6 +33719,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
33163
33719
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
33164
33720
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
33165
33721
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
33722
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
33166
33723
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
33167
33724
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
33168
33725
|
}, z.core.$loose>>>;
|
|
@@ -33254,6 +33811,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
33254
33811
|
error: z.ZodNullable<z.ZodString>;
|
|
33255
33812
|
requestId: z.ZodString;
|
|
33256
33813
|
}, z.core.$strip>;
|
|
33814
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33815
|
+
type: z.ZodLiteral<"brain.model.component.delete.response">;
|
|
33816
|
+
payload: z.ZodObject<{
|
|
33817
|
+
deleted: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
33818
|
+
freedBytes: z.ZodDefault<z.ZodNumber>;
|
|
33819
|
+
error: z.ZodNullable<z.ZodString>;
|
|
33820
|
+
requestId: z.ZodString;
|
|
33821
|
+
}, z.core.$strip>;
|
|
33257
33822
|
}, z.core.$strip>, z.ZodObject<{
|
|
33258
33823
|
type: z.ZodLiteral<"brain.model.rename.response">;
|
|
33259
33824
|
payload: z.ZodObject<{
|
|
@@ -35339,6 +35904,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
35339
35904
|
additions: z.ZodNumber;
|
|
35340
35905
|
deletions: z.ZodNumber;
|
|
35341
35906
|
}, z.core.$strip>>>;
|
|
35907
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
35908
|
+
additions: z.ZodNumber;
|
|
35909
|
+
deletions: z.ZodNumber;
|
|
35910
|
+
}, z.core.$strip>>>;
|
|
35342
35911
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
35343
35912
|
scriptName: z.ZodString;
|
|
35344
35913
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -35373,6 +35942,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
35373
35942
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35374
35943
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
35375
35944
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
35945
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35376
35946
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
35377
35947
|
ahead: z.ZodNumber;
|
|
35378
35948
|
behind: z.ZodNumber;
|
|
@@ -35548,11 +36118,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
35548
36118
|
additions: number;
|
|
35549
36119
|
deletions: number;
|
|
35550
36120
|
} | null | undefined;
|
|
36121
|
+
workingTreeDiffStat?: {
|
|
36122
|
+
additions: number;
|
|
36123
|
+
deletions: number;
|
|
36124
|
+
} | null | undefined;
|
|
35551
36125
|
gitRuntime?: {
|
|
35552
36126
|
currentBranch?: string | null | undefined;
|
|
35553
36127
|
remoteUrl?: string | null | undefined;
|
|
35554
36128
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
35555
36129
|
isDirty?: boolean | null | undefined;
|
|
36130
|
+
baseRef?: string | null | undefined;
|
|
35556
36131
|
aheadBehind?: {
|
|
35557
36132
|
ahead: number;
|
|
35558
36133
|
behind: number;
|
|
@@ -35661,11 +36236,16 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
35661
36236
|
additions: number;
|
|
35662
36237
|
deletions: number;
|
|
35663
36238
|
} | null | undefined;
|
|
36239
|
+
workingTreeDiffStat?: {
|
|
36240
|
+
additions: number;
|
|
36241
|
+
deletions: number;
|
|
36242
|
+
} | null | undefined;
|
|
35664
36243
|
gitRuntime?: {
|
|
35665
36244
|
currentBranch?: string | null | undefined;
|
|
35666
36245
|
remoteUrl?: string | null | undefined;
|
|
35667
36246
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
35668
36247
|
isDirty?: boolean | null | undefined;
|
|
36248
|
+
baseRef?: string | null | undefined;
|
|
35669
36249
|
aheadBehind?: {
|
|
35670
36250
|
ahead: number;
|
|
35671
36251
|
behind: number;
|
|
@@ -36804,11 +37384,11 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
36804
37384
|
relPath: z.ZodString;
|
|
36805
37385
|
scope: z.ZodEnum<{
|
|
36806
37386
|
local: "local";
|
|
37387
|
+
runtime: "runtime";
|
|
36807
37388
|
enterprise: "enterprise";
|
|
36808
37389
|
global: "global";
|
|
36809
37390
|
project: "project";
|
|
36810
37391
|
subdirectory: "subdirectory";
|
|
36811
|
-
runtime: "runtime";
|
|
36812
37392
|
}>;
|
|
36813
37393
|
category: z.ZodEnum<{
|
|
36814
37394
|
context_files: "context_files";
|
|
@@ -36963,6 +37543,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
36963
37543
|
constraint: "constraint";
|
|
36964
37544
|
requirement: "requirement";
|
|
36965
37545
|
architecture: "architecture";
|
|
37546
|
+
finding: "finding";
|
|
36966
37547
|
}>;
|
|
36967
37548
|
title: z.ZodString;
|
|
36968
37549
|
statement: z.ZodString;
|
|
@@ -37022,6 +37603,11 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37022
37603
|
}>;
|
|
37023
37604
|
recordId: z.ZodString;
|
|
37024
37605
|
relatedRecordId: z.ZodOptional<z.ZodString>;
|
|
37606
|
+
tagOverlap: z.ZodOptional<z.ZodEnum<{
|
|
37607
|
+
complete: "complete";
|
|
37608
|
+
partial: "partial";
|
|
37609
|
+
}>>;
|
|
37610
|
+
sharedTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
37025
37611
|
message: z.ZodString;
|
|
37026
37612
|
}, z.core.$strip>>;
|
|
37027
37613
|
brief: z.ZodString;
|
|
@@ -37042,6 +37628,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37042
37628
|
constraint: "constraint";
|
|
37043
37629
|
requirement: "requirement";
|
|
37044
37630
|
architecture: "architecture";
|
|
37631
|
+
finding: "finding";
|
|
37045
37632
|
}>;
|
|
37046
37633
|
title: z.ZodString;
|
|
37047
37634
|
statement: z.ZodString;
|
|
@@ -37101,6 +37688,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37101
37688
|
constraint: "constraint";
|
|
37102
37689
|
requirement: "requirement";
|
|
37103
37690
|
architecture: "architecture";
|
|
37691
|
+
finding: "finding";
|
|
37104
37692
|
}>;
|
|
37105
37693
|
title: z.ZodString;
|
|
37106
37694
|
statement: z.ZodString;
|
|
@@ -37160,6 +37748,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37160
37748
|
constraint: "constraint";
|
|
37161
37749
|
requirement: "requirement";
|
|
37162
37750
|
architecture: "architecture";
|
|
37751
|
+
finding: "finding";
|
|
37163
37752
|
}>;
|
|
37164
37753
|
title: z.ZodString;
|
|
37165
37754
|
statement: z.ZodString;
|
|
@@ -37220,6 +37809,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37220
37809
|
constraint: "constraint";
|
|
37221
37810
|
requirement: "requirement";
|
|
37222
37811
|
architecture: "architecture";
|
|
37812
|
+
finding: "finding";
|
|
37223
37813
|
}>;
|
|
37224
37814
|
title: z.ZodString;
|
|
37225
37815
|
statement: z.ZodString;
|
|
@@ -37279,6 +37869,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37279
37869
|
constraint: "constraint";
|
|
37280
37870
|
requirement: "requirement";
|
|
37281
37871
|
architecture: "architecture";
|
|
37872
|
+
finding: "finding";
|
|
37282
37873
|
}>;
|
|
37283
37874
|
title: z.ZodString;
|
|
37284
37875
|
statement: z.ZodString;
|
|
@@ -37339,6 +37930,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
37339
37930
|
constraint: "constraint";
|
|
37340
37931
|
requirement: "requirement";
|
|
37341
37932
|
architecture: "architecture";
|
|
37933
|
+
finding: "finding";
|
|
37342
37934
|
}>;
|
|
37343
37935
|
title: z.ZodString;
|
|
37344
37936
|
statement: z.ZodString;
|
|
@@ -39672,6 +40264,8 @@ export type BrainModelsPullRequest = z.infer<typeof BrainModelsPullRequestSchema
|
|
|
39672
40264
|
export type BrainModelsPullResponse = z.infer<typeof BrainModelsPullResponseSchema>;
|
|
39673
40265
|
export type BrainRuntimeInstallRequest = z.infer<typeof BrainRuntimeInstallRequestSchema>;
|
|
39674
40266
|
export type BrainRuntimeInstallResponse = z.infer<typeof BrainRuntimeInstallResponseSchema>;
|
|
40267
|
+
export type BrainRuntimeRemoveRequest = z.infer<typeof BrainRuntimeRemoveRequestSchema>;
|
|
40268
|
+
export type BrainRuntimeRemoveResponse = z.infer<typeof BrainRuntimeRemoveResponseSchema>;
|
|
39675
40269
|
export type BrainCalibrateRequest = z.infer<typeof BrainCalibrateRequestSchema>;
|
|
39676
40270
|
export type BrainCalibrateResponse = z.infer<typeof BrainCalibrateResponseSchema>;
|
|
39677
40271
|
export type BrainSweepRequest = z.infer<typeof BrainSweepRequestSchema>;
|
|
@@ -39702,6 +40296,8 @@ export type BrainModelUnloadRequest = z.infer<typeof BrainModelUnloadRequestSche
|
|
|
39702
40296
|
export type BrainModelUnloadResponse = z.infer<typeof BrainModelUnloadResponseSchema>;
|
|
39703
40297
|
export type BrainModelDeleteRequest = z.infer<typeof BrainModelDeleteRequestSchema>;
|
|
39704
40298
|
export type BrainModelDeleteResponse = z.infer<typeof BrainModelDeleteResponseSchema>;
|
|
40299
|
+
export type BrainModelComponentDeleteRequest = z.infer<typeof BrainModelComponentDeleteRequestSchema>;
|
|
40300
|
+
export type BrainModelComponentDeleteResponse = z.infer<typeof BrainModelComponentDeleteResponseSchema>;
|
|
39705
40301
|
export type BrainModelRenameRequest = z.infer<typeof BrainModelRenameRequestSchema>;
|
|
39706
40302
|
export type BrainModelRenameResponse = z.infer<typeof BrainModelRenameResponseSchema>;
|
|
39707
40303
|
export type BrainModelRenameResetRequest = z.infer<typeof BrainModelRenameResetRequestSchema>;
|
|
@@ -40265,11 +40861,17 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
40265
40861
|
}, z.core.$strip>, z.ZodObject<{
|
|
40266
40862
|
type: z.ZodLiteral<"brain.models.pull.request">;
|
|
40267
40863
|
model: z.ZodString;
|
|
40864
|
+
quant: z.ZodOptional<z.ZodString>;
|
|
40865
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
40268
40866
|
requestId: z.ZodString;
|
|
40269
40867
|
}, z.core.$strip>, z.ZodObject<{
|
|
40270
40868
|
type: z.ZodLiteral<"brain.runtime.install.request">;
|
|
40271
40869
|
build: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
40272
40870
|
requestId: z.ZodString;
|
|
40871
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40872
|
+
type: z.ZodLiteral<"brain.runtime.remove.request">;
|
|
40873
|
+
name: z.ZodString;
|
|
40874
|
+
requestId: z.ZodString;
|
|
40273
40875
|
}, z.core.$strip>, z.ZodObject<{
|
|
40274
40876
|
type: z.ZodLiteral<"brain.calibrate.request">;
|
|
40275
40877
|
model: z.ZodString;
|
|
@@ -40302,6 +40904,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
40302
40904
|
type: z.ZodLiteral<"brain.models.add.request">;
|
|
40303
40905
|
repo: z.ZodString;
|
|
40304
40906
|
quant: z.ZodString;
|
|
40907
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
40305
40908
|
requestId: z.ZodString;
|
|
40306
40909
|
}, z.core.$strip>, z.ZodObject<{
|
|
40307
40910
|
type: z.ZodLiteral<"brain.models.inventory.request">;
|
|
@@ -40331,6 +40934,11 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
40331
40934
|
type: z.ZodLiteral<"brain.model.delete.request">;
|
|
40332
40935
|
modelId: z.ZodString;
|
|
40333
40936
|
requestId: z.ZodString;
|
|
40937
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40938
|
+
type: z.ZodLiteral<"brain.model.component.delete.request">;
|
|
40939
|
+
modelId: z.ZodString;
|
|
40940
|
+
componentId: z.ZodString;
|
|
40941
|
+
requestId: z.ZodString;
|
|
40334
40942
|
}, z.core.$strip>, z.ZodObject<{
|
|
40335
40943
|
type: z.ZodLiteral<"brain.model.rename.request">;
|
|
40336
40944
|
modelId: z.ZodString;
|
|
@@ -40736,6 +41344,14 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
40736
41344
|
port: z.ZodOptional<z.ZodNumber>;
|
|
40737
41345
|
}, z.core.$loose>>;
|
|
40738
41346
|
defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41347
|
+
runtime: z.ZodOptional<z.ZodObject<{
|
|
41348
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
41349
|
+
auto: "auto";
|
|
41350
|
+
managed: "managed";
|
|
41351
|
+
lmstudio: "lmstudio";
|
|
41352
|
+
}>>;
|
|
41353
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41354
|
+
}, z.core.$strip>>;
|
|
40739
41355
|
lockModel: z.ZodOptional<z.ZodBoolean>;
|
|
40740
41356
|
allowRemoteConfig: z.ZodOptional<z.ZodBoolean>;
|
|
40741
41357
|
allowInsecureBind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -41189,6 +41805,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
41189
41805
|
constraint: "constraint";
|
|
41190
41806
|
requirement: "requirement";
|
|
41191
41807
|
architecture: "architecture";
|
|
41808
|
+
finding: "finding";
|
|
41192
41809
|
}>;
|
|
41193
41810
|
title: z.ZodString;
|
|
41194
41811
|
statement: z.ZodString;
|
|
@@ -43980,6 +44597,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
43980
44597
|
additions: z.ZodNumber;
|
|
43981
44598
|
deletions: z.ZodNumber;
|
|
43982
44599
|
}, z.core.$strip>>>;
|
|
44600
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
44601
|
+
additions: z.ZodNumber;
|
|
44602
|
+
deletions: z.ZodNumber;
|
|
44603
|
+
}, z.core.$strip>>>;
|
|
43983
44604
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
43984
44605
|
scriptName: z.ZodString;
|
|
43985
44606
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -44014,6 +44635,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44014
44635
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44015
44636
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
44016
44637
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
44638
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44017
44639
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
44018
44640
|
ahead: z.ZodNumber;
|
|
44019
44641
|
behind: z.ZodNumber;
|
|
@@ -44189,11 +44811,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44189
44811
|
additions: number;
|
|
44190
44812
|
deletions: number;
|
|
44191
44813
|
} | null | undefined;
|
|
44814
|
+
workingTreeDiffStat?: {
|
|
44815
|
+
additions: number;
|
|
44816
|
+
deletions: number;
|
|
44817
|
+
} | null | undefined;
|
|
44192
44818
|
gitRuntime?: {
|
|
44193
44819
|
currentBranch?: string | null | undefined;
|
|
44194
44820
|
remoteUrl?: string | null | undefined;
|
|
44195
44821
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
44196
44822
|
isDirty?: boolean | null | undefined;
|
|
44823
|
+
baseRef?: string | null | undefined;
|
|
44197
44824
|
aheadBehind?: {
|
|
44198
44825
|
ahead: number;
|
|
44199
44826
|
behind: number;
|
|
@@ -44302,11 +44929,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
44302
44929
|
additions: number;
|
|
44303
44930
|
deletions: number;
|
|
44304
44931
|
} | null | undefined;
|
|
44932
|
+
workingTreeDiffStat?: {
|
|
44933
|
+
additions: number;
|
|
44934
|
+
deletions: number;
|
|
44935
|
+
} | null | undefined;
|
|
44305
44936
|
gitRuntime?: {
|
|
44306
44937
|
currentBranch?: string | null | undefined;
|
|
44307
44938
|
remoteUrl?: string | null | undefined;
|
|
44308
44939
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
44309
44940
|
isDirty?: boolean | null | undefined;
|
|
44941
|
+
baseRef?: string | null | undefined;
|
|
44310
44942
|
aheadBehind?: {
|
|
44311
44943
|
ahead: number;
|
|
44312
44944
|
behind: number;
|
|
@@ -45160,6 +45792,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45160
45792
|
additions: z.ZodNumber;
|
|
45161
45793
|
deletions: z.ZodNumber;
|
|
45162
45794
|
}, z.core.$strip>>>;
|
|
45795
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
45796
|
+
additions: z.ZodNumber;
|
|
45797
|
+
deletions: z.ZodNumber;
|
|
45798
|
+
}, z.core.$strip>>>;
|
|
45163
45799
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
45164
45800
|
scriptName: z.ZodString;
|
|
45165
45801
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -45194,6 +45830,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45194
45830
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45195
45831
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
45196
45832
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
45833
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45197
45834
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
45198
45835
|
ahead: z.ZodNumber;
|
|
45199
45836
|
behind: z.ZodNumber;
|
|
@@ -45369,11 +46006,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45369
46006
|
additions: number;
|
|
45370
46007
|
deletions: number;
|
|
45371
46008
|
} | null | undefined;
|
|
46009
|
+
workingTreeDiffStat?: {
|
|
46010
|
+
additions: number;
|
|
46011
|
+
deletions: number;
|
|
46012
|
+
} | null | undefined;
|
|
45372
46013
|
gitRuntime?: {
|
|
45373
46014
|
currentBranch?: string | null | undefined;
|
|
45374
46015
|
remoteUrl?: string | null | undefined;
|
|
45375
46016
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
45376
46017
|
isDirty?: boolean | null | undefined;
|
|
46018
|
+
baseRef?: string | null | undefined;
|
|
45377
46019
|
aheadBehind?: {
|
|
45378
46020
|
ahead: number;
|
|
45379
46021
|
behind: number;
|
|
@@ -45482,11 +46124,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45482
46124
|
additions: number;
|
|
45483
46125
|
deletions: number;
|
|
45484
46126
|
} | null | undefined;
|
|
46127
|
+
workingTreeDiffStat?: {
|
|
46128
|
+
additions: number;
|
|
46129
|
+
deletions: number;
|
|
46130
|
+
} | null | undefined;
|
|
45485
46131
|
gitRuntime?: {
|
|
45486
46132
|
currentBranch?: string | null | undefined;
|
|
45487
46133
|
remoteUrl?: string | null | undefined;
|
|
45488
46134
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
45489
46135
|
isDirty?: boolean | null | undefined;
|
|
46136
|
+
baseRef?: string | null | undefined;
|
|
45490
46137
|
aheadBehind?: {
|
|
45491
46138
|
ahead: number;
|
|
45492
46139
|
behind: number;
|
|
@@ -45708,6 +46355,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45708
46355
|
additions: z.ZodNumber;
|
|
45709
46356
|
deletions: z.ZodNumber;
|
|
45710
46357
|
}, z.core.$strip>>>;
|
|
46358
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
46359
|
+
additions: z.ZodNumber;
|
|
46360
|
+
deletions: z.ZodNumber;
|
|
46361
|
+
}, z.core.$strip>>>;
|
|
45711
46362
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
45712
46363
|
scriptName: z.ZodString;
|
|
45713
46364
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -45742,6 +46393,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45742
46393
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45743
46394
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
45744
46395
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
46396
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45745
46397
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
45746
46398
|
ahead: z.ZodNumber;
|
|
45747
46399
|
behind: z.ZodNumber;
|
|
@@ -45917,11 +46569,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
45917
46569
|
additions: number;
|
|
45918
46570
|
deletions: number;
|
|
45919
46571
|
} | null | undefined;
|
|
46572
|
+
workingTreeDiffStat?: {
|
|
46573
|
+
additions: number;
|
|
46574
|
+
deletions: number;
|
|
46575
|
+
} | null | undefined;
|
|
45920
46576
|
gitRuntime?: {
|
|
45921
46577
|
currentBranch?: string | null | undefined;
|
|
45922
46578
|
remoteUrl?: string | null | undefined;
|
|
45923
46579
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
45924
46580
|
isDirty?: boolean | null | undefined;
|
|
46581
|
+
baseRef?: string | null | undefined;
|
|
45925
46582
|
aheadBehind?: {
|
|
45926
46583
|
ahead: number;
|
|
45927
46584
|
behind: number;
|
|
@@ -46030,11 +46687,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46030
46687
|
additions: number;
|
|
46031
46688
|
deletions: number;
|
|
46032
46689
|
} | null | undefined;
|
|
46690
|
+
workingTreeDiffStat?: {
|
|
46691
|
+
additions: number;
|
|
46692
|
+
deletions: number;
|
|
46693
|
+
} | null | undefined;
|
|
46033
46694
|
gitRuntime?: {
|
|
46034
46695
|
currentBranch?: string | null | undefined;
|
|
46035
46696
|
remoteUrl?: string | null | undefined;
|
|
46036
46697
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
46037
46698
|
isDirty?: boolean | null | undefined;
|
|
46699
|
+
baseRef?: string | null | undefined;
|
|
46038
46700
|
aheadBehind?: {
|
|
46039
46701
|
ahead: number;
|
|
46040
46702
|
behind: number;
|
|
@@ -46527,6 +47189,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46527
47189
|
additions: z.ZodNumber;
|
|
46528
47190
|
deletions: z.ZodNumber;
|
|
46529
47191
|
}, z.core.$strip>>>;
|
|
47192
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
47193
|
+
additions: z.ZodNumber;
|
|
47194
|
+
deletions: z.ZodNumber;
|
|
47195
|
+
}, z.core.$strip>>>;
|
|
46530
47196
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
46531
47197
|
scriptName: z.ZodString;
|
|
46532
47198
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -46561,6 +47227,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46561
47227
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46562
47228
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
46563
47229
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47230
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46564
47231
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
46565
47232
|
ahead: z.ZodNumber;
|
|
46566
47233
|
behind: z.ZodNumber;
|
|
@@ -46736,11 +47403,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46736
47403
|
additions: number;
|
|
46737
47404
|
deletions: number;
|
|
46738
47405
|
} | null | undefined;
|
|
47406
|
+
workingTreeDiffStat?: {
|
|
47407
|
+
additions: number;
|
|
47408
|
+
deletions: number;
|
|
47409
|
+
} | null | undefined;
|
|
46739
47410
|
gitRuntime?: {
|
|
46740
47411
|
currentBranch?: string | null | undefined;
|
|
46741
47412
|
remoteUrl?: string | null | undefined;
|
|
46742
47413
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
46743
47414
|
isDirty?: boolean | null | undefined;
|
|
47415
|
+
baseRef?: string | null | undefined;
|
|
46744
47416
|
aheadBehind?: {
|
|
46745
47417
|
ahead: number;
|
|
46746
47418
|
behind: number;
|
|
@@ -46849,11 +47521,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
46849
47521
|
additions: number;
|
|
46850
47522
|
deletions: number;
|
|
46851
47523
|
} | null | undefined;
|
|
47524
|
+
workingTreeDiffStat?: {
|
|
47525
|
+
additions: number;
|
|
47526
|
+
deletions: number;
|
|
47527
|
+
} | null | undefined;
|
|
46852
47528
|
gitRuntime?: {
|
|
46853
47529
|
currentBranch?: string | null | undefined;
|
|
46854
47530
|
remoteUrl?: string | null | undefined;
|
|
46855
47531
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
46856
47532
|
isDirty?: boolean | null | undefined;
|
|
47533
|
+
baseRef?: string | null | undefined;
|
|
46857
47534
|
aheadBehind?: {
|
|
46858
47535
|
ahead: number;
|
|
46859
47536
|
behind: number;
|
|
@@ -47661,6 +48338,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
47661
48338
|
additions: z.ZodNumber;
|
|
47662
48339
|
deletions: z.ZodNumber;
|
|
47663
48340
|
}, z.core.$strip>>>;
|
|
48341
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
48342
|
+
additions: z.ZodNumber;
|
|
48343
|
+
deletions: z.ZodNumber;
|
|
48344
|
+
}, z.core.$strip>>>;
|
|
47664
48345
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
47665
48346
|
scriptName: z.ZodString;
|
|
47666
48347
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -47695,6 +48376,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
47695
48376
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47696
48377
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
47697
48378
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
48379
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47698
48380
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
47699
48381
|
ahead: z.ZodNumber;
|
|
47700
48382
|
behind: z.ZodNumber;
|
|
@@ -47870,11 +48552,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
47870
48552
|
additions: number;
|
|
47871
48553
|
deletions: number;
|
|
47872
48554
|
} | null | undefined;
|
|
48555
|
+
workingTreeDiffStat?: {
|
|
48556
|
+
additions: number;
|
|
48557
|
+
deletions: number;
|
|
48558
|
+
} | null | undefined;
|
|
47873
48559
|
gitRuntime?: {
|
|
47874
48560
|
currentBranch?: string | null | undefined;
|
|
47875
48561
|
remoteUrl?: string | null | undefined;
|
|
47876
48562
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
47877
48563
|
isDirty?: boolean | null | undefined;
|
|
48564
|
+
baseRef?: string | null | undefined;
|
|
47878
48565
|
aheadBehind?: {
|
|
47879
48566
|
ahead: number;
|
|
47880
48567
|
behind: number;
|
|
@@ -47983,11 +48670,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
47983
48670
|
additions: number;
|
|
47984
48671
|
deletions: number;
|
|
47985
48672
|
} | null | undefined;
|
|
48673
|
+
workingTreeDiffStat?: {
|
|
48674
|
+
additions: number;
|
|
48675
|
+
deletions: number;
|
|
48676
|
+
} | null | undefined;
|
|
47986
48677
|
gitRuntime?: {
|
|
47987
48678
|
currentBranch?: string | null | undefined;
|
|
47988
48679
|
remoteUrl?: string | null | undefined;
|
|
47989
48680
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
47990
48681
|
isDirty?: boolean | null | undefined;
|
|
48682
|
+
baseRef?: string | null | undefined;
|
|
47991
48683
|
aheadBehind?: {
|
|
47992
48684
|
ahead: number;
|
|
47993
48685
|
behind: number;
|
|
@@ -48400,6 +49092,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48400
49092
|
port: z.ZodDefault<z.ZodNumber>;
|
|
48401
49093
|
}, z.core.$loose>>;
|
|
48402
49094
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
49095
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
49096
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
49097
|
+
auto: "auto";
|
|
49098
|
+
managed: "managed";
|
|
49099
|
+
lmstudio: "lmstudio";
|
|
49100
|
+
}>>;
|
|
49101
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
49102
|
+
}, z.core.$strip>>;
|
|
48403
49103
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
48404
49104
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
48405
49105
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -48671,6 +49371,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
48671
49371
|
port: z.ZodDefault<z.ZodNumber>;
|
|
48672
49372
|
}, z.core.$loose>>;
|
|
48673
49373
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
49374
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
49375
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
49376
|
+
auto: "auto";
|
|
49377
|
+
managed: "managed";
|
|
49378
|
+
lmstudio: "lmstudio";
|
|
49379
|
+
}>>;
|
|
49380
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
49381
|
+
}, z.core.$strip>>;
|
|
48674
49382
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
48675
49383
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
48676
49384
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -49177,11 +49885,11 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
49177
49885
|
relPath: z.ZodString;
|
|
49178
49886
|
scope: z.ZodEnum<{
|
|
49179
49887
|
local: "local";
|
|
49888
|
+
runtime: "runtime";
|
|
49180
49889
|
enterprise: "enterprise";
|
|
49181
49890
|
global: "global";
|
|
49182
49891
|
project: "project";
|
|
49183
49892
|
subdirectory: "subdirectory";
|
|
49184
|
-
runtime: "runtime";
|
|
49185
49893
|
}>;
|
|
49186
49894
|
category: z.ZodEnum<{
|
|
49187
49895
|
context_files: "context_files";
|
|
@@ -50006,6 +50714,19 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50006
50714
|
tier: z.ZodDefault<z.ZodString>;
|
|
50007
50715
|
useCases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
50008
50716
|
why: z.ZodDefault<z.ZodString>;
|
|
50717
|
+
components: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
50718
|
+
id: z.ZodString;
|
|
50719
|
+
label: z.ZodDefault<z.ZodString>;
|
|
50720
|
+
description: z.ZodDefault<z.ZodString>;
|
|
50721
|
+
role: z.ZodDefault<z.ZodString>;
|
|
50722
|
+
hfRepo: z.ZodOptional<z.ZodString>;
|
|
50723
|
+
file: z.ZodDefault<z.ZodString>;
|
|
50724
|
+
bytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
50725
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
50726
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
50727
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
50728
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
50729
|
+
}, z.core.$strip>>>;
|
|
50009
50730
|
}, z.core.$loose>>>;
|
|
50010
50731
|
error: z.ZodNullable<z.ZodString>;
|
|
50011
50732
|
requestId: z.ZodString;
|
|
@@ -50015,6 +50736,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50015
50736
|
payload: z.ZodObject<{
|
|
50016
50737
|
runtimes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
50017
50738
|
label: z.ZodDefault<z.ZodString>;
|
|
50739
|
+
displayName: z.ZodDefault<z.ZodString>;
|
|
50018
50740
|
version: z.ZodDefault<z.ZodString>;
|
|
50019
50741
|
source: z.ZodDefault<z.ZodString>;
|
|
50020
50742
|
dir: z.ZodDefault<z.ZodString>;
|
|
@@ -50030,6 +50752,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50030
50752
|
kind: z.ZodEnum<{
|
|
50031
50753
|
pull: "pull";
|
|
50032
50754
|
"runtime-install": "runtime-install";
|
|
50755
|
+
"runtime-remove": "runtime-remove";
|
|
50033
50756
|
calibrate: "calibrate";
|
|
50034
50757
|
sweep: "sweep";
|
|
50035
50758
|
bench: "bench";
|
|
@@ -50059,6 +50782,37 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50059
50782
|
kind: z.ZodEnum<{
|
|
50060
50783
|
pull: "pull";
|
|
50061
50784
|
"runtime-install": "runtime-install";
|
|
50785
|
+
"runtime-remove": "runtime-remove";
|
|
50786
|
+
calibrate: "calibrate";
|
|
50787
|
+
sweep: "sweep";
|
|
50788
|
+
bench: "bench";
|
|
50789
|
+
}>;
|
|
50790
|
+
label: z.ZodDefault<z.ZodString>;
|
|
50791
|
+
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
50792
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
50793
|
+
running: "running";
|
|
50794
|
+
failed: "failed";
|
|
50795
|
+
canceled: "canceled";
|
|
50796
|
+
succeeded: "succeeded";
|
|
50797
|
+
}>>;
|
|
50798
|
+
percent: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
50799
|
+
message: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
50800
|
+
error: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
50801
|
+
startedAt: z.ZodDefault<z.ZodString>;
|
|
50802
|
+
finishedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
50803
|
+
}, z.core.$loose>>;
|
|
50804
|
+
error: z.ZodNullable<z.ZodString>;
|
|
50805
|
+
requestId: z.ZodString;
|
|
50806
|
+
}, z.core.$strip>;
|
|
50807
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50808
|
+
type: z.ZodLiteral<"brain.runtime.remove.response">;
|
|
50809
|
+
payload: z.ZodObject<{
|
|
50810
|
+
job: z.ZodNullable<z.ZodObject<{
|
|
50811
|
+
id: z.ZodString;
|
|
50812
|
+
kind: z.ZodEnum<{
|
|
50813
|
+
pull: "pull";
|
|
50814
|
+
"runtime-install": "runtime-install";
|
|
50815
|
+
"runtime-remove": "runtime-remove";
|
|
50062
50816
|
calibrate: "calibrate";
|
|
50063
50817
|
sweep: "sweep";
|
|
50064
50818
|
bench: "bench";
|
|
@@ -50088,6 +50842,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50088
50842
|
kind: z.ZodEnum<{
|
|
50089
50843
|
pull: "pull";
|
|
50090
50844
|
"runtime-install": "runtime-install";
|
|
50845
|
+
"runtime-remove": "runtime-remove";
|
|
50091
50846
|
calibrate: "calibrate";
|
|
50092
50847
|
sweep: "sweep";
|
|
50093
50848
|
bench: "bench";
|
|
@@ -50117,6 +50872,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50117
50872
|
kind: z.ZodEnum<{
|
|
50118
50873
|
pull: "pull";
|
|
50119
50874
|
"runtime-install": "runtime-install";
|
|
50875
|
+
"runtime-remove": "runtime-remove";
|
|
50120
50876
|
calibrate: "calibrate";
|
|
50121
50877
|
sweep: "sweep";
|
|
50122
50878
|
bench: "bench";
|
|
@@ -50146,6 +50902,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50146
50902
|
kind: z.ZodEnum<{
|
|
50147
50903
|
pull: "pull";
|
|
50148
50904
|
"runtime-install": "runtime-install";
|
|
50905
|
+
"runtime-remove": "runtime-remove";
|
|
50149
50906
|
calibrate: "calibrate";
|
|
50150
50907
|
sweep: "sweep";
|
|
50151
50908
|
bench: "bench";
|
|
@@ -50175,6 +50932,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50175
50932
|
kind: z.ZodEnum<{
|
|
50176
50933
|
pull: "pull";
|
|
50177
50934
|
"runtime-install": "runtime-install";
|
|
50935
|
+
"runtime-remove": "runtime-remove";
|
|
50178
50936
|
calibrate: "calibrate";
|
|
50179
50937
|
sweep: "sweep";
|
|
50180
50938
|
bench: "bench";
|
|
@@ -50204,6 +50962,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50204
50962
|
kind: z.ZodEnum<{
|
|
50205
50963
|
pull: "pull";
|
|
50206
50964
|
"runtime-install": "runtime-install";
|
|
50965
|
+
"runtime-remove": "runtime-remove";
|
|
50207
50966
|
calibrate: "calibrate";
|
|
50208
50967
|
sweep: "sweep";
|
|
50209
50968
|
bench: "bench";
|
|
@@ -50233,6 +50992,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50233
50992
|
downloads: z.ZodDefault<z.ZodNumber>;
|
|
50234
50993
|
likes: z.ZodDefault<z.ZodNumber>;
|
|
50235
50994
|
gated: z.ZodDefault<z.ZodBoolean>;
|
|
50995
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
50236
50996
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
50237
50997
|
}, z.core.$loose>>>;
|
|
50238
50998
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -50246,7 +51006,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50246
51006
|
size: z.ZodDefault<z.ZodString>;
|
|
50247
51007
|
sizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
50248
51008
|
files: z.ZodDefault<z.ZodNumber>;
|
|
51009
|
+
fileNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
50249
51010
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
51011
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51012
|
+
projector: z.ZodOptional<z.ZodObject<{
|
|
51013
|
+
file: z.ZodString;
|
|
51014
|
+
sizeBytes: z.ZodNumber;
|
|
51015
|
+
installed: z.ZodOptional<z.ZodBoolean>;
|
|
51016
|
+
}, z.core.$strip>>;
|
|
50250
51017
|
}, z.core.$loose>>>;
|
|
50251
51018
|
error: z.ZodNullable<z.ZodString>;
|
|
50252
51019
|
requestId: z.ZodString;
|
|
@@ -50259,6 +51026,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50259
51026
|
kind: z.ZodEnum<{
|
|
50260
51027
|
pull: "pull";
|
|
50261
51028
|
"runtime-install": "runtime-install";
|
|
51029
|
+
"runtime-remove": "runtime-remove";
|
|
50262
51030
|
calibrate: "calibrate";
|
|
50263
51031
|
sweep: "sweep";
|
|
50264
51032
|
bench: "bench";
|
|
@@ -50296,6 +51064,19 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50296
51064
|
blockCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
50297
51065
|
headCountKv: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
50298
51066
|
hasProjector: z.ZodDefault<z.ZodBoolean>;
|
|
51067
|
+
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
51068
|
+
id: z.ZodString;
|
|
51069
|
+
label: z.ZodDefault<z.ZodString>;
|
|
51070
|
+
description: z.ZodDefault<z.ZodString>;
|
|
51071
|
+
role: z.ZodDefault<z.ZodString>;
|
|
51072
|
+
bytes: z.ZodDefault<z.ZodNumber>;
|
|
51073
|
+
available: z.ZodDefault<z.ZodBoolean>;
|
|
51074
|
+
unavailableReason: z.ZodOptional<z.ZodString>;
|
|
51075
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
51076
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
51077
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
51078
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
51079
|
+
}, z.core.$strip>>>>;
|
|
50299
51080
|
reasoning: z.ZodDefault<z.ZodBoolean>;
|
|
50300
51081
|
mtp: z.ZodDefault<z.ZodBoolean>;
|
|
50301
51082
|
distilled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -50308,6 +51089,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50308
51089
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
50309
51090
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
50310
51091
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
51092
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
50311
51093
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
50312
51094
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
50313
51095
|
}, z.core.$loose>>>;
|
|
@@ -50320,6 +51102,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50320
51102
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
50321
51103
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
50322
51104
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
51105
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
51106
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
51107
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
50323
51108
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
50324
51109
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
50325
51110
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -50369,6 +51154,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50369
51154
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
50370
51155
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
50371
51156
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
51157
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
50372
51158
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
50373
51159
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
50374
51160
|
}, z.core.$loose>>>;
|
|
@@ -50409,6 +51195,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50409
51195
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
50410
51196
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
50411
51197
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
51198
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
50412
51199
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
50413
51200
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
50414
51201
|
}, z.core.$loose>>>;
|
|
@@ -50428,6 +51215,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50428
51215
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
50429
51216
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
50430
51217
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
51218
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
51219
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
51220
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
50431
51221
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
50432
51222
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
50433
51223
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -50456,12 +51246,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50456
51246
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
50457
51247
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
50458
51248
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
51249
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
50459
51250
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
50460
51251
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
50461
51252
|
}, z.core.$loose>>>;
|
|
50462
51253
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
50463
51254
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
50464
51255
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
51256
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
51257
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
51258
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
50465
51259
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
50466
51260
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
50467
51261
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -50565,6 +51359,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50565
51359
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
50566
51360
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
50567
51361
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
51362
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
50568
51363
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
50569
51364
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
50570
51365
|
}, z.core.$loose>>>;
|
|
@@ -50656,6 +51451,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
50656
51451
|
error: z.ZodNullable<z.ZodString>;
|
|
50657
51452
|
requestId: z.ZodString;
|
|
50658
51453
|
}, z.core.$strip>;
|
|
51454
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51455
|
+
type: z.ZodLiteral<"brain.model.component.delete.response">;
|
|
51456
|
+
payload: z.ZodObject<{
|
|
51457
|
+
deleted: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
51458
|
+
freedBytes: z.ZodDefault<z.ZodNumber>;
|
|
51459
|
+
error: z.ZodNullable<z.ZodString>;
|
|
51460
|
+
requestId: z.ZodString;
|
|
51461
|
+
}, z.core.$strip>;
|
|
50659
51462
|
}, z.core.$strip>, z.ZodObject<{
|
|
50660
51463
|
type: z.ZodLiteral<"brain.model.rename.response">;
|
|
50661
51464
|
payload: z.ZodObject<{
|
|
@@ -52741,6 +53544,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
52741
53544
|
additions: z.ZodNumber;
|
|
52742
53545
|
deletions: z.ZodNumber;
|
|
52743
53546
|
}, z.core.$strip>>>;
|
|
53547
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
53548
|
+
additions: z.ZodNumber;
|
|
53549
|
+
deletions: z.ZodNumber;
|
|
53550
|
+
}, z.core.$strip>>>;
|
|
52744
53551
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
52745
53552
|
scriptName: z.ZodString;
|
|
52746
53553
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -52775,6 +53582,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
52775
53582
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52776
53583
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
52777
53584
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
53585
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52778
53586
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
52779
53587
|
ahead: z.ZodNumber;
|
|
52780
53588
|
behind: z.ZodNumber;
|
|
@@ -52950,11 +53758,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
52950
53758
|
additions: number;
|
|
52951
53759
|
deletions: number;
|
|
52952
53760
|
} | null | undefined;
|
|
53761
|
+
workingTreeDiffStat?: {
|
|
53762
|
+
additions: number;
|
|
53763
|
+
deletions: number;
|
|
53764
|
+
} | null | undefined;
|
|
52953
53765
|
gitRuntime?: {
|
|
52954
53766
|
currentBranch?: string | null | undefined;
|
|
52955
53767
|
remoteUrl?: string | null | undefined;
|
|
52956
53768
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
52957
53769
|
isDirty?: boolean | null | undefined;
|
|
53770
|
+
baseRef?: string | null | undefined;
|
|
52958
53771
|
aheadBehind?: {
|
|
52959
53772
|
ahead: number;
|
|
52960
53773
|
behind: number;
|
|
@@ -53063,11 +53876,16 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
53063
53876
|
additions: number;
|
|
53064
53877
|
deletions: number;
|
|
53065
53878
|
} | null | undefined;
|
|
53879
|
+
workingTreeDiffStat?: {
|
|
53880
|
+
additions: number;
|
|
53881
|
+
deletions: number;
|
|
53882
|
+
} | null | undefined;
|
|
53066
53883
|
gitRuntime?: {
|
|
53067
53884
|
currentBranch?: string | null | undefined;
|
|
53068
53885
|
remoteUrl?: string | null | undefined;
|
|
53069
53886
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
53070
53887
|
isDirty?: boolean | null | undefined;
|
|
53888
|
+
baseRef?: string | null | undefined;
|
|
53071
53889
|
aheadBehind?: {
|
|
53072
53890
|
ahead: number;
|
|
53073
53891
|
behind: number;
|
|
@@ -54206,11 +55024,11 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54206
55024
|
relPath: z.ZodString;
|
|
54207
55025
|
scope: z.ZodEnum<{
|
|
54208
55026
|
local: "local";
|
|
55027
|
+
runtime: "runtime";
|
|
54209
55028
|
enterprise: "enterprise";
|
|
54210
55029
|
global: "global";
|
|
54211
55030
|
project: "project";
|
|
54212
55031
|
subdirectory: "subdirectory";
|
|
54213
|
-
runtime: "runtime";
|
|
54214
55032
|
}>;
|
|
54215
55033
|
category: z.ZodEnum<{
|
|
54216
55034
|
context_files: "context_files";
|
|
@@ -54365,6 +55183,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54365
55183
|
constraint: "constraint";
|
|
54366
55184
|
requirement: "requirement";
|
|
54367
55185
|
architecture: "architecture";
|
|
55186
|
+
finding: "finding";
|
|
54368
55187
|
}>;
|
|
54369
55188
|
title: z.ZodString;
|
|
54370
55189
|
statement: z.ZodString;
|
|
@@ -54424,6 +55243,11 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54424
55243
|
}>;
|
|
54425
55244
|
recordId: z.ZodString;
|
|
54426
55245
|
relatedRecordId: z.ZodOptional<z.ZodString>;
|
|
55246
|
+
tagOverlap: z.ZodOptional<z.ZodEnum<{
|
|
55247
|
+
complete: "complete";
|
|
55248
|
+
partial: "partial";
|
|
55249
|
+
}>>;
|
|
55250
|
+
sharedTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
54427
55251
|
message: z.ZodString;
|
|
54428
55252
|
}, z.core.$strip>>;
|
|
54429
55253
|
brief: z.ZodString;
|
|
@@ -54444,6 +55268,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54444
55268
|
constraint: "constraint";
|
|
54445
55269
|
requirement: "requirement";
|
|
54446
55270
|
architecture: "architecture";
|
|
55271
|
+
finding: "finding";
|
|
54447
55272
|
}>;
|
|
54448
55273
|
title: z.ZodString;
|
|
54449
55274
|
statement: z.ZodString;
|
|
@@ -54503,6 +55328,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54503
55328
|
constraint: "constraint";
|
|
54504
55329
|
requirement: "requirement";
|
|
54505
55330
|
architecture: "architecture";
|
|
55331
|
+
finding: "finding";
|
|
54506
55332
|
}>;
|
|
54507
55333
|
title: z.ZodString;
|
|
54508
55334
|
statement: z.ZodString;
|
|
@@ -54562,6 +55388,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54562
55388
|
constraint: "constraint";
|
|
54563
55389
|
requirement: "requirement";
|
|
54564
55390
|
architecture: "architecture";
|
|
55391
|
+
finding: "finding";
|
|
54565
55392
|
}>;
|
|
54566
55393
|
title: z.ZodString;
|
|
54567
55394
|
statement: z.ZodString;
|
|
@@ -54622,6 +55449,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54622
55449
|
constraint: "constraint";
|
|
54623
55450
|
requirement: "requirement";
|
|
54624
55451
|
architecture: "architecture";
|
|
55452
|
+
finding: "finding";
|
|
54625
55453
|
}>;
|
|
54626
55454
|
title: z.ZodString;
|
|
54627
55455
|
statement: z.ZodString;
|
|
@@ -54681,6 +55509,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54681
55509
|
constraint: "constraint";
|
|
54682
55510
|
requirement: "requirement";
|
|
54683
55511
|
architecture: "architecture";
|
|
55512
|
+
finding: "finding";
|
|
54684
55513
|
}>;
|
|
54685
55514
|
title: z.ZodString;
|
|
54686
55515
|
statement: z.ZodString;
|
|
@@ -54741,6 +55570,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
54741
55570
|
constraint: "constraint";
|
|
54742
55571
|
requirement: "requirement";
|
|
54743
55572
|
architecture: "architecture";
|
|
55573
|
+
finding: "finding";
|
|
54744
55574
|
}>;
|
|
54745
55575
|
title: z.ZodString;
|
|
54746
55576
|
statement: z.ZodString;
|
|
@@ -57011,11 +57841,17 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
57011
57841
|
}, z.core.$strip>, z.ZodObject<{
|
|
57012
57842
|
type: z.ZodLiteral<"brain.models.pull.request">;
|
|
57013
57843
|
model: z.ZodString;
|
|
57844
|
+
quant: z.ZodOptional<z.ZodString>;
|
|
57845
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
57014
57846
|
requestId: z.ZodString;
|
|
57015
57847
|
}, z.core.$strip>, z.ZodObject<{
|
|
57016
57848
|
type: z.ZodLiteral<"brain.runtime.install.request">;
|
|
57017
57849
|
build: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
57018
57850
|
requestId: z.ZodString;
|
|
57851
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57852
|
+
type: z.ZodLiteral<"brain.runtime.remove.request">;
|
|
57853
|
+
name: z.ZodString;
|
|
57854
|
+
requestId: z.ZodString;
|
|
57019
57855
|
}, z.core.$strip>, z.ZodObject<{
|
|
57020
57856
|
type: z.ZodLiteral<"brain.calibrate.request">;
|
|
57021
57857
|
model: z.ZodString;
|
|
@@ -57048,6 +57884,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
57048
57884
|
type: z.ZodLiteral<"brain.models.add.request">;
|
|
57049
57885
|
repo: z.ZodString;
|
|
57050
57886
|
quant: z.ZodString;
|
|
57887
|
+
components: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
57051
57888
|
requestId: z.ZodString;
|
|
57052
57889
|
}, z.core.$strip>, z.ZodObject<{
|
|
57053
57890
|
type: z.ZodLiteral<"brain.models.inventory.request">;
|
|
@@ -57077,6 +57914,11 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
57077
57914
|
type: z.ZodLiteral<"brain.model.delete.request">;
|
|
57078
57915
|
modelId: z.ZodString;
|
|
57079
57916
|
requestId: z.ZodString;
|
|
57917
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57918
|
+
type: z.ZodLiteral<"brain.model.component.delete.request">;
|
|
57919
|
+
modelId: z.ZodString;
|
|
57920
|
+
componentId: z.ZodString;
|
|
57921
|
+
requestId: z.ZodString;
|
|
57080
57922
|
}, z.core.$strip>, z.ZodObject<{
|
|
57081
57923
|
type: z.ZodLiteral<"brain.model.rename.request">;
|
|
57082
57924
|
modelId: z.ZodString;
|
|
@@ -57482,6 +58324,14 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
57482
58324
|
port: z.ZodOptional<z.ZodNumber>;
|
|
57483
58325
|
}, z.core.$loose>>;
|
|
57484
58326
|
defaultModel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58327
|
+
runtime: z.ZodOptional<z.ZodObject<{
|
|
58328
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
58329
|
+
auto: "auto";
|
|
58330
|
+
managed: "managed";
|
|
58331
|
+
lmstudio: "lmstudio";
|
|
58332
|
+
}>>;
|
|
58333
|
+
path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58334
|
+
}, z.core.$strip>>;
|
|
57485
58335
|
lockModel: z.ZodOptional<z.ZodBoolean>;
|
|
57486
58336
|
allowRemoteConfig: z.ZodOptional<z.ZodBoolean>;
|
|
57487
58337
|
allowInsecureBind: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -57935,6 +58785,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
57935
58785
|
constraint: "constraint";
|
|
57936
58786
|
requirement: "requirement";
|
|
57937
58787
|
architecture: "architecture";
|
|
58788
|
+
finding: "finding";
|
|
57938
58789
|
}>;
|
|
57939
58790
|
title: z.ZodString;
|
|
57940
58791
|
statement: z.ZodString;
|
|
@@ -60728,6 +61579,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
60728
61579
|
additions: z.ZodNumber;
|
|
60729
61580
|
deletions: z.ZodNumber;
|
|
60730
61581
|
}, z.core.$strip>>>;
|
|
61582
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
61583
|
+
additions: z.ZodNumber;
|
|
61584
|
+
deletions: z.ZodNumber;
|
|
61585
|
+
}, z.core.$strip>>>;
|
|
60731
61586
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
60732
61587
|
scriptName: z.ZodString;
|
|
60733
61588
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -60762,6 +61617,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
60762
61617
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
60763
61618
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
60764
61619
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
61620
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
60765
61621
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
60766
61622
|
ahead: z.ZodNumber;
|
|
60767
61623
|
behind: z.ZodNumber;
|
|
@@ -60937,11 +61793,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
60937
61793
|
additions: number;
|
|
60938
61794
|
deletions: number;
|
|
60939
61795
|
} | null | undefined;
|
|
61796
|
+
workingTreeDiffStat?: {
|
|
61797
|
+
additions: number;
|
|
61798
|
+
deletions: number;
|
|
61799
|
+
} | null | undefined;
|
|
60940
61800
|
gitRuntime?: {
|
|
60941
61801
|
currentBranch?: string | null | undefined;
|
|
60942
61802
|
remoteUrl?: string | null | undefined;
|
|
60943
61803
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
60944
61804
|
isDirty?: boolean | null | undefined;
|
|
61805
|
+
baseRef?: string | null | undefined;
|
|
60945
61806
|
aheadBehind?: {
|
|
60946
61807
|
ahead: number;
|
|
60947
61808
|
behind: number;
|
|
@@ -61050,11 +61911,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
61050
61911
|
additions: number;
|
|
61051
61912
|
deletions: number;
|
|
61052
61913
|
} | null | undefined;
|
|
61914
|
+
workingTreeDiffStat?: {
|
|
61915
|
+
additions: number;
|
|
61916
|
+
deletions: number;
|
|
61917
|
+
} | null | undefined;
|
|
61053
61918
|
gitRuntime?: {
|
|
61054
61919
|
currentBranch?: string | null | undefined;
|
|
61055
61920
|
remoteUrl?: string | null | undefined;
|
|
61056
61921
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
61057
61922
|
isDirty?: boolean | null | undefined;
|
|
61923
|
+
baseRef?: string | null | undefined;
|
|
61058
61924
|
aheadBehind?: {
|
|
61059
61925
|
ahead: number;
|
|
61060
61926
|
behind: number;
|
|
@@ -61908,6 +62774,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
61908
62774
|
additions: z.ZodNumber;
|
|
61909
62775
|
deletions: z.ZodNumber;
|
|
61910
62776
|
}, z.core.$strip>>>;
|
|
62777
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
62778
|
+
additions: z.ZodNumber;
|
|
62779
|
+
deletions: z.ZodNumber;
|
|
62780
|
+
}, z.core.$strip>>>;
|
|
61911
62781
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
61912
62782
|
scriptName: z.ZodString;
|
|
61913
62783
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -61942,6 +62812,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
61942
62812
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
61943
62813
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
61944
62814
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
62815
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
61945
62816
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
61946
62817
|
ahead: z.ZodNumber;
|
|
61947
62818
|
behind: z.ZodNumber;
|
|
@@ -62117,11 +62988,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
62117
62988
|
additions: number;
|
|
62118
62989
|
deletions: number;
|
|
62119
62990
|
} | null | undefined;
|
|
62991
|
+
workingTreeDiffStat?: {
|
|
62992
|
+
additions: number;
|
|
62993
|
+
deletions: number;
|
|
62994
|
+
} | null | undefined;
|
|
62120
62995
|
gitRuntime?: {
|
|
62121
62996
|
currentBranch?: string | null | undefined;
|
|
62122
62997
|
remoteUrl?: string | null | undefined;
|
|
62123
62998
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
62124
62999
|
isDirty?: boolean | null | undefined;
|
|
63000
|
+
baseRef?: string | null | undefined;
|
|
62125
63001
|
aheadBehind?: {
|
|
62126
63002
|
ahead: number;
|
|
62127
63003
|
behind: number;
|
|
@@ -62230,11 +63106,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
62230
63106
|
additions: number;
|
|
62231
63107
|
deletions: number;
|
|
62232
63108
|
} | null | undefined;
|
|
63109
|
+
workingTreeDiffStat?: {
|
|
63110
|
+
additions: number;
|
|
63111
|
+
deletions: number;
|
|
63112
|
+
} | null | undefined;
|
|
62233
63113
|
gitRuntime?: {
|
|
62234
63114
|
currentBranch?: string | null | undefined;
|
|
62235
63115
|
remoteUrl?: string | null | undefined;
|
|
62236
63116
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
62237
63117
|
isDirty?: boolean | null | undefined;
|
|
63118
|
+
baseRef?: string | null | undefined;
|
|
62238
63119
|
aheadBehind?: {
|
|
62239
63120
|
ahead: number;
|
|
62240
63121
|
behind: number;
|
|
@@ -62456,6 +63337,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
62456
63337
|
additions: z.ZodNumber;
|
|
62457
63338
|
deletions: z.ZodNumber;
|
|
62458
63339
|
}, z.core.$strip>>>;
|
|
63340
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
63341
|
+
additions: z.ZodNumber;
|
|
63342
|
+
deletions: z.ZodNumber;
|
|
63343
|
+
}, z.core.$strip>>>;
|
|
62459
63344
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
62460
63345
|
scriptName: z.ZodString;
|
|
62461
63346
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -62490,6 +63375,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
62490
63375
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
62491
63376
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
62492
63377
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
63378
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
62493
63379
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
62494
63380
|
ahead: z.ZodNumber;
|
|
62495
63381
|
behind: z.ZodNumber;
|
|
@@ -62665,11 +63551,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
62665
63551
|
additions: number;
|
|
62666
63552
|
deletions: number;
|
|
62667
63553
|
} | null | undefined;
|
|
63554
|
+
workingTreeDiffStat?: {
|
|
63555
|
+
additions: number;
|
|
63556
|
+
deletions: number;
|
|
63557
|
+
} | null | undefined;
|
|
62668
63558
|
gitRuntime?: {
|
|
62669
63559
|
currentBranch?: string | null | undefined;
|
|
62670
63560
|
remoteUrl?: string | null | undefined;
|
|
62671
63561
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
62672
63562
|
isDirty?: boolean | null | undefined;
|
|
63563
|
+
baseRef?: string | null | undefined;
|
|
62673
63564
|
aheadBehind?: {
|
|
62674
63565
|
ahead: number;
|
|
62675
63566
|
behind: number;
|
|
@@ -62778,11 +63669,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
62778
63669
|
additions: number;
|
|
62779
63670
|
deletions: number;
|
|
62780
63671
|
} | null | undefined;
|
|
63672
|
+
workingTreeDiffStat?: {
|
|
63673
|
+
additions: number;
|
|
63674
|
+
deletions: number;
|
|
63675
|
+
} | null | undefined;
|
|
62781
63676
|
gitRuntime?: {
|
|
62782
63677
|
currentBranch?: string | null | undefined;
|
|
62783
63678
|
remoteUrl?: string | null | undefined;
|
|
62784
63679
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
62785
63680
|
isDirty?: boolean | null | undefined;
|
|
63681
|
+
baseRef?: string | null | undefined;
|
|
62786
63682
|
aheadBehind?: {
|
|
62787
63683
|
ahead: number;
|
|
62788
63684
|
behind: number;
|
|
@@ -63275,6 +64171,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
63275
64171
|
additions: z.ZodNumber;
|
|
63276
64172
|
deletions: z.ZodNumber;
|
|
63277
64173
|
}, z.core.$strip>>>;
|
|
64174
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
64175
|
+
additions: z.ZodNumber;
|
|
64176
|
+
deletions: z.ZodNumber;
|
|
64177
|
+
}, z.core.$strip>>>;
|
|
63278
64178
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
63279
64179
|
scriptName: z.ZodString;
|
|
63280
64180
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -63309,6 +64209,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
63309
64209
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63310
64210
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
63311
64211
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
64212
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
63312
64213
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
63313
64214
|
ahead: z.ZodNumber;
|
|
63314
64215
|
behind: z.ZodNumber;
|
|
@@ -63484,11 +64385,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
63484
64385
|
additions: number;
|
|
63485
64386
|
deletions: number;
|
|
63486
64387
|
} | null | undefined;
|
|
64388
|
+
workingTreeDiffStat?: {
|
|
64389
|
+
additions: number;
|
|
64390
|
+
deletions: number;
|
|
64391
|
+
} | null | undefined;
|
|
63487
64392
|
gitRuntime?: {
|
|
63488
64393
|
currentBranch?: string | null | undefined;
|
|
63489
64394
|
remoteUrl?: string | null | undefined;
|
|
63490
64395
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
63491
64396
|
isDirty?: boolean | null | undefined;
|
|
64397
|
+
baseRef?: string | null | undefined;
|
|
63492
64398
|
aheadBehind?: {
|
|
63493
64399
|
ahead: number;
|
|
63494
64400
|
behind: number;
|
|
@@ -63597,11 +64503,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
63597
64503
|
additions: number;
|
|
63598
64504
|
deletions: number;
|
|
63599
64505
|
} | null | undefined;
|
|
64506
|
+
workingTreeDiffStat?: {
|
|
64507
|
+
additions: number;
|
|
64508
|
+
deletions: number;
|
|
64509
|
+
} | null | undefined;
|
|
63600
64510
|
gitRuntime?: {
|
|
63601
64511
|
currentBranch?: string | null | undefined;
|
|
63602
64512
|
remoteUrl?: string | null | undefined;
|
|
63603
64513
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
63604
64514
|
isDirty?: boolean | null | undefined;
|
|
64515
|
+
baseRef?: string | null | undefined;
|
|
63605
64516
|
aheadBehind?: {
|
|
63606
64517
|
ahead: number;
|
|
63607
64518
|
behind: number;
|
|
@@ -64409,6 +65320,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
64409
65320
|
additions: z.ZodNumber;
|
|
64410
65321
|
deletions: z.ZodNumber;
|
|
64411
65322
|
}, z.core.$strip>>>;
|
|
65323
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
65324
|
+
additions: z.ZodNumber;
|
|
65325
|
+
deletions: z.ZodNumber;
|
|
65326
|
+
}, z.core.$strip>>>;
|
|
64412
65327
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
64413
65328
|
scriptName: z.ZodString;
|
|
64414
65329
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -64443,6 +65358,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
64443
65358
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
64444
65359
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
64445
65360
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
65361
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
64446
65362
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
64447
65363
|
ahead: z.ZodNumber;
|
|
64448
65364
|
behind: z.ZodNumber;
|
|
@@ -64618,11 +65534,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
64618
65534
|
additions: number;
|
|
64619
65535
|
deletions: number;
|
|
64620
65536
|
} | null | undefined;
|
|
65537
|
+
workingTreeDiffStat?: {
|
|
65538
|
+
additions: number;
|
|
65539
|
+
deletions: number;
|
|
65540
|
+
} | null | undefined;
|
|
64621
65541
|
gitRuntime?: {
|
|
64622
65542
|
currentBranch?: string | null | undefined;
|
|
64623
65543
|
remoteUrl?: string | null | undefined;
|
|
64624
65544
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
64625
65545
|
isDirty?: boolean | null | undefined;
|
|
65546
|
+
baseRef?: string | null | undefined;
|
|
64626
65547
|
aheadBehind?: {
|
|
64627
65548
|
ahead: number;
|
|
64628
65549
|
behind: number;
|
|
@@ -64731,11 +65652,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
64731
65652
|
additions: number;
|
|
64732
65653
|
deletions: number;
|
|
64733
65654
|
} | null | undefined;
|
|
65655
|
+
workingTreeDiffStat?: {
|
|
65656
|
+
additions: number;
|
|
65657
|
+
deletions: number;
|
|
65658
|
+
} | null | undefined;
|
|
64734
65659
|
gitRuntime?: {
|
|
64735
65660
|
currentBranch?: string | null | undefined;
|
|
64736
65661
|
remoteUrl?: string | null | undefined;
|
|
64737
65662
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
64738
65663
|
isDirty?: boolean | null | undefined;
|
|
65664
|
+
baseRef?: string | null | undefined;
|
|
64739
65665
|
aheadBehind?: {
|
|
64740
65666
|
ahead: number;
|
|
64741
65667
|
behind: number;
|
|
@@ -65148,6 +66074,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
65148
66074
|
port: z.ZodDefault<z.ZodNumber>;
|
|
65149
66075
|
}, z.core.$loose>>;
|
|
65150
66076
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
66077
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
66078
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
66079
|
+
auto: "auto";
|
|
66080
|
+
managed: "managed";
|
|
66081
|
+
lmstudio: "lmstudio";
|
|
66082
|
+
}>>;
|
|
66083
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
66084
|
+
}, z.core.$strip>>;
|
|
65151
66085
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
65152
66086
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
65153
66087
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -65419,6 +66353,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
65419
66353
|
port: z.ZodDefault<z.ZodNumber>;
|
|
65420
66354
|
}, z.core.$loose>>;
|
|
65421
66355
|
defaultModel: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
66356
|
+
runtime: z.ZodDefault<z.ZodObject<{
|
|
66357
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
66358
|
+
auto: "auto";
|
|
66359
|
+
managed: "managed";
|
|
66360
|
+
lmstudio: "lmstudio";
|
|
66361
|
+
}>>;
|
|
66362
|
+
path: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
66363
|
+
}, z.core.$strip>>;
|
|
65422
66364
|
lockModel: z.ZodDefault<z.ZodBoolean>;
|
|
65423
66365
|
allowRemoteConfig: z.ZodDefault<z.ZodBoolean>;
|
|
65424
66366
|
allowInsecureBind: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -65925,11 +66867,11 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
65925
66867
|
relPath: z.ZodString;
|
|
65926
66868
|
scope: z.ZodEnum<{
|
|
65927
66869
|
local: "local";
|
|
66870
|
+
runtime: "runtime";
|
|
65928
66871
|
enterprise: "enterprise";
|
|
65929
66872
|
global: "global";
|
|
65930
66873
|
project: "project";
|
|
65931
66874
|
subdirectory: "subdirectory";
|
|
65932
|
-
runtime: "runtime";
|
|
65933
66875
|
}>;
|
|
65934
66876
|
category: z.ZodEnum<{
|
|
65935
66877
|
context_files: "context_files";
|
|
@@ -66754,6 +67696,19 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66754
67696
|
tier: z.ZodDefault<z.ZodString>;
|
|
66755
67697
|
useCases: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
66756
67698
|
why: z.ZodDefault<z.ZodString>;
|
|
67699
|
+
components: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
67700
|
+
id: z.ZodString;
|
|
67701
|
+
label: z.ZodDefault<z.ZodString>;
|
|
67702
|
+
description: z.ZodDefault<z.ZodString>;
|
|
67703
|
+
role: z.ZodDefault<z.ZodString>;
|
|
67704
|
+
hfRepo: z.ZodOptional<z.ZodString>;
|
|
67705
|
+
file: z.ZodDefault<z.ZodString>;
|
|
67706
|
+
bytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
67707
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
67708
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
67709
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
67710
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
67711
|
+
}, z.core.$strip>>>;
|
|
66757
67712
|
}, z.core.$loose>>>;
|
|
66758
67713
|
error: z.ZodNullable<z.ZodString>;
|
|
66759
67714
|
requestId: z.ZodString;
|
|
@@ -66763,6 +67718,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66763
67718
|
payload: z.ZodObject<{
|
|
66764
67719
|
runtimes: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
66765
67720
|
label: z.ZodDefault<z.ZodString>;
|
|
67721
|
+
displayName: z.ZodDefault<z.ZodString>;
|
|
66766
67722
|
version: z.ZodDefault<z.ZodString>;
|
|
66767
67723
|
source: z.ZodDefault<z.ZodString>;
|
|
66768
67724
|
dir: z.ZodDefault<z.ZodString>;
|
|
@@ -66778,6 +67734,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66778
67734
|
kind: z.ZodEnum<{
|
|
66779
67735
|
pull: "pull";
|
|
66780
67736
|
"runtime-install": "runtime-install";
|
|
67737
|
+
"runtime-remove": "runtime-remove";
|
|
66781
67738
|
calibrate: "calibrate";
|
|
66782
67739
|
sweep: "sweep";
|
|
66783
67740
|
bench: "bench";
|
|
@@ -66807,6 +67764,37 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66807
67764
|
kind: z.ZodEnum<{
|
|
66808
67765
|
pull: "pull";
|
|
66809
67766
|
"runtime-install": "runtime-install";
|
|
67767
|
+
"runtime-remove": "runtime-remove";
|
|
67768
|
+
calibrate: "calibrate";
|
|
67769
|
+
sweep: "sweep";
|
|
67770
|
+
bench: "bench";
|
|
67771
|
+
}>;
|
|
67772
|
+
label: z.ZodDefault<z.ZodString>;
|
|
67773
|
+
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
67774
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
67775
|
+
running: "running";
|
|
67776
|
+
failed: "failed";
|
|
67777
|
+
canceled: "canceled";
|
|
67778
|
+
succeeded: "succeeded";
|
|
67779
|
+
}>>;
|
|
67780
|
+
percent: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
67781
|
+
message: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
67782
|
+
error: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
67783
|
+
startedAt: z.ZodDefault<z.ZodString>;
|
|
67784
|
+
finishedAt: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
67785
|
+
}, z.core.$loose>>;
|
|
67786
|
+
error: z.ZodNullable<z.ZodString>;
|
|
67787
|
+
requestId: z.ZodString;
|
|
67788
|
+
}, z.core.$strip>;
|
|
67789
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
67790
|
+
type: z.ZodLiteral<"brain.runtime.remove.response">;
|
|
67791
|
+
payload: z.ZodObject<{
|
|
67792
|
+
job: z.ZodNullable<z.ZodObject<{
|
|
67793
|
+
id: z.ZodString;
|
|
67794
|
+
kind: z.ZodEnum<{
|
|
67795
|
+
pull: "pull";
|
|
67796
|
+
"runtime-install": "runtime-install";
|
|
67797
|
+
"runtime-remove": "runtime-remove";
|
|
66810
67798
|
calibrate: "calibrate";
|
|
66811
67799
|
sweep: "sweep";
|
|
66812
67800
|
bench: "bench";
|
|
@@ -66836,6 +67824,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66836
67824
|
kind: z.ZodEnum<{
|
|
66837
67825
|
pull: "pull";
|
|
66838
67826
|
"runtime-install": "runtime-install";
|
|
67827
|
+
"runtime-remove": "runtime-remove";
|
|
66839
67828
|
calibrate: "calibrate";
|
|
66840
67829
|
sweep: "sweep";
|
|
66841
67830
|
bench: "bench";
|
|
@@ -66865,6 +67854,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66865
67854
|
kind: z.ZodEnum<{
|
|
66866
67855
|
pull: "pull";
|
|
66867
67856
|
"runtime-install": "runtime-install";
|
|
67857
|
+
"runtime-remove": "runtime-remove";
|
|
66868
67858
|
calibrate: "calibrate";
|
|
66869
67859
|
sweep: "sweep";
|
|
66870
67860
|
bench: "bench";
|
|
@@ -66894,6 +67884,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66894
67884
|
kind: z.ZodEnum<{
|
|
66895
67885
|
pull: "pull";
|
|
66896
67886
|
"runtime-install": "runtime-install";
|
|
67887
|
+
"runtime-remove": "runtime-remove";
|
|
66897
67888
|
calibrate: "calibrate";
|
|
66898
67889
|
sweep: "sweep";
|
|
66899
67890
|
bench: "bench";
|
|
@@ -66923,6 +67914,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66923
67914
|
kind: z.ZodEnum<{
|
|
66924
67915
|
pull: "pull";
|
|
66925
67916
|
"runtime-install": "runtime-install";
|
|
67917
|
+
"runtime-remove": "runtime-remove";
|
|
66926
67918
|
calibrate: "calibrate";
|
|
66927
67919
|
sweep: "sweep";
|
|
66928
67920
|
bench: "bench";
|
|
@@ -66952,6 +67944,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66952
67944
|
kind: z.ZodEnum<{
|
|
66953
67945
|
pull: "pull";
|
|
66954
67946
|
"runtime-install": "runtime-install";
|
|
67947
|
+
"runtime-remove": "runtime-remove";
|
|
66955
67948
|
calibrate: "calibrate";
|
|
66956
67949
|
sweep: "sweep";
|
|
66957
67950
|
bench: "bench";
|
|
@@ -66981,6 +67974,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66981
67974
|
downloads: z.ZodDefault<z.ZodNumber>;
|
|
66982
67975
|
likes: z.ZodDefault<z.ZodNumber>;
|
|
66983
67976
|
gated: z.ZodDefault<z.ZodBoolean>;
|
|
67977
|
+
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
66984
67978
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
66985
67979
|
}, z.core.$loose>>>;
|
|
66986
67980
|
error: z.ZodNullable<z.ZodString>;
|
|
@@ -66994,7 +67988,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
66994
67988
|
size: z.ZodDefault<z.ZodString>;
|
|
66995
67989
|
sizeBytes: z.ZodDefault<z.ZodNumber>;
|
|
66996
67990
|
files: z.ZodDefault<z.ZodNumber>;
|
|
67991
|
+
fileNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
66997
67992
|
installed: z.ZodDefault<z.ZodBoolean>;
|
|
67993
|
+
modelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67994
|
+
projector: z.ZodOptional<z.ZodObject<{
|
|
67995
|
+
file: z.ZodString;
|
|
67996
|
+
sizeBytes: z.ZodNumber;
|
|
67997
|
+
installed: z.ZodOptional<z.ZodBoolean>;
|
|
67998
|
+
}, z.core.$strip>>;
|
|
66998
67999
|
}, z.core.$loose>>>;
|
|
66999
68000
|
error: z.ZodNullable<z.ZodString>;
|
|
67000
68001
|
requestId: z.ZodString;
|
|
@@ -67007,6 +68008,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67007
68008
|
kind: z.ZodEnum<{
|
|
67008
68009
|
pull: "pull";
|
|
67009
68010
|
"runtime-install": "runtime-install";
|
|
68011
|
+
"runtime-remove": "runtime-remove";
|
|
67010
68012
|
calibrate: "calibrate";
|
|
67011
68013
|
sweep: "sweep";
|
|
67012
68014
|
bench: "bench";
|
|
@@ -67044,6 +68046,19 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67044
68046
|
blockCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
67045
68047
|
headCountKv: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
67046
68048
|
hasProjector: z.ZodDefault<z.ZodBoolean>;
|
|
68049
|
+
components: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
68050
|
+
id: z.ZodString;
|
|
68051
|
+
label: z.ZodDefault<z.ZodString>;
|
|
68052
|
+
description: z.ZodDefault<z.ZodString>;
|
|
68053
|
+
role: z.ZodDefault<z.ZodString>;
|
|
68054
|
+
bytes: z.ZodDefault<z.ZodNumber>;
|
|
68055
|
+
available: z.ZodDefault<z.ZodBoolean>;
|
|
68056
|
+
unavailableReason: z.ZodOptional<z.ZodString>;
|
|
68057
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
68058
|
+
defaultDownload: z.ZodDefault<z.ZodBoolean>;
|
|
68059
|
+
defaultLoad: z.ZodDefault<z.ZodBoolean>;
|
|
68060
|
+
minRuntimeBuild: z.ZodOptional<z.ZodNumber>;
|
|
68061
|
+
}, z.core.$strip>>>>;
|
|
67047
68062
|
reasoning: z.ZodDefault<z.ZodBoolean>;
|
|
67048
68063
|
mtp: z.ZodDefault<z.ZodBoolean>;
|
|
67049
68064
|
distilled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -67056,6 +68071,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67056
68071
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
67057
68072
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
67058
68073
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
68074
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67059
68075
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
67060
68076
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
67061
68077
|
}, z.core.$loose>>>;
|
|
@@ -67068,6 +68084,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67068
68084
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
67069
68085
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
67070
68086
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
68087
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
68088
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
68089
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
67071
68090
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
67072
68091
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
67073
68092
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -67117,6 +68136,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67117
68136
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
67118
68137
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
67119
68138
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
68139
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67120
68140
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
67121
68141
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
67122
68142
|
}, z.core.$loose>>>;
|
|
@@ -67157,6 +68177,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67157
68177
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
67158
68178
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
67159
68179
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
68180
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67160
68181
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
67161
68182
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
67162
68183
|
}, z.core.$loose>>>;
|
|
@@ -67176,6 +68197,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67176
68197
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
67177
68198
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
67178
68199
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
68200
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
68201
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
68202
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
67179
68203
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
67180
68204
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
67181
68205
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -67204,12 +68228,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67204
68228
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
67205
68229
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
67206
68230
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
68231
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67207
68232
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
67208
68233
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
67209
68234
|
}, z.core.$loose>>>;
|
|
67210
68235
|
budget: z.ZodDefault<z.ZodNullable<z.ZodObject<{
|
|
67211
68236
|
weightsBytes: z.ZodDefault<z.ZodNumber>;
|
|
67212
68237
|
mmprojBytes: z.ZodDefault<z.ZodNumber>;
|
|
68238
|
+
componentBytes: z.ZodOptional<z.ZodNumber>;
|
|
68239
|
+
drafterKvBytes: z.ZodOptional<z.ZodNumber>;
|
|
68240
|
+
imageProcessingBytes: z.ZodOptional<z.ZodNumber>;
|
|
67213
68241
|
kvBytes: z.ZodDefault<z.ZodNumber>;
|
|
67214
68242
|
overheadBytes: z.ZodDefault<z.ZodNumber>;
|
|
67215
68243
|
totalBytes: z.ZodDefault<z.ZodNumber>;
|
|
@@ -67313,6 +68341,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67313
68341
|
flashAttention: z.ZodDefault<z.ZodBoolean>;
|
|
67314
68342
|
gpuLayers: z.ZodDefault<z.ZodNumber>;
|
|
67315
68343
|
vision: z.ZodDefault<z.ZodBoolean>;
|
|
68344
|
+
enabledComponents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
67316
68345
|
reasoningBudget: z.ZodDefault<z.ZodNumber>;
|
|
67317
68346
|
parallelSlots: z.ZodDefault<z.ZodNumber>;
|
|
67318
68347
|
}, z.core.$loose>>>;
|
|
@@ -67404,6 +68433,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
67404
68433
|
error: z.ZodNullable<z.ZodString>;
|
|
67405
68434
|
requestId: z.ZodString;
|
|
67406
68435
|
}, z.core.$strip>;
|
|
68436
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
68437
|
+
type: z.ZodLiteral<"brain.model.component.delete.response">;
|
|
68438
|
+
payload: z.ZodObject<{
|
|
68439
|
+
deleted: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
68440
|
+
freedBytes: z.ZodDefault<z.ZodNumber>;
|
|
68441
|
+
error: z.ZodNullable<z.ZodString>;
|
|
68442
|
+
requestId: z.ZodString;
|
|
68443
|
+
}, z.core.$strip>;
|
|
67407
68444
|
}, z.core.$strip>, z.ZodObject<{
|
|
67408
68445
|
type: z.ZodLiteral<"brain.model.rename.response">;
|
|
67409
68446
|
payload: z.ZodObject<{
|
|
@@ -69489,6 +70526,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
69489
70526
|
additions: z.ZodNumber;
|
|
69490
70527
|
deletions: z.ZodNumber;
|
|
69491
70528
|
}, z.core.$strip>>>;
|
|
70529
|
+
workingTreeDiffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
70530
|
+
additions: z.ZodNumber;
|
|
70531
|
+
deletions: z.ZodNumber;
|
|
70532
|
+
}, z.core.$strip>>>;
|
|
69492
70533
|
scripts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
69493
70534
|
scriptName: z.ZodString;
|
|
69494
70535
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -69523,6 +70564,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
69523
70564
|
remoteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
69524
70565
|
isOttoOwnedWorktree: z.ZodOptional<z.ZodBoolean>;
|
|
69525
70566
|
isDirty: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
70567
|
+
baseRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
69526
70568
|
aheadBehind: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
69527
70569
|
ahead: z.ZodNumber;
|
|
69528
70570
|
behind: z.ZodNumber;
|
|
@@ -69698,11 +70740,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
69698
70740
|
additions: number;
|
|
69699
70741
|
deletions: number;
|
|
69700
70742
|
} | null | undefined;
|
|
70743
|
+
workingTreeDiffStat?: {
|
|
70744
|
+
additions: number;
|
|
70745
|
+
deletions: number;
|
|
70746
|
+
} | null | undefined;
|
|
69701
70747
|
gitRuntime?: {
|
|
69702
70748
|
currentBranch?: string | null | undefined;
|
|
69703
70749
|
remoteUrl?: string | null | undefined;
|
|
69704
70750
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
69705
70751
|
isDirty?: boolean | null | undefined;
|
|
70752
|
+
baseRef?: string | null | undefined;
|
|
69706
70753
|
aheadBehind?: {
|
|
69707
70754
|
ahead: number;
|
|
69708
70755
|
behind: number;
|
|
@@ -69811,11 +70858,16 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
69811
70858
|
additions: number;
|
|
69812
70859
|
deletions: number;
|
|
69813
70860
|
} | null | undefined;
|
|
70861
|
+
workingTreeDiffStat?: {
|
|
70862
|
+
additions: number;
|
|
70863
|
+
deletions: number;
|
|
70864
|
+
} | null | undefined;
|
|
69814
70865
|
gitRuntime?: {
|
|
69815
70866
|
currentBranch?: string | null | undefined;
|
|
69816
70867
|
remoteUrl?: string | null | undefined;
|
|
69817
70868
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
69818
70869
|
isDirty?: boolean | null | undefined;
|
|
70870
|
+
baseRef?: string | null | undefined;
|
|
69819
70871
|
aheadBehind?: {
|
|
69820
70872
|
ahead: number;
|
|
69821
70873
|
behind: number;
|
|
@@ -70954,11 +72006,11 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
70954
72006
|
relPath: z.ZodString;
|
|
70955
72007
|
scope: z.ZodEnum<{
|
|
70956
72008
|
local: "local";
|
|
72009
|
+
runtime: "runtime";
|
|
70957
72010
|
enterprise: "enterprise";
|
|
70958
72011
|
global: "global";
|
|
70959
72012
|
project: "project";
|
|
70960
72013
|
subdirectory: "subdirectory";
|
|
70961
|
-
runtime: "runtime";
|
|
70962
72014
|
}>;
|
|
70963
72015
|
category: z.ZodEnum<{
|
|
70964
72016
|
context_files: "context_files";
|
|
@@ -71113,6 +72165,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71113
72165
|
constraint: "constraint";
|
|
71114
72166
|
requirement: "requirement";
|
|
71115
72167
|
architecture: "architecture";
|
|
72168
|
+
finding: "finding";
|
|
71116
72169
|
}>;
|
|
71117
72170
|
title: z.ZodString;
|
|
71118
72171
|
statement: z.ZodString;
|
|
@@ -71172,6 +72225,11 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71172
72225
|
}>;
|
|
71173
72226
|
recordId: z.ZodString;
|
|
71174
72227
|
relatedRecordId: z.ZodOptional<z.ZodString>;
|
|
72228
|
+
tagOverlap: z.ZodOptional<z.ZodEnum<{
|
|
72229
|
+
complete: "complete";
|
|
72230
|
+
partial: "partial";
|
|
72231
|
+
}>>;
|
|
72232
|
+
sharedTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
71175
72233
|
message: z.ZodString;
|
|
71176
72234
|
}, z.core.$strip>>;
|
|
71177
72235
|
brief: z.ZodString;
|
|
@@ -71192,6 +72250,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71192
72250
|
constraint: "constraint";
|
|
71193
72251
|
requirement: "requirement";
|
|
71194
72252
|
architecture: "architecture";
|
|
72253
|
+
finding: "finding";
|
|
71195
72254
|
}>;
|
|
71196
72255
|
title: z.ZodString;
|
|
71197
72256
|
statement: z.ZodString;
|
|
@@ -71251,6 +72310,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71251
72310
|
constraint: "constraint";
|
|
71252
72311
|
requirement: "requirement";
|
|
71253
72312
|
architecture: "architecture";
|
|
72313
|
+
finding: "finding";
|
|
71254
72314
|
}>;
|
|
71255
72315
|
title: z.ZodString;
|
|
71256
72316
|
statement: z.ZodString;
|
|
@@ -71310,6 +72370,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71310
72370
|
constraint: "constraint";
|
|
71311
72371
|
requirement: "requirement";
|
|
71312
72372
|
architecture: "architecture";
|
|
72373
|
+
finding: "finding";
|
|
71313
72374
|
}>;
|
|
71314
72375
|
title: z.ZodString;
|
|
71315
72376
|
statement: z.ZodString;
|
|
@@ -71370,6 +72431,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71370
72431
|
constraint: "constraint";
|
|
71371
72432
|
requirement: "requirement";
|
|
71372
72433
|
architecture: "architecture";
|
|
72434
|
+
finding: "finding";
|
|
71373
72435
|
}>;
|
|
71374
72436
|
title: z.ZodString;
|
|
71375
72437
|
statement: z.ZodString;
|
|
@@ -71429,6 +72491,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71429
72491
|
constraint: "constraint";
|
|
71430
72492
|
requirement: "requirement";
|
|
71431
72493
|
architecture: "architecture";
|
|
72494
|
+
finding: "finding";
|
|
71432
72495
|
}>;
|
|
71433
72496
|
title: z.ZodString;
|
|
71434
72497
|
statement: z.ZodString;
|
|
@@ -71489,6 +72552,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
71489
72552
|
constraint: "constraint";
|
|
71490
72553
|
requirement: "requirement";
|
|
71491
72554
|
architecture: "architecture";
|
|
72555
|
+
finding: "finding";
|
|
71492
72556
|
}>;
|
|
71493
72557
|
title: z.ZodString;
|
|
71494
72558
|
statement: z.ZodString;
|