@otto-code/protocol 0.8.6 → 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 +47997 -46793
- package/dist/messages.d.ts +1187 -12
- package/dist/messages.js +142 -8
- package/dist/validation/ws-outbound-schema-metadata.d.ts +236 -2
- package/package.json +1 -1
|
@@ -94,6 +94,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
94
94
|
}>>>;
|
|
95
95
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
96
96
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
97
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
97
98
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
98
99
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
99
100
|
attended: "attended";
|
|
@@ -212,6 +213,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
212
213
|
}>>>;
|
|
213
214
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
214
215
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
216
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
215
217
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
216
218
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
217
219
|
attended: "attended";
|
|
@@ -759,6 +761,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
759
761
|
}>>>;
|
|
760
762
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
761
763
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
764
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
762
765
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
763
766
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
764
767
|
attended: "attended";
|
|
@@ -893,6 +896,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
893
896
|
additions: import("zod").ZodNumber;
|
|
894
897
|
deletions: import("zod").ZodNumber;
|
|
895
898
|
}, import("zod/v4/core").$strip>>>;
|
|
899
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
900
|
+
additions: import("zod").ZodNumber;
|
|
901
|
+
deletions: import("zod").ZodNumber;
|
|
902
|
+
}, import("zod/v4/core").$strip>>>;
|
|
896
903
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
897
904
|
scriptName: import("zod").ZodString;
|
|
898
905
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -927,6 +934,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
927
934
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
928
935
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
929
936
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
937
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
930
938
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
931
939
|
ahead: import("zod").ZodNumber;
|
|
932
940
|
behind: import("zod").ZodNumber;
|
|
@@ -1102,11 +1110,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1102
1110
|
additions: number;
|
|
1103
1111
|
deletions: number;
|
|
1104
1112
|
} | null | undefined;
|
|
1113
|
+
workingTreeDiffStat?: {
|
|
1114
|
+
additions: number;
|
|
1115
|
+
deletions: number;
|
|
1116
|
+
} | null | undefined;
|
|
1105
1117
|
gitRuntime?: {
|
|
1106
1118
|
currentBranch?: string | null | undefined;
|
|
1107
1119
|
remoteUrl?: string | null | undefined;
|
|
1108
1120
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
1109
1121
|
isDirty?: boolean | null | undefined;
|
|
1122
|
+
baseRef?: string | null | undefined;
|
|
1110
1123
|
aheadBehind?: {
|
|
1111
1124
|
ahead: number;
|
|
1112
1125
|
behind: number;
|
|
@@ -1215,11 +1228,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1215
1228
|
additions: number;
|
|
1216
1229
|
deletions: number;
|
|
1217
1230
|
} | null | undefined;
|
|
1231
|
+
workingTreeDiffStat?: {
|
|
1232
|
+
additions: number;
|
|
1233
|
+
deletions: number;
|
|
1234
|
+
} | null | undefined;
|
|
1218
1235
|
gitRuntime?: {
|
|
1219
1236
|
currentBranch?: string | null | undefined;
|
|
1220
1237
|
remoteUrl?: string | null | undefined;
|
|
1221
1238
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
1222
1239
|
isDirty?: boolean | null | undefined;
|
|
1240
|
+
baseRef?: string | null | undefined;
|
|
1223
1241
|
aheadBehind?: {
|
|
1224
1242
|
ahead: number;
|
|
1225
1243
|
behind: number;
|
|
@@ -1623,6 +1641,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1623
1641
|
}>>>;
|
|
1624
1642
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1625
1643
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1644
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1626
1645
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1627
1646
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1628
1647
|
attended: "attended";
|
|
@@ -1728,6 +1747,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1728
1747
|
}>>>;
|
|
1729
1748
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1730
1749
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1750
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1731
1751
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1732
1752
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1733
1753
|
attended: "attended";
|
|
@@ -1916,6 +1936,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1916
1936
|
}>>>;
|
|
1917
1937
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1918
1938
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1939
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1919
1940
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1920
1941
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1921
1942
|
attended: "attended";
|
|
@@ -2070,6 +2091,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2070
2091
|
additions: import("zod").ZodNumber;
|
|
2071
2092
|
deletions: import("zod").ZodNumber;
|
|
2072
2093
|
}, import("zod/v4/core").$strip>>>;
|
|
2094
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2095
|
+
additions: import("zod").ZodNumber;
|
|
2096
|
+
deletions: import("zod").ZodNumber;
|
|
2097
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2073
2098
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2074
2099
|
scriptName: import("zod").ZodString;
|
|
2075
2100
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2104,6 +2129,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2104
2129
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2105
2130
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2106
2131
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
2132
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2107
2133
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2108
2134
|
ahead: import("zod").ZodNumber;
|
|
2109
2135
|
behind: import("zod").ZodNumber;
|
|
@@ -2279,11 +2305,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2279
2305
|
additions: number;
|
|
2280
2306
|
deletions: number;
|
|
2281
2307
|
} | null | undefined;
|
|
2308
|
+
workingTreeDiffStat?: {
|
|
2309
|
+
additions: number;
|
|
2310
|
+
deletions: number;
|
|
2311
|
+
} | null | undefined;
|
|
2282
2312
|
gitRuntime?: {
|
|
2283
2313
|
currentBranch?: string | null | undefined;
|
|
2284
2314
|
remoteUrl?: string | null | undefined;
|
|
2285
2315
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2286
2316
|
isDirty?: boolean | null | undefined;
|
|
2317
|
+
baseRef?: string | null | undefined;
|
|
2287
2318
|
aheadBehind?: {
|
|
2288
2319
|
ahead: number;
|
|
2289
2320
|
behind: number;
|
|
@@ -2392,11 +2423,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2392
2423
|
additions: number;
|
|
2393
2424
|
deletions: number;
|
|
2394
2425
|
} | null | undefined;
|
|
2426
|
+
workingTreeDiffStat?: {
|
|
2427
|
+
additions: number;
|
|
2428
|
+
deletions: number;
|
|
2429
|
+
} | null | undefined;
|
|
2395
2430
|
gitRuntime?: {
|
|
2396
2431
|
currentBranch?: string | null | undefined;
|
|
2397
2432
|
remoteUrl?: string | null | undefined;
|
|
2398
2433
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2399
2434
|
isDirty?: boolean | null | undefined;
|
|
2435
|
+
baseRef?: string | null | undefined;
|
|
2400
2436
|
aheadBehind?: {
|
|
2401
2437
|
ahead: number;
|
|
2402
2438
|
behind: number;
|
|
@@ -2618,6 +2654,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2618
2654
|
additions: import("zod").ZodNumber;
|
|
2619
2655
|
deletions: import("zod").ZodNumber;
|
|
2620
2656
|
}, import("zod/v4/core").$strip>>>;
|
|
2657
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2658
|
+
additions: import("zod").ZodNumber;
|
|
2659
|
+
deletions: import("zod").ZodNumber;
|
|
2660
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2621
2661
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2622
2662
|
scriptName: import("zod").ZodString;
|
|
2623
2663
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2652,6 +2692,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2652
2692
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2653
2693
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2654
2694
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
2695
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2655
2696
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2656
2697
|
ahead: import("zod").ZodNumber;
|
|
2657
2698
|
behind: import("zod").ZodNumber;
|
|
@@ -2827,11 +2868,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2827
2868
|
additions: number;
|
|
2828
2869
|
deletions: number;
|
|
2829
2870
|
} | null | undefined;
|
|
2871
|
+
workingTreeDiffStat?: {
|
|
2872
|
+
additions: number;
|
|
2873
|
+
deletions: number;
|
|
2874
|
+
} | null | undefined;
|
|
2830
2875
|
gitRuntime?: {
|
|
2831
2876
|
currentBranch?: string | null | undefined;
|
|
2832
2877
|
remoteUrl?: string | null | undefined;
|
|
2833
2878
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2834
2879
|
isDirty?: boolean | null | undefined;
|
|
2880
|
+
baseRef?: string | null | undefined;
|
|
2835
2881
|
aheadBehind?: {
|
|
2836
2882
|
ahead: number;
|
|
2837
2883
|
behind: number;
|
|
@@ -2940,11 +2986,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2940
2986
|
additions: number;
|
|
2941
2987
|
deletions: number;
|
|
2942
2988
|
} | null | undefined;
|
|
2989
|
+
workingTreeDiffStat?: {
|
|
2990
|
+
additions: number;
|
|
2991
|
+
deletions: number;
|
|
2992
|
+
} | null | undefined;
|
|
2943
2993
|
gitRuntime?: {
|
|
2944
2994
|
currentBranch?: string | null | undefined;
|
|
2945
2995
|
remoteUrl?: string | null | undefined;
|
|
2946
2996
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2947
2997
|
isDirty?: boolean | null | undefined;
|
|
2998
|
+
baseRef?: string | null | undefined;
|
|
2948
2999
|
aheadBehind?: {
|
|
2949
3000
|
ahead: number;
|
|
2950
3001
|
behind: number;
|
|
@@ -3437,6 +3488,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3437
3488
|
additions: import("zod").ZodNumber;
|
|
3438
3489
|
deletions: import("zod").ZodNumber;
|
|
3439
3490
|
}, import("zod/v4/core").$strip>>>;
|
|
3491
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3492
|
+
additions: import("zod").ZodNumber;
|
|
3493
|
+
deletions: import("zod").ZodNumber;
|
|
3494
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3440
3495
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3441
3496
|
scriptName: import("zod").ZodString;
|
|
3442
3497
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -3471,6 +3526,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3471
3526
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3472
3527
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3473
3528
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
3529
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3474
3530
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3475
3531
|
ahead: import("zod").ZodNumber;
|
|
3476
3532
|
behind: import("zod").ZodNumber;
|
|
@@ -3646,11 +3702,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3646
3702
|
additions: number;
|
|
3647
3703
|
deletions: number;
|
|
3648
3704
|
} | null | undefined;
|
|
3705
|
+
workingTreeDiffStat?: {
|
|
3706
|
+
additions: number;
|
|
3707
|
+
deletions: number;
|
|
3708
|
+
} | null | undefined;
|
|
3649
3709
|
gitRuntime?: {
|
|
3650
3710
|
currentBranch?: string | null | undefined;
|
|
3651
3711
|
remoteUrl?: string | null | undefined;
|
|
3652
3712
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
3653
3713
|
isDirty?: boolean | null | undefined;
|
|
3714
|
+
baseRef?: string | null | undefined;
|
|
3654
3715
|
aheadBehind?: {
|
|
3655
3716
|
ahead: number;
|
|
3656
3717
|
behind: number;
|
|
@@ -3759,11 +3820,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3759
3820
|
additions: number;
|
|
3760
3821
|
deletions: number;
|
|
3761
3822
|
} | null | undefined;
|
|
3823
|
+
workingTreeDiffStat?: {
|
|
3824
|
+
additions: number;
|
|
3825
|
+
deletions: number;
|
|
3826
|
+
} | null | undefined;
|
|
3762
3827
|
gitRuntime?: {
|
|
3763
3828
|
currentBranch?: string | null | undefined;
|
|
3764
3829
|
remoteUrl?: string | null | undefined;
|
|
3765
3830
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
3766
3831
|
isDirty?: boolean | null | undefined;
|
|
3832
|
+
baseRef?: string | null | undefined;
|
|
3767
3833
|
aheadBehind?: {
|
|
3768
3834
|
ahead: number;
|
|
3769
3835
|
behind: number;
|
|
@@ -3924,6 +3990,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3924
3990
|
}>>>;
|
|
3925
3991
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3926
3992
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3993
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3927
3994
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3928
3995
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3929
3996
|
attended: "attended";
|
|
@@ -4107,6 +4174,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4107
4174
|
}>>>;
|
|
4108
4175
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4109
4176
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4177
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4110
4178
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4111
4179
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4112
4180
|
attended: "attended";
|
|
@@ -4409,6 +4477,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4409
4477
|
}>>>;
|
|
4410
4478
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4411
4479
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4480
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4412
4481
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4413
4482
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4414
4483
|
attended: "attended";
|
|
@@ -4515,6 +4584,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4515
4584
|
}>>>;
|
|
4516
4585
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4517
4586
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4587
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4518
4588
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4519
4589
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4520
4590
|
attended: "attended";
|
|
@@ -4567,6 +4637,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4567
4637
|
additions: import("zod").ZodNumber;
|
|
4568
4638
|
deletions: import("zod").ZodNumber;
|
|
4569
4639
|
}, import("zod/v4/core").$strip>>>;
|
|
4640
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4641
|
+
additions: import("zod").ZodNumber;
|
|
4642
|
+
deletions: import("zod").ZodNumber;
|
|
4643
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4570
4644
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4571
4645
|
scriptName: import("zod").ZodString;
|
|
4572
4646
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4601,6 +4675,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4601
4675
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4602
4676
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4603
4677
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
4678
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4604
4679
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4605
4680
|
ahead: import("zod").ZodNumber;
|
|
4606
4681
|
behind: import("zod").ZodNumber;
|
|
@@ -4776,11 +4851,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4776
4851
|
additions: number;
|
|
4777
4852
|
deletions: number;
|
|
4778
4853
|
} | null | undefined;
|
|
4854
|
+
workingTreeDiffStat?: {
|
|
4855
|
+
additions: number;
|
|
4856
|
+
deletions: number;
|
|
4857
|
+
} | null | undefined;
|
|
4779
4858
|
gitRuntime?: {
|
|
4780
4859
|
currentBranch?: string | null | undefined;
|
|
4781
4860
|
remoteUrl?: string | null | undefined;
|
|
4782
4861
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
4783
4862
|
isDirty?: boolean | null | undefined;
|
|
4863
|
+
baseRef?: string | null | undefined;
|
|
4784
4864
|
aheadBehind?: {
|
|
4785
4865
|
ahead: number;
|
|
4786
4866
|
behind: number;
|
|
@@ -4889,11 +4969,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4889
4969
|
additions: number;
|
|
4890
4970
|
deletions: number;
|
|
4891
4971
|
} | null | undefined;
|
|
4972
|
+
workingTreeDiffStat?: {
|
|
4973
|
+
additions: number;
|
|
4974
|
+
deletions: number;
|
|
4975
|
+
} | null | undefined;
|
|
4892
4976
|
gitRuntime?: {
|
|
4893
4977
|
currentBranch?: string | null | undefined;
|
|
4894
4978
|
remoteUrl?: string | null | undefined;
|
|
4895
4979
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
4896
4980
|
isDirty?: boolean | null | undefined;
|
|
4981
|
+
baseRef?: string | null | undefined;
|
|
4897
4982
|
aheadBehind?: {
|
|
4898
4983
|
ahead: number;
|
|
4899
4984
|
behind: number;
|
|
@@ -5306,6 +5391,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5306
5391
|
port: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5307
5392
|
}, import("zod/v4/core").$loose>>;
|
|
5308
5393
|
defaultModel: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5394
|
+
runtime: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5395
|
+
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
5396
|
+
auto: "auto";
|
|
5397
|
+
managed: "managed";
|
|
5398
|
+
lmstudio: "lmstudio";
|
|
5399
|
+
}>>;
|
|
5400
|
+
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5401
|
+
}, import("zod/v4/core").$strip>>;
|
|
5309
5402
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5310
5403
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5311
5404
|
allowInsecureBind: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -5577,6 +5670,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5577
5670
|
port: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5578
5671
|
}, import("zod/v4/core").$loose>>;
|
|
5579
5672
|
defaultModel: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5673
|
+
runtime: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5674
|
+
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
5675
|
+
auto: "auto";
|
|
5676
|
+
managed: "managed";
|
|
5677
|
+
lmstudio: "lmstudio";
|
|
5678
|
+
}>>;
|
|
5679
|
+
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5680
|
+
}, import("zod/v4/core").$strip>>;
|
|
5580
5681
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5581
5682
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5582
5683
|
allowInsecureBind: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -6083,11 +6184,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6083
6184
|
relPath: import("zod").ZodString;
|
|
6084
6185
|
scope: import("zod").ZodEnum<{
|
|
6085
6186
|
local: "local";
|
|
6187
|
+
runtime: "runtime";
|
|
6086
6188
|
enterprise: "enterprise";
|
|
6087
6189
|
global: "global";
|
|
6088
6190
|
project: "project";
|
|
6089
6191
|
subdirectory: "subdirectory";
|
|
6090
|
-
runtime: "runtime";
|
|
6091
6192
|
}>;
|
|
6092
6193
|
category: import("zod").ZodEnum<{
|
|
6093
6194
|
context_files: "context_files";
|
|
@@ -6441,6 +6542,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6441
6542
|
}>>>;
|
|
6442
6543
|
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6443
6544
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6545
|
+
archiveBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6444
6546
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6445
6547
|
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6446
6548
|
attended: "attended";
|
|
@@ -6486,6 +6588,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6486
6588
|
dryRun: import("zod").ZodBoolean;
|
|
6487
6589
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6488
6590
|
requestId: import("zod").ZodString;
|
|
6591
|
+
ottoBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6592
|
+
reclaimedBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6593
|
+
}, import("zod/v4/core").$strip>;
|
|
6594
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6595
|
+
type: import("zod").ZodLiteral<"history.agents.get_storage_stats.response">;
|
|
6596
|
+
payload: import("zod").ZodObject<{
|
|
6597
|
+
archivedCount: import("zod").ZodNumber;
|
|
6598
|
+
totalBytes: import("zod").ZodNumber;
|
|
6599
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6600
|
+
requestId: import("zod").ZodString;
|
|
6489
6601
|
}, import("zod/v4/core").$strip>;
|
|
6490
6602
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6491
6603
|
type: import("zod").ZodLiteral<"attachments.images.get_stats.response">;
|
|
@@ -6901,6 +7013,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6901
7013
|
tier: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6902
7014
|
useCases: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6903
7015
|
why: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7016
|
+
components: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7017
|
+
id: import("zod").ZodString;
|
|
7018
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7019
|
+
description: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7020
|
+
role: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7021
|
+
hfRepo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7022
|
+
file: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7023
|
+
bytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7024
|
+
required: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7025
|
+
defaultDownload: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7026
|
+
defaultLoad: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7027
|
+
minRuntimeBuild: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7028
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6904
7029
|
}, import("zod/v4/core").$loose>>>;
|
|
6905
7030
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6906
7031
|
requestId: import("zod").ZodString;
|
|
@@ -6910,6 +7035,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6910
7035
|
payload: import("zod").ZodObject<{
|
|
6911
7036
|
runtimes: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6912
7037
|
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7038
|
+
displayName: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6913
7039
|
version: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6914
7040
|
source: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6915
7041
|
dir: import("zod").ZodDefault<import("zod").ZodString>;
|
|
@@ -6925,6 +7051,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6925
7051
|
kind: import("zod").ZodEnum<{
|
|
6926
7052
|
pull: "pull";
|
|
6927
7053
|
"runtime-install": "runtime-install";
|
|
7054
|
+
"runtime-remove": "runtime-remove";
|
|
6928
7055
|
calibrate: "calibrate";
|
|
6929
7056
|
sweep: "sweep";
|
|
6930
7057
|
bench: "bench";
|
|
@@ -6954,6 +7081,37 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6954
7081
|
kind: import("zod").ZodEnum<{
|
|
6955
7082
|
pull: "pull";
|
|
6956
7083
|
"runtime-install": "runtime-install";
|
|
7084
|
+
"runtime-remove": "runtime-remove";
|
|
7085
|
+
calibrate: "calibrate";
|
|
7086
|
+
sweep: "sweep";
|
|
7087
|
+
bench: "bench";
|
|
7088
|
+
}>;
|
|
7089
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7090
|
+
target: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7091
|
+
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7092
|
+
running: "running";
|
|
7093
|
+
failed: "failed";
|
|
7094
|
+
canceled: "canceled";
|
|
7095
|
+
succeeded: "succeeded";
|
|
7096
|
+
}>>;
|
|
7097
|
+
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7098
|
+
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7099
|
+
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7100
|
+
startedAt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7101
|
+
finishedAt: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7102
|
+
}, import("zod/v4/core").$loose>>;
|
|
7103
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7104
|
+
requestId: import("zod").ZodString;
|
|
7105
|
+
}, import("zod/v4/core").$strip>;
|
|
7106
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7107
|
+
type: import("zod").ZodLiteral<"brain.runtime.remove.response">;
|
|
7108
|
+
payload: import("zod").ZodObject<{
|
|
7109
|
+
job: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7110
|
+
id: import("zod").ZodString;
|
|
7111
|
+
kind: import("zod").ZodEnum<{
|
|
7112
|
+
pull: "pull";
|
|
7113
|
+
"runtime-install": "runtime-install";
|
|
7114
|
+
"runtime-remove": "runtime-remove";
|
|
6957
7115
|
calibrate: "calibrate";
|
|
6958
7116
|
sweep: "sweep";
|
|
6959
7117
|
bench: "bench";
|
|
@@ -6983,6 +7141,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6983
7141
|
kind: import("zod").ZodEnum<{
|
|
6984
7142
|
pull: "pull";
|
|
6985
7143
|
"runtime-install": "runtime-install";
|
|
7144
|
+
"runtime-remove": "runtime-remove";
|
|
6986
7145
|
calibrate: "calibrate";
|
|
6987
7146
|
sweep: "sweep";
|
|
6988
7147
|
bench: "bench";
|
|
@@ -7012,6 +7171,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7012
7171
|
kind: import("zod").ZodEnum<{
|
|
7013
7172
|
pull: "pull";
|
|
7014
7173
|
"runtime-install": "runtime-install";
|
|
7174
|
+
"runtime-remove": "runtime-remove";
|
|
7015
7175
|
calibrate: "calibrate";
|
|
7016
7176
|
sweep: "sweep";
|
|
7017
7177
|
bench: "bench";
|
|
@@ -7041,6 +7201,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7041
7201
|
kind: import("zod").ZodEnum<{
|
|
7042
7202
|
pull: "pull";
|
|
7043
7203
|
"runtime-install": "runtime-install";
|
|
7204
|
+
"runtime-remove": "runtime-remove";
|
|
7044
7205
|
calibrate: "calibrate";
|
|
7045
7206
|
sweep: "sweep";
|
|
7046
7207
|
bench: "bench";
|
|
@@ -7070,6 +7231,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7070
7231
|
kind: import("zod").ZodEnum<{
|
|
7071
7232
|
pull: "pull";
|
|
7072
7233
|
"runtime-install": "runtime-install";
|
|
7234
|
+
"runtime-remove": "runtime-remove";
|
|
7073
7235
|
calibrate: "calibrate";
|
|
7074
7236
|
sweep: "sweep";
|
|
7075
7237
|
bench: "bench";
|
|
@@ -7099,6 +7261,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7099
7261
|
kind: import("zod").ZodEnum<{
|
|
7100
7262
|
pull: "pull";
|
|
7101
7263
|
"runtime-install": "runtime-install";
|
|
7264
|
+
"runtime-remove": "runtime-remove";
|
|
7102
7265
|
calibrate: "calibrate";
|
|
7103
7266
|
sweep: "sweep";
|
|
7104
7267
|
bench: "bench";
|
|
@@ -7128,6 +7291,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7128
7291
|
downloads: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7129
7292
|
likes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7130
7293
|
gated: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7294
|
+
summary: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7131
7295
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7132
7296
|
}, import("zod/v4/core").$loose>>>;
|
|
7133
7297
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -7141,7 +7305,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7141
7305
|
size: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7142
7306
|
sizeBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7143
7307
|
files: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7308
|
+
fileNames: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7144
7309
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7310
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7311
|
+
projector: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
7312
|
+
file: import("zod").ZodString;
|
|
7313
|
+
sizeBytes: import("zod").ZodNumber;
|
|
7314
|
+
installed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
7315
|
+
}, import("zod/v4/core").$strip>>;
|
|
7145
7316
|
}, import("zod/v4/core").$loose>>>;
|
|
7146
7317
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7147
7318
|
requestId: import("zod").ZodString;
|
|
@@ -7154,6 +7325,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7154
7325
|
kind: import("zod").ZodEnum<{
|
|
7155
7326
|
pull: "pull";
|
|
7156
7327
|
"runtime-install": "runtime-install";
|
|
7328
|
+
"runtime-remove": "runtime-remove";
|
|
7157
7329
|
calibrate: "calibrate";
|
|
7158
7330
|
sweep: "sweep";
|
|
7159
7331
|
bench: "bench";
|
|
@@ -7191,6 +7363,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7191
7363
|
blockCount: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7192
7364
|
headCountKv: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7193
7365
|
hasProjector: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7366
|
+
components: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7367
|
+
id: import("zod").ZodString;
|
|
7368
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7369
|
+
description: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7370
|
+
role: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7371
|
+
bytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7372
|
+
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7373
|
+
unavailableReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7374
|
+
required: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7375
|
+
defaultDownload: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7376
|
+
defaultLoad: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7377
|
+
minRuntimeBuild: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7378
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
7194
7379
|
reasoning: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7195
7380
|
mtp: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7196
7381
|
distilled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -7203,6 +7388,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7203
7388
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7204
7389
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7205
7390
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7391
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7206
7392
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7207
7393
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7208
7394
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7215,6 +7401,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7215
7401
|
budget: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7216
7402
|
weightsBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7217
7403
|
mmprojBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7404
|
+
componentBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7405
|
+
drafterKvBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7406
|
+
imageProcessingBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7218
7407
|
kvBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7219
7408
|
overheadBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7220
7409
|
totalBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7264,6 +7453,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7264
7453
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7265
7454
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7266
7455
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7456
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7267
7457
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7268
7458
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7269
7459
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7304,6 +7494,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7304
7494
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7305
7495
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7306
7496
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7497
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7307
7498
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7308
7499
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7309
7500
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7323,6 +7514,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7323
7514
|
budget: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7324
7515
|
weightsBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7325
7516
|
mmprojBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7517
|
+
componentBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7518
|
+
drafterKvBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7519
|
+
imageProcessingBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7326
7520
|
kvBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7327
7521
|
overheadBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7328
7522
|
totalBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7351,12 +7545,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7351
7545
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7352
7546
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7353
7547
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7548
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7354
7549
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7355
7550
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7356
7551
|
}, import("zod/v4/core").$loose>>>;
|
|
7357
7552
|
budget: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7358
7553
|
weightsBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7359
7554
|
mmprojBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7555
|
+
componentBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7556
|
+
drafterKvBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7557
|
+
imageProcessingBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7360
7558
|
kvBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7361
7559
|
overheadBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7362
7560
|
totalBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7460,6 +7658,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7460
7658
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7461
7659
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7462
7660
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7661
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7463
7662
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7464
7663
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7465
7664
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7551,6 +7750,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7551
7750
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7552
7751
|
requestId: import("zod").ZodString;
|
|
7553
7752
|
}, import("zod/v4/core").$strip>;
|
|
7753
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7754
|
+
type: import("zod").ZodLiteral<"brain.model.component.delete.response">;
|
|
7755
|
+
payload: import("zod").ZodObject<{
|
|
7756
|
+
deleted: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7757
|
+
freedBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7758
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7759
|
+
requestId: import("zod").ZodString;
|
|
7760
|
+
}, import("zod/v4/core").$strip>;
|
|
7554
7761
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7555
7762
|
type: import("zod").ZodLiteral<"brain.model.rename.response">;
|
|
7556
7763
|
payload: import("zod").ZodObject<{
|
|
@@ -9636,6 +9843,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9636
9843
|
additions: import("zod").ZodNumber;
|
|
9637
9844
|
deletions: import("zod").ZodNumber;
|
|
9638
9845
|
}, import("zod/v4/core").$strip>>>;
|
|
9846
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
9847
|
+
additions: import("zod").ZodNumber;
|
|
9848
|
+
deletions: import("zod").ZodNumber;
|
|
9849
|
+
}, import("zod/v4/core").$strip>>>;
|
|
9639
9850
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
9640
9851
|
scriptName: import("zod").ZodString;
|
|
9641
9852
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -9670,6 +9881,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9670
9881
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9671
9882
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9672
9883
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
9884
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9673
9885
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
9674
9886
|
ahead: import("zod").ZodNumber;
|
|
9675
9887
|
behind: import("zod").ZodNumber;
|
|
@@ -9845,11 +10057,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9845
10057
|
additions: number;
|
|
9846
10058
|
deletions: number;
|
|
9847
10059
|
} | null | undefined;
|
|
10060
|
+
workingTreeDiffStat?: {
|
|
10061
|
+
additions: number;
|
|
10062
|
+
deletions: number;
|
|
10063
|
+
} | null | undefined;
|
|
9848
10064
|
gitRuntime?: {
|
|
9849
10065
|
currentBranch?: string | null | undefined;
|
|
9850
10066
|
remoteUrl?: string | null | undefined;
|
|
9851
10067
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
9852
10068
|
isDirty?: boolean | null | undefined;
|
|
10069
|
+
baseRef?: string | null | undefined;
|
|
9853
10070
|
aheadBehind?: {
|
|
9854
10071
|
ahead: number;
|
|
9855
10072
|
behind: number;
|
|
@@ -9958,11 +10175,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9958
10175
|
additions: number;
|
|
9959
10176
|
deletions: number;
|
|
9960
10177
|
} | null | undefined;
|
|
10178
|
+
workingTreeDiffStat?: {
|
|
10179
|
+
additions: number;
|
|
10180
|
+
deletions: number;
|
|
10181
|
+
} | null | undefined;
|
|
9961
10182
|
gitRuntime?: {
|
|
9962
10183
|
currentBranch?: string | null | undefined;
|
|
9963
10184
|
remoteUrl?: string | null | undefined;
|
|
9964
10185
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
9965
10186
|
isDirty?: boolean | null | undefined;
|
|
10187
|
+
baseRef?: string | null | undefined;
|
|
9966
10188
|
aheadBehind?: {
|
|
9967
10189
|
ahead: number;
|
|
9968
10190
|
behind: number;
|
|
@@ -11101,11 +11323,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11101
11323
|
relPath: import("zod").ZodString;
|
|
11102
11324
|
scope: import("zod").ZodEnum<{
|
|
11103
11325
|
local: "local";
|
|
11326
|
+
runtime: "runtime";
|
|
11104
11327
|
enterprise: "enterprise";
|
|
11105
11328
|
global: "global";
|
|
11106
11329
|
project: "project";
|
|
11107
11330
|
subdirectory: "subdirectory";
|
|
11108
|
-
runtime: "runtime";
|
|
11109
11331
|
}>;
|
|
11110
11332
|
category: import("zod").ZodEnum<{
|
|
11111
11333
|
context_files: "context_files";
|
|
@@ -11260,6 +11482,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11260
11482
|
constraint: "constraint";
|
|
11261
11483
|
requirement: "requirement";
|
|
11262
11484
|
architecture: "architecture";
|
|
11485
|
+
finding: "finding";
|
|
11263
11486
|
}>;
|
|
11264
11487
|
title: import("zod").ZodString;
|
|
11265
11488
|
statement: import("zod").ZodString;
|
|
@@ -11319,6 +11542,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11319
11542
|
}>;
|
|
11320
11543
|
recordId: import("zod").ZodString;
|
|
11321
11544
|
relatedRecordId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11545
|
+
tagOverlap: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11546
|
+
complete: "complete";
|
|
11547
|
+
partial: "partial";
|
|
11548
|
+
}>>;
|
|
11549
|
+
sharedTags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11322
11550
|
message: import("zod").ZodString;
|
|
11323
11551
|
}, import("zod/v4/core").$strip>>;
|
|
11324
11552
|
brief: import("zod").ZodString;
|
|
@@ -11339,6 +11567,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11339
11567
|
constraint: "constraint";
|
|
11340
11568
|
requirement: "requirement";
|
|
11341
11569
|
architecture: "architecture";
|
|
11570
|
+
finding: "finding";
|
|
11342
11571
|
}>;
|
|
11343
11572
|
title: import("zod").ZodString;
|
|
11344
11573
|
statement: import("zod").ZodString;
|
|
@@ -11398,6 +11627,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11398
11627
|
constraint: "constraint";
|
|
11399
11628
|
requirement: "requirement";
|
|
11400
11629
|
architecture: "architecture";
|
|
11630
|
+
finding: "finding";
|
|
11401
11631
|
}>;
|
|
11402
11632
|
title: import("zod").ZodString;
|
|
11403
11633
|
statement: import("zod").ZodString;
|
|
@@ -11457,6 +11687,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11457
11687
|
constraint: "constraint";
|
|
11458
11688
|
requirement: "requirement";
|
|
11459
11689
|
architecture: "architecture";
|
|
11690
|
+
finding: "finding";
|
|
11460
11691
|
}>;
|
|
11461
11692
|
title: import("zod").ZodString;
|
|
11462
11693
|
statement: import("zod").ZodString;
|
|
@@ -11517,6 +11748,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11517
11748
|
constraint: "constraint";
|
|
11518
11749
|
requirement: "requirement";
|
|
11519
11750
|
architecture: "architecture";
|
|
11751
|
+
finding: "finding";
|
|
11520
11752
|
}>;
|
|
11521
11753
|
title: import("zod").ZodString;
|
|
11522
11754
|
statement: import("zod").ZodString;
|
|
@@ -11576,6 +11808,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11576
11808
|
constraint: "constraint";
|
|
11577
11809
|
requirement: "requirement";
|
|
11578
11810
|
architecture: "architecture";
|
|
11811
|
+
finding: "finding";
|
|
11579
11812
|
}>;
|
|
11580
11813
|
title: import("zod").ZodString;
|
|
11581
11814
|
statement: import("zod").ZodString;
|
|
@@ -11636,6 +11869,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11636
11869
|
constraint: "constraint";
|
|
11637
11870
|
requirement: "requirement";
|
|
11638
11871
|
architecture: "architecture";
|
|
11872
|
+
finding: "finding";
|
|
11639
11873
|
}>;
|
|
11640
11874
|
title: import("zod").ZodString;
|
|
11641
11875
|
statement: import("zod").ZodString;
|