@bendyline/gezel 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-D_dch9Qh.d.ts → index-BtxY_EhX.d.ts} +185 -40
- package/dist/index.d.ts +136 -7
- package/dist/index.js +5781 -5169
- package/dist/markdown/index.d.ts +1 -1
- package/dist/markdown/index.js +754 -662
- package/dist/paths.d.ts +16 -3
- package/dist/paths.js +54 -0
- package/dist/{report-action-DzdQHzGG.d.ts → report-action-DVQvpL-V.d.ts} +40 -22
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.js +5321 -5114
- package/dist/svg/index.d.ts +11 -0
- package/dist/svg/index.js +202 -0
- package/package.json +6 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import './report-action-
|
|
2
|
+
import './report-action-DVQvpL-V.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Who's responsible for a task or step. Shared across task.ts and
|
|
@@ -8472,6 +8472,7 @@ declare const CraftbookTestHistoryExpectationSchema: z.ZodObject<{
|
|
|
8472
8472
|
"memory.compacted": "memory.compacted";
|
|
8473
8473
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
8474
8474
|
"project.digest.generated": "project.digest.generated";
|
|
8475
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
8475
8476
|
"meester.status.generated": "meester.status.generated";
|
|
8476
8477
|
"gezel.level.up": "gezel.level.up";
|
|
8477
8478
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -9384,6 +9385,7 @@ declare const CraftbookTestSuccessSchema: z.ZodObject<{
|
|
|
9384
9385
|
"memory.compacted": "memory.compacted";
|
|
9385
9386
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
9386
9387
|
"project.digest.generated": "project.digest.generated";
|
|
9388
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
9387
9389
|
"meester.status.generated": "meester.status.generated";
|
|
9388
9390
|
"gezel.level.up": "gezel.level.up";
|
|
9389
9391
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -10408,6 +10410,7 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
|
|
|
10408
10410
|
"memory.compacted": "memory.compacted";
|
|
10409
10411
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
10410
10412
|
"project.digest.generated": "project.digest.generated";
|
|
10413
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
10411
10414
|
"meester.status.generated": "meester.status.generated";
|
|
10412
10415
|
"gezel.level.up": "gezel.level.up";
|
|
10413
10416
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -10595,6 +10598,9 @@ declare const ConfigureCodexRequestSchema: z.ZodObject<{
|
|
|
10595
10598
|
}, z.core.$strip>;
|
|
10596
10599
|
type ConfigureCodexRequest = z.infer<typeof ConfigureCodexRequestSchema>;
|
|
10597
10600
|
|
|
10601
|
+
declare const EntityIdSchema: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
10602
|
+
type EntityId = z.infer<typeof EntityIdSchema>;
|
|
10603
|
+
|
|
10598
10604
|
/**
|
|
10599
10605
|
* Gezel growth — purposeful gamification. Gezels accumulate XP from real
|
|
10600
10606
|
* learning signals (deduplicated kind-tagged memories, distilled lessons,
|
|
@@ -11084,7 +11090,7 @@ declare const ProjectTypeProvenanceSchema: z.ZodObject<{
|
|
|
11084
11090
|
}, z.core.$strip>;
|
|
11085
11091
|
type ProjectTypeProvenance = z.infer<typeof ProjectTypeProvenanceSchema>;
|
|
11086
11092
|
declare const ProjectSchema: z.ZodObject<{
|
|
11087
|
-
id: z.ZodString
|
|
11093
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
11088
11094
|
name: z.ZodString;
|
|
11089
11095
|
description: z.ZodOptional<z.ZodString>;
|
|
11090
11096
|
workingDir: z.ZodOptional<z.ZodString>;
|
|
@@ -11204,7 +11210,7 @@ declare const InstalledPackageSchema: z.ZodObject<{
|
|
|
11204
11210
|
}, z.core.$strip>;
|
|
11205
11211
|
type InstalledPackage = z.infer<typeof InstalledPackageSchema>;
|
|
11206
11212
|
declare const ProjectDetailSchema: z.ZodObject<{
|
|
11207
|
-
id: z.ZodString
|
|
11213
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
11208
11214
|
name: z.ZodString;
|
|
11209
11215
|
description: z.ZodOptional<z.ZodString>;
|
|
11210
11216
|
workingDir: z.ZodOptional<z.ZodString>;
|
|
@@ -30763,6 +30769,7 @@ declare const TerminalThreadSummarySchema: z.ZodObject<{
|
|
|
30763
30769
|
lastActivityAt: z.ZodString;
|
|
30764
30770
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
30765
30771
|
workingDir: z.ZodString;
|
|
30772
|
+
lastCommand: z.ZodOptional<z.ZodString>;
|
|
30766
30773
|
}, z.core.$strip>;
|
|
30767
30774
|
type TerminalThreadSummary = z.infer<typeof TerminalThreadSummarySchema>;
|
|
30768
30775
|
declare const ListTerminalThreadsResponseSchema: z.ZodObject<{
|
|
@@ -30773,6 +30780,7 @@ declare const ListTerminalThreadsResponseSchema: z.ZodObject<{
|
|
|
30773
30780
|
lastActivityAt: z.ZodString;
|
|
30774
30781
|
archived: z.ZodOptional<z.ZodBoolean>;
|
|
30775
30782
|
workingDir: z.ZodString;
|
|
30783
|
+
lastCommand: z.ZodOptional<z.ZodString>;
|
|
30776
30784
|
}, z.core.$strip>>;
|
|
30777
30785
|
}, z.core.$strip>;
|
|
30778
30786
|
type ListTerminalThreadsResponse = z.infer<typeof ListTerminalThreadsResponseSchema>;
|
|
@@ -31116,6 +31124,7 @@ declare const HistoryEventKindSchema: z.ZodEnum<{
|
|
|
31116
31124
|
"memory.compacted": "memory.compacted";
|
|
31117
31125
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
31118
31126
|
"project.digest.generated": "project.digest.generated";
|
|
31127
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
31119
31128
|
"meester.status.generated": "meester.status.generated";
|
|
31120
31129
|
"gezel.level.up": "gezel.level.up";
|
|
31121
31130
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -31241,6 +31250,7 @@ declare const HistoryEventSchema: z.ZodObject<{
|
|
|
31241
31250
|
"memory.compacted": "memory.compacted";
|
|
31242
31251
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
31243
31252
|
"project.digest.generated": "project.digest.generated";
|
|
31253
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
31244
31254
|
"meester.status.generated": "meester.status.generated";
|
|
31245
31255
|
"gezel.level.up": "gezel.level.up";
|
|
31246
31256
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -31397,6 +31407,7 @@ declare const HistoryEventEntrySchema: z.ZodObject<{
|
|
|
31397
31407
|
"memory.compacted": "memory.compacted";
|
|
31398
31408
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
31399
31409
|
"project.digest.generated": "project.digest.generated";
|
|
31410
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
31400
31411
|
"meester.status.generated": "meester.status.generated";
|
|
31401
31412
|
"gezel.level.up": "gezel.level.up";
|
|
31402
31413
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -31527,6 +31538,7 @@ declare const HistoryEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
31527
31538
|
"memory.compacted": "memory.compacted";
|
|
31528
31539
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
31529
31540
|
"project.digest.generated": "project.digest.generated";
|
|
31541
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
31530
31542
|
"meester.status.generated": "meester.status.generated";
|
|
31531
31543
|
"gezel.level.up": "gezel.level.up";
|
|
31532
31544
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -31682,6 +31694,7 @@ declare const HistoryFilterSchema: z.ZodObject<{
|
|
|
31682
31694
|
"memory.compacted": "memory.compacted";
|
|
31683
31695
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
31684
31696
|
"project.digest.generated": "project.digest.generated";
|
|
31697
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
31685
31698
|
"meester.status.generated": "meester.status.generated";
|
|
31686
31699
|
"gezel.level.up": "gezel.level.up";
|
|
31687
31700
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -31817,6 +31830,7 @@ declare const ListHistoryResponseSchema: z.ZodObject<{
|
|
|
31817
31830
|
"memory.compacted": "memory.compacted";
|
|
31818
31831
|
"memory.lessons-updated": "memory.lessons-updated";
|
|
31819
31832
|
"project.digest.generated": "project.digest.generated";
|
|
31833
|
+
"project.index.reviewed": "project.index.reviewed";
|
|
31820
31834
|
"meester.status.generated": "meester.status.generated";
|
|
31821
31835
|
"gezel.level.up": "gezel.level.up";
|
|
31822
31836
|
"gezel.trait.adopted": "gezel.trait.adopted";
|
|
@@ -32459,9 +32473,19 @@ declare const FileReviewWireSchema: z.ZodObject<{
|
|
|
32459
32473
|
health: z.ZodNumber;
|
|
32460
32474
|
healthReason: z.ZodString;
|
|
32461
32475
|
model: z.ZodNullable<z.ZodString>;
|
|
32476
|
+
provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32477
|
+
gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32478
|
+
gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32479
|
+
appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32462
32480
|
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
32463
32481
|
}, z.core.$strip>;
|
|
32464
32482
|
type FileReviewWire = z.infer<typeof FileReviewWireSchema>;
|
|
32483
|
+
/**
|
|
32484
|
+
* One-line provenance rendering shared by the MCP tools and the UI review
|
|
32485
|
+
* card: `Reviewed by <model> (<provider>) · <gezel> · gezel <version> · <date>`.
|
|
32486
|
+
* Null segments drop out; null when even the model is unrecorded.
|
|
32487
|
+
*/
|
|
32488
|
+
declare function formatReviewProvenance(r: Pick<FileReviewWire, 'model' | 'reviewedAt'> & Partial<Pick<FileReviewWire, 'provider' | 'gezelName' | 'appVersion'>>): string | null;
|
|
32465
32489
|
|
|
32466
32490
|
declare const GitStatusResponseSchema: z.ZodObject<{
|
|
32467
32491
|
github: z.ZodOptional<z.ZodObject<{
|
|
@@ -33319,6 +33343,10 @@ declare const OutlineFileResponseSchema: z.ZodObject<{
|
|
|
33319
33343
|
health: z.ZodNumber;
|
|
33320
33344
|
healthReason: z.ZodString;
|
|
33321
33345
|
model: z.ZodNullable<z.ZodString>;
|
|
33346
|
+
provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33347
|
+
gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33348
|
+
gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33349
|
+
appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33322
33350
|
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
33323
33351
|
}, z.core.$strip>>;
|
|
33324
33352
|
}, z.core.$strip>;
|
|
@@ -33527,6 +33555,10 @@ declare const FileContextResponseSchema: z.ZodObject<{
|
|
|
33527
33555
|
health: z.ZodNumber;
|
|
33528
33556
|
healthReason: z.ZodString;
|
|
33529
33557
|
model: z.ZodNullable<z.ZodString>;
|
|
33558
|
+
provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33559
|
+
gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33560
|
+
gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33561
|
+
appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33530
33562
|
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
33531
33563
|
}, z.core.$strip>>;
|
|
33532
33564
|
}, z.core.$strip>;
|
|
@@ -33554,8 +33586,13 @@ declare const FileReviewResponseSchema: z.ZodObject<{
|
|
|
33554
33586
|
health: z.ZodNumber;
|
|
33555
33587
|
healthReason: z.ZodString;
|
|
33556
33588
|
model: z.ZodNullable<z.ZodString>;
|
|
33589
|
+
provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33590
|
+
gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33591
|
+
gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33592
|
+
appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33557
33593
|
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
33558
33594
|
}, z.core.$strip>>;
|
|
33595
|
+
eligible: z.ZodOptional<z.ZodBoolean>;
|
|
33559
33596
|
}, z.core.$strip>;
|
|
33560
33597
|
type FileReviewResponse = z.infer<typeof FileReviewResponseSchema>;
|
|
33561
33598
|
declare const ListFileIssuesRequestSchema: z.ZodObject<{
|
|
@@ -33590,6 +33627,12 @@ declare const ListFileIssuesResponseSchema: z.ZodObject<{
|
|
|
33590
33627
|
indexed: z.ZodBoolean;
|
|
33591
33628
|
reviewedFiles: z.ZodNumber;
|
|
33592
33629
|
eligibleFiles: z.ZodNumber;
|
|
33630
|
+
reviewers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33631
|
+
model: z.ZodNullable<z.ZodString>;
|
|
33632
|
+
provider: z.ZodNullable<z.ZodString>;
|
|
33633
|
+
gezelName: z.ZodNullable<z.ZodString>;
|
|
33634
|
+
files: z.ZodNumber;
|
|
33635
|
+
}, z.core.$strip>>>;
|
|
33593
33636
|
}, z.core.$strip>;
|
|
33594
33637
|
type ListFileIssuesResponse = z.infer<typeof ListFileIssuesResponseSchema>;
|
|
33595
33638
|
declare const MapRepoRequestSchema: z.ZodObject<{
|
|
@@ -33708,11 +33751,11 @@ declare const ResidentEngineModelSchema: z.ZodObject<{
|
|
|
33708
33751
|
}, z.core.$strip>;
|
|
33709
33752
|
type ResidentEngineModel = z.infer<typeof ResidentEngineModelSchema>;
|
|
33710
33753
|
declare const GpuProcessOwnerSchema: z.ZodEnum<{
|
|
33754
|
+
external: "external";
|
|
33711
33755
|
"machine-engine": "machine-engine";
|
|
33712
33756
|
"app-engine": "app-engine";
|
|
33713
33757
|
"development-engine": "development-engine";
|
|
33714
33758
|
"gezel-engine": "gezel-engine";
|
|
33715
|
-
external: "external";
|
|
33716
33759
|
}>;
|
|
33717
33760
|
type GpuProcessOwner = z.infer<typeof GpuProcessOwnerSchema>;
|
|
33718
33761
|
/** Windows driver accounting for one process holding dedicated GPU memory. */
|
|
@@ -33721,11 +33764,11 @@ declare const GpuProcessMemorySchema: z.ZodObject<{
|
|
|
33721
33764
|
name: z.ZodOptional<z.ZodString>;
|
|
33722
33765
|
dedicatedBytes: z.ZodNumber;
|
|
33723
33766
|
owner: z.ZodEnum<{
|
|
33767
|
+
external: "external";
|
|
33724
33768
|
"machine-engine": "machine-engine";
|
|
33725
33769
|
"app-engine": "app-engine";
|
|
33726
33770
|
"development-engine": "development-engine";
|
|
33727
33771
|
"gezel-engine": "gezel-engine";
|
|
33728
|
-
external: "external";
|
|
33729
33772
|
}>;
|
|
33730
33773
|
}, z.core.$strip>;
|
|
33731
33774
|
type GpuProcessMemory = z.infer<typeof GpuProcessMemorySchema>;
|
|
@@ -33816,11 +33859,11 @@ declare const MachineMemoryUsageSchema: z.ZodObject<{
|
|
|
33816
33859
|
name: z.ZodOptional<z.ZodString>;
|
|
33817
33860
|
dedicatedBytes: z.ZodNumber;
|
|
33818
33861
|
owner: z.ZodEnum<{
|
|
33862
|
+
external: "external";
|
|
33819
33863
|
"machine-engine": "machine-engine";
|
|
33820
33864
|
"app-engine": "app-engine";
|
|
33821
33865
|
"development-engine": "development-engine";
|
|
33822
33866
|
"gezel-engine": "gezel-engine";
|
|
33823
|
-
external: "external";
|
|
33824
33867
|
}>;
|
|
33825
33868
|
}, z.core.$strip>>>;
|
|
33826
33869
|
gezelEngineProcessCount: z.ZodNumber;
|
|
@@ -35936,7 +35979,7 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
35936
35979
|
type UpdateConfigRequest = z.infer<typeof UpdateConfigRequestSchema>;
|
|
35937
35980
|
declare const ListGezelsResponseSchema: z.ZodObject<{
|
|
35938
35981
|
gezels: z.ZodArray<z.ZodObject<{
|
|
35939
|
-
id: z.ZodString
|
|
35982
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
35940
35983
|
name: z.ZodString;
|
|
35941
35984
|
description: z.ZodOptional<z.ZodString>;
|
|
35942
35985
|
role: z.ZodOptional<z.ZodString>;
|
|
@@ -36133,7 +36176,7 @@ declare const CreateGezelRequestSchema: z.ZodObject<{
|
|
|
36133
36176
|
about: z.ZodOptional<z.ZodString>;
|
|
36134
36177
|
}, z.core.$strip>;
|
|
36135
36178
|
declare const GezelResponseSchema: z.ZodObject<{
|
|
36136
|
-
id: z.ZodString
|
|
36179
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
36137
36180
|
name: z.ZodString;
|
|
36138
36181
|
description: z.ZodOptional<z.ZodString>;
|
|
36139
36182
|
role: z.ZodOptional<z.ZodString>;
|
|
@@ -36317,7 +36360,7 @@ declare const GezelResponseSchema: z.ZodObject<{
|
|
|
36317
36360
|
updatedAt: z.ZodString;
|
|
36318
36361
|
parsed: z.ZodObject<{
|
|
36319
36362
|
frontmatter: z.ZodObject<{
|
|
36320
|
-
id: z.ZodOptional<z.ZodString
|
|
36363
|
+
id: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
|
|
36321
36364
|
name: z.ZodString;
|
|
36322
36365
|
description: z.ZodOptional<z.ZodString>;
|
|
36323
36366
|
role: z.ZodOptional<z.ZodString>;
|
|
@@ -38086,8 +38129,8 @@ declare const AnswerQuestionRequestSchema: z.ZodObject<{
|
|
|
38086
38129
|
declined: z.ZodOptional<z.ZodBoolean>;
|
|
38087
38130
|
silentSkip: z.ZodOptional<z.ZodBoolean>;
|
|
38088
38131
|
npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38089
|
-
package: z.ZodString
|
|
38090
|
-
version: z.ZodString
|
|
38132
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38133
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38091
38134
|
decision: z.ZodEnum<{
|
|
38092
38135
|
always: "always";
|
|
38093
38136
|
install: "install";
|
|
@@ -38111,8 +38154,8 @@ declare const ListQuestionsResponseSchema: z.ZodObject<{
|
|
|
38111
38154
|
intent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
38112
38155
|
kind: z.ZodLiteral<"npm-install-approval">;
|
|
38113
38156
|
packages: z.ZodArray<z.ZodObject<{
|
|
38114
|
-
package: z.ZodString
|
|
38115
|
-
version: z.ZodString
|
|
38157
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38158
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38116
38159
|
}, z.core.$strip>>;
|
|
38117
38160
|
}, z.core.$strip>, z.ZodObject<{
|
|
38118
38161
|
kind: z.ZodLiteral<"command-approval">;
|
|
@@ -38123,6 +38166,10 @@ declare const ListQuestionsResponseSchema: z.ZodObject<{
|
|
|
38123
38166
|
name: z.ZodString;
|
|
38124
38167
|
body: z.ZodOptional<z.ZodString>;
|
|
38125
38168
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
38169
|
+
inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38170
|
+
path: z.ZodString;
|
|
38171
|
+
sha256: z.ZodString;
|
|
38172
|
+
}, z.core.$strip>>>;
|
|
38126
38173
|
}, z.core.$strip>, z.ZodObject<{
|
|
38127
38174
|
kind: z.ZodLiteral<"tool-permission">;
|
|
38128
38175
|
toolName: z.ZodString;
|
|
@@ -38190,8 +38237,8 @@ declare const ListQuestionsResponseSchema: z.ZodObject<{
|
|
|
38190
38237
|
declined: z.ZodOptional<z.ZodBoolean>;
|
|
38191
38238
|
silentSkip: z.ZodOptional<z.ZodBoolean>;
|
|
38192
38239
|
npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38193
|
-
package: z.ZodString
|
|
38194
|
-
version: z.ZodString
|
|
38240
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38241
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38195
38242
|
decision: z.ZodEnum<{
|
|
38196
38243
|
always: "always";
|
|
38197
38244
|
install: "install";
|
|
@@ -38521,7 +38568,7 @@ declare const CopilotAvailabilitySchema: z.ZodObject<{
|
|
|
38521
38568
|
type CopilotAvailability = z.infer<typeof CopilotAvailabilitySchema>;
|
|
38522
38569
|
declare const ListProjectsResponseSchema: z.ZodObject<{
|
|
38523
38570
|
projects: z.ZodArray<z.ZodObject<{
|
|
38524
|
-
id: z.ZodString
|
|
38571
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38525
38572
|
name: z.ZodString;
|
|
38526
38573
|
description: z.ZodOptional<z.ZodString>;
|
|
38527
38574
|
workingDir: z.ZodOptional<z.ZodString>;
|
|
@@ -38783,7 +38830,7 @@ declare const CreateTypedProjectRequestSchema: z.ZodObject<{
|
|
|
38783
38830
|
type CreateTypedProjectRequest = z.infer<typeof CreateTypedProjectRequestSchema>;
|
|
38784
38831
|
declare const CreateTypedProjectResponseSchema: z.ZodObject<{
|
|
38785
38832
|
project: z.ZodObject<{
|
|
38786
|
-
id: z.ZodString
|
|
38833
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38787
38834
|
name: z.ZodString;
|
|
38788
38835
|
description: z.ZodOptional<z.ZodString>;
|
|
38789
38836
|
workingDir: z.ZodOptional<z.ZodString>;
|
|
@@ -38924,7 +38971,7 @@ declare const CreateTypedProjectResponseSchema: z.ZodObject<{
|
|
|
38924
38971
|
}, z.core.$strip>;
|
|
38925
38972
|
type CreateTypedProjectResponse = z.infer<typeof CreateTypedProjectResponseSchema>;
|
|
38926
38973
|
declare const ProjectResponseSchema: z.ZodObject<{
|
|
38927
|
-
id: z.ZodString
|
|
38974
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
38928
38975
|
name: z.ZodString;
|
|
38929
38976
|
description: z.ZodOptional<z.ZodString>;
|
|
38930
38977
|
workingDir: z.ZodOptional<z.ZodString>;
|
|
@@ -39024,12 +39071,24 @@ declare const ProjectResponseSchema: z.ZodObject<{
|
|
|
39024
39071
|
missionObjectives: z.ZodOptional<z.ZodString>;
|
|
39025
39072
|
}, z.core.$strip>;
|
|
39026
39073
|
declare const InstallPackageRequestSchema: z.ZodObject<{
|
|
39027
|
-
name: z.ZodString
|
|
39028
|
-
version: z.ZodOptional<z.ZodString
|
|
39029
|
-
}, z.core.$
|
|
39074
|
+
name: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
39075
|
+
version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
|
|
39076
|
+
}, z.core.$strict>;
|
|
39077
|
+
/** Batch model-facing npm install request, plus its legacy singular shape. */
|
|
39078
|
+
declare const NpmInstallRequestSchema: z.ZodObject<{
|
|
39079
|
+
packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
39080
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
39081
|
+
version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
|
|
39082
|
+
}, z.core.$strict>>>;
|
|
39083
|
+
package: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
|
|
39084
|
+
version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
|
|
39085
|
+
gezelId: z.ZodOptional<z.ZodString>;
|
|
39086
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
39087
|
+
}, z.core.$strict>;
|
|
39088
|
+
type NpmInstallRequest = z.infer<typeof NpmInstallRequestSchema>;
|
|
39030
39089
|
declare const InstallPackageResponseSchema: z.ZodObject<{
|
|
39031
39090
|
project: z.ZodObject<{
|
|
39032
|
-
id: z.ZodString
|
|
39091
|
+
id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
39033
39092
|
name: z.ZodString;
|
|
39034
39093
|
description: z.ZodOptional<z.ZodString>;
|
|
39035
39094
|
workingDir: z.ZodOptional<z.ZodString>;
|
|
@@ -41062,11 +41121,17 @@ declare const WorkspaceIndexStatusSchema: z.ZodObject<{
|
|
|
41062
41121
|
shapeCount: z.ZodOptional<z.ZodNumber>;
|
|
41063
41122
|
}, z.core.$strip>>;
|
|
41064
41123
|
aiScanPending: z.ZodOptional<z.ZodBoolean>;
|
|
41124
|
+
aiDrive: z.ZodOptional<z.ZodEnum<{
|
|
41125
|
+
full: "full";
|
|
41126
|
+
background: "background";
|
|
41127
|
+
}>>;
|
|
41065
41128
|
enrichment: z.ZodOptional<z.ZodObject<{
|
|
41066
41129
|
eligible: z.ZodNumber;
|
|
41067
41130
|
summarized: z.ZodNumber;
|
|
41068
41131
|
embedded: z.ZodNumber;
|
|
41069
41132
|
pending: z.ZodNumber;
|
|
41133
|
+
skipped: z.ZodOptional<z.ZodNumber>;
|
|
41134
|
+
shadowsPending: z.ZodOptional<z.ZodNumber>;
|
|
41070
41135
|
embedModel: z.ZodOptional<z.ZodString>;
|
|
41071
41136
|
reviews: z.ZodOptional<z.ZodObject<{
|
|
41072
41137
|
eligible: z.ZodNumber;
|
|
@@ -41078,15 +41143,25 @@ declare const WorkspaceIndexStatusSchema: z.ZodObject<{
|
|
|
41078
41143
|
}, z.core.$strip>;
|
|
41079
41144
|
type WorkspaceIndexStatus = z.infer<typeof WorkspaceIndexStatusSchema>;
|
|
41080
41145
|
/**
|
|
41081
|
-
* On-demand enrichment drive ("study now")
|
|
41082
|
-
*
|
|
41083
|
-
*
|
|
41146
|
+
* On-demand enrichment drive ("study now"). Two shapes:
|
|
41147
|
+
* - legacy (no `intensity`): one bounded synchronous pass per request — the
|
|
41148
|
+
* caller loops until `drained`.
|
|
41149
|
+
* - `intensity` set: starts a server-side drive job (static refresh first,
|
|
41150
|
+
* then every AI tier to drain) and returns immediately with
|
|
41151
|
+
* `started: true`; progress flows over `index_progress` events and
|
|
41152
|
+
* `/index/status` polling.
|
|
41153
|
+
* Both ensure the static index is current before AI work and respect the
|
|
41154
|
+
* boekwachter task's pause.
|
|
41084
41155
|
*/
|
|
41085
41156
|
declare const DriveIndexEnrichmentRequestSchema: z.ZodObject<{
|
|
41086
41157
|
maxFiles: z.ZodOptional<z.ZodNumber>;
|
|
41087
41158
|
budgetMs: z.ZodOptional<z.ZodNumber>;
|
|
41088
41159
|
areas: z.ZodOptional<z.ZodBoolean>;
|
|
41089
41160
|
reviews: z.ZodOptional<z.ZodBoolean>;
|
|
41161
|
+
intensity: z.ZodOptional<z.ZodEnum<{
|
|
41162
|
+
full: "full";
|
|
41163
|
+
background: "background";
|
|
41164
|
+
}>>;
|
|
41090
41165
|
}, z.core.$strip>;
|
|
41091
41166
|
type DriveIndexEnrichmentRequest = z.infer<typeof DriveIndexEnrichmentRequestSchema>;
|
|
41092
41167
|
declare const DriveIndexEnrichmentResponseSchema: z.ZodObject<{
|
|
@@ -41100,6 +41175,12 @@ declare const DriveIndexEnrichmentResponseSchema: z.ZodObject<{
|
|
|
41100
41175
|
reviewed: z.ZodOptional<z.ZodNumber>;
|
|
41101
41176
|
reviewPending: z.ZodOptional<z.ZodNumber>;
|
|
41102
41177
|
drained: z.ZodBoolean;
|
|
41178
|
+
started: z.ZodOptional<z.ZodBoolean>;
|
|
41179
|
+
alreadyRunning: z.ZodOptional<z.ZodBoolean>;
|
|
41180
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
41181
|
+
full: "full";
|
|
41182
|
+
background: "background";
|
|
41183
|
+
}>>;
|
|
41103
41184
|
}, z.core.$strip>;
|
|
41104
41185
|
type DriveIndexEnrichmentResponse = z.infer<typeof DriveIndexEnrichmentResponseSchema>;
|
|
41105
41186
|
/**
|
|
@@ -56855,6 +56936,22 @@ declare const NativeEngineStatusResponseSchema: z.ZodObject<{
|
|
|
56855
56936
|
}, z.core.$strip>;
|
|
56856
56937
|
type NativeEngineStatusResponse = z.infer<typeof NativeEngineStatusResponseSchema>;
|
|
56857
56938
|
|
|
56939
|
+
declare function isValidNpmPackageName(value: unknown): value is string;
|
|
56940
|
+
/**
|
|
56941
|
+
* Registry-only npm version selector. Supports dist-tags and controlled
|
|
56942
|
+
* semver/range forms while rejecting URLs, Git refs, aliases, local paths,
|
|
56943
|
+
* workspace protocols, and option-like strings.
|
|
56944
|
+
*/
|
|
56945
|
+
declare function isValidNpmRegistryVersion(value: unknown): value is string;
|
|
56946
|
+
declare const NpmPackageNameSchema: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
56947
|
+
declare const NpmRegistryVersionSchema: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
56948
|
+
declare const NpmRegistryPackageRequestSchema: z.ZodObject<{
|
|
56949
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
56950
|
+
version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
|
|
56951
|
+
}, z.core.$strict>;
|
|
56952
|
+
type NpmRegistryPackageRequest = z.infer<typeof NpmRegistryPackageRequestSchema>;
|
|
56953
|
+
declare function formatNpmRegistrySpec(name: string, version?: string): string;
|
|
56954
|
+
|
|
56858
56955
|
/**
|
|
56859
56956
|
* Canonical tuning profile registry.
|
|
56860
56957
|
*
|
|
@@ -57099,8 +57196,8 @@ type ImportCustomMcpConfigResponse = z.infer<typeof ImportCustomMcpConfigRespons
|
|
|
57099
57196
|
* - `decline` → project-scoped decline
|
|
57100
57197
|
*/
|
|
57101
57198
|
declare const NpmInstallApprovalDecisionSchema: z.ZodObject<{
|
|
57102
|
-
package: z.ZodString
|
|
57103
|
-
version: z.ZodString
|
|
57199
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57200
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57104
57201
|
decision: z.ZodEnum<{
|
|
57105
57202
|
always: "always";
|
|
57106
57203
|
install: "install";
|
|
@@ -57114,8 +57211,8 @@ declare const QuestionAnswerSchema: z.ZodObject<{
|
|
|
57114
57211
|
declined: z.ZodOptional<z.ZodBoolean>;
|
|
57115
57212
|
silentSkip: z.ZodOptional<z.ZodBoolean>;
|
|
57116
57213
|
npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
57117
|
-
package: z.ZodString
|
|
57118
|
-
version: z.ZodString
|
|
57214
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57215
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57119
57216
|
decision: z.ZodEnum<{
|
|
57120
57217
|
always: "always";
|
|
57121
57218
|
install: "install";
|
|
@@ -57137,8 +57234,8 @@ type QuestionAnswer = z.infer<typeof QuestionAnswerSchema>;
|
|
|
57137
57234
|
* unset — existing rendering path is unchanged.
|
|
57138
57235
|
*/
|
|
57139
57236
|
declare const NpmInstallApprovalPackageSchema: z.ZodObject<{
|
|
57140
|
-
package: z.ZodString
|
|
57141
|
-
version: z.ZodString
|
|
57237
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57238
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57142
57239
|
}, z.core.$strip>;
|
|
57143
57240
|
type NpmInstallApprovalPackage = z.infer<typeof NpmInstallApprovalPackageSchema>;
|
|
57144
57241
|
/**
|
|
@@ -57153,14 +57250,20 @@ type NpmInstallApprovalPackage = z.infer<typeof NpmInstallApprovalPackageSchema>
|
|
|
57153
57250
|
* `body` carries the script body (or resolved bin path) verbatim so the
|
|
57154
57251
|
* approval UI can show the user what they're consenting to. `args` are
|
|
57155
57252
|
* the extra args the gezel wanted to pass on this specific run. The
|
|
57156
|
-
* service hashes the ordered argument vector together with `body
|
|
57157
|
-
* persisted approval cannot be replayed
|
|
57253
|
+
* service hashes the ordered argument vector together with `body` and the
|
|
57254
|
+
* `inputFiles` content snapshot, so a persisted approval cannot be replayed
|
|
57255
|
+
* with different arguments or modified identifiable input files.
|
|
57158
57256
|
*/
|
|
57159
57257
|
declare const CommandApprovalScopeSchema: z.ZodEnum<{
|
|
57160
57258
|
script: "script";
|
|
57161
57259
|
npx: "npx";
|
|
57162
57260
|
}>;
|
|
57163
57261
|
type CommandApprovalScope = z.infer<typeof CommandApprovalScopeSchema>;
|
|
57262
|
+
declare const CommandApprovalInputFileSchema: z.ZodObject<{
|
|
57263
|
+
path: z.ZodString;
|
|
57264
|
+
sha256: z.ZodString;
|
|
57265
|
+
}, z.core.$strip>;
|
|
57266
|
+
type CommandApprovalInputFile = z.infer<typeof CommandApprovalInputFileSchema>;
|
|
57164
57267
|
declare const CommandApprovalIntentSchema: z.ZodObject<{
|
|
57165
57268
|
kind: z.ZodLiteral<"command-approval">;
|
|
57166
57269
|
scope: z.ZodEnum<{
|
|
@@ -57170,6 +57273,10 @@ declare const CommandApprovalIntentSchema: z.ZodObject<{
|
|
|
57170
57273
|
name: z.ZodString;
|
|
57171
57274
|
body: z.ZodOptional<z.ZodString>;
|
|
57172
57275
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
57276
|
+
inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
57277
|
+
path: z.ZodString;
|
|
57278
|
+
sha256: z.ZodString;
|
|
57279
|
+
}, z.core.$strip>>>;
|
|
57173
57280
|
}, z.core.$strip>;
|
|
57174
57281
|
type CommandApprovalIntent = z.infer<typeof CommandApprovalIntentSchema>;
|
|
57175
57282
|
/**
|
|
@@ -57351,8 +57458,8 @@ type TaskPausedIntent = z.infer<typeof TaskPausedIntentSchema>;
|
|
|
57351
57458
|
declare const QuestionIntentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
57352
57459
|
kind: z.ZodLiteral<"npm-install-approval">;
|
|
57353
57460
|
packages: z.ZodArray<z.ZodObject<{
|
|
57354
|
-
package: z.ZodString
|
|
57355
|
-
version: z.ZodString
|
|
57461
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57462
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57356
57463
|
}, z.core.$strip>>;
|
|
57357
57464
|
}, z.core.$strip>, z.ZodObject<{
|
|
57358
57465
|
kind: z.ZodLiteral<"command-approval">;
|
|
@@ -57363,6 +57470,10 @@ declare const QuestionIntentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
57363
57470
|
name: z.ZodString;
|
|
57364
57471
|
body: z.ZodOptional<z.ZodString>;
|
|
57365
57472
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
57473
|
+
inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
57474
|
+
path: z.ZodString;
|
|
57475
|
+
sha256: z.ZodString;
|
|
57476
|
+
}, z.core.$strip>>>;
|
|
57366
57477
|
}, z.core.$strip>, z.ZodObject<{
|
|
57367
57478
|
kind: z.ZodLiteral<"tool-permission">;
|
|
57368
57479
|
toolName: z.ZodString;
|
|
@@ -57438,8 +57549,8 @@ declare const QuestionSchema: z.ZodObject<{
|
|
|
57438
57549
|
intent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
57439
57550
|
kind: z.ZodLiteral<"npm-install-approval">;
|
|
57440
57551
|
packages: z.ZodArray<z.ZodObject<{
|
|
57441
|
-
package: z.ZodString
|
|
57442
|
-
version: z.ZodString
|
|
57552
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57553
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57443
57554
|
}, z.core.$strip>>;
|
|
57444
57555
|
}, z.core.$strip>, z.ZodObject<{
|
|
57445
57556
|
kind: z.ZodLiteral<"command-approval">;
|
|
@@ -57450,6 +57561,10 @@ declare const QuestionSchema: z.ZodObject<{
|
|
|
57450
57561
|
name: z.ZodString;
|
|
57451
57562
|
body: z.ZodOptional<z.ZodString>;
|
|
57452
57563
|
args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
57564
|
+
inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
57565
|
+
path: z.ZodString;
|
|
57566
|
+
sha256: z.ZodString;
|
|
57567
|
+
}, z.core.$strip>>>;
|
|
57453
57568
|
}, z.core.$strip>, z.ZodObject<{
|
|
57454
57569
|
kind: z.ZodLiteral<"tool-permission">;
|
|
57455
57570
|
toolName: z.ZodString;
|
|
@@ -57517,8 +57632,8 @@ declare const QuestionSchema: z.ZodObject<{
|
|
|
57517
57632
|
declined: z.ZodOptional<z.ZodBoolean>;
|
|
57518
57633
|
silentSkip: z.ZodOptional<z.ZodBoolean>;
|
|
57519
57634
|
npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
57520
|
-
package: z.ZodString
|
|
57521
|
-
version: z.ZodString
|
|
57635
|
+
package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57636
|
+
version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
|
|
57522
57637
|
decision: z.ZodEnum<{
|
|
57523
57638
|
always: "always";
|
|
57524
57639
|
install: "install";
|
|
@@ -58912,6 +59027,7 @@ declare const HandboekAreaSchema: z.ZodEnum<{
|
|
|
58912
59027
|
"gezel-roles": "gezel-roles";
|
|
58913
59028
|
"project-types": "project-types";
|
|
58914
59029
|
technical: "technical";
|
|
59030
|
+
"whats-new": "whats-new";
|
|
58915
59031
|
}>;
|
|
58916
59032
|
type HandboekArea = z.infer<typeof HandboekAreaSchema>;
|
|
58917
59033
|
/**
|
|
@@ -58928,6 +59044,13 @@ declare const HandboekRenderModeSchema: z.ZodEnum<{
|
|
|
58928
59044
|
agent: "agent";
|
|
58929
59045
|
}>;
|
|
58930
59046
|
type HandboekRenderMode = z.infer<typeof HandboekRenderModeSchema>;
|
|
59047
|
+
/** Optional nested shelf used to organize entries inside a TOC area. */
|
|
59048
|
+
declare const HandboekTocSubcategorySchema: z.ZodObject<{
|
|
59049
|
+
id: z.ZodString;
|
|
59050
|
+
title: z.ZodString;
|
|
59051
|
+
order: z.ZodNumber;
|
|
59052
|
+
}, z.core.$strip>;
|
|
59053
|
+
type HandboekTocSubcategory = z.infer<typeof HandboekTocSubcategorySchema>;
|
|
58931
59054
|
declare const HandboekTocEntrySchema: z.ZodObject<{
|
|
58932
59055
|
id: z.ZodString;
|
|
58933
59056
|
title: z.ZodString;
|
|
@@ -58937,11 +59060,17 @@ declare const HandboekTocEntrySchema: z.ZodObject<{
|
|
|
58937
59060
|
"gezel-roles": "gezel-roles";
|
|
58938
59061
|
"project-types": "project-types";
|
|
58939
59062
|
technical: "technical";
|
|
59063
|
+
"whats-new": "whats-new";
|
|
58940
59064
|
}>;
|
|
58941
59065
|
order: z.ZodNumber;
|
|
58942
59066
|
summary: z.ZodOptional<z.ZodString>;
|
|
58943
59067
|
generated: z.ZodBoolean;
|
|
58944
59068
|
siteVisible: z.ZodOptional<z.ZodBoolean>;
|
|
59069
|
+
subcategory: z.ZodOptional<z.ZodObject<{
|
|
59070
|
+
id: z.ZodString;
|
|
59071
|
+
title: z.ZodString;
|
|
59072
|
+
order: z.ZodNumber;
|
|
59073
|
+
}, z.core.$strip>>;
|
|
58945
59074
|
}, z.core.$strip>;
|
|
58946
59075
|
type HandboekTocEntry = z.infer<typeof HandboekTocEntrySchema>;
|
|
58947
59076
|
declare const HandboekTocAreaSchema: z.ZodObject<{
|
|
@@ -58951,6 +59080,7 @@ declare const HandboekTocAreaSchema: z.ZodObject<{
|
|
|
58951
59080
|
"gezel-roles": "gezel-roles";
|
|
58952
59081
|
"project-types": "project-types";
|
|
58953
59082
|
technical: "technical";
|
|
59083
|
+
"whats-new": "whats-new";
|
|
58954
59084
|
}>;
|
|
58955
59085
|
title: z.ZodString;
|
|
58956
59086
|
entries: z.ZodArray<z.ZodObject<{
|
|
@@ -58962,11 +59092,17 @@ declare const HandboekTocAreaSchema: z.ZodObject<{
|
|
|
58962
59092
|
"gezel-roles": "gezel-roles";
|
|
58963
59093
|
"project-types": "project-types";
|
|
58964
59094
|
technical: "technical";
|
|
59095
|
+
"whats-new": "whats-new";
|
|
58965
59096
|
}>;
|
|
58966
59097
|
order: z.ZodNumber;
|
|
58967
59098
|
summary: z.ZodOptional<z.ZodString>;
|
|
58968
59099
|
generated: z.ZodBoolean;
|
|
58969
59100
|
siteVisible: z.ZodOptional<z.ZodBoolean>;
|
|
59101
|
+
subcategory: z.ZodOptional<z.ZodObject<{
|
|
59102
|
+
id: z.ZodString;
|
|
59103
|
+
title: z.ZodString;
|
|
59104
|
+
order: z.ZodNumber;
|
|
59105
|
+
}, z.core.$strip>>;
|
|
58970
59106
|
}, z.core.$strip>>;
|
|
58971
59107
|
}, z.core.$strip>;
|
|
58972
59108
|
type HandboekTocArea = z.infer<typeof HandboekTocAreaSchema>;
|
|
@@ -58978,6 +59114,7 @@ declare const HandboekTocSchema: z.ZodObject<{
|
|
|
58978
59114
|
"gezel-roles": "gezel-roles";
|
|
58979
59115
|
"project-types": "project-types";
|
|
58980
59116
|
technical: "technical";
|
|
59117
|
+
"whats-new": "whats-new";
|
|
58981
59118
|
}>;
|
|
58982
59119
|
title: z.ZodString;
|
|
58983
59120
|
entries: z.ZodArray<z.ZodObject<{
|
|
@@ -58989,11 +59126,17 @@ declare const HandboekTocSchema: z.ZodObject<{
|
|
|
58989
59126
|
"gezel-roles": "gezel-roles";
|
|
58990
59127
|
"project-types": "project-types";
|
|
58991
59128
|
technical: "technical";
|
|
59129
|
+
"whats-new": "whats-new";
|
|
58992
59130
|
}>;
|
|
58993
59131
|
order: z.ZodNumber;
|
|
58994
59132
|
summary: z.ZodOptional<z.ZodString>;
|
|
58995
59133
|
generated: z.ZodBoolean;
|
|
58996
59134
|
siteVisible: z.ZodOptional<z.ZodBoolean>;
|
|
59135
|
+
subcategory: z.ZodOptional<z.ZodObject<{
|
|
59136
|
+
id: z.ZodString;
|
|
59137
|
+
title: z.ZodString;
|
|
59138
|
+
order: z.ZodNumber;
|
|
59139
|
+
}, z.core.$strip>>;
|
|
58997
59140
|
}, z.core.$strip>>;
|
|
58998
59141
|
}, z.core.$strip>>;
|
|
58999
59142
|
}, z.core.$strip>;
|
|
@@ -59148,6 +59291,7 @@ declare const HandboekArticleSchema: z.ZodObject<{
|
|
|
59148
59291
|
"gezel-roles": "gezel-roles";
|
|
59149
59292
|
"project-types": "project-types";
|
|
59150
59293
|
technical: "technical";
|
|
59294
|
+
"whats-new": "whats-new";
|
|
59151
59295
|
}>;
|
|
59152
59296
|
summary: z.ZodOptional<z.ZodString>;
|
|
59153
59297
|
markdown: z.ZodString;
|
|
@@ -59276,6 +59420,7 @@ declare const HandboekHowDoIResponseSchema: z.ZodObject<{
|
|
|
59276
59420
|
"gezel-roles": "gezel-roles";
|
|
59277
59421
|
"project-types": "project-types";
|
|
59278
59422
|
technical: "technical";
|
|
59423
|
+
"whats-new": "whats-new";
|
|
59279
59424
|
}>;
|
|
59280
59425
|
summary: z.ZodOptional<z.ZodString>;
|
|
59281
59426
|
markdown: z.ZodString;
|
|
@@ -59395,4 +59540,4 @@ declare const HandboekHowDoIResponseSchema: z.ZodObject<{
|
|
|
59395
59540
|
}, z.core.$strip>;
|
|
59396
59541
|
type HandboekHowDoIResponse = z.infer<typeof HandboekHowDoIResponseSchema>;
|
|
59397
59542
|
|
|
59398
|
-
export { ArchiveExtractRequestSchema as $, type AdvanceWhen as A, xpForLevel as A0, AnswerQuestionRequestSchema as B, type CompassRegion as C, DeliverableKindSchema as D, type AppendTaskNoteRequest as E, type FileContextResponse as F, type GezelConfig as G, AppendTaskNoteRequestSchema as H, type AppendTaskNoteResponse as I, AppendTaskNoteResponseSchema as J, type AppliedProjectType as K, AppliedProjectTypeSchema as L, type MapDistrict as M, type NewCraftbookStep as N, type Outcome as O, type Project as P, type ApplyPatchToProjectWorkspaceFileRequest as Q, type Rect as R, type ScriptInputField as S, type ToolsetRuntime as T, ApplyPatchToProjectWorkspaceFileRequestSchema as U, type VillageAnchor as V, type ApplyProjectTypeRequest as W, ApplyProjectTypeRequestSchema as X, type ArchiveEntry as Y, ArchiveEntrySchema as Z, type ArchiveExtractRequest as _, type VillageOverride as a, type ChannelStatus as a$, type ArchiveExtractResponse as a0, ArchiveExtractResponseSchema as a1, type ArchiveListRequest as a2, ArchiveListRequestSchema as a3, type ArchiveListResponse as a4, ArchiveListResponseSchema as a5, type ArgSpec as a6, ArgSpecSchema as a7, type AskQuestionRequest as a8, AskQuestionRequestSchema as a9, type BehaviorId as aA, BehaviorIdSchema as aB, type BinaryDocumentCheck as aC, BinaryDocumentCheckSchema as aD, CANONICAL_PROFILES as aE, CRAFTBOOK_ROLE_META as aF, CRAFTBOOK_SCRIPTS_MAX_COUNT as aG, CRAFTBOOK_SCRIPTS_TOTAL_MAX_BYTES as aH, CRAFTBOOK_SCRIPT_MAX_BYTES as aI, CRAFTBOOK_TEST_FILENAME as aJ, CRAFTBOOK_TEST_SCHEMA_VERSION as aK, type CancelCodeReviewResponse as aL, CancelCodeReviewResponseSchema as aM, type CatalogItemDetail as aN, CatalogItemDetailSchema as aO, type CatalogItemIdentity as aP, CatalogItemIdentitySchema as aQ, type CatalogItemManifest as aR, CatalogItemManifestSchema as aS, type CatalogItemSummary as aT, CatalogItemSummarySchema as aU, type CatalogItemVersionInfo as aV, CatalogItemVersionInfoSchema as aW, type CatalogKind as aX, CatalogKindSchema as aY, type ChannelName as aZ, ChannelNameSchema as a_, type AskQuestionResponse as aa, AskQuestionResponseSchema as ab, type AudioCatalogModel as ac, AudioCatalogModelSchema as ad, type AudioEngineHealth as ae, AudioEngineHealthSchema as af, type AudioEngineStatusResponse as ag, AudioEngineStatusResponseSchema as ah, type AudioModelPullEvent as ai, AudioModelPullEventSchema as aj, type AudioSynthesizeMeta as ak, AudioSynthesizeMetaSchema as al, type AudioSynthesizeRequest as am, AudioSynthesizeRequestSchema as an, type AudioSynthesizeResponse as ao, AudioSynthesizeResponseSchema as ap, type AudioTranscribeRequest as aq, AudioTranscribeRequestSchema as ar, type AudioTranscribeResponse as as, AudioTranscribeResponseSchema as at, type AudioTranscribeSegment as au, AudioTranscribeSegmentSchema as av, type AudioVoice as aw, AudioVoiceSchema as ax, type BehaviorEntry as ay, BehaviorEntrySchema as az, type MapStreet as b, CompleteStepRequestSchema as b$, ChannelStatusSchema as b0, type ChannelsConfig as b1, ChannelsConfigSchema as b2, type ChatHistoryResponse as b3, ChatHistoryResponseSchema as b4, type ChatModelCategory as b5, ChatModelCategorySchema as b6, type ChatModelDs4Source as b7, ChatModelDs4SourceSchema as b8, type ChatModelIdentity as b9, type CodeReviewResponse as bA, CodeReviewResponseSchema as bB, CodeReviewSchema as bC, type CodeReviewStatus as bD, CodeReviewStatusSchema as bE, type CodeSymbol as bF, CodeSymbolSchema as bG, type CodexPermissionMode as bH, type CodexPermissionModeCompat as bI, CodexPermissionModeCompatSchema as bJ, CodexPermissionModeSchema as bK, type CodexSetupModelOption as bL, CodexSetupModelOptionSchema as bM, type CodexSetupState as bN, CodexSetupStateSchema as bO, type CodexSetupStatusResponse as bP, CodexSetupStatusResponseSchema as bQ, type CommandApprovalIntent as bR, CommandApprovalIntentSchema as bS, type CommandApprovalScope as bT, CommandApprovalScopeSchema as bU, type CommandShape as bV, CommandShapeSchema as bW, CompassRegionSchema as bX, type CompleteStepGateInfo as bY, CompleteStepGateInfoSchema as bZ, type CompleteStepRequest as b_, ChatModelIdentitySchema as ba, type ChatModelLlamaCppSource as bb, ChatModelLlamaCppSourceSchema as bc, type ChatModelManifest as bd, ChatModelManifestSchema as be, type ChatModelMlxSource as bf, ChatModelMlxSourceSchema as bg, type ChatModelOllamaSource as bh, ChatModelOllamaSourceSchema as bi, type ChatModelTuning as bj, type ChatModelTuningBase as bk, ChatModelTuningBaseSchema as bl, ChatModelTuningSchema as bm, type ChatModelVersionManifest as bn, ChatModelVersionManifestSchema as bo, type ChatSession as bp, ChatSessionSchema as bq, type ChatSessionSummary as br, ChatSessionSummarySchema as bs, type CodeReview as bt, type CodeReviewKind as bu, CodeReviewKindSchema as bv, type CodeReviewManifest as bw, CodeReviewManifestSchema as bx, type CodeReviewRecord as by, CodeReviewRecordSchema as bz, type MapPlaza as c, type CraftbookTestSetup as c$, type CompleteStepResponse as c0, CompleteStepResponseSchema as c1, type ConfigureCodexRequest as c2, ConfigureCodexRequestSchema as c3, type ConnectorTypeIdentity as c4, ConnectorTypeIdentitySchema as c5, type ConnectorTypeManifest as c6, ConnectorTypeManifestSchema as c7, type ConnectorTypeVersionManifest as c8, ConnectorTypeVersionManifestSchema as c9, type CraftbookScripts as cA, CraftbookScriptsSchema as cB, type CraftbookSpawn as cC, CraftbookSpawnSchema as cD, CraftbookStepSchema as cE, type CraftbookSuggestion as cF, CraftbookSuggestionSchema as cG, type CraftbookSummary as cH, CraftbookSummarySchema as cI, type CraftbookTemplateIdentity as cJ, CraftbookTemplateIdentitySchema as cK, type CraftbookTemplateManifest as cL, CraftbookTemplateManifestSchema as cM, type CraftbookTemplateVersionManifest as cN, CraftbookTemplateVersionManifestSchema as cO, type CraftbookTestCheck as cP, CraftbookTestCheckSchema as cQ, type CraftbookTestDeliverable as cR, CraftbookTestDeliverableSchema as cS, type CraftbookTestFixtureFile as cT, CraftbookTestFixtureFileSchema as cU, type CraftbookTestHistoryExpectation as cV, CraftbookTestHistoryExpectationSchema as cW, type CraftbookTestMockExpectation as cX, CraftbookTestMockExpectationSchema as cY, type CraftbookTestRubric as cZ, CraftbookTestRubricSchema as c_, type CopilotAvailability as ca, CopilotAvailabilitySchema as cb, type CopilotLoginEvent as cc, CopilotLoginEventSchema as cd, type CopyArtifactToWorkspaceRequest as ce, CopyArtifactToWorkspaceRequestSchema as cf, type CopyArtifactToWorkspaceResponse as cg, CopyArtifactToWorkspaceResponseSchema as ch, type CosmeticProposal as ci, CosmeticProposalSchema as cj, type CraftbookBasedOn as ck, CraftbookBasedOnSchema as cl, type CraftbookBranch as cm, CraftbookBranchSchema as cn, type CraftbookConnectorNeed as co, CraftbookConnectorNeedSchema as cp, type CraftbookRequirement as cq, type CraftbookRequirementContext as cr, CraftbookRequirementSchema as cs, type CraftbookResponse as ct, CraftbookResponseSchema as cu, type CraftbookRole as cv, CraftbookRoleSchema as cw, type CraftbookRunModes as cx, CraftbookRunModesSchema as cy, CraftbookSchema as cz, type MapBuilding as d, type DiscoveredSkill as d$, CraftbookTestSetupSchema as d0, type CraftbookTestSpec as d1, CraftbookTestSpecSchema as d2, type CraftbookTestSuccess as d3, CraftbookTestSuccessSchema as d4, type CraftbookTestWorker as d5, CraftbookTestWorkerSchema as d6, type CraftbookToolsetNeed as d7, CraftbookToolsetNeedSchema as d8, type CreateChatSessionRequest as d9, CustomMcpImportWarningSchema as dA, DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS as dB, DEFAULT_TUNING_PROFILE_ID as dC, type DeclineGrowthLevelUpRequest as dD, DeclineGrowthLevelUpRequestSchema as dE, type DeclinedProposalRecord as dF, DeclinedProposalRecordSchema as dG, type DelegateSecurityFindingRequest as dH, DelegateSecurityFindingRequestSchema as dI, type DelegateSecurityFindingResponse as dJ, DelegateSecurityFindingResponseSchema as dK, type DescribeFolderRequest as dL, DescribeFolderRequestSchema as dM, type DescribeFolderResponse as dN, DescribeFolderResponseSchema as dO, type DeviceSafetyPolicyConfig as dP, DeviceSafetyPolicySchema as dQ, type DiffFilesRequest as dR, DiffFilesRequestSchema as dS, type DiffFilesResponse as dT, DiffFilesResponseSchema as dU, type DisableSuggestedWorkRequest as dV, DisableSuggestedWorkRequestSchema as dW, type DiscoveredCommand as dX, DiscoveredCommandSchema as dY, type DiscoveredInstruction as dZ, DiscoveredInstructionSchema as d_, CreateChatSessionRequestSchema as da, type CreateCraftbookRequest as db, CreateCraftbookRequestSchema as dc, type CreateDocumentFolderRequest as dd, CreateDocumentFolderRequestSchema as de, type CreateGezelRequest as df, CreateGezelRequestSchema as dg, type CreatePreviewCapabilityRequest as dh, CreatePreviewCapabilityRequestSchema as di, type CreatePreviewCapabilityResponse as dj, CreatePreviewCapabilityResponseSchema as dk, type CreateProjectRequest as dl, CreateProjectRequestSchema as dm, type CreateScriptRequest as dn, CreateScriptRequestSchema as dp, type CreateScriptResponse as dq, CreateScriptResponseSchema as dr, type CreateTaskRequest as ds, CreateTaskRequestSchema as dt, type CreateTypedProjectRequest as du, CreateTypedProjectRequestSchema as dv, type CreateTypedProjectResponse as dw, CreateTypedProjectResponseSchema as dx, CredentialCapabilitySchema as dy, type CustomMcpImportWarning as dz, type ScriptOutputField as e, FileMapScopeSchema as e$, DiscoveredSkillSchema as e0, type DismissSuggestedWorkRequest as e1, DismissSuggestedWorkRequestSchema as e2, type DocumentExportOptions as e3, DocumentExportOptionsSchema as e4, type DocumentMediaExportRequest as e5, DocumentMediaExportRequestSchema as e6, type DocumentMediaExportSource as e7, DocumentMediaExportSourceSchema as e8, type DocumentSearchResult as e9, ExpectedDeliverableSchema as eA, type ExternalFolders as eB, ExternalFoldersSchema as eC, type FetchDiffRequest as eD, FetchDiffRequestSchema as eE, type FetchDiffResponse as eF, FetchDiffResponseSchema as eG, type FetchRepoRequest as eH, FetchRepoRequestSchema as eI, type FetchRepoResponse as eJ, FetchRepoResponseSchema as eK, type FetchUrlRequest as eL, FetchUrlRequestSchema as eM, type FetchUrlResponse as eN, FetchUrlResponseSchema as eO, type FileContextFinding as eP, FileContextFindingSchema as eQ, type FileContextImporter as eR, FileContextImporterSchema as eS, type FileContextRequest as eT, FileContextRequestSchema as eU, FileContextResponseSchema as eV, type FileMapRequest as eW, FileMapRequestSchema as eX, type FileMapResponse as eY, FileMapResponseSchema as eZ, type FileMapScope as e_, DocumentSearchResultSchema as ea, type DraftScriptRequest as eb, DraftScriptRequestSchema as ec, type DraftScriptResponse as ed, DraftScriptResponseSchema as ee, type DriveIndexEnrichmentRequest as ef, DriveIndexEnrichmentRequestSchema as eg, type DriveIndexEnrichmentResponse as eh, DriveIndexEnrichmentResponseSchema as ei, type DrySamplerConfig as ej, DrySamplerSchema as ek, type EnableSuggestedWorkRequest as el, EnableSuggestedWorkRequestSchema as em, type EngineConfig as en, EngineConfigSchema as eo, type EnsureGezelRequest as ep, EnsureGezelRequestSchema as eq, type EnsureGezelResponse as er, EnsureGezelResponseSchema as es, type Entity as et, EntitySchema as eu, type ErrorResponse as ev, ErrorResponseSchema as ew, type EvalHints as ex, EvalHintsSchema as ey, type ExpectedDeliverable as ez, type ScriptMeta as f, GezelTemplateIdentitySchema as f$, type FileReviewIssue as f0, FileReviewIssueSchema as f1, type FileReviewIssueSeverity as f2, FileReviewIssueSeveritySchema as f3, type FileReviewReply as f4, FileReviewReplySchema as f5, type FileReviewRequest as f6, FileReviewRequestSchema as f7, type FileReviewResponse as f8, FileReviewResponseSchema as f9, GATE_DEFAULT_MAX_ATTEMPTS as fA, type GateAttemptRecord as fB, GateCheckSchema as fC, GateScriptRefSchema as fD, type GateScriptResult as fE, GateScriptResultSchema as fF, type GateSpec as fG, GateSpecSchema as fH, type GenerateGezelAboutRequest as fI, GenerateGezelAboutRequestSchema as fJ, type GenerateGezelIconRequest as fK, GenerateGezelIconRequestSchema as fL, type GetScriptSourceResponse as fM, GetScriptSourceResponseSchema as fN, GezelConfigSchema as fO, type GezelGrowthResponse as fP, GezelGrowthResponseSchema as fQ, type GezelGrowthState as fR, GezelGrowthStateSchema as fS, type GezelGrowthSummary as fT, GezelGrowthSummarySchema as fU, GezelIconHistoryEntrySchema as fV, type GezelIconHistoryResponse as fW, GezelIconHistoryResponseSchema as fX, type GezelResponse as fY, GezelResponseSchema as fZ, type GezelTemplateIdentity as f_, type FileReviewWire as fa, FileReviewWireSchema as fb, type FindEntityRequest as fc, FindEntityRequestSchema as fd, type FindEntityResponse as fe, FindEntityResponseSchema as ff, type FindFilesRequest as fg, FindFilesRequestSchema as fh, type FindFilesResponse as fi, FindFilesResponseSchema as fj, type FindReferencesRequest as fk, FindReferencesRequestSchema as fl, type FindReferencesResponse as fm, FindReferencesResponseSchema as fn, type FindSimilarImagesRequest as fo, FindSimilarImagesRequestSchema as fp, type FindSimilarImagesResponse as fq, FindSimilarImagesResponseSchema as fr, type FindSymbolRequest as fs, FindSymbolRequestSchema as ft, type FindSymbolResponse as fu, FindSymbolResponseSchema as fv, type FitnessCheck as fw, FitnessCheckSchema as fx, type FlagSpec as fy, FlagSpecSchema as fz, type SecurityPolicy as g, GitHubCheckStatusResponseSchema as g$, type GezelTemplateManifest as g0, GezelTemplateManifestSchema as g1, type GezelTemplateVersionManifest as g2, GezelTemplateVersionManifestSchema as g3, type GezmodelBundleManifest as g4, GezmodelBundleManifestSchema as g5, type GezmodelEngine as g6, GezmodelEngineSchema as g7, type GezmodelFile as g8, GezmodelFileSchema as g9, type GitCommitDetailResponse as gA, GitCommitDetailResponseSchema as gB, type GitCommitRequest as gC, GitCommitRequestSchema as gD, type GitCommitResponse as gE, GitCommitResponseSchema as gF, type GitCompleteMergeRequest as gG, GitCompleteMergeRequestSchema as gH, type GitCompleteMergeResponse as gI, GitCompleteMergeResponseSchema as gJ, type GitConflictFile as gK, GitConflictFileSchema as gL, type GitConflictKind as gM, GitConflictKindSchema as gN, type GitConflictVersionsResponse as gO, GitConflictVersionsResponseSchema as gP, type GitDiscardRequest as gQ, GitDiscardRequestSchema as gR, type GitDiscardResponse as gS, GitDiscardResponseSchema as gT, type GitFetchResponse as gU, GitFetchResponseSchema as gV, type GitFileDiffResponse as gW, GitFileDiffResponseSchema as gX, type GitHubAuthMeta as gY, GitHubAuthMetaSchema as gZ, type GitHubCheckStatusResponse as g_, type GezmodelImportReview as ga, GezmodelImportReviewSchema as gb, type GezmodelLicense as gc, GezmodelLicenseSchema as gd, type GildeUpdateCheckOutcome as ge, GildeUpdateCheckOutcomeSchema as gf, type GildeUpdateCheckResult as gg, GildeUpdateCheckResultSchema as gh, type GildeUpdateStatusResponse as gi, GildeUpdateStatusResponseSchema as gj, type GitAbandonMergeResponse as gk, GitAbandonMergeResponseSchema as gl, type GitAiMergeRequest as gm, GitAiMergeRequestSchema as gn, type GitAiMergeResponse as go, GitAiMergeResponseSchema as gp, type GitBranchSwitchRequest as gq, GitBranchSwitchRequestSchema as gr, type GitBranchesResponse as gs, GitBranchesResponseSchema as gt, type GitChangeKind as gu, GitChangeKindSchema as gv, type GitChangesResponse as gw, GitChangesResponseSchema as gx, type GitCloneResponse as gy, GitCloneResponseSchema as gz, type ModelFitnessRecord as h, type GithubAiMergeRequest as h$, type GitHubCreateCommentRequest as h0, GitHubCreateCommentRequestSchema as h1, type GitHubCreateCommentResponse as h2, GitHubCreateCommentResponseSchema as h3, type GitHubCreatePullRequest as h4, GitHubCreatePullRequestSchema as h5, type GitHubCreatePullResponse as h6, GitHubCreatePullResponseSchema as h7, type GitHubCredentialSource as h8, type GitHubIdentity as h9, GitHubReposResponseSchema as hA, type GitHubWorkflowRun as hB, GitHubWorkflowRunSchema as hC, type GitLogEntry as hD, GitLogEntrySchema as hE, type GitLogResponse as hF, GitLogResponseSchema as hG, type GitMergeStateResponse as hH, GitMergeStateResponseSchema as hI, type GitPushResponse as hJ, GitPushResponseSchema as hK, type GitResolveConflictRequest as hL, GitResolveConflictRequestSchema as hM, type GitResolveConflictResponse as hN, GitResolveConflictResponseSchema as hO, type GitStatusResponse as hP, GitStatusResponseSchema as hQ, type GitSuggestMessageResponse as hR, GitSuggestMessageResponseSchema as hS, type GitSyncResponse as hT, GitSyncResponseSchema as hU, type GitSyncState as hV, GitSyncStateSchema as hW, type GitWorkingChange as hX, GitWorkingChangeSchema as hY, type GithubAbandonMergeResponse as hZ, GithubAbandonMergeResponseSchema as h_, type GitHubIdentityResponse as ha, GitHubIdentityResponseSchema as hb, GitHubIdentitySchema as hc, type GitHubLoginPollRequest as hd, GitHubLoginPollRequestSchema as he, type GitHubLoginPollResponse as hf, GitHubLoginPollResponseSchema as hg, type GitHubLoginStartResponse as hh, GitHubLoginStartResponseSchema as hi, type GitHubPullComment as hj, GitHubPullCommentSchema as hk, type GitHubPullDetail as hl, GitHubPullDetailSchema as hm, type GitHubPullDiffResponse as hn, GitHubPullDiffResponseSchema as ho, type GitHubPullFile as hp, GitHubPullFileSchema as hq, type GitHubPullSummary as hr, GitHubPullSummarySchema as hs, type GitHubRepoPreviewRequest as ht, GitHubRepoPreviewRequestSchema as hu, type GitHubRepoPreviewResponse as hv, GitHubRepoPreviewResponseSchema as hw, type GitHubRepoSummary as hx, GitHubRepoSummarySchema as hy, type GitHubReposResponse as hz, type GateScriptRef as i, GithubLoginPollResponseSchema as i$, GithubAiMergeRequestSchema as i0, type GithubAiMergeResponse as i1, GithubAiMergeResponseSchema as i2, type GithubAuthMeta as i3, GithubAuthMetaSchema as i4, type GithubBranchSwitchRequest as i5, GithubBranchSwitchRequestSchema as i6, type GithubBranchesResponse as i7, GithubBranchesResponseSchema as i8, type GithubChangeKind as i9, GithubCreateCommentRequestSchema as iA, type GithubCreateCommentResponse as iB, GithubCreateCommentResponseSchema as iC, type GithubCreatePullRequest as iD, GithubCreatePullRequestSchema as iE, type GithubCreatePullResponse as iF, GithubCreatePullResponseSchema as iG, type GithubCredentialSource as iH, type GithubDiscardRequest as iI, GithubDiscardRequestSchema as iJ, type GithubDiscardResponse as iK, GithubDiscardResponseSchema as iL, type GithubFetchResponse as iM, GithubFetchResponseSchema as iN, type GithubFileDiffResponse as iO, GithubFileDiffResponseSchema as iP, type GithubIdentity as iQ, type GithubIdentityResponse as iR, GithubIdentityResponseSchema as iS, GithubIdentitySchema as iT, type GithubLogEntry as iU, GithubLogEntrySchema as iV, type GithubLogResponse as iW, GithubLogResponseSchema as iX, type GithubLoginPollRequest as iY, GithubLoginPollRequestSchema as iZ, type GithubLoginPollResponse as i_, GithubChangeKindSchema as ia, type GithubChangesResponse as ib, GithubChangesResponseSchema as ic, type GithubCheckStatusResponse as id, GithubCheckStatusResponseSchema as ie, type GithubCloneResponse as ig, GithubCloneResponseSchema as ih, type GithubCommitDetailResponse as ii, GithubCommitDetailResponseSchema as ij, type GithubCommitRequest as ik, GithubCommitRequestSchema as il, type GithubCommitResponse as im, GithubCommitResponseSchema as io, type GithubCompleteMergeRequest as ip, GithubCompleteMergeRequestSchema as iq, type GithubCompleteMergeResponse as ir, GithubCompleteMergeResponseSchema as is, type GithubConflictFile as it, GithubConflictFileSchema as iu, type GithubConflictKind as iv, GithubConflictKindSchema as iw, type GithubConflictVersionsResponse as ix, GithubConflictVersionsResponseSchema as iy, type GithubCreateCommentRequest as iz, type ModelTier as j, HandboekFigureSchema as j$, type GithubLoginStartResponse as j0, GithubLoginStartResponseSchema as j1, type GithubMergeStateResponse as j2, GithubMergeStateResponseSchema as j3, type GithubPullComment as j4, GithubPullCommentSchema as j5, type GithubPullDetail as j6, GithubPullDetailSchema as j7, type GithubPullDiffResponse as j8, GithubPullDiffResponseSchema as j9, type GithubWorkflowRun as jA, GithubWorkflowRunSchema as jB, type GithubWorkingChange as jC, GithubWorkingChangeSchema as jD, type GpuProcessMemory as jE, GpuProcessMemorySchema as jF, type GpuProcessOwner as jG, GpuProcessOwnerSchema as jH, type GrepArtifactRequest as jI, GrepArtifactRequestSchema as jJ, type GrepArtifactResponse as jK, GrepArtifactResponseSchema as jL, type GrowthEvidence as jM, GrowthEvidenceSchema as jN, type GrowthProposal as jO, GrowthProposalSchema as jP, type GrowthSignals as jQ, GrowthSignalsSchema as jR, type GzelBundleItem as jS, GzelBundleItemSchema as jT, type GzelBundleManifest as jU, GzelBundleManifestSchema as jV, type HandboekArea as jW, HandboekAreaSchema as jX, type HandboekArticle as jY, HandboekArticleSchema as jZ, type HandboekFigure as j_, type GithubPullFile as ja, GithubPullFileSchema as jb, type GithubPullSummary as jc, GithubPullSummarySchema as jd, type GithubPushResponse as je, GithubPushResponseSchema as jf, type GithubRepoPreviewRequest as jg, GithubRepoPreviewRequestSchema as jh, type GithubRepoPreviewResponse as ji, GithubRepoPreviewResponseSchema as jj, type GithubRepoSummary as jk, GithubRepoSummarySchema as jl, type GithubReposResponse as jm, GithubReposResponseSchema as jn, type GithubResolveConflictRequest as jo, GithubResolveConflictRequestSchema as jp, type GithubResolveConflictResponse as jq, GithubResolveConflictResponseSchema as jr, type GithubStatusResponse as js, GithubStatusResponseSchema as jt, type GithubSuggestMessageResponse as ju, GithubSuggestMessageResponseSchema as jv, type GithubSyncResponse as jw, GithubSyncResponseSchema as jx, type GithubSyncState as jy, GithubSyncStateSchema as jz, type GateCheck as k, ImageModelIdentitySchema as k$, type HandboekHowDoIResponse as k0, HandboekHowDoIResponseSchema as k1, type HandboekNarrationResponse as k2, HandboekNarrationResponseSchema as k3, type HandboekNarrationSegment as k4, HandboekNarrationSegmentSchema as k5, type HandboekRenderMode as k6, HandboekRenderModeSchema as k7, type HandboekToc as k8, type HandboekTocArea as k9, HtmlLayerSchema as kA, HttpsOriginSchema as kB, type ImageEngineStatusResponse as kC, ImageEngineStatusResponseSchema as kD, type ImageExif as kE, ImageExifSchema as kF, type ImageGenerationApprovalIntent as kG, ImageGenerationApprovalIntentSchema as kH, type ImageGenerationMeta as kI, ImageGenerationMetaSchema as kJ, type ImageGenerationRequest as kK, ImageGenerationRequestSchema as kL, type ImageGenerationResponse as kM, ImageGenerationResponseSchema as kN, type ImageInputSource as kO, ImageInputSourceSchema as kP, type ImageLayer as kQ, ImageLayerSchema as kR, type ImageModelAuxiliaryFile as kS, ImageModelAuxiliaryFileSchema as kT, type ImageModelAuxiliaryRole as kU, ImageModelAuxiliaryRoleSchema as kV, type ImageModelCategory as kW, ImageModelCategorySchema as kX, type ImageModelHardwareTier as kY, ImageModelHardwareTierSchema as kZ, type ImageModelIdentity as k_, HandboekTocAreaSchema as ka, type HandboekTocEntry as kb, HandboekTocEntrySchema as kc, HandboekTocSchema as kd, type HealthResponse as ke, HealthResponseSchema as kf, type HistoryEntry as kg, HistoryEntrySchema as kh, type HistoryEvent as ki, HistoryEventEntrySchema as kj, type HistoryEventKind as kk, HistoryEventKindSchema as kl, HistoryEventSchema as km, type HistoryFilter as kn, HistoryFilterSchema as ko, type HistorySessionEntry as kp, HistorySessionEntrySchema as kq, type HookDecision as kr, HookDecisionSchema as ks, type HookPhase as kt, HookPhaseSchema as ku, type HookResult as kv, HookResultSchema as kw, type HookSpec as kx, HookSpecSchema as ky, type HtmlLayer as kz, type StepGate as l, type KeurmeesterCaseRecord as l$, type ImageModelManifest as l0, ImageModelManifestSchema as l1, type ImageModelPullEvent as l2, ImageModelPullEventSchema as l3, type ImageModelVersionManifest as l4, ImageModelVersionManifestSchema as l5, type ImageRecognition as l6, ImageRecognitionSchema as l7, type ImageStaticMeta as l8, ImageStaticMetaSchema as l9, type InstalledToolset as lA, InstalledToolsetSchema as lB, type InstalledVideoModel as lC, InstalledVideoModelSchema as lD, type InstructionMergeMode as lE, InstructionMergeModeSchema as lF, type InstructionSourceFile as lG, InstructionSourceFileSchema as lH, type InterruptSessionRequest as lI, InterruptSessionRequestSchema as lJ, type InvokePageToolRequest as lK, InvokePageToolRequestSchema as lL, type InvokePageToolResponse as lM, InvokePageToolResponseSchema as lN, type InvokeSessionToolRequest as lO, InvokeSessionToolRequestSchema as lP, type InvokeSessionToolResponse as lQ, InvokeSessionToolResponseSchema as lR, KNOWN_PROFILE_IDS as lS, type KeurmeesterAction as lT, KeurmeesterActionSchema as lU, type KeurmeesterCaseClosed as lV, KeurmeesterCaseClosedSchema as lW, type KeurmeesterCaseOpened as lX, KeurmeesterCaseOpenedSchema as lY, type KeurmeesterCaseOutcome as lZ, KeurmeesterCaseOutcomeSchema as l_, type ImportCustomMcpConfigRequest as la, ImportCustomMcpConfigRequestSchema as lb, type ImportCustomMcpConfigResponse as lc, ImportCustomMcpConfigResponseSchema as ld, type ImportProvenance as le, ImportProvenanceSchema as lf, type ImportedAboutProvenance as lg, ImportedAboutProvenanceSchema as lh, type ImportedCraftbookProvenance as li, ImportedCraftbookProvenanceSchema as lj, type ImportedGezelProvenance as lk, ImportedGezelProvenanceSchema as ll, type InsertAtMarkerInProjectWorkspaceFileRequest as lm, InsertAtMarkerInProjectWorkspaceFileRequestSchema as ln, type InstallPackageRequest as lo, InstallPackageRequestSchema as lp, type InstallPackageResponse as lq, InstallPackageResponseSchema as lr, type InstalledAudioModel as ls, InstalledAudioModelSchema as lt, type InstalledImageModel as lu, InstalledImageModelSchema as lv, type InstalledPackage as lw, InstalledPackageSchema as lx, type InstalledRecognitionModel as ly, InstalledRecognitionModelSchema as lz, type CraftbookStep as m, ListHistoryResponseSchema as m$, KeurmeesterCaseRecordSchema as m0, type KeurmeesterFailureClass as m1, KeurmeesterFailureClassSchema as m2, type KeurmeesterTriggerKind as m3, KeurmeesterTriggerKindSchema as m4, type KeurmeesterVerdict as m5, KeurmeesterVerdictSchema as m6, type KnownProfileId as m7, LEVEL_THRESHOLDS as m8, type Layer as m9, type ListEntityMentionsRequest as mA, ListEntityMentionsRequestSchema as mB, type ListEntityMentionsResponse as mC, ListEntityMentionsResponseSchema as mD, type ListFileIssuesRequest as mE, ListFileIssuesRequestSchema as mF, type ListFileIssuesResponse as mG, ListFileIssuesResponseSchema as mH, type ListGezelsResponse as mI, ListGezelsResponseSchema as mJ, type ListGitHubPullCommentsResponse as mK, ListGitHubPullCommentsResponseSchema as mL, type ListGitHubPullFilesResponse as mM, ListGitHubPullFilesResponseSchema as mN, type ListGitHubPullsResponse as mO, ListGitHubPullsResponseSchema as mP, type ListGitHubWorkflowRunsResponse as mQ, ListGitHubWorkflowRunsResponseSchema as mR, type ListGithubPullCommentsResponse as mS, ListGithubPullCommentsResponseSchema as mT, type ListGithubPullFilesResponse as mU, ListGithubPullFilesResponseSchema as mV, type ListGithubPullsResponse as mW, ListGithubPullsResponseSchema as mX, type ListGithubWorkflowRunsResponse as mY, ListGithubWorkflowRunsResponseSchema as mZ, type ListHistoryResponse as m_, LayerSchema as ma, type LegacyCodexPermissionMode as mb, LegacyCodexPermissionModeSchema as mc, type LicenseClass as md, LicenseClassSchema as me, LicenseMetaShape as mf, type ListActiveImagePullsResponse as mg, ListActiveImagePullsResponseSchema as mh, type ListActiveVideoPullsResponse as mi, ListActiveVideoPullsResponseSchema as mj, type ListAudioCatalogResponse as mk, ListAudioCatalogResponseSchema as ml, type ListAudioVoicesResponse as mm, ListAudioVoicesResponseSchema as mn, type ListCatalogItemVersionsResponse as mo, ListCatalogItemVersionsResponseSchema as mp, type ListCatalogItemsResponse as mq, ListCatalogItemsResponseSchema as mr, type ListChatSessionsResponse as ms, ListChatSessionsResponseSchema as mt, type ListCodeReviewsResponse as mu, ListCodeReviewsResponseSchema as mv, type ListCraftbooksResponse as mw, ListCraftbooksResponseSchema as mx, type ListDependenciesResponse as my, ListDependenciesResponseSchema as mz, type StepDeliverable as n, type MapRepoRequest as n$, type ListInstalledAudioModelsResponse as n0, ListInstalledAudioModelsResponseSchema as n1, type ListInstalledImageModelsResponse as n2, ListInstalledImageModelsResponseSchema as n3, type ListInstalledRecognitionModelsResponse as n4, ListInstalledRecognitionModelsResponseSchema as n5, type ListInstalledVideoModelsResponse as n6, ListInstalledVideoModelsResponseSchema as n7, type ListMentionCandidatesResponse as n8, ListMentionCandidatesResponseSchema as n9, type LlamaCppContextSizing as nA, type LlamaCppContextSizingResponse as nB, LlamaCppContextSizingResponseSchema as nC, LlamaCppContextSizingSchema as nD, type LlamaCppEngineConfig as nE, LlamaCppEngineConfigSchema as nF, type LocalEngineLifecycle as nG, LocalEngineLifecycleSchema as nH, MEESTER_STATUS_HEADLINE_MAX as nI, MODEL_TIER_ORDER as nJ, type MachineMemoryKind as nK, MachineMemoryKindSchema as nL, type MachineMemoryUsage as nM, MachineMemoryUsageSchema as nN, type MapAttackSurfaceResponse as nO, MapAttackSurfaceResponseSchema as nP, type MapBlock as nQ, type MapBlockHealth as nR, MapBlockHealthSchema as nS, MapBlockSchema as nT, MapBuildingSchema as nU, MapDistrictSchema as nV, MapPlazaSchema as nW, type MapPrChange as nX, MapPrChangeSchema as nY, type MapPrOverlay as nZ, MapPrOverlaySchema as n_, type ListModelsResponse as na, ListModelsResponseSchema as nb, type ListPackageScriptsResponse as nc, ListPackageScriptsResponseSchema as nd, type ListProjectsForGezelResponse as ne, ListProjectsForGezelResponseSchema as nf, type ListProjectsResponse as ng, ListProjectsResponseSchema as nh, type ListQuestionsResponse as ni, ListQuestionsResponseSchema as nj, type ListRecognitionCatalogResponse as nk, ListRecognitionCatalogResponseSchema as nl, type ListScriptsResponse as nm, ListScriptsResponseSchema as nn, type ListSessionQueueResponse as no, ListSessionQueueResponseSchema as np, type ListSessionToolsResponse as nq, ListSessionToolsResponseSchema as nr, type ListTaskNotesResponse as ns, ListTaskNotesResponseSchema as nt, type ListTasksResponse as nu, ListTasksResponseSchema as nv, type ListTerminalThreadsResponse as nw, ListTerminalThreadsResponseSchema as nx, type ListTimelineResponse as ny, ListTimelineResponseSchema as nz, type Craftbook as o, type NativeEngineResolveEvent as o$, MapRepoRequestSchema as o0, type MapRepoResponse as o1, MapRepoResponseSchema as o2, type MapRoad as o3, MapRoadSchema as o4, MapStreetSchema as o5, type MapUrbanity as o6, MapUrbanitySchema as o7, type McpToolInfo as o8, McpToolInfoSchema as o9, MockServiceSchema as oA, type ModelContextOverrideUpdate as oB, ModelContextOverrideUpdateSchema as oC, type ModelContextOverridesResponse as oD, ModelContextOverridesResponseSchema as oE, type ModelDownloadPreflightRequest as oF, ModelDownloadPreflightRequestSchema as oG, type ModelDownloadPreflightResponse as oH, ModelDownloadPreflightResponseSchema as oI, type ModelFamily as oJ, ModelFamilySchema as oK, ModelFitnessRecordSchema as oL, type ModelFitnessStatus as oM, ModelFitnessStatusSchema as oN, type ModelFitnessTrigger as oO, ModelFitnessTriggerSchema as oP, type ModelInfo as oQ, ModelInfoSchema as oR, type ModelStyle as oS, ModelStyleSchema as oT, ModelTierSchema as oU, type NamedScriptCapability as oV, NamedScriptCapabilitySchema as oW, type NativeEngineInstallStatus as oX, NativeEngineInstallStatusSchema as oY, type NativeEngineName as oZ, NativeEngineNameSchema as o_, type MeesterStatusAction as oa, MeesterStatusActionSchema as ob, type MeesterStatusCta as oc, MeesterStatusCtaSchema as od, type MeesterStatusModelOutput as oe, MeesterStatusModelOutputSchema as of, type MeesterStatusReport as og, MeesterStatusReportSchema as oh, type MeesterStatusResponse as oi, MeesterStatusResponseSchema as oj, type MeesterStatusState as ok, MeesterStatusStateSchema as ol, type MentionCandidate as om, MentionCandidateSchema as on, type MessageGezelRequest as oo, MessageGezelRequestSchema as op, type MessageGezelResponse as oq, MessageGezelResponseSchema as or, type MessageImageDigest as os, MessageImageDigestSchema as ot, MinGezelVersionShape as ou, type MlxRuntimeStatus as ov, MlxRuntimeStatusSchema as ow, type MockHttpRoute as ox, MockHttpRouteSchema as oy, type MockService as oz, type Task as p, ProjectActivitySchema as p$, NativeEngineResolveEventSchema as p0, type NativeEngineStatusResponse as p1, NativeEngineStatusResponseSchema as p2, NewCraftbookStepSchema as p3, type NewTaskFanout as p4, NewTaskFanoutSchema as p5, type NewTaskStep as p6, NewTaskStepSchema as p7, type NightShiftBackgroundWorkBrief as p8, NightShiftBackgroundWorkBriefSchema as p9, type PageCheckResponse as pA, PageCheckResponseSchema as pB, type ParseCraftbookTestSpecOptions as pC, type ParseCraftbookTestSpecResult as pD, type PendingImportItem as pE, PendingImportItemSchema as pF, type PendingImports as pG, PendingImportsSchema as pH, type PendingLevelUp as pI, PendingLevelUpSchema as pJ, type PendingPersona as pK, PendingPersonaSchema as pL, type PendingScript as pM, PendingScriptSchema as pN, type PixelsLayer as pO, PixelsLayerSchema as pP, type PreviewLogEntry as pQ, PreviewLogEntrySchema as pR, type PreviewSource as pS, PreviewSourceSchema as pT, type ProfileKind as pU, type ProfileMeta as pV, type ProjectAboutPreviewRequest as pW, ProjectAboutPreviewRequestSchema as pX, type ProjectAboutPreviewResponse as pY, ProjectAboutPreviewResponseSchema as pZ, type ProjectActivity as p_, type NightShiftCompletedTask as pa, NightShiftCompletedTaskSchema as pb, type NightShiftReport as pc, NightShiftReportSchema as pd, type NightShiftReviewIntent as pe, NightShiftReviewIntentSchema as pf, type NightShiftReviewResponse as pg, NightShiftReviewResponseSchema as ph, type NightShiftTaskBrief as pi, NightShiftTaskBriefSchema as pj, type NightShiftTasksResponse as pk, NightShiftTasksResponseSchema as pl, type NodeScriptPassesCheck as pm, NodeScriptPassesCheckSchema as pn, type NormalizedStepGate as po, type NpmInstallApprovalDecision as pp, NpmInstallApprovalDecisionSchema as pq, type NpmInstallApprovalPackage as pr, NpmInstallApprovalPackageSchema as ps, OutcomeSchema as pt, type OutlineFileRequest as pu, OutlineFileRequestSchema as pv, type OutlineFileResponse as pw, OutlineFileResponseSchema as px, type PageCheckRequest as py, PageCheckRequestSchema as pz, type AcceptGrowthProposalRequest as q, QuestionIntentSchema as q$, type ProjectApprovalsResponse as q0, ProjectApprovalsResponseSchema as q1, type ProjectConnectorBinding as q2, ProjectConnectorBindingSchema as q3, type ProjectCraftbookProvenance as q4, ProjectCraftbookProvenanceSchema as q5, type ProjectDetail as q6, ProjectDetailSchema as q7, type ProjectFileEntry as q8, ProjectFileEntrySchema as q9, ProjectTypeIdentitySchema as qA, type ProjectTypeManifest as qB, ProjectTypeManifestSchema as qC, type ProjectTypePages as qD, ProjectTypePagesSchema as qE, type ProjectTypePreviewRead as qF, ProjectTypePreviewReadSchema as qG, type ProjectTypeProvenance as qH, ProjectTypeProvenanceSchema as qI, type ProjectTypeSchedule as qJ, ProjectTypeScheduleSchema as qK, type ProjectTypeTool as qL, type ProjectTypeToolReaction as qM, ProjectTypeToolReactionSchema as qN, ProjectTypeToolSchema as qO, type ProjectTypeToolsetRef as qP, ProjectTypeToolsetSchema as qQ, type ProjectTypeVersionManifest as qR, ProjectTypeVersionManifestSchema as qS, type PrometheusAlertsCheck as qT, PrometheusAlertsCheckSchema as qU, type PromptTags as qV, PromptTagsSchema as qW, type Question as qX, type QuestionAnswer as qY, QuestionAnswerSchema as qZ, type QuestionIntent as q_, type ProjectFolderPreviewRequest as qa, ProjectFolderPreviewRequestSchema as qb, type ProjectFolderPreviewResponse as qc, ProjectFolderPreviewResponseSchema as qd, type ProjectForGezel as qe, ProjectForGezelSchema as qf, type ProjectGitHub as qg, ProjectGitHubSchema as qh, type ProjectGithub as qi, ProjectGithubSchema as qj, type ProjectLocalConfig as qk, ProjectLocalConfigSchema as ql, type ProjectNudgeConfig as qm, ProjectNudgeConfigSchema as qn, type ProjectNudgeState as qo, ProjectNudgeStateSchema as qp, type ProjectResponse as qq, ProjectResponseSchema as qr, ProjectSchema as qs, type ProjectTabVisibility as qt, ProjectTabVisibilitySchema as qu, type ProjectTypeCategory as qv, ProjectTypeCategorySchema as qw, type ProjectTypeGezelRef as qx, ProjectTypeGezelSchema as qy, type ProjectTypeIdentity as qz, AcceptGrowthProposalRequestSchema as r, type RenderImageResponse as r$, QuestionSchema as r0, type QueuedMessage as r1, QueuedMessageSchema as r2, type ReadArtifactSliceOpts as r3, ReadArtifactSliceOptsSchema as r4, type ReadArtifactSliceResponse as r5, ReadArtifactSliceResponseSchema as r6, type ReadDocAsMarkdownRequest as r7, ReadDocAsMarkdownRequestSchema as r8, type ReadDocAsMarkdownResponse as r9, type RecognitionMode as rA, type RecognitionModeRequest as rB, RecognitionModeRequestSchema as rC, RecognitionModeSchema as rD, type RecognitionPullEvent as rE, RecognitionPullEventSchema as rF, type RecognitionRequest as rG, RecognitionRequestSchema as rH, type RecognitionResponse as rI, RecognitionResponseSchema as rJ, RectSchema as rK, type ReferenceFileLocationRequest as rL, ReferenceFileLocationRequestSchema as rM, type ReferenceFileLocationResponse as rN, ReferenceFileLocationResponseSchema as rO, type ReferencePreviewRequest as rP, ReferencePreviewRequestSchema as rQ, type ReferencePreviewResponse as rR, ReferencePreviewResponseSchema as rS, type RemoteServingConfig as rT, RemoteServingConfigSchema as rU, type RenameDocumentRequest as rV, RenameDocumentRequestSchema as rW, type RenameGezelRequest as rX, RenameGezelRequestSchema as rY, type RenderImageRequest as rZ, RenderImageRequestSchema as r_, ReadDocAsMarkdownResponseSchema as ra, type ReadImageBase64Request as rb, ReadImageBase64RequestSchema as rc, type ReadImageBase64Response as rd, ReadImageBase64ResponseSchema as re, type ReadSymbolRequest as rf, ReadSymbolRequestSchema as rg, type ReadSymbolResponse as rh, ReadSymbolResponseSchema as ri, type ReadWorkspaceFilesRequest as rj, ReadWorkspaceFilesRequestSchema as rk, type ReadWorkspaceFilesResponse as rl, ReadWorkspaceFilesResponseSchema as rm, type ReasoningBlock as rn, ReasoningBlockSchema as ro, type ReasoningFormat as rp, ReasoningFormatSchema as rq, type RecentTab as rr, type RecentTabArea as rs, RecentTabAreaSchema as rt, RecentTabSchema as ru, RecoMetaShape as rv, type RecognitionCatalogEntry as rw, RecognitionCatalogEntrySchema as rx, type RecognitionHealth as ry, RecognitionHealthSchema as rz, type ActiveImagePull as s, type ScheduleApprovalIntent as s$, RenderImageResponseSchema as s0, type ReplaceInProjectWorkspaceFileRequest as s1, ReplaceInProjectWorkspaceFileRequestSchema as s2, type ReplaceLinesInProjectWorkspaceFileRequest as s3, ReplaceLinesInProjectWorkspaceFileRequestSchema as s4, type ReportPreviewLogRequest as s5, ReportPreviewLogRequestSchema as s6, type RequestAskRequest as s7, RequestAskRequestSchema as s8, type RequestAskResponse as s9, RunGitResponseSchema as sA, type RunNpxRequest as sB, RunNpxRequestSchema as sC, type RunNpxResponse as sD, RunNpxResponseSchema as sE, type RunPackageScriptRequest as sF, RunPackageScriptRequestSchema as sG, type RunPackageScriptResponse as sH, RunPackageScriptResponseSchema as sI, type RunScriptRequest as sJ, RunScriptRequestSchema as sK, type RunScriptResponse as sL, RunScriptResponseSchema as sM, type RunTerminalCommandRequest as sN, RunTerminalCommandRequestSchema as sO, type RunTerminalCommandResponse as sP, RunTerminalCommandResponseSchema as sQ, type SamplingBlock as sR, SamplingBlockSchema as sS, type SaveScriptSourceRequest as sT, SaveScriptSourceRequestSchema as sU, type SaveScriptSourceResponse as sV, SaveScriptSourceResponseSchema as sW, type ScanFindingsRequest as sX, ScanFindingsRequestSchema as sY, type ScanFindingsResponse as sZ, ScanFindingsResponseSchema as s_, RequestAskResponseSchema as sa, type RequestPermissionRequest as sb, RequestPermissionRequestSchema as sc, type RequestPermissionResponse as sd, RequestPermissionResponseSchema as se, type RerollGezelPoppetjeRequest as sf, RerollGezelPoppetjeRequestSchema as sg, type ResidentEngineModel as sh, ResidentEngineModelSchema as si, type ResolveArtifactResponse as sj, ResolveArtifactResponseSchema as sk, type ResolveSecurityFindingRequest as sl, ResolveSecurityFindingRequestSchema as sm, type ResolveSecurityFindingResponse as sn, ResolveSecurityFindingResponseSchema as so, type RevertGezelIconRequest as sp, RevertGezelIconRequestSchema as sq, type RewriteTextContext as sr, RewriteTextContextSchema as ss, type RewriteTextRequest as st, RewriteTextRequestSchema as su, type RewriteTextResponse as sv, RewriteTextResponseSchema as sw, type RunGitRequest as sx, RunGitRequestSchema as sy, type RunGitResponse as sz, ActiveImagePullSchema as t, SearchFilesContextLineSchema as t$, ScheduleApprovalIntentSchema as t0, type ScheduleMaterialization as t1, ScheduleMaterializationSchema as t2, ScriptArrayOutputSchema as t3, ScriptBooleanInputSchema as t4, ScriptBooleanOutputSchema as t5, type ScriptCapability as t6, ScriptCapabilitySchema as t7, ScriptChoiceInputSchema as t8, type ScriptDiagnostic as t9, ScriptRunCallSchema as tA, ScriptRunSchema as tB, type ScriptRunStatus as tC, ScriptRunStatusSchema as tD, type ScriptRunTrigger as tE, ScriptRunTriggerSchema as tF, type ScriptScope as tG, ScriptScopeSchema as tH, ScriptStringInputSchema as tI, ScriptStringOutputSchema as tJ, type ScriptTemplateId as tK, ScriptTemplateIdSchema as tL, type SdkTypesResponse as tM, SdkTypesResponseSchema as tN, type SearchCodeRequest as tO, SearchCodeRequestSchema as tP, type SearchCodeResponse as tQ, SearchCodeResponseSchema as tR, type SearchDocsRequest as tS, SearchDocsRequestSchema as tT, type SearchDocsResponse as tU, SearchDocsResponseSchema as tV, type SearchDocumentsRequest as tW, SearchDocumentsRequestSchema as tX, type SearchDocumentsResponse as tY, SearchDocumentsResponseSchema as tZ, type SearchFilesContextLine as t_, ScriptDiagnosticSchema as ta, ScriptInputError as tb, ScriptInputFieldSchema as tc, type ScriptInputs as td, ScriptInputsSchema as te, ScriptJsonInputSchema as tf, ScriptJsonOutputSchema as tg, ScriptMetaSchema as th, ScriptNameSchema as ti, ScriptNumberInputSchema as tj, ScriptNumberOutputSchema as tk, ScriptObjectOutputSchema as tl, ScriptOutputFieldSchema as tm, type ScriptOutputPredicate as tn, ScriptOutputPredicateSchema as to, type ScriptOutputs as tp, ScriptOutputsSchema as tq, type ScriptProvenance as tr, ScriptProvenanceSchema as ts, type ScriptRef as tt, ScriptRefInputSchema as tu, type ScriptRefList as tv, ScriptRefListSchema as tw, ScriptRefSchema as tx, type ScriptRun as ty, type ScriptRunCall as tz, type ActiveVideoPull as u, SharedModelMigrationCandidateSchema as u$, type SearchFilesMatch as u0, SearchFilesMatchSchema as u1, type SearchFilesRequest as u2, SearchFilesRequestSchema as u3, type SearchFilesResponse as u4, SearchFilesResponseSchema as u5, type SearchImagesRequest as u6, SearchImagesRequestSchema as u7, type SearchImagesResponse as u8, SearchImagesResponseSchema as u9, type SendChatRequest as uA, SendChatRequestSchema as uB, type SendChatResponse as uC, SendChatResponseSchema as uD, type SendToSessionRequest as uE, SendToSessionRequestSchema as uF, type SendToSessionResponse as uG, SendToSessionResponseSchema as uH, type ServiceRole as uI, ServiceRoleSchema as uJ, type SessionDebugSnapshot as uK, SessionDebugSnapshotSchema as uL, type SessionGpuTask as uM, SessionGpuTaskSchema as uN, type SessionSearchResult as uO, SessionSearchResultSchema as uP, type SessionTelemetry as uQ, type SessionTelemetryListResponse as uR, SessionTelemetryListResponseSchema as uS, SessionTelemetrySchema as uT, type SessionTurnTelemetry as uU, SessionTurnTelemetrySchema as uV, type SetTaskStatusRequest as uW, SetTaskStatusRequestSchema as uX, type Settlement as uY, SettlementSchema as uZ, type SharedModelMigrationCandidate as u_, type SearchResult as ua, SearchResultSchema as ub, type SearchSessionsRequest as uc, SearchSessionsRequestSchema as ud, type SearchSessionsResponse as ue, SearchSessionsResponseSchema as uf, type SecurityDependency as ug, SecurityDependencySchema as uh, SecurityFindingSchema as ui, type SecurityFindingStatus as uj, SecurityFindingStatusSchema as uk, type SecurityFindingWire as ul, type SecurityOverviewResponse as um, SecurityOverviewResponseSchema as un, SecurityPolicySchema as uo, type SecurityScanRequest as up, SecurityScanRequestSchema as uq, type SecurityScanResponse as ur, SecurityScanResponseSchema as us, SecuritySeveritySchema as ut, type SecuritySeverityWire as uu, SecuritySourceSchema as uv, type SendChannelMessageRequest as uw, SendChannelMessageRequestSchema as ux, type SendChannelMessageResponse as uy, SendChannelMessageResponseSchema as uz, ActiveVideoPullSchema as v, TaskCronOverlapSchema as v$, type SharedModelMigrationCandidatesResponse as v0, SharedModelMigrationCandidatesResponseSchema as v1, type SharedModelMigrationRequest as v2, SharedModelMigrationRequestSchema as v3, type SharedModelMigrationResult as v4, SharedModelMigrationResultSchema as v5, type SharedModelMigrationSource as v6, SharedModelMigrationSourceSchema as v7, type SpawnTaskInstancesRequest as v8, SpawnTaskInstancesRequestSchema as v9, SuggestedWorkStateSchema as vA, type SvgLayer as vB, SvgLayerSchema as vC, type SymbolContext as vD, SymbolContextSchema as vE, type SystemBootstrapStatus as vF, SystemBootstrapStatusSchema as vG, type SystemDiagnostics as vH, SystemDiagnosticsSchema as vI, type SystemHomeInfo as vJ, SystemHomeInfoSchema as vK, type SystemToolsetInstallEvent as vL, SystemToolsetInstallEventSchema as vM, type SystemToolsetInstallPhase as vN, type SystemToolsetInstallSnapshot as vO, SystemToolsetInstallSnapshotSchema as vP, TOOL_CALL_DIFF_MAX_BYTES as vQ, type TaskAssignee as vR, TaskAssigneeSchema as vS, type TaskCraftbook as vT, TaskCraftbookSchema as vU, type TaskCraftbookSource as vV, TaskCraftbookSourceSchema as vW, type TaskCraftbookStep as vX, TaskCraftbookStepSchema as vY, type TaskCron as vZ, type TaskCronOverlap as v_, type StartCodeReviewRequest as va, StartCodeReviewRequestSchema as vb, type StartCodeReviewResponse as vc, StartCodeReviewResponseSchema as vd, StepDeliverableSchema as ve, StepGateSchema as vf, type StepGateUnion as vg, StepGateUnionSchema as vh, type StepPatch as vi, type StepPosition as vj, StepPositionSchema as vk, type StepSniff as vl, StepSniffSchema as vm, type StructuredOutput as vn, StructuredOutputSchema as vo, type SuggestCraftbooksResponse as vp, SuggestCraftbooksResponseSchema as vq, type SuggestedCraftbook as vr, SuggestedCraftbookSchema as vs, type SuggestedWorkItem as vt, SuggestedWorkItemSchema as vu, type SuggestedWorkResponse as vv, SuggestedWorkResponseSchema as vw, type SuggestedWorkSource as vx, SuggestedWorkSourceSchema as vy, type SuggestedWorkState as vz, type AdoptedTraitRecord as w, type ToolsetManifest as w$, TaskCronSchema as w0, type TaskFanout as w1, TaskFanoutSchema as w2, type TaskNightShift as w3, TaskNightShiftSchema as w4, type TaskNote as w5, type TaskNoteAuthor as w6, TaskNoteAuthorSchema as w7, TaskNoteSchema as w8, type TaskPausedIntent as w9, TerminalRunStartedEventSchema as wA, type TerminalThread as wB, TerminalThreadSchema as wC, type TerminalThreadSummary as wD, TerminalThreadSummarySchema as wE, type TerminalTimelineEntry as wF, TerminalTimelineEntrySchema as wG, type TerminalWorkingDirChangedEvent as wH, TerminalWorkingDirChangedEventSchema as wI, type TextLayer as wJ, TextLayerSchema as wK, type TimelineMessage as wL, TimelineMessageSchema as wM, type ToolCallFormat as wN, ToolCallFormatSchema as wO, type ToolPermissionIntent as wP, ToolPermissionIntentSchema as wQ, type ToolsetCategory as wR, ToolsetCategorySchema as wS, type ToolsetConfig as wT, type ToolsetConfigField as wU, ToolsetConfigFieldSchema as wV, ToolsetConfigSchema as wW, type ToolsetIdentity as wX, ToolsetIdentitySchema as wY, type ToolsetInstallApprovalIntent as wZ, ToolsetInstallApprovalIntentSchema as w_, TaskPausedIntentSchema as wa, type TaskPausedReason as wb, TaskPausedReasonSchema as wc, TaskRefSchema as wd, type TaskResponse as we, TaskResponseSchema as wf, TaskSchema as wg, type TaskStatus as wh, TaskStatusSchema as wi, type TaskVariation as wj, TaskVariationSchema as wk, type TerminalEventEnvelope as wl, TerminalEventEnvelopeSchema as wm, type TerminalFileReference as wn, TerminalFileReferenceSchema as wo, type TerminalInputRequestedEvent as wp, TerminalInputRequestedEventSchema as wq, type TerminalMessage as wr, type TerminalMessageEvent as ws, TerminalMessageEventSchema as wt, TerminalMessageSchema as wu, type TerminalOpenFileEvent as wv, TerminalOpenFileEventSchema as ww, type TerminalOutputChunkEvent as wx, TerminalOutputChunkEventSchema as wy, type TerminalRunStartedEvent as wz, AdoptedTraitRecordSchema as x, type UpdateTaskRequest as x$, ToolsetManifestSchema as x0, type ToolsetPlatform as x1, ToolsetPlatformSchema as x2, ToolsetRuntimeSchema as x3, type ToolsetVersionManifest as x4, ToolsetVersionManifestSchema as x5, type ToolsetsScope as x6, ToolsetsScopeSchema as x7, type TraceTaintRequest as x8, TraceTaintRequestSchema as x9, UpdateConfigRequestSchema as xA, type UpdateCraftbookRequest as xB, UpdateCraftbookRequestSchema as xC, type UpdateGezelAboutRequest as xD, UpdateGezelAboutRequestSchema as xE, type UpdateGezelFixedFunctionDefaultsRequest as xF, UpdateGezelFixedFunctionDefaultsRequestSchema as xG, type UpdateGezelIconRequest as xH, UpdateGezelIconRequestSchema as xI, type UpdateGezelMarkdownRequest as xJ, UpdateGezelMarkdownRequestSchema as xK, type UpdateGezelPoppetjeRequest as xL, UpdateGezelPoppetjeRequestSchema as xM, type UpdateGezelSettingsRequest as xN, UpdateGezelSettingsRequestSchema as xO, type UpdateProjectRequest as xP, UpdateProjectRequestSchema as xQ, type UpdateQueuedMessageRequest as xR, UpdateQueuedMessageRequestSchema as xS, type UpdateQueuedMessageResponse as xT, UpdateQueuedMessageResponseSchema as xU, type UpdateTaskCraftbookRequest as xV, UpdateTaskCraftbookRequestSchema as xW, type UpdateTaskNoteRequest as xX, UpdateTaskNoteRequestSchema as xY, type UpdateTaskNoteResponse as xZ, UpdateTaskNoteResponseSchema as x_, type TraceTaintResponse as xa, TraceTaintResponseSchema as xb, type TraitProposal as xc, TraitProposalSchema as xd, type TransformStreamEvent as xe, TransformStreamEventSchema as xf, type TransformTextMode as xg, TransformTextModeSchema as xh, type TransformTextRequest as xi, TransformTextRequestSchema as xj, type TuningAction as xk, TuningActionSchema as xl, type TuningProfileId as xm, TuningProfileIdSchema as xn, type TuningProposal as xo, TuningProposalSchema as xp, UNIFIED_SEARCH_RESULT_KINDS as xq, type UnifiedSearchRequest as xr, UnifiedSearchRequestSchema as xs, type UnifiedSearchResponse as xt, UnifiedSearchResponseSchema as xu, type UnifiedSearchResult as xv, type UnifiedSearchResultKind as xw, UnifiedSearchResultKindSchema as xx, UnifiedSearchResultSchema as xy, type UpdateConfigRequest as xz, AdvanceWhenSchema as y, type WorkspaceCommandShapes as y$, UpdateTaskRequestSchema as y0, type UpdateTaskStepRequest as y1, UpdateTaskStepRequestSchema as y2, type UpdateTaskStepResponse as y3, UpdateTaskStepResponseSchema as y4, VILLAGE_FILE_ABOUT as y5, VILLAGE_FILE_SCHEMA_VERSION as y6, type VideoAccelerator as y7, VideoAcceleratorSchema as y8, type VideoEngineStatusResponse as y9, type VillageDomainState as yA, VillageDomainStateSchema as yB, type VillageDowntown as yC, VillageDowntownSchema as yD, type VillageFile as yE, VillageFileSchema as yF, type VillageJournalNode as yG, VillageJournalNodeSchema as yH, VillageOverrideSchema as yI, WORKSPACE_READ_DEADLINE_MS as yJ, WORKSPACE_READ_MAX_BATCH_LINES as yK, WORKSPACE_READ_MAX_BATCH_RESULT_BYTES as yL, WORKSPACE_READ_MAX_BATCH_SCAN_BYTES as yM, WORKSPACE_READ_MAX_FILES as yN, WORKSPACE_READ_MAX_RANGE_LINES as yO, WORKSPACE_READ_MAX_RESULT_BYTES as yP, WORKSPACE_READ_MAX_SCAN_BYTES as yQ, type WebSearchRequest as yR, WebSearchRequestSchema as yS, type WebSearchResponse as yT, WebSearchResponseSchema as yU, type WebhookChannelConfig as yV, WebhookChannelConfigSchema as yW, type WikipediaSearchRequest as yX, WikipediaSearchRequestSchema as yY, type WorkspaceCommandIndex as yZ, WorkspaceCommandIndexSchema as y_, VideoEngineStatusResponseSchema as ya, type VideoGenerationApprovalIntent as yb, VideoGenerationApprovalIntentSchema as yc, type VideoGenerationMeta as yd, VideoGenerationMetaSchema as ye, type VideoGenerationRequest as yf, VideoGenerationRequestSchema as yg, type VideoGenerationResponse as yh, VideoGenerationResponseSchema as yi, type VideoInputSource as yj, VideoInputSourceSchema as yk, type VideoModelFamily as yl, VideoModelFamilySchema as ym, type VideoModelIdentity as yn, VideoModelIdentitySchema as yo, type VideoModelLoad as yp, VideoModelLoadSchema as yq, type VideoModelManifest as yr, VideoModelManifestSchema as ys, type VideoModelPullEvent as yt, VideoModelPullEventSchema as yu, type VideoModelSource as yv, VideoModelSourceSchema as yw, type VideoModelVersionManifest as yx, VideoModelVersionManifestSchema as yy, VillageAnchorSchema as yz, type AnswerQuestionRequest as z, validateScriptInput as z$, WorkspaceCommandShapesSchema as z0, type WorkspaceEditResponse as z1, WorkspaceEditResponseSchema as z2, type WorkspaceIndexMeta as z3, WorkspaceIndexMetaSchema as z4, type WorkspaceIndexStatus as z5, WorkspaceIndexStatusSchema as z6, type WorkspaceInstructionIndex as z7, WorkspaceInstructionIndexSchema as z8, type WorkspaceReadFileError as z9, isSemver as zA, levelForXp as zB, modelFitnessKey as zC, normalizeCodexPermissionMode as zD, normalizeScriptRefs as zE, normalizeStepGate as zF, parseCraftbookTestSpec as zG, parseTaskRef as zH, profileKind as zI, projectAllowsAmbientWork as zJ, removeStepAndCleanEdges as zK, reorderStepsArray as zL, resolveProfileChain as zM, resolveProjectTypeId as zN, resolveSteps as zO, slugifyStepId as zP, spawnsChildren as zQ, stepInsertionIndex as zR, taskRef as zS, tierAtLeast as zT, tierRank as zU, uniqueStepId as zV, unmetConnectors as zW, unmetCraftbookRequirements as zX, unmetToolsets as zY, validateCraftbookGraph as zZ, validateCraftbookScriptRefs as z_, WorkspaceReadFileErrorSchema as za, type WorkspaceReadFileRequest as zb, WorkspaceReadFileRequestSchema as zc, type WorkspaceReadFileResult as zd, WorkspaceReadFileResultSchema as ze, type WorkspaceReadFileSuccess as zf, WorkspaceReadFileSuccessSchema as zg, type WorkspaceSkillIndex as zh, WorkspaceSkillIndexSchema as zi, type WriteDocumentRequest as zj, WriteDocumentRequestSchema as zk, type XtcSamplerConfig as zl, XtcSamplerSchema as zm, applyStepPatch as zn, assertCraftbookGraph as zo, compareSemver as zp, craftbookRequirementsMet as zq, credentialCapabilityName as zr, gateEdgeTargets as zs, isCredentialCapability as zt, isDraftTask as zu, isKnownProfileId as zv, isLegacyGateSpec as zw, isNightShiftTask as zx, isPendingNightShiftTask as zy, isScheduleHost as zz };
|
|
59543
|
+
export { ArchiveExtractRequestSchema as $, type AdvanceWhen as A, resolveProfileChain as A0, resolveProjectTypeId as A1, resolveSteps as A2, slugifyStepId as A3, spawnsChildren as A4, stepInsertionIndex as A5, taskRef as A6, tierAtLeast as A7, tierRank as A8, uniqueStepId as A9, unmetConnectors as Aa, unmetCraftbookRequirements as Ab, unmetToolsets as Ac, validateCraftbookGraph as Ad, validateCraftbookScriptRefs as Ae, validateScriptInput as Af, xpForLevel as Ag, AnswerQuestionRequestSchema as B, type CompassRegion as C, DeliverableKindSchema as D, type AppendTaskNoteRequest as E, type FileContextResponse as F, type GezelConfig as G, AppendTaskNoteRequestSchema as H, type AppendTaskNoteResponse as I, AppendTaskNoteResponseSchema as J, type AppliedProjectType as K, AppliedProjectTypeSchema as L, type MapDistrict as M, type NewCraftbookStep as N, type Outcome as O, type Project as P, type ApplyPatchToProjectWorkspaceFileRequest as Q, type Rect as R, type ScriptInputField as S, type ToolsetRuntime as T, ApplyPatchToProjectWorkspaceFileRequestSchema as U, type VillageAnchor as V, type ApplyProjectTypeRequest as W, ApplyProjectTypeRequestSchema as X, type ArchiveEntry as Y, ArchiveEntrySchema as Z, type ArchiveExtractRequest as _, type VillageOverride as a, type ChannelStatus as a$, type ArchiveExtractResponse as a0, ArchiveExtractResponseSchema as a1, type ArchiveListRequest as a2, ArchiveListRequestSchema as a3, type ArchiveListResponse as a4, ArchiveListResponseSchema as a5, type ArgSpec as a6, ArgSpecSchema as a7, type AskQuestionRequest as a8, AskQuestionRequestSchema as a9, type BehaviorId as aA, BehaviorIdSchema as aB, type BinaryDocumentCheck as aC, BinaryDocumentCheckSchema as aD, CANONICAL_PROFILES as aE, CRAFTBOOK_ROLE_META as aF, CRAFTBOOK_SCRIPTS_MAX_COUNT as aG, CRAFTBOOK_SCRIPTS_TOTAL_MAX_BYTES as aH, CRAFTBOOK_SCRIPT_MAX_BYTES as aI, CRAFTBOOK_TEST_FILENAME as aJ, CRAFTBOOK_TEST_SCHEMA_VERSION as aK, type CancelCodeReviewResponse as aL, CancelCodeReviewResponseSchema as aM, type CatalogItemDetail as aN, CatalogItemDetailSchema as aO, type CatalogItemIdentity as aP, CatalogItemIdentitySchema as aQ, type CatalogItemManifest as aR, CatalogItemManifestSchema as aS, type CatalogItemSummary as aT, CatalogItemSummarySchema as aU, type CatalogItemVersionInfo as aV, CatalogItemVersionInfoSchema as aW, type CatalogKind as aX, CatalogKindSchema as aY, type ChannelName as aZ, ChannelNameSchema as a_, type AskQuestionResponse as aa, AskQuestionResponseSchema as ab, type AudioCatalogModel as ac, AudioCatalogModelSchema as ad, type AudioEngineHealth as ae, AudioEngineHealthSchema as af, type AudioEngineStatusResponse as ag, AudioEngineStatusResponseSchema as ah, type AudioModelPullEvent as ai, AudioModelPullEventSchema as aj, type AudioSynthesizeMeta as ak, AudioSynthesizeMetaSchema as al, type AudioSynthesizeRequest as am, AudioSynthesizeRequestSchema as an, type AudioSynthesizeResponse as ao, AudioSynthesizeResponseSchema as ap, type AudioTranscribeRequest as aq, AudioTranscribeRequestSchema as ar, type AudioTranscribeResponse as as, AudioTranscribeResponseSchema as at, type AudioTranscribeSegment as au, AudioTranscribeSegmentSchema as av, type AudioVoice as aw, AudioVoiceSchema as ax, type BehaviorEntry as ay, BehaviorEntrySchema as az, type MapStreet as b, CompleteStepGateInfoSchema as b$, ChannelStatusSchema as b0, type ChannelsConfig as b1, ChannelsConfigSchema as b2, type ChatHistoryResponse as b3, ChatHistoryResponseSchema as b4, type ChatModelCategory as b5, ChatModelCategorySchema as b6, type ChatModelDs4Source as b7, ChatModelDs4SourceSchema as b8, type ChatModelIdentity as b9, type CodeReviewResponse as bA, CodeReviewResponseSchema as bB, CodeReviewSchema as bC, type CodeReviewStatus as bD, CodeReviewStatusSchema as bE, type CodeSymbol as bF, CodeSymbolSchema as bG, type CodexPermissionMode as bH, type CodexPermissionModeCompat as bI, CodexPermissionModeCompatSchema as bJ, CodexPermissionModeSchema as bK, type CodexSetupModelOption as bL, CodexSetupModelOptionSchema as bM, type CodexSetupState as bN, CodexSetupStateSchema as bO, type CodexSetupStatusResponse as bP, CodexSetupStatusResponseSchema as bQ, type CommandApprovalInputFile as bR, CommandApprovalInputFileSchema as bS, type CommandApprovalIntent as bT, CommandApprovalIntentSchema as bU, type CommandApprovalScope as bV, CommandApprovalScopeSchema as bW, type CommandShape as bX, CommandShapeSchema as bY, CompassRegionSchema as bZ, type CompleteStepGateInfo as b_, ChatModelIdentitySchema as ba, type ChatModelLlamaCppSource as bb, ChatModelLlamaCppSourceSchema as bc, type ChatModelManifest as bd, ChatModelManifestSchema as be, type ChatModelMlxSource as bf, ChatModelMlxSourceSchema as bg, type ChatModelOllamaSource as bh, ChatModelOllamaSourceSchema as bi, type ChatModelTuning as bj, type ChatModelTuningBase as bk, ChatModelTuningBaseSchema as bl, ChatModelTuningSchema as bm, type ChatModelVersionManifest as bn, ChatModelVersionManifestSchema as bo, type ChatSession as bp, ChatSessionSchema as bq, type ChatSessionSummary as br, ChatSessionSummarySchema as bs, type CodeReview as bt, type CodeReviewKind as bu, CodeReviewKindSchema as bv, type CodeReviewManifest as bw, CodeReviewManifestSchema as bx, type CodeReviewRecord as by, CodeReviewRecordSchema as bz, type MapPlaza as c, type CraftbookTestRubric as c$, type CompleteStepRequest as c0, CompleteStepRequestSchema as c1, type CompleteStepResponse as c2, CompleteStepResponseSchema as c3, type ConfigureCodexRequest as c4, ConfigureCodexRequestSchema as c5, type ConnectorTypeIdentity as c6, ConnectorTypeIdentitySchema as c7, type ConnectorTypeManifest as c8, ConnectorTypeManifestSchema as c9, CraftbookRunModesSchema as cA, CraftbookSchema as cB, type CraftbookScripts as cC, CraftbookScriptsSchema as cD, type CraftbookSpawn as cE, CraftbookSpawnSchema as cF, CraftbookStepSchema as cG, type CraftbookSuggestion as cH, CraftbookSuggestionSchema as cI, type CraftbookSummary as cJ, CraftbookSummarySchema as cK, type CraftbookTemplateIdentity as cL, CraftbookTemplateIdentitySchema as cM, type CraftbookTemplateManifest as cN, CraftbookTemplateManifestSchema as cO, type CraftbookTemplateVersionManifest as cP, CraftbookTemplateVersionManifestSchema as cQ, type CraftbookTestCheck as cR, CraftbookTestCheckSchema as cS, type CraftbookTestDeliverable as cT, CraftbookTestDeliverableSchema as cU, type CraftbookTestFixtureFile as cV, CraftbookTestFixtureFileSchema as cW, type CraftbookTestHistoryExpectation as cX, CraftbookTestHistoryExpectationSchema as cY, type CraftbookTestMockExpectation as cZ, CraftbookTestMockExpectationSchema as c_, type ConnectorTypeVersionManifest as ca, ConnectorTypeVersionManifestSchema as cb, type CopilotAvailability as cc, CopilotAvailabilitySchema as cd, type CopilotLoginEvent as ce, CopilotLoginEventSchema as cf, type CopyArtifactToWorkspaceRequest as cg, CopyArtifactToWorkspaceRequestSchema as ch, type CopyArtifactToWorkspaceResponse as ci, CopyArtifactToWorkspaceResponseSchema as cj, type CosmeticProposal as ck, CosmeticProposalSchema as cl, type CraftbookBasedOn as cm, CraftbookBasedOnSchema as cn, type CraftbookBranch as co, CraftbookBranchSchema as cp, type CraftbookConnectorNeed as cq, CraftbookConnectorNeedSchema as cr, type CraftbookRequirement as cs, type CraftbookRequirementContext as ct, CraftbookRequirementSchema as cu, type CraftbookResponse as cv, CraftbookResponseSchema as cw, type CraftbookRole as cx, CraftbookRoleSchema as cy, type CraftbookRunModes as cz, type MapBuilding as d, type DiscoveredInstruction as d$, CraftbookTestRubricSchema as d0, type CraftbookTestSetup as d1, CraftbookTestSetupSchema as d2, type CraftbookTestSpec as d3, CraftbookTestSpecSchema as d4, type CraftbookTestSuccess as d5, CraftbookTestSuccessSchema as d6, type CraftbookTestWorker as d7, CraftbookTestWorkerSchema as d8, type CraftbookToolsetNeed as d9, CredentialCapabilitySchema as dA, type CustomMcpImportWarning as dB, CustomMcpImportWarningSchema as dC, DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS as dD, DEFAULT_TUNING_PROFILE_ID as dE, type DeclineGrowthLevelUpRequest as dF, DeclineGrowthLevelUpRequestSchema as dG, type DeclinedProposalRecord as dH, DeclinedProposalRecordSchema as dI, type DelegateSecurityFindingRequest as dJ, DelegateSecurityFindingRequestSchema as dK, type DelegateSecurityFindingResponse as dL, DelegateSecurityFindingResponseSchema as dM, type DescribeFolderRequest as dN, DescribeFolderRequestSchema as dO, type DescribeFolderResponse as dP, DescribeFolderResponseSchema as dQ, type DeviceSafetyPolicyConfig as dR, DeviceSafetyPolicySchema as dS, type DiffFilesRequest as dT, DiffFilesRequestSchema as dU, type DiffFilesResponse as dV, DiffFilesResponseSchema as dW, type DisableSuggestedWorkRequest as dX, DisableSuggestedWorkRequestSchema as dY, type DiscoveredCommand as dZ, DiscoveredCommandSchema as d_, CraftbookToolsetNeedSchema as da, type CreateChatSessionRequest as db, CreateChatSessionRequestSchema as dc, type CreateCraftbookRequest as dd, CreateCraftbookRequestSchema as de, type CreateDocumentFolderRequest as df, CreateDocumentFolderRequestSchema as dg, type CreateGezelRequest as dh, CreateGezelRequestSchema as di, type CreatePreviewCapabilityRequest as dj, CreatePreviewCapabilityRequestSchema as dk, type CreatePreviewCapabilityResponse as dl, CreatePreviewCapabilityResponseSchema as dm, type CreateProjectRequest as dn, CreateProjectRequestSchema as dp, type CreateScriptRequest as dq, CreateScriptRequestSchema as dr, type CreateScriptResponse as ds, CreateScriptResponseSchema as dt, type CreateTaskRequest as du, CreateTaskRequestSchema as dv, type CreateTypedProjectRequest as dw, CreateTypedProjectRequestSchema as dx, type CreateTypedProjectResponse as dy, CreateTypedProjectResponseSchema as dz, type ScriptOutputField as e, FileMapRequestSchema as e$, DiscoveredInstructionSchema as e0, type DiscoveredSkill as e1, DiscoveredSkillSchema as e2, type DismissSuggestedWorkRequest as e3, DismissSuggestedWorkRequestSchema as e4, type DocumentExportOptions as e5, DocumentExportOptionsSchema as e6, type DocumentMediaExportRequest as e7, DocumentMediaExportRequestSchema as e8, type DocumentMediaExportSource as e9, ErrorResponseSchema as eA, type EvalHints as eB, EvalHintsSchema as eC, type ExpectedDeliverable as eD, ExpectedDeliverableSchema as eE, type ExternalFolders as eF, ExternalFoldersSchema as eG, type FetchDiffRequest as eH, FetchDiffRequestSchema as eI, type FetchDiffResponse as eJ, FetchDiffResponseSchema as eK, type FetchRepoRequest as eL, FetchRepoRequestSchema as eM, type FetchRepoResponse as eN, FetchRepoResponseSchema as eO, type FetchUrlRequest as eP, FetchUrlRequestSchema as eQ, type FetchUrlResponse as eR, FetchUrlResponseSchema as eS, type FileContextFinding as eT, FileContextFindingSchema as eU, type FileContextImporter as eV, FileContextImporterSchema as eW, type FileContextRequest as eX, FileContextRequestSchema as eY, FileContextResponseSchema as eZ, type FileMapRequest as e_, DocumentMediaExportSourceSchema as ea, type DocumentSearchResult as eb, DocumentSearchResultSchema as ec, type DraftScriptRequest as ed, DraftScriptRequestSchema as ee, type DraftScriptResponse as ef, DraftScriptResponseSchema as eg, type DriveIndexEnrichmentRequest as eh, DriveIndexEnrichmentRequestSchema as ei, type DriveIndexEnrichmentResponse as ej, DriveIndexEnrichmentResponseSchema as ek, type DrySamplerConfig as el, DrySamplerSchema as em, type EnableSuggestedWorkRequest as en, EnableSuggestedWorkRequestSchema as eo, type EngineConfig as ep, EngineConfigSchema as eq, type EnsureGezelRequest as er, EnsureGezelRequestSchema as es, type EnsureGezelResponse as et, EnsureGezelResponseSchema as eu, type Entity as ev, type EntityId as ew, EntityIdSchema as ex, EntitySchema as ey, type ErrorResponse as ez, type ScriptMeta as f, GezelIconHistoryResponseSchema as f$, type FileMapResponse as f0, FileMapResponseSchema as f1, type FileMapScope as f2, FileMapScopeSchema as f3, type FileReviewIssue as f4, FileReviewIssueSchema as f5, type FileReviewIssueSeverity as f6, FileReviewIssueSeveritySchema as f7, type FileReviewReply as f8, FileReviewReplySchema as f9, type FitnessCheck as fA, FitnessCheckSchema as fB, type FlagSpec as fC, FlagSpecSchema as fD, GATE_DEFAULT_MAX_ATTEMPTS as fE, type GateAttemptRecord as fF, GateCheckSchema as fG, GateScriptRefSchema as fH, type GateScriptResult as fI, GateScriptResultSchema as fJ, type GateSpec as fK, GateSpecSchema as fL, type GenerateGezelAboutRequest as fM, GenerateGezelAboutRequestSchema as fN, type GenerateGezelIconRequest as fO, GenerateGezelIconRequestSchema as fP, type GetScriptSourceResponse as fQ, GetScriptSourceResponseSchema as fR, GezelConfigSchema as fS, type GezelGrowthResponse as fT, GezelGrowthResponseSchema as fU, type GezelGrowthState as fV, GezelGrowthStateSchema as fW, type GezelGrowthSummary as fX, GezelGrowthSummarySchema as fY, GezelIconHistoryEntrySchema as fZ, type GezelIconHistoryResponse as f_, type FileReviewRequest as fa, FileReviewRequestSchema as fb, type FileReviewResponse as fc, FileReviewResponseSchema as fd, type FileReviewWire as fe, FileReviewWireSchema as ff, type FindEntityRequest as fg, FindEntityRequestSchema as fh, type FindEntityResponse as fi, FindEntityResponseSchema as fj, type FindFilesRequest as fk, FindFilesRequestSchema as fl, type FindFilesResponse as fm, FindFilesResponseSchema as fn, type FindReferencesRequest as fo, FindReferencesRequestSchema as fp, type FindReferencesResponse as fq, FindReferencesResponseSchema as fr, type FindSimilarImagesRequest as fs, FindSimilarImagesRequestSchema as ft, type FindSimilarImagesResponse as fu, FindSimilarImagesResponseSchema as fv, type FindSymbolRequest as fw, FindSymbolRequestSchema as fx, type FindSymbolResponse as fy, FindSymbolResponseSchema as fz, type SecurityPolicy as g, GitFileDiffResponseSchema as g$, type GezelResponse as g0, GezelResponseSchema as g1, type GezelTemplateIdentity as g2, GezelTemplateIdentitySchema as g3, type GezelTemplateManifest as g4, GezelTemplateManifestSchema as g5, type GezelTemplateVersionManifest as g6, GezelTemplateVersionManifestSchema as g7, type GezmodelBundleManifest as g8, GezmodelBundleManifestSchema as g9, type GitChangesResponse as gA, GitChangesResponseSchema as gB, type GitCloneResponse as gC, GitCloneResponseSchema as gD, type GitCommitDetailResponse as gE, GitCommitDetailResponseSchema as gF, type GitCommitRequest as gG, GitCommitRequestSchema as gH, type GitCommitResponse as gI, GitCommitResponseSchema as gJ, type GitCompleteMergeRequest as gK, GitCompleteMergeRequestSchema as gL, type GitCompleteMergeResponse as gM, GitCompleteMergeResponseSchema as gN, type GitConflictFile as gO, GitConflictFileSchema as gP, type GitConflictKind as gQ, GitConflictKindSchema as gR, type GitConflictVersionsResponse as gS, GitConflictVersionsResponseSchema as gT, type GitDiscardRequest as gU, GitDiscardRequestSchema as gV, type GitDiscardResponse as gW, GitDiscardResponseSchema as gX, type GitFetchResponse as gY, GitFetchResponseSchema as gZ, type GitFileDiffResponse as g_, type GezmodelEngine as ga, GezmodelEngineSchema as gb, type GezmodelFile as gc, GezmodelFileSchema as gd, type GezmodelImportReview as ge, GezmodelImportReviewSchema as gf, type GezmodelLicense as gg, GezmodelLicenseSchema as gh, type GildeUpdateCheckOutcome as gi, GildeUpdateCheckOutcomeSchema as gj, type GildeUpdateCheckResult as gk, GildeUpdateCheckResultSchema as gl, type GildeUpdateStatusResponse as gm, GildeUpdateStatusResponseSchema as gn, type GitAbandonMergeResponse as go, GitAbandonMergeResponseSchema as gp, type GitAiMergeRequest as gq, GitAiMergeRequestSchema as gr, type GitAiMergeResponse as gs, GitAiMergeResponseSchema as gt, type GitBranchSwitchRequest as gu, GitBranchSwitchRequestSchema as gv, type GitBranchesResponse as gw, GitBranchesResponseSchema as gx, type GitChangeKind as gy, GitChangeKindSchema as gz, type ModelFitnessRecord as h, type GitWorkingChange as h$, type GitHubAuthMeta as h0, GitHubAuthMetaSchema as h1, type GitHubCheckStatusResponse as h2, GitHubCheckStatusResponseSchema as h3, type GitHubCreateCommentRequest as h4, GitHubCreateCommentRequestSchema as h5, type GitHubCreateCommentResponse as h6, GitHubCreateCommentResponseSchema as h7, type GitHubCreatePullRequest as h8, GitHubCreatePullRequestSchema as h9, GitHubRepoPreviewResponseSchema as hA, type GitHubRepoSummary as hB, GitHubRepoSummarySchema as hC, type GitHubReposResponse as hD, GitHubReposResponseSchema as hE, type GitHubWorkflowRun as hF, GitHubWorkflowRunSchema as hG, type GitLogEntry as hH, GitLogEntrySchema as hI, type GitLogResponse as hJ, GitLogResponseSchema as hK, type GitMergeStateResponse as hL, GitMergeStateResponseSchema as hM, type GitPushResponse as hN, GitPushResponseSchema as hO, type GitResolveConflictRequest as hP, GitResolveConflictRequestSchema as hQ, type GitResolveConflictResponse as hR, GitResolveConflictResponseSchema as hS, type GitStatusResponse as hT, GitStatusResponseSchema as hU, type GitSuggestMessageResponse as hV, GitSuggestMessageResponseSchema as hW, type GitSyncResponse as hX, GitSyncResponseSchema as hY, type GitSyncState as hZ, GitSyncStateSchema as h_, type GitHubCreatePullResponse as ha, GitHubCreatePullResponseSchema as hb, type GitHubCredentialSource as hc, type GitHubIdentity as hd, type GitHubIdentityResponse as he, GitHubIdentityResponseSchema as hf, GitHubIdentitySchema as hg, type GitHubLoginPollRequest as hh, GitHubLoginPollRequestSchema as hi, type GitHubLoginPollResponse as hj, GitHubLoginPollResponseSchema as hk, type GitHubLoginStartResponse as hl, GitHubLoginStartResponseSchema as hm, type GitHubPullComment as hn, GitHubPullCommentSchema as ho, type GitHubPullDetail as hp, GitHubPullDetailSchema as hq, type GitHubPullDiffResponse as hr, GitHubPullDiffResponseSchema as hs, type GitHubPullFile as ht, GitHubPullFileSchema as hu, type GitHubPullSummary as hv, GitHubPullSummarySchema as hw, type GitHubRepoPreviewRequest as hx, GitHubRepoPreviewRequestSchema as hy, type GitHubRepoPreviewResponse as hz, type GateScriptRef as i, GithubLogResponseSchema as i$, GitWorkingChangeSchema as i0, type GithubAbandonMergeResponse as i1, GithubAbandonMergeResponseSchema as i2, type GithubAiMergeRequest as i3, GithubAiMergeRequestSchema as i4, type GithubAiMergeResponse as i5, GithubAiMergeResponseSchema as i6, type GithubAuthMeta as i7, GithubAuthMetaSchema as i8, type GithubBranchSwitchRequest as i9, GithubConflictKindSchema as iA, type GithubConflictVersionsResponse as iB, GithubConflictVersionsResponseSchema as iC, type GithubCreateCommentRequest as iD, GithubCreateCommentRequestSchema as iE, type GithubCreateCommentResponse as iF, GithubCreateCommentResponseSchema as iG, type GithubCreatePullRequest as iH, GithubCreatePullRequestSchema as iI, type GithubCreatePullResponse as iJ, GithubCreatePullResponseSchema as iK, type GithubCredentialSource as iL, type GithubDiscardRequest as iM, GithubDiscardRequestSchema as iN, type GithubDiscardResponse as iO, GithubDiscardResponseSchema as iP, type GithubFetchResponse as iQ, GithubFetchResponseSchema as iR, type GithubFileDiffResponse as iS, GithubFileDiffResponseSchema as iT, type GithubIdentity as iU, type GithubIdentityResponse as iV, GithubIdentityResponseSchema as iW, GithubIdentitySchema as iX, type GithubLogEntry as iY, GithubLogEntrySchema as iZ, type GithubLogResponse as i_, GithubBranchSwitchRequestSchema as ia, type GithubBranchesResponse as ib, GithubBranchesResponseSchema as ic, type GithubChangeKind as id, GithubChangeKindSchema as ie, type GithubChangesResponse as ig, GithubChangesResponseSchema as ih, type GithubCheckStatusResponse as ii, GithubCheckStatusResponseSchema as ij, type GithubCloneResponse as ik, GithubCloneResponseSchema as il, type GithubCommitDetailResponse as im, GithubCommitDetailResponseSchema as io, type GithubCommitRequest as ip, GithubCommitRequestSchema as iq, type GithubCommitResponse as ir, GithubCommitResponseSchema as is, type GithubCompleteMergeRequest as it, GithubCompleteMergeRequestSchema as iu, type GithubCompleteMergeResponse as iv, GithubCompleteMergeResponseSchema as iw, type GithubConflictFile as ix, GithubConflictFileSchema as iy, type GithubConflictKind as iz, type ModelTier as j, HandboekAreaSchema as j$, type GithubLoginPollRequest as j0, GithubLoginPollRequestSchema as j1, type GithubLoginPollResponse as j2, GithubLoginPollResponseSchema as j3, type GithubLoginStartResponse as j4, GithubLoginStartResponseSchema as j5, type GithubMergeStateResponse as j6, GithubMergeStateResponseSchema as j7, type GithubPullComment as j8, GithubPullCommentSchema as j9, type GithubSyncResponse as jA, GithubSyncResponseSchema as jB, type GithubSyncState as jC, GithubSyncStateSchema as jD, type GithubWorkflowRun as jE, GithubWorkflowRunSchema as jF, type GithubWorkingChange as jG, GithubWorkingChangeSchema as jH, type GpuProcessMemory as jI, GpuProcessMemorySchema as jJ, type GpuProcessOwner as jK, GpuProcessOwnerSchema as jL, type GrepArtifactRequest as jM, GrepArtifactRequestSchema as jN, type GrepArtifactResponse as jO, GrepArtifactResponseSchema as jP, type GrowthEvidence as jQ, GrowthEvidenceSchema as jR, type GrowthProposal as jS, GrowthProposalSchema as jT, type GrowthSignals as jU, GrowthSignalsSchema as jV, type GzelBundleItem as jW, GzelBundleItemSchema as jX, type GzelBundleManifest as jY, GzelBundleManifestSchema as jZ, type HandboekArea as j_, type GithubPullDetail as ja, GithubPullDetailSchema as jb, type GithubPullDiffResponse as jc, GithubPullDiffResponseSchema as jd, type GithubPullFile as je, GithubPullFileSchema as jf, type GithubPullSummary as jg, GithubPullSummarySchema as jh, type GithubPushResponse as ji, GithubPushResponseSchema as jj, type GithubRepoPreviewRequest as jk, GithubRepoPreviewRequestSchema as jl, type GithubRepoPreviewResponse as jm, GithubRepoPreviewResponseSchema as jn, type GithubRepoSummary as jo, GithubRepoSummarySchema as jp, type GithubReposResponse as jq, GithubReposResponseSchema as jr, type GithubResolveConflictRequest as js, GithubResolveConflictRequestSchema as jt, type GithubResolveConflictResponse as ju, GithubResolveConflictResponseSchema as jv, type GithubStatusResponse as jw, GithubStatusResponseSchema as jx, type GithubSuggestMessageResponse as jy, GithubSuggestMessageResponseSchema as jz, type GateCheck as k, ImageModelAuxiliaryRoleSchema as k$, type HandboekArticle as k0, HandboekArticleSchema as k1, type HandboekFigure as k2, HandboekFigureSchema as k3, type HandboekHowDoIResponse as k4, HandboekHowDoIResponseSchema as k5, type HandboekNarrationResponse as k6, HandboekNarrationResponseSchema as k7, type HandboekNarrationSegment as k8, HandboekNarrationSegmentSchema as k9, HookPhaseSchema as kA, type HookResult as kB, HookResultSchema as kC, type HookSpec as kD, HookSpecSchema as kE, type HtmlLayer as kF, HtmlLayerSchema as kG, HttpsOriginSchema as kH, type ImageEngineStatusResponse as kI, ImageEngineStatusResponseSchema as kJ, type ImageExif as kK, ImageExifSchema as kL, type ImageGenerationApprovalIntent as kM, ImageGenerationApprovalIntentSchema as kN, type ImageGenerationMeta as kO, ImageGenerationMetaSchema as kP, type ImageGenerationRequest as kQ, ImageGenerationRequestSchema as kR, type ImageGenerationResponse as kS, ImageGenerationResponseSchema as kT, type ImageInputSource as kU, ImageInputSourceSchema as kV, type ImageLayer as kW, ImageLayerSchema as kX, type ImageModelAuxiliaryFile as kY, ImageModelAuxiliaryFileSchema as kZ, type ImageModelAuxiliaryRole as k_, type HandboekRenderMode as ka, HandboekRenderModeSchema as kb, type HandboekToc as kc, type HandboekTocArea as kd, HandboekTocAreaSchema as ke, type HandboekTocEntry as kf, HandboekTocEntrySchema as kg, HandboekTocSchema as kh, type HandboekTocSubcategory as ki, HandboekTocSubcategorySchema as kj, type HealthResponse as kk, HealthResponseSchema as kl, type HistoryEntry as km, HistoryEntrySchema as kn, type HistoryEvent as ko, HistoryEventEntrySchema as kp, type HistoryEventKind as kq, HistoryEventKindSchema as kr, HistoryEventSchema as ks, type HistoryFilter as kt, HistoryFilterSchema as ku, type HistorySessionEntry as kv, HistorySessionEntrySchema as kw, type HookDecision as kx, HookDecisionSchema as ky, type HookPhase as kz, type StepGate as l, type KeurmeesterCaseClosed as l$, type ImageModelCategory as l0, ImageModelCategorySchema as l1, type ImageModelHardwareTier as l2, ImageModelHardwareTierSchema as l3, type ImageModelIdentity as l4, ImageModelIdentitySchema as l5, type ImageModelManifest as l6, ImageModelManifestSchema as l7, type ImageModelPullEvent as l8, ImageModelPullEventSchema as l9, type InstalledImageModel as lA, InstalledImageModelSchema as lB, type InstalledPackage as lC, InstalledPackageSchema as lD, type InstalledRecognitionModel as lE, InstalledRecognitionModelSchema as lF, type InstalledToolset as lG, InstalledToolsetSchema as lH, type InstalledVideoModel as lI, InstalledVideoModelSchema as lJ, type InstructionMergeMode as lK, InstructionMergeModeSchema as lL, type InstructionSourceFile as lM, InstructionSourceFileSchema as lN, type InterruptSessionRequest as lO, InterruptSessionRequestSchema as lP, type InvokePageToolRequest as lQ, InvokePageToolRequestSchema as lR, type InvokePageToolResponse as lS, InvokePageToolResponseSchema as lT, type InvokeSessionToolRequest as lU, InvokeSessionToolRequestSchema as lV, type InvokeSessionToolResponse as lW, InvokeSessionToolResponseSchema as lX, KNOWN_PROFILE_IDS as lY, type KeurmeesterAction as lZ, KeurmeesterActionSchema as l_, type ImageModelVersionManifest as la, ImageModelVersionManifestSchema as lb, type ImageRecognition as lc, ImageRecognitionSchema as ld, type ImageStaticMeta as le, ImageStaticMetaSchema as lf, type ImportCustomMcpConfigRequest as lg, ImportCustomMcpConfigRequestSchema as lh, type ImportCustomMcpConfigResponse as li, ImportCustomMcpConfigResponseSchema as lj, type ImportProvenance as lk, ImportProvenanceSchema as ll, type ImportedAboutProvenance as lm, ImportedAboutProvenanceSchema as ln, type ImportedCraftbookProvenance as lo, ImportedCraftbookProvenanceSchema as lp, type ImportedGezelProvenance as lq, ImportedGezelProvenanceSchema as lr, type InsertAtMarkerInProjectWorkspaceFileRequest as ls, InsertAtMarkerInProjectWorkspaceFileRequestSchema as lt, type InstallPackageRequest as lu, InstallPackageRequestSchema as lv, type InstallPackageResponse as lw, InstallPackageResponseSchema as lx, type InstalledAudioModel as ly, InstalledAudioModelSchema as lz, type CraftbookStep as m, ListGithubPullFilesResponseSchema as m$, KeurmeesterCaseClosedSchema as m0, type KeurmeesterCaseOpened as m1, KeurmeesterCaseOpenedSchema as m2, type KeurmeesterCaseOutcome as m3, KeurmeesterCaseOutcomeSchema as m4, type KeurmeesterCaseRecord as m5, KeurmeesterCaseRecordSchema as m6, type KeurmeesterFailureClass as m7, KeurmeesterFailureClassSchema as m8, type KeurmeesterTriggerKind as m9, type ListCodeReviewsResponse as mA, ListCodeReviewsResponseSchema as mB, type ListCraftbooksResponse as mC, ListCraftbooksResponseSchema as mD, type ListDependenciesResponse as mE, ListDependenciesResponseSchema as mF, type ListEntityMentionsRequest as mG, ListEntityMentionsRequestSchema as mH, type ListEntityMentionsResponse as mI, ListEntityMentionsResponseSchema as mJ, type ListFileIssuesRequest as mK, ListFileIssuesRequestSchema as mL, type ListFileIssuesResponse as mM, ListFileIssuesResponseSchema as mN, type ListGezelsResponse as mO, ListGezelsResponseSchema as mP, type ListGitHubPullCommentsResponse as mQ, ListGitHubPullCommentsResponseSchema as mR, type ListGitHubPullFilesResponse as mS, ListGitHubPullFilesResponseSchema as mT, type ListGitHubPullsResponse as mU, ListGitHubPullsResponseSchema as mV, type ListGitHubWorkflowRunsResponse as mW, ListGitHubWorkflowRunsResponseSchema as mX, type ListGithubPullCommentsResponse as mY, ListGithubPullCommentsResponseSchema as mZ, type ListGithubPullFilesResponse as m_, KeurmeesterTriggerKindSchema as ma, type KeurmeesterVerdict as mb, KeurmeesterVerdictSchema as mc, type KnownProfileId as md, LEVEL_THRESHOLDS as me, type Layer as mf, LayerSchema as mg, type LegacyCodexPermissionMode as mh, LegacyCodexPermissionModeSchema as mi, type LicenseClass as mj, LicenseClassSchema as mk, LicenseMetaShape as ml, type ListActiveImagePullsResponse as mm, ListActiveImagePullsResponseSchema as mn, type ListActiveVideoPullsResponse as mo, ListActiveVideoPullsResponseSchema as mp, type ListAudioCatalogResponse as mq, ListAudioCatalogResponseSchema as mr, type ListAudioVoicesResponse as ms, ListAudioVoicesResponseSchema as mt, type ListCatalogItemVersionsResponse as mu, ListCatalogItemVersionsResponseSchema as mv, type ListCatalogItemsResponse as mw, ListCatalogItemsResponseSchema as mx, type ListChatSessionsResponse as my, ListChatSessionsResponseSchema as mz, type StepDeliverable as n, MapDistrictSchema as n$, type ListGithubPullsResponse as n0, ListGithubPullsResponseSchema as n1, type ListGithubWorkflowRunsResponse as n2, ListGithubWorkflowRunsResponseSchema as n3, type ListHistoryResponse as n4, ListHistoryResponseSchema as n5, type ListInstalledAudioModelsResponse as n6, ListInstalledAudioModelsResponseSchema as n7, type ListInstalledImageModelsResponse as n8, ListInstalledImageModelsResponseSchema as n9, type ListTasksResponse as nA, ListTasksResponseSchema as nB, type ListTerminalThreadsResponse as nC, ListTerminalThreadsResponseSchema as nD, type ListTimelineResponse as nE, ListTimelineResponseSchema as nF, type LlamaCppContextSizing as nG, type LlamaCppContextSizingResponse as nH, LlamaCppContextSizingResponseSchema as nI, LlamaCppContextSizingSchema as nJ, type LlamaCppEngineConfig as nK, LlamaCppEngineConfigSchema as nL, type LocalEngineLifecycle as nM, LocalEngineLifecycleSchema as nN, MEESTER_STATUS_HEADLINE_MAX as nO, MODEL_TIER_ORDER as nP, type MachineMemoryKind as nQ, MachineMemoryKindSchema as nR, type MachineMemoryUsage as nS, MachineMemoryUsageSchema as nT, type MapAttackSurfaceResponse as nU, MapAttackSurfaceResponseSchema as nV, type MapBlock as nW, type MapBlockHealth as nX, MapBlockHealthSchema as nY, MapBlockSchema as nZ, MapBuildingSchema as n_, type ListInstalledRecognitionModelsResponse as na, ListInstalledRecognitionModelsResponseSchema as nb, type ListInstalledVideoModelsResponse as nc, ListInstalledVideoModelsResponseSchema as nd, type ListMentionCandidatesResponse as ne, ListMentionCandidatesResponseSchema as nf, type ListModelsResponse as ng, ListModelsResponseSchema as nh, type ListPackageScriptsResponse as ni, ListPackageScriptsResponseSchema as nj, type ListProjectsForGezelResponse as nk, ListProjectsForGezelResponseSchema as nl, type ListProjectsResponse as nm, ListProjectsResponseSchema as nn, type ListQuestionsResponse as no, ListQuestionsResponseSchema as np, type ListRecognitionCatalogResponse as nq, ListRecognitionCatalogResponseSchema as nr, type ListScriptsResponse as ns, ListScriptsResponseSchema as nt, type ListSessionQueueResponse as nu, ListSessionQueueResponseSchema as nv, type ListSessionToolsResponse as nw, ListSessionToolsResponseSchema as nx, type ListTaskNotesResponse as ny, ListTaskNotesResponseSchema as nz, type Craftbook as o, type NamedScriptCapability as o$, MapPlazaSchema as o0, type MapPrChange as o1, MapPrChangeSchema as o2, type MapPrOverlay as o3, MapPrOverlaySchema as o4, type MapRepoRequest as o5, MapRepoRequestSchema as o6, type MapRepoResponse as o7, MapRepoResponseSchema as o8, type MapRoad as o9, MinGezelVersionShape as oA, type MlxRuntimeStatus as oB, MlxRuntimeStatusSchema as oC, type MockHttpRoute as oD, MockHttpRouteSchema as oE, type MockService as oF, MockServiceSchema as oG, type ModelContextOverrideUpdate as oH, ModelContextOverrideUpdateSchema as oI, type ModelContextOverridesResponse as oJ, ModelContextOverridesResponseSchema as oK, type ModelDownloadPreflightRequest as oL, ModelDownloadPreflightRequestSchema as oM, type ModelDownloadPreflightResponse as oN, ModelDownloadPreflightResponseSchema as oO, type ModelFamily as oP, ModelFamilySchema as oQ, ModelFitnessRecordSchema as oR, type ModelFitnessStatus as oS, ModelFitnessStatusSchema as oT, type ModelFitnessTrigger as oU, ModelFitnessTriggerSchema as oV, type ModelInfo as oW, ModelInfoSchema as oX, type ModelStyle as oY, ModelStyleSchema as oZ, ModelTierSchema as o_, MapRoadSchema as oa, MapStreetSchema as ob, type MapUrbanity as oc, MapUrbanitySchema as od, type McpToolInfo as oe, McpToolInfoSchema as of, type MeesterStatusAction as og, MeesterStatusActionSchema as oh, type MeesterStatusCta as oi, MeesterStatusCtaSchema as oj, type MeesterStatusModelOutput as ok, MeesterStatusModelOutputSchema as ol, type MeesterStatusReport as om, MeesterStatusReportSchema as on, type MeesterStatusResponse as oo, MeesterStatusResponseSchema as op, type MeesterStatusState as oq, MeesterStatusStateSchema as or, type MentionCandidate as os, MentionCandidateSchema as ot, type MessageGezelRequest as ou, MessageGezelRequestSchema as ov, type MessageGezelResponse as ow, MessageGezelResponseSchema as ox, type MessageImageDigest as oy, MessageImageDigestSchema as oz, type Task as p, PixelsLayerSchema as p$, NamedScriptCapabilitySchema as p0, type NativeEngineInstallStatus as p1, NativeEngineInstallStatusSchema as p2, type NativeEngineName as p3, NativeEngineNameSchema as p4, type NativeEngineResolveEvent as p5, NativeEngineResolveEventSchema as p6, type NativeEngineStatusResponse as p7, NativeEngineStatusResponseSchema as p8, NewCraftbookStepSchema as p9, NpmInstallRequestSchema as pA, NpmPackageNameSchema as pB, type NpmRegistryPackageRequest as pC, NpmRegistryPackageRequestSchema as pD, NpmRegistryVersionSchema as pE, OutcomeSchema as pF, type OutlineFileRequest as pG, OutlineFileRequestSchema as pH, type OutlineFileResponse as pI, OutlineFileResponseSchema as pJ, type PageCheckRequest as pK, PageCheckRequestSchema as pL, type PageCheckResponse as pM, PageCheckResponseSchema as pN, type ParseCraftbookTestSpecOptions as pO, type ParseCraftbookTestSpecResult as pP, type PendingImportItem as pQ, PendingImportItemSchema as pR, type PendingImports as pS, PendingImportsSchema as pT, type PendingLevelUp as pU, PendingLevelUpSchema as pV, type PendingPersona as pW, PendingPersonaSchema as pX, type PendingScript as pY, PendingScriptSchema as pZ, type PixelsLayer as p_, type NewTaskFanout as pa, NewTaskFanoutSchema as pb, type NewTaskStep as pc, NewTaskStepSchema as pd, type NightShiftBackgroundWorkBrief as pe, NightShiftBackgroundWorkBriefSchema as pf, type NightShiftCompletedTask as pg, NightShiftCompletedTaskSchema as ph, type NightShiftReport as pi, NightShiftReportSchema as pj, type NightShiftReviewIntent as pk, NightShiftReviewIntentSchema as pl, type NightShiftReviewResponse as pm, NightShiftReviewResponseSchema as pn, type NightShiftTaskBrief as po, NightShiftTaskBriefSchema as pp, type NightShiftTasksResponse as pq, NightShiftTasksResponseSchema as pr, type NodeScriptPassesCheck as ps, NodeScriptPassesCheckSchema as pt, type NormalizedStepGate as pu, type NpmInstallApprovalDecision as pv, NpmInstallApprovalDecisionSchema as pw, type NpmInstallApprovalPackage as px, NpmInstallApprovalPackageSchema as py, type NpmInstallRequest as pz, type AcceptGrowthProposalRequest as q, type ProjectTypeToolsetRef as q$, type PreviewLogEntry as q0, PreviewLogEntrySchema as q1, type PreviewSource as q2, PreviewSourceSchema as q3, type ProfileKind as q4, type ProfileMeta as q5, type ProjectAboutPreviewRequest as q6, ProjectAboutPreviewRequestSchema as q7, type ProjectAboutPreviewResponse as q8, ProjectAboutPreviewResponseSchema as q9, type ProjectNudgeState as qA, ProjectNudgeStateSchema as qB, type ProjectResponse as qC, ProjectResponseSchema as qD, ProjectSchema as qE, type ProjectTabVisibility as qF, ProjectTabVisibilitySchema as qG, type ProjectTypeCategory as qH, ProjectTypeCategorySchema as qI, type ProjectTypeGezelRef as qJ, ProjectTypeGezelSchema as qK, type ProjectTypeIdentity as qL, ProjectTypeIdentitySchema as qM, type ProjectTypeManifest as qN, ProjectTypeManifestSchema as qO, type ProjectTypePages as qP, ProjectTypePagesSchema as qQ, type ProjectTypePreviewRead as qR, ProjectTypePreviewReadSchema as qS, type ProjectTypeProvenance as qT, ProjectTypeProvenanceSchema as qU, type ProjectTypeSchedule as qV, ProjectTypeScheduleSchema as qW, type ProjectTypeTool as qX, type ProjectTypeToolReaction as qY, ProjectTypeToolReactionSchema as qZ, ProjectTypeToolSchema as q_, type ProjectActivity as qa, ProjectActivitySchema as qb, type ProjectApprovalsResponse as qc, ProjectApprovalsResponseSchema as qd, type ProjectConnectorBinding as qe, ProjectConnectorBindingSchema as qf, type ProjectCraftbookProvenance as qg, ProjectCraftbookProvenanceSchema as qh, type ProjectDetail as qi, ProjectDetailSchema as qj, type ProjectFileEntry as qk, ProjectFileEntrySchema as ql, type ProjectFolderPreviewRequest as qm, ProjectFolderPreviewRequestSchema as qn, type ProjectFolderPreviewResponse as qo, ProjectFolderPreviewResponseSchema as qp, type ProjectForGezel as qq, ProjectForGezelSchema as qr, type ProjectGitHub as qs, ProjectGitHubSchema as qt, type ProjectGithub as qu, ProjectGithubSchema as qv, type ProjectLocalConfig as qw, ProjectLocalConfigSchema as qx, type ProjectNudgeConfig as qy, ProjectNudgeConfigSchema as qz, AcceptGrowthProposalRequestSchema as r, type ReferencePreviewRequest as r$, ProjectTypeToolsetSchema as r0, type ProjectTypeVersionManifest as r1, ProjectTypeVersionManifestSchema as r2, type PrometheusAlertsCheck as r3, PrometheusAlertsCheckSchema as r4, type PromptTags as r5, PromptTagsSchema as r6, type Question as r7, type QuestionAnswer as r8, QuestionAnswerSchema as r9, ReasoningBlockSchema as rA, type ReasoningFormat as rB, ReasoningFormatSchema as rC, type RecentTab as rD, type RecentTabArea as rE, RecentTabAreaSchema as rF, RecentTabSchema as rG, RecoMetaShape as rH, type RecognitionCatalogEntry as rI, RecognitionCatalogEntrySchema as rJ, type RecognitionHealth as rK, RecognitionHealthSchema as rL, type RecognitionMode as rM, type RecognitionModeRequest as rN, RecognitionModeRequestSchema as rO, RecognitionModeSchema as rP, type RecognitionPullEvent as rQ, RecognitionPullEventSchema as rR, type RecognitionRequest as rS, RecognitionRequestSchema as rT, type RecognitionResponse as rU, RecognitionResponseSchema as rV, RectSchema as rW, type ReferenceFileLocationRequest as rX, ReferenceFileLocationRequestSchema as rY, type ReferenceFileLocationResponse as rZ, ReferenceFileLocationResponseSchema as r_, type QuestionIntent as ra, QuestionIntentSchema as rb, QuestionSchema as rc, type QueuedMessage as rd, QueuedMessageSchema as re, type ReadArtifactSliceOpts as rf, ReadArtifactSliceOptsSchema as rg, type ReadArtifactSliceResponse as rh, ReadArtifactSliceResponseSchema as ri, type ReadDocAsMarkdownRequest as rj, ReadDocAsMarkdownRequestSchema as rk, type ReadDocAsMarkdownResponse as rl, ReadDocAsMarkdownResponseSchema as rm, type ReadImageBase64Request as rn, ReadImageBase64RequestSchema as ro, type ReadImageBase64Response as rp, ReadImageBase64ResponseSchema as rq, type ReadSymbolRequest as rr, ReadSymbolRequestSchema as rs, type ReadSymbolResponse as rt, ReadSymbolResponseSchema as ru, type ReadWorkspaceFilesRequest as rv, ReadWorkspaceFilesRequestSchema as rw, type ReadWorkspaceFilesResponse as rx, ReadWorkspaceFilesResponseSchema as ry, type ReasoningBlock as rz, type ActiveImagePull as s, type RunTerminalCommandResponse as s$, ReferencePreviewRequestSchema as s0, type ReferencePreviewResponse as s1, ReferencePreviewResponseSchema as s2, type RemoteServingConfig as s3, RemoteServingConfigSchema as s4, type RenameDocumentRequest as s5, RenameDocumentRequestSchema as s6, type RenameGezelRequest as s7, RenameGezelRequestSchema as s8, type RenderImageRequest as s9, ResolveSecurityFindingResponseSchema as sA, type RevertGezelIconRequest as sB, RevertGezelIconRequestSchema as sC, type RewriteTextContext as sD, RewriteTextContextSchema as sE, type RewriteTextRequest as sF, RewriteTextRequestSchema as sG, type RewriteTextResponse as sH, RewriteTextResponseSchema as sI, type RunGitRequest as sJ, RunGitRequestSchema as sK, type RunGitResponse as sL, RunGitResponseSchema as sM, type RunNpxRequest as sN, RunNpxRequestSchema as sO, type RunNpxResponse as sP, RunNpxResponseSchema as sQ, type RunPackageScriptRequest as sR, RunPackageScriptRequestSchema as sS, type RunPackageScriptResponse as sT, RunPackageScriptResponseSchema as sU, type RunScriptRequest as sV, RunScriptRequestSchema as sW, type RunScriptResponse as sX, RunScriptResponseSchema as sY, type RunTerminalCommandRequest as sZ, RunTerminalCommandRequestSchema as s_, RenderImageRequestSchema as sa, type RenderImageResponse as sb, RenderImageResponseSchema as sc, type ReplaceInProjectWorkspaceFileRequest as sd, ReplaceInProjectWorkspaceFileRequestSchema as se, type ReplaceLinesInProjectWorkspaceFileRequest as sf, ReplaceLinesInProjectWorkspaceFileRequestSchema as sg, type ReportPreviewLogRequest as sh, ReportPreviewLogRequestSchema as si, type RequestAskRequest as sj, RequestAskRequestSchema as sk, type RequestAskResponse as sl, RequestAskResponseSchema as sm, type RequestPermissionRequest as sn, RequestPermissionRequestSchema as so, type RequestPermissionResponse as sp, RequestPermissionResponseSchema as sq, type RerollGezelPoppetjeRequest as sr, RerollGezelPoppetjeRequestSchema as ss, type ResidentEngineModel as st, ResidentEngineModelSchema as su, type ResolveArtifactResponse as sv, ResolveArtifactResponseSchema as sw, type ResolveSecurityFindingRequest as sx, ResolveSecurityFindingRequestSchema as sy, type ResolveSecurityFindingResponse as sz, ActiveImagePullSchema as t, SearchCodeRequestSchema as t$, RunTerminalCommandResponseSchema as t0, type SamplingBlock as t1, SamplingBlockSchema as t2, type SaveScriptSourceRequest as t3, SaveScriptSourceRequestSchema as t4, type SaveScriptSourceResponse as t5, SaveScriptSourceResponseSchema as t6, type ScanFindingsRequest as t7, ScanFindingsRequestSchema as t8, type ScanFindingsResponse as t9, ScriptOutputPredicateSchema as tA, type ScriptOutputs as tB, ScriptOutputsSchema as tC, type ScriptProvenance as tD, ScriptProvenanceSchema as tE, type ScriptRef as tF, ScriptRefInputSchema as tG, type ScriptRefList as tH, ScriptRefListSchema as tI, ScriptRefSchema as tJ, type ScriptRun as tK, type ScriptRunCall as tL, ScriptRunCallSchema as tM, ScriptRunSchema as tN, type ScriptRunStatus as tO, ScriptRunStatusSchema as tP, type ScriptRunTrigger as tQ, ScriptRunTriggerSchema as tR, type ScriptScope as tS, ScriptScopeSchema as tT, ScriptStringInputSchema as tU, ScriptStringOutputSchema as tV, type ScriptTemplateId as tW, ScriptTemplateIdSchema as tX, type SdkTypesResponse as tY, SdkTypesResponseSchema as tZ, type SearchCodeRequest as t_, ScanFindingsResponseSchema as ta, type ScheduleApprovalIntent as tb, ScheduleApprovalIntentSchema as tc, type ScheduleMaterialization as td, ScheduleMaterializationSchema as te, ScriptArrayOutputSchema as tf, ScriptBooleanInputSchema as tg, ScriptBooleanOutputSchema as th, type ScriptCapability as ti, ScriptCapabilitySchema as tj, ScriptChoiceInputSchema as tk, type ScriptDiagnostic as tl, ScriptDiagnosticSchema as tm, ScriptInputError as tn, ScriptInputFieldSchema as to, type ScriptInputs as tp, ScriptInputsSchema as tq, ScriptJsonInputSchema as tr, ScriptJsonOutputSchema as ts, ScriptMetaSchema as tt, ScriptNameSchema as tu, ScriptNumberInputSchema as tv, ScriptNumberOutputSchema as tw, ScriptObjectOutputSchema as tx, ScriptOutputFieldSchema as ty, type ScriptOutputPredicate as tz, type ActiveVideoPull as u, SessionSearchResultSchema as u$, type SearchCodeResponse as u0, SearchCodeResponseSchema as u1, type SearchDocsRequest as u2, SearchDocsRequestSchema as u3, type SearchDocsResponse as u4, SearchDocsResponseSchema as u5, type SearchDocumentsRequest as u6, SearchDocumentsRequestSchema as u7, type SearchDocumentsResponse as u8, SearchDocumentsResponseSchema as u9, SecurityPolicySchema as uA, type SecurityScanRequest as uB, SecurityScanRequestSchema as uC, type SecurityScanResponse as uD, SecurityScanResponseSchema as uE, SecuritySeveritySchema as uF, type SecuritySeverityWire as uG, SecuritySourceSchema as uH, type SendChannelMessageRequest as uI, SendChannelMessageRequestSchema as uJ, type SendChannelMessageResponse as uK, SendChannelMessageResponseSchema as uL, type SendChatRequest as uM, SendChatRequestSchema as uN, type SendChatResponse as uO, SendChatResponseSchema as uP, type SendToSessionRequest as uQ, SendToSessionRequestSchema as uR, type SendToSessionResponse as uS, SendToSessionResponseSchema as uT, type ServiceRole as uU, ServiceRoleSchema as uV, type SessionDebugSnapshot as uW, SessionDebugSnapshotSchema as uX, type SessionGpuTask as uY, SessionGpuTaskSchema as uZ, type SessionSearchResult as u_, type SearchFilesContextLine as ua, SearchFilesContextLineSchema as ub, type SearchFilesMatch as uc, SearchFilesMatchSchema as ud, type SearchFilesRequest as ue, SearchFilesRequestSchema as uf, type SearchFilesResponse as ug, SearchFilesResponseSchema as uh, type SearchImagesRequest as ui, SearchImagesRequestSchema as uj, type SearchImagesResponse as uk, SearchImagesResponseSchema as ul, type SearchResult as um, SearchResultSchema as un, type SearchSessionsRequest as uo, SearchSessionsRequestSchema as up, type SearchSessionsResponse as uq, SearchSessionsResponseSchema as ur, type SecurityDependency as us, SecurityDependencySchema as ut, SecurityFindingSchema as uu, type SecurityFindingStatus as uv, SecurityFindingStatusSchema as uw, type SecurityFindingWire as ux, type SecurityOverviewResponse as uy, SecurityOverviewResponseSchema as uz, ActiveVideoPullSchema as v, SystemToolsetInstallSnapshotSchema as v$, type SessionTelemetry as v0, type SessionTelemetryListResponse as v1, SessionTelemetryListResponseSchema as v2, SessionTelemetrySchema as v3, type SessionTurnTelemetry as v4, SessionTurnTelemetrySchema as v5, type SetTaskStatusRequest as v6, SetTaskStatusRequestSchema as v7, type Settlement as v8, SettlementSchema as v9, StructuredOutputSchema as vA, type SuggestCraftbooksResponse as vB, SuggestCraftbooksResponseSchema as vC, type SuggestedCraftbook as vD, SuggestedCraftbookSchema as vE, type SuggestedWorkItem as vF, SuggestedWorkItemSchema as vG, type SuggestedWorkResponse as vH, SuggestedWorkResponseSchema as vI, type SuggestedWorkSource as vJ, SuggestedWorkSourceSchema as vK, type SuggestedWorkState as vL, SuggestedWorkStateSchema as vM, type SvgLayer as vN, SvgLayerSchema as vO, type SymbolContext as vP, SymbolContextSchema as vQ, type SystemBootstrapStatus as vR, SystemBootstrapStatusSchema as vS, type SystemDiagnostics as vT, SystemDiagnosticsSchema as vU, type SystemHomeInfo as vV, SystemHomeInfoSchema as vW, type SystemToolsetInstallEvent as vX, SystemToolsetInstallEventSchema as vY, type SystemToolsetInstallPhase as vZ, type SystemToolsetInstallSnapshot as v_, type SharedModelMigrationCandidate as va, SharedModelMigrationCandidateSchema as vb, type SharedModelMigrationCandidatesResponse as vc, SharedModelMigrationCandidatesResponseSchema as vd, type SharedModelMigrationRequest as ve, SharedModelMigrationRequestSchema as vf, type SharedModelMigrationResult as vg, SharedModelMigrationResultSchema as vh, type SharedModelMigrationSource as vi, SharedModelMigrationSourceSchema as vj, type SpawnTaskInstancesRequest as vk, SpawnTaskInstancesRequestSchema as vl, type StartCodeReviewRequest as vm, StartCodeReviewRequestSchema as vn, type StartCodeReviewResponse as vo, StartCodeReviewResponseSchema as vp, StepDeliverableSchema as vq, StepGateSchema as vr, type StepGateUnion as vs, StepGateUnionSchema as vt, type StepPatch as vu, type StepPosition as vv, StepPositionSchema as vw, type StepSniff as vx, StepSniffSchema as vy, type StructuredOutput as vz, type AdoptedTraitRecord as w, type ToolPermissionIntent as w$, TOOL_CALL_DIFF_MAX_BYTES as w0, type TaskAssignee as w1, TaskAssigneeSchema as w2, type TaskCraftbook as w3, TaskCraftbookSchema as w4, type TaskCraftbookSource as w5, TaskCraftbookSourceSchema as w6, type TaskCraftbookStep as w7, TaskCraftbookStepSchema as w8, type TaskCron as w9, TerminalFileReferenceSchema as wA, type TerminalInputRequestedEvent as wB, TerminalInputRequestedEventSchema as wC, type TerminalMessage as wD, type TerminalMessageEvent as wE, TerminalMessageEventSchema as wF, TerminalMessageSchema as wG, type TerminalOpenFileEvent as wH, TerminalOpenFileEventSchema as wI, type TerminalOutputChunkEvent as wJ, TerminalOutputChunkEventSchema as wK, type TerminalRunStartedEvent as wL, TerminalRunStartedEventSchema as wM, type TerminalThread as wN, TerminalThreadSchema as wO, type TerminalThreadSummary as wP, TerminalThreadSummarySchema as wQ, type TerminalTimelineEntry as wR, TerminalTimelineEntrySchema as wS, type TerminalWorkingDirChangedEvent as wT, TerminalWorkingDirChangedEventSchema as wU, type TextLayer as wV, TextLayerSchema as wW, type TimelineMessage as wX, TimelineMessageSchema as wY, type ToolCallFormat as wZ, ToolCallFormatSchema as w_, type TaskCronOverlap as wa, TaskCronOverlapSchema as wb, TaskCronSchema as wc, type TaskFanout as wd, TaskFanoutSchema as we, type TaskNightShift as wf, TaskNightShiftSchema as wg, type TaskNote as wh, type TaskNoteAuthor as wi, TaskNoteAuthorSchema as wj, TaskNoteSchema as wk, type TaskPausedIntent as wl, TaskPausedIntentSchema as wm, type TaskPausedReason as wn, TaskPausedReasonSchema as wo, TaskRefSchema as wp, type TaskResponse as wq, TaskResponseSchema as wr, TaskSchema as ws, type TaskStatus as wt, TaskStatusSchema as wu, type TaskVariation as wv, TaskVariationSchema as ww, type TerminalEventEnvelope as wx, TerminalEventEnvelopeSchema as wy, type TerminalFileReference as wz, AdoptedTraitRecordSchema as x, type UpdateProjectRequest as x$, ToolPermissionIntentSchema as x0, type ToolsetCategory as x1, ToolsetCategorySchema as x2, type ToolsetConfig as x3, type ToolsetConfigField as x4, ToolsetConfigFieldSchema as x5, ToolsetConfigSchema as x6, type ToolsetIdentity as x7, ToolsetIdentitySchema as x8, type ToolsetInstallApprovalIntent as x9, type TuningProposal as xA, TuningProposalSchema as xB, UNIFIED_SEARCH_RESULT_KINDS as xC, type UnifiedSearchRequest as xD, UnifiedSearchRequestSchema as xE, type UnifiedSearchResponse as xF, UnifiedSearchResponseSchema as xG, type UnifiedSearchResult as xH, type UnifiedSearchResultKind as xI, UnifiedSearchResultKindSchema as xJ, UnifiedSearchResultSchema as xK, type UpdateConfigRequest as xL, UpdateConfigRequestSchema as xM, type UpdateCraftbookRequest as xN, UpdateCraftbookRequestSchema as xO, type UpdateGezelAboutRequest as xP, UpdateGezelAboutRequestSchema as xQ, type UpdateGezelFixedFunctionDefaultsRequest as xR, UpdateGezelFixedFunctionDefaultsRequestSchema as xS, type UpdateGezelIconRequest as xT, UpdateGezelIconRequestSchema as xU, type UpdateGezelMarkdownRequest as xV, UpdateGezelMarkdownRequestSchema as xW, type UpdateGezelPoppetjeRequest as xX, UpdateGezelPoppetjeRequestSchema as xY, type UpdateGezelSettingsRequest as xZ, UpdateGezelSettingsRequestSchema as x_, ToolsetInstallApprovalIntentSchema as xa, type ToolsetManifest as xb, ToolsetManifestSchema as xc, type ToolsetPlatform as xd, ToolsetPlatformSchema as xe, ToolsetRuntimeSchema as xf, type ToolsetVersionManifest as xg, ToolsetVersionManifestSchema as xh, type ToolsetsScope as xi, ToolsetsScopeSchema as xj, type TraceTaintRequest as xk, TraceTaintRequestSchema as xl, type TraceTaintResponse as xm, TraceTaintResponseSchema as xn, type TraitProposal as xo, TraitProposalSchema as xp, type TransformStreamEvent as xq, TransformStreamEventSchema as xr, type TransformTextMode as xs, TransformTextModeSchema as xt, type TransformTextRequest as xu, TransformTextRequestSchema as xv, type TuningAction as xw, TuningActionSchema as xx, type TuningProfileId as xy, TuningProfileIdSchema as xz, AdvanceWhenSchema as y, WORKSPACE_READ_MAX_RESULT_BYTES as y$, UpdateProjectRequestSchema as y0, type UpdateQueuedMessageRequest as y1, UpdateQueuedMessageRequestSchema as y2, type UpdateQueuedMessageResponse as y3, UpdateQueuedMessageResponseSchema as y4, type UpdateTaskCraftbookRequest as y5, UpdateTaskCraftbookRequestSchema as y6, type UpdateTaskNoteRequest as y7, UpdateTaskNoteRequestSchema as y8, type UpdateTaskNoteResponse as y9, VideoModelIdentitySchema as yA, type VideoModelLoad as yB, VideoModelLoadSchema as yC, type VideoModelManifest as yD, VideoModelManifestSchema as yE, type VideoModelPullEvent as yF, VideoModelPullEventSchema as yG, type VideoModelSource as yH, VideoModelSourceSchema as yI, type VideoModelVersionManifest as yJ, VideoModelVersionManifestSchema as yK, VillageAnchorSchema as yL, type VillageDomainState as yM, VillageDomainStateSchema as yN, type VillageDowntown as yO, VillageDowntownSchema as yP, type VillageFile as yQ, VillageFileSchema as yR, type VillageJournalNode as yS, VillageJournalNodeSchema as yT, VillageOverrideSchema as yU, WORKSPACE_READ_DEADLINE_MS as yV, WORKSPACE_READ_MAX_BATCH_LINES as yW, WORKSPACE_READ_MAX_BATCH_RESULT_BYTES as yX, WORKSPACE_READ_MAX_BATCH_SCAN_BYTES as yY, WORKSPACE_READ_MAX_FILES as yZ, WORKSPACE_READ_MAX_RANGE_LINES as y_, UpdateTaskNoteResponseSchema as ya, type UpdateTaskRequest as yb, UpdateTaskRequestSchema as yc, type UpdateTaskStepRequest as yd, UpdateTaskStepRequestSchema as ye, type UpdateTaskStepResponse as yf, UpdateTaskStepResponseSchema as yg, VILLAGE_FILE_ABOUT as yh, VILLAGE_FILE_SCHEMA_VERSION as yi, type VideoAccelerator as yj, VideoAcceleratorSchema as yk, type VideoEngineStatusResponse as yl, VideoEngineStatusResponseSchema as ym, type VideoGenerationApprovalIntent as yn, VideoGenerationApprovalIntentSchema as yo, type VideoGenerationMeta as yp, VideoGenerationMetaSchema as yq, type VideoGenerationRequest as yr, VideoGenerationRequestSchema as ys, type VideoGenerationResponse as yt, VideoGenerationResponseSchema as yu, type VideoInputSource as yv, VideoInputSourceSchema as yw, type VideoModelFamily as yx, VideoModelFamilySchema as yy, type VideoModelIdentity as yz, type AnswerQuestionRequest as z, reorderStepsArray as z$, WORKSPACE_READ_MAX_SCAN_BYTES as z0, type WebSearchRequest as z1, WebSearchRequestSchema as z2, type WebSearchResponse as z3, WebSearchResponseSchema as z4, type WebhookChannelConfig as z5, WebhookChannelConfigSchema as z6, type WikipediaSearchRequest as z7, WikipediaSearchRequestSchema as z8, type WorkspaceCommandIndex as z9, assertCraftbookGraph as zA, compareSemver as zB, craftbookRequirementsMet as zC, credentialCapabilityName as zD, formatNpmRegistrySpec as zE, formatReviewProvenance as zF, gateEdgeTargets as zG, isCredentialCapability as zH, isDraftTask as zI, isKnownProfileId as zJ, isLegacyGateSpec as zK, isNightShiftTask as zL, isPendingNightShiftTask as zM, isScheduleHost as zN, isSemver as zO, isValidNpmPackageName as zP, isValidNpmRegistryVersion as zQ, levelForXp as zR, modelFitnessKey as zS, normalizeCodexPermissionMode as zT, normalizeScriptRefs as zU, normalizeStepGate as zV, parseCraftbookTestSpec as zW, parseTaskRef as zX, profileKind as zY, projectAllowsAmbientWork as zZ, removeStepAndCleanEdges as z_, WorkspaceCommandIndexSchema as za, type WorkspaceCommandShapes as zb, WorkspaceCommandShapesSchema as zc, type WorkspaceEditResponse as zd, WorkspaceEditResponseSchema as ze, type WorkspaceIndexMeta as zf, WorkspaceIndexMetaSchema as zg, type WorkspaceIndexStatus as zh, WorkspaceIndexStatusSchema as zi, type WorkspaceInstructionIndex as zj, WorkspaceInstructionIndexSchema as zk, type WorkspaceReadFileError as zl, WorkspaceReadFileErrorSchema as zm, type WorkspaceReadFileRequest as zn, WorkspaceReadFileRequestSchema as zo, type WorkspaceReadFileResult as zp, WorkspaceReadFileResultSchema as zq, type WorkspaceReadFileSuccess as zr, WorkspaceReadFileSuccessSchema as zs, type WorkspaceSkillIndex as zt, WorkspaceSkillIndexSchema as zu, type WriteDocumentRequest as zv, WriteDocumentRequestSchema as zw, type XtcSamplerConfig as zx, XtcSamplerSchema as zy, applyStepPatch as zz };
|