markform 0.1.16 → 0.1.18
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/LICENSE +369 -0
- package/README.md +154 -214
- package/dist/ai-sdk.d.mts +1 -1
- package/dist/ai-sdk.mjs +2 -2
- package/dist/{apply-CXsI5N9x.mjs → apply-BYgtU64w.mjs} +203 -16
- package/dist/apply-BYgtU64w.mjs.map +1 -0
- package/dist/bin.mjs +1 -1
- package/dist/{cli-BsFessUW.mjs → cli-D9w0Bp4J.mjs} +199 -13
- package/dist/cli-D9w0Bp4J.mjs.map +1 -0
- package/dist/cli.mjs +1 -1
- package/dist/{coreTypes-DE6Giau5.d.mts → coreTypes-BMEs8h_2.d.mts} +165 -2
- package/dist/{coreTypes-DiCddBKu.mjs → coreTypes-SDB3KRRJ.mjs} +9 -4
- package/dist/coreTypes-SDB3KRRJ.mjs.map +1 -0
- package/dist/index.d.mts +266 -2
- package/dist/index.mjs +5 -5
- package/dist/{session-B7aR6hno.mjs → session-CW9AQw6i.mjs} +1 -1
- package/dist/{session-XDrocA3j.mjs → session-Ci4B0Pna.mjs} +2 -2
- package/dist/{session-XDrocA3j.mjs.map → session-Ci4B0Pna.mjs.map} +1 -1
- package/dist/{src-Dv3IZSQU.mjs → src-DDxi-2ne.mjs} +966 -32
- package/dist/src-DDxi-2ne.mjs.map +1 -0
- package/docs/markform-apis.md +110 -0
- package/docs/markform-reference.md +58 -0
- package/docs/markform-spec.md +204 -9
- package/examples/movie-research/movie-deep-research-mock-filled.form.md +1 -1
- package/examples/movie-research/movie-deep-research.form.md +1 -1
- package/examples/parallel/parallel-research.form.md +57 -0
- package/examples/plan-document/plan-document-markdoc.form.md +35 -0
- package/examples/plan-document/plan-document-progress.form.md +47 -0
- package/examples/plan-document/plan-document.form.md +47 -0
- package/examples/startup-deep-research/startup-deep-research.form.md +1 -1
- package/package.json +2 -2
- package/dist/apply-CXsI5N9x.mjs.map +0 -1
- package/dist/cli-BsFessUW.mjs.map +0 -1
- package/dist/coreTypes-DiCddBKu.mjs.map +0 -1
- package/dist/src-Dv3IZSQU.mjs.map +0 -1
package/dist/cli.mjs
CHANGED
|
@@ -97,6 +97,12 @@ interface FieldBase {
|
|
|
97
97
|
placeholder?: string;
|
|
98
98
|
/** Example values (text-entry fields only) */
|
|
99
99
|
examples?: string[];
|
|
100
|
+
/** True for auto-generated implicit fields (e.g., 'checkboxes' for plan documents) */
|
|
101
|
+
implicit?: boolean;
|
|
102
|
+
/** Parallel batch identifier. Top-level fields only. */
|
|
103
|
+
parallel?: string;
|
|
104
|
+
/** Fill order. Lower values filled first. Default: 0. */
|
|
105
|
+
order?: number;
|
|
100
106
|
}
|
|
101
107
|
/** String field - single or multiline text */
|
|
102
108
|
interface StringField extends FieldBase {
|
|
@@ -198,6 +204,28 @@ interface FieldGroup {
|
|
|
198
204
|
* Implicit groups are serialized without group wrapper tags.
|
|
199
205
|
*/
|
|
200
206
|
implicit?: boolean;
|
|
207
|
+
/** Parallel batch identifier. */
|
|
208
|
+
parallel?: string;
|
|
209
|
+
/** Fill order. Lower values filled first. Default: 0. */
|
|
210
|
+
order?: number;
|
|
211
|
+
}
|
|
212
|
+
/** An item in an execution plan (a top-level field or group). */
|
|
213
|
+
interface ExecutionPlanItem {
|
|
214
|
+
itemId: Id;
|
|
215
|
+
itemType: 'field' | 'group';
|
|
216
|
+
order: number;
|
|
217
|
+
}
|
|
218
|
+
/** A parallel batch: items that can execute concurrently. */
|
|
219
|
+
interface ParallelBatch {
|
|
220
|
+
batchId: string;
|
|
221
|
+
items: ExecutionPlanItem[];
|
|
222
|
+
}
|
|
223
|
+
/** Execution plan: partitions form into loose-serial pool + parallel batches. */
|
|
224
|
+
interface ExecutionPlan {
|
|
225
|
+
looseSerial: ExecutionPlanItem[];
|
|
226
|
+
parallelBatches: ParallelBatch[];
|
|
227
|
+
/** Distinct order levels found in the form, sorted ascending. */
|
|
228
|
+
orderLevels: number[];
|
|
201
229
|
}
|
|
202
230
|
/** Form schema - root container with groups */
|
|
203
231
|
interface FormSchema {
|
|
@@ -302,6 +330,7 @@ interface FrontmatterHarnessConfig {
|
|
|
302
330
|
maxTurns?: number;
|
|
303
331
|
maxPatchesPerTurn?: number;
|
|
304
332
|
maxIssuesPerTurn?: number;
|
|
333
|
+
maxParallelAgents?: number;
|
|
305
334
|
}
|
|
306
335
|
/**
|
|
307
336
|
* Run mode for the form - determines how 'markform run' executes.
|
|
@@ -334,6 +363,34 @@ interface IdIndexEntry {
|
|
|
334
363
|
* - 'tags': Traditional Markdoc Jinja-style syntax (`{% tag %}`)
|
|
335
364
|
*/
|
|
336
365
|
type SyntaxStyle = 'comments' | 'tags';
|
|
366
|
+
/**
|
|
367
|
+
* Tag types that can appear in Markform documents for position tracking.
|
|
368
|
+
* - 'form': The root form tag
|
|
369
|
+
* - 'group': Field group tags
|
|
370
|
+
* - 'field': Individual field tags (may include value fence)
|
|
371
|
+
* - 'note': Inline note tags (`{% note %}`)
|
|
372
|
+
* - 'documentation': Documentation block tags (instructions, description, etc.)
|
|
373
|
+
*/
|
|
374
|
+
type TagType = 'form' | 'group' | 'field' | 'note' | 'documentation';
|
|
375
|
+
/**
|
|
376
|
+
* Position of a Markform tag region in the source document.
|
|
377
|
+
* Used for splice-based serialization to preserve content outside tags.
|
|
378
|
+
*/
|
|
379
|
+
interface TagRegion {
|
|
380
|
+
/** ID of the element (form, group, field ID, or note ID) */
|
|
381
|
+
tagId: Id;
|
|
382
|
+
/** Type of Markform tag */
|
|
383
|
+
tagType: TagType;
|
|
384
|
+
/** Start position in rawSource (inclusive, byte offset) */
|
|
385
|
+
startOffset: number;
|
|
386
|
+
/** End position in rawSource (exclusive, byte offset) */
|
|
387
|
+
endOffset: number;
|
|
388
|
+
/**
|
|
389
|
+
* For field tags: whether region includes value fence.
|
|
390
|
+
* True if field has a value block between open/close tags.
|
|
391
|
+
*/
|
|
392
|
+
includesValue?: boolean;
|
|
393
|
+
}
|
|
337
394
|
/** Canonical internal representation returned by parseForm() */
|
|
338
395
|
interface ParsedForm {
|
|
339
396
|
schema: FormSchema;
|
|
@@ -345,6 +402,16 @@ interface ParsedForm {
|
|
|
345
402
|
metadata?: FormMetadata;
|
|
346
403
|
/** The syntax style detected in the original document (for round-trip serialization) */
|
|
347
404
|
syntaxStyle?: SyntaxStyle;
|
|
405
|
+
/**
|
|
406
|
+
* Original markdown source (post-frontmatter, post-preprocessing for comment syntax).
|
|
407
|
+
* Used for splice-based serialization to preserve content outside Markform tags.
|
|
408
|
+
*/
|
|
409
|
+
rawSource?: string;
|
|
410
|
+
/**
|
|
411
|
+
* Positions of all Markform tags in rawSource.
|
|
412
|
+
* Sorted by startOffset in document order.
|
|
413
|
+
*/
|
|
414
|
+
tagRegions?: TagRegion[];
|
|
348
415
|
}
|
|
349
416
|
/** Validation issue severity */
|
|
350
417
|
type Severity = 'error' | 'warning' | 'info';
|
|
@@ -637,6 +704,8 @@ interface HarnessConfig {
|
|
|
637
704
|
targetRoles?: string[];
|
|
638
705
|
/** Fill mode: 'continue' (skip filled) or 'overwrite' (re-fill) */
|
|
639
706
|
fillMode?: FillMode;
|
|
707
|
+
/** Max concurrent agents for parallel batches (default: 4) */
|
|
708
|
+
maxParallelAgents?: number;
|
|
640
709
|
}
|
|
641
710
|
/** LLM stats for a turn (from live agent) */
|
|
642
711
|
interface SessionTurnStats {
|
|
@@ -946,6 +1015,8 @@ declare const StringFieldSchema: z.ZodObject<{
|
|
|
946
1015
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
947
1016
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
948
1017
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1018
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1019
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
949
1020
|
}, z.core.$strip>;
|
|
950
1021
|
declare const NumberFieldSchema: z.ZodObject<{
|
|
951
1022
|
kind: z.ZodLiteral<"number">;
|
|
@@ -967,6 +1038,8 @@ declare const NumberFieldSchema: z.ZodObject<{
|
|
|
967
1038
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
968
1039
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
969
1040
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1041
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
970
1043
|
}, z.core.$strip>;
|
|
971
1044
|
declare const StringListFieldSchema: z.ZodObject<{
|
|
972
1045
|
kind: z.ZodLiteral<"string_list">;
|
|
@@ -990,6 +1063,8 @@ declare const StringListFieldSchema: z.ZodObject<{
|
|
|
990
1063
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
991
1064
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
992
1065
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1066
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1067
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
993
1068
|
}, z.core.$strip>;
|
|
994
1069
|
declare const CheckboxesFieldSchema: z.ZodObject<{
|
|
995
1070
|
kind: z.ZodLiteral<"checkboxes">;
|
|
@@ -1022,6 +1097,8 @@ declare const CheckboxesFieldSchema: z.ZodObject<{
|
|
|
1022
1097
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1023
1098
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1024
1099
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1100
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1101
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1025
1102
|
}, z.core.$strip>;
|
|
1026
1103
|
declare const SingleSelectFieldSchema: z.ZodObject<{
|
|
1027
1104
|
kind: z.ZodLiteral<"single_select">;
|
|
@@ -1044,6 +1121,8 @@ declare const SingleSelectFieldSchema: z.ZodObject<{
|
|
|
1044
1121
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1045
1122
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1046
1123
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1124
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1125
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1047
1126
|
}, z.core.$strip>;
|
|
1048
1127
|
declare const MultiSelectFieldSchema: z.ZodObject<{
|
|
1049
1128
|
kind: z.ZodLiteral<"multi_select">;
|
|
@@ -1068,6 +1147,8 @@ declare const MultiSelectFieldSchema: z.ZodObject<{
|
|
|
1068
1147
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1069
1148
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1070
1149
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1150
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1071
1152
|
}, z.core.$strip>;
|
|
1072
1153
|
declare const UrlFieldSchema: z.ZodObject<{
|
|
1073
1154
|
kind: z.ZodLiteral<"url">;
|
|
@@ -1086,6 +1167,8 @@ declare const UrlFieldSchema: z.ZodObject<{
|
|
|
1086
1167
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1087
1168
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1088
1169
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1170
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1171
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1089
1172
|
}, z.core.$strip>;
|
|
1090
1173
|
declare const UrlListFieldSchema: z.ZodObject<{
|
|
1091
1174
|
kind: z.ZodLiteral<"url_list">;
|
|
@@ -1107,6 +1190,8 @@ declare const UrlListFieldSchema: z.ZodObject<{
|
|
|
1107
1190
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1108
1191
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1109
1192
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1193
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1194
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1110
1195
|
}, z.core.$strip>;
|
|
1111
1196
|
declare const DateFieldSchema: z.ZodObject<{
|
|
1112
1197
|
kind: z.ZodLiteral<"date">;
|
|
@@ -1127,6 +1212,8 @@ declare const DateFieldSchema: z.ZodObject<{
|
|
|
1127
1212
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1128
1213
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1129
1214
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1215
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1216
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1130
1217
|
}, z.core.$strip>;
|
|
1131
1218
|
declare const YearFieldSchema: z.ZodObject<{
|
|
1132
1219
|
kind: z.ZodLiteral<"year">;
|
|
@@ -1147,6 +1234,8 @@ declare const YearFieldSchema: z.ZodObject<{
|
|
|
1147
1234
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1148
1235
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1149
1236
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1237
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1238
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1150
1239
|
}, z.core.$strip>;
|
|
1151
1240
|
/** Table field schema (extends FieldBase pattern) */
|
|
1152
1241
|
declare const TableFieldSchema: z.ZodObject<{
|
|
@@ -1180,6 +1269,8 @@ declare const TableFieldSchema: z.ZodObject<{
|
|
|
1180
1269
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1181
1270
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1182
1271
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1272
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1183
1274
|
}, z.core.$strip>;
|
|
1184
1275
|
declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1185
1276
|
kind: z.ZodLiteral<"string">;
|
|
@@ -1202,6 +1293,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1202
1293
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1203
1294
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1204
1295
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1296
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1205
1298
|
}, z.core.$strip>, z.ZodObject<{
|
|
1206
1299
|
kind: z.ZodLiteral<"number">;
|
|
1207
1300
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1222,6 +1315,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1222
1315
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1223
1316
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1224
1317
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1318
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1319
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1225
1320
|
}, z.core.$strip>, z.ZodObject<{
|
|
1226
1321
|
kind: z.ZodLiteral<"string_list">;
|
|
1227
1322
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1244,6 +1339,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1244
1339
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1245
1340
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1246
1341
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1342
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1343
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1247
1344
|
}, z.core.$strip>, z.ZodObject<{
|
|
1248
1345
|
kind: z.ZodLiteral<"checkboxes">;
|
|
1249
1346
|
checkboxMode: z.ZodEnum<{
|
|
@@ -1275,6 +1372,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1275
1372
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1276
1373
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1277
1374
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1375
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1376
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1278
1377
|
}, z.core.$strip>, z.ZodObject<{
|
|
1279
1378
|
kind: z.ZodLiteral<"single_select">;
|
|
1280
1379
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1296,6 +1395,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1296
1395
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1297
1396
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1298
1397
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1398
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1399
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1299
1400
|
}, z.core.$strip>, z.ZodObject<{
|
|
1300
1401
|
kind: z.ZodLiteral<"multi_select">;
|
|
1301
1402
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1319,6 +1420,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1319
1420
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1320
1421
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1321
1422
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1423
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1424
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1322
1425
|
}, z.core.$strip>, z.ZodObject<{
|
|
1323
1426
|
kind: z.ZodLiteral<"url">;
|
|
1324
1427
|
id: z.ZodString;
|
|
@@ -1336,6 +1439,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1336
1439
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1337
1440
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1338
1441
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1442
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1443
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1339
1444
|
}, z.core.$strip>, z.ZodObject<{
|
|
1340
1445
|
kind: z.ZodLiteral<"url_list">;
|
|
1341
1446
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1356,6 +1461,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1356
1461
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1357
1462
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1358
1463
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1464
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1465
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1359
1466
|
}, z.core.$strip>, z.ZodObject<{
|
|
1360
1467
|
kind: z.ZodLiteral<"date">;
|
|
1361
1468
|
min: z.ZodOptional<z.ZodString>;
|
|
@@ -1375,6 +1482,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1375
1482
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1376
1483
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1377
1484
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1485
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1486
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1378
1487
|
}, z.core.$strip>, z.ZodObject<{
|
|
1379
1488
|
kind: z.ZodLiteral<"year">;
|
|
1380
1489
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1394,6 +1503,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1394
1503
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1395
1504
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1396
1505
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1506
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1507
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1397
1508
|
}, z.core.$strip>, z.ZodObject<{
|
|
1398
1509
|
kind: z.ZodLiteral<"table">;
|
|
1399
1510
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1425,6 +1536,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1425
1536
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1426
1537
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1427
1538
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1539
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1428
1541
|
}, z.core.$strip>], "kind">;
|
|
1429
1542
|
declare const FieldGroupSchema: z.ZodObject<{
|
|
1430
1543
|
id: z.ZodString;
|
|
@@ -1453,6 +1566,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1453
1566
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1454
1567
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1455
1568
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1569
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1570
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1456
1571
|
}, z.core.$strip>, z.ZodObject<{
|
|
1457
1572
|
kind: z.ZodLiteral<"number">;
|
|
1458
1573
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1473,6 +1588,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1473
1588
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1474
1589
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1475
1590
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1591
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1592
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1476
1593
|
}, z.core.$strip>, z.ZodObject<{
|
|
1477
1594
|
kind: z.ZodLiteral<"string_list">;
|
|
1478
1595
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1495,6 +1612,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1495
1612
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1496
1613
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1497
1614
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1615
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1616
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1498
1617
|
}, z.core.$strip>, z.ZodObject<{
|
|
1499
1618
|
kind: z.ZodLiteral<"checkboxes">;
|
|
1500
1619
|
checkboxMode: z.ZodEnum<{
|
|
@@ -1526,6 +1645,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1526
1645
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1527
1646
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1528
1647
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1648
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1649
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1529
1650
|
}, z.core.$strip>, z.ZodObject<{
|
|
1530
1651
|
kind: z.ZodLiteral<"single_select">;
|
|
1531
1652
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1547,6 +1668,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1547
1668
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1548
1669
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1549
1670
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1671
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1672
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1550
1673
|
}, z.core.$strip>, z.ZodObject<{
|
|
1551
1674
|
kind: z.ZodLiteral<"multi_select">;
|
|
1552
1675
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1570,6 +1693,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1570
1693
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1571
1694
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1572
1695
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1696
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1573
1698
|
}, z.core.$strip>, z.ZodObject<{
|
|
1574
1699
|
kind: z.ZodLiteral<"url">;
|
|
1575
1700
|
id: z.ZodString;
|
|
@@ -1587,6 +1712,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1587
1712
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1588
1713
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1589
1714
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1715
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1716
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1590
1717
|
}, z.core.$strip>, z.ZodObject<{
|
|
1591
1718
|
kind: z.ZodLiteral<"url_list">;
|
|
1592
1719
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1607,6 +1734,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1607
1734
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1608
1735
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1609
1736
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1737
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1738
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1610
1739
|
}, z.core.$strip>, z.ZodObject<{
|
|
1611
1740
|
kind: z.ZodLiteral<"date">;
|
|
1612
1741
|
min: z.ZodOptional<z.ZodString>;
|
|
@@ -1626,6 +1755,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1626
1755
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1627
1756
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1628
1757
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1758
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1759
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1629
1760
|
}, z.core.$strip>, z.ZodObject<{
|
|
1630
1761
|
kind: z.ZodLiteral<"year">;
|
|
1631
1762
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1645,6 +1776,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1645
1776
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1646
1777
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1647
1778
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1779
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1780
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1648
1781
|
}, z.core.$strip>, z.ZodObject<{
|
|
1649
1782
|
kind: z.ZodLiteral<"table">;
|
|
1650
1783
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1676,7 +1809,11 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1676
1809
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1677
1810
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1678
1811
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1812
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1813
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1679
1814
|
}, z.core.$strip>], "kind">>;
|
|
1815
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1816
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1680
1817
|
}, z.core.$strip>;
|
|
1681
1818
|
declare const FormSchemaSchema: z.ZodObject<{
|
|
1682
1819
|
id: z.ZodString;
|
|
@@ -1708,6 +1845,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1708
1845
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1709
1846
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1710
1847
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1848
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1711
1850
|
}, z.core.$strip>, z.ZodObject<{
|
|
1712
1851
|
kind: z.ZodLiteral<"number">;
|
|
1713
1852
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1728,6 +1867,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1728
1867
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1729
1868
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1730
1869
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1870
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1871
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1731
1872
|
}, z.core.$strip>, z.ZodObject<{
|
|
1732
1873
|
kind: z.ZodLiteral<"string_list">;
|
|
1733
1874
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1750,6 +1891,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1750
1891
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1751
1892
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1752
1893
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1894
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1895
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1753
1896
|
}, z.core.$strip>, z.ZodObject<{
|
|
1754
1897
|
kind: z.ZodLiteral<"checkboxes">;
|
|
1755
1898
|
checkboxMode: z.ZodEnum<{
|
|
@@ -1781,6 +1924,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1781
1924
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1782
1925
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1783
1926
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1927
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1928
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1784
1929
|
}, z.core.$strip>, z.ZodObject<{
|
|
1785
1930
|
kind: z.ZodLiteral<"single_select">;
|
|
1786
1931
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1802,6 +1947,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1802
1947
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1803
1948
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1804
1949
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1950
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1951
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1805
1952
|
}, z.core.$strip>, z.ZodObject<{
|
|
1806
1953
|
kind: z.ZodLiteral<"multi_select">;
|
|
1807
1954
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1825,6 +1972,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1825
1972
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1826
1973
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1827
1974
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1975
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1828
1977
|
}, z.core.$strip>, z.ZodObject<{
|
|
1829
1978
|
kind: z.ZodLiteral<"url">;
|
|
1830
1979
|
id: z.ZodString;
|
|
@@ -1842,6 +1991,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1842
1991
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1843
1992
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1844
1993
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1994
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1845
1996
|
}, z.core.$strip>, z.ZodObject<{
|
|
1846
1997
|
kind: z.ZodLiteral<"url_list">;
|
|
1847
1998
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1862,6 +2013,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1862
2013
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1863
2014
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1864
2015
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2016
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2017
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1865
2018
|
}, z.core.$strip>, z.ZodObject<{
|
|
1866
2019
|
kind: z.ZodLiteral<"date">;
|
|
1867
2020
|
min: z.ZodOptional<z.ZodString>;
|
|
@@ -1881,6 +2034,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1881
2034
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1882
2035
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1883
2036
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2037
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2038
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1884
2039
|
}, z.core.$strip>, z.ZodObject<{
|
|
1885
2040
|
kind: z.ZodLiteral<"year">;
|
|
1886
2041
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1900,6 +2055,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1900
2055
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1901
2056
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1902
2057
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2058
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1903
2060
|
}, z.core.$strip>, z.ZodObject<{
|
|
1904
2061
|
kind: z.ZodLiteral<"table">;
|
|
1905
2062
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1931,7 +2088,11 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1931
2088
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1932
2089
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1933
2090
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2091
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1934
2093
|
}, z.core.$strip>], "kind">>;
|
|
2094
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2095
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1935
2096
|
}, z.core.$strip>>;
|
|
1936
2097
|
}, z.core.$strip>;
|
|
1937
2098
|
declare const StringValueSchema: z.ZodObject<{
|
|
@@ -3034,6 +3195,7 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
3034
3195
|
continue: "continue";
|
|
3035
3196
|
overwrite: "overwrite";
|
|
3036
3197
|
}>>;
|
|
3198
|
+
maxParallelAgents: z.ZodOptional<z.ZodNumber>;
|
|
3037
3199
|
}, z.core.$strip>;
|
|
3038
3200
|
declare const WireToolCallSchema: z.ZodObject<{
|
|
3039
3201
|
toolName: z.ZodString;
|
|
@@ -3311,6 +3473,7 @@ declare const SessionTranscriptSchema: z.ZodObject<{
|
|
|
3311
3473
|
continue: "continue";
|
|
3312
3474
|
overwrite: "overwrite";
|
|
3313
3475
|
}>>;
|
|
3476
|
+
maxParallelAgents: z.ZodOptional<z.ZodNumber>;
|
|
3314
3477
|
}, z.core.$strip>;
|
|
3315
3478
|
turns: z.ZodArray<z.ZodObject<{
|
|
3316
3479
|
turn: z.ZodNumber;
|
|
@@ -3601,5 +3764,5 @@ declare const MarkformFrontmatterSchema: z.ZodObject<{
|
|
|
3601
3764
|
}>;
|
|
3602
3765
|
}, z.core.$strip>;
|
|
3603
3766
|
//#endregion
|
|
3604
|
-
export {
|
|
3605
|
-
//# sourceMappingURL=coreTypes-
|
|
3767
|
+
export { HarnessConfigSchema as $, TableValueSchema as $n, SetDatePatch as $t, ExecutionPlan as A, SourceRangeSchema as An, YearValueSchema as Ar, Patch as At, FieldPriorityLevel as B, StringValueSchema as Bn, QualifiedOptionRef as Bt, DateFieldSchema as C, SingleSelectField as Cn, WireToolCall as Cr, NumberValue as Ct, DocumentationBlockSchema as D, SourcePosition as Dn, YearField as Dr, OptionIdSchema as Dt, DocumentationBlock as E, SingleSelectValueSchema as En, WireToolResultSchema as Er, OptionId as Et, FieldBase as F, StringListField as Fn, ProgressState as Ft, FieldSchema as G, TableColumnSchema as Gn, SessionTranscript as Gt, FieldProgressSchema as H, StructureSummarySchema as Hn, RunModeSchema as Ht, FieldGroup as I, StringListFieldSchema as In, ProgressStateSchema as It, FillMode as J, TableRowPatch as Jn, SessionTurnContext as Jt, FieldValue as K, TableField as Kn, SessionTranscriptSchema as Kt, FieldGroupSchema as L, StringListValue as Ln, ProgressSummary as Lt, ExplicitCheckboxValue as M, StepResultSchema as Mn, PatchSchema as Mt, ExplicitCheckboxValueSchema as N, StringField as Nn, ProgressCounts as Nt, DocumentationTag as O, SourcePositionSchema as On, YearFieldSchema as Or, OptionSchema as Ot, Field as P, StringFieldSchema as Pn, ProgressCountsSchema as Pt, HarnessConfig as Q, TableValue as Qn, SetCheckboxesPatchSchema as Qt, FieldKind as R, StringListValueSchema as Rn, ProgressSummarySchema as Rt, DateField as S, SimpleCheckboxStateSchema as Sn, WireResponseStepSchema as Sr, NumberFieldSchema as St, DateValueSchema as T, SingleSelectValue as Tn, WireToolResult as Tr, Option as Tt, FieldResponse as U, SyntaxStyle as Un, SessionFinal as Ut, FieldProgress as V, StructureSummary as Vn, RunMode as Vt, FieldResponseSchema as W, TableColumn as Wn, SessionFinalSchema as Wt, FormSchemaSchema as X, TableRowResponse as Xn, SessionTurnStats as Xt, FormSchema as Y, TableRowPatchSchema as Yn, SessionTurnSchema as Yt, FrontmatterHarnessConfig as Z, TableRowResponseSchema as Zn, SetCheckboxesPatch as Zt, CheckboxesValueSchema as _, SetYearPatch as _n, WireRequestFormat as _r, MultiSelectValue as _t, ApprovalMode as a, SetSingleSelectPatch as an, UrlListValueSchema as ar, InspectResult as at, ColumnTypeName as b, SeveritySchema as bn, WireResponseFormatSchema as br, Note as bt, CheckboxMode as c, SetStringListPatchSchema as cn, ValidationIssue as cr, IssueReasonSchema as ct, CheckboxProgressCountsSchema as d, SetTablePatch as dn, ValidatorFn as dr, MarkformFrontmatter as dt, SetDatePatchSchema as en, UrlField as er, Id as et, CheckboxValue as f, SetTablePatchSchema as fn, ValidatorRef as fr, MarkformFrontmatterSchema as ft, CheckboxesValue as g, SetUrlPatchSchema as gn, WireFormatSchema as gr, MultiSelectFieldSchema as gt, CheckboxesFieldSchema as h, SetUrlPatch as hn, WireFormat as hr, MultiSelectField as ht, ApplyResultSchema as i, SetNumberPatchSchema as in, UrlListValue as ir, InspectIssueSchema as it, ExecutionPlanItem as j, StepResult as jn, PatchRejection as jt, DocumentationTagSchema as k, SourceRange as kn, YearValue as kr, ParsedForm as kt, CheckboxModeSchema as l, SetStringPatch as ln, ValidationIssueSchema as lr, IssueScope as lt, CheckboxesField as m, SetUrlListPatchSchema as mn, ValidatorRegistry as mr, MultiCheckboxStateSchema as mt, AnswerStateSchema as n, SetMultiSelectPatchSchema as nn, UrlListField as nr, IdSchema as nt, CellResponse as o, SetSingleSelectPatchSchema as on, UrlValue as or, InspectResultSchema as ot, CheckboxValueSchema as p, SetUrlListPatch as pn, ValidatorRefSchema as pr, MultiCheckboxState as pt, FieldValueSchema as q, TableFieldSchema as qn, SessionTurn as qt, ApplyResult as r, SetNumberPatch as rn, UrlListFieldSchema as rr, InspectIssue as rt, CellResponseSchema as s, SetStringListPatch as sn, UrlValueSchema as sr, IssueReason as st, AnswerState as t, SetMultiSelectPatch as tn, UrlFieldSchema as tr, IdIndexEntry as tt, CheckboxProgressCounts as u, SetStringPatchSchema as un, ValidatorContext as ur, IssueScopeSchema as ut, ClearFieldPatch as v, SetYearPatchSchema as vn, WireRequestFormatSchema as vr, MultiSelectValueSchema as vt, DateValue as w, SingleSelectFieldSchema as wn, WireToolCallSchema as wr, NumberValueSchema as wt, ColumnTypeNameSchema as x, SimpleCheckboxState as xn, WireResponseStep as xr, NumberField as xt, ClearFieldPatchSchema as y, Severity as yn, WireResponseFormat as yr, NodeType as yt, FieldKindSchema as z, StringValue as zn, QualifiedColumnRef as zt };
|
|
3768
|
+
//# sourceMappingURL=coreTypes-BMEs8h_2.d.mts.map
|
|
@@ -122,7 +122,9 @@ const FieldBaseSchemaPartial = {
|
|
|
122
122
|
validate: z.array(ValidatorRefSchema).optional(),
|
|
123
123
|
report: z.boolean().optional(),
|
|
124
124
|
placeholder: z.string().optional(),
|
|
125
|
-
examples: z.array(z.string()).optional()
|
|
125
|
+
examples: z.array(z.string()).optional(),
|
|
126
|
+
parallel: z.string().optional(),
|
|
127
|
+
order: z.number().optional()
|
|
126
128
|
};
|
|
127
129
|
const StringFieldSchema = z.object({
|
|
128
130
|
...FieldBaseSchemaPartial,
|
|
@@ -216,7 +218,9 @@ const FieldGroupSchema = z.object({
|
|
|
216
218
|
id: IdSchema,
|
|
217
219
|
title: z.string().optional(),
|
|
218
220
|
validate: z.array(ValidatorRefSchema).optional(),
|
|
219
|
-
children: z.array(FieldSchema)
|
|
221
|
+
children: z.array(FieldSchema),
|
|
222
|
+
parallel: z.string().optional(),
|
|
223
|
+
order: z.number().optional()
|
|
220
224
|
});
|
|
221
225
|
const FormSchemaSchema = z.object({
|
|
222
226
|
id: IdSchema,
|
|
@@ -598,7 +602,8 @@ const HarnessConfigSchema = z.object({
|
|
|
598
602
|
maxFieldsPerTurn: z.number().int().positive().optional(),
|
|
599
603
|
maxGroupsPerTurn: z.number().int().positive().optional(),
|
|
600
604
|
targetRoles: z.array(z.string()).optional(),
|
|
601
|
-
fillMode: FillModeSchema.optional()
|
|
605
|
+
fillMode: FillModeSchema.optional(),
|
|
606
|
+
maxParallelAgents: z.number().int().positive().optional()
|
|
602
607
|
});
|
|
603
608
|
const SessionTurnStatsSchema = z.object({
|
|
604
609
|
inputTokens: z.number().int().nonnegative().optional(),
|
|
@@ -686,4 +691,4 @@ const MarkformFrontmatterSchema = z.object({
|
|
|
686
691
|
|
|
687
692
|
//#endregion
|
|
688
693
|
export { SetUrlListPatchSchema as $, MultiCheckboxStateSchema as A, WireToolResultSchema as At, ProgressSummarySchema as B, HarnessConfigSchema as C, ValidationIssueSchema as Ct, IssueReasonSchema as D, WireResponseFormatSchema as Dt, InspectResultSchema as E, WireRequestFormatSchema as Et, OptionIdSchema as F, SetCheckboxesPatchSchema as G, SessionFinalSchema as H, OptionSchema as I, SetNumberPatchSchema as J, SetDatePatchSchema as K, PatchSchema as L, MultiSelectValueSchema as M, YearValueSchema as Mt, NumberFieldSchema as N, IssueScopeSchema as O, WireResponseStepSchema as Ot, NumberValueSchema as P, SetTablePatchSchema as Q, ProgressCountsSchema as R, FormSchemaSchema as S, UrlValueSchema as St, InspectIssueSchema as T, WireFormatSchema as Tt, SessionTranscriptSchema as U, RunModeSchema as V, SessionTurnSchema as W, SetStringListPatchSchema as X, SetSingleSelectPatchSchema as Y, SetStringPatchSchema as Z, FieldKindSchema as _, TableRowResponseSchema as _t, CheckboxProgressCountsSchema as a, SingleSelectValueSchema as at, FieldSchema as b, UrlListFieldSchema as bt, CheckboxesValueSchema as c, StepResultSchema as ct, DateFieldSchema as d, StringListValueSchema as dt, SetUrlPatchSchema as et, DateValueSchema as f, StringValueSchema as ft, FieldGroupSchema as g, TableRowPatchSchema as gt, ExplicitCheckboxValueSchema as h, TableFieldSchema as ht, CheckboxModeSchema as i, SingleSelectFieldSchema as it, MultiSelectFieldSchema as j, YearFieldSchema as jt, MarkformFrontmatterSchema as k, WireToolCallSchema as kt, ClearFieldPatchSchema as l, StringFieldSchema as lt, DocumentationTagSchema as m, TableColumnSchema as mt, ApplyResultSchema as n, SeveritySchema as nt, CheckboxValueSchema as o, SourcePositionSchema as ot, DocumentationBlockSchema as p, StructureSummarySchema as pt, SetMultiSelectPatchSchema as q, CellResponseSchema as r, SimpleCheckboxStateSchema as rt, CheckboxesFieldSchema as s, SourceRangeSchema as st, AnswerStateSchema as t, SetYearPatchSchema as tt, ColumnTypeNameSchema as u, StringListFieldSchema as ut, FieldProgressSchema as v, TableValueSchema as vt, IdSchema as w, ValidatorRefSchema as wt, FieldValueSchema as x, UrlListValueSchema as xt, FieldResponseSchema as y, UrlFieldSchema as yt, ProgressStateSchema as z };
|
|
689
|
-
//# sourceMappingURL=coreTypes-
|
|
694
|
+
//# sourceMappingURL=coreTypes-SDB3KRRJ.mjs.map
|