@bendyline/gezel 1.0.3 → 1.0.4
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/checks/index.d.ts +1 -1
- package/dist/checks/index.js +2 -2
- package/dist/{index-4Q1N_3oe.d.ts → index-Cj_G8Y-S.d.ts} +169 -2
- package/dist/index.d.ts +6 -6
- package/dist/index.js +968 -13
- package/dist/markdown/index.d.ts +1 -1
- package/dist/markdown/index.js +7 -3
- package/dist/{report-action-C0KuyeNw.d.ts → report-action-UJ-pJpZO.d.ts} +5 -0
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.js +46 -12
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import './report-action-
|
|
2
|
+
import './report-action-UJ-pJpZO.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Who's responsible for a task or step. Shared across task.ts and
|
|
@@ -218,6 +218,7 @@ declare const GateCheckSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
218
218
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
219
219
|
file: z.ZodString;
|
|
220
220
|
outlineFile: z.ZodString;
|
|
221
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
221
222
|
}, z.core.$strip>, z.ZodObject<{
|
|
222
223
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
223
224
|
file: z.ZodString;
|
|
@@ -395,6 +396,7 @@ declare const GateSpecSchema: z.ZodObject<{
|
|
|
395
396
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
396
397
|
file: z.ZodString;
|
|
397
398
|
outlineFile: z.ZodString;
|
|
399
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
398
400
|
}, z.core.$strip>, z.ZodObject<{
|
|
399
401
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
400
402
|
file: z.ZodString;
|
|
@@ -629,6 +631,7 @@ declare const StepGateSchema: z.ZodObject<{
|
|
|
629
631
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
630
632
|
file: z.ZodString;
|
|
631
633
|
outlineFile: z.ZodString;
|
|
634
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
632
635
|
}, z.core.$strip>, z.ZodObject<{
|
|
633
636
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
634
637
|
file: z.ZodString;
|
|
@@ -821,6 +824,7 @@ declare const StepGateUnionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
821
824
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
822
825
|
file: z.ZodString;
|
|
823
826
|
outlineFile: z.ZodString;
|
|
827
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
824
828
|
}, z.core.$strip>, z.ZodObject<{
|
|
825
829
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
826
830
|
file: z.ZodString;
|
|
@@ -1002,6 +1006,7 @@ declare const StepGateUnionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
1002
1006
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
1003
1007
|
file: z.ZodString;
|
|
1004
1008
|
outlineFile: z.ZodString;
|
|
1009
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
1005
1010
|
}, z.core.$strip>, z.ZodObject<{
|
|
1006
1011
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
1007
1012
|
file: z.ZodString;
|
|
@@ -2669,6 +2674,7 @@ declare const CraftbookStepSchema: z.ZodObject<{
|
|
|
2669
2674
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
2670
2675
|
file: z.ZodString;
|
|
2671
2676
|
outlineFile: z.ZodString;
|
|
2677
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
2672
2678
|
}, z.core.$strip>, z.ZodObject<{
|
|
2673
2679
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
2674
2680
|
file: z.ZodString;
|
|
@@ -2850,6 +2856,7 @@ declare const CraftbookStepSchema: z.ZodObject<{
|
|
|
2850
2856
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
2851
2857
|
file: z.ZodString;
|
|
2852
2858
|
outlineFile: z.ZodString;
|
|
2859
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
2853
2860
|
}, z.core.$strip>, z.ZodObject<{
|
|
2854
2861
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
2855
2862
|
file: z.ZodString;
|
|
@@ -2923,7 +2930,7 @@ type CraftbookStep = z.infer<typeof CraftbookStepSchema>;
|
|
|
2923
2930
|
/**
|
|
2924
2931
|
* Declarative per-item fanout config. A craftbook that declares `spawn`
|
|
2925
2932
|
* becomes a spawn host: when its `spawnFanout` step activates, the runtime
|
|
2926
|
-
* reads `overFile` (a
|
|
2933
|
+
* reads `overFile` (a JSON file the parent produces on the declared surface),
|
|
2927
2934
|
* extracts the item array (the file IS the array, or the array at the
|
|
2928
2935
|
* dotted `itemsPath`), and spawns one child task per item from `steps`
|
|
2929
2936
|
* (each item's fields become the child's `variation.context`, string-
|
|
@@ -2933,6 +2940,7 @@ type CraftbookStep = z.infer<typeof CraftbookStepSchema>;
|
|
|
2933
2940
|
*/
|
|
2934
2941
|
declare const CraftbookSpawnSchema: z.ZodObject<{
|
|
2935
2942
|
overFile: z.ZodString;
|
|
2943
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
2936
2944
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
2937
2945
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
2938
2946
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -3224,6 +3232,7 @@ declare const CraftbookSpawnSchema: z.ZodObject<{
|
|
|
3224
3232
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
3225
3233
|
file: z.ZodString;
|
|
3226
3234
|
outlineFile: z.ZodString;
|
|
3235
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
3227
3236
|
}, z.core.$strip>, z.ZodObject<{
|
|
3228
3237
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
3229
3238
|
file: z.ZodString;
|
|
@@ -3405,6 +3414,7 @@ declare const CraftbookSpawnSchema: z.ZodObject<{
|
|
|
3405
3414
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
3406
3415
|
file: z.ZodString;
|
|
3407
3416
|
outlineFile: z.ZodString;
|
|
3417
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
3408
3418
|
}, z.core.$strip>, z.ZodObject<{
|
|
3409
3419
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
3410
3420
|
file: z.ZodString;
|
|
@@ -3942,6 +3952,7 @@ declare const CraftbookSchema: z.ZodObject<{
|
|
|
3942
3952
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
3943
3953
|
file: z.ZodString;
|
|
3944
3954
|
outlineFile: z.ZodString;
|
|
3955
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
3945
3956
|
}, z.core.$strip>, z.ZodObject<{
|
|
3946
3957
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
3947
3958
|
file: z.ZodString;
|
|
@@ -4123,6 +4134,7 @@ declare const CraftbookSchema: z.ZodObject<{
|
|
|
4123
4134
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
4124
4135
|
file: z.ZodString;
|
|
4125
4136
|
outlineFile: z.ZodString;
|
|
4137
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
4126
4138
|
}, z.core.$strip>, z.ZodObject<{
|
|
4127
4139
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
4128
4140
|
file: z.ZodString;
|
|
@@ -4271,6 +4283,7 @@ declare const CraftbookSchema: z.ZodObject<{
|
|
|
4271
4283
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4272
4284
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
4273
4285
|
overFile: z.ZodString;
|
|
4286
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
4274
4287
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
4275
4288
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
4276
4289
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -4562,6 +4575,7 @@ declare const CraftbookSchema: z.ZodObject<{
|
|
|
4562
4575
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
4563
4576
|
file: z.ZodString;
|
|
4564
4577
|
outlineFile: z.ZodString;
|
|
4578
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
4565
4579
|
}, z.core.$strip>, z.ZodObject<{
|
|
4566
4580
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
4567
4581
|
file: z.ZodString;
|
|
@@ -4743,6 +4757,7 @@ declare const CraftbookSchema: z.ZodObject<{
|
|
|
4743
4757
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
4744
4758
|
file: z.ZodString;
|
|
4745
4759
|
outlineFile: z.ZodString;
|
|
4760
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
4746
4761
|
}, z.core.$strip>, z.ZodObject<{
|
|
4747
4762
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
4748
4763
|
file: z.ZodString;
|
|
@@ -5174,6 +5189,7 @@ declare const NewCraftbookStepSchema: z.ZodObject<{
|
|
|
5174
5189
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
5175
5190
|
file: z.ZodString;
|
|
5176
5191
|
outlineFile: z.ZodString;
|
|
5192
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
5177
5193
|
}, z.core.$strip>, z.ZodObject<{
|
|
5178
5194
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
5179
5195
|
file: z.ZodString;
|
|
@@ -5355,6 +5371,7 @@ declare const NewCraftbookStepSchema: z.ZodObject<{
|
|
|
5355
5371
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
5356
5372
|
file: z.ZodString;
|
|
5357
5373
|
outlineFile: z.ZodString;
|
|
5374
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
5358
5375
|
}, z.core.$strip>, z.ZodObject<{
|
|
5359
5376
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
5360
5377
|
file: z.ZodString;
|
|
@@ -5763,6 +5780,7 @@ declare const CreateCraftbookRequestSchema: z.ZodObject<{
|
|
|
5763
5780
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
5764
5781
|
file: z.ZodString;
|
|
5765
5782
|
outlineFile: z.ZodString;
|
|
5783
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
5766
5784
|
}, z.core.$strip>, z.ZodObject<{
|
|
5767
5785
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
5768
5786
|
file: z.ZodString;
|
|
@@ -5944,6 +5962,7 @@ declare const CreateCraftbookRequestSchema: z.ZodObject<{
|
|
|
5944
5962
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
5945
5963
|
file: z.ZodString;
|
|
5946
5964
|
outlineFile: z.ZodString;
|
|
5965
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
5947
5966
|
}, z.core.$strip>, z.ZodObject<{
|
|
5948
5967
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
5949
5968
|
file: z.ZodString;
|
|
@@ -6374,6 +6393,7 @@ declare const UpdateCraftbookRequestSchema: z.ZodObject<{
|
|
|
6374
6393
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
6375
6394
|
file: z.ZodString;
|
|
6376
6395
|
outlineFile: z.ZodString;
|
|
6396
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
6377
6397
|
}, z.core.$strip>, z.ZodObject<{
|
|
6378
6398
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
6379
6399
|
file: z.ZodString;
|
|
@@ -6555,6 +6575,7 @@ declare const UpdateCraftbookRequestSchema: z.ZodObject<{
|
|
|
6555
6575
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
6556
6576
|
file: z.ZodString;
|
|
6557
6577
|
outlineFile: z.ZodString;
|
|
6578
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
6558
6579
|
}, z.core.$strip>, z.ZodObject<{
|
|
6559
6580
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
6560
6581
|
file: z.ZodString;
|
|
@@ -7101,6 +7122,7 @@ declare const CraftbookResponseSchema: z.ZodObject<{
|
|
|
7101
7122
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
7102
7123
|
file: z.ZodString;
|
|
7103
7124
|
outlineFile: z.ZodString;
|
|
7125
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
7104
7126
|
}, z.core.$strip>, z.ZodObject<{
|
|
7105
7127
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
7106
7128
|
file: z.ZodString;
|
|
@@ -7282,6 +7304,7 @@ declare const CraftbookResponseSchema: z.ZodObject<{
|
|
|
7282
7304
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
7283
7305
|
file: z.ZodString;
|
|
7284
7306
|
outlineFile: z.ZodString;
|
|
7307
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
7285
7308
|
}, z.core.$strip>, z.ZodObject<{
|
|
7286
7309
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
7287
7310
|
file: z.ZodString;
|
|
@@ -7430,6 +7453,7 @@ declare const CraftbookResponseSchema: z.ZodObject<{
|
|
|
7430
7453
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7431
7454
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
7432
7455
|
overFile: z.ZodString;
|
|
7456
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
7433
7457
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
7434
7458
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
7435
7459
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -7721,6 +7745,7 @@ declare const CraftbookResponseSchema: z.ZodObject<{
|
|
|
7721
7745
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
7722
7746
|
file: z.ZodString;
|
|
7723
7747
|
outlineFile: z.ZodString;
|
|
7748
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
7724
7749
|
}, z.core.$strip>, z.ZodObject<{
|
|
7725
7750
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
7726
7751
|
file: z.ZodString;
|
|
@@ -7902,6 +7927,7 @@ declare const CraftbookResponseSchema: z.ZodObject<{
|
|
|
7902
7927
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
7903
7928
|
file: z.ZodString;
|
|
7904
7929
|
outlineFile: z.ZodString;
|
|
7930
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
7905
7931
|
}, z.core.$strip>, z.ZodObject<{
|
|
7906
7932
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
7907
7933
|
file: z.ZodString;
|
|
@@ -8248,6 +8274,7 @@ declare const CraftbookTestCheckSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
8248
8274
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
8249
8275
|
file: z.ZodString;
|
|
8250
8276
|
outlineFile: z.ZodString;
|
|
8277
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
8251
8278
|
}, z.core.$strip>, z.ZodObject<{
|
|
8252
8279
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
8253
8280
|
file: z.ZodString;
|
|
@@ -8585,6 +8612,7 @@ declare const CraftbookTestDeliverableSchema: z.ZodObject<{
|
|
|
8585
8612
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
8586
8613
|
file: z.ZodString;
|
|
8587
8614
|
outlineFile: z.ZodString;
|
|
8615
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
8588
8616
|
}, z.core.$strip>, z.ZodObject<{
|
|
8589
8617
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
8590
8618
|
file: z.ZodString;
|
|
@@ -8947,6 +8975,7 @@ declare const CraftbookTestSuccessSchema: z.ZodObject<{
|
|
|
8947
8975
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
8948
8976
|
file: z.ZodString;
|
|
8949
8977
|
outlineFile: z.ZodString;
|
|
8978
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
8950
8979
|
}, z.core.$strip>, z.ZodObject<{
|
|
8951
8980
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
8952
8981
|
file: z.ZodString;
|
|
@@ -9136,6 +9165,7 @@ declare const CraftbookTestSuccessSchema: z.ZodObject<{
|
|
|
9136
9165
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
9137
9166
|
file: z.ZodString;
|
|
9138
9167
|
outlineFile: z.ZodString;
|
|
9168
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
9139
9169
|
}, z.core.$strip>, z.ZodObject<{
|
|
9140
9170
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
9141
9171
|
file: z.ZodString;
|
|
@@ -9326,6 +9356,7 @@ declare const CraftbookTestSuccessSchema: z.ZodObject<{
|
|
|
9326
9356
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
9327
9357
|
file: z.ZodString;
|
|
9328
9358
|
outlineFile: z.ZodString;
|
|
9359
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
9329
9360
|
}, z.core.$strip>, z.ZodObject<{
|
|
9330
9361
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
9331
9362
|
file: z.ZodString;
|
|
@@ -9517,6 +9548,7 @@ declare const CraftbookTestSuccessSchema: z.ZodObject<{
|
|
|
9517
9548
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
9518
9549
|
file: z.ZodString;
|
|
9519
9550
|
outlineFile: z.ZodString;
|
|
9551
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
9520
9552
|
}, z.core.$strip>, z.ZodObject<{
|
|
9521
9553
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
9522
9554
|
file: z.ZodString;
|
|
@@ -10006,6 +10038,7 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
|
|
|
10006
10038
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
10007
10039
|
file: z.ZodString;
|
|
10008
10040
|
outlineFile: z.ZodString;
|
|
10041
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
10009
10042
|
}, z.core.$strip>, z.ZodObject<{
|
|
10010
10043
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
10011
10044
|
file: z.ZodString;
|
|
@@ -10195,6 +10228,7 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
|
|
|
10195
10228
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
10196
10229
|
file: z.ZodString;
|
|
10197
10230
|
outlineFile: z.ZodString;
|
|
10231
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
10198
10232
|
}, z.core.$strip>, z.ZodObject<{
|
|
10199
10233
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
10200
10234
|
file: z.ZodString;
|
|
@@ -10385,6 +10419,7 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
|
|
|
10385
10419
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
10386
10420
|
file: z.ZodString;
|
|
10387
10421
|
outlineFile: z.ZodString;
|
|
10422
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
10388
10423
|
}, z.core.$strip>, z.ZodObject<{
|
|
10389
10424
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
10390
10425
|
file: z.ZodString;
|
|
@@ -10576,6 +10611,7 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
|
|
|
10576
10611
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
10577
10612
|
file: z.ZodString;
|
|
10578
10613
|
outlineFile: z.ZodString;
|
|
10614
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
10579
10615
|
}, z.core.$strip>, z.ZodObject<{
|
|
10580
10616
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
10581
10617
|
file: z.ZodString;
|
|
@@ -12177,6 +12213,7 @@ declare const PendingImportItemSchema: z.ZodObject<{
|
|
|
12177
12213
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
12178
12214
|
file: z.ZodString;
|
|
12179
12215
|
outlineFile: z.ZodString;
|
|
12216
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
12180
12217
|
}, z.core.$strip>, z.ZodObject<{
|
|
12181
12218
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
12182
12219
|
file: z.ZodString;
|
|
@@ -12358,6 +12395,7 @@ declare const PendingImportItemSchema: z.ZodObject<{
|
|
|
12358
12395
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
12359
12396
|
file: z.ZodString;
|
|
12360
12397
|
outlineFile: z.ZodString;
|
|
12398
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
12361
12399
|
}, z.core.$strip>, z.ZodObject<{
|
|
12362
12400
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
12363
12401
|
file: z.ZodString;
|
|
@@ -12506,6 +12544,7 @@ declare const PendingImportItemSchema: z.ZodObject<{
|
|
|
12506
12544
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12507
12545
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
12508
12546
|
overFile: z.ZodString;
|
|
12547
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
12509
12548
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
12510
12549
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
12511
12550
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -12797,6 +12836,7 @@ declare const PendingImportItemSchema: z.ZodObject<{
|
|
|
12797
12836
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
12798
12837
|
file: z.ZodString;
|
|
12799
12838
|
outlineFile: z.ZodString;
|
|
12839
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
12800
12840
|
}, z.core.$strip>, z.ZodObject<{
|
|
12801
12841
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
12802
12842
|
file: z.ZodString;
|
|
@@ -12978,6 +13018,7 @@ declare const PendingImportItemSchema: z.ZodObject<{
|
|
|
12978
13018
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
12979
13019
|
file: z.ZodString;
|
|
12980
13020
|
outlineFile: z.ZodString;
|
|
13021
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
12981
13022
|
}, z.core.$strip>, z.ZodObject<{
|
|
12982
13023
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
12983
13024
|
file: z.ZodString;
|
|
@@ -13380,6 +13421,7 @@ declare const PendingImportsSchema: z.ZodObject<{
|
|
|
13380
13421
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
13381
13422
|
file: z.ZodString;
|
|
13382
13423
|
outlineFile: z.ZodString;
|
|
13424
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
13383
13425
|
}, z.core.$strip>, z.ZodObject<{
|
|
13384
13426
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
13385
13427
|
file: z.ZodString;
|
|
@@ -13561,6 +13603,7 @@ declare const PendingImportsSchema: z.ZodObject<{
|
|
|
13561
13603
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
13562
13604
|
file: z.ZodString;
|
|
13563
13605
|
outlineFile: z.ZodString;
|
|
13606
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
13564
13607
|
}, z.core.$strip>, z.ZodObject<{
|
|
13565
13608
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
13566
13609
|
file: z.ZodString;
|
|
@@ -13709,6 +13752,7 @@ declare const PendingImportsSchema: z.ZodObject<{
|
|
|
13709
13752
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
13710
13753
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
13711
13754
|
overFile: z.ZodString;
|
|
13755
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
13712
13756
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
13713
13757
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
13714
13758
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -14000,6 +14044,7 @@ declare const PendingImportsSchema: z.ZodObject<{
|
|
|
14000
14044
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
14001
14045
|
file: z.ZodString;
|
|
14002
14046
|
outlineFile: z.ZodString;
|
|
14047
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
14003
14048
|
}, z.core.$strip>, z.ZodObject<{
|
|
14004
14049
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
14005
14050
|
file: z.ZodString;
|
|
@@ -14181,6 +14226,7 @@ declare const PendingImportsSchema: z.ZodObject<{
|
|
|
14181
14226
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
14182
14227
|
file: z.ZodString;
|
|
14183
14228
|
outlineFile: z.ZodString;
|
|
14229
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
14184
14230
|
}, z.core.$strip>, z.ZodObject<{
|
|
14185
14231
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
14186
14232
|
file: z.ZodString;
|
|
@@ -14674,6 +14720,7 @@ declare const TaskCraftbookStepSchema: z.ZodObject<{
|
|
|
14674
14720
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
14675
14721
|
file: z.ZodString;
|
|
14676
14722
|
outlineFile: z.ZodString;
|
|
14723
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
14677
14724
|
}, z.core.$strip>, z.ZodObject<{
|
|
14678
14725
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
14679
14726
|
file: z.ZodString;
|
|
@@ -14855,6 +14902,7 @@ declare const TaskCraftbookStepSchema: z.ZodObject<{
|
|
|
14855
14902
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
14856
14903
|
file: z.ZodString;
|
|
14857
14904
|
outlineFile: z.ZodString;
|
|
14905
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
14858
14906
|
}, z.core.$strip>, z.ZodObject<{
|
|
14859
14907
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
14860
14908
|
file: z.ZodString;
|
|
@@ -15264,6 +15312,7 @@ declare const TaskCraftbookSchema: z.ZodObject<{
|
|
|
15264
15312
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
15265
15313
|
file: z.ZodString;
|
|
15266
15314
|
outlineFile: z.ZodString;
|
|
15315
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
15267
15316
|
}, z.core.$strip>, z.ZodObject<{
|
|
15268
15317
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
15269
15318
|
file: z.ZodString;
|
|
@@ -15445,6 +15494,7 @@ declare const TaskCraftbookSchema: z.ZodObject<{
|
|
|
15445
15494
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
15446
15495
|
file: z.ZodString;
|
|
15447
15496
|
outlineFile: z.ZodString;
|
|
15497
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
15448
15498
|
}, z.core.$strip>, z.ZodObject<{
|
|
15449
15499
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
15450
15500
|
file: z.ZodString;
|
|
@@ -15599,6 +15649,7 @@ declare const TaskCraftbookSchema: z.ZodObject<{
|
|
|
15599
15649
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
15600
15650
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
15601
15651
|
overFile: z.ZodString;
|
|
15652
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
15602
15653
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
15603
15654
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
15604
15655
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -15890,6 +15941,7 @@ declare const TaskCraftbookSchema: z.ZodObject<{
|
|
|
15890
15941
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
15891
15942
|
file: z.ZodString;
|
|
15892
15943
|
outlineFile: z.ZodString;
|
|
15944
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
15893
15945
|
}, z.core.$strip>, z.ZodObject<{
|
|
15894
15946
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
15895
15947
|
file: z.ZodString;
|
|
@@ -16071,6 +16123,7 @@ declare const TaskCraftbookSchema: z.ZodObject<{
|
|
|
16071
16123
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
16072
16124
|
file: z.ZodString;
|
|
16073
16125
|
outlineFile: z.ZodString;
|
|
16126
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
16074
16127
|
}, z.core.$strip>, z.ZodObject<{
|
|
16075
16128
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
16076
16129
|
file: z.ZodString;
|
|
@@ -16535,6 +16588,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
16535
16588
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
16536
16589
|
file: z.ZodString;
|
|
16537
16590
|
outlineFile: z.ZodString;
|
|
16591
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
16538
16592
|
}, z.core.$strip>, z.ZodObject<{
|
|
16539
16593
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
16540
16594
|
file: z.ZodString;
|
|
@@ -16716,6 +16770,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
16716
16770
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
16717
16771
|
file: z.ZodString;
|
|
16718
16772
|
outlineFile: z.ZodString;
|
|
16773
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
16719
16774
|
}, z.core.$strip>, z.ZodObject<{
|
|
16720
16775
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
16721
16776
|
file: z.ZodString;
|
|
@@ -16870,6 +16925,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
16870
16925
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16871
16926
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
16872
16927
|
overFile: z.ZodString;
|
|
16928
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
16873
16929
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
16874
16930
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
16875
16931
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -17161,6 +17217,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
17161
17217
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
17162
17218
|
file: z.ZodString;
|
|
17163
17219
|
outlineFile: z.ZodString;
|
|
17220
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
17164
17221
|
}, z.core.$strip>, z.ZodObject<{
|
|
17165
17222
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
17166
17223
|
file: z.ZodString;
|
|
@@ -17342,6 +17399,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
17342
17399
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
17343
17400
|
file: z.ZodString;
|
|
17344
17401
|
outlineFile: z.ZodString;
|
|
17402
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
17345
17403
|
}, z.core.$strip>, z.ZodObject<{
|
|
17346
17404
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
17347
17405
|
file: z.ZodString;
|
|
@@ -17727,6 +17785,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
17727
17785
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
17728
17786
|
file: z.ZodString;
|
|
17729
17787
|
outlineFile: z.ZodString;
|
|
17788
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
17730
17789
|
}, z.core.$strip>, z.ZodObject<{
|
|
17731
17790
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
17732
17791
|
file: z.ZodString;
|
|
@@ -17908,6 +17967,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
17908
17967
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
17909
17968
|
file: z.ZodString;
|
|
17910
17969
|
outlineFile: z.ZodString;
|
|
17970
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
17911
17971
|
}, z.core.$strip>, z.ZodObject<{
|
|
17912
17972
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
17913
17973
|
file: z.ZodString;
|
|
@@ -18062,6 +18122,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
18062
18122
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
18063
18123
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
18064
18124
|
overFile: z.ZodString;
|
|
18125
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
18065
18126
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
18066
18127
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
18067
18128
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -18353,6 +18414,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
18353
18414
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
18354
18415
|
file: z.ZodString;
|
|
18355
18416
|
outlineFile: z.ZodString;
|
|
18417
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
18356
18418
|
}, z.core.$strip>, z.ZodObject<{
|
|
18357
18419
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
18358
18420
|
file: z.ZodString;
|
|
@@ -18534,6 +18596,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
18534
18596
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
18535
18597
|
file: z.ZodString;
|
|
18536
18598
|
outlineFile: z.ZodString;
|
|
18599
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
18537
18600
|
}, z.core.$strip>, z.ZodObject<{
|
|
18538
18601
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
18539
18602
|
file: z.ZodString;
|
|
@@ -18639,6 +18702,9 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
18639
18702
|
kind: z.ZodLiteral<"boekwachter-issue">;
|
|
18640
18703
|
issueRef: z.ZodString;
|
|
18641
18704
|
path: z.ZodString;
|
|
18705
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18706
|
+
kind: z.ZodLiteral<"craftbook-invocation">;
|
|
18707
|
+
key: z.ZodString;
|
|
18642
18708
|
}, z.core.$strip>, z.ZodObject<{
|
|
18643
18709
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
18644
18710
|
templateId: z.ZodString;
|
|
@@ -18676,6 +18742,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
18676
18742
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18677
18743
|
at: z.ZodString;
|
|
18678
18744
|
}, z.core.$strip>>;
|
|
18745
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
18679
18746
|
createdAt: z.ZodString;
|
|
18680
18747
|
updatedAt: z.ZodString;
|
|
18681
18748
|
createdBy: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -19011,6 +19078,7 @@ declare const CreateTaskRequestSchema: z.ZodObject<{
|
|
|
19011
19078
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
19012
19079
|
file: z.ZodString;
|
|
19013
19080
|
outlineFile: z.ZodString;
|
|
19081
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
19014
19082
|
}, z.core.$strip>, z.ZodObject<{
|
|
19015
19083
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
19016
19084
|
file: z.ZodString;
|
|
@@ -19192,6 +19260,7 @@ declare const CreateTaskRequestSchema: z.ZodObject<{
|
|
|
19192
19260
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
19193
19261
|
file: z.ZodString;
|
|
19194
19262
|
outlineFile: z.ZodString;
|
|
19263
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
19195
19264
|
}, z.core.$strip>, z.ZodObject<{
|
|
19196
19265
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
19197
19266
|
file: z.ZodString;
|
|
@@ -19585,6 +19654,7 @@ declare const CreateTaskRequestSchema: z.ZodObject<{
|
|
|
19585
19654
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
19586
19655
|
file: z.ZodString;
|
|
19587
19656
|
outlineFile: z.ZodString;
|
|
19657
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
19588
19658
|
}, z.core.$strip>, z.ZodObject<{
|
|
19589
19659
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
19590
19660
|
file: z.ZodString;
|
|
@@ -19766,6 +19836,7 @@ declare const CreateTaskRequestSchema: z.ZodObject<{
|
|
|
19766
19836
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
19767
19837
|
file: z.ZodString;
|
|
19768
19838
|
outlineFile: z.ZodString;
|
|
19839
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
19769
19840
|
}, z.core.$strip>, z.ZodObject<{
|
|
19770
19841
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
19771
19842
|
file: z.ZodString;
|
|
@@ -19893,7 +19964,9 @@ declare const CreateTaskRequestSchema: z.ZodObject<{
|
|
|
19893
19964
|
}, z.core.$strip>, z.ZodObject<{
|
|
19894
19965
|
kind: z.ZodLiteral<"user">;
|
|
19895
19966
|
}, z.core.$strip>], "kind">>;
|
|
19967
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
19896
19968
|
dispatchEntry: z.ZodOptional<z.ZodBoolean>;
|
|
19969
|
+
craftbookInvocationKey: z.ZodOptional<z.ZodString>;
|
|
19897
19970
|
}, z.core.$strip>;
|
|
19898
19971
|
type CreateTaskRequest = z.infer<typeof CreateTaskRequestSchema>;
|
|
19899
19972
|
declare const UpdateTaskRequestSchema: z.ZodObject<{
|
|
@@ -20316,6 +20389,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
20316
20389
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
20317
20390
|
file: z.ZodString;
|
|
20318
20391
|
outlineFile: z.ZodString;
|
|
20392
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
20319
20393
|
}, z.core.$strip>, z.ZodObject<{
|
|
20320
20394
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
20321
20395
|
file: z.ZodString;
|
|
@@ -20497,6 +20571,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
20497
20571
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
20498
20572
|
file: z.ZodString;
|
|
20499
20573
|
outlineFile: z.ZodString;
|
|
20574
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
20500
20575
|
}, z.core.$strip>, z.ZodObject<{
|
|
20501
20576
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
20502
20577
|
file: z.ZodString;
|
|
@@ -20651,6 +20726,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
20651
20726
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
20652
20727
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
20653
20728
|
overFile: z.ZodString;
|
|
20729
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
20654
20730
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
20655
20731
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
20656
20732
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -20942,6 +21018,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
20942
21018
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
20943
21019
|
file: z.ZodString;
|
|
20944
21020
|
outlineFile: z.ZodString;
|
|
21021
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
20945
21022
|
}, z.core.$strip>, z.ZodObject<{
|
|
20946
21023
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
20947
21024
|
file: z.ZodString;
|
|
@@ -21123,6 +21200,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
21123
21200
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
21124
21201
|
file: z.ZodString;
|
|
21125
21202
|
outlineFile: z.ZodString;
|
|
21203
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
21126
21204
|
}, z.core.$strip>, z.ZodObject<{
|
|
21127
21205
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
21128
21206
|
file: z.ZodString;
|
|
@@ -21508,6 +21586,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
21508
21586
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
21509
21587
|
file: z.ZodString;
|
|
21510
21588
|
outlineFile: z.ZodString;
|
|
21589
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
21511
21590
|
}, z.core.$strip>, z.ZodObject<{
|
|
21512
21591
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
21513
21592
|
file: z.ZodString;
|
|
@@ -21689,6 +21768,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
21689
21768
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
21690
21769
|
file: z.ZodString;
|
|
21691
21770
|
outlineFile: z.ZodString;
|
|
21771
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
21692
21772
|
}, z.core.$strip>, z.ZodObject<{
|
|
21693
21773
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
21694
21774
|
file: z.ZodString;
|
|
@@ -21843,6 +21923,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
21843
21923
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
21844
21924
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
21845
21925
|
overFile: z.ZodString;
|
|
21926
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
21846
21927
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
21847
21928
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
21848
21929
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -22134,6 +22215,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
22134
22215
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
22135
22216
|
file: z.ZodString;
|
|
22136
22217
|
outlineFile: z.ZodString;
|
|
22218
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
22137
22219
|
}, z.core.$strip>, z.ZodObject<{
|
|
22138
22220
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
22139
22221
|
file: z.ZodString;
|
|
@@ -22315,6 +22397,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
22315
22397
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
22316
22398
|
file: z.ZodString;
|
|
22317
22399
|
outlineFile: z.ZodString;
|
|
22400
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
22318
22401
|
}, z.core.$strip>, z.ZodObject<{
|
|
22319
22402
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
22320
22403
|
file: z.ZodString;
|
|
@@ -22420,6 +22503,9 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
22420
22503
|
kind: z.ZodLiteral<"boekwachter-issue">;
|
|
22421
22504
|
issueRef: z.ZodString;
|
|
22422
22505
|
path: z.ZodString;
|
|
22506
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22507
|
+
kind: z.ZodLiteral<"craftbook-invocation">;
|
|
22508
|
+
key: z.ZodString;
|
|
22423
22509
|
}, z.core.$strip>, z.ZodObject<{
|
|
22424
22510
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
22425
22511
|
templateId: z.ZodString;
|
|
@@ -22457,6 +22543,7 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
22457
22543
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
22458
22544
|
at: z.ZodString;
|
|
22459
22545
|
}, z.core.$strip>>;
|
|
22546
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
22460
22547
|
createdAt: z.ZodString;
|
|
22461
22548
|
updatedAt: z.ZodString;
|
|
22462
22549
|
createdBy: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -22775,6 +22862,7 @@ declare const UpdateTaskStepRequestSchema: z.ZodObject<{
|
|
|
22775
22862
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
22776
22863
|
file: z.ZodString;
|
|
22777
22864
|
outlineFile: z.ZodString;
|
|
22865
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
22778
22866
|
}, z.core.$strip>, z.ZodObject<{
|
|
22779
22867
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
22780
22868
|
file: z.ZodString;
|
|
@@ -22956,6 +23044,7 @@ declare const UpdateTaskStepRequestSchema: z.ZodObject<{
|
|
|
22956
23044
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
22957
23045
|
file: z.ZodString;
|
|
22958
23046
|
outlineFile: z.ZodString;
|
|
23047
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
22959
23048
|
}, z.core.$strip>, z.ZodObject<{
|
|
22960
23049
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
22961
23050
|
file: z.ZodString;
|
|
@@ -23359,6 +23448,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
23359
23448
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
23360
23449
|
file: z.ZodString;
|
|
23361
23450
|
outlineFile: z.ZodString;
|
|
23451
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
23362
23452
|
}, z.core.$strip>, z.ZodObject<{
|
|
23363
23453
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
23364
23454
|
file: z.ZodString;
|
|
@@ -23540,6 +23630,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
23540
23630
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
23541
23631
|
file: z.ZodString;
|
|
23542
23632
|
outlineFile: z.ZodString;
|
|
23633
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
23543
23634
|
}, z.core.$strip>, z.ZodObject<{
|
|
23544
23635
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
23545
23636
|
file: z.ZodString;
|
|
@@ -23694,6 +23785,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
23694
23785
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
23695
23786
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
23696
23787
|
overFile: z.ZodString;
|
|
23788
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
23697
23789
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
23698
23790
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
23699
23791
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -23985,6 +24077,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
23985
24077
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
23986
24078
|
file: z.ZodString;
|
|
23987
24079
|
outlineFile: z.ZodString;
|
|
24080
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
23988
24081
|
}, z.core.$strip>, z.ZodObject<{
|
|
23989
24082
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
23990
24083
|
file: z.ZodString;
|
|
@@ -24166,6 +24259,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
24166
24259
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
24167
24260
|
file: z.ZodString;
|
|
24168
24261
|
outlineFile: z.ZodString;
|
|
24262
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
24169
24263
|
}, z.core.$strip>, z.ZodObject<{
|
|
24170
24264
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
24171
24265
|
file: z.ZodString;
|
|
@@ -24551,6 +24645,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
24551
24645
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
24552
24646
|
file: z.ZodString;
|
|
24553
24647
|
outlineFile: z.ZodString;
|
|
24648
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
24554
24649
|
}, z.core.$strip>, z.ZodObject<{
|
|
24555
24650
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
24556
24651
|
file: z.ZodString;
|
|
@@ -24732,6 +24827,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
24732
24827
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
24733
24828
|
file: z.ZodString;
|
|
24734
24829
|
outlineFile: z.ZodString;
|
|
24830
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
24735
24831
|
}, z.core.$strip>, z.ZodObject<{
|
|
24736
24832
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
24737
24833
|
file: z.ZodString;
|
|
@@ -24886,6 +24982,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
24886
24982
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
24887
24983
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
24888
24984
|
overFile: z.ZodString;
|
|
24985
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
24889
24986
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
24890
24987
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
24891
24988
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -25177,6 +25274,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
25177
25274
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
25178
25275
|
file: z.ZodString;
|
|
25179
25276
|
outlineFile: z.ZodString;
|
|
25277
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
25180
25278
|
}, z.core.$strip>, z.ZodObject<{
|
|
25181
25279
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
25182
25280
|
file: z.ZodString;
|
|
@@ -25358,6 +25456,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
25358
25456
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
25359
25457
|
file: z.ZodString;
|
|
25360
25458
|
outlineFile: z.ZodString;
|
|
25459
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
25361
25460
|
}, z.core.$strip>, z.ZodObject<{
|
|
25362
25461
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
25363
25462
|
file: z.ZodString;
|
|
@@ -25463,6 +25562,9 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
25463
25562
|
kind: z.ZodLiteral<"boekwachter-issue">;
|
|
25464
25563
|
issueRef: z.ZodString;
|
|
25465
25564
|
path: z.ZodString;
|
|
25565
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25566
|
+
kind: z.ZodLiteral<"craftbook-invocation">;
|
|
25567
|
+
key: z.ZodString;
|
|
25466
25568
|
}, z.core.$strip>, z.ZodObject<{
|
|
25467
25569
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
25468
25570
|
templateId: z.ZodString;
|
|
@@ -25500,6 +25602,7 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
25500
25602
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
25501
25603
|
at: z.ZodString;
|
|
25502
25604
|
}, z.core.$strip>>;
|
|
25605
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
25503
25606
|
createdAt: z.ZodString;
|
|
25504
25607
|
updatedAt: z.ZodString;
|
|
25505
25608
|
createdBy: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -25879,6 +25982,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
25879
25982
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
25880
25983
|
file: z.ZodString;
|
|
25881
25984
|
outlineFile: z.ZodString;
|
|
25985
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
25882
25986
|
}, z.core.$strip>, z.ZodObject<{
|
|
25883
25987
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
25884
25988
|
file: z.ZodString;
|
|
@@ -26060,6 +26164,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
26060
26164
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
26061
26165
|
file: z.ZodString;
|
|
26062
26166
|
outlineFile: z.ZodString;
|
|
26167
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
26063
26168
|
}, z.core.$strip>, z.ZodObject<{
|
|
26064
26169
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
26065
26170
|
file: z.ZodString;
|
|
@@ -26214,6 +26319,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
26214
26319
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
26215
26320
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
26216
26321
|
overFile: z.ZodString;
|
|
26322
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
26217
26323
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
26218
26324
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
26219
26325
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -26505,6 +26611,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
26505
26611
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
26506
26612
|
file: z.ZodString;
|
|
26507
26613
|
outlineFile: z.ZodString;
|
|
26614
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
26508
26615
|
}, z.core.$strip>, z.ZodObject<{
|
|
26509
26616
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
26510
26617
|
file: z.ZodString;
|
|
@@ -26686,6 +26793,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
26686
26793
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
26687
26794
|
file: z.ZodString;
|
|
26688
26795
|
outlineFile: z.ZodString;
|
|
26796
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
26689
26797
|
}, z.core.$strip>, z.ZodObject<{
|
|
26690
26798
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
26691
26799
|
file: z.ZodString;
|
|
@@ -27071,6 +27179,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27071
27179
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
27072
27180
|
file: z.ZodString;
|
|
27073
27181
|
outlineFile: z.ZodString;
|
|
27182
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
27074
27183
|
}, z.core.$strip>, z.ZodObject<{
|
|
27075
27184
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
27076
27185
|
file: z.ZodString;
|
|
@@ -27252,6 +27361,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27252
27361
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
27253
27362
|
file: z.ZodString;
|
|
27254
27363
|
outlineFile: z.ZodString;
|
|
27364
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
27255
27365
|
}, z.core.$strip>, z.ZodObject<{
|
|
27256
27366
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
27257
27367
|
file: z.ZodString;
|
|
@@ -27406,6 +27516,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27406
27516
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
27407
27517
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
27408
27518
|
overFile: z.ZodString;
|
|
27519
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
27409
27520
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
27410
27521
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
27411
27522
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -27697,6 +27808,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27697
27808
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
27698
27809
|
file: z.ZodString;
|
|
27699
27810
|
outlineFile: z.ZodString;
|
|
27811
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
27700
27812
|
}, z.core.$strip>, z.ZodObject<{
|
|
27701
27813
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
27702
27814
|
file: z.ZodString;
|
|
@@ -27878,6 +27990,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27878
27990
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
27879
27991
|
file: z.ZodString;
|
|
27880
27992
|
outlineFile: z.ZodString;
|
|
27993
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
27881
27994
|
}, z.core.$strip>, z.ZodObject<{
|
|
27882
27995
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
27883
27996
|
file: z.ZodString;
|
|
@@ -27983,6 +28096,9 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27983
28096
|
kind: z.ZodLiteral<"boekwachter-issue">;
|
|
27984
28097
|
issueRef: z.ZodString;
|
|
27985
28098
|
path: z.ZodString;
|
|
28099
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28100
|
+
kind: z.ZodLiteral<"craftbook-invocation">;
|
|
28101
|
+
key: z.ZodString;
|
|
27986
28102
|
}, z.core.$strip>, z.ZodObject<{
|
|
27987
28103
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
27988
28104
|
templateId: z.ZodString;
|
|
@@ -28020,6 +28136,7 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
28020
28136
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
28021
28137
|
at: z.ZodString;
|
|
28022
28138
|
}, z.core.$strip>>;
|
|
28139
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
28023
28140
|
createdAt: z.ZodString;
|
|
28024
28141
|
updatedAt: z.ZodString;
|
|
28025
28142
|
createdBy: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -28364,6 +28481,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
28364
28481
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
28365
28482
|
file: z.ZodString;
|
|
28366
28483
|
outlineFile: z.ZodString;
|
|
28484
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
28367
28485
|
}, z.core.$strip>, z.ZodObject<{
|
|
28368
28486
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
28369
28487
|
file: z.ZodString;
|
|
@@ -28545,6 +28663,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
28545
28663
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
28546
28664
|
file: z.ZodString;
|
|
28547
28665
|
outlineFile: z.ZodString;
|
|
28666
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
28548
28667
|
}, z.core.$strip>, z.ZodObject<{
|
|
28549
28668
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
28550
28669
|
file: z.ZodString;
|
|
@@ -28699,6 +28818,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
28699
28818
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
28700
28819
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
28701
28820
|
overFile: z.ZodString;
|
|
28821
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
28702
28822
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
28703
28823
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
28704
28824
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -28990,6 +29110,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
28990
29110
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
28991
29111
|
file: z.ZodString;
|
|
28992
29112
|
outlineFile: z.ZodString;
|
|
29113
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
28993
29114
|
}, z.core.$strip>, z.ZodObject<{
|
|
28994
29115
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
28995
29116
|
file: z.ZodString;
|
|
@@ -29171,6 +29292,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
29171
29292
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
29172
29293
|
file: z.ZodString;
|
|
29173
29294
|
outlineFile: z.ZodString;
|
|
29295
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
29174
29296
|
}, z.core.$strip>, z.ZodObject<{
|
|
29175
29297
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
29176
29298
|
file: z.ZodString;
|
|
@@ -29556,6 +29678,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
29556
29678
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
29557
29679
|
file: z.ZodString;
|
|
29558
29680
|
outlineFile: z.ZodString;
|
|
29681
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
29559
29682
|
}, z.core.$strip>, z.ZodObject<{
|
|
29560
29683
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
29561
29684
|
file: z.ZodString;
|
|
@@ -29737,6 +29860,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
29737
29860
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
29738
29861
|
file: z.ZodString;
|
|
29739
29862
|
outlineFile: z.ZodString;
|
|
29863
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
29740
29864
|
}, z.core.$strip>, z.ZodObject<{
|
|
29741
29865
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
29742
29866
|
file: z.ZodString;
|
|
@@ -29891,6 +30015,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
29891
30015
|
scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
29892
30016
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
29893
30017
|
overFile: z.ZodString;
|
|
30018
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
29894
30019
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
29895
30020
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
29896
30021
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -30182,6 +30307,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
30182
30307
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
30183
30308
|
file: z.ZodString;
|
|
30184
30309
|
outlineFile: z.ZodString;
|
|
30310
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
30185
30311
|
}, z.core.$strip>, z.ZodObject<{
|
|
30186
30312
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
30187
30313
|
file: z.ZodString;
|
|
@@ -30363,6 +30489,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
30363
30489
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
30364
30490
|
file: z.ZodString;
|
|
30365
30491
|
outlineFile: z.ZodString;
|
|
30492
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
30366
30493
|
}, z.core.$strip>, z.ZodObject<{
|
|
30367
30494
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
30368
30495
|
file: z.ZodString;
|
|
@@ -30468,6 +30595,9 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
30468
30595
|
kind: z.ZodLiteral<"boekwachter-issue">;
|
|
30469
30596
|
issueRef: z.ZodString;
|
|
30470
30597
|
path: z.ZodString;
|
|
30598
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30599
|
+
kind: z.ZodLiteral<"craftbook-invocation">;
|
|
30600
|
+
key: z.ZodString;
|
|
30471
30601
|
}, z.core.$strip>, z.ZodObject<{
|
|
30472
30602
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
30473
30603
|
templateId: z.ZodString;
|
|
@@ -30505,6 +30635,7 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
30505
30635
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30506
30636
|
at: z.ZodString;
|
|
30507
30637
|
}, z.core.$strip>>;
|
|
30638
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
30508
30639
|
createdAt: z.ZodString;
|
|
30509
30640
|
updatedAt: z.ZodString;
|
|
30510
30641
|
createdBy: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -30774,6 +30905,7 @@ declare const ExpectedDeliverableSchema: z.ZodObject<{
|
|
|
30774
30905
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
30775
30906
|
file: z.ZodString;
|
|
30776
30907
|
outlineFile: z.ZodString;
|
|
30908
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
30777
30909
|
}, z.core.$strip>, z.ZodObject<{
|
|
30778
30910
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
30779
30911
|
file: z.ZodString;
|
|
@@ -31121,6 +31253,7 @@ declare const ChatSessionSchema: z.ZodObject<{
|
|
|
31121
31253
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
31122
31254
|
file: z.ZodString;
|
|
31123
31255
|
outlineFile: z.ZodString;
|
|
31256
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
31124
31257
|
}, z.core.$strip>, z.ZodObject<{
|
|
31125
31258
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
31126
31259
|
file: z.ZodString;
|
|
@@ -38761,6 +38894,7 @@ declare const SendChatRequestSchema: z.ZodObject<{
|
|
|
38761
38894
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
38762
38895
|
file: z.ZodString;
|
|
38763
38896
|
outlineFile: z.ZodString;
|
|
38897
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
38764
38898
|
}, z.core.$strip>, z.ZodObject<{
|
|
38765
38899
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
38766
38900
|
file: z.ZodString;
|
|
@@ -38961,6 +39095,7 @@ declare const MessageGezelRequestSchema: z.ZodObject<{
|
|
|
38961
39095
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
38962
39096
|
file: z.ZodString;
|
|
38963
39097
|
outlineFile: z.ZodString;
|
|
39098
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
38964
39099
|
}, z.core.$strip>, z.ZodObject<{
|
|
38965
39100
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
38966
39101
|
file: z.ZodString;
|
|
@@ -39327,6 +39462,7 @@ declare const RequestAskRequestSchema: z.ZodObject<{
|
|
|
39327
39462
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
39328
39463
|
file: z.ZodString;
|
|
39329
39464
|
outlineFile: z.ZodString;
|
|
39465
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
39330
39466
|
}, z.core.$strip>, z.ZodObject<{
|
|
39331
39467
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
39332
39468
|
file: z.ZodString;
|
|
@@ -39971,6 +40107,7 @@ declare const ListProjectsResponseSchema: z.ZodObject<{
|
|
|
39971
40107
|
declare const CreateProjectRequestSchema: z.ZodObject<{
|
|
39972
40108
|
name: z.ZodString;
|
|
39973
40109
|
description: z.ZodOptional<z.ZodString>;
|
|
40110
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
39974
40111
|
about: z.ZodOptional<z.ZodString>;
|
|
39975
40112
|
missionObjectives: z.ZodOptional<z.ZodString>;
|
|
39976
40113
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -44933,6 +45070,7 @@ declare const CraftbookTemplateVersionManifestSchema: z.ZodObject<{
|
|
|
44933
45070
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
44934
45071
|
file: z.ZodString;
|
|
44935
45072
|
outlineFile: z.ZodString;
|
|
45073
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
44936
45074
|
}, z.core.$strip>, z.ZodObject<{
|
|
44937
45075
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
44938
45076
|
file: z.ZodString;
|
|
@@ -45114,6 +45252,7 @@ declare const CraftbookTemplateVersionManifestSchema: z.ZodObject<{
|
|
|
45114
45252
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
45115
45253
|
file: z.ZodString;
|
|
45116
45254
|
outlineFile: z.ZodString;
|
|
45255
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
45117
45256
|
}, z.core.$strip>, z.ZodObject<{
|
|
45118
45257
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
45119
45258
|
file: z.ZodString;
|
|
@@ -45198,6 +45337,7 @@ declare const CraftbookTemplateVersionManifestSchema: z.ZodObject<{
|
|
|
45198
45337
|
notes: z.ZodOptional<z.ZodString>;
|
|
45199
45338
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
45200
45339
|
overFile: z.ZodString;
|
|
45340
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
45201
45341
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
45202
45342
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
45203
45343
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -45489,6 +45629,7 @@ declare const CraftbookTemplateVersionManifestSchema: z.ZodObject<{
|
|
|
45489
45629
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
45490
45630
|
file: z.ZodString;
|
|
45491
45631
|
outlineFile: z.ZodString;
|
|
45632
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
45492
45633
|
}, z.core.$strip>, z.ZodObject<{
|
|
45493
45634
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
45494
45635
|
file: z.ZodString;
|
|
@@ -45670,6 +45811,7 @@ declare const CraftbookTemplateVersionManifestSchema: z.ZodObject<{
|
|
|
45670
45811
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
45671
45812
|
file: z.ZodString;
|
|
45672
45813
|
outlineFile: z.ZodString;
|
|
45814
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
45673
45815
|
}, z.core.$strip>, z.ZodObject<{
|
|
45674
45816
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
45675
45817
|
file: z.ZodString;
|
|
@@ -46130,6 +46272,7 @@ declare const CraftbookTemplateManifestSchema: z.ZodObject<{
|
|
|
46130
46272
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
46131
46273
|
file: z.ZodString;
|
|
46132
46274
|
outlineFile: z.ZodString;
|
|
46275
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
46133
46276
|
}, z.core.$strip>, z.ZodObject<{
|
|
46134
46277
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
46135
46278
|
file: z.ZodString;
|
|
@@ -46311,6 +46454,7 @@ declare const CraftbookTemplateManifestSchema: z.ZodObject<{
|
|
|
46311
46454
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
46312
46455
|
file: z.ZodString;
|
|
46313
46456
|
outlineFile: z.ZodString;
|
|
46457
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
46314
46458
|
}, z.core.$strip>, z.ZodObject<{
|
|
46315
46459
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
46316
46460
|
file: z.ZodString;
|
|
@@ -46395,6 +46539,7 @@ declare const CraftbookTemplateManifestSchema: z.ZodObject<{
|
|
|
46395
46539
|
notes: z.ZodOptional<z.ZodString>;
|
|
46396
46540
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
46397
46541
|
overFile: z.ZodString;
|
|
46542
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
46398
46543
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
46399
46544
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
46400
46545
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -46686,6 +46831,7 @@ declare const CraftbookTemplateManifestSchema: z.ZodObject<{
|
|
|
46686
46831
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
46687
46832
|
file: z.ZodString;
|
|
46688
46833
|
outlineFile: z.ZodString;
|
|
46834
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
46689
46835
|
}, z.core.$strip>, z.ZodObject<{
|
|
46690
46836
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
46691
46837
|
file: z.ZodString;
|
|
@@ -46867,6 +47013,7 @@ declare const CraftbookTemplateManifestSchema: z.ZodObject<{
|
|
|
46867
47013
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
46868
47014
|
file: z.ZodString;
|
|
46869
47015
|
outlineFile: z.ZodString;
|
|
47016
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
46870
47017
|
}, z.core.$strip>, z.ZodObject<{
|
|
46871
47018
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
46872
47019
|
file: z.ZodString;
|
|
@@ -49755,6 +49902,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
49755
49902
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
49756
49903
|
file: z.ZodString;
|
|
49757
49904
|
outlineFile: z.ZodString;
|
|
49905
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
49758
49906
|
}, z.core.$strip>, z.ZodObject<{
|
|
49759
49907
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
49760
49908
|
file: z.ZodString;
|
|
@@ -49936,6 +50084,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
49936
50084
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
49937
50085
|
file: z.ZodString;
|
|
49938
50086
|
outlineFile: z.ZodString;
|
|
50087
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
49939
50088
|
}, z.core.$strip>, z.ZodObject<{
|
|
49940
50089
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
49941
50090
|
file: z.ZodString;
|
|
@@ -50020,6 +50169,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
50020
50169
|
notes: z.ZodOptional<z.ZodString>;
|
|
50021
50170
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
50022
50171
|
overFile: z.ZodString;
|
|
50172
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
50023
50173
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
50024
50174
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
50025
50175
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -50311,6 +50461,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
50311
50461
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
50312
50462
|
file: z.ZodString;
|
|
50313
50463
|
outlineFile: z.ZodString;
|
|
50464
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
50314
50465
|
}, z.core.$strip>, z.ZodObject<{
|
|
50315
50466
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
50316
50467
|
file: z.ZodString;
|
|
@@ -50492,6 +50643,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
50492
50643
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
50493
50644
|
file: z.ZodString;
|
|
50494
50645
|
outlineFile: z.ZodString;
|
|
50646
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
50495
50647
|
}, z.core.$strip>, z.ZodObject<{
|
|
50496
50648
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
50497
50649
|
file: z.ZodString;
|
|
@@ -51815,6 +51967,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
51815
51967
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
51816
51968
|
file: z.ZodString;
|
|
51817
51969
|
outlineFile: z.ZodString;
|
|
51970
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
51818
51971
|
}, z.core.$strip>, z.ZodObject<{
|
|
51819
51972
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
51820
51973
|
file: z.ZodString;
|
|
@@ -51996,6 +52149,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
51996
52149
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
51997
52150
|
file: z.ZodString;
|
|
51998
52151
|
outlineFile: z.ZodString;
|
|
52152
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
51999
52153
|
}, z.core.$strip>, z.ZodObject<{
|
|
52000
52154
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
52001
52155
|
file: z.ZodString;
|
|
@@ -52080,6 +52234,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
52080
52234
|
notes: z.ZodOptional<z.ZodString>;
|
|
52081
52235
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
52082
52236
|
overFile: z.ZodString;
|
|
52237
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
52083
52238
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
52084
52239
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
52085
52240
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -52371,6 +52526,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
52371
52526
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
52372
52527
|
file: z.ZodString;
|
|
52373
52528
|
outlineFile: z.ZodString;
|
|
52529
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
52374
52530
|
}, z.core.$strip>, z.ZodObject<{
|
|
52375
52531
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
52376
52532
|
file: z.ZodString;
|
|
@@ -52552,6 +52708,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
52552
52708
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
52553
52709
|
file: z.ZodString;
|
|
52554
52710
|
outlineFile: z.ZodString;
|
|
52711
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
52555
52712
|
}, z.core.$strip>, z.ZodObject<{
|
|
52556
52713
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
52557
52714
|
file: z.ZodString;
|
|
@@ -53861,6 +54018,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
53861
54018
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
53862
54019
|
file: z.ZodString;
|
|
53863
54020
|
outlineFile: z.ZodString;
|
|
54021
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
53864
54022
|
}, z.core.$strip>, z.ZodObject<{
|
|
53865
54023
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
53866
54024
|
file: z.ZodString;
|
|
@@ -54042,6 +54200,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
54042
54200
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
54043
54201
|
file: z.ZodString;
|
|
54044
54202
|
outlineFile: z.ZodString;
|
|
54203
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
54045
54204
|
}, z.core.$strip>, z.ZodObject<{
|
|
54046
54205
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
54047
54206
|
file: z.ZodString;
|
|
@@ -54126,6 +54285,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
54126
54285
|
notes: z.ZodOptional<z.ZodString>;
|
|
54127
54286
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
54128
54287
|
overFile: z.ZodString;
|
|
54288
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
54129
54289
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
54130
54290
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
54131
54291
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -54417,6 +54577,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
54417
54577
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
54418
54578
|
file: z.ZodString;
|
|
54419
54579
|
outlineFile: z.ZodString;
|
|
54580
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
54420
54581
|
}, z.core.$strip>, z.ZodObject<{
|
|
54421
54582
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
54422
54583
|
file: z.ZodString;
|
|
@@ -54598,6 +54759,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
54598
54759
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
54599
54760
|
file: z.ZodString;
|
|
54600
54761
|
outlineFile: z.ZodString;
|
|
54762
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
54601
54763
|
}, z.core.$strip>, z.ZodObject<{
|
|
54602
54764
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
54603
54765
|
file: z.ZodString;
|
|
@@ -55907,6 +56069,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
55907
56069
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
55908
56070
|
file: z.ZodString;
|
|
55909
56071
|
outlineFile: z.ZodString;
|
|
56072
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
55910
56073
|
}, z.core.$strip>, z.ZodObject<{
|
|
55911
56074
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
55912
56075
|
file: z.ZodString;
|
|
@@ -56088,6 +56251,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
56088
56251
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
56089
56252
|
file: z.ZodString;
|
|
56090
56253
|
outlineFile: z.ZodString;
|
|
56254
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
56091
56255
|
}, z.core.$strip>, z.ZodObject<{
|
|
56092
56256
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
56093
56257
|
file: z.ZodString;
|
|
@@ -56172,6 +56336,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
56172
56336
|
notes: z.ZodOptional<z.ZodString>;
|
|
56173
56337
|
spawn: z.ZodOptional<z.ZodObject<{
|
|
56174
56338
|
overFile: z.ZodString;
|
|
56339
|
+
overArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
56175
56340
|
itemsPath: z.ZodOptional<z.ZodString>;
|
|
56176
56341
|
entryStepId: z.ZodOptional<z.ZodString>;
|
|
56177
56342
|
steps: z.ZodArray<z.ZodObject<{
|
|
@@ -56463,6 +56628,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
56463
56628
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
56464
56629
|
file: z.ZodString;
|
|
56465
56630
|
outlineFile: z.ZodString;
|
|
56631
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
56466
56632
|
}, z.core.$strip>, z.ZodObject<{
|
|
56467
56633
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
56468
56634
|
file: z.ZodString;
|
|
@@ -56644,6 +56810,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
56644
56810
|
kind: z.ZodLiteral<"markdownHeadingsMatch">;
|
|
56645
56811
|
file: z.ZodString;
|
|
56646
56812
|
outlineFile: z.ZodString;
|
|
56813
|
+
outlineArtifact: z.ZodOptional<z.ZodBoolean>;
|
|
56647
56814
|
}, z.core.$strip>, z.ZodObject<{
|
|
56648
56815
|
kind: z.ZodLiteral<"valueGrounding">;
|
|
56649
56816
|
file: z.ZodString;
|