@cat-factory/contracts 0.124.0 → 0.125.0
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-presentation.d.ts +2 -2
- package/dist/entities.d.ts +115 -0
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +36 -0
- package/dist/entities.js.map +1 -1
- package/dist/forkDecision.d.ts +169 -0
- package/dist/forkDecision.d.ts.map +1 -0
- package/dist/forkDecision.js +145 -0
- package/dist/forkDecision.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/merge.d.ts +32 -0
- package/dist/merge.d.ts.map +1 -1
- package/dist/merge.js +15 -0
- package/dist/merge.js.map +1 -1
- package/dist/notifications.d.ts +6 -2
- package/dist/notifications.d.ts.map +1 -1
- package/dist/notifications.js +8 -0
- package/dist/notifications.js.map +1 -1
- package/dist/result-views.d.ts +1 -1
- package/dist/result-views.d.ts.map +1 -1
- package/dist/result-views.js +1 -0
- package/dist/result-views.js.map +1 -1
- package/dist/routes/agent-runs.d.ts +72 -0
- package/dist/routes/agent-runs.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +288 -0
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/forkDecision.d.ts +143 -0
- package/dist/routes/forkDecision.d.ts.map +1 -0
- package/dist/routes/forkDecision.js +27 -0
- package/dist/routes/forkDecision.js.map +1 -0
- package/dist/routes/human-review.d.ts +36 -0
- package/dist/routes/human-review.d.ts.map +1 -1
- package/dist/routes/human-test.d.ts +180 -0
- package/dist/routes/human-test.d.ts.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/merge.d.ts +42 -0
- package/dist/routes/merge.d.ts.map +1 -1
- package/dist/routes/notifications.d.ts +6 -3
- package/dist/routes/notifications.d.ts.map +1 -1
- package/dist/routes/slack.d.ts +3 -3
- package/dist/routes/visual-confirm.d.ts +108 -0
- package/dist/routes/visual-confirm.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +92 -4
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/slack.d.ts +2 -2
- package/dist/snapshot.d.ts +46 -2
- package/dist/snapshot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
export declare const getForkDecisionContract: {
|
|
3
|
+
readonly method: "get";
|
|
4
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
5
|
+
executionId: v.StringSchema<undefined>;
|
|
6
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
7
|
+
readonly pathResolver: ({ executionId }: {
|
|
8
|
+
executionId: string;
|
|
9
|
+
}) => string;
|
|
10
|
+
readonly responsesByStatusCode: {
|
|
11
|
+
readonly '4xx': v.ObjectSchema<{
|
|
12
|
+
readonly error: v.ObjectSchema<{
|
|
13
|
+
readonly code: v.StringSchema<undefined>;
|
|
14
|
+
readonly message: v.StringSchema<undefined>;
|
|
15
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
16
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
17
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
18
|
+
readonly message: v.StringSchema<undefined>;
|
|
19
|
+
}, undefined>, undefined>, undefined>;
|
|
20
|
+
}, undefined>;
|
|
21
|
+
}, undefined>;
|
|
22
|
+
readonly '5xx': v.ObjectSchema<{
|
|
23
|
+
readonly error: v.ObjectSchema<{
|
|
24
|
+
readonly code: v.StringSchema<undefined>;
|
|
25
|
+
readonly message: v.StringSchema<undefined>;
|
|
26
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
27
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
28
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
29
|
+
readonly message: v.StringSchema<undefined>;
|
|
30
|
+
}, undefined>, undefined>, undefined>;
|
|
31
|
+
}, undefined>;
|
|
32
|
+
}, undefined>;
|
|
33
|
+
readonly 200: v.NullableSchema<v.ObjectSchema<{
|
|
34
|
+
readonly status: v.PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
35
|
+
readonly seamSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
36
|
+
readonly forks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
37
|
+
readonly id: v.StringSchema<undefined>;
|
|
38
|
+
readonly title: v.StringSchema<undefined>;
|
|
39
|
+
readonly summary: v.StringSchema<undefined>;
|
|
40
|
+
readonly approach: v.StringSchema<undefined>;
|
|
41
|
+
readonly tradeoffs: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
42
|
+
readonly riskNotes: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
43
|
+
readonly recommended: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
44
|
+
}, undefined>, undefined>, readonly []>;
|
|
45
|
+
readonly singlePathReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
46
|
+
readonly chat: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
47
|
+
readonly id: v.StringSchema<undefined>;
|
|
48
|
+
readonly role: v.PicklistSchema<["human", "assistant"], undefined>;
|
|
49
|
+
readonly text: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>;
|
|
50
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
51
|
+
}, undefined>, undefined>, readonly []>;
|
|
52
|
+
readonly maxChatTurns: v.OptionalSchema<v.NumberSchema<undefined>, 15>;
|
|
53
|
+
readonly chosen: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
54
|
+
readonly forkId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
55
|
+
readonly custom: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
56
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
57
|
+
readonly at: v.NumberSchema<undefined>;
|
|
58
|
+
}, undefined>, v.CheckAction<{
|
|
59
|
+
forkId?: string | null | undefined;
|
|
60
|
+
custom?: string | null | undefined;
|
|
61
|
+
note?: string | null | undefined;
|
|
62
|
+
at: number;
|
|
63
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
64
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
65
|
+
}, undefined>, undefined>;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
export declare const chooseForkContract: {
|
|
69
|
+
readonly method: "post";
|
|
70
|
+
readonly requestPathParamsSchema: v.ObjectSchema<{
|
|
71
|
+
executionId: v.StringSchema<undefined>;
|
|
72
|
+
}, undefined> & import("@toad-contracts/core").StandardObjectKeysV1<unknown, unknown>;
|
|
73
|
+
readonly pathResolver: ({ executionId }: {
|
|
74
|
+
executionId: string;
|
|
75
|
+
}) => string;
|
|
76
|
+
readonly requestBodySchema: v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
77
|
+
readonly forkId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
78
|
+
readonly custom: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 8000, undefined>]>, undefined>, undefined>;
|
|
79
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 4000, undefined>]>, undefined>, undefined>;
|
|
80
|
+
}, undefined>, v.CheckAction<{
|
|
81
|
+
forkId?: string | null | undefined;
|
|
82
|
+
custom?: string | null | undefined;
|
|
83
|
+
note?: string | null | undefined;
|
|
84
|
+
}, "Provide exactly one of forkId or custom.">]>;
|
|
85
|
+
readonly responsesByStatusCode: {
|
|
86
|
+
readonly '4xx': v.ObjectSchema<{
|
|
87
|
+
readonly error: v.ObjectSchema<{
|
|
88
|
+
readonly code: v.StringSchema<undefined>;
|
|
89
|
+
readonly message: v.StringSchema<undefined>;
|
|
90
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
91
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
92
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
93
|
+
readonly message: v.StringSchema<undefined>;
|
|
94
|
+
}, undefined>, undefined>, undefined>;
|
|
95
|
+
}, undefined>;
|
|
96
|
+
}, undefined>;
|
|
97
|
+
readonly '5xx': v.ObjectSchema<{
|
|
98
|
+
readonly error: v.ObjectSchema<{
|
|
99
|
+
readonly code: v.StringSchema<undefined>;
|
|
100
|
+
readonly message: v.StringSchema<undefined>;
|
|
101
|
+
readonly details: v.OptionalSchema<v.UnknownSchema, undefined>;
|
|
102
|
+
readonly issues: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
103
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
104
|
+
readonly message: v.StringSchema<undefined>;
|
|
105
|
+
}, undefined>, undefined>, undefined>;
|
|
106
|
+
}, undefined>;
|
|
107
|
+
}, undefined>;
|
|
108
|
+
readonly 200: v.ObjectSchema<{
|
|
109
|
+
readonly status: v.PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
110
|
+
readonly seamSummary: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
111
|
+
readonly forks: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
112
|
+
readonly id: v.StringSchema<undefined>;
|
|
113
|
+
readonly title: v.StringSchema<undefined>;
|
|
114
|
+
readonly summary: v.StringSchema<undefined>;
|
|
115
|
+
readonly approach: v.StringSchema<undefined>;
|
|
116
|
+
readonly tradeoffs: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
117
|
+
readonly riskNotes: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
118
|
+
readonly recommended: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
119
|
+
}, undefined>, undefined>, readonly []>;
|
|
120
|
+
readonly singlePathReason: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
121
|
+
readonly chat: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
122
|
+
readonly id: v.StringSchema<undefined>;
|
|
123
|
+
readonly role: v.PicklistSchema<["human", "assistant"], undefined>;
|
|
124
|
+
readonly text: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 4000, undefined>]>;
|
|
125
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
126
|
+
}, undefined>, undefined>, readonly []>;
|
|
127
|
+
readonly maxChatTurns: v.OptionalSchema<v.NumberSchema<undefined>, 15>;
|
|
128
|
+
readonly chosen: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
129
|
+
readonly forkId: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
130
|
+
readonly custom: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
131
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
132
|
+
readonly at: v.NumberSchema<undefined>;
|
|
133
|
+
}, undefined>, v.CheckAction<{
|
|
134
|
+
forkId?: string | null | undefined;
|
|
135
|
+
custom?: string | null | undefined;
|
|
136
|
+
note?: string | null | undefined;
|
|
137
|
+
at: number;
|
|
138
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
139
|
+
readonly model: v.OptionalSchema<v.NullableSchema<v.StringSchema<undefined>, undefined>, undefined>;
|
|
140
|
+
}, undefined>;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
//# sourceMappingURL=forkDecision.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"forkDecision.d.ts","sourceRoot":"","sources":["../../src/routes/forkDecision.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAe5B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKlC,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAA"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { defineApiContract } from '@toad-contracts/valibot';
|
|
2
|
+
import * as v from 'valibot';
|
|
3
|
+
import { chooseForkSchema, forkDecisionStepStateSchema } from '../forkDecision.js';
|
|
4
|
+
import { errorResponses, singleStringParam } from './_shared.js';
|
|
5
|
+
// ---------------------------------------------------------------------------
|
|
6
|
+
// Implementation-fork decision route contracts. Mounted under
|
|
7
|
+
// `/workspaces/:workspaceId`, so the paths here are relative to that prefix. The
|
|
8
|
+
// read returns the run's active fork-decision state (or null when no coder step
|
|
9
|
+
// carries one); `choose` records the human's pick and re-runs the Coder with it
|
|
10
|
+
// folded in. Chat is added in a later slice. See ForkDecisionController in
|
|
11
|
+
// @cat-factory/server.
|
|
12
|
+
// ---------------------------------------------------------------------------
|
|
13
|
+
const executionIdParams = singleStringParam('executionId');
|
|
14
|
+
export const getForkDecisionContract = defineApiContract({
|
|
15
|
+
method: 'get',
|
|
16
|
+
requestPathParamsSchema: executionIdParams,
|
|
17
|
+
pathResolver: ({ executionId }) => `/executions/${executionId}/fork-decision`,
|
|
18
|
+
responsesByStatusCode: { 200: v.nullable(forkDecisionStepStateSchema), ...errorResponses },
|
|
19
|
+
});
|
|
20
|
+
export const chooseForkContract = defineApiContract({
|
|
21
|
+
method: 'post',
|
|
22
|
+
requestPathParamsSchema: executionIdParams,
|
|
23
|
+
pathResolver: ({ executionId }) => `/executions/${executionId}/fork-decision/choose`,
|
|
24
|
+
requestBodySchema: chooseForkSchema,
|
|
25
|
+
responsesByStatusCode: { 200: forkDecisionStepStateSchema, ...errorResponses },
|
|
26
|
+
});
|
|
27
|
+
//# sourceMappingURL=forkDecision.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"forkDecision.js","sourceRoot":"","sources":["../../src/routes/forkDecision.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAC5B,OAAO,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,MAAM,oBAAoB,CAAA;AAClF,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAEhE,8EAA8E;AAC9E,8DAA8D;AAC9D,iFAAiF;AACjF,gFAAgF;AAChF,gFAAgF;AAChF,2EAA2E;AAC3E,uBAAuB;AACvB,8EAA8E;AAE9E,MAAM,iBAAiB,GAAG,iBAAiB,CAAC,aAAa,CAAC,CAAA;AAE1D,MAAM,CAAC,MAAM,uBAAuB,GAAG,iBAAiB,CAAC;IACvD,MAAM,EAAE,KAAK;IACb,uBAAuB,EAAE,iBAAiB;IAC1C,YAAY,EAAE,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE,CAAC,eAAe,WAAW,gBAAgB;IAC7E,qBAAqB,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC,EAAE,GAAG,cAAc,EAAE;CAC3F,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,iBAAiB,CAAC;IAClD,MAAM,EAAE,MAAM;IACd,uBAAuB,EAAE,iBAAiB;IAC1C,YAAY,EAAE,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE,CAAC,eAAe,WAAW,uBAAuB;IACpF,iBAAiB,EAAE,gBAAgB;IACnC,qBAAqB,EAAE,EAAE,GAAG,EAAE,2BAA2B,EAAE,GAAG,cAAc,EAAE;CAC/E,CAAC,CAAA"}
|
|
@@ -357,6 +357,42 @@ export declare const requestHumanReviewFixContract: {
|
|
|
357
357
|
readonly loops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 0>;
|
|
358
358
|
readonly maxLoops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 3>;
|
|
359
359
|
}, undefined>, undefined>, undefined>;
|
|
360
|
+
readonly forkDecision: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
361
|
+
readonly status: import("valibot").PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
362
|
+
readonly seamSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
363
|
+
readonly forks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
364
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
365
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
366
|
+
readonly summary: import("valibot").StringSchema<undefined>;
|
|
367
|
+
readonly approach: import("valibot").StringSchema<undefined>;
|
|
368
|
+
readonly tradeoffs: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
369
|
+
readonly riskNotes: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
370
|
+
readonly recommended: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
371
|
+
}, undefined>, undefined>, readonly []>;
|
|
372
|
+
readonly singlePathReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
373
|
+
readonly chat: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
374
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
375
|
+
readonly role: import("valibot").PicklistSchema<["human", "assistant"], undefined>;
|
|
376
|
+
readonly text: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>;
|
|
377
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
378
|
+
}, undefined>, undefined>, readonly []>;
|
|
379
|
+
readonly maxChatTurns: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 15>;
|
|
380
|
+
readonly chosen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
381
|
+
readonly forkId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
382
|
+
readonly custom: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
383
|
+
readonly note: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
384
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
385
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
386
|
+
forkId?: string | null | undefined;
|
|
387
|
+
custom?: string | null | undefined;
|
|
388
|
+
note?: string | null | undefined;
|
|
389
|
+
at: number;
|
|
390
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
391
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
392
|
+
}, undefined>, undefined>, undefined>;
|
|
393
|
+
readonly pendingForkChat: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
394
|
+
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
395
|
+
}, undefined>, undefined>, undefined>;
|
|
360
396
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
361
397
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
362
398
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"human-review.d.ts","sourceRoot":"","sources":["../../src/routes/human-review.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA"}
|
|
@@ -356,6 +356,42 @@ export declare const confirmHumanTestContract: {
|
|
|
356
356
|
readonly loops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 0>;
|
|
357
357
|
readonly maxLoops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 3>;
|
|
358
358
|
}, undefined>, undefined>, undefined>;
|
|
359
|
+
readonly forkDecision: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
360
|
+
readonly status: import("valibot").PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
361
|
+
readonly seamSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
362
|
+
readonly forks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
363
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
364
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
365
|
+
readonly summary: import("valibot").StringSchema<undefined>;
|
|
366
|
+
readonly approach: import("valibot").StringSchema<undefined>;
|
|
367
|
+
readonly tradeoffs: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
368
|
+
readonly riskNotes: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
369
|
+
readonly recommended: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
370
|
+
}, undefined>, undefined>, readonly []>;
|
|
371
|
+
readonly singlePathReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
372
|
+
readonly chat: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
373
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
374
|
+
readonly role: import("valibot").PicklistSchema<["human", "assistant"], undefined>;
|
|
375
|
+
readonly text: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>;
|
|
376
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
377
|
+
}, undefined>, undefined>, readonly []>;
|
|
378
|
+
readonly maxChatTurns: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 15>;
|
|
379
|
+
readonly chosen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
380
|
+
readonly forkId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
381
|
+
readonly custom: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
382
|
+
readonly note: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
383
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
384
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
385
|
+
forkId?: string | null | undefined;
|
|
386
|
+
custom?: string | null | undefined;
|
|
387
|
+
note?: string | null | undefined;
|
|
388
|
+
at: number;
|
|
389
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
390
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
391
|
+
}, undefined>, undefined>, undefined>;
|
|
392
|
+
readonly pendingForkChat: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
393
|
+
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
394
|
+
}, undefined>, undefined>, undefined>;
|
|
359
395
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
360
396
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
361
397
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -1065,6 +1101,42 @@ export declare const requestHumanTestFixContract: {
|
|
|
1065
1101
|
readonly loops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 0>;
|
|
1066
1102
|
readonly maxLoops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 3>;
|
|
1067
1103
|
}, undefined>, undefined>, undefined>;
|
|
1104
|
+
readonly forkDecision: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1105
|
+
readonly status: import("valibot").PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
1106
|
+
readonly seamSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1107
|
+
readonly forks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1108
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
1109
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
1110
|
+
readonly summary: import("valibot").StringSchema<undefined>;
|
|
1111
|
+
readonly approach: import("valibot").StringSchema<undefined>;
|
|
1112
|
+
readonly tradeoffs: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1113
|
+
readonly riskNotes: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1114
|
+
readonly recommended: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1115
|
+
}, undefined>, undefined>, readonly []>;
|
|
1116
|
+
readonly singlePathReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1117
|
+
readonly chat: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1118
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
1119
|
+
readonly role: import("valibot").PicklistSchema<["human", "assistant"], undefined>;
|
|
1120
|
+
readonly text: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>;
|
|
1121
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
1122
|
+
}, undefined>, undefined>, readonly []>;
|
|
1123
|
+
readonly maxChatTurns: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 15>;
|
|
1124
|
+
readonly chosen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1125
|
+
readonly forkId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1126
|
+
readonly custom: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1127
|
+
readonly note: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1128
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
1129
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1130
|
+
forkId?: string | null | undefined;
|
|
1131
|
+
custom?: string | null | undefined;
|
|
1132
|
+
note?: string | null | undefined;
|
|
1133
|
+
at: number;
|
|
1134
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
1135
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1136
|
+
}, undefined>, undefined>, undefined>;
|
|
1137
|
+
readonly pendingForkChat: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1138
|
+
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
1139
|
+
}, undefined>, undefined>, undefined>;
|
|
1068
1140
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1069
1141
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
1070
1142
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -1772,6 +1844,42 @@ export declare const pullMainHumanTestContract: {
|
|
|
1772
1844
|
readonly loops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 0>;
|
|
1773
1845
|
readonly maxLoops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 3>;
|
|
1774
1846
|
}, undefined>, undefined>, undefined>;
|
|
1847
|
+
readonly forkDecision: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1848
|
+
readonly status: import("valibot").PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
1849
|
+
readonly seamSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1850
|
+
readonly forks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1851
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
1852
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
1853
|
+
readonly summary: import("valibot").StringSchema<undefined>;
|
|
1854
|
+
readonly approach: import("valibot").StringSchema<undefined>;
|
|
1855
|
+
readonly tradeoffs: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
1856
|
+
readonly riskNotes: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1857
|
+
readonly recommended: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
1858
|
+
}, undefined>, undefined>, readonly []>;
|
|
1859
|
+
readonly singlePathReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1860
|
+
readonly chat: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
1861
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
1862
|
+
readonly role: import("valibot").PicklistSchema<["human", "assistant"], undefined>;
|
|
1863
|
+
readonly text: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>;
|
|
1864
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
1865
|
+
}, undefined>, undefined>, readonly []>;
|
|
1866
|
+
readonly maxChatTurns: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 15>;
|
|
1867
|
+
readonly chosen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
1868
|
+
readonly forkId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1869
|
+
readonly custom: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1870
|
+
readonly note: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1871
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
1872
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
1873
|
+
forkId?: string | null | undefined;
|
|
1874
|
+
custom?: string | null | undefined;
|
|
1875
|
+
note?: string | null | undefined;
|
|
1876
|
+
at: number;
|
|
1877
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
1878
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
1879
|
+
}, undefined>, undefined>, undefined>;
|
|
1880
|
+
readonly pendingForkChat: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1881
|
+
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
1882
|
+
}, undefined>, undefined>, undefined>;
|
|
1775
1883
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
1776
1884
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
1777
1885
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -2479,6 +2587,42 @@ export declare const recreateHumanTestEnvContract: {
|
|
|
2479
2587
|
readonly loops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 0>;
|
|
2480
2588
|
readonly maxLoops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 3>;
|
|
2481
2589
|
}, undefined>, undefined>, undefined>;
|
|
2590
|
+
readonly forkDecision: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2591
|
+
readonly status: import("valibot").PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
2592
|
+
readonly seamSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2593
|
+
readonly forks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2594
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
2595
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
2596
|
+
readonly summary: import("valibot").StringSchema<undefined>;
|
|
2597
|
+
readonly approach: import("valibot").StringSchema<undefined>;
|
|
2598
|
+
readonly tradeoffs: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
2599
|
+
readonly riskNotes: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2600
|
+
readonly recommended: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
2601
|
+
}, undefined>, undefined>, readonly []>;
|
|
2602
|
+
readonly singlePathReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2603
|
+
readonly chat: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
2604
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
2605
|
+
readonly role: import("valibot").PicklistSchema<["human", "assistant"], undefined>;
|
|
2606
|
+
readonly text: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>;
|
|
2607
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
2608
|
+
}, undefined>, undefined>, readonly []>;
|
|
2609
|
+
readonly maxChatTurns: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 15>;
|
|
2610
|
+
readonly chosen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
2611
|
+
readonly forkId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2612
|
+
readonly custom: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2613
|
+
readonly note: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2614
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
2615
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
2616
|
+
forkId?: string | null | undefined;
|
|
2617
|
+
custom?: string | null | undefined;
|
|
2618
|
+
note?: string | null | undefined;
|
|
2619
|
+
at: number;
|
|
2620
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
2621
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
2622
|
+
}, undefined>, undefined>, undefined>;
|
|
2623
|
+
readonly pendingForkChat: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2624
|
+
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
2625
|
+
}, undefined>, undefined>, undefined>;
|
|
2482
2626
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
2483
2627
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
2484
2628
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -3186,6 +3330,42 @@ export declare const destroyHumanTestEnvContract: {
|
|
|
3186
3330
|
readonly loops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 0>;
|
|
3187
3331
|
readonly maxLoops: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 3>;
|
|
3188
3332
|
}, undefined>, undefined>, undefined>;
|
|
3333
|
+
readonly forkDecision: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3334
|
+
readonly status: import("valibot").PicklistSchema<["proposing", "awaiting_choice", "answering", "chosen", "single_path", "skipped"], undefined>;
|
|
3335
|
+
readonly seamSummary: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3336
|
+
readonly forks: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
3337
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
3338
|
+
readonly title: import("valibot").StringSchema<undefined>;
|
|
3339
|
+
readonly summary: import("valibot").StringSchema<undefined>;
|
|
3340
|
+
readonly approach: import("valibot").StringSchema<undefined>;
|
|
3341
|
+
readonly tradeoffs: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
3342
|
+
readonly riskNotes: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3343
|
+
readonly recommended: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
3344
|
+
}, undefined>, undefined>, readonly []>;
|
|
3345
|
+
readonly singlePathReason: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3346
|
+
readonly chat: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
3347
|
+
readonly id: import("valibot").StringSchema<undefined>;
|
|
3348
|
+
readonly role: import("valibot").PicklistSchema<["human", "assistant"], undefined>;
|
|
3349
|
+
readonly text: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 4000, undefined>]>;
|
|
3350
|
+
readonly createdAt: import("valibot").NumberSchema<undefined>;
|
|
3351
|
+
}, undefined>, undefined>, readonly []>;
|
|
3352
|
+
readonly maxChatTurns: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, 15>;
|
|
3353
|
+
readonly chosen: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ObjectSchema<{
|
|
3354
|
+
readonly forkId: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3355
|
+
readonly custom: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3356
|
+
readonly note: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3357
|
+
readonly at: import("valibot").NumberSchema<undefined>;
|
|
3358
|
+
}, undefined>, import("valibot").CheckAction<{
|
|
3359
|
+
forkId?: string | null | undefined;
|
|
3360
|
+
custom?: string | null | undefined;
|
|
3361
|
+
note?: string | null | undefined;
|
|
3362
|
+
at: number;
|
|
3363
|
+
}, "Provide exactly one of forkId or custom.">]>, undefined>, undefined>;
|
|
3364
|
+
readonly model: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
|
|
3365
|
+
}, undefined>, undefined>, undefined>;
|
|
3366
|
+
readonly pendingForkChat: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3367
|
+
readonly messageId: import("valibot").StringSchema<undefined>;
|
|
3368
|
+
}, undefined>, undefined>, undefined>;
|
|
3189
3369
|
readonly rework: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").ObjectSchema<{
|
|
3190
3370
|
readonly previousProposal: import("valibot").StringSchema<undefined>;
|
|
3191
3371
|
readonly feedback: import("valibot").StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"human-test.d.ts","sourceRoot":"","sources":["../../src/routes/human-test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAc3E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMnC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMpC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMvC,CAAA;AAEF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMtC,CAAA"}
|
package/dist/routes/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from './environmentUserHandlers.js';
|
|
|
14
14
|
export * from './execution.js';
|
|
15
15
|
export * from './doc-interview.js';
|
|
16
16
|
export * from './followUp.js';
|
|
17
|
+
export * from './forkDecision.js';
|
|
17
18
|
export * from './fragment-library.js';
|
|
18
19
|
export * from './github.js';
|
|
19
20
|
export * from './human-review.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA;AAClC,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAGA,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA;AAClC,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
package/dist/routes/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export * from './environmentUserHandlers.js';
|
|
|
17
17
|
export * from './execution.js';
|
|
18
18
|
export * from './doc-interview.js';
|
|
19
19
|
export * from './followUp.js';
|
|
20
|
+
export * from './forkDecision.js';
|
|
20
21
|
export * from './fragment-library.js';
|
|
21
22
|
export * from './github.js';
|
|
22
23
|
export * from './human-review.js';
|
package/dist/routes/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA;AAClC,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,+EAA+E;AAC/E,oDAAoD;AACpD,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,mBAAmB,CAAA;AACjC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,oBAAoB,CAAA;AAClC,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,uBAAuB,CAAA;AACrC,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,0BAA0B,CAAA;AACxC,cAAc,aAAa,CAAA;AAC3B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,yBAAyB,CAAA;AACvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,iBAAiB,CAAA"}
|