markform 0.1.17 → 0.1.19
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/README.md +27 -2
- package/dist/ai-sdk.d.mts +1 -2
- package/dist/ai-sdk.mjs +2 -2
- package/dist/ai-sdk.mjs.map +1 -1
- package/dist/{apply-DgDJBscb.mjs → apply-Dalpt-D6.mjs} +422 -31
- package/dist/apply-Dalpt-D6.mjs.map +1 -0
- package/dist/bin.mjs +20 -2
- package/dist/bin.mjs.map +1 -1
- package/dist/{cli-DAl8LQzI.mjs → cli-tpvFNqFY.mjs} +325 -73
- package/dist/cli-tpvFNqFY.mjs.map +1 -0
- package/dist/cli.mjs +1 -1
- package/dist/{coreTypes-DiCddBKu.mjs → coreTypes-CPKXf2dc.mjs} +9 -4
- package/dist/coreTypes-CPKXf2dc.mjs.map +1 -0
- package/dist/{coreTypes-CnEea7Kh.d.mts → coreTypes-CkxML8g2.d.mts} +128 -10
- package/dist/index.d.mts +642 -22
- package/dist/index.mjs +5 -5
- package/dist/{session-XDrocA3j.mjs → session-CK0x28RO.mjs} +2 -2
- package/dist/session-CK0x28RO.mjs.map +1 -0
- package/dist/{session-B7aR6hno.mjs → session-ZHBi3LVQ.mjs} +1 -1
- package/dist/{shared-fUKfJ1UA.mjs → shared-BTR35aMz.mjs} +1 -1
- package/dist/{shared-CCq4haEV.mjs → shared-DwdyWmvE.mjs} +1 -3
- package/dist/shared-DwdyWmvE.mjs.map +1 -0
- package/dist/{src-CHVJLGKt.mjs → src-BTyz-wS6.mjs} +2009 -584
- package/dist/src-BTyz-wS6.mjs.map +1 -0
- package/docs/markform-apis.md +112 -0
- package/docs/markform-reference.md +27 -0
- package/docs/markform-spec.md +115 -0
- 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/startup-deep-research/startup-deep-research.form.md +1 -1
- package/package.json +16 -14
- package/dist/apply-DgDJBscb.mjs.map +0 -1
- package/dist/cli-DAl8LQzI.mjs.map +0 -1
- package/dist/coreTypes-DiCddBKu.mjs.map +0 -1
- package/dist/session-XDrocA3j.mjs.map +0 -1
- package/dist/shared-CCq4haEV.mjs.map +0 -1
- package/dist/src-CHVJLGKt.mjs.map +0 -1
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
|
|
4
4
|
//#region src/engine/coreTypes.d.ts
|
|
5
|
-
|
|
6
5
|
/** Form/group/field ID - globally unique within a document */
|
|
7
6
|
type Id = string;
|
|
8
7
|
/** Option ID - unique within its containing field */
|
|
@@ -99,6 +98,10 @@ interface FieldBase {
|
|
|
99
98
|
examples?: string[];
|
|
100
99
|
/** True for auto-generated implicit fields (e.g., 'checkboxes' for plan documents) */
|
|
101
100
|
implicit?: boolean;
|
|
101
|
+
/** Parallel batch identifier. Top-level fields only. */
|
|
102
|
+
parallel?: string;
|
|
103
|
+
/** Fill order. Lower values filled first. Default: 0. */
|
|
104
|
+
order?: number;
|
|
102
105
|
}
|
|
103
106
|
/** String field - single or multiline text */
|
|
104
107
|
interface StringField extends FieldBase {
|
|
@@ -200,6 +203,28 @@ interface FieldGroup {
|
|
|
200
203
|
* Implicit groups are serialized without group wrapper tags.
|
|
201
204
|
*/
|
|
202
205
|
implicit?: boolean;
|
|
206
|
+
/** Parallel batch identifier. */
|
|
207
|
+
parallel?: string;
|
|
208
|
+
/** Fill order. Lower values filled first. Default: 0. */
|
|
209
|
+
order?: number;
|
|
210
|
+
}
|
|
211
|
+
/** An item in an execution plan (a top-level field or group). */
|
|
212
|
+
interface ExecutionPlanItem {
|
|
213
|
+
itemId: Id;
|
|
214
|
+
itemType: 'field' | 'group';
|
|
215
|
+
order: number;
|
|
216
|
+
}
|
|
217
|
+
/** A parallel batch: items that can execute concurrently. */
|
|
218
|
+
interface ParallelBatch {
|
|
219
|
+
batchId: string;
|
|
220
|
+
items: ExecutionPlanItem[];
|
|
221
|
+
}
|
|
222
|
+
/** Execution plan: partitions form into loose-serial pool + parallel batches. */
|
|
223
|
+
interface ExecutionPlan {
|
|
224
|
+
looseSerial: ExecutionPlanItem[];
|
|
225
|
+
parallelBatches: ParallelBatch[];
|
|
226
|
+
/** Distinct order levels found in the form, sorted ascending. */
|
|
227
|
+
orderLevels: number[];
|
|
203
228
|
}
|
|
204
229
|
/** Form schema - root container with groups */
|
|
205
230
|
interface FormSchema {
|
|
@@ -304,6 +329,7 @@ interface FrontmatterHarnessConfig {
|
|
|
304
329
|
maxTurns?: number;
|
|
305
330
|
maxPatchesPerTurn?: number;
|
|
306
331
|
maxIssuesPerTurn?: number;
|
|
332
|
+
maxParallelAgents?: number;
|
|
307
333
|
}
|
|
308
334
|
/**
|
|
309
335
|
* Run mode for the form - determines how 'markform run' executes.
|
|
@@ -677,6 +703,8 @@ interface HarnessConfig {
|
|
|
677
703
|
targetRoles?: string[];
|
|
678
704
|
/** Fill mode: 'continue' (skip filled) or 'overwrite' (re-fill) */
|
|
679
705
|
fillMode?: FillMode;
|
|
706
|
+
/** Max concurrent agents for parallel batches (default: 4) */
|
|
707
|
+
maxParallelAgents?: number;
|
|
680
708
|
}
|
|
681
709
|
/** LLM stats for a turn (from live agent) */
|
|
682
710
|
interface SessionTurnStats {
|
|
@@ -739,9 +767,7 @@ interface WireRequestFormat {
|
|
|
739
767
|
prompt: string;
|
|
740
768
|
/** Tool definitions with descriptions and schemas */
|
|
741
769
|
tools: Record<string, {
|
|
742
|
-
/** Tool description shown to LLM */
|
|
743
|
-
description: string;
|
|
744
|
-
/** JSON Schema for tool input */
|
|
770
|
+
/** Tool description shown to LLM */description: string; /** JSON Schema for tool input */
|
|
745
771
|
inputSchema: unknown;
|
|
746
772
|
}>;
|
|
747
773
|
}
|
|
@@ -781,10 +807,8 @@ interface SessionTurn {
|
|
|
781
807
|
/** Context sent to LLM (prompts with field schema info) */
|
|
782
808
|
context?: SessionTurnContext;
|
|
783
809
|
apply: {
|
|
784
|
-
patches: Patch[];
|
|
785
|
-
/**
|
|
786
|
-
rejectedPatches?: PatchRejection[];
|
|
787
|
-
/** Warnings for patches that were coerced (e.g., string → array) */
|
|
810
|
+
patches: Patch[]; /** Patches that were rejected (type mismatch, invalid field, etc.) */
|
|
811
|
+
rejectedPatches?: PatchRejection[]; /** Warnings for patches that were coerced (e.g., string → array) */
|
|
788
812
|
warnings?: PatchWarning[];
|
|
789
813
|
};
|
|
790
814
|
after: {
|
|
@@ -986,6 +1010,8 @@ declare const StringFieldSchema: z.ZodObject<{
|
|
|
986
1010
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
987
1011
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
988
1012
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1013
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
989
1015
|
}, z.core.$strip>;
|
|
990
1016
|
declare const NumberFieldSchema: z.ZodObject<{
|
|
991
1017
|
kind: z.ZodLiteral<"number">;
|
|
@@ -1007,6 +1033,8 @@ declare const NumberFieldSchema: z.ZodObject<{
|
|
|
1007
1033
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1008
1034
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1009
1035
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1036
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1037
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1010
1038
|
}, z.core.$strip>;
|
|
1011
1039
|
declare const StringListFieldSchema: z.ZodObject<{
|
|
1012
1040
|
kind: z.ZodLiteral<"string_list">;
|
|
@@ -1030,6 +1058,8 @@ declare const StringListFieldSchema: z.ZodObject<{
|
|
|
1030
1058
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1031
1059
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1032
1060
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1061
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1062
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1033
1063
|
}, z.core.$strip>;
|
|
1034
1064
|
declare const CheckboxesFieldSchema: z.ZodObject<{
|
|
1035
1065
|
kind: z.ZodLiteral<"checkboxes">;
|
|
@@ -1062,6 +1092,8 @@ declare const CheckboxesFieldSchema: z.ZodObject<{
|
|
|
1062
1092
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1063
1093
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1064
1094
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1095
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1065
1097
|
}, z.core.$strip>;
|
|
1066
1098
|
declare const SingleSelectFieldSchema: z.ZodObject<{
|
|
1067
1099
|
kind: z.ZodLiteral<"single_select">;
|
|
@@ -1084,6 +1116,8 @@ declare const SingleSelectFieldSchema: z.ZodObject<{
|
|
|
1084
1116
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1085
1117
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1086
1118
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1119
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1120
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1087
1121
|
}, z.core.$strip>;
|
|
1088
1122
|
declare const MultiSelectFieldSchema: z.ZodObject<{
|
|
1089
1123
|
kind: z.ZodLiteral<"multi_select">;
|
|
@@ -1108,6 +1142,8 @@ declare const MultiSelectFieldSchema: z.ZodObject<{
|
|
|
1108
1142
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1109
1143
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1110
1144
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1145
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1111
1147
|
}, z.core.$strip>;
|
|
1112
1148
|
declare const UrlFieldSchema: z.ZodObject<{
|
|
1113
1149
|
kind: z.ZodLiteral<"url">;
|
|
@@ -1126,6 +1162,8 @@ declare const UrlFieldSchema: z.ZodObject<{
|
|
|
1126
1162
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1127
1163
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1128
1164
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1165
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1166
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1129
1167
|
}, z.core.$strip>;
|
|
1130
1168
|
declare const UrlListFieldSchema: z.ZodObject<{
|
|
1131
1169
|
kind: z.ZodLiteral<"url_list">;
|
|
@@ -1147,6 +1185,8 @@ declare const UrlListFieldSchema: z.ZodObject<{
|
|
|
1147
1185
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1148
1186
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1149
1187
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1188
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1189
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1150
1190
|
}, z.core.$strip>;
|
|
1151
1191
|
declare const DateFieldSchema: z.ZodObject<{
|
|
1152
1192
|
kind: z.ZodLiteral<"date">;
|
|
@@ -1167,6 +1207,8 @@ declare const DateFieldSchema: z.ZodObject<{
|
|
|
1167
1207
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1168
1208
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1169
1209
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1210
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1211
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1170
1212
|
}, z.core.$strip>;
|
|
1171
1213
|
declare const YearFieldSchema: z.ZodObject<{
|
|
1172
1214
|
kind: z.ZodLiteral<"year">;
|
|
@@ -1187,6 +1229,8 @@ declare const YearFieldSchema: z.ZodObject<{
|
|
|
1187
1229
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1188
1230
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1189
1231
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1232
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1190
1234
|
}, z.core.$strip>;
|
|
1191
1235
|
/** Table field schema (extends FieldBase pattern) */
|
|
1192
1236
|
declare const TableFieldSchema: z.ZodObject<{
|
|
@@ -1220,6 +1264,8 @@ declare const TableFieldSchema: z.ZodObject<{
|
|
|
1220
1264
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1221
1265
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1222
1266
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1267
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1223
1269
|
}, z.core.$strip>;
|
|
1224
1270
|
declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1225
1271
|
kind: z.ZodLiteral<"string">;
|
|
@@ -1242,6 +1288,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1242
1288
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1243
1289
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1244
1290
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1291
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1292
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1245
1293
|
}, z.core.$strip>, z.ZodObject<{
|
|
1246
1294
|
kind: z.ZodLiteral<"number">;
|
|
1247
1295
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1262,6 +1310,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1262
1310
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1263
1311
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1264
1312
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1313
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1314
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1265
1315
|
}, z.core.$strip>, z.ZodObject<{
|
|
1266
1316
|
kind: z.ZodLiteral<"string_list">;
|
|
1267
1317
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1284,6 +1334,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1284
1334
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1285
1335
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1286
1336
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1337
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1338
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1287
1339
|
}, z.core.$strip>, z.ZodObject<{
|
|
1288
1340
|
kind: z.ZodLiteral<"checkboxes">;
|
|
1289
1341
|
checkboxMode: z.ZodEnum<{
|
|
@@ -1315,6 +1367,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1315
1367
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1316
1368
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1317
1369
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1370
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1371
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1318
1372
|
}, z.core.$strip>, z.ZodObject<{
|
|
1319
1373
|
kind: z.ZodLiteral<"single_select">;
|
|
1320
1374
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1336,6 +1390,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1336
1390
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1337
1391
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1338
1392
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1393
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1394
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1339
1395
|
}, z.core.$strip>, z.ZodObject<{
|
|
1340
1396
|
kind: z.ZodLiteral<"multi_select">;
|
|
1341
1397
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1359,6 +1415,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1359
1415
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1360
1416
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1361
1417
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1418
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1419
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1362
1420
|
}, z.core.$strip>, z.ZodObject<{
|
|
1363
1421
|
kind: z.ZodLiteral<"url">;
|
|
1364
1422
|
id: z.ZodString;
|
|
@@ -1376,6 +1434,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1376
1434
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1377
1435
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1378
1436
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1437
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1438
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1379
1439
|
}, z.core.$strip>, z.ZodObject<{
|
|
1380
1440
|
kind: z.ZodLiteral<"url_list">;
|
|
1381
1441
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1396,6 +1456,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1396
1456
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1397
1457
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1398
1458
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1459
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1460
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1399
1461
|
}, z.core.$strip>, z.ZodObject<{
|
|
1400
1462
|
kind: z.ZodLiteral<"date">;
|
|
1401
1463
|
min: z.ZodOptional<z.ZodString>;
|
|
@@ -1415,6 +1477,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1415
1477
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1416
1478
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1417
1479
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1480
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1418
1482
|
}, z.core.$strip>, z.ZodObject<{
|
|
1419
1483
|
kind: z.ZodLiteral<"year">;
|
|
1420
1484
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1434,6 +1498,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1434
1498
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1435
1499
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1436
1500
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1501
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1502
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1437
1503
|
}, z.core.$strip>, z.ZodObject<{
|
|
1438
1504
|
kind: z.ZodLiteral<"table">;
|
|
1439
1505
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1465,6 +1531,8 @@ declare const FieldSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1465
1531
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1466
1532
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1467
1533
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1534
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1468
1536
|
}, z.core.$strip>], "kind">;
|
|
1469
1537
|
declare const FieldGroupSchema: z.ZodObject<{
|
|
1470
1538
|
id: z.ZodString;
|
|
@@ -1493,6 +1561,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1493
1561
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1494
1562
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1495
1563
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1564
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1565
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1496
1566
|
}, z.core.$strip>, z.ZodObject<{
|
|
1497
1567
|
kind: z.ZodLiteral<"number">;
|
|
1498
1568
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1513,6 +1583,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1513
1583
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1514
1584
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1515
1585
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1586
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1587
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1516
1588
|
}, z.core.$strip>, z.ZodObject<{
|
|
1517
1589
|
kind: z.ZodLiteral<"string_list">;
|
|
1518
1590
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1535,6 +1607,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1535
1607
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1536
1608
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1537
1609
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1610
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1611
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1538
1612
|
}, z.core.$strip>, z.ZodObject<{
|
|
1539
1613
|
kind: z.ZodLiteral<"checkboxes">;
|
|
1540
1614
|
checkboxMode: z.ZodEnum<{
|
|
@@ -1566,6 +1640,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1566
1640
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1567
1641
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1568
1642
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1643
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1644
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1569
1645
|
}, z.core.$strip>, z.ZodObject<{
|
|
1570
1646
|
kind: z.ZodLiteral<"single_select">;
|
|
1571
1647
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1587,6 +1663,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1587
1663
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1588
1664
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1589
1665
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1666
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1667
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1590
1668
|
}, z.core.$strip>, z.ZodObject<{
|
|
1591
1669
|
kind: z.ZodLiteral<"multi_select">;
|
|
1592
1670
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1610,6 +1688,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1610
1688
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1611
1689
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1612
1690
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1691
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1613
1693
|
}, z.core.$strip>, z.ZodObject<{
|
|
1614
1694
|
kind: z.ZodLiteral<"url">;
|
|
1615
1695
|
id: z.ZodString;
|
|
@@ -1627,6 +1707,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1627
1707
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1628
1708
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1629
1709
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1710
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1711
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1630
1712
|
}, z.core.$strip>, z.ZodObject<{
|
|
1631
1713
|
kind: z.ZodLiteral<"url_list">;
|
|
1632
1714
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1647,6 +1729,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1647
1729
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1648
1730
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1649
1731
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1732
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1733
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1650
1734
|
}, z.core.$strip>, z.ZodObject<{
|
|
1651
1735
|
kind: z.ZodLiteral<"date">;
|
|
1652
1736
|
min: z.ZodOptional<z.ZodString>;
|
|
@@ -1666,6 +1750,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1666
1750
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1667
1751
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1668
1752
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1753
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1669
1755
|
}, z.core.$strip>, z.ZodObject<{
|
|
1670
1756
|
kind: z.ZodLiteral<"year">;
|
|
1671
1757
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1685,6 +1771,8 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1685
1771
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1686
1772
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1687
1773
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1774
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1688
1776
|
}, z.core.$strip>, z.ZodObject<{
|
|
1689
1777
|
kind: z.ZodLiteral<"table">;
|
|
1690
1778
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1716,7 +1804,11 @@ declare const FieldGroupSchema: z.ZodObject<{
|
|
|
1716
1804
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1717
1805
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1718
1806
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1807
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1808
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1719
1809
|
}, z.core.$strip>], "kind">>;
|
|
1810
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1811
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1720
1812
|
}, z.core.$strip>;
|
|
1721
1813
|
declare const FormSchemaSchema: z.ZodObject<{
|
|
1722
1814
|
id: z.ZodString;
|
|
@@ -1748,6 +1840,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1748
1840
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1749
1841
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1750
1842
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1843
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1844
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1751
1845
|
}, z.core.$strip>, z.ZodObject<{
|
|
1752
1846
|
kind: z.ZodLiteral<"number">;
|
|
1753
1847
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1768,6 +1862,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1768
1862
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1769
1863
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1770
1864
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1865
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1771
1867
|
}, z.core.$strip>, z.ZodObject<{
|
|
1772
1868
|
kind: z.ZodLiteral<"string_list">;
|
|
1773
1869
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1790,6 +1886,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1790
1886
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1791
1887
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1792
1888
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1889
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1890
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1793
1891
|
}, z.core.$strip>, z.ZodObject<{
|
|
1794
1892
|
kind: z.ZodLiteral<"checkboxes">;
|
|
1795
1893
|
checkboxMode: z.ZodEnum<{
|
|
@@ -1821,6 +1919,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1821
1919
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1822
1920
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1823
1921
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1922
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1923
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1824
1924
|
}, z.core.$strip>, z.ZodObject<{
|
|
1825
1925
|
kind: z.ZodLiteral<"single_select">;
|
|
1826
1926
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1842,6 +1942,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1842
1942
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1843
1943
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1844
1944
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1945
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1845
1947
|
}, z.core.$strip>, z.ZodObject<{
|
|
1846
1948
|
kind: z.ZodLiteral<"multi_select">;
|
|
1847
1949
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -1865,6 +1967,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1865
1967
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1866
1968
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1867
1969
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1970
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1971
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1868
1972
|
}, z.core.$strip>, z.ZodObject<{
|
|
1869
1973
|
kind: z.ZodLiteral<"url">;
|
|
1870
1974
|
id: z.ZodString;
|
|
@@ -1882,6 +1986,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1882
1986
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1883
1987
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1884
1988
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1989
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
1990
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1885
1991
|
}, z.core.$strip>, z.ZodObject<{
|
|
1886
1992
|
kind: z.ZodLiteral<"url_list">;
|
|
1887
1993
|
minItems: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1902,6 +2008,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1902
2008
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1903
2009
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1904
2010
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2011
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2012
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1905
2013
|
}, z.core.$strip>, z.ZodObject<{
|
|
1906
2014
|
kind: z.ZodLiteral<"date">;
|
|
1907
2015
|
min: z.ZodOptional<z.ZodString>;
|
|
@@ -1921,6 +2029,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1921
2029
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1922
2030
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1923
2031
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2032
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2033
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1924
2034
|
}, z.core.$strip>, z.ZodObject<{
|
|
1925
2035
|
kind: z.ZodLiteral<"year">;
|
|
1926
2036
|
min: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1940,6 +2050,8 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1940
2050
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1941
2051
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1942
2052
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2053
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2054
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1943
2055
|
}, z.core.$strip>, z.ZodObject<{
|
|
1944
2056
|
kind: z.ZodLiteral<"table">;
|
|
1945
2057
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -1971,7 +2083,11 @@ declare const FormSchemaSchema: z.ZodObject<{
|
|
|
1971
2083
|
report: z.ZodOptional<z.ZodBoolean>;
|
|
1972
2084
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1973
2085
|
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2086
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2087
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1974
2088
|
}, z.core.$strip>], "kind">>;
|
|
2089
|
+
parallel: z.ZodOptional<z.ZodString>;
|
|
2090
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1975
2091
|
}, z.core.$strip>>;
|
|
1976
2092
|
}, z.core.$strip>;
|
|
1977
2093
|
declare const StringValueSchema: z.ZodObject<{
|
|
@@ -3074,6 +3190,7 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
3074
3190
|
continue: "continue";
|
|
3075
3191
|
overwrite: "overwrite";
|
|
3076
3192
|
}>>;
|
|
3193
|
+
maxParallelAgents: z.ZodOptional<z.ZodNumber>;
|
|
3077
3194
|
}, z.core.$strip>;
|
|
3078
3195
|
declare const WireToolCallSchema: z.ZodObject<{
|
|
3079
3196
|
toolName: z.ZodString;
|
|
@@ -3351,6 +3468,7 @@ declare const SessionTranscriptSchema: z.ZodObject<{
|
|
|
3351
3468
|
continue: "continue";
|
|
3352
3469
|
overwrite: "overwrite";
|
|
3353
3470
|
}>>;
|
|
3471
|
+
maxParallelAgents: z.ZodOptional<z.ZodNumber>;
|
|
3354
3472
|
}, z.core.$strip>;
|
|
3355
3473
|
turns: z.ZodArray<z.ZodObject<{
|
|
3356
3474
|
turn: z.ZodNumber;
|
|
@@ -3641,5 +3759,5 @@ declare const MarkformFrontmatterSchema: z.ZodObject<{
|
|
|
3641
3759
|
}>;
|
|
3642
3760
|
}, z.core.$strip>;
|
|
3643
3761
|
//#endregion
|
|
3644
|
-
export {
|
|
3645
|
-
//# sourceMappingURL=coreTypes-
|
|
3762
|
+
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 };
|
|
3763
|
+
//# sourceMappingURL=coreTypes-CkxML8g2.d.mts.map
|