@otto-code/protocol 0.8.7 → 0.8.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-personalities.js +9 -9
- package/dist/agent-types.d.ts +2 -0
- package/dist/generated/validation/ws-outbound.aot.js +48683 -46974
- package/dist/messages.d.ts +1805 -122
- package/dist/messages.js +193 -2
- package/dist/provider-config.d.ts +3 -0
- package/dist/provider-config.js +2 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +345 -2
- package/package.json +1 -1
|
@@ -35,6 +35,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
35
35
|
id: import("zod").ZodString;
|
|
36
36
|
label: import("zod").ZodString;
|
|
37
37
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
38
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
38
39
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
39
40
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
40
41
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -154,6 +155,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
154
155
|
id: import("zod").ZodString;
|
|
155
156
|
label: import("zod").ZodString;
|
|
156
157
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
158
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
157
159
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
158
160
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
159
161
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -702,6 +704,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
702
704
|
id: import("zod").ZodString;
|
|
703
705
|
label: import("zod").ZodString;
|
|
704
706
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
707
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
705
708
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
706
709
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
707
710
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -896,6 +899,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
896
899
|
additions: import("zod").ZodNumber;
|
|
897
900
|
deletions: import("zod").ZodNumber;
|
|
898
901
|
}, import("zod/v4/core").$strip>>>;
|
|
902
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
903
|
+
additions: import("zod").ZodNumber;
|
|
904
|
+
deletions: import("zod").ZodNumber;
|
|
905
|
+
}, import("zod/v4/core").$strip>>>;
|
|
899
906
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
900
907
|
scriptName: import("zod").ZodString;
|
|
901
908
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -930,6 +937,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
930
937
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
931
938
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
932
939
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
940
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
933
941
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
934
942
|
ahead: import("zod").ZodNumber;
|
|
935
943
|
behind: import("zod").ZodNumber;
|
|
@@ -1105,11 +1113,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1105
1113
|
additions: number;
|
|
1106
1114
|
deletions: number;
|
|
1107
1115
|
} | null | undefined;
|
|
1116
|
+
workingTreeDiffStat?: {
|
|
1117
|
+
additions: number;
|
|
1118
|
+
deletions: number;
|
|
1119
|
+
} | null | undefined;
|
|
1108
1120
|
gitRuntime?: {
|
|
1109
1121
|
currentBranch?: string | null | undefined;
|
|
1110
1122
|
remoteUrl?: string | null | undefined;
|
|
1111
1123
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
1112
1124
|
isDirty?: boolean | null | undefined;
|
|
1125
|
+
baseRef?: string | null | undefined;
|
|
1113
1126
|
aheadBehind?: {
|
|
1114
1127
|
ahead: number;
|
|
1115
1128
|
behind: number;
|
|
@@ -1218,11 +1231,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1218
1231
|
additions: number;
|
|
1219
1232
|
deletions: number;
|
|
1220
1233
|
} | null | undefined;
|
|
1234
|
+
workingTreeDiffStat?: {
|
|
1235
|
+
additions: number;
|
|
1236
|
+
deletions: number;
|
|
1237
|
+
} | null | undefined;
|
|
1221
1238
|
gitRuntime?: {
|
|
1222
1239
|
currentBranch?: string | null | undefined;
|
|
1223
1240
|
remoteUrl?: string | null | undefined;
|
|
1224
1241
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
1225
1242
|
isDirty?: boolean | null | undefined;
|
|
1243
|
+
baseRef?: string | null | undefined;
|
|
1226
1244
|
aheadBehind?: {
|
|
1227
1245
|
ahead: number;
|
|
1228
1246
|
behind: number;
|
|
@@ -1567,6 +1585,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1567
1585
|
id: import("zod").ZodString;
|
|
1568
1586
|
label: import("zod").ZodString;
|
|
1569
1587
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1588
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1570
1589
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1571
1590
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
1572
1591
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1673,6 +1692,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1673
1692
|
id: import("zod").ZodString;
|
|
1674
1693
|
label: import("zod").ZodString;
|
|
1675
1694
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1695
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1676
1696
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1677
1697
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
1678
1698
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1862,6 +1882,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1862
1882
|
id: import("zod").ZodString;
|
|
1863
1883
|
label: import("zod").ZodString;
|
|
1864
1884
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1885
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1865
1886
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1866
1887
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
1867
1888
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2076,6 +2097,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2076
2097
|
additions: import("zod").ZodNumber;
|
|
2077
2098
|
deletions: import("zod").ZodNumber;
|
|
2078
2099
|
}, import("zod/v4/core").$strip>>>;
|
|
2100
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2101
|
+
additions: import("zod").ZodNumber;
|
|
2102
|
+
deletions: import("zod").ZodNumber;
|
|
2103
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2079
2104
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2080
2105
|
scriptName: import("zod").ZodString;
|
|
2081
2106
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2110,6 +2135,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2110
2135
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2111
2136
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2112
2137
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
2138
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2113
2139
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2114
2140
|
ahead: import("zod").ZodNumber;
|
|
2115
2141
|
behind: import("zod").ZodNumber;
|
|
@@ -2285,11 +2311,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2285
2311
|
additions: number;
|
|
2286
2312
|
deletions: number;
|
|
2287
2313
|
} | null | undefined;
|
|
2314
|
+
workingTreeDiffStat?: {
|
|
2315
|
+
additions: number;
|
|
2316
|
+
deletions: number;
|
|
2317
|
+
} | null | undefined;
|
|
2288
2318
|
gitRuntime?: {
|
|
2289
2319
|
currentBranch?: string | null | undefined;
|
|
2290
2320
|
remoteUrl?: string | null | undefined;
|
|
2291
2321
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2292
2322
|
isDirty?: boolean | null | undefined;
|
|
2323
|
+
baseRef?: string | null | undefined;
|
|
2293
2324
|
aheadBehind?: {
|
|
2294
2325
|
ahead: number;
|
|
2295
2326
|
behind: number;
|
|
@@ -2398,11 +2429,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2398
2429
|
additions: number;
|
|
2399
2430
|
deletions: number;
|
|
2400
2431
|
} | null | undefined;
|
|
2432
|
+
workingTreeDiffStat?: {
|
|
2433
|
+
additions: number;
|
|
2434
|
+
deletions: number;
|
|
2435
|
+
} | null | undefined;
|
|
2401
2436
|
gitRuntime?: {
|
|
2402
2437
|
currentBranch?: string | null | undefined;
|
|
2403
2438
|
remoteUrl?: string | null | undefined;
|
|
2404
2439
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2405
2440
|
isDirty?: boolean | null | undefined;
|
|
2441
|
+
baseRef?: string | null | undefined;
|
|
2406
2442
|
aheadBehind?: {
|
|
2407
2443
|
ahead: number;
|
|
2408
2444
|
behind: number;
|
|
@@ -2624,6 +2660,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2624
2660
|
additions: import("zod").ZodNumber;
|
|
2625
2661
|
deletions: import("zod").ZodNumber;
|
|
2626
2662
|
}, import("zod/v4/core").$strip>>>;
|
|
2663
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2664
|
+
additions: import("zod").ZodNumber;
|
|
2665
|
+
deletions: import("zod").ZodNumber;
|
|
2666
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2627
2667
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2628
2668
|
scriptName: import("zod").ZodString;
|
|
2629
2669
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2658,6 +2698,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2658
2698
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2659
2699
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2660
2700
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
2701
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2661
2702
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2662
2703
|
ahead: import("zod").ZodNumber;
|
|
2663
2704
|
behind: import("zod").ZodNumber;
|
|
@@ -2833,11 +2874,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2833
2874
|
additions: number;
|
|
2834
2875
|
deletions: number;
|
|
2835
2876
|
} | null | undefined;
|
|
2877
|
+
workingTreeDiffStat?: {
|
|
2878
|
+
additions: number;
|
|
2879
|
+
deletions: number;
|
|
2880
|
+
} | null | undefined;
|
|
2836
2881
|
gitRuntime?: {
|
|
2837
2882
|
currentBranch?: string | null | undefined;
|
|
2838
2883
|
remoteUrl?: string | null | undefined;
|
|
2839
2884
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2840
2885
|
isDirty?: boolean | null | undefined;
|
|
2886
|
+
baseRef?: string | null | undefined;
|
|
2841
2887
|
aheadBehind?: {
|
|
2842
2888
|
ahead: number;
|
|
2843
2889
|
behind: number;
|
|
@@ -2946,11 +2992,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2946
2992
|
additions: number;
|
|
2947
2993
|
deletions: number;
|
|
2948
2994
|
} | null | undefined;
|
|
2995
|
+
workingTreeDiffStat?: {
|
|
2996
|
+
additions: number;
|
|
2997
|
+
deletions: number;
|
|
2998
|
+
} | null | undefined;
|
|
2949
2999
|
gitRuntime?: {
|
|
2950
3000
|
currentBranch?: string | null | undefined;
|
|
2951
3001
|
remoteUrl?: string | null | undefined;
|
|
2952
3002
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
2953
3003
|
isDirty?: boolean | null | undefined;
|
|
3004
|
+
baseRef?: string | null | undefined;
|
|
2954
3005
|
aheadBehind?: {
|
|
2955
3006
|
ahead: number;
|
|
2956
3007
|
behind: number;
|
|
@@ -3443,6 +3494,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3443
3494
|
additions: import("zod").ZodNumber;
|
|
3444
3495
|
deletions: import("zod").ZodNumber;
|
|
3445
3496
|
}, import("zod/v4/core").$strip>>>;
|
|
3497
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3498
|
+
additions: import("zod").ZodNumber;
|
|
3499
|
+
deletions: import("zod").ZodNumber;
|
|
3500
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3446
3501
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3447
3502
|
scriptName: import("zod").ZodString;
|
|
3448
3503
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -3477,6 +3532,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3477
3532
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3478
3533
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3479
3534
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
3535
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3480
3536
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3481
3537
|
ahead: import("zod").ZodNumber;
|
|
3482
3538
|
behind: import("zod").ZodNumber;
|
|
@@ -3652,11 +3708,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3652
3708
|
additions: number;
|
|
3653
3709
|
deletions: number;
|
|
3654
3710
|
} | null | undefined;
|
|
3711
|
+
workingTreeDiffStat?: {
|
|
3712
|
+
additions: number;
|
|
3713
|
+
deletions: number;
|
|
3714
|
+
} | null | undefined;
|
|
3655
3715
|
gitRuntime?: {
|
|
3656
3716
|
currentBranch?: string | null | undefined;
|
|
3657
3717
|
remoteUrl?: string | null | undefined;
|
|
3658
3718
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
3659
3719
|
isDirty?: boolean | null | undefined;
|
|
3720
|
+
baseRef?: string | null | undefined;
|
|
3660
3721
|
aheadBehind?: {
|
|
3661
3722
|
ahead: number;
|
|
3662
3723
|
behind: number;
|
|
@@ -3765,11 +3826,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3765
3826
|
additions: number;
|
|
3766
3827
|
deletions: number;
|
|
3767
3828
|
} | null | undefined;
|
|
3829
|
+
workingTreeDiffStat?: {
|
|
3830
|
+
additions: number;
|
|
3831
|
+
deletions: number;
|
|
3832
|
+
} | null | undefined;
|
|
3768
3833
|
gitRuntime?: {
|
|
3769
3834
|
currentBranch?: string | null | undefined;
|
|
3770
3835
|
remoteUrl?: string | null | undefined;
|
|
3771
3836
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
3772
3837
|
isDirty?: boolean | null | undefined;
|
|
3838
|
+
baseRef?: string | null | undefined;
|
|
3773
3839
|
aheadBehind?: {
|
|
3774
3840
|
ahead: number;
|
|
3775
3841
|
behind: number;
|
|
@@ -3871,6 +3937,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3871
3937
|
id: import("zod").ZodString;
|
|
3872
3938
|
label: import("zod").ZodString;
|
|
3873
3939
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3940
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3874
3941
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3875
3942
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
3876
3943
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4055,6 +4122,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4055
4122
|
id: import("zod").ZodString;
|
|
4056
4123
|
label: import("zod").ZodString;
|
|
4057
4124
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4125
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4058
4126
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4059
4127
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
4060
4128
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4358,6 +4426,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4358
4426
|
id: import("zod").ZodString;
|
|
4359
4427
|
label: import("zod").ZodString;
|
|
4360
4428
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4429
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4361
4430
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4362
4431
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
4363
4432
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4465,6 +4534,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4465
4534
|
id: import("zod").ZodString;
|
|
4466
4535
|
label: import("zod").ZodString;
|
|
4467
4536
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4537
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4468
4538
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4469
4539
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
4470
4540
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -4577,6 +4647,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4577
4647
|
additions: import("zod").ZodNumber;
|
|
4578
4648
|
deletions: import("zod").ZodNumber;
|
|
4579
4649
|
}, import("zod/v4/core").$strip>>>;
|
|
4650
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4651
|
+
additions: import("zod").ZodNumber;
|
|
4652
|
+
deletions: import("zod").ZodNumber;
|
|
4653
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4580
4654
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4581
4655
|
scriptName: import("zod").ZodString;
|
|
4582
4656
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -4611,6 +4685,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4611
4685
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4612
4686
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4613
4687
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
4688
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4614
4689
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4615
4690
|
ahead: import("zod").ZodNumber;
|
|
4616
4691
|
behind: import("zod").ZodNumber;
|
|
@@ -4786,11 +4861,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4786
4861
|
additions: number;
|
|
4787
4862
|
deletions: number;
|
|
4788
4863
|
} | null | undefined;
|
|
4864
|
+
workingTreeDiffStat?: {
|
|
4865
|
+
additions: number;
|
|
4866
|
+
deletions: number;
|
|
4867
|
+
} | null | undefined;
|
|
4789
4868
|
gitRuntime?: {
|
|
4790
4869
|
currentBranch?: string | null | undefined;
|
|
4791
4870
|
remoteUrl?: string | null | undefined;
|
|
4792
4871
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
4793
4872
|
isDirty?: boolean | null | undefined;
|
|
4873
|
+
baseRef?: string | null | undefined;
|
|
4794
4874
|
aheadBehind?: {
|
|
4795
4875
|
ahead: number;
|
|
4796
4876
|
behind: number;
|
|
@@ -4899,11 +4979,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4899
4979
|
additions: number;
|
|
4900
4980
|
deletions: number;
|
|
4901
4981
|
} | null | undefined;
|
|
4982
|
+
workingTreeDiffStat?: {
|
|
4983
|
+
additions: number;
|
|
4984
|
+
deletions: number;
|
|
4985
|
+
} | null | undefined;
|
|
4902
4986
|
gitRuntime?: {
|
|
4903
4987
|
currentBranch?: string | null | undefined;
|
|
4904
4988
|
remoteUrl?: string | null | undefined;
|
|
4905
4989
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
4906
4990
|
isDirty?: boolean | null | undefined;
|
|
4991
|
+
baseRef?: string | null | undefined;
|
|
4907
4992
|
aheadBehind?: {
|
|
4908
4993
|
ahead: number;
|
|
4909
4994
|
behind: number;
|
|
@@ -5316,6 +5401,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5316
5401
|
port: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5317
5402
|
}, import("zod/v4/core").$loose>>;
|
|
5318
5403
|
defaultModel: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5404
|
+
runtime: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5405
|
+
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
5406
|
+
auto: "auto";
|
|
5407
|
+
managed: "managed";
|
|
5408
|
+
lmstudio: "lmstudio";
|
|
5409
|
+
}>>;
|
|
5410
|
+
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5411
|
+
}, import("zod/v4/core").$strip>>;
|
|
5319
5412
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5320
5413
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5321
5414
|
allowInsecureBind: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -5587,6 +5680,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5587
5680
|
port: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5588
5681
|
}, import("zod/v4/core").$loose>>;
|
|
5589
5682
|
defaultModel: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5683
|
+
runtime: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5684
|
+
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
5685
|
+
auto: "auto";
|
|
5686
|
+
managed: "managed";
|
|
5687
|
+
lmstudio: "lmstudio";
|
|
5688
|
+
}>>;
|
|
5689
|
+
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5690
|
+
}, import("zod/v4/core").$strip>>;
|
|
5590
5691
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5591
5692
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5592
5693
|
allowInsecureBind: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -6093,11 +6194,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6093
6194
|
relPath: import("zod").ZodString;
|
|
6094
6195
|
scope: import("zod").ZodEnum<{
|
|
6095
6196
|
local: "local";
|
|
6197
|
+
runtime: "runtime";
|
|
6096
6198
|
enterprise: "enterprise";
|
|
6097
6199
|
global: "global";
|
|
6098
6200
|
project: "project";
|
|
6099
6201
|
subdirectory: "subdirectory";
|
|
6100
|
-
runtime: "runtime";
|
|
6101
6202
|
}>;
|
|
6102
6203
|
category: import("zod").ZodEnum<{
|
|
6103
6204
|
context_files: "context_files";
|
|
@@ -6392,6 +6493,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6392
6493
|
id: import("zod").ZodString;
|
|
6393
6494
|
label: import("zod").ZodString;
|
|
6394
6495
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6496
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6395
6497
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6396
6498
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6397
6499
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -6909,6 +7011,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6909
7011
|
models: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6910
7012
|
id: import("zod").ZodString;
|
|
6911
7013
|
name: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7014
|
+
family: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6912
7015
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6913
7016
|
publisher: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6914
7017
|
repo: import("zod").ZodDefault<import("zod").ZodString>;
|
|
@@ -6922,6 +7025,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6922
7025
|
tier: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6923
7026
|
useCases: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6924
7027
|
why: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7028
|
+
components: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7029
|
+
id: import("zod").ZodString;
|
|
7030
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7031
|
+
description: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7032
|
+
role: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7033
|
+
hfRepo: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7034
|
+
file: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7035
|
+
bytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7036
|
+
required: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7037
|
+
defaultDownload: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7038
|
+
defaultLoad: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7039
|
+
minRuntimeBuild: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7040
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6925
7041
|
}, import("zod/v4/core").$loose>>>;
|
|
6926
7042
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6927
7043
|
requestId: import("zod").ZodString;
|
|
@@ -6931,6 +7047,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6931
7047
|
payload: import("zod").ZodObject<{
|
|
6932
7048
|
runtimes: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6933
7049
|
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7050
|
+
displayName: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6934
7051
|
version: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6935
7052
|
source: import("zod").ZodDefault<import("zod").ZodString>;
|
|
6936
7053
|
dir: import("zod").ZodDefault<import("zod").ZodString>;
|
|
@@ -6946,6 +7063,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6946
7063
|
kind: import("zod").ZodEnum<{
|
|
6947
7064
|
pull: "pull";
|
|
6948
7065
|
"runtime-install": "runtime-install";
|
|
7066
|
+
"runtime-remove": "runtime-remove";
|
|
6949
7067
|
calibrate: "calibrate";
|
|
6950
7068
|
sweep: "sweep";
|
|
6951
7069
|
bench: "bench";
|
|
@@ -6975,6 +7093,37 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6975
7093
|
kind: import("zod").ZodEnum<{
|
|
6976
7094
|
pull: "pull";
|
|
6977
7095
|
"runtime-install": "runtime-install";
|
|
7096
|
+
"runtime-remove": "runtime-remove";
|
|
7097
|
+
calibrate: "calibrate";
|
|
7098
|
+
sweep: "sweep";
|
|
7099
|
+
bench: "bench";
|
|
7100
|
+
}>;
|
|
7101
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7102
|
+
target: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7103
|
+
status: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7104
|
+
running: "running";
|
|
7105
|
+
failed: "failed";
|
|
7106
|
+
canceled: "canceled";
|
|
7107
|
+
succeeded: "succeeded";
|
|
7108
|
+
}>>;
|
|
7109
|
+
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7110
|
+
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7111
|
+
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7112
|
+
startedAt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7113
|
+
finishedAt: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7114
|
+
}, import("zod/v4/core").$loose>>;
|
|
7115
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7116
|
+
requestId: import("zod").ZodString;
|
|
7117
|
+
}, import("zod/v4/core").$strip>;
|
|
7118
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7119
|
+
type: import("zod").ZodLiteral<"brain.runtime.remove.response">;
|
|
7120
|
+
payload: import("zod").ZodObject<{
|
|
7121
|
+
job: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7122
|
+
id: import("zod").ZodString;
|
|
7123
|
+
kind: import("zod").ZodEnum<{
|
|
7124
|
+
pull: "pull";
|
|
7125
|
+
"runtime-install": "runtime-install";
|
|
7126
|
+
"runtime-remove": "runtime-remove";
|
|
6978
7127
|
calibrate: "calibrate";
|
|
6979
7128
|
sweep: "sweep";
|
|
6980
7129
|
bench: "bench";
|
|
@@ -7004,6 +7153,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7004
7153
|
kind: import("zod").ZodEnum<{
|
|
7005
7154
|
pull: "pull";
|
|
7006
7155
|
"runtime-install": "runtime-install";
|
|
7156
|
+
"runtime-remove": "runtime-remove";
|
|
7007
7157
|
calibrate: "calibrate";
|
|
7008
7158
|
sweep: "sweep";
|
|
7009
7159
|
bench: "bench";
|
|
@@ -7033,6 +7183,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7033
7183
|
kind: import("zod").ZodEnum<{
|
|
7034
7184
|
pull: "pull";
|
|
7035
7185
|
"runtime-install": "runtime-install";
|
|
7186
|
+
"runtime-remove": "runtime-remove";
|
|
7036
7187
|
calibrate: "calibrate";
|
|
7037
7188
|
sweep: "sweep";
|
|
7038
7189
|
bench: "bench";
|
|
@@ -7062,6 +7213,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7062
7213
|
kind: import("zod").ZodEnum<{
|
|
7063
7214
|
pull: "pull";
|
|
7064
7215
|
"runtime-install": "runtime-install";
|
|
7216
|
+
"runtime-remove": "runtime-remove";
|
|
7065
7217
|
calibrate: "calibrate";
|
|
7066
7218
|
sweep: "sweep";
|
|
7067
7219
|
bench: "bench";
|
|
@@ -7091,6 +7243,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7091
7243
|
kind: import("zod").ZodEnum<{
|
|
7092
7244
|
pull: "pull";
|
|
7093
7245
|
"runtime-install": "runtime-install";
|
|
7246
|
+
"runtime-remove": "runtime-remove";
|
|
7094
7247
|
calibrate: "calibrate";
|
|
7095
7248
|
sweep: "sweep";
|
|
7096
7249
|
bench: "bench";
|
|
@@ -7120,6 +7273,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7120
7273
|
kind: import("zod").ZodEnum<{
|
|
7121
7274
|
pull: "pull";
|
|
7122
7275
|
"runtime-install": "runtime-install";
|
|
7276
|
+
"runtime-remove": "runtime-remove";
|
|
7123
7277
|
calibrate: "calibrate";
|
|
7124
7278
|
sweep: "sweep";
|
|
7125
7279
|
bench: "bench";
|
|
@@ -7149,6 +7303,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7149
7303
|
downloads: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7150
7304
|
likes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7151
7305
|
gated: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7306
|
+
summary: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7152
7307
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7153
7308
|
}, import("zod/v4/core").$loose>>>;
|
|
7154
7309
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -7162,7 +7317,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7162
7317
|
size: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7163
7318
|
sizeBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7164
7319
|
files: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7320
|
+
fileNames: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7165
7321
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7322
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7323
|
+
projector: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
7324
|
+
file: import("zod").ZodString;
|
|
7325
|
+
sizeBytes: import("zod").ZodNumber;
|
|
7326
|
+
installed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
7327
|
+
}, import("zod/v4/core").$strip>>;
|
|
7166
7328
|
}, import("zod/v4/core").$loose>>>;
|
|
7167
7329
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7168
7330
|
requestId: import("zod").ZodString;
|
|
@@ -7175,6 +7337,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7175
7337
|
kind: import("zod").ZodEnum<{
|
|
7176
7338
|
pull: "pull";
|
|
7177
7339
|
"runtime-install": "runtime-install";
|
|
7340
|
+
"runtime-remove": "runtime-remove";
|
|
7178
7341
|
calibrate: "calibrate";
|
|
7179
7342
|
sweep: "sweep";
|
|
7180
7343
|
bench: "bench";
|
|
@@ -7202,6 +7365,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7202
7365
|
models: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7203
7366
|
id: import("zod").ZodString;
|
|
7204
7367
|
displayName: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7368
|
+
family: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7205
7369
|
publisher: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7206
7370
|
quant: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7207
7371
|
sizeBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7212,6 +7376,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7212
7376
|
blockCount: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7213
7377
|
headCountKv: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7214
7378
|
hasProjector: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7379
|
+
components: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7380
|
+
id: import("zod").ZodString;
|
|
7381
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7382
|
+
description: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7383
|
+
role: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7384
|
+
bytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7385
|
+
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7386
|
+
unavailableReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7387
|
+
required: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7388
|
+
defaultDownload: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7389
|
+
defaultLoad: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7390
|
+
minRuntimeBuild: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7391
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
7215
7392
|
reasoning: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7216
7393
|
mtp: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7217
7394
|
distilled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -7224,8 +7401,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7224
7401
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7225
7402
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7226
7403
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7404
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7227
7405
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7228
7406
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7407
|
+
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7408
|
+
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7409
|
+
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7410
|
+
hostingProfileMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7411
|
+
custom: "custom";
|
|
7412
|
+
off: "off";
|
|
7413
|
+
inherit: "inherit";
|
|
7414
|
+
}>>;
|
|
7229
7415
|
}, import("zod/v4/core").$loose>>>;
|
|
7230
7416
|
calibration: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7231
7417
|
state: import("zod").ZodDefault<import("zod").ZodString>;
|
|
@@ -7236,6 +7422,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7236
7422
|
budget: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7237
7423
|
weightsBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7238
7424
|
mmprojBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7425
|
+
componentBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7426
|
+
drafterKvBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7427
|
+
imageProcessingBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7239
7428
|
kvBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7240
7429
|
overheadBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7241
7430
|
totalBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7285,8 +7474,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7285
7474
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7286
7475
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7287
7476
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7477
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7288
7478
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7289
7479
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7480
|
+
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7481
|
+
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7482
|
+
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7483
|
+
hostingProfileMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7484
|
+
custom: "custom";
|
|
7485
|
+
off: "off";
|
|
7486
|
+
inherit: "inherit";
|
|
7487
|
+
}>>;
|
|
7290
7488
|
}, import("zod/v4/core").$loose>>>;
|
|
7291
7489
|
fields: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7292
7490
|
key: import("zod").ZodString;
|
|
@@ -7312,6 +7510,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7312
7510
|
measuredAt: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7313
7511
|
measuredOn: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7314
7512
|
}, import("zod/v4/core").$loose>>>;
|
|
7513
|
+
requiresRestart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7514
|
+
hostingProfiles: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7515
|
+
id: import("zod").ZodString;
|
|
7516
|
+
name: import("zod").ZodString;
|
|
7517
|
+
family: import("zod").ZodString;
|
|
7518
|
+
description: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7519
|
+
template: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7520
|
+
systemPromptAddendum: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7521
|
+
templateKwargs: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
7522
|
+
}, import("zod/v4/core").$loose>>>;
|
|
7523
|
+
familyHostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7315
7524
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7316
7525
|
requestId: import("zod").ZodString;
|
|
7317
7526
|
}, import("zod/v4/core").$strip>;
|
|
@@ -7325,8 +7534,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7325
7534
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7326
7535
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7327
7536
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7537
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7328
7538
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7329
7539
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7540
|
+
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7541
|
+
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7542
|
+
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7543
|
+
hostingProfileMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7544
|
+
custom: "custom";
|
|
7545
|
+
off: "off";
|
|
7546
|
+
inherit: "inherit";
|
|
7547
|
+
}>>;
|
|
7548
|
+
}, import("zod/v4/core").$loose>>>;
|
|
7549
|
+
fields: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7550
|
+
key: import("zod").ZodString;
|
|
7551
|
+
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7552
|
+
kind: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7553
|
+
step: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7554
|
+
min: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7555
|
+
max: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7556
|
+
options: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>>;
|
|
7557
|
+
optionLabels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7558
|
+
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7559
|
+
unavailableReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7330
7560
|
}, import("zod/v4/core").$loose>>>;
|
|
7331
7561
|
adjustments: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7332
7562
|
warnings: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7344,6 +7574,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7344
7574
|
budget: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7345
7575
|
weightsBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7346
7576
|
mmprojBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7577
|
+
componentBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7578
|
+
drafterKvBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7579
|
+
imageProcessingBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7347
7580
|
kvBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7348
7581
|
overheadBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7349
7582
|
totalBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7359,6 +7592,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7359
7592
|
}, import("zod/v4/core").$loose>>>;
|
|
7360
7593
|
maxContextThatFits: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7361
7594
|
requiresRestart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7595
|
+
hostingProfiles: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7596
|
+
id: import("zod").ZodString;
|
|
7597
|
+
name: import("zod").ZodString;
|
|
7598
|
+
family: import("zod").ZodString;
|
|
7599
|
+
description: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7600
|
+
template: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7601
|
+
systemPromptAddendum: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7602
|
+
templateKwargs: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
7603
|
+
}, import("zod/v4/core").$loose>>>;
|
|
7604
|
+
familyHostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7362
7605
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7363
7606
|
requestId: import("zod").ZodString;
|
|
7364
7607
|
}, import("zod/v4/core").$strip>;
|
|
@@ -7372,12 +7615,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7372
7615
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7373
7616
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7374
7617
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7618
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7375
7619
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7376
7620
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7621
|
+
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7622
|
+
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7623
|
+
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7624
|
+
hostingProfileMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7625
|
+
custom: "custom";
|
|
7626
|
+
off: "off";
|
|
7627
|
+
inherit: "inherit";
|
|
7628
|
+
}>>;
|
|
7377
7629
|
}, import("zod/v4/core").$loose>>>;
|
|
7378
7630
|
budget: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7379
7631
|
weightsBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7380
7632
|
mmprojBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7633
|
+
componentBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7634
|
+
drafterKvBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7635
|
+
imageProcessingBytes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7381
7636
|
kvBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7382
7637
|
overheadBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7383
7638
|
totalBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -7481,8 +7736,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7481
7736
|
flashAttention: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7482
7737
|
gpuLayers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7483
7738
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7739
|
+
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7484
7740
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7485
7741
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7742
|
+
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7743
|
+
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7744
|
+
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7745
|
+
hostingProfileMode: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7746
|
+
custom: "custom";
|
|
7747
|
+
off: "off";
|
|
7748
|
+
inherit: "inherit";
|
|
7749
|
+
}>>;
|
|
7486
7750
|
}, import("zod/v4/core").$loose>>>;
|
|
7487
7751
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7488
7752
|
requestId: import("zod").ZodString;
|
|
@@ -7572,6 +7836,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7572
7836
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7573
7837
|
requestId: import("zod").ZodString;
|
|
7574
7838
|
}, import("zod/v4/core").$strip>;
|
|
7839
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7840
|
+
type: import("zod").ZodLiteral<"brain.model.component.delete.response">;
|
|
7841
|
+
payload: import("zod").ZodObject<{
|
|
7842
|
+
deleted: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7843
|
+
freedBytes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7844
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7845
|
+
requestId: import("zod").ZodString;
|
|
7846
|
+
}, import("zod/v4/core").$strip>;
|
|
7575
7847
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7576
7848
|
type: import("zod").ZodLiteral<"brain.model.rename.response">;
|
|
7577
7849
|
payload: import("zod").ZodObject<{
|
|
@@ -7948,6 +8220,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7948
8220
|
}, import("zod/v4/core").$strip>>>;
|
|
7949
8221
|
}, import("zod/v4/core").$strip>>;
|
|
7950
8222
|
}, import("zod/v4/core").$strip>>;
|
|
8223
|
+
beforeSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8224
|
+
afterSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7951
8225
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
7952
8226
|
ok: "ok";
|
|
7953
8227
|
too_large: "too_large";
|
|
@@ -7996,6 +8270,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7996
8270
|
}, import("zod/v4/core").$strip>>>;
|
|
7997
8271
|
}, import("zod/v4/core").$strip>>;
|
|
7998
8272
|
}, import("zod/v4/core").$strip>>;
|
|
8273
|
+
beforeSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8274
|
+
afterSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7999
8275
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
8000
8276
|
ok: "ok";
|
|
8001
8277
|
too_large: "too_large";
|
|
@@ -8201,6 +8477,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8201
8477
|
}, import("zod/v4/core").$strip>>>;
|
|
8202
8478
|
}, import("zod/v4/core").$strip>>;
|
|
8203
8479
|
}, import("zod/v4/core").$strip>>;
|
|
8480
|
+
beforeSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8481
|
+
afterSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8204
8482
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
8205
8483
|
ok: "ok";
|
|
8206
8484
|
too_large: "too_large";
|
|
@@ -9010,6 +9288,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9010
9288
|
}, import("zod/v4/core").$strip>>>;
|
|
9011
9289
|
}, import("zod/v4/core").$strip>>;
|
|
9012
9290
|
}, import("zod/v4/core").$strip>>;
|
|
9291
|
+
beforeSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9292
|
+
afterSource: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9013
9293
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
9014
9294
|
ok: "ok";
|
|
9015
9295
|
too_large: "too_large";
|
|
@@ -9657,6 +9937,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9657
9937
|
additions: import("zod").ZodNumber;
|
|
9658
9938
|
deletions: import("zod").ZodNumber;
|
|
9659
9939
|
}, import("zod/v4/core").$strip>>>;
|
|
9940
|
+
workingTreeDiffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
9941
|
+
additions: import("zod").ZodNumber;
|
|
9942
|
+
deletions: import("zod").ZodNumber;
|
|
9943
|
+
}, import("zod/v4/core").$strip>>>;
|
|
9660
9944
|
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
9661
9945
|
scriptName: import("zod").ZodString;
|
|
9662
9946
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -9691,6 +9975,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9691
9975
|
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9692
9976
|
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9693
9977
|
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
9978
|
+
baseRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9694
9979
|
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
9695
9980
|
ahead: import("zod").ZodNumber;
|
|
9696
9981
|
behind: import("zod").ZodNumber;
|
|
@@ -9866,11 +10151,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9866
10151
|
additions: number;
|
|
9867
10152
|
deletions: number;
|
|
9868
10153
|
} | null | undefined;
|
|
10154
|
+
workingTreeDiffStat?: {
|
|
10155
|
+
additions: number;
|
|
10156
|
+
deletions: number;
|
|
10157
|
+
} | null | undefined;
|
|
9869
10158
|
gitRuntime?: {
|
|
9870
10159
|
currentBranch?: string | null | undefined;
|
|
9871
10160
|
remoteUrl?: string | null | undefined;
|
|
9872
10161
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
9873
10162
|
isDirty?: boolean | null | undefined;
|
|
10163
|
+
baseRef?: string | null | undefined;
|
|
9874
10164
|
aheadBehind?: {
|
|
9875
10165
|
ahead: number;
|
|
9876
10166
|
behind: number;
|
|
@@ -9979,11 +10269,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9979
10269
|
additions: number;
|
|
9980
10270
|
deletions: number;
|
|
9981
10271
|
} | null | undefined;
|
|
10272
|
+
workingTreeDiffStat?: {
|
|
10273
|
+
additions: number;
|
|
10274
|
+
deletions: number;
|
|
10275
|
+
} | null | undefined;
|
|
9982
10276
|
gitRuntime?: {
|
|
9983
10277
|
currentBranch?: string | null | undefined;
|
|
9984
10278
|
remoteUrl?: string | null | undefined;
|
|
9985
10279
|
isOttoOwnedWorktree?: boolean | undefined;
|
|
9986
10280
|
isDirty?: boolean | null | undefined;
|
|
10281
|
+
baseRef?: string | null | undefined;
|
|
9987
10282
|
aheadBehind?: {
|
|
9988
10283
|
ahead: number;
|
|
9989
10284
|
behind: number;
|
|
@@ -10812,6 +11107,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10812
11107
|
id: import("zod").ZodString;
|
|
10813
11108
|
label: import("zod").ZodString;
|
|
10814
11109
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11110
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10815
11111
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10816
11112
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
10817
11113
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -11122,11 +11418,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11122
11418
|
relPath: import("zod").ZodString;
|
|
11123
11419
|
scope: import("zod").ZodEnum<{
|
|
11124
11420
|
local: "local";
|
|
11421
|
+
runtime: "runtime";
|
|
11125
11422
|
enterprise: "enterprise";
|
|
11126
11423
|
global: "global";
|
|
11127
11424
|
project: "project";
|
|
11128
11425
|
subdirectory: "subdirectory";
|
|
11129
|
-
runtime: "runtime";
|
|
11130
11426
|
}>;
|
|
11131
11427
|
category: import("zod").ZodEnum<{
|
|
11132
11428
|
context_files: "context_files";
|
|
@@ -11281,6 +11577,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11281
11577
|
constraint: "constraint";
|
|
11282
11578
|
requirement: "requirement";
|
|
11283
11579
|
architecture: "architecture";
|
|
11580
|
+
finding: "finding";
|
|
11284
11581
|
}>;
|
|
11285
11582
|
title: import("zod").ZodString;
|
|
11286
11583
|
statement: import("zod").ZodString;
|
|
@@ -11340,6 +11637,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11340
11637
|
}>;
|
|
11341
11638
|
recordId: import("zod").ZodString;
|
|
11342
11639
|
relatedRecordId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11640
|
+
tagOverlap: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11641
|
+
complete: "complete";
|
|
11642
|
+
partial: "partial";
|
|
11643
|
+
}>>;
|
|
11644
|
+
sharedTags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11343
11645
|
message: import("zod").ZodString;
|
|
11344
11646
|
}, import("zod/v4/core").$strip>>;
|
|
11345
11647
|
brief: import("zod").ZodString;
|
|
@@ -11360,6 +11662,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11360
11662
|
constraint: "constraint";
|
|
11361
11663
|
requirement: "requirement";
|
|
11362
11664
|
architecture: "architecture";
|
|
11665
|
+
finding: "finding";
|
|
11363
11666
|
}>;
|
|
11364
11667
|
title: import("zod").ZodString;
|
|
11365
11668
|
statement: import("zod").ZodString;
|
|
@@ -11419,6 +11722,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11419
11722
|
constraint: "constraint";
|
|
11420
11723
|
requirement: "requirement";
|
|
11421
11724
|
architecture: "architecture";
|
|
11725
|
+
finding: "finding";
|
|
11422
11726
|
}>;
|
|
11423
11727
|
title: import("zod").ZodString;
|
|
11424
11728
|
statement: import("zod").ZodString;
|
|
@@ -11478,6 +11782,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11478
11782
|
constraint: "constraint";
|
|
11479
11783
|
requirement: "requirement";
|
|
11480
11784
|
architecture: "architecture";
|
|
11785
|
+
finding: "finding";
|
|
11481
11786
|
}>;
|
|
11482
11787
|
title: import("zod").ZodString;
|
|
11483
11788
|
statement: import("zod").ZodString;
|
|
@@ -11538,6 +11843,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11538
11843
|
constraint: "constraint";
|
|
11539
11844
|
requirement: "requirement";
|
|
11540
11845
|
architecture: "architecture";
|
|
11846
|
+
finding: "finding";
|
|
11541
11847
|
}>;
|
|
11542
11848
|
title: import("zod").ZodString;
|
|
11543
11849
|
statement: import("zod").ZodString;
|
|
@@ -11597,6 +11903,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11597
11903
|
constraint: "constraint";
|
|
11598
11904
|
requirement: "requirement";
|
|
11599
11905
|
architecture: "architecture";
|
|
11906
|
+
finding: "finding";
|
|
11600
11907
|
}>;
|
|
11601
11908
|
title: import("zod").ZodString;
|
|
11602
11909
|
statement: import("zod").ZodString;
|
|
@@ -11657,6 +11964,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11657
11964
|
constraint: "constraint";
|
|
11658
11965
|
requirement: "requirement";
|
|
11659
11966
|
architecture: "architecture";
|
|
11967
|
+
finding: "finding";
|
|
11660
11968
|
}>;
|
|
11661
11969
|
title: import("zod").ZodString;
|
|
11662
11970
|
statement: import("zod").ZodString;
|
|
@@ -11866,6 +12174,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11866
12174
|
}>>>>;
|
|
11867
12175
|
changedAt: import("zod").ZodNumber;
|
|
11868
12176
|
}, import("zod/v4/core").$strip>>>;
|
|
12177
|
+
presentation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
12178
|
+
embedded: "embedded";
|
|
12179
|
+
}>>;
|
|
12180
|
+
presentationOwner: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11869
12181
|
}, import("zod/v4/core").$strip>>;
|
|
11870
12182
|
requestId: import("zod").ZodString;
|
|
11871
12183
|
}, import("zod/v4/core").$strip>;
|
|
@@ -11890,6 +12202,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11890
12202
|
}>>>>;
|
|
11891
12203
|
changedAt: import("zod").ZodNumber;
|
|
11892
12204
|
}, import("zod/v4/core").$strip>>>;
|
|
12205
|
+
presentation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
12206
|
+
embedded: "embedded";
|
|
12207
|
+
}>>;
|
|
12208
|
+
presentationOwner: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11893
12209
|
}, import("zod/v4/core").$strip>>;
|
|
11894
12210
|
}, import("zod/v4/core").$strip>;
|
|
11895
12211
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -11913,6 +12229,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11913
12229
|
}>>>>;
|
|
11914
12230
|
changedAt: import("zod").ZodNumber;
|
|
11915
12231
|
}, import("zod/v4/core").$strip>>>;
|
|
12232
|
+
presentation: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
12233
|
+
embedded: "embedded";
|
|
12234
|
+
}>>;
|
|
12235
|
+
presentationOwner: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11916
12236
|
}, import("zod/v4/core").$strip>>;
|
|
11917
12237
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11918
12238
|
requestId: import("zod").ZodString;
|
|
@@ -11951,6 +12271,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11951
12271
|
totalLines: import("zod").ZodNumber;
|
|
11952
12272
|
requestId: import("zod").ZodString;
|
|
11953
12273
|
}, import("zod/v4/core").$strip>;
|
|
12274
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12275
|
+
type: import("zod").ZodLiteral<"terminal.compatibility.diagnostic.response">;
|
|
12276
|
+
payload: import("zod").ZodObject<{
|
|
12277
|
+
requestId: import("zod").ZodString;
|
|
12278
|
+
success: import("zod").ZodBoolean;
|
|
12279
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12280
|
+
generatedAt: import("zod").ZodString;
|
|
12281
|
+
platform: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12282
|
+
term: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12283
|
+
termProgram: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12284
|
+
checks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12285
|
+
id: import("zod").ZodString;
|
|
12286
|
+
label: import("zod").ZodString;
|
|
12287
|
+
status: import("zod").ZodEnum<{
|
|
12288
|
+
pass: "pass";
|
|
12289
|
+
fail: "fail";
|
|
12290
|
+
unknown: "unknown";
|
|
12291
|
+
warn: "warn";
|
|
12292
|
+
}>;
|
|
12293
|
+
detail: import("zod").ZodString;
|
|
12294
|
+
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12295
|
+
}, import("zod/v4/core").$strip>>;
|
|
12296
|
+
}, import("zod/v4/core").$strip>;
|
|
11954
12297
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11955
12298
|
type: import("zod").ZodLiteral<"terminal_stream_exit">;
|
|
11956
12299
|
payload: import("zod").ZodObject<{
|