@bendyline/gezel 0.1.0 → 1.0.1

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.
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import './report-action-DzdQHzGG.js';
2
+ import './report-action-DIz_2QOu.js';
3
3
 
4
4
  /**
5
5
  * Who's responsible for a task or step. Shared across task.ts and
@@ -1738,6 +1738,68 @@ declare const InvokePageToolResponseSchema: z.ZodObject<{
1738
1738
  }, z.core.$strip>>;
1739
1739
  }, z.core.$strip>;
1740
1740
  type InvokePageToolResponse = z.infer<typeof InvokePageToolResponseSchema>;
1741
+ /**
1742
+ * Body for the first-party page-read route: a served type page reads a file
1743
+ * or directory the type's manifest declares in `pages.reads`. Scope is
1744
+ * re-derived from the trusted manifest per request (the write-side analog
1745
+ * is `resolvePageTools` on the page-invoke route) — this is the in-bridge
1746
+ * replacement for the out-of-band preview-capability fetch, which remains
1747
+ * for v0 pages, browser mode, and media URLs.
1748
+ */
1749
+ declare const PageReadRequestSchema: z.ZodObject<{
1750
+ op: z.ZodEnum<{
1751
+ read: "read";
1752
+ list: "list";
1753
+ stat: "stat";
1754
+ }>;
1755
+ source: z.ZodEnum<{
1756
+ workspace: "workspace";
1757
+ artifacts: "artifacts";
1758
+ }>;
1759
+ path: z.ZodString;
1760
+ as: z.ZodOptional<z.ZodEnum<{
1761
+ json: "json";
1762
+ text: "text";
1763
+ bytes: "bytes";
1764
+ }>>;
1765
+ maxBytes: z.ZodOptional<z.ZodNumber>;
1766
+ }, z.core.$strip>;
1767
+ type PageReadRequest = z.infer<typeof PageReadRequestSchema>;
1768
+ declare const PageReadEntrySchema: z.ZodObject<{
1769
+ name: z.ZodString;
1770
+ kind: z.ZodEnum<{
1771
+ file: "file";
1772
+ dir: "dir";
1773
+ }>;
1774
+ size: z.ZodNumber;
1775
+ mtime: z.ZodNumber;
1776
+ }, z.core.$strip>;
1777
+ type PageReadEntry = z.infer<typeof PageReadEntrySchema>;
1778
+ declare const PageReadResponseSchema: z.ZodObject<{
1779
+ op: z.ZodEnum<{
1780
+ read: "read";
1781
+ list: "list";
1782
+ stat: "stat";
1783
+ }>;
1784
+ content: z.ZodOptional<z.ZodString>;
1785
+ encoding: z.ZodOptional<z.ZodEnum<{
1786
+ utf8: "utf8";
1787
+ base64: "base64";
1788
+ }>>;
1789
+ entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
1790
+ name: z.ZodString;
1791
+ kind: z.ZodEnum<{
1792
+ file: "file";
1793
+ dir: "dir";
1794
+ }>;
1795
+ size: z.ZodNumber;
1796
+ mtime: z.ZodNumber;
1797
+ }, z.core.$strip>>>;
1798
+ etag: z.ZodString;
1799
+ size: z.ZodOptional<z.ZodNumber>;
1800
+ mtime: z.ZodOptional<z.ZodNumber>;
1801
+ }, z.core.$strip>;
1802
+ type PageReadResponse = z.infer<typeof PageReadResponseSchema>;
1741
1803
  declare const ListScriptsResponseSchema: z.ZodObject<{
1742
1804
  scripts: z.ZodArray<z.ZodObject<{
1743
1805
  name: z.ZodString;
@@ -8472,6 +8534,7 @@ declare const CraftbookTestHistoryExpectationSchema: z.ZodObject<{
8472
8534
  "memory.compacted": "memory.compacted";
8473
8535
  "memory.lessons-updated": "memory.lessons-updated";
8474
8536
  "project.digest.generated": "project.digest.generated";
8537
+ "project.index.reviewed": "project.index.reviewed";
8475
8538
  "meester.status.generated": "meester.status.generated";
8476
8539
  "gezel.level.up": "gezel.level.up";
8477
8540
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -9384,6 +9447,7 @@ declare const CraftbookTestSuccessSchema: z.ZodObject<{
9384
9447
  "memory.compacted": "memory.compacted";
9385
9448
  "memory.lessons-updated": "memory.lessons-updated";
9386
9449
  "project.digest.generated": "project.digest.generated";
9450
+ "project.index.reviewed": "project.index.reviewed";
9387
9451
  "meester.status.generated": "meester.status.generated";
9388
9452
  "gezel.level.up": "gezel.level.up";
9389
9453
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -9421,9 +9485,9 @@ declare const CraftbookTestRubricSchema: z.ZodObject<{
9421
9485
  path: z.ZodString;
9422
9486
  kind: z.ZodEnum<{
9423
9487
  json: "json";
9488
+ text: "text";
9424
9489
  typescript: "typescript";
9425
9490
  markdown: "markdown";
9426
- text: "text";
9427
9491
  html: "html";
9428
9492
  yaml: "yaml";
9429
9493
  }>;
@@ -10408,6 +10472,7 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
10408
10472
  "memory.compacted": "memory.compacted";
10409
10473
  "memory.lessons-updated": "memory.lessons-updated";
10410
10474
  "project.digest.generated": "project.digest.generated";
10475
+ "project.index.reviewed": "project.index.reviewed";
10411
10476
  "meester.status.generated": "meester.status.generated";
10412
10477
  "gezel.level.up": "gezel.level.up";
10413
10478
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -10444,9 +10509,9 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
10444
10509
  path: z.ZodString;
10445
10510
  kind: z.ZodEnum<{
10446
10511
  json: "json";
10512
+ text: "text";
10447
10513
  typescript: "typescript";
10448
10514
  markdown: "markdown";
10449
- text: "text";
10450
10515
  html: "html";
10451
10516
  yaml: "yaml";
10452
10517
  }>;
@@ -10483,6 +10548,15 @@ type ParseCraftbookTestSpecResult = {
10483
10548
  */
10484
10549
  declare function parseCraftbookTestSpec(raw: unknown, opts?: ParseCraftbookTestSpecOptions): ParseCraftbookTestSpecResult;
10485
10550
 
10551
+ /** Permission modes accepted by the Claude CLI `--permission-mode` flag. */
10552
+ declare const ClaudePermissionModeSchema: z.ZodEnum<{
10553
+ default: "default";
10554
+ plan: "plan";
10555
+ acceptEdits: "acceptEdits";
10556
+ bypassPermissions: "bypassPermissions";
10557
+ }>;
10558
+ type ClaudePermissionMode = z.infer<typeof ClaudePermissionModeSchema>;
10559
+
10486
10560
  /** User-facing Codex execution postures, ordered from least to most authority. */
10487
10561
  declare const CodexPermissionModeSchema: z.ZodEnum<{
10488
10562
  plan: "plan";
@@ -10595,6 +10669,9 @@ declare const ConfigureCodexRequestSchema: z.ZodObject<{
10595
10669
  }, z.core.$strip>;
10596
10670
  type ConfigureCodexRequest = z.infer<typeof ConfigureCodexRequestSchema>;
10597
10671
 
10672
+ declare const EntityIdSchema: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
10673
+ type EntityId = z.infer<typeof EntityIdSchema>;
10674
+
10598
10675
  /**
10599
10676
  * Gezel growth — purposeful gamification. Gezels accumulate XP from real
10600
10677
  * learning signals (deduplicated kind-tagged memories, distilled lessons,
@@ -11068,6 +11145,17 @@ declare const ProjectTabVisibilitySchema: z.ZodObject<{
11068
11145
  map: z.ZodOptional<z.ZodBoolean>;
11069
11146
  }, z.core.$strict>;
11070
11147
  type ProjectTabVisibility = z.infer<typeof ProjectTabVisibilitySchema>;
11148
+ /**
11149
+ * Policy for workspace mutations that pass through Gezel-managed sinks
11150
+ * (builtin MCP tools, scripts, schedulers, and Store workspace routes).
11151
+ * Provider-native harnesses such as Codex CLI have their own sandbox posture.
11152
+ */
11153
+ declare const ProjectManagedWorkspaceWritePolicySchema: z.ZodEnum<{
11154
+ auto: "auto";
11155
+ allow: "allow";
11156
+ deny: "deny";
11157
+ }>;
11158
+ type ProjectManagedWorkspaceWritePolicy = z.infer<typeof ProjectManagedWorkspaceWritePolicySchema>;
11071
11159
  /**
11072
11160
  * Provenance recorded on `project.json` when a custom project type is applied
11073
11161
  * (see docs/project-types.md). Captures which type + version + source
@@ -11084,7 +11172,7 @@ declare const ProjectTypeProvenanceSchema: z.ZodObject<{
11084
11172
  }, z.core.$strip>;
11085
11173
  type ProjectTypeProvenance = z.infer<typeof ProjectTypeProvenanceSchema>;
11086
11174
  declare const ProjectSchema: z.ZodObject<{
11087
- id: z.ZodString;
11175
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
11088
11176
  name: z.ZodString;
11089
11177
  description: z.ZodOptional<z.ZodString>;
11090
11178
  workingDir: z.ZodOptional<z.ZodString>;
@@ -11140,6 +11228,11 @@ declare const ProjectSchema: z.ZodObject<{
11140
11228
  artifacts: z.ZodOptional<z.ZodBoolean>;
11141
11229
  map: z.ZodOptional<z.ZodBoolean>;
11142
11230
  }, z.core.$strict>>;
11231
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
11232
+ auto: "auto";
11233
+ allow: "allow";
11234
+ deny: "deny";
11235
+ }>>;
11143
11236
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
11144
11237
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
11145
11238
  plan: "plan";
@@ -11147,6 +11240,12 @@ declare const ProjectSchema: z.ZodObject<{
11147
11240
  reviewed: "reviewed";
11148
11241
  full: "full";
11149
11242
  }>>;
11243
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
11244
+ default: "default";
11245
+ plan: "plan";
11246
+ acceptEdits: "acceptEdits";
11247
+ bypassPermissions: "bypassPermissions";
11248
+ }>>;
11150
11249
  status: z.ZodOptional<z.ZodEnum<{
11151
11250
  readonly: "readonly";
11152
11251
  active: "active";
@@ -11204,7 +11303,7 @@ declare const InstalledPackageSchema: z.ZodObject<{
11204
11303
  }, z.core.$strip>;
11205
11304
  type InstalledPackage = z.infer<typeof InstalledPackageSchema>;
11206
11305
  declare const ProjectDetailSchema: z.ZodObject<{
11207
- id: z.ZodString;
11306
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
11208
11307
  name: z.ZodString;
11209
11308
  description: z.ZodOptional<z.ZodString>;
11210
11309
  workingDir: z.ZodOptional<z.ZodString>;
@@ -11260,6 +11359,11 @@ declare const ProjectDetailSchema: z.ZodObject<{
11260
11359
  artifacts: z.ZodOptional<z.ZodBoolean>;
11261
11360
  map: z.ZodOptional<z.ZodBoolean>;
11262
11361
  }, z.core.$strict>>;
11362
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
11363
+ auto: "auto";
11364
+ allow: "allow";
11365
+ deny: "deny";
11366
+ }>>;
11263
11367
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
11264
11368
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
11265
11369
  plan: "plan";
@@ -11267,6 +11371,12 @@ declare const ProjectDetailSchema: z.ZodObject<{
11267
11371
  reviewed: "reviewed";
11268
11372
  full: "full";
11269
11373
  }>>;
11374
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
11375
+ default: "default";
11376
+ plan: "plan";
11377
+ acceptEdits: "acceptEdits";
11378
+ bypassPermissions: "bypassPermissions";
11379
+ }>>;
11270
11380
  status: z.ZodOptional<z.ZodEnum<{
11271
11381
  readonly: "readonly";
11272
11382
  active: "active";
@@ -18035,6 +18145,10 @@ declare const TaskSchema: z.ZodObject<{
18035
18145
  kind: z.ZodLiteral<"system-job">;
18036
18146
  jobId: z.ZodString;
18037
18147
  managedByGezelId: z.ZodOptional<z.ZodString>;
18148
+ }, z.core.$strip>, z.ZodObject<{
18149
+ kind: z.ZodLiteral<"boekwachter-issue">;
18150
+ issueRef: z.ZodString;
18151
+ path: z.ZodString;
18038
18152
  }, z.core.$strip>, z.ZodObject<{
18039
18153
  kind: z.ZodLiteral<"gezel-suggested-craftbook">;
18040
18154
  templateId: z.ZodString;
@@ -21704,6 +21818,10 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
21704
21818
  kind: z.ZodLiteral<"system-job">;
21705
21819
  jobId: z.ZodString;
21706
21820
  managedByGezelId: z.ZodOptional<z.ZodString>;
21821
+ }, z.core.$strip>, z.ZodObject<{
21822
+ kind: z.ZodLiteral<"boekwachter-issue">;
21823
+ issueRef: z.ZodString;
21824
+ path: z.ZodString;
21707
21825
  }, z.core.$strip>, z.ZodObject<{
21708
21826
  kind: z.ZodLiteral<"gezel-suggested-craftbook">;
21709
21827
  templateId: z.ZodString;
@@ -24653,6 +24771,10 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
24653
24771
  kind: z.ZodLiteral<"system-job">;
24654
24772
  jobId: z.ZodString;
24655
24773
  managedByGezelId: z.ZodOptional<z.ZodString>;
24774
+ }, z.core.$strip>, z.ZodObject<{
24775
+ kind: z.ZodLiteral<"boekwachter-issue">;
24776
+ issueRef: z.ZodString;
24777
+ path: z.ZodString;
24656
24778
  }, z.core.$strip>, z.ZodObject<{
24657
24779
  kind: z.ZodLiteral<"gezel-suggested-craftbook">;
24658
24780
  templateId: z.ZodString;
@@ -27097,6 +27219,10 @@ declare const ListTasksResponseSchema: z.ZodObject<{
27097
27219
  kind: z.ZodLiteral<"system-job">;
27098
27220
  jobId: z.ZodString;
27099
27221
  managedByGezelId: z.ZodOptional<z.ZodString>;
27222
+ }, z.core.$strip>, z.ZodObject<{
27223
+ kind: z.ZodLiteral<"boekwachter-issue">;
27224
+ issueRef: z.ZodString;
27225
+ path: z.ZodString;
27100
27226
  }, z.core.$strip>, z.ZodObject<{
27101
27227
  kind: z.ZodLiteral<"gezel-suggested-craftbook">;
27102
27228
  templateId: z.ZodString;
@@ -29506,6 +29632,10 @@ declare const TaskResponseSchema: z.ZodObject<{
29506
29632
  kind: z.ZodLiteral<"system-job">;
29507
29633
  jobId: z.ZodString;
29508
29634
  managedByGezelId: z.ZodOptional<z.ZodString>;
29635
+ }, z.core.$strip>, z.ZodObject<{
29636
+ kind: z.ZodLiteral<"boekwachter-issue">;
29637
+ issueRef: z.ZodString;
29638
+ path: z.ZodString;
29509
29639
  }, z.core.$strip>, z.ZodObject<{
29510
29640
  kind: z.ZodLiteral<"gezel-suggested-craftbook">;
29511
29641
  templateId: z.ZodString;
@@ -30763,6 +30893,7 @@ declare const TerminalThreadSummarySchema: z.ZodObject<{
30763
30893
  lastActivityAt: z.ZodString;
30764
30894
  archived: z.ZodOptional<z.ZodBoolean>;
30765
30895
  workingDir: z.ZodString;
30896
+ lastCommand: z.ZodOptional<z.ZodString>;
30766
30897
  }, z.core.$strip>;
30767
30898
  type TerminalThreadSummary = z.infer<typeof TerminalThreadSummarySchema>;
30768
30899
  declare const ListTerminalThreadsResponseSchema: z.ZodObject<{
@@ -30773,6 +30904,7 @@ declare const ListTerminalThreadsResponseSchema: z.ZodObject<{
30773
30904
  lastActivityAt: z.ZodString;
30774
30905
  archived: z.ZodOptional<z.ZodBoolean>;
30775
30906
  workingDir: z.ZodString;
30907
+ lastCommand: z.ZodOptional<z.ZodString>;
30776
30908
  }, z.core.$strip>>;
30777
30909
  }, z.core.$strip>;
30778
30910
  type ListTerminalThreadsResponse = z.infer<typeof ListTerminalThreadsResponseSchema>;
@@ -31116,6 +31248,7 @@ declare const HistoryEventKindSchema: z.ZodEnum<{
31116
31248
  "memory.compacted": "memory.compacted";
31117
31249
  "memory.lessons-updated": "memory.lessons-updated";
31118
31250
  "project.digest.generated": "project.digest.generated";
31251
+ "project.index.reviewed": "project.index.reviewed";
31119
31252
  "meester.status.generated": "meester.status.generated";
31120
31253
  "gezel.level.up": "gezel.level.up";
31121
31254
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -31241,6 +31374,7 @@ declare const HistoryEventSchema: z.ZodObject<{
31241
31374
  "memory.compacted": "memory.compacted";
31242
31375
  "memory.lessons-updated": "memory.lessons-updated";
31243
31376
  "project.digest.generated": "project.digest.generated";
31377
+ "project.index.reviewed": "project.index.reviewed";
31244
31378
  "meester.status.generated": "meester.status.generated";
31245
31379
  "gezel.level.up": "gezel.level.up";
31246
31380
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -31397,6 +31531,7 @@ declare const HistoryEventEntrySchema: z.ZodObject<{
31397
31531
  "memory.compacted": "memory.compacted";
31398
31532
  "memory.lessons-updated": "memory.lessons-updated";
31399
31533
  "project.digest.generated": "project.digest.generated";
31534
+ "project.index.reviewed": "project.index.reviewed";
31400
31535
  "meester.status.generated": "meester.status.generated";
31401
31536
  "gezel.level.up": "gezel.level.up";
31402
31537
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -31527,6 +31662,7 @@ declare const HistoryEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
31527
31662
  "memory.compacted": "memory.compacted";
31528
31663
  "memory.lessons-updated": "memory.lessons-updated";
31529
31664
  "project.digest.generated": "project.digest.generated";
31665
+ "project.index.reviewed": "project.index.reviewed";
31530
31666
  "meester.status.generated": "meester.status.generated";
31531
31667
  "gezel.level.up": "gezel.level.up";
31532
31668
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -31682,6 +31818,7 @@ declare const HistoryFilterSchema: z.ZodObject<{
31682
31818
  "memory.compacted": "memory.compacted";
31683
31819
  "memory.lessons-updated": "memory.lessons-updated";
31684
31820
  "project.digest.generated": "project.digest.generated";
31821
+ "project.index.reviewed": "project.index.reviewed";
31685
31822
  "meester.status.generated": "meester.status.generated";
31686
31823
  "gezel.level.up": "gezel.level.up";
31687
31824
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -31817,6 +31954,7 @@ declare const ListHistoryResponseSchema: z.ZodObject<{
31817
31954
  "memory.compacted": "memory.compacted";
31818
31955
  "memory.lessons-updated": "memory.lessons-updated";
31819
31956
  "project.digest.generated": "project.digest.generated";
31957
+ "project.index.reviewed": "project.index.reviewed";
31820
31958
  "meester.status.generated": "meester.status.generated";
31821
31959
  "gezel.level.up": "gezel.level.up";
31822
31960
  "gezel.trait.adopted": "gezel.trait.adopted";
@@ -32397,9 +32535,11 @@ type MeesterStatusResponse = z.infer<typeof MeesterStatusResponseSchema>;
32397
32535
  * review pass produces on top of the search-oriented enrichment summary:
32398
32536
  * type-specific notes (1 sentence to ~3 paragraphs of markdown), a structured
32399
32537
  * list of issues the model saw, and a 1-10 health score judged against a
32400
- * per-file-kind rubric. Stored hash-keyed in the per-project index db
32401
- * (`file_reviews`); served on outline-file/file-context and the `file_review`
32402
- * / `list_file_issues` tools.
32538
+ * per-file-kind rubric. Raw review snapshots are stored hash-keyed in the
32539
+ * per-project index db (`file_reviews`). Issues are additionally materialized
32540
+ * into a durable project-local lifecycle registry so an edit cannot erase the
32541
+ * observation; consumers receive an explicit stale bit when its old anchor no
32542
+ * longer matches the current file hash.
32403
32543
  */
32404
32544
  /**
32405
32545
  * Issue severity. Deliberately a SEPARATE vocabulary from security-finding
@@ -32423,6 +32563,65 @@ declare const FileReviewIssueSchema: z.ZodObject<{
32423
32563
  line: z.ZodOptional<z.ZodNumber>;
32424
32564
  }, z.core.$strip>;
32425
32565
  type FileReviewIssue = z.infer<typeof FileReviewIssueSchema>;
32566
+ /**
32567
+ * Durable lifecycle for a Boekwachter lead. Read/unread is deliberately kept
32568
+ * orthogonal to this state: opening an issue must not make it resolved, and a
32569
+ * resolved issue may still be marked unread when someone wants to revisit it.
32570
+ */
32571
+ declare const BoekwachterIssueStatusSchema: z.ZodEnum<{
32572
+ open: "open";
32573
+ in_progress: "in_progress";
32574
+ resolved: "resolved";
32575
+ dismissed: "dismissed";
32576
+ }>;
32577
+ type BoekwachterIssueStatus = z.infer<typeof BoekwachterIssueStatusSchema>;
32578
+ declare const BoekwachterIssueDismissalReasonSchema: z.ZodEnum<{
32579
+ not_an_issue: "not_an_issue";
32580
+ duplicate: "duplicate";
32581
+ wont_fix: "wont_fix";
32582
+ }>;
32583
+ type BoekwachterIssueDismissalReason = z.infer<typeof BoekwachterIssueDismissalReasonSchema>;
32584
+ /**
32585
+ * A review issue after it has been materialized into the project-local
32586
+ * lifecycle registry. `stale` means the current file hash differs from the
32587
+ * hash whose review last reported the issue; the old line is retained as
32588
+ * evidence, but consumers must label it as a previous anchor.
32589
+ */
32590
+ declare const BoekwachterIssueSchema: z.ZodObject<{
32591
+ severity: z.ZodEnum<{
32592
+ info: "info";
32593
+ major: "major";
32594
+ minor: "minor";
32595
+ }>;
32596
+ category: z.ZodString;
32597
+ message: z.ZodString;
32598
+ line: z.ZodOptional<z.ZodNumber>;
32599
+ ref: z.ZodString;
32600
+ id: z.ZodString;
32601
+ fingerprint: z.ZodString;
32602
+ path: z.ZodString;
32603
+ status: z.ZodEnum<{
32604
+ open: "open";
32605
+ in_progress: "in_progress";
32606
+ resolved: "resolved";
32607
+ dismissed: "dismissed";
32608
+ }>;
32609
+ seen: z.ZodBoolean;
32610
+ stale: z.ZodBoolean;
32611
+ taskRef: z.ZodOptional<z.ZodString>;
32612
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
32613
+ not_an_issue: "not_an_issue";
32614
+ duplicate: "duplicate";
32615
+ wont_fix: "wont_fix";
32616
+ }>>;
32617
+ createdAt: z.ZodString;
32618
+ lastSeenAt: z.ZodString;
32619
+ lastCheckedAt: z.ZodOptional<z.ZodString>;
32620
+ seenAt: z.ZodOptional<z.ZodString>;
32621
+ resolvedAt: z.ZodOptional<z.ZodString>;
32622
+ dismissedAt: z.ZodOptional<z.ZodString>;
32623
+ }, z.core.$strip>;
32624
+ type BoekwachterIssue = z.infer<typeof BoekwachterIssueSchema>;
32426
32625
  /**
32427
32626
  * The strict LLM-reply contract (snake keys — exactly what the review prompt
32428
32627
  * asks the model to emit). Parsed tolerantly then validated against this.
@@ -32459,9 +32658,19 @@ declare const FileReviewWireSchema: z.ZodObject<{
32459
32658
  health: z.ZodNumber;
32460
32659
  healthReason: z.ZodString;
32461
32660
  model: z.ZodNullable<z.ZodString>;
32661
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32662
+ gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32663
+ gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32664
+ appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32462
32665
  reviewedAt: z.ZodNullable<z.ZodString>;
32463
32666
  }, z.core.$strip>;
32464
32667
  type FileReviewWire = z.infer<typeof FileReviewWireSchema>;
32668
+ /**
32669
+ * One-line provenance rendering shared by the MCP tools and the UI review
32670
+ * card: `Reviewed by <model> (<provider>) · <gezel> · gezel <version> · <date>`.
32671
+ * Null segments drop out; null when even the model is unrecorded.
32672
+ */
32673
+ declare function formatReviewProvenance(r: Pick<FileReviewWire, 'model' | 'reviewedAt'> & Partial<Pick<FileReviewWire, 'provider' | 'gezelName' | 'appVersion'>>): string | null;
32465
32674
 
32466
32675
  declare const GitStatusResponseSchema: z.ZodObject<{
32467
32676
  github: z.ZodOptional<z.ZodObject<{
@@ -33319,6 +33528,10 @@ declare const OutlineFileResponseSchema: z.ZodObject<{
33319
33528
  health: z.ZodNumber;
33320
33529
  healthReason: z.ZodString;
33321
33530
  model: z.ZodNullable<z.ZodString>;
33531
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33532
+ gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33533
+ gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33534
+ appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33322
33535
  reviewedAt: z.ZodNullable<z.ZodString>;
33323
33536
  }, z.core.$strip>>;
33324
33537
  }, z.core.$strip>;
@@ -33527,6 +33740,10 @@ declare const FileContextResponseSchema: z.ZodObject<{
33527
33740
  health: z.ZodNumber;
33528
33741
  healthReason: z.ZodString;
33529
33742
  model: z.ZodNullable<z.ZodString>;
33743
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33744
+ gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33745
+ gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33746
+ appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33530
33747
  reviewedAt: z.ZodNullable<z.ZodString>;
33531
33748
  }, z.core.$strip>>;
33532
33749
  }, z.core.$strip>;
@@ -33554,8 +33771,47 @@ declare const FileReviewResponseSchema: z.ZodObject<{
33554
33771
  health: z.ZodNumber;
33555
33772
  healthReason: z.ZodString;
33556
33773
  model: z.ZodNullable<z.ZodString>;
33774
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33775
+ gezelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33776
+ gezelName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33777
+ appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33557
33778
  reviewedAt: z.ZodNullable<z.ZodString>;
33558
33779
  }, z.core.$strip>>;
33780
+ trackedIssues: z.ZodOptional<z.ZodArray<z.ZodObject<{
33781
+ severity: z.ZodEnum<{
33782
+ info: "info";
33783
+ major: "major";
33784
+ minor: "minor";
33785
+ }>;
33786
+ category: z.ZodString;
33787
+ message: z.ZodString;
33788
+ line: z.ZodOptional<z.ZodNumber>;
33789
+ ref: z.ZodString;
33790
+ id: z.ZodString;
33791
+ fingerprint: z.ZodString;
33792
+ path: z.ZodString;
33793
+ status: z.ZodEnum<{
33794
+ open: "open";
33795
+ in_progress: "in_progress";
33796
+ resolved: "resolved";
33797
+ dismissed: "dismissed";
33798
+ }>;
33799
+ seen: z.ZodBoolean;
33800
+ stale: z.ZodBoolean;
33801
+ taskRef: z.ZodOptional<z.ZodString>;
33802
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
33803
+ not_an_issue: "not_an_issue";
33804
+ duplicate: "duplicate";
33805
+ wont_fix: "wont_fix";
33806
+ }>>;
33807
+ createdAt: z.ZodString;
33808
+ lastSeenAt: z.ZodString;
33809
+ lastCheckedAt: z.ZodOptional<z.ZodString>;
33810
+ seenAt: z.ZodOptional<z.ZodString>;
33811
+ resolvedAt: z.ZodOptional<z.ZodString>;
33812
+ dismissedAt: z.ZodOptional<z.ZodString>;
33813
+ }, z.core.$strip>>>;
33814
+ eligible: z.ZodOptional<z.ZodBoolean>;
33559
33815
  }, z.core.$strip>;
33560
33816
  type FileReviewResponse = z.infer<typeof FileReviewResponseSchema>;
33561
33817
  declare const ListFileIssuesRequestSchema: z.ZodObject<{
@@ -33566,12 +33822,18 @@ declare const ListFileIssuesRequestSchema: z.ZodObject<{
33566
33822
  }>>;
33567
33823
  category: z.ZodOptional<z.ZodString>;
33568
33824
  path: z.ZodOptional<z.ZodString>;
33825
+ status: z.ZodOptional<z.ZodEnum<{
33826
+ open: "open";
33827
+ in_progress: "in_progress";
33828
+ resolved: "resolved";
33829
+ dismissed: "dismissed";
33830
+ }>>;
33831
+ includeClosed: z.ZodOptional<z.ZodBoolean>;
33569
33832
  maxResults: z.ZodOptional<z.ZodNumber>;
33570
33833
  }, z.core.$strip>;
33571
33834
  type ListFileIssuesRequest = z.infer<typeof ListFileIssuesRequestSchema>;
33572
33835
  declare const ListFileIssuesResponseSchema: z.ZodObject<{
33573
33836
  issues: z.ZodArray<z.ZodObject<{
33574
- path: z.ZodString;
33575
33837
  severity: z.ZodEnum<{
33576
33838
  info: "info";
33577
33839
  major: "major";
@@ -33580,6 +33842,30 @@ declare const ListFileIssuesResponseSchema: z.ZodObject<{
33580
33842
  category: z.ZodString;
33581
33843
  message: z.ZodString;
33582
33844
  line: z.ZodOptional<z.ZodNumber>;
33845
+ ref: z.ZodString;
33846
+ id: z.ZodString;
33847
+ fingerprint: z.ZodString;
33848
+ path: z.ZodString;
33849
+ status: z.ZodEnum<{
33850
+ open: "open";
33851
+ in_progress: "in_progress";
33852
+ resolved: "resolved";
33853
+ dismissed: "dismissed";
33854
+ }>;
33855
+ seen: z.ZodBoolean;
33856
+ stale: z.ZodBoolean;
33857
+ taskRef: z.ZodOptional<z.ZodString>;
33858
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
33859
+ not_an_issue: "not_an_issue";
33860
+ duplicate: "duplicate";
33861
+ wont_fix: "wont_fix";
33862
+ }>>;
33863
+ createdAt: z.ZodString;
33864
+ lastSeenAt: z.ZodString;
33865
+ lastCheckedAt: z.ZodOptional<z.ZodString>;
33866
+ seenAt: z.ZodOptional<z.ZodString>;
33867
+ resolvedAt: z.ZodOptional<z.ZodString>;
33868
+ dismissedAt: z.ZodOptional<z.ZodString>;
33583
33869
  }, z.core.$strip>>;
33584
33870
  counts: z.ZodObject<{
33585
33871
  total: z.ZodNumber;
@@ -33590,8 +33876,155 @@ declare const ListFileIssuesResponseSchema: z.ZodObject<{
33590
33876
  indexed: z.ZodBoolean;
33591
33877
  reviewedFiles: z.ZodNumber;
33592
33878
  eligibleFiles: z.ZodNumber;
33879
+ reviewers: z.ZodOptional<z.ZodArray<z.ZodObject<{
33880
+ model: z.ZodNullable<z.ZodString>;
33881
+ provider: z.ZodNullable<z.ZodString>;
33882
+ gezelName: z.ZodNullable<z.ZodString>;
33883
+ files: z.ZodNumber;
33884
+ }, z.core.$strip>>>;
33593
33885
  }, z.core.$strip>;
33594
33886
  type ListFileIssuesResponse = z.infer<typeof ListFileIssuesResponseSchema>;
33887
+ declare const GetBoekwachterIssueRequestSchema: z.ZodObject<{
33888
+ ref: z.ZodString;
33889
+ }, z.core.$strip>;
33890
+ type GetBoekwachterIssueRequest = z.infer<typeof GetBoekwachterIssueRequestSchema>;
33891
+ declare const GetBoekwachterIssueResponseSchema: z.ZodObject<{
33892
+ issue: z.ZodObject<{
33893
+ severity: z.ZodEnum<{
33894
+ info: "info";
33895
+ major: "major";
33896
+ minor: "minor";
33897
+ }>;
33898
+ category: z.ZodString;
33899
+ message: z.ZodString;
33900
+ line: z.ZodOptional<z.ZodNumber>;
33901
+ ref: z.ZodString;
33902
+ id: z.ZodString;
33903
+ fingerprint: z.ZodString;
33904
+ path: z.ZodString;
33905
+ status: z.ZodEnum<{
33906
+ open: "open";
33907
+ in_progress: "in_progress";
33908
+ resolved: "resolved";
33909
+ dismissed: "dismissed";
33910
+ }>;
33911
+ seen: z.ZodBoolean;
33912
+ stale: z.ZodBoolean;
33913
+ taskRef: z.ZodOptional<z.ZodString>;
33914
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
33915
+ not_an_issue: "not_an_issue";
33916
+ duplicate: "duplicate";
33917
+ wont_fix: "wont_fix";
33918
+ }>>;
33919
+ createdAt: z.ZodString;
33920
+ lastSeenAt: z.ZodString;
33921
+ lastCheckedAt: z.ZodOptional<z.ZodString>;
33922
+ seenAt: z.ZodOptional<z.ZodString>;
33923
+ resolvedAt: z.ZodOptional<z.ZodString>;
33924
+ dismissedAt: z.ZodOptional<z.ZodString>;
33925
+ }, z.core.$strip>;
33926
+ }, z.core.$strip>;
33927
+ type GetBoekwachterIssueResponse = z.infer<typeof GetBoekwachterIssueResponseSchema>;
33928
+ declare const UpdateBoekwachterIssueRequestSchema: z.ZodObject<{
33929
+ ref: z.ZodString;
33930
+ status: z.ZodOptional<z.ZodEnum<{
33931
+ open: "open";
33932
+ in_progress: "in_progress";
33933
+ resolved: "resolved";
33934
+ dismissed: "dismissed";
33935
+ }>>;
33936
+ seen: z.ZodOptional<z.ZodBoolean>;
33937
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
33938
+ not_an_issue: "not_an_issue";
33939
+ duplicate: "duplicate";
33940
+ wont_fix: "wont_fix";
33941
+ }>>;
33942
+ }, z.core.$strip>;
33943
+ type UpdateBoekwachterIssueRequest = z.infer<typeof UpdateBoekwachterIssueRequestSchema>;
33944
+ declare const UpdateBoekwachterIssueResponseSchema: z.ZodObject<{
33945
+ issue: z.ZodObject<{
33946
+ severity: z.ZodEnum<{
33947
+ info: "info";
33948
+ major: "major";
33949
+ minor: "minor";
33950
+ }>;
33951
+ category: z.ZodString;
33952
+ message: z.ZodString;
33953
+ line: z.ZodOptional<z.ZodNumber>;
33954
+ ref: z.ZodString;
33955
+ id: z.ZodString;
33956
+ fingerprint: z.ZodString;
33957
+ path: z.ZodString;
33958
+ status: z.ZodEnum<{
33959
+ open: "open";
33960
+ in_progress: "in_progress";
33961
+ resolved: "resolved";
33962
+ dismissed: "dismissed";
33963
+ }>;
33964
+ seen: z.ZodBoolean;
33965
+ stale: z.ZodBoolean;
33966
+ taskRef: z.ZodOptional<z.ZodString>;
33967
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
33968
+ not_an_issue: "not_an_issue";
33969
+ duplicate: "duplicate";
33970
+ wont_fix: "wont_fix";
33971
+ }>>;
33972
+ createdAt: z.ZodString;
33973
+ lastSeenAt: z.ZodString;
33974
+ lastCheckedAt: z.ZodOptional<z.ZodString>;
33975
+ seenAt: z.ZodOptional<z.ZodString>;
33976
+ resolvedAt: z.ZodOptional<z.ZodString>;
33977
+ dismissedAt: z.ZodOptional<z.ZodString>;
33978
+ }, z.core.$strip>;
33979
+ }, z.core.$strip>;
33980
+ type UpdateBoekwachterIssueResponse = z.infer<typeof UpdateBoekwachterIssueResponseSchema>;
33981
+ declare const FixBoekwachterIssueRequestSchema: z.ZodObject<{
33982
+ ref: z.ZodString;
33983
+ gezelId: z.ZodString;
33984
+ message: z.ZodString;
33985
+ }, z.core.$strip>;
33986
+ type FixBoekwachterIssueRequest = z.infer<typeof FixBoekwachterIssueRequestSchema>;
33987
+ declare const FixBoekwachterIssueResponseSchema: z.ZodObject<{
33988
+ issue: z.ZodObject<{
33989
+ severity: z.ZodEnum<{
33990
+ info: "info";
33991
+ major: "major";
33992
+ minor: "minor";
33993
+ }>;
33994
+ category: z.ZodString;
33995
+ message: z.ZodString;
33996
+ line: z.ZodOptional<z.ZodNumber>;
33997
+ ref: z.ZodString;
33998
+ id: z.ZodString;
33999
+ fingerprint: z.ZodString;
34000
+ path: z.ZodString;
34001
+ status: z.ZodEnum<{
34002
+ open: "open";
34003
+ in_progress: "in_progress";
34004
+ resolved: "resolved";
34005
+ dismissed: "dismissed";
34006
+ }>;
34007
+ seen: z.ZodBoolean;
34008
+ stale: z.ZodBoolean;
34009
+ taskRef: z.ZodOptional<z.ZodString>;
34010
+ dismissalReason: z.ZodOptional<z.ZodEnum<{
34011
+ not_an_issue: "not_an_issue";
34012
+ duplicate: "duplicate";
34013
+ wont_fix: "wont_fix";
34014
+ }>>;
34015
+ createdAt: z.ZodString;
34016
+ lastSeenAt: z.ZodString;
34017
+ lastCheckedAt: z.ZodOptional<z.ZodString>;
34018
+ seenAt: z.ZodOptional<z.ZodString>;
34019
+ resolvedAt: z.ZodOptional<z.ZodString>;
34020
+ dismissedAt: z.ZodOptional<z.ZodString>;
34021
+ }, z.core.$strip>;
34022
+ taskRef: z.ZodString;
34023
+ gezelId: z.ZodString;
34024
+ gezelName: z.ZodString;
34025
+ enqueued: z.ZodBoolean;
34026
+ }, z.core.$strip>;
34027
+ type FixBoekwachterIssueResponse = z.infer<typeof FixBoekwachterIssueResponseSchema>;
33595
34028
  declare const MapRepoRequestSchema: z.ZodObject<{
33596
34029
  path: z.ZodOptional<z.ZodString>;
33597
34030
  }, z.core.$strip>;
@@ -33708,11 +34141,11 @@ declare const ResidentEngineModelSchema: z.ZodObject<{
33708
34141
  }, z.core.$strip>;
33709
34142
  type ResidentEngineModel = z.infer<typeof ResidentEngineModelSchema>;
33710
34143
  declare const GpuProcessOwnerSchema: z.ZodEnum<{
34144
+ external: "external";
33711
34145
  "machine-engine": "machine-engine";
33712
34146
  "app-engine": "app-engine";
33713
34147
  "development-engine": "development-engine";
33714
34148
  "gezel-engine": "gezel-engine";
33715
- external: "external";
33716
34149
  }>;
33717
34150
  type GpuProcessOwner = z.infer<typeof GpuProcessOwnerSchema>;
33718
34151
  /** Windows driver accounting for one process holding dedicated GPU memory. */
@@ -33721,11 +34154,11 @@ declare const GpuProcessMemorySchema: z.ZodObject<{
33721
34154
  name: z.ZodOptional<z.ZodString>;
33722
34155
  dedicatedBytes: z.ZodNumber;
33723
34156
  owner: z.ZodEnum<{
34157
+ external: "external";
33724
34158
  "machine-engine": "machine-engine";
33725
34159
  "app-engine": "app-engine";
33726
34160
  "development-engine": "development-engine";
33727
34161
  "gezel-engine": "gezel-engine";
33728
- external: "external";
33729
34162
  }>;
33730
34163
  }, z.core.$strip>;
33731
34164
  type GpuProcessMemory = z.infer<typeof GpuProcessMemorySchema>;
@@ -33816,11 +34249,11 @@ declare const MachineMemoryUsageSchema: z.ZodObject<{
33816
34249
  name: z.ZodOptional<z.ZodString>;
33817
34250
  dedicatedBytes: z.ZodNumber;
33818
34251
  owner: z.ZodEnum<{
34252
+ external: "external";
33819
34253
  "machine-engine": "machine-engine";
33820
34254
  "app-engine": "app-engine";
33821
34255
  "development-engine": "development-engine";
33822
34256
  "gezel-engine": "gezel-engine";
33823
- external: "external";
33824
34257
  }>;
33825
34258
  }, z.core.$strip>>>;
33826
34259
  gezelEngineProcessCount: z.ZodNumber;
@@ -34307,6 +34740,9 @@ declare const GezelConfigSchema: z.ZodObject<{
34307
34740
  scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
34308
34741
  acquiredAt: z.ZodOptional<z.ZodString>;
34309
34742
  }, z.core.$strip>>;
34743
+ oauthClients: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
34744
+ clientId: z.ZodString;
34745
+ }, z.core.$strip>>>;
34310
34746
  openaiApiKey: z.ZodOptional<z.ZodString>;
34311
34747
  openaiOrganization: z.ZodOptional<z.ZodString>;
34312
34748
  anthropicApiKey: z.ZodOptional<z.ZodString>;
@@ -35191,6 +35627,9 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
35191
35627
  scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
35192
35628
  acquiredAt: z.ZodOptional<z.ZodString>;
35193
35629
  }, z.core.$strip>>;
35630
+ oauthClients: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
35631
+ clientId: z.ZodString;
35632
+ }, z.core.$strip>>>;
35194
35633
  openaiApiKey: z.ZodOptional<z.ZodString>;
35195
35634
  openaiOrganization: z.ZodOptional<z.ZodString>;
35196
35635
  anthropicApiKey: z.ZodOptional<z.ZodString>;
@@ -35936,7 +36375,7 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
35936
36375
  type UpdateConfigRequest = z.infer<typeof UpdateConfigRequestSchema>;
35937
36376
  declare const ListGezelsResponseSchema: z.ZodObject<{
35938
36377
  gezels: z.ZodArray<z.ZodObject<{
35939
- id: z.ZodString;
36378
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
35940
36379
  name: z.ZodString;
35941
36380
  description: z.ZodOptional<z.ZodString>;
35942
36381
  role: z.ZodOptional<z.ZodString>;
@@ -36133,7 +36572,7 @@ declare const CreateGezelRequestSchema: z.ZodObject<{
36133
36572
  about: z.ZodOptional<z.ZodString>;
36134
36573
  }, z.core.$strip>;
36135
36574
  declare const GezelResponseSchema: z.ZodObject<{
36136
- id: z.ZodString;
36575
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
36137
36576
  name: z.ZodString;
36138
36577
  description: z.ZodOptional<z.ZodString>;
36139
36578
  role: z.ZodOptional<z.ZodString>;
@@ -36317,7 +36756,7 @@ declare const GezelResponseSchema: z.ZodObject<{
36317
36756
  updatedAt: z.ZodString;
36318
36757
  parsed: z.ZodObject<{
36319
36758
  frontmatter: z.ZodObject<{
36320
- id: z.ZodOptional<z.ZodString>;
36759
+ id: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
36321
36760
  name: z.ZodString;
36322
36761
  description: z.ZodOptional<z.ZodString>;
36323
36762
  role: z.ZodOptional<z.ZodString>;
@@ -38086,8 +38525,8 @@ declare const AnswerQuestionRequestSchema: z.ZodObject<{
38086
38525
  declined: z.ZodOptional<z.ZodBoolean>;
38087
38526
  silentSkip: z.ZodOptional<z.ZodBoolean>;
38088
38527
  npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
38089
- package: z.ZodString;
38090
- version: z.ZodString;
38528
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38529
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38091
38530
  decision: z.ZodEnum<{
38092
38531
  always: "always";
38093
38532
  install: "install";
@@ -38111,8 +38550,8 @@ declare const ListQuestionsResponseSchema: z.ZodObject<{
38111
38550
  intent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
38112
38551
  kind: z.ZodLiteral<"npm-install-approval">;
38113
38552
  packages: z.ZodArray<z.ZodObject<{
38114
- package: z.ZodString;
38115
- version: z.ZodString;
38553
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38554
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38116
38555
  }, z.core.$strip>>;
38117
38556
  }, z.core.$strip>, z.ZodObject<{
38118
38557
  kind: z.ZodLiteral<"command-approval">;
@@ -38123,6 +38562,10 @@ declare const ListQuestionsResponseSchema: z.ZodObject<{
38123
38562
  name: z.ZodString;
38124
38563
  body: z.ZodOptional<z.ZodString>;
38125
38564
  args: z.ZodOptional<z.ZodArray<z.ZodString>>;
38565
+ inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
38566
+ path: z.ZodString;
38567
+ sha256: z.ZodString;
38568
+ }, z.core.$strip>>>;
38126
38569
  }, z.core.$strip>, z.ZodObject<{
38127
38570
  kind: z.ZodLiteral<"tool-permission">;
38128
38571
  toolName: z.ZodString;
@@ -38190,8 +38633,8 @@ declare const ListQuestionsResponseSchema: z.ZodObject<{
38190
38633
  declined: z.ZodOptional<z.ZodBoolean>;
38191
38634
  silentSkip: z.ZodOptional<z.ZodBoolean>;
38192
38635
  npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
38193
- package: z.ZodString;
38194
- version: z.ZodString;
38636
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38637
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38195
38638
  decision: z.ZodEnum<{
38196
38639
  always: "always";
38197
38640
  install: "install";
@@ -38521,7 +38964,7 @@ declare const CopilotAvailabilitySchema: z.ZodObject<{
38521
38964
  type CopilotAvailability = z.infer<typeof CopilotAvailabilitySchema>;
38522
38965
  declare const ListProjectsResponseSchema: z.ZodObject<{
38523
38966
  projects: z.ZodArray<z.ZodObject<{
38524
- id: z.ZodString;
38967
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38525
38968
  name: z.ZodString;
38526
38969
  description: z.ZodOptional<z.ZodString>;
38527
38970
  workingDir: z.ZodOptional<z.ZodString>;
@@ -38577,6 +39020,11 @@ declare const ListProjectsResponseSchema: z.ZodObject<{
38577
39020
  artifacts: z.ZodOptional<z.ZodBoolean>;
38578
39021
  map: z.ZodOptional<z.ZodBoolean>;
38579
39022
  }, z.core.$strict>>;
39023
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
39024
+ auto: "auto";
39025
+ allow: "allow";
39026
+ deny: "deny";
39027
+ }>>;
38580
39028
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
38581
39029
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
38582
39030
  plan: "plan";
@@ -38584,6 +39032,12 @@ declare const ListProjectsResponseSchema: z.ZodObject<{
38584
39032
  reviewed: "reviewed";
38585
39033
  full: "full";
38586
39034
  }>>;
39035
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
39036
+ default: "default";
39037
+ plan: "plan";
39038
+ acceptEdits: "acceptEdits";
39039
+ bypassPermissions: "bypassPermissions";
39040
+ }>>;
38587
39041
  status: z.ZodOptional<z.ZodEnum<{
38588
39042
  readonly: "readonly";
38589
39043
  active: "active";
@@ -38651,6 +39105,11 @@ declare const UpdateProjectRequestSchema: z.ZodObject<{
38651
39105
  url: z.ZodOptional<z.ZodString>;
38652
39106
  branch: z.ZodOptional<z.ZodString>;
38653
39107
  }, z.core.$strip>]>>;
39108
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
39109
+ auto: "auto";
39110
+ allow: "allow";
39111
+ deny: "deny";
39112
+ }>>;
38654
39113
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
38655
39114
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
38656
39115
  plan: "plan";
@@ -38658,6 +39117,12 @@ declare const UpdateProjectRequestSchema: z.ZodObject<{
38658
39117
  reviewed: "reviewed";
38659
39118
  full: "full";
38660
39119
  }>>;
39120
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
39121
+ default: "default";
39122
+ plan: "plan";
39123
+ acceptEdits: "acceptEdits";
39124
+ bypassPermissions: "bypassPermissions";
39125
+ }>>;
38661
39126
  nudgeConfig: z.ZodOptional<z.ZodObject<{
38662
39127
  enabled: z.ZodOptional<z.ZodBoolean>;
38663
39128
  rapidIntervalMs: z.ZodOptional<z.ZodNumber>;
@@ -38783,7 +39248,7 @@ declare const CreateTypedProjectRequestSchema: z.ZodObject<{
38783
39248
  type CreateTypedProjectRequest = z.infer<typeof CreateTypedProjectRequestSchema>;
38784
39249
  declare const CreateTypedProjectResponseSchema: z.ZodObject<{
38785
39250
  project: z.ZodObject<{
38786
- id: z.ZodString;
39251
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38787
39252
  name: z.ZodString;
38788
39253
  description: z.ZodOptional<z.ZodString>;
38789
39254
  workingDir: z.ZodOptional<z.ZodString>;
@@ -38839,6 +39304,11 @@ declare const CreateTypedProjectResponseSchema: z.ZodObject<{
38839
39304
  artifacts: z.ZodOptional<z.ZodBoolean>;
38840
39305
  map: z.ZodOptional<z.ZodBoolean>;
38841
39306
  }, z.core.$strict>>;
39307
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
39308
+ auto: "auto";
39309
+ allow: "allow";
39310
+ deny: "deny";
39311
+ }>>;
38842
39312
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
38843
39313
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
38844
39314
  plan: "plan";
@@ -38846,6 +39316,12 @@ declare const CreateTypedProjectResponseSchema: z.ZodObject<{
38846
39316
  reviewed: "reviewed";
38847
39317
  full: "full";
38848
39318
  }>>;
39319
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
39320
+ default: "default";
39321
+ plan: "plan";
39322
+ acceptEdits: "acceptEdits";
39323
+ bypassPermissions: "bypassPermissions";
39324
+ }>>;
38849
39325
  status: z.ZodOptional<z.ZodEnum<{
38850
39326
  readonly: "readonly";
38851
39327
  active: "active";
@@ -38924,7 +39400,7 @@ declare const CreateTypedProjectResponseSchema: z.ZodObject<{
38924
39400
  }, z.core.$strip>;
38925
39401
  type CreateTypedProjectResponse = z.infer<typeof CreateTypedProjectResponseSchema>;
38926
39402
  declare const ProjectResponseSchema: z.ZodObject<{
38927
- id: z.ZodString;
39403
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
38928
39404
  name: z.ZodString;
38929
39405
  description: z.ZodOptional<z.ZodString>;
38930
39406
  workingDir: z.ZodOptional<z.ZodString>;
@@ -38980,6 +39456,11 @@ declare const ProjectResponseSchema: z.ZodObject<{
38980
39456
  artifacts: z.ZodOptional<z.ZodBoolean>;
38981
39457
  map: z.ZodOptional<z.ZodBoolean>;
38982
39458
  }, z.core.$strict>>;
39459
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
39460
+ auto: "auto";
39461
+ allow: "allow";
39462
+ deny: "deny";
39463
+ }>>;
38983
39464
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
38984
39465
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
38985
39466
  plan: "plan";
@@ -38987,6 +39468,12 @@ declare const ProjectResponseSchema: z.ZodObject<{
38987
39468
  reviewed: "reviewed";
38988
39469
  full: "full";
38989
39470
  }>>;
39471
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
39472
+ default: "default";
39473
+ plan: "plan";
39474
+ acceptEdits: "acceptEdits";
39475
+ bypassPermissions: "bypassPermissions";
39476
+ }>>;
38990
39477
  status: z.ZodOptional<z.ZodEnum<{
38991
39478
  readonly: "readonly";
38992
39479
  active: "active";
@@ -39024,12 +39511,24 @@ declare const ProjectResponseSchema: z.ZodObject<{
39024
39511
  missionObjectives: z.ZodOptional<z.ZodString>;
39025
39512
  }, z.core.$strip>;
39026
39513
  declare const InstallPackageRequestSchema: z.ZodObject<{
39027
- name: z.ZodString;
39028
- version: z.ZodOptional<z.ZodString>;
39029
- }, z.core.$strip>;
39514
+ name: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
39515
+ version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
39516
+ }, z.core.$strict>;
39517
+ /** Batch model-facing npm install request, plus its legacy singular shape. */
39518
+ declare const NpmInstallRequestSchema: z.ZodObject<{
39519
+ packages: z.ZodOptional<z.ZodArray<z.ZodObject<{
39520
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
39521
+ version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
39522
+ }, z.core.$strict>>>;
39523
+ package: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
39524
+ version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
39525
+ gezelId: z.ZodOptional<z.ZodString>;
39526
+ sessionId: z.ZodOptional<z.ZodString>;
39527
+ }, z.core.$strict>;
39528
+ type NpmInstallRequest = z.infer<typeof NpmInstallRequestSchema>;
39030
39529
  declare const InstallPackageResponseSchema: z.ZodObject<{
39031
39530
  project: z.ZodObject<{
39032
- id: z.ZodString;
39531
+ id: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
39033
39532
  name: z.ZodString;
39034
39533
  description: z.ZodOptional<z.ZodString>;
39035
39534
  workingDir: z.ZodOptional<z.ZodString>;
@@ -39085,6 +39584,11 @@ declare const InstallPackageResponseSchema: z.ZodObject<{
39085
39584
  artifacts: z.ZodOptional<z.ZodBoolean>;
39086
39585
  map: z.ZodOptional<z.ZodBoolean>;
39087
39586
  }, z.core.$strict>>;
39587
+ managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
39588
+ auto: "auto";
39589
+ allow: "allow";
39590
+ deny: "deny";
39591
+ }>>;
39088
39592
  allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
39089
39593
  codexPermissionMode: z.ZodOptional<z.ZodEnum<{
39090
39594
  plan: "plan";
@@ -39092,6 +39596,12 @@ declare const InstallPackageResponseSchema: z.ZodObject<{
39092
39596
  reviewed: "reviewed";
39093
39597
  full: "full";
39094
39598
  }>>;
39599
+ claudePermissionMode: z.ZodOptional<z.ZodEnum<{
39600
+ default: "default";
39601
+ plan: "plan";
39602
+ acceptEdits: "acceptEdits";
39603
+ bypassPermissions: "bypassPermissions";
39604
+ }>>;
39095
39605
  status: z.ZodOptional<z.ZodEnum<{
39096
39606
  readonly: "readonly";
39097
39607
  active: "active";
@@ -41048,8 +41558,8 @@ declare const WorkspaceIndexStatusSchema: z.ZodObject<{
41048
41558
  state: z.ZodEnum<{
41049
41559
  never: "never";
41050
41560
  disabled: "disabled";
41051
- fresh: "fresh";
41052
41561
  stale: "stale";
41562
+ fresh: "fresh";
41053
41563
  indexing: "indexing";
41054
41564
  }>;
41055
41565
  meta: z.ZodOptional<z.ZodObject<{
@@ -41062,11 +41572,17 @@ declare const WorkspaceIndexStatusSchema: z.ZodObject<{
41062
41572
  shapeCount: z.ZodOptional<z.ZodNumber>;
41063
41573
  }, z.core.$strip>>;
41064
41574
  aiScanPending: z.ZodOptional<z.ZodBoolean>;
41575
+ aiDrive: z.ZodOptional<z.ZodEnum<{
41576
+ full: "full";
41577
+ background: "background";
41578
+ }>>;
41065
41579
  enrichment: z.ZodOptional<z.ZodObject<{
41066
41580
  eligible: z.ZodNumber;
41067
41581
  summarized: z.ZodNumber;
41068
41582
  embedded: z.ZodNumber;
41069
41583
  pending: z.ZodNumber;
41584
+ skipped: z.ZodOptional<z.ZodNumber>;
41585
+ shadowsPending: z.ZodOptional<z.ZodNumber>;
41070
41586
  embedModel: z.ZodOptional<z.ZodString>;
41071
41587
  reviews: z.ZodOptional<z.ZodObject<{
41072
41588
  eligible: z.ZodNumber;
@@ -41078,15 +41594,25 @@ declare const WorkspaceIndexStatusSchema: z.ZodObject<{
41078
41594
  }, z.core.$strip>;
41079
41595
  type WorkspaceIndexStatus = z.infer<typeof WorkspaceIndexStatusSchema>;
41080
41596
  /**
41081
- * On-demand enrichment drive ("study now"): one bounded pass per request —
41082
- * the caller loops until `drained`. Complements the idle-gated background
41083
- * loop; still respects the boekwachter task's pause.
41597
+ * On-demand enrichment drive ("study now"). Two shapes:
41598
+ * - legacy (no `intensity`): one bounded synchronous pass per request — the
41599
+ * caller loops until `drained`.
41600
+ * - `intensity` set: starts a server-side drive job (static refresh first,
41601
+ * then every AI tier to drain) and returns immediately with
41602
+ * `started: true`; progress flows over `index_progress` events and
41603
+ * `/index/status` polling.
41604
+ * Both ensure the static index is current before AI work and respect the
41605
+ * boekwachter task's pause.
41084
41606
  */
41085
41607
  declare const DriveIndexEnrichmentRequestSchema: z.ZodObject<{
41086
41608
  maxFiles: z.ZodOptional<z.ZodNumber>;
41087
41609
  budgetMs: z.ZodOptional<z.ZodNumber>;
41088
41610
  areas: z.ZodOptional<z.ZodBoolean>;
41089
41611
  reviews: z.ZodOptional<z.ZodBoolean>;
41612
+ intensity: z.ZodOptional<z.ZodEnum<{
41613
+ full: "full";
41614
+ background: "background";
41615
+ }>>;
41090
41616
  }, z.core.$strip>;
41091
41617
  type DriveIndexEnrichmentRequest = z.infer<typeof DriveIndexEnrichmentRequestSchema>;
41092
41618
  declare const DriveIndexEnrichmentResponseSchema: z.ZodObject<{
@@ -41100,6 +41626,12 @@ declare const DriveIndexEnrichmentResponseSchema: z.ZodObject<{
41100
41626
  reviewed: z.ZodOptional<z.ZodNumber>;
41101
41627
  reviewPending: z.ZodOptional<z.ZodNumber>;
41102
41628
  drained: z.ZodBoolean;
41629
+ started: z.ZodOptional<z.ZodBoolean>;
41630
+ alreadyRunning: z.ZodOptional<z.ZodBoolean>;
41631
+ mode: z.ZodOptional<z.ZodEnum<{
41632
+ full: "full";
41633
+ background: "background";
41634
+ }>>;
41103
41635
  }, z.core.$strip>;
41104
41636
  type DriveIndexEnrichmentResponse = z.infer<typeof DriveIndexEnrichmentResponseSchema>;
41105
41637
  /**
@@ -45605,6 +46137,7 @@ declare const ProjectTypePreviewReadSchema: z.ZodObject<{
45605
46137
  type ProjectTypePreviewRead = z.infer<typeof ProjectTypePreviewReadSchema>;
45606
46138
  declare const ProjectTypePagesSchema: z.ZodObject<{
45607
46139
  entry: z.ZodString;
46140
+ api: z.ZodOptional<z.ZodLiteral<1>>;
45608
46141
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
45609
46142
  source: z.ZodEnum<{
45610
46143
  type: "type";
@@ -45711,6 +46244,7 @@ declare const ProjectTypeVersionManifestSchema: z.ZodObject<{
45711
46244
  }, z.core.$strip>>>;
45712
46245
  pages: z.ZodOptional<z.ZodObject<{
45713
46246
  entry: z.ZodString;
46247
+ api: z.ZodOptional<z.ZodLiteral<1>>;
45714
46248
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
45715
46249
  source: z.ZodEnum<{
45716
46250
  type: "type";
@@ -45803,6 +46337,7 @@ declare const ProjectTypeManifestSchema: z.ZodObject<{
45803
46337
  }, z.core.$strip>>>;
45804
46338
  pages: z.ZodOptional<z.ZodObject<{
45805
46339
  entry: z.ZodString;
46340
+ api: z.ZodOptional<z.ZodLiteral<1>>;
45806
46341
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
45807
46342
  source: z.ZodEnum<{
45808
46343
  type: "type";
@@ -45921,6 +46456,7 @@ declare const ConnectorTypeVersionManifestSchema: z.ZodObject<{
45921
46456
  mirror: "mirror";
45922
46457
  window: "window";
45923
46458
  }>>;
46459
+ allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
45924
46460
  notes: z.ZodOptional<z.ZodString>;
45925
46461
  schemaVersion: z.ZodLiteral<1>;
45926
46462
  version: z.ZodString;
@@ -45957,6 +46493,7 @@ declare const ConnectorTypeManifestSchema: z.ZodObject<{
45957
46493
  mirror: "mirror";
45958
46494
  window: "window";
45959
46495
  }>>;
46496
+ allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
45960
46497
  notes: z.ZodOptional<z.ZodString>;
45961
46498
  schemaVersion: z.ZodLiteral<1>;
45962
46499
  kind: z.ZodLiteral<"connector-type">;
@@ -49118,6 +49655,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
49118
49655
  }, z.core.$strip>>>;
49119
49656
  pages: z.ZodOptional<z.ZodObject<{
49120
49657
  entry: z.ZodString;
49658
+ api: z.ZodOptional<z.ZodLiteral<1>>;
49121
49659
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
49122
49660
  source: z.ZodEnum<{
49123
49661
  type: "type";
@@ -49207,6 +49745,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
49207
49745
  mirror: "mirror";
49208
49746
  window: "window";
49209
49747
  }>>;
49748
+ allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
49210
49749
  notes: z.ZodOptional<z.ZodString>;
49211
49750
  schemaVersion: z.ZodLiteral<1>;
49212
49751
  kind: z.ZodLiteral<"connector-type">;
@@ -51129,6 +51668,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
51129
51668
  }, z.core.$strip>>>;
51130
51669
  pages: z.ZodOptional<z.ZodObject<{
51131
51670
  entry: z.ZodString;
51671
+ api: z.ZodOptional<z.ZodLiteral<1>>;
51132
51672
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
51133
51673
  source: z.ZodEnum<{
51134
51674
  type: "type";
@@ -51218,6 +51758,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
51218
51758
  mirror: "mirror";
51219
51759
  window: "window";
51220
51760
  }>>;
51761
+ allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
51221
51762
  notes: z.ZodOptional<z.ZodString>;
51222
51763
  schemaVersion: z.ZodLiteral<1>;
51223
51764
  kind: z.ZodLiteral<"connector-type">;
@@ -53126,6 +53667,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
53126
53667
  }, z.core.$strip>>>;
53127
53668
  pages: z.ZodOptional<z.ZodObject<{
53128
53669
  entry: z.ZodString;
53670
+ api: z.ZodOptional<z.ZodLiteral<1>>;
53129
53671
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
53130
53672
  source: z.ZodEnum<{
53131
53673
  type: "type";
@@ -53215,6 +53757,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
53215
53757
  mirror: "mirror";
53216
53758
  window: "window";
53217
53759
  }>>;
53760
+ allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
53218
53761
  notes: z.ZodOptional<z.ZodString>;
53219
53762
  schemaVersion: z.ZodLiteral<1>;
53220
53763
  kind: z.ZodLiteral<"connector-type">;
@@ -55123,6 +55666,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
55123
55666
  }, z.core.$strip>>>;
55124
55667
  pages: z.ZodOptional<z.ZodObject<{
55125
55668
  entry: z.ZodString;
55669
+ api: z.ZodOptional<z.ZodLiteral<1>>;
55126
55670
  reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
55127
55671
  source: z.ZodEnum<{
55128
55672
  type: "type";
@@ -55212,6 +55756,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
55212
55756
  mirror: "mirror";
55213
55757
  window: "window";
55214
55758
  }>>;
55759
+ allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
55215
55760
  notes: z.ZodOptional<z.ZodString>;
55216
55761
  schemaVersion: z.ZodLiteral<1>;
55217
55762
  kind: z.ZodLiteral<"connector-type">;
@@ -56855,6 +57400,22 @@ declare const NativeEngineStatusResponseSchema: z.ZodObject<{
56855
57400
  }, z.core.$strip>;
56856
57401
  type NativeEngineStatusResponse = z.infer<typeof NativeEngineStatusResponseSchema>;
56857
57402
 
57403
+ declare function isValidNpmPackageName(value: unknown): value is string;
57404
+ /**
57405
+ * Registry-only npm version selector. Supports dist-tags and controlled
57406
+ * semver/range forms while rejecting URLs, Git refs, aliases, local paths,
57407
+ * workspace protocols, and option-like strings.
57408
+ */
57409
+ declare function isValidNpmRegistryVersion(value: unknown): value is string;
57410
+ declare const NpmPackageNameSchema: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57411
+ declare const NpmRegistryVersionSchema: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57412
+ declare const NpmRegistryPackageRequestSchema: z.ZodObject<{
57413
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57414
+ version: z.ZodOptional<z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
57415
+ }, z.core.$strict>;
57416
+ type NpmRegistryPackageRequest = z.infer<typeof NpmRegistryPackageRequestSchema>;
57417
+ declare function formatNpmRegistrySpec(name: string, version?: string): string;
57418
+
56858
57419
  /**
56859
57420
  * Canonical tuning profile registry.
56860
57421
  *
@@ -57099,8 +57660,8 @@ type ImportCustomMcpConfigResponse = z.infer<typeof ImportCustomMcpConfigRespons
57099
57660
  * - `decline` → project-scoped decline
57100
57661
  */
57101
57662
  declare const NpmInstallApprovalDecisionSchema: z.ZodObject<{
57102
- package: z.ZodString;
57103
- version: z.ZodString;
57663
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57664
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57104
57665
  decision: z.ZodEnum<{
57105
57666
  always: "always";
57106
57667
  install: "install";
@@ -57114,8 +57675,8 @@ declare const QuestionAnswerSchema: z.ZodObject<{
57114
57675
  declined: z.ZodOptional<z.ZodBoolean>;
57115
57676
  silentSkip: z.ZodOptional<z.ZodBoolean>;
57116
57677
  npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
57117
- package: z.ZodString;
57118
- version: z.ZodString;
57678
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57679
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57119
57680
  decision: z.ZodEnum<{
57120
57681
  always: "always";
57121
57682
  install: "install";
@@ -57137,8 +57698,8 @@ type QuestionAnswer = z.infer<typeof QuestionAnswerSchema>;
57137
57698
  * unset — existing rendering path is unchanged.
57138
57699
  */
57139
57700
  declare const NpmInstallApprovalPackageSchema: z.ZodObject<{
57140
- package: z.ZodString;
57141
- version: z.ZodString;
57701
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57702
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57142
57703
  }, z.core.$strip>;
57143
57704
  type NpmInstallApprovalPackage = z.infer<typeof NpmInstallApprovalPackageSchema>;
57144
57705
  /**
@@ -57153,14 +57714,20 @@ type NpmInstallApprovalPackage = z.infer<typeof NpmInstallApprovalPackageSchema>
57153
57714
  * `body` carries the script body (or resolved bin path) verbatim so the
57154
57715
  * approval UI can show the user what they're consenting to. `args` are
57155
57716
  * the extra args the gezel wanted to pass on this specific run. The
57156
- * service hashes the ordered argument vector together with `body`, so a
57157
- * persisted approval cannot be replayed with different arguments.
57717
+ * service hashes the ordered argument vector together with `body` and the
57718
+ * `inputFiles` content snapshot, so a persisted approval cannot be replayed
57719
+ * with different arguments or modified identifiable input files.
57158
57720
  */
57159
57721
  declare const CommandApprovalScopeSchema: z.ZodEnum<{
57160
57722
  script: "script";
57161
57723
  npx: "npx";
57162
57724
  }>;
57163
57725
  type CommandApprovalScope = z.infer<typeof CommandApprovalScopeSchema>;
57726
+ declare const CommandApprovalInputFileSchema: z.ZodObject<{
57727
+ path: z.ZodString;
57728
+ sha256: z.ZodString;
57729
+ }, z.core.$strip>;
57730
+ type CommandApprovalInputFile = z.infer<typeof CommandApprovalInputFileSchema>;
57164
57731
  declare const CommandApprovalIntentSchema: z.ZodObject<{
57165
57732
  kind: z.ZodLiteral<"command-approval">;
57166
57733
  scope: z.ZodEnum<{
@@ -57170,6 +57737,10 @@ declare const CommandApprovalIntentSchema: z.ZodObject<{
57170
57737
  name: z.ZodString;
57171
57738
  body: z.ZodOptional<z.ZodString>;
57172
57739
  args: z.ZodOptional<z.ZodArray<z.ZodString>>;
57740
+ inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
57741
+ path: z.ZodString;
57742
+ sha256: z.ZodString;
57743
+ }, z.core.$strip>>>;
57173
57744
  }, z.core.$strip>;
57174
57745
  type CommandApprovalIntent = z.infer<typeof CommandApprovalIntentSchema>;
57175
57746
  /**
@@ -57351,8 +57922,8 @@ type TaskPausedIntent = z.infer<typeof TaskPausedIntentSchema>;
57351
57922
  declare const QuestionIntentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
57352
57923
  kind: z.ZodLiteral<"npm-install-approval">;
57353
57924
  packages: z.ZodArray<z.ZodObject<{
57354
- package: z.ZodString;
57355
- version: z.ZodString;
57925
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57926
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57356
57927
  }, z.core.$strip>>;
57357
57928
  }, z.core.$strip>, z.ZodObject<{
57358
57929
  kind: z.ZodLiteral<"command-approval">;
@@ -57363,6 +57934,10 @@ declare const QuestionIntentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
57363
57934
  name: z.ZodString;
57364
57935
  body: z.ZodOptional<z.ZodString>;
57365
57936
  args: z.ZodOptional<z.ZodArray<z.ZodString>>;
57937
+ inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
57938
+ path: z.ZodString;
57939
+ sha256: z.ZodString;
57940
+ }, z.core.$strip>>>;
57366
57941
  }, z.core.$strip>, z.ZodObject<{
57367
57942
  kind: z.ZodLiteral<"tool-permission">;
57368
57943
  toolName: z.ZodString;
@@ -57438,8 +58013,8 @@ declare const QuestionSchema: z.ZodObject<{
57438
58013
  intent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
57439
58014
  kind: z.ZodLiteral<"npm-install-approval">;
57440
58015
  packages: z.ZodArray<z.ZodObject<{
57441
- package: z.ZodString;
57442
- version: z.ZodString;
58016
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
58017
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57443
58018
  }, z.core.$strip>>;
57444
58019
  }, z.core.$strip>, z.ZodObject<{
57445
58020
  kind: z.ZodLiteral<"command-approval">;
@@ -57450,6 +58025,10 @@ declare const QuestionSchema: z.ZodObject<{
57450
58025
  name: z.ZodString;
57451
58026
  body: z.ZodOptional<z.ZodString>;
57452
58027
  args: z.ZodOptional<z.ZodArray<z.ZodString>>;
58028
+ inputFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
58029
+ path: z.ZodString;
58030
+ sha256: z.ZodString;
58031
+ }, z.core.$strip>>>;
57453
58032
  }, z.core.$strip>, z.ZodObject<{
57454
58033
  kind: z.ZodLiteral<"tool-permission">;
57455
58034
  toolName: z.ZodString;
@@ -57517,8 +58096,8 @@ declare const QuestionSchema: z.ZodObject<{
57517
58096
  declined: z.ZodOptional<z.ZodBoolean>;
57518
58097
  silentSkip: z.ZodOptional<z.ZodBoolean>;
57519
58098
  npmInstallDecisions: z.ZodOptional<z.ZodArray<z.ZodObject<{
57520
- package: z.ZodString;
57521
- version: z.ZodString;
58099
+ package: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
58100
+ version: z.ZodString & z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
57522
58101
  decision: z.ZodEnum<{
57523
58102
  always: "always";
57524
58103
  install: "install";
@@ -57674,6 +58253,323 @@ declare const DismissSuggestedWorkRequestSchema: z.ZodObject<{
57674
58253
  }, z.core.$strip>;
57675
58254
  type DismissSuggestedWorkRequest = z.infer<typeof DismissSuggestedWorkRequestSchema>;
57676
58255
 
58256
+ /**
58257
+ * Output Pane API v1 — the versioned postMessage envelope between a served
58258
+ * project-type page (opaque-origin iframe) and the host UI relay.
58259
+ *
58260
+ * The page side of this protocol is the server-injected `window.gezel` shim;
58261
+ * the parent side is the relay in the UI's HtmlPreviewFrame. Neither end
58262
+ * trusts the other's messages beyond these shapes: the shim additionally
58263
+ * requires `event.source === window.parent`, and the relay requires
58264
+ * `event.source === frame.contentWindow` (the iframe is sandboxed without
58265
+ * `allow-same-origin`, so origins are opaque and window identity is the only
58266
+ * authentication available).
58267
+ *
58268
+ * v0 compatibility: the legacy sentinels (`__gezelPageInvoke`,
58269
+ * `__gezelPageResult`, `__gezelPageRefresh`) are a permanent parallel path —
58270
+ * shipped catalog pages hard-code them. The v1 envelope uses a disjoint
58271
+ * sentinel key so both generations coexist on one MessagePort.
58272
+ */
58273
+ declare const PAGE_BRIDGE_VERSION: 1;
58274
+ /** Sources a page may read through the bridge (matches PreviewSource minus 'type'). */
58275
+ declare const PageReadSourceSchema: z.ZodEnum<{
58276
+ workspace: "workspace";
58277
+ artifacts: "artifacts";
58278
+ }>;
58279
+ type PageReadSource = z.infer<typeof PageReadSourceSchema>;
58280
+ declare const PageHelloMessageSchema: z.ZodObject<{
58281
+ kind: z.ZodLiteral<"hello">;
58282
+ __gezelPage: z.ZodLiteral<1>;
58283
+ }, z.core.$strip>;
58284
+ declare const PageInvokeMessageSchema: z.ZodObject<{
58285
+ kind: z.ZodLiteral<"invoke">;
58286
+ id: z.ZodString;
58287
+ tool: z.ZodString;
58288
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
58289
+ __gezelPage: z.ZodLiteral<1>;
58290
+ }, z.core.$strip>;
58291
+ declare const PageReadMessageSchema: z.ZodObject<{
58292
+ kind: z.ZodLiteral<"read">;
58293
+ id: z.ZodString;
58294
+ op: z.ZodEnum<{
58295
+ read: "read";
58296
+ list: "list";
58297
+ stat: "stat";
58298
+ }>;
58299
+ source: z.ZodEnum<{
58300
+ workspace: "workspace";
58301
+ artifacts: "artifacts";
58302
+ }>;
58303
+ path: z.ZodString;
58304
+ as: z.ZodOptional<z.ZodEnum<{
58305
+ json: "json";
58306
+ text: "text";
58307
+ bytes: "bytes";
58308
+ }>>;
58309
+ maxBytes: z.ZodOptional<z.ZodNumber>;
58310
+ __gezelPage: z.ZodLiteral<1>;
58311
+ }, z.core.$strip>;
58312
+ declare const PageWatchMessageSchema: z.ZodObject<{
58313
+ kind: z.ZodLiteral<"watch">;
58314
+ id: z.ZodString;
58315
+ source: z.ZodEnum<{
58316
+ workspace: "workspace";
58317
+ artifacts: "artifacts";
58318
+ }>;
58319
+ path: z.ZodString;
58320
+ __gezelPage: z.ZodLiteral<1>;
58321
+ }, z.core.$strip>;
58322
+ declare const PageUnwatchMessageSchema: z.ZodObject<{
58323
+ kind: z.ZodLiteral<"unwatch">;
58324
+ id: z.ZodString;
58325
+ __gezelPage: z.ZodLiteral<1>;
58326
+ }, z.core.$strip>;
58327
+ declare const PageRefreshMessageSchema: z.ZodObject<{
58328
+ kind: z.ZodLiteral<"refresh">;
58329
+ __gezelPage: z.ZodLiteral<1>;
58330
+ }, z.core.$strip>;
58331
+ declare const PageToParentMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
58332
+ kind: z.ZodLiteral<"hello">;
58333
+ __gezelPage: z.ZodLiteral<1>;
58334
+ }, z.core.$strip>, z.ZodObject<{
58335
+ kind: z.ZodLiteral<"invoke">;
58336
+ id: z.ZodString;
58337
+ tool: z.ZodString;
58338
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
58339
+ __gezelPage: z.ZodLiteral<1>;
58340
+ }, z.core.$strip>, z.ZodObject<{
58341
+ kind: z.ZodLiteral<"read">;
58342
+ id: z.ZodString;
58343
+ op: z.ZodEnum<{
58344
+ read: "read";
58345
+ list: "list";
58346
+ stat: "stat";
58347
+ }>;
58348
+ source: z.ZodEnum<{
58349
+ workspace: "workspace";
58350
+ artifacts: "artifacts";
58351
+ }>;
58352
+ path: z.ZodString;
58353
+ as: z.ZodOptional<z.ZodEnum<{
58354
+ json: "json";
58355
+ text: "text";
58356
+ bytes: "bytes";
58357
+ }>>;
58358
+ maxBytes: z.ZodOptional<z.ZodNumber>;
58359
+ __gezelPage: z.ZodLiteral<1>;
58360
+ }, z.core.$strip>, z.ZodObject<{
58361
+ kind: z.ZodLiteral<"watch">;
58362
+ id: z.ZodString;
58363
+ source: z.ZodEnum<{
58364
+ workspace: "workspace";
58365
+ artifacts: "artifacts";
58366
+ }>;
58367
+ path: z.ZodString;
58368
+ __gezelPage: z.ZodLiteral<1>;
58369
+ }, z.core.$strip>, z.ZodObject<{
58370
+ kind: z.ZodLiteral<"unwatch">;
58371
+ id: z.ZodString;
58372
+ __gezelPage: z.ZodLiteral<1>;
58373
+ }, z.core.$strip>, z.ZodObject<{
58374
+ kind: z.ZodLiteral<"refresh">;
58375
+ __gezelPage: z.ZodLiteral<1>;
58376
+ }, z.core.$strip>], "kind">;
58377
+ type PageToParentMessage = z.infer<typeof PageToParentMessageSchema>;
58378
+ /** Error codes the shim surfaces as `GezelToolError.code`. */
58379
+ declare const PageBridgeErrorCodeSchema: z.ZodEnum<{
58380
+ unavailable: "unavailable";
58381
+ timeout: "timeout";
58382
+ "not-allowed": "not-allowed";
58383
+ "invalid-input": "invalid-input";
58384
+ "script-error": "script-error";
58385
+ "rate-limited": "rate-limited";
58386
+ }>;
58387
+ type PageBridgeErrorCode = z.infer<typeof PageBridgeErrorCodeSchema>;
58388
+ declare const ParentInitMessageSchema: z.ZodObject<{
58389
+ kind: z.ZodLiteral<"init">;
58390
+ api: z.ZodLiteral<1>;
58391
+ theme: z.ZodObject<{
58392
+ mode: z.ZodEnum<{
58393
+ light: "light";
58394
+ dark: "dark";
58395
+ }>;
58396
+ }, z.core.$strip>;
58397
+ limits: z.ZodObject<{
58398
+ maxInflight: z.ZodNumber;
58399
+ maxReadBytes: z.ZodNumber;
58400
+ }, z.core.$strip>;
58401
+ __gezelPage: z.ZodLiteral<1>;
58402
+ }, z.core.$strip>;
58403
+ declare const ParentResultMessageSchema: z.ZodObject<{
58404
+ kind: z.ZodLiteral<"result">;
58405
+ id: z.ZodString;
58406
+ ok: z.ZodBoolean;
58407
+ output: z.ZodOptional<z.ZodUnknown>;
58408
+ error: z.ZodOptional<z.ZodString>;
58409
+ errorCode: z.ZodOptional<z.ZodEnum<{
58410
+ unavailable: "unavailable";
58411
+ timeout: "timeout";
58412
+ "not-allowed": "not-allowed";
58413
+ "invalid-input": "invalid-input";
58414
+ "script-error": "script-error";
58415
+ "rate-limited": "rate-limited";
58416
+ }>>;
58417
+ runId: z.ZodOptional<z.ZodString>;
58418
+ reaction: z.ZodOptional<z.ZodObject<{
58419
+ delivered: z.ZodBoolean;
58420
+ gezelId: z.ZodOptional<z.ZodString>;
58421
+ reason: z.ZodOptional<z.ZodString>;
58422
+ }, z.core.$strip>>;
58423
+ __gezelPage: z.ZodLiteral<1>;
58424
+ }, z.core.$strip>;
58425
+ declare const ParentReadResultMessageSchema: z.ZodObject<{
58426
+ kind: z.ZodLiteral<"read-result">;
58427
+ id: z.ZodString;
58428
+ ok: z.ZodBoolean;
58429
+ error: z.ZodOptional<z.ZodString>;
58430
+ errorCode: z.ZodOptional<z.ZodEnum<{
58431
+ unavailable: "unavailable";
58432
+ timeout: "timeout";
58433
+ "not-allowed": "not-allowed";
58434
+ "invalid-input": "invalid-input";
58435
+ "script-error": "script-error";
58436
+ "rate-limited": "rate-limited";
58437
+ }>>;
58438
+ content: z.ZodOptional<z.ZodString>;
58439
+ encoding: z.ZodOptional<z.ZodEnum<{
58440
+ utf8: "utf8";
58441
+ base64: "base64";
58442
+ }>>;
58443
+ entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
58444
+ name: z.ZodString;
58445
+ kind: z.ZodEnum<{
58446
+ file: "file";
58447
+ dir: "dir";
58448
+ }>;
58449
+ size: z.ZodNumber;
58450
+ mtime: z.ZodNumber;
58451
+ }, z.core.$strip>>>;
58452
+ etag: z.ZodOptional<z.ZodString>;
58453
+ size: z.ZodOptional<z.ZodNumber>;
58454
+ mtime: z.ZodOptional<z.ZodNumber>;
58455
+ __gezelPage: z.ZodLiteral<1>;
58456
+ }, z.core.$strip>;
58457
+ declare const ParentChangeMessageSchema: z.ZodObject<{
58458
+ kind: z.ZodLiteral<"change">;
58459
+ watchId: z.ZodString;
58460
+ path: z.ZodString;
58461
+ etag: z.ZodString;
58462
+ __gezelPage: z.ZodLiteral<1>;
58463
+ }, z.core.$strip>;
58464
+ declare const ParentThemeMessageSchema: z.ZodObject<{
58465
+ kind: z.ZodLiteral<"theme">;
58466
+ theme: z.ZodObject<{
58467
+ mode: z.ZodEnum<{
58468
+ light: "light";
58469
+ dark: "dark";
58470
+ }>;
58471
+ }, z.core.$strip>;
58472
+ __gezelPage: z.ZodLiteral<1>;
58473
+ }, z.core.$strip>;
58474
+ declare const ParentToPageMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
58475
+ kind: z.ZodLiteral<"init">;
58476
+ api: z.ZodLiteral<1>;
58477
+ theme: z.ZodObject<{
58478
+ mode: z.ZodEnum<{
58479
+ light: "light";
58480
+ dark: "dark";
58481
+ }>;
58482
+ }, z.core.$strip>;
58483
+ limits: z.ZodObject<{
58484
+ maxInflight: z.ZodNumber;
58485
+ maxReadBytes: z.ZodNumber;
58486
+ }, z.core.$strip>;
58487
+ __gezelPage: z.ZodLiteral<1>;
58488
+ }, z.core.$strip>, z.ZodObject<{
58489
+ kind: z.ZodLiteral<"result">;
58490
+ id: z.ZodString;
58491
+ ok: z.ZodBoolean;
58492
+ output: z.ZodOptional<z.ZodUnknown>;
58493
+ error: z.ZodOptional<z.ZodString>;
58494
+ errorCode: z.ZodOptional<z.ZodEnum<{
58495
+ unavailable: "unavailable";
58496
+ timeout: "timeout";
58497
+ "not-allowed": "not-allowed";
58498
+ "invalid-input": "invalid-input";
58499
+ "script-error": "script-error";
58500
+ "rate-limited": "rate-limited";
58501
+ }>>;
58502
+ runId: z.ZodOptional<z.ZodString>;
58503
+ reaction: z.ZodOptional<z.ZodObject<{
58504
+ delivered: z.ZodBoolean;
58505
+ gezelId: z.ZodOptional<z.ZodString>;
58506
+ reason: z.ZodOptional<z.ZodString>;
58507
+ }, z.core.$strip>>;
58508
+ __gezelPage: z.ZodLiteral<1>;
58509
+ }, z.core.$strip>, z.ZodObject<{
58510
+ kind: z.ZodLiteral<"read-result">;
58511
+ id: z.ZodString;
58512
+ ok: z.ZodBoolean;
58513
+ error: z.ZodOptional<z.ZodString>;
58514
+ errorCode: z.ZodOptional<z.ZodEnum<{
58515
+ unavailable: "unavailable";
58516
+ timeout: "timeout";
58517
+ "not-allowed": "not-allowed";
58518
+ "invalid-input": "invalid-input";
58519
+ "script-error": "script-error";
58520
+ "rate-limited": "rate-limited";
58521
+ }>>;
58522
+ content: z.ZodOptional<z.ZodString>;
58523
+ encoding: z.ZodOptional<z.ZodEnum<{
58524
+ utf8: "utf8";
58525
+ base64: "base64";
58526
+ }>>;
58527
+ entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
58528
+ name: z.ZodString;
58529
+ kind: z.ZodEnum<{
58530
+ file: "file";
58531
+ dir: "dir";
58532
+ }>;
58533
+ size: z.ZodNumber;
58534
+ mtime: z.ZodNumber;
58535
+ }, z.core.$strip>>>;
58536
+ etag: z.ZodOptional<z.ZodString>;
58537
+ size: z.ZodOptional<z.ZodNumber>;
58538
+ mtime: z.ZodOptional<z.ZodNumber>;
58539
+ __gezelPage: z.ZodLiteral<1>;
58540
+ }, z.core.$strip>, z.ZodObject<{
58541
+ kind: z.ZodLiteral<"change">;
58542
+ watchId: z.ZodString;
58543
+ path: z.ZodString;
58544
+ etag: z.ZodString;
58545
+ __gezelPage: z.ZodLiteral<1>;
58546
+ }, z.core.$strip>, z.ZodObject<{
58547
+ kind: z.ZodLiteral<"theme">;
58548
+ theme: z.ZodObject<{
58549
+ mode: z.ZodEnum<{
58550
+ light: "light";
58551
+ dark: "dark";
58552
+ }>;
58553
+ }, z.core.$strip>;
58554
+ __gezelPage: z.ZodLiteral<1>;
58555
+ }, z.core.$strip>], "kind">;
58556
+ type ParentToPageMessage = z.infer<typeof ParentToPageMessageSchema>;
58557
+ /**
58558
+ * Static facts baked into the shim at serve time by the preview route's
58559
+ * `type` branch. Everything here is server-authoritative — the page never
58560
+ * derives identity from its own URL again.
58561
+ */
58562
+ declare const PageApiBootstrapSchema: z.ZodObject<{
58563
+ api: z.ZodLiteral<1>;
58564
+ projectId: z.ZodString;
58565
+ source: z.ZodLiteral<"type">;
58566
+ entry: z.ZodString;
58567
+ typeName: z.ZodString;
58568
+ params: z.ZodRecord<z.ZodString, z.ZodUnknown>;
58569
+ tools: z.ZodArray<z.ZodString>;
58570
+ }, z.core.$strip>;
58571
+ type PageApiBootstrap = z.infer<typeof PageApiBootstrapSchema>;
58572
+
57677
58573
  declare const PreviewSourceSchema: z.ZodEnum<{
57678
58574
  type: "type";
57679
58575
  workspace: "workspace";
@@ -58912,6 +59808,7 @@ declare const HandboekAreaSchema: z.ZodEnum<{
58912
59808
  "gezel-roles": "gezel-roles";
58913
59809
  "project-types": "project-types";
58914
59810
  technical: "technical";
59811
+ "whats-new": "whats-new";
58915
59812
  }>;
58916
59813
  type HandboekArea = z.infer<typeof HandboekAreaSchema>;
58917
59814
  /**
@@ -58928,6 +59825,13 @@ declare const HandboekRenderModeSchema: z.ZodEnum<{
58928
59825
  agent: "agent";
58929
59826
  }>;
58930
59827
  type HandboekRenderMode = z.infer<typeof HandboekRenderModeSchema>;
59828
+ /** Optional nested shelf used to organize entries inside a TOC area. */
59829
+ declare const HandboekTocSubcategorySchema: z.ZodObject<{
59830
+ id: z.ZodString;
59831
+ title: z.ZodString;
59832
+ order: z.ZodNumber;
59833
+ }, z.core.$strip>;
59834
+ type HandboekTocSubcategory = z.infer<typeof HandboekTocSubcategorySchema>;
58931
59835
  declare const HandboekTocEntrySchema: z.ZodObject<{
58932
59836
  id: z.ZodString;
58933
59837
  title: z.ZodString;
@@ -58937,11 +59841,17 @@ declare const HandboekTocEntrySchema: z.ZodObject<{
58937
59841
  "gezel-roles": "gezel-roles";
58938
59842
  "project-types": "project-types";
58939
59843
  technical: "technical";
59844
+ "whats-new": "whats-new";
58940
59845
  }>;
58941
59846
  order: z.ZodNumber;
58942
59847
  summary: z.ZodOptional<z.ZodString>;
58943
59848
  generated: z.ZodBoolean;
58944
59849
  siteVisible: z.ZodOptional<z.ZodBoolean>;
59850
+ subcategory: z.ZodOptional<z.ZodObject<{
59851
+ id: z.ZodString;
59852
+ title: z.ZodString;
59853
+ order: z.ZodNumber;
59854
+ }, z.core.$strip>>;
58945
59855
  }, z.core.$strip>;
58946
59856
  type HandboekTocEntry = z.infer<typeof HandboekTocEntrySchema>;
58947
59857
  declare const HandboekTocAreaSchema: z.ZodObject<{
@@ -58951,6 +59861,7 @@ declare const HandboekTocAreaSchema: z.ZodObject<{
58951
59861
  "gezel-roles": "gezel-roles";
58952
59862
  "project-types": "project-types";
58953
59863
  technical: "technical";
59864
+ "whats-new": "whats-new";
58954
59865
  }>;
58955
59866
  title: z.ZodString;
58956
59867
  entries: z.ZodArray<z.ZodObject<{
@@ -58962,11 +59873,17 @@ declare const HandboekTocAreaSchema: z.ZodObject<{
58962
59873
  "gezel-roles": "gezel-roles";
58963
59874
  "project-types": "project-types";
58964
59875
  technical: "technical";
59876
+ "whats-new": "whats-new";
58965
59877
  }>;
58966
59878
  order: z.ZodNumber;
58967
59879
  summary: z.ZodOptional<z.ZodString>;
58968
59880
  generated: z.ZodBoolean;
58969
59881
  siteVisible: z.ZodOptional<z.ZodBoolean>;
59882
+ subcategory: z.ZodOptional<z.ZodObject<{
59883
+ id: z.ZodString;
59884
+ title: z.ZodString;
59885
+ order: z.ZodNumber;
59886
+ }, z.core.$strip>>;
58970
59887
  }, z.core.$strip>>;
58971
59888
  }, z.core.$strip>;
58972
59889
  type HandboekTocArea = z.infer<typeof HandboekTocAreaSchema>;
@@ -58978,6 +59895,7 @@ declare const HandboekTocSchema: z.ZodObject<{
58978
59895
  "gezel-roles": "gezel-roles";
58979
59896
  "project-types": "project-types";
58980
59897
  technical: "technical";
59898
+ "whats-new": "whats-new";
58981
59899
  }>;
58982
59900
  title: z.ZodString;
58983
59901
  entries: z.ZodArray<z.ZodObject<{
@@ -58989,11 +59907,17 @@ declare const HandboekTocSchema: z.ZodObject<{
58989
59907
  "gezel-roles": "gezel-roles";
58990
59908
  "project-types": "project-types";
58991
59909
  technical: "technical";
59910
+ "whats-new": "whats-new";
58992
59911
  }>;
58993
59912
  order: z.ZodNumber;
58994
59913
  summary: z.ZodOptional<z.ZodString>;
58995
59914
  generated: z.ZodBoolean;
58996
59915
  siteVisible: z.ZodOptional<z.ZodBoolean>;
59916
+ subcategory: z.ZodOptional<z.ZodObject<{
59917
+ id: z.ZodString;
59918
+ title: z.ZodString;
59919
+ order: z.ZodNumber;
59920
+ }, z.core.$strip>>;
58997
59921
  }, z.core.$strip>>;
58998
59922
  }, z.core.$strip>>;
58999
59923
  }, z.core.$strip>;
@@ -59148,6 +60072,7 @@ declare const HandboekArticleSchema: z.ZodObject<{
59148
60072
  "gezel-roles": "gezel-roles";
59149
60073
  "project-types": "project-types";
59150
60074
  technical: "technical";
60075
+ "whats-new": "whats-new";
59151
60076
  }>;
59152
60077
  summary: z.ZodOptional<z.ZodString>;
59153
60078
  markdown: z.ZodString;
@@ -59276,6 +60201,7 @@ declare const HandboekHowDoIResponseSchema: z.ZodObject<{
59276
60201
  "gezel-roles": "gezel-roles";
59277
60202
  "project-types": "project-types";
59278
60203
  technical: "technical";
60204
+ "whats-new": "whats-new";
59279
60205
  }>;
59280
60206
  summary: z.ZodOptional<z.ZodString>;
59281
60207
  markdown: z.ZodString;
@@ -59395,4 +60321,4 @@ declare const HandboekHowDoIResponseSchema: z.ZodObject<{
59395
60321
  }, z.core.$strip>;
59396
60322
  type HandboekHowDoIResponse = z.infer<typeof HandboekHowDoIResponseSchema>;
59397
60323
 
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 };
60324
+ export { ApplyProjectTypeRequestSchema as $, type AdvanceWhen as A, validateCraftbookGraph as A$, WorkspaceEditResponseSchema as A0, type WorkspaceIndexMeta as A1, WorkspaceIndexMetaSchema as A2, type WorkspaceIndexStatus as A3, WorkspaceIndexStatusSchema as A4, type WorkspaceInstructionIndex as A5, WorkspaceInstructionIndexSchema as A6, type WorkspaceReadFileError as A7, WorkspaceReadFileErrorSchema as A8, type WorkspaceReadFileRequest as A9, isSemver as AA, isValidNpmPackageName as AB, isValidNpmRegistryVersion as AC, levelForXp as AD, modelFitnessKey as AE, normalizeCodexPermissionMode as AF, normalizeScriptRefs as AG, normalizeStepGate as AH, parseCraftbookTestSpec as AI, parseTaskRef as AJ, profileKind as AK, projectAllowsAmbientWork as AL, removeStepAndCleanEdges as AM, reorderStepsArray as AN, resolveProfileChain as AO, resolveProjectTypeId as AP, resolveSteps as AQ, slugifyStepId as AR, spawnsChildren as AS, stepInsertionIndex as AT, taskRef as AU, tierAtLeast as AV, tierRank as AW, uniqueStepId as AX, unmetConnectors as AY, unmetCraftbookRequirements as AZ, unmetToolsets as A_, WorkspaceReadFileRequestSchema as Aa, type WorkspaceReadFileResult as Ab, WorkspaceReadFileResultSchema as Ac, type WorkspaceReadFileSuccess as Ad, WorkspaceReadFileSuccessSchema as Ae, type WorkspaceSkillIndex as Af, WorkspaceSkillIndexSchema as Ag, type WriteDocumentRequest as Ah, WriteDocumentRequestSchema as Ai, type XtcSamplerConfig as Aj, XtcSamplerSchema as Ak, applyStepPatch as Al, assertCraftbookGraph as Am, compareSemver as An, craftbookRequirementsMet as Ao, credentialCapabilityName as Ap, formatNpmRegistrySpec as Aq, formatReviewProvenance as Ar, gateEdgeTargets as As, isCredentialCapability as At, isDraftTask as Au, isKnownProfileId as Av, isLegacyGateSpec as Aw, isNightShiftTask as Ax, isPendingNightShiftTask as Ay, isScheduleHost as Az, type AdoptedTraitRecord as B, validateCraftbookScriptRefs as B0, validateScriptInput as B1, xpForLevel as B2, type CompassRegion as C, DeliverableKindSchema as D, AdoptedTraitRecordSchema as E, type FileContextResponse as F, type GezelConfig as G, AdvanceWhenSchema as H, type AnswerQuestionRequest as I, AnswerQuestionRequestSchema as J, type AppendTaskNoteRequest as K, AppendTaskNoteRequestSchema as L, type MapDistrict as M, type NewCraftbookStep as N, type Outcome as O, type Project as P, type AppendTaskNoteResponse as Q, type Rect as R, type ScriptInputField as S, type ToolsetRuntime as T, AppendTaskNoteResponseSchema as U, type VillageAnchor as V, type AppliedProjectType as W, AppliedProjectTypeSchema as X, type ApplyPatchToProjectWorkspaceFileRequest as Y, ApplyPatchToProjectWorkspaceFileRequestSchema as Z, type ApplyProjectTypeRequest as _, type VillageOverride as a, type CatalogItemManifest as a$, type ArchiveEntry as a0, ArchiveEntrySchema as a1, type ArchiveExtractRequest as a2, ArchiveExtractRequestSchema as a3, type ArchiveExtractResponse as a4, ArchiveExtractResponseSchema as a5, type ArchiveListRequest as a6, ArchiveListRequestSchema as a7, type ArchiveListResponse as a8, ArchiveListResponseSchema as a9, type AudioVoice as aA, AudioVoiceSchema as aB, type BehaviorEntry as aC, BehaviorEntrySchema as aD, type BehaviorId as aE, BehaviorIdSchema as aF, type BinaryDocumentCheck as aG, BinaryDocumentCheckSchema as aH, type BoekwachterIssue as aI, type BoekwachterIssueDismissalReason as aJ, BoekwachterIssueDismissalReasonSchema as aK, BoekwachterIssueSchema as aL, type BoekwachterIssueStatus as aM, BoekwachterIssueStatusSchema as aN, CANONICAL_PROFILES as aO, CRAFTBOOK_ROLE_META as aP, CRAFTBOOK_SCRIPTS_MAX_COUNT as aQ, CRAFTBOOK_SCRIPTS_TOTAL_MAX_BYTES as aR, CRAFTBOOK_SCRIPT_MAX_BYTES as aS, CRAFTBOOK_TEST_FILENAME as aT, CRAFTBOOK_TEST_SCHEMA_VERSION as aU, type CancelCodeReviewResponse as aV, CancelCodeReviewResponseSchema as aW, type CatalogItemDetail as aX, CatalogItemDetailSchema as aY, type CatalogItemIdentity as aZ, CatalogItemIdentitySchema as a_, type ArgSpec as aa, ArgSpecSchema as ab, type AskQuestionRequest as ac, AskQuestionRequestSchema as ad, type AskQuestionResponse as ae, AskQuestionResponseSchema as af, type AudioCatalogModel as ag, AudioCatalogModelSchema as ah, type AudioEngineHealth as ai, AudioEngineHealthSchema as aj, type AudioEngineStatusResponse as ak, AudioEngineStatusResponseSchema as al, type AudioModelPullEvent as am, AudioModelPullEventSchema as an, type AudioSynthesizeMeta as ao, AudioSynthesizeMetaSchema as ap, type AudioSynthesizeRequest as aq, AudioSynthesizeRequestSchema as ar, type AudioSynthesizeResponse as as, AudioSynthesizeResponseSchema as at, type AudioTranscribeRequest as au, AudioTranscribeRequestSchema as av, type AudioTranscribeResponse as aw, AudioTranscribeResponseSchema as ax, type AudioTranscribeSegment as ay, AudioTranscribeSegmentSchema as az, type MapStreet as b, type CommandApprovalInputFile as b$, CatalogItemManifestSchema as b0, type CatalogItemSummary as b1, CatalogItemSummarySchema as b2, type CatalogItemVersionInfo as b3, CatalogItemVersionInfoSchema as b4, type CatalogKind as b5, CatalogKindSchema as b6, type ChannelName as b7, ChannelNameSchema as b8, type ChannelStatus as b9, ChatSessionSchema as bA, type ChatSessionSummary as bB, ChatSessionSummarySchema as bC, ClaudePermissionModeSchema as bD, type CodeReview as bE, type CodeReviewKind as bF, CodeReviewKindSchema as bG, type CodeReviewManifest as bH, CodeReviewManifestSchema as bI, type CodeReviewRecord as bJ, CodeReviewRecordSchema as bK, type CodeReviewResponse as bL, CodeReviewResponseSchema as bM, CodeReviewSchema as bN, type CodeReviewStatus as bO, CodeReviewStatusSchema as bP, type CodeSymbol as bQ, CodeSymbolSchema as bR, type CodexPermissionModeCompat as bS, CodexPermissionModeCompatSchema as bT, CodexPermissionModeSchema as bU, type CodexSetupModelOption as bV, CodexSetupModelOptionSchema as bW, type CodexSetupState as bX, CodexSetupStateSchema as bY, type CodexSetupStatusResponse as bZ, CodexSetupStatusResponseSchema as b_, ChannelStatusSchema as ba, type ChannelsConfig as bb, ChannelsConfigSchema as bc, type ChatHistoryResponse as bd, ChatHistoryResponseSchema as be, type ChatModelCategory as bf, ChatModelCategorySchema as bg, type ChatModelDs4Source as bh, ChatModelDs4SourceSchema as bi, type ChatModelIdentity as bj, ChatModelIdentitySchema as bk, type ChatModelLlamaCppSource as bl, ChatModelLlamaCppSourceSchema as bm, type ChatModelManifest as bn, ChatModelManifestSchema as bo, type ChatModelMlxSource as bp, ChatModelMlxSourceSchema as bq, type ChatModelOllamaSource as br, ChatModelOllamaSourceSchema as bs, type ChatModelTuning as bt, type ChatModelTuningBase as bu, ChatModelTuningBaseSchema as bv, ChatModelTuningSchema as bw, type ChatModelVersionManifest as bx, ChatModelVersionManifestSchema as by, type ChatSession as bz, type MapPlaza as c, type CraftbookTestCheck as c$, CommandApprovalInputFileSchema as c0, type CommandApprovalIntent as c1, CommandApprovalIntentSchema as c2, type CommandApprovalScope as c3, CommandApprovalScopeSchema as c4, type CommandShape as c5, CommandShapeSchema as c6, CompassRegionSchema as c7, type CompleteStepGateInfo as c8, CompleteStepGateInfoSchema as c9, type CraftbookConnectorNeed as cA, CraftbookConnectorNeedSchema as cB, type CraftbookRequirement as cC, type CraftbookRequirementContext as cD, CraftbookRequirementSchema as cE, type CraftbookResponse as cF, CraftbookResponseSchema as cG, type CraftbookRole as cH, CraftbookRoleSchema as cI, type CraftbookRunModes as cJ, CraftbookRunModesSchema as cK, CraftbookSchema as cL, type CraftbookScripts as cM, CraftbookScriptsSchema as cN, type CraftbookSpawn as cO, CraftbookSpawnSchema as cP, CraftbookStepSchema as cQ, type CraftbookSuggestion as cR, CraftbookSuggestionSchema as cS, type CraftbookSummary as cT, CraftbookSummarySchema as cU, type CraftbookTemplateIdentity as cV, CraftbookTemplateIdentitySchema as cW, type CraftbookTemplateManifest as cX, CraftbookTemplateManifestSchema as cY, type CraftbookTemplateVersionManifest as cZ, CraftbookTemplateVersionManifestSchema as c_, type CompleteStepRequest as ca, CompleteStepRequestSchema as cb, type CompleteStepResponse as cc, CompleteStepResponseSchema as cd, type ConfigureCodexRequest as ce, ConfigureCodexRequestSchema as cf, type ConnectorTypeIdentity as cg, ConnectorTypeIdentitySchema as ch, type ConnectorTypeManifest as ci, ConnectorTypeManifestSchema as cj, type ConnectorTypeVersionManifest as ck, ConnectorTypeVersionManifestSchema as cl, type CopilotAvailability as cm, CopilotAvailabilitySchema as cn, type CopilotLoginEvent as co, CopilotLoginEventSchema as cp, type CopyArtifactToWorkspaceRequest as cq, CopyArtifactToWorkspaceRequestSchema as cr, type CopyArtifactToWorkspaceResponse as cs, CopyArtifactToWorkspaceResponseSchema as ct, type CosmeticProposal as cu, CosmeticProposalSchema as cv, type CraftbookBasedOn as cw, CraftbookBasedOnSchema as cx, type CraftbookBranch as cy, CraftbookBranchSchema as cz, type MapBuilding as d, type DeviceSafetyPolicyConfig as d$, CraftbookTestCheckSchema as d0, type CraftbookTestDeliverable as d1, CraftbookTestDeliverableSchema as d2, type CraftbookTestFixtureFile as d3, CraftbookTestFixtureFileSchema as d4, type CraftbookTestHistoryExpectation as d5, CraftbookTestHistoryExpectationSchema as d6, type CraftbookTestMockExpectation as d7, CraftbookTestMockExpectationSchema as d8, type CraftbookTestRubric as d9, type CreateScriptRequest as dA, CreateScriptRequestSchema as dB, type CreateScriptResponse as dC, CreateScriptResponseSchema as dD, type CreateTaskRequest as dE, CreateTaskRequestSchema as dF, type CreateTypedProjectRequest as dG, CreateTypedProjectRequestSchema as dH, type CreateTypedProjectResponse as dI, CreateTypedProjectResponseSchema as dJ, CredentialCapabilitySchema as dK, type CustomMcpImportWarning as dL, CustomMcpImportWarningSchema as dM, DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS as dN, DEFAULT_TUNING_PROFILE_ID as dO, type DeclineGrowthLevelUpRequest as dP, DeclineGrowthLevelUpRequestSchema as dQ, type DeclinedProposalRecord as dR, DeclinedProposalRecordSchema as dS, type DelegateSecurityFindingRequest as dT, DelegateSecurityFindingRequestSchema as dU, type DelegateSecurityFindingResponse as dV, DelegateSecurityFindingResponseSchema as dW, type DescribeFolderRequest as dX, DescribeFolderRequestSchema as dY, type DescribeFolderResponse as dZ, DescribeFolderResponseSchema as d_, CraftbookTestRubricSchema as da, type CraftbookTestSetup as db, CraftbookTestSetupSchema as dc, type CraftbookTestSpec as dd, CraftbookTestSpecSchema as de, type CraftbookTestSuccess as df, CraftbookTestSuccessSchema as dg, type CraftbookTestWorker as dh, CraftbookTestWorkerSchema as di, type CraftbookToolsetNeed as dj, CraftbookToolsetNeedSchema as dk, type CreateChatSessionRequest as dl, CreateChatSessionRequestSchema as dm, type CreateCraftbookRequest as dn, CreateCraftbookRequestSchema as dp, type CreateDocumentFolderRequest as dq, CreateDocumentFolderRequestSchema as dr, type CreateGezelRequest as ds, CreateGezelRequestSchema as dt, type CreatePreviewCapabilityRequest as du, CreatePreviewCapabilityRequestSchema as dv, type CreatePreviewCapabilityResponse as dw, CreatePreviewCapabilityResponseSchema as dx, type CreateProjectRequest as dy, CreateProjectRequestSchema as dz, type ScriptOutputField as e, type FetchUrlResponse as e$, DeviceSafetyPolicySchema as e0, type DiffFilesRequest as e1, DiffFilesRequestSchema as e2, type DiffFilesResponse as e3, DiffFilesResponseSchema as e4, type DisableSuggestedWorkRequest as e5, DisableSuggestedWorkRequestSchema as e6, type DiscoveredCommand as e7, DiscoveredCommandSchema as e8, type DiscoveredInstruction as e9, EngineConfigSchema as eA, type EnsureGezelRequest as eB, EnsureGezelRequestSchema as eC, type EnsureGezelResponse as eD, EnsureGezelResponseSchema as eE, type Entity as eF, type EntityId as eG, EntityIdSchema as eH, EntitySchema as eI, type ErrorResponse as eJ, ErrorResponseSchema as eK, type EvalHints as eL, EvalHintsSchema as eM, type ExpectedDeliverable as eN, ExpectedDeliverableSchema as eO, type ExternalFolders as eP, ExternalFoldersSchema as eQ, type FetchDiffRequest as eR, FetchDiffRequestSchema as eS, type FetchDiffResponse as eT, FetchDiffResponseSchema as eU, type FetchRepoRequest as eV, FetchRepoRequestSchema as eW, type FetchRepoResponse as eX, FetchRepoResponseSchema as eY, type FetchUrlRequest as eZ, FetchUrlRequestSchema as e_, DiscoveredInstructionSchema as ea, type DiscoveredSkill as eb, DiscoveredSkillSchema as ec, type DismissSuggestedWorkRequest as ed, DismissSuggestedWorkRequestSchema as ee, type DocumentExportOptions as ef, DocumentExportOptionsSchema as eg, type DocumentMediaExportRequest as eh, DocumentMediaExportRequestSchema as ei, type DocumentMediaExportSource as ej, DocumentMediaExportSourceSchema as ek, type DocumentSearchResult as el, DocumentSearchResultSchema as em, type DraftScriptRequest as en, DraftScriptRequestSchema as eo, type DraftScriptResponse as ep, DraftScriptResponseSchema as eq, type DriveIndexEnrichmentRequest as er, DriveIndexEnrichmentRequestSchema as es, type DriveIndexEnrichmentResponse as et, DriveIndexEnrichmentResponseSchema as eu, type DrySamplerConfig as ev, DrySamplerSchema as ew, type EnableSuggestedWorkRequest as ex, EnableSuggestedWorkRequestSchema as ey, type EngineConfig as ez, type ScriptMeta as f, GenerateGezelAboutRequestSchema as f$, FetchUrlResponseSchema as f0, type FileContextFinding as f1, FileContextFindingSchema as f2, type FileContextImporter as f3, FileContextImporterSchema as f4, type FileContextRequest as f5, FileContextRequestSchema as f6, FileContextResponseSchema as f7, type FileMapRequest as f8, FileMapRequestSchema as f9, type FindReferencesResponse as fA, FindReferencesResponseSchema as fB, type FindSimilarImagesRequest as fC, FindSimilarImagesRequestSchema as fD, type FindSimilarImagesResponse as fE, FindSimilarImagesResponseSchema as fF, type FindSymbolRequest as fG, FindSymbolRequestSchema as fH, type FindSymbolResponse as fI, FindSymbolResponseSchema as fJ, type FitnessCheck as fK, FitnessCheckSchema as fL, type FixBoekwachterIssueRequest as fM, FixBoekwachterIssueRequestSchema as fN, type FixBoekwachterIssueResponse as fO, FixBoekwachterIssueResponseSchema as fP, type FlagSpec as fQ, FlagSpecSchema as fR, GATE_DEFAULT_MAX_ATTEMPTS as fS, type GateAttemptRecord as fT, GateCheckSchema as fU, GateScriptRefSchema as fV, type GateScriptResult as fW, GateScriptResultSchema as fX, type GateSpec as fY, GateSpecSchema as fZ, type GenerateGezelAboutRequest as f_, type FileMapResponse as fa, FileMapResponseSchema as fb, type FileMapScope as fc, FileMapScopeSchema as fd, type FileReviewIssue as fe, FileReviewIssueSchema as ff, type FileReviewIssueSeverity as fg, FileReviewIssueSeveritySchema as fh, type FileReviewReply as fi, FileReviewReplySchema as fj, type FileReviewRequest as fk, FileReviewRequestSchema as fl, type FileReviewResponse as fm, FileReviewResponseSchema as fn, type FileReviewWire as fo, FileReviewWireSchema as fp, type FindEntityRequest as fq, FindEntityRequestSchema as fr, type FindEntityResponse as fs, FindEntityResponseSchema as ft, type FindFilesRequest as fu, FindFilesRequestSchema as fv, type FindFilesResponse as fw, FindFilesResponseSchema as fx, type FindReferencesRequest as fy, FindReferencesRequestSchema as fz, type SecurityPolicy as g, GitCommitResponseSchema as g$, type GenerateGezelIconRequest as g0, GenerateGezelIconRequestSchema as g1, type GetBoekwachterIssueRequest as g2, GetBoekwachterIssueRequestSchema as g3, type GetBoekwachterIssueResponse as g4, GetBoekwachterIssueResponseSchema as g5, type GetScriptSourceResponse as g6, GetScriptSourceResponseSchema as g7, GezelConfigSchema as g8, type GezelGrowthResponse as g9, type GildeUpdateCheckOutcome as gA, GildeUpdateCheckOutcomeSchema as gB, type GildeUpdateCheckResult as gC, GildeUpdateCheckResultSchema as gD, type GildeUpdateStatusResponse as gE, GildeUpdateStatusResponseSchema as gF, type GitAbandonMergeResponse as gG, GitAbandonMergeResponseSchema as gH, type GitAiMergeRequest as gI, GitAiMergeRequestSchema as gJ, type GitAiMergeResponse as gK, GitAiMergeResponseSchema as gL, type GitBranchSwitchRequest as gM, GitBranchSwitchRequestSchema as gN, type GitBranchesResponse as gO, GitBranchesResponseSchema as gP, type GitChangeKind as gQ, GitChangeKindSchema as gR, type GitChangesResponse as gS, GitChangesResponseSchema as gT, type GitCloneResponse as gU, GitCloneResponseSchema as gV, type GitCommitDetailResponse as gW, GitCommitDetailResponseSchema as gX, type GitCommitRequest as gY, GitCommitRequestSchema as gZ, type GitCommitResponse as g_, GezelGrowthResponseSchema as ga, type GezelGrowthState as gb, GezelGrowthStateSchema as gc, type GezelGrowthSummary as gd, GezelGrowthSummarySchema as ge, GezelIconHistoryEntrySchema as gf, type GezelIconHistoryResponse as gg, GezelIconHistoryResponseSchema as gh, type GezelResponse as gi, GezelResponseSchema as gj, type GezelTemplateIdentity as gk, GezelTemplateIdentitySchema as gl, type GezelTemplateManifest as gm, GezelTemplateManifestSchema as gn, type GezelTemplateVersionManifest as go, GezelTemplateVersionManifestSchema as gp, type GezmodelBundleManifest as gq, GezmodelBundleManifestSchema as gr, type GezmodelEngine as gs, GezmodelEngineSchema as gt, type GezmodelFile as gu, GezmodelFileSchema as gv, type GezmodelImportReview as gw, GezmodelImportReviewSchema as gx, type GezmodelLicense as gy, GezmodelLicenseSchema as gz, type ProjectManagedWorkspaceWritePolicy as h, type GitLogResponse as h$, type GitCompleteMergeRequest as h0, GitCompleteMergeRequestSchema as h1, type GitCompleteMergeResponse as h2, GitCompleteMergeResponseSchema as h3, type GitConflictFile as h4, GitConflictFileSchema as h5, type GitConflictKind as h6, GitConflictKindSchema as h7, type GitConflictVersionsResponse as h8, GitConflictVersionsResponseSchema as h9, GitHubLoginPollRequestSchema as hA, type GitHubLoginPollResponse as hB, GitHubLoginPollResponseSchema as hC, type GitHubLoginStartResponse as hD, GitHubLoginStartResponseSchema as hE, type GitHubPullComment as hF, GitHubPullCommentSchema as hG, type GitHubPullDetail as hH, GitHubPullDetailSchema as hI, type GitHubPullDiffResponse as hJ, GitHubPullDiffResponseSchema as hK, type GitHubPullFile as hL, GitHubPullFileSchema as hM, type GitHubPullSummary as hN, GitHubPullSummarySchema as hO, type GitHubRepoPreviewRequest as hP, GitHubRepoPreviewRequestSchema as hQ, type GitHubRepoPreviewResponse as hR, GitHubRepoPreviewResponseSchema as hS, type GitHubRepoSummary as hT, GitHubRepoSummarySchema as hU, type GitHubReposResponse as hV, GitHubReposResponseSchema as hW, type GitHubWorkflowRun as hX, GitHubWorkflowRunSchema as hY, type GitLogEntry as hZ, GitLogEntrySchema as h_, type GitDiscardRequest as ha, GitDiscardRequestSchema as hb, type GitDiscardResponse as hc, GitDiscardResponseSchema as hd, type GitFetchResponse as he, GitFetchResponseSchema as hf, type GitFileDiffResponse as hg, GitFileDiffResponseSchema as hh, type GitHubAuthMeta as hi, GitHubAuthMetaSchema as hj, type GitHubCheckStatusResponse as hk, GitHubCheckStatusResponseSchema as hl, type GitHubCreateCommentRequest as hm, GitHubCreateCommentRequestSchema as hn, type GitHubCreateCommentResponse as ho, GitHubCreateCommentResponseSchema as hp, type GitHubCreatePullRequest as hq, GitHubCreatePullRequestSchema as hr, type GitHubCreatePullResponse as hs, GitHubCreatePullResponseSchema as ht, type GitHubCredentialSource as hu, type GitHubIdentity as hv, type GitHubIdentityResponse as hw, GitHubIdentityResponseSchema as hx, GitHubIdentitySchema as hy, type GitHubLoginPollRequest as hz, type CodexPermissionMode as i, type GithubCreatePullResponse as i$, GitLogResponseSchema as i0, type GitMergeStateResponse as i1, GitMergeStateResponseSchema as i2, type GitPushResponse as i3, GitPushResponseSchema as i4, type GitResolveConflictRequest as i5, GitResolveConflictRequestSchema as i6, type GitResolveConflictResponse as i7, GitResolveConflictResponseSchema as i8, type GitStatusResponse as i9, GithubChangesResponseSchema as iA, type GithubCheckStatusResponse as iB, GithubCheckStatusResponseSchema as iC, type GithubCloneResponse as iD, GithubCloneResponseSchema as iE, type GithubCommitDetailResponse as iF, GithubCommitDetailResponseSchema as iG, type GithubCommitRequest as iH, GithubCommitRequestSchema as iI, type GithubCommitResponse as iJ, GithubCommitResponseSchema as iK, type GithubCompleteMergeRequest as iL, GithubCompleteMergeRequestSchema as iM, type GithubCompleteMergeResponse as iN, GithubCompleteMergeResponseSchema as iO, type GithubConflictFile as iP, GithubConflictFileSchema as iQ, type GithubConflictKind as iR, GithubConflictKindSchema as iS, type GithubConflictVersionsResponse as iT, GithubConflictVersionsResponseSchema as iU, type GithubCreateCommentRequest as iV, GithubCreateCommentRequestSchema as iW, type GithubCreateCommentResponse as iX, GithubCreateCommentResponseSchema as iY, type GithubCreatePullRequest as iZ, GithubCreatePullRequestSchema as i_, GitStatusResponseSchema as ia, type GitSuggestMessageResponse as ib, GitSuggestMessageResponseSchema as ic, type GitSyncResponse as id, GitSyncResponseSchema as ie, type GitSyncState as ig, GitSyncStateSchema as ih, type GitWorkingChange as ii, GitWorkingChangeSchema as ij, type GithubAbandonMergeResponse as ik, GithubAbandonMergeResponseSchema as il, type GithubAiMergeRequest as im, GithubAiMergeRequestSchema as io, type GithubAiMergeResponse as ip, GithubAiMergeResponseSchema as iq, type GithubAuthMeta as ir, GithubAuthMetaSchema as is, type GithubBranchSwitchRequest as it, GithubBranchSwitchRequestSchema as iu, type GithubBranchesResponse as iv, GithubBranchesResponseSchema as iw, type GithubChangeKind as ix, GithubChangeKindSchema as iy, type GithubChangesResponse as iz, type ClaudePermissionMode as j, GpuProcessMemorySchema as j$, GithubCreatePullResponseSchema as j0, type GithubCredentialSource as j1, type GithubDiscardRequest as j2, GithubDiscardRequestSchema as j3, type GithubDiscardResponse as j4, GithubDiscardResponseSchema as j5, type GithubFetchResponse as j6, GithubFetchResponseSchema as j7, type GithubFileDiffResponse as j8, GithubFileDiffResponseSchema as j9, type GithubPushResponse as jA, GithubPushResponseSchema as jB, type GithubRepoPreviewRequest as jC, GithubRepoPreviewRequestSchema as jD, type GithubRepoPreviewResponse as jE, GithubRepoPreviewResponseSchema as jF, type GithubRepoSummary as jG, GithubRepoSummarySchema as jH, type GithubReposResponse as jI, GithubReposResponseSchema as jJ, type GithubResolveConflictRequest as jK, GithubResolveConflictRequestSchema as jL, type GithubResolveConflictResponse as jM, GithubResolveConflictResponseSchema as jN, type GithubStatusResponse as jO, GithubStatusResponseSchema as jP, type GithubSuggestMessageResponse as jQ, GithubSuggestMessageResponseSchema as jR, type GithubSyncResponse as jS, GithubSyncResponseSchema as jT, type GithubSyncState as jU, GithubSyncStateSchema as jV, type GithubWorkflowRun as jW, GithubWorkflowRunSchema as jX, type GithubWorkingChange as jY, GithubWorkingChangeSchema as jZ, type GpuProcessMemory as j_, type GithubIdentity as ja, type GithubIdentityResponse as jb, GithubIdentityResponseSchema as jc, GithubIdentitySchema as jd, type GithubLogEntry as je, GithubLogEntrySchema as jf, type GithubLogResponse as jg, GithubLogResponseSchema as jh, type GithubLoginPollRequest as ji, GithubLoginPollRequestSchema as jj, type GithubLoginPollResponse as jk, GithubLoginPollResponseSchema as jl, type GithubLoginStartResponse as jm, GithubLoginStartResponseSchema as jn, type GithubMergeStateResponse as jo, GithubMergeStateResponseSchema as jp, type GithubPullComment as jq, GithubPullCommentSchema as jr, type GithubPullDetail as js, GithubPullDetailSchema as jt, type GithubPullDiffResponse as ju, GithubPullDiffResponseSchema as jv, type GithubPullFile as jw, GithubPullFileSchema as jx, type GithubPullSummary as jy, GithubPullSummarySchema as jz, type SystemDiagnostics as k, ImageEngineStatusResponseSchema as k$, type GpuProcessOwner as k0, GpuProcessOwnerSchema as k1, type GrepArtifactRequest as k2, GrepArtifactRequestSchema as k3, type GrepArtifactResponse as k4, GrepArtifactResponseSchema as k5, type GrowthEvidence as k6, GrowthEvidenceSchema as k7, type GrowthProposal as k8, GrowthProposalSchema as k9, type HandboekTocSubcategory as kA, HandboekTocSubcategorySchema as kB, type HealthResponse as kC, HealthResponseSchema as kD, type HistoryEntry as kE, HistoryEntrySchema as kF, type HistoryEvent as kG, HistoryEventEntrySchema as kH, type HistoryEventKind as kI, HistoryEventKindSchema as kJ, HistoryEventSchema as kK, type HistoryFilter as kL, HistoryFilterSchema as kM, type HistorySessionEntry as kN, HistorySessionEntrySchema as kO, type HookDecision as kP, HookDecisionSchema as kQ, type HookPhase as kR, HookPhaseSchema as kS, type HookResult as kT, HookResultSchema as kU, type HookSpec as kV, HookSpecSchema as kW, type HtmlLayer as kX, HtmlLayerSchema as kY, HttpsOriginSchema as kZ, type ImageEngineStatusResponse as k_, type GrowthSignals as ka, GrowthSignalsSchema as kb, type GzelBundleItem as kc, GzelBundleItemSchema as kd, type GzelBundleManifest as ke, GzelBundleManifestSchema as kf, type HandboekArea as kg, HandboekAreaSchema as kh, type HandboekArticle as ki, HandboekArticleSchema as kj, type HandboekFigure as kk, HandboekFigureSchema as kl, type HandboekHowDoIResponse as km, HandboekHowDoIResponseSchema as kn, type HandboekNarrationResponse as ko, HandboekNarrationResponseSchema as kp, type HandboekNarrationSegment as kq, HandboekNarrationSegmentSchema as kr, type HandboekRenderMode as ks, HandboekRenderModeSchema as kt, type HandboekToc as ku, type HandboekTocArea as kv, HandboekTocAreaSchema as kw, type HandboekTocEntry as kx, HandboekTocEntrySchema as ky, HandboekTocSchema as kz, type ModelFitnessRecord as l, InstalledVideoModelSchema as l$, type ImageExif as l0, ImageExifSchema as l1, type ImageGenerationApprovalIntent as l2, ImageGenerationApprovalIntentSchema as l3, type ImageGenerationMeta as l4, ImageGenerationMetaSchema as l5, type ImageGenerationRequest as l6, ImageGenerationRequestSchema as l7, type ImageGenerationResponse as l8, ImageGenerationResponseSchema as l9, type ImportCustomMcpConfigResponse as lA, ImportCustomMcpConfigResponseSchema as lB, type ImportProvenance as lC, ImportProvenanceSchema as lD, type ImportedAboutProvenance as lE, ImportedAboutProvenanceSchema as lF, type ImportedCraftbookProvenance as lG, ImportedCraftbookProvenanceSchema as lH, type ImportedGezelProvenance as lI, ImportedGezelProvenanceSchema as lJ, type InsertAtMarkerInProjectWorkspaceFileRequest as lK, InsertAtMarkerInProjectWorkspaceFileRequestSchema as lL, type InstallPackageRequest as lM, InstallPackageRequestSchema as lN, type InstallPackageResponse as lO, InstallPackageResponseSchema as lP, type InstalledAudioModel as lQ, InstalledAudioModelSchema as lR, type InstalledImageModel as lS, InstalledImageModelSchema as lT, type InstalledPackage as lU, InstalledPackageSchema as lV, type InstalledRecognitionModel as lW, InstalledRecognitionModelSchema as lX, type InstalledToolset as lY, InstalledToolsetSchema as lZ, type InstalledVideoModel as l_, type ImageInputSource as la, ImageInputSourceSchema as lb, type ImageLayer as lc, ImageLayerSchema as ld, type ImageModelAuxiliaryFile as le, ImageModelAuxiliaryFileSchema as lf, type ImageModelAuxiliaryRole as lg, ImageModelAuxiliaryRoleSchema as lh, type ImageModelCategory as li, ImageModelCategorySchema as lj, type ImageModelHardwareTier as lk, ImageModelHardwareTierSchema as ll, type ImageModelIdentity as lm, ImageModelIdentitySchema as ln, type ImageModelManifest as lo, ImageModelManifestSchema as lp, type ImageModelPullEvent as lq, ImageModelPullEventSchema as lr, type ImageModelVersionManifest as ls, ImageModelVersionManifestSchema as lt, type ImageRecognition as lu, ImageRecognitionSchema as lv, type ImageStaticMeta as lw, ImageStaticMetaSchema as lx, type ImportCustomMcpConfigRequest as ly, ImportCustomMcpConfigRequestSchema as lz, type GateScriptRef as m, ListEntityMentionsResponseSchema as m$, type InstructionMergeMode as m0, InstructionMergeModeSchema as m1, type InstructionSourceFile as m2, InstructionSourceFileSchema as m3, type InterruptSessionRequest as m4, InterruptSessionRequestSchema as m5, type InvokePageToolRequest as m6, InvokePageToolRequestSchema as m7, type InvokePageToolResponse as m8, InvokePageToolResponseSchema as m9, LegacyCodexPermissionModeSchema as mA, type LicenseClass as mB, LicenseClassSchema as mC, LicenseMetaShape as mD, type ListActiveImagePullsResponse as mE, ListActiveImagePullsResponseSchema as mF, type ListActiveVideoPullsResponse as mG, ListActiveVideoPullsResponseSchema as mH, type ListAudioCatalogResponse as mI, ListAudioCatalogResponseSchema as mJ, type ListAudioVoicesResponse as mK, ListAudioVoicesResponseSchema as mL, type ListCatalogItemVersionsResponse as mM, ListCatalogItemVersionsResponseSchema as mN, type ListCatalogItemsResponse as mO, ListCatalogItemsResponseSchema as mP, type ListChatSessionsResponse as mQ, ListChatSessionsResponseSchema as mR, type ListCodeReviewsResponse as mS, ListCodeReviewsResponseSchema as mT, type ListCraftbooksResponse as mU, ListCraftbooksResponseSchema as mV, type ListDependenciesResponse as mW, ListDependenciesResponseSchema as mX, type ListEntityMentionsRequest as mY, ListEntityMentionsRequestSchema as mZ, type ListEntityMentionsResponse as m_, type InvokeSessionToolRequest as ma, InvokeSessionToolRequestSchema as mb, type InvokeSessionToolResponse as mc, InvokeSessionToolResponseSchema as md, KNOWN_PROFILE_IDS as me, type KeurmeesterAction as mf, KeurmeesterActionSchema as mg, type KeurmeesterCaseClosed as mh, KeurmeesterCaseClosedSchema as mi, type KeurmeesterCaseOpened as mj, KeurmeesterCaseOpenedSchema as mk, type KeurmeesterCaseOutcome as ml, KeurmeesterCaseOutcomeSchema as mm, type KeurmeesterCaseRecord as mn, KeurmeesterCaseRecordSchema as mo, type KeurmeesterFailureClass as mp, KeurmeesterFailureClassSchema as mq, type KeurmeesterTriggerKind as mr, KeurmeesterTriggerKindSchema as ms, type KeurmeesterVerdict as mt, KeurmeesterVerdictSchema as mu, type KnownProfileId as mv, LEVEL_THRESHOLDS as mw, type Layer as mx, LayerSchema as my, type LegacyCodexPermissionMode as mz, type ModelTier as n, LlamaCppContextSizingSchema as n$, type ListFileIssuesRequest as n0, ListFileIssuesRequestSchema as n1, type ListFileIssuesResponse as n2, ListFileIssuesResponseSchema as n3, type ListGezelsResponse as n4, ListGezelsResponseSchema as n5, type ListGitHubPullCommentsResponse as n6, ListGitHubPullCommentsResponseSchema as n7, type ListGitHubPullFilesResponse as n8, ListGitHubPullFilesResponseSchema as n9, type ListPackageScriptsResponse as nA, ListPackageScriptsResponseSchema as nB, type ListProjectsForGezelResponse as nC, ListProjectsForGezelResponseSchema as nD, type ListProjectsResponse as nE, ListProjectsResponseSchema as nF, type ListQuestionsResponse as nG, ListQuestionsResponseSchema as nH, type ListRecognitionCatalogResponse as nI, ListRecognitionCatalogResponseSchema as nJ, type ListScriptsResponse as nK, ListScriptsResponseSchema as nL, type ListSessionQueueResponse as nM, ListSessionQueueResponseSchema as nN, type ListSessionToolsResponse as nO, ListSessionToolsResponseSchema as nP, type ListTaskNotesResponse as nQ, ListTaskNotesResponseSchema as nR, type ListTasksResponse as nS, ListTasksResponseSchema as nT, type ListTerminalThreadsResponse as nU, ListTerminalThreadsResponseSchema as nV, type ListTimelineResponse as nW, ListTimelineResponseSchema as nX, type LlamaCppContextSizing as nY, type LlamaCppContextSizingResponse as nZ, LlamaCppContextSizingResponseSchema as n_, type ListGitHubPullsResponse as na, ListGitHubPullsResponseSchema as nb, type ListGitHubWorkflowRunsResponse as nc, ListGitHubWorkflowRunsResponseSchema as nd, type ListGithubPullCommentsResponse as ne, ListGithubPullCommentsResponseSchema as nf, type ListGithubPullFilesResponse as ng, ListGithubPullFilesResponseSchema as nh, type ListGithubPullsResponse as ni, ListGithubPullsResponseSchema as nj, type ListGithubWorkflowRunsResponse as nk, ListGithubWorkflowRunsResponseSchema as nl, type ListHistoryResponse as nm, ListHistoryResponseSchema as nn, type ListInstalledAudioModelsResponse as no, ListInstalledAudioModelsResponseSchema as np, type ListInstalledImageModelsResponse as nq, ListInstalledImageModelsResponseSchema as nr, type ListInstalledRecognitionModelsResponse as ns, ListInstalledRecognitionModelsResponseSchema as nt, type ListInstalledVideoModelsResponse as nu, ListInstalledVideoModelsResponseSchema as nv, type ListMentionCandidatesResponse as nw, ListMentionCandidatesResponseSchema as nx, type ListModelsResponse as ny, ListModelsResponseSchema as nz, type GateCheck as o, type ModelContextOverridesResponse as o$, type LlamaCppEngineConfig as o0, LlamaCppEngineConfigSchema as o1, type LocalEngineLifecycle as o2, LocalEngineLifecycleSchema as o3, MEESTER_STATUS_HEADLINE_MAX as o4, MODEL_TIER_ORDER as o5, type MachineMemoryKind as o6, MachineMemoryKindSchema as o7, type MachineMemoryUsage as o8, MachineMemoryUsageSchema as o9, type MeesterStatusCta as oA, MeesterStatusCtaSchema as oB, type MeesterStatusModelOutput as oC, MeesterStatusModelOutputSchema as oD, type MeesterStatusReport as oE, MeesterStatusReportSchema as oF, type MeesterStatusResponse as oG, MeesterStatusResponseSchema as oH, type MeesterStatusState as oI, MeesterStatusStateSchema as oJ, type MentionCandidate as oK, MentionCandidateSchema as oL, type MessageGezelRequest as oM, MessageGezelRequestSchema as oN, type MessageGezelResponse as oO, MessageGezelResponseSchema as oP, type MessageImageDigest as oQ, MessageImageDigestSchema as oR, MinGezelVersionShape as oS, type MlxRuntimeStatus as oT, MlxRuntimeStatusSchema as oU, type MockHttpRoute as oV, MockHttpRouteSchema as oW, type MockService as oX, MockServiceSchema as oY, type ModelContextOverrideUpdate as oZ, ModelContextOverrideUpdateSchema as o_, type MapAttackSurfaceResponse as oa, MapAttackSurfaceResponseSchema as ob, type MapBlock as oc, type MapBlockHealth as od, MapBlockHealthSchema as oe, MapBlockSchema as of, MapBuildingSchema as og, MapDistrictSchema as oh, MapPlazaSchema as oi, type MapPrChange as oj, MapPrChangeSchema as ok, type MapPrOverlay as ol, MapPrOverlaySchema as om, type MapRepoRequest as on, MapRepoRequestSchema as oo, type MapRepoResponse as op, MapRepoResponseSchema as oq, type MapRoad as or, MapRoadSchema as os, MapStreetSchema as ot, type MapUrbanity as ou, MapUrbanitySchema as ov, type McpToolInfo as ow, McpToolInfoSchema as ox, type MeesterStatusAction as oy, MeesterStatusActionSchema as oz, type StepGate as p, OutlineFileResponseSchema as p$, ModelContextOverridesResponseSchema as p0, type ModelDownloadPreflightRequest as p1, ModelDownloadPreflightRequestSchema as p2, type ModelDownloadPreflightResponse as p3, ModelDownloadPreflightResponseSchema as p4, type ModelFamily as p5, ModelFamilySchema as p6, ModelFitnessRecordSchema as p7, type ModelFitnessStatus as p8, ModelFitnessStatusSchema as p9, type NightShiftReport as pA, NightShiftReportSchema as pB, type NightShiftReviewIntent as pC, NightShiftReviewIntentSchema as pD, type NightShiftReviewResponse as pE, NightShiftReviewResponseSchema as pF, type NightShiftTaskBrief as pG, NightShiftTaskBriefSchema as pH, type NightShiftTasksResponse as pI, NightShiftTasksResponseSchema as pJ, type NodeScriptPassesCheck as pK, NodeScriptPassesCheckSchema as pL, type NormalizedStepGate as pM, type NpmInstallApprovalDecision as pN, NpmInstallApprovalDecisionSchema as pO, type NpmInstallApprovalPackage as pP, NpmInstallApprovalPackageSchema as pQ, type NpmInstallRequest as pR, NpmInstallRequestSchema as pS, NpmPackageNameSchema as pT, type NpmRegistryPackageRequest as pU, NpmRegistryPackageRequestSchema as pV, NpmRegistryVersionSchema as pW, OutcomeSchema as pX, type OutlineFileRequest as pY, OutlineFileRequestSchema as pZ, type OutlineFileResponse as p_, type ModelFitnessTrigger as pa, ModelFitnessTriggerSchema as pb, type ModelInfo as pc, ModelInfoSchema as pd, type ModelStyle as pe, ModelStyleSchema as pf, ModelTierSchema as pg, type NamedScriptCapability as ph, NamedScriptCapabilitySchema as pi, type NativeEngineInstallStatus as pj, NativeEngineInstallStatusSchema as pk, type NativeEngineName as pl, NativeEngineNameSchema as pm, type NativeEngineResolveEvent as pn, NativeEngineResolveEventSchema as po, type NativeEngineStatusResponse as pp, NativeEngineStatusResponseSchema as pq, NewCraftbookStepSchema as pr, type NewTaskFanout as ps, NewTaskFanoutSchema as pt, type NewTaskStep as pu, NewTaskStepSchema as pv, type NightShiftBackgroundWorkBrief as pw, NightShiftBackgroundWorkBriefSchema as px, type NightShiftCompletedTask as py, NightShiftCompletedTaskSchema as pz, type CraftbookStep as q, ProjectCraftbookProvenanceSchema as q$, PAGE_BRIDGE_VERSION as q0, type PageApiBootstrap as q1, PageApiBootstrapSchema as q2, type PageBridgeErrorCode as q3, PageBridgeErrorCodeSchema as q4, type PageCheckRequest as q5, PageCheckRequestSchema as q6, type PageCheckResponse as q7, PageCheckResponseSchema as q8, PageHelloMessageSchema as q9, type PendingImports as qA, PendingImportsSchema as qB, type PendingLevelUp as qC, PendingLevelUpSchema as qD, type PendingPersona as qE, PendingPersonaSchema as qF, type PendingScript as qG, PendingScriptSchema as qH, type PixelsLayer as qI, PixelsLayerSchema as qJ, type PreviewLogEntry as qK, PreviewLogEntrySchema as qL, type PreviewSource as qM, PreviewSourceSchema as qN, type ProfileKind as qO, type ProfileMeta as qP, type ProjectAboutPreviewRequest as qQ, ProjectAboutPreviewRequestSchema as qR, type ProjectAboutPreviewResponse as qS, ProjectAboutPreviewResponseSchema as qT, type ProjectActivity as qU, ProjectActivitySchema as qV, type ProjectApprovalsResponse as qW, ProjectApprovalsResponseSchema as qX, type ProjectConnectorBinding as qY, ProjectConnectorBindingSchema as qZ, type ProjectCraftbookProvenance as q_, PageInvokeMessageSchema as qa, type PageReadEntry as qb, PageReadEntrySchema as qc, PageReadMessageSchema as qd, type PageReadRequest as qe, PageReadRequestSchema as qf, type PageReadResponse as qg, PageReadResponseSchema as qh, type PageReadSource as qi, PageReadSourceSchema as qj, PageRefreshMessageSchema as qk, type PageToParentMessage as ql, PageToParentMessageSchema as qm, PageUnwatchMessageSchema as qn, PageWatchMessageSchema as qo, ParentChangeMessageSchema as qp, ParentInitMessageSchema as qq, ParentReadResultMessageSchema as qr, ParentResultMessageSchema as qs, ParentThemeMessageSchema as qt, type ParentToPageMessage as qu, ParentToPageMessageSchema as qv, type ParseCraftbookTestSpecOptions as qw, type ParseCraftbookTestSpecResult as qx, type PendingImportItem as qy, PendingImportItemSchema as qz, type StepDeliverable as r, ReadArtifactSliceOptsSchema as r$, type ProjectDetail as r0, ProjectDetailSchema as r1, type ProjectFileEntry as r2, ProjectFileEntrySchema as r3, type ProjectFolderPreviewRequest as r4, ProjectFolderPreviewRequestSchema as r5, type ProjectFolderPreviewResponse as r6, ProjectFolderPreviewResponseSchema as r7, type ProjectForGezel as r8, ProjectForGezelSchema as r9, type ProjectTypePreviewRead as rA, ProjectTypePreviewReadSchema as rB, type ProjectTypeProvenance as rC, ProjectTypeProvenanceSchema as rD, type ProjectTypeSchedule as rE, ProjectTypeScheduleSchema as rF, type ProjectTypeTool as rG, type ProjectTypeToolReaction as rH, ProjectTypeToolReactionSchema as rI, ProjectTypeToolSchema as rJ, type ProjectTypeToolsetRef as rK, ProjectTypeToolsetSchema as rL, type ProjectTypeVersionManifest as rM, ProjectTypeVersionManifestSchema as rN, type PrometheusAlertsCheck as rO, PrometheusAlertsCheckSchema as rP, type PromptTags as rQ, PromptTagsSchema as rR, type Question as rS, type QuestionAnswer as rT, QuestionAnswerSchema as rU, type QuestionIntent as rV, QuestionIntentSchema as rW, QuestionSchema as rX, type QueuedMessage as rY, QueuedMessageSchema as rZ, type ReadArtifactSliceOpts as r_, type ProjectGitHub as ra, ProjectGitHubSchema as rb, type ProjectGithub as rc, ProjectGithubSchema as rd, type ProjectLocalConfig as re, ProjectLocalConfigSchema as rf, ProjectManagedWorkspaceWritePolicySchema as rg, type ProjectNudgeConfig as rh, ProjectNudgeConfigSchema as ri, type ProjectNudgeState as rj, ProjectNudgeStateSchema as rk, type ProjectResponse as rl, ProjectResponseSchema as rm, ProjectSchema as rn, type ProjectTabVisibility as ro, ProjectTabVisibilitySchema as rp, type ProjectTypeCategory as rq, ProjectTypeCategorySchema as rr, type ProjectTypeGezelRef as rs, ProjectTypeGezelSchema as rt, type ProjectTypeIdentity as ru, ProjectTypeIdentitySchema as rv, type ProjectTypeManifest as rw, ProjectTypeManifestSchema as rx, type ProjectTypePages as ry, ProjectTypePagesSchema as rz, type Craftbook as s, ReplaceLinesInProjectWorkspaceFileRequestSchema as s$, type ReadArtifactSliceResponse as s0, ReadArtifactSliceResponseSchema as s1, type ReadDocAsMarkdownRequest as s2, ReadDocAsMarkdownRequestSchema as s3, type ReadDocAsMarkdownResponse as s4, ReadDocAsMarkdownResponseSchema as s5, type ReadImageBase64Request as s6, ReadImageBase64RequestSchema as s7, type ReadImageBase64Response as s8, ReadImageBase64ResponseSchema as s9, RecognitionPullEventSchema as sA, type RecognitionRequest as sB, RecognitionRequestSchema as sC, type RecognitionResponse as sD, RecognitionResponseSchema as sE, RectSchema as sF, type ReferenceFileLocationRequest as sG, ReferenceFileLocationRequestSchema as sH, type ReferenceFileLocationResponse as sI, ReferenceFileLocationResponseSchema as sJ, type ReferencePreviewRequest as sK, ReferencePreviewRequestSchema as sL, type ReferencePreviewResponse as sM, ReferencePreviewResponseSchema as sN, type RemoteServingConfig as sO, RemoteServingConfigSchema as sP, type RenameDocumentRequest as sQ, RenameDocumentRequestSchema as sR, type RenameGezelRequest as sS, RenameGezelRequestSchema as sT, type RenderImageRequest as sU, RenderImageRequestSchema as sV, type RenderImageResponse as sW, RenderImageResponseSchema as sX, type ReplaceInProjectWorkspaceFileRequest as sY, ReplaceInProjectWorkspaceFileRequestSchema as sZ, type ReplaceLinesInProjectWorkspaceFileRequest as s_, type ReadSymbolRequest as sa, ReadSymbolRequestSchema as sb, type ReadSymbolResponse as sc, ReadSymbolResponseSchema as sd, type ReadWorkspaceFilesRequest as se, ReadWorkspaceFilesRequestSchema as sf, type ReadWorkspaceFilesResponse as sg, ReadWorkspaceFilesResponseSchema as sh, type ReasoningBlock as si, ReasoningBlockSchema as sj, type ReasoningFormat as sk, ReasoningFormatSchema as sl, type RecentTab as sm, type RecentTabArea as sn, RecentTabAreaSchema as so, RecentTabSchema as sp, RecoMetaShape as sq, type RecognitionCatalogEntry as sr, RecognitionCatalogEntrySchema as ss, type RecognitionHealth as st, RecognitionHealthSchema as su, type RecognitionMode as sv, type RecognitionModeRequest as sw, RecognitionModeRequestSchema as sx, RecognitionModeSchema as sy, type RecognitionPullEvent as sz, type Task as t, ScriptBooleanInputSchema as t$, type ReportPreviewLogRequest as t0, ReportPreviewLogRequestSchema as t1, type RequestAskRequest as t2, RequestAskRequestSchema as t3, type RequestAskResponse as t4, RequestAskResponseSchema as t5, type RequestPermissionRequest as t6, RequestPermissionRequestSchema as t7, type RequestPermissionResponse as t8, RequestPermissionResponseSchema as t9, type RunPackageScriptRequest as tA, RunPackageScriptRequestSchema as tB, type RunPackageScriptResponse as tC, RunPackageScriptResponseSchema as tD, type RunScriptRequest as tE, RunScriptRequestSchema as tF, type RunScriptResponse as tG, RunScriptResponseSchema as tH, type RunTerminalCommandRequest as tI, RunTerminalCommandRequestSchema as tJ, type RunTerminalCommandResponse as tK, RunTerminalCommandResponseSchema as tL, type SamplingBlock as tM, SamplingBlockSchema as tN, type SaveScriptSourceRequest as tO, SaveScriptSourceRequestSchema as tP, type SaveScriptSourceResponse as tQ, SaveScriptSourceResponseSchema as tR, type ScanFindingsRequest as tS, ScanFindingsRequestSchema as tT, type ScanFindingsResponse as tU, ScanFindingsResponseSchema as tV, type ScheduleApprovalIntent as tW, ScheduleApprovalIntentSchema as tX, type ScheduleMaterialization as tY, ScheduleMaterializationSchema as tZ, ScriptArrayOutputSchema as t_, type RerollGezelPoppetjeRequest as ta, RerollGezelPoppetjeRequestSchema as tb, type ResidentEngineModel as tc, ResidentEngineModelSchema as td, type ResolveArtifactResponse as te, ResolveArtifactResponseSchema as tf, type ResolveSecurityFindingRequest as tg, ResolveSecurityFindingRequestSchema as th, type ResolveSecurityFindingResponse as ti, ResolveSecurityFindingResponseSchema as tj, type RevertGezelIconRequest as tk, RevertGezelIconRequestSchema as tl, type RewriteTextContext as tm, RewriteTextContextSchema as tn, type RewriteTextRequest as to, RewriteTextRequestSchema as tp, type RewriteTextResponse as tq, RewriteTextResponseSchema as tr, type RunGitRequest as ts, RunGitRequestSchema as tt, type RunGitResponse as tu, RunGitResponseSchema as tv, type RunNpxRequest as tw, RunNpxRequestSchema as tx, type RunNpxResponse as ty, RunNpxResponseSchema as tz, type AcceptGrowthProposalRequest as u, type SearchFilesResponse as u$, ScriptBooleanOutputSchema as u0, type ScriptCapability as u1, ScriptCapabilitySchema as u2, ScriptChoiceInputSchema as u3, type ScriptDiagnostic as u4, ScriptDiagnosticSchema as u5, ScriptInputError as u6, ScriptInputFieldSchema as u7, type ScriptInputs as u8, ScriptInputsSchema as u9, ScriptRunTriggerSchema as uA, type ScriptScope as uB, ScriptScopeSchema as uC, ScriptStringInputSchema as uD, ScriptStringOutputSchema as uE, type ScriptTemplateId as uF, ScriptTemplateIdSchema as uG, type SdkTypesResponse as uH, SdkTypesResponseSchema as uI, type SearchCodeRequest as uJ, SearchCodeRequestSchema as uK, type SearchCodeResponse as uL, SearchCodeResponseSchema as uM, type SearchDocsRequest as uN, SearchDocsRequestSchema as uO, type SearchDocsResponse as uP, SearchDocsResponseSchema as uQ, type SearchDocumentsRequest as uR, SearchDocumentsRequestSchema as uS, type SearchDocumentsResponse as uT, SearchDocumentsResponseSchema as uU, type SearchFilesContextLine as uV, SearchFilesContextLineSchema as uW, type SearchFilesMatch as uX, SearchFilesMatchSchema as uY, type SearchFilesRequest as uZ, SearchFilesRequestSchema as u_, ScriptJsonInputSchema as ua, ScriptJsonOutputSchema as ub, ScriptMetaSchema as uc, ScriptNameSchema as ud, ScriptNumberInputSchema as ue, ScriptNumberOutputSchema as uf, ScriptObjectOutputSchema as ug, ScriptOutputFieldSchema as uh, type ScriptOutputPredicate as ui, ScriptOutputPredicateSchema as uj, type ScriptOutputs as uk, ScriptOutputsSchema as ul, type ScriptProvenance as um, ScriptProvenanceSchema as un, type ScriptRef as uo, ScriptRefInputSchema as up, type ScriptRefList as uq, ScriptRefListSchema as ur, ScriptRefSchema as us, type ScriptRun as ut, type ScriptRunCall as uu, ScriptRunCallSchema as uv, ScriptRunSchema as uw, type ScriptRunStatus as ux, ScriptRunStatusSchema as uy, type ScriptRunTrigger as uz, AcceptGrowthProposalRequestSchema as v, type SharedModelMigrationResult as v$, SearchFilesResponseSchema as v0, type SearchImagesRequest as v1, SearchImagesRequestSchema as v2, type SearchImagesResponse as v3, SearchImagesResponseSchema as v4, type SearchResult as v5, SearchResultSchema as v6, type SearchSessionsRequest as v7, SearchSessionsRequestSchema as v8, type SearchSessionsResponse as v9, SendToSessionRequestSchema as vA, type SendToSessionResponse as vB, SendToSessionResponseSchema as vC, type ServiceRole as vD, ServiceRoleSchema as vE, type SessionDebugSnapshot as vF, SessionDebugSnapshotSchema as vG, type SessionGpuTask as vH, SessionGpuTaskSchema as vI, type SessionSearchResult as vJ, SessionSearchResultSchema as vK, type SessionTelemetry as vL, type SessionTelemetryListResponse as vM, SessionTelemetryListResponseSchema as vN, SessionTelemetrySchema as vO, type SessionTurnTelemetry as vP, SessionTurnTelemetrySchema as vQ, type SetTaskStatusRequest as vR, SetTaskStatusRequestSchema as vS, type Settlement as vT, SettlementSchema as vU, type SharedModelMigrationCandidate as vV, SharedModelMigrationCandidateSchema as vW, type SharedModelMigrationCandidatesResponse as vX, SharedModelMigrationCandidatesResponseSchema as vY, type SharedModelMigrationRequest as vZ, SharedModelMigrationRequestSchema as v_, SearchSessionsResponseSchema as va, type SecurityDependency as vb, SecurityDependencySchema as vc, SecurityFindingSchema as vd, type SecurityFindingStatus as ve, SecurityFindingStatusSchema as vf, type SecurityFindingWire as vg, type SecurityOverviewResponse as vh, SecurityOverviewResponseSchema as vi, SecurityPolicySchema as vj, type SecurityScanRequest as vk, SecurityScanRequestSchema as vl, type SecurityScanResponse as vm, SecurityScanResponseSchema as vn, SecuritySeveritySchema as vo, type SecuritySeverityWire as vp, SecuritySourceSchema as vq, type SendChannelMessageRequest as vr, SendChannelMessageRequestSchema as vs, type SendChannelMessageResponse as vt, SendChannelMessageResponseSchema as vu, type SendChatRequest as vv, SendChatRequestSchema as vw, type SendChatResponse as vx, SendChatResponseSchema as vy, type SendToSessionRequest as vz, type ActiveImagePull as w, type TaskNote as w$, SharedModelMigrationResultSchema as w0, type SharedModelMigrationSource as w1, SharedModelMigrationSourceSchema as w2, type SpawnTaskInstancesRequest as w3, SpawnTaskInstancesRequestSchema as w4, type StartCodeReviewRequest as w5, StartCodeReviewRequestSchema as w6, type StartCodeReviewResponse as w7, StartCodeReviewResponseSchema as w8, StepDeliverableSchema as w9, type SystemBootstrapStatus as wA, SystemBootstrapStatusSchema as wB, SystemDiagnosticsSchema as wC, type SystemHomeInfo as wD, SystemHomeInfoSchema as wE, type SystemToolsetInstallEvent as wF, SystemToolsetInstallEventSchema as wG, type SystemToolsetInstallPhase as wH, type SystemToolsetInstallSnapshot as wI, SystemToolsetInstallSnapshotSchema as wJ, TOOL_CALL_DIFF_MAX_BYTES as wK, type TaskAssignee as wL, TaskAssigneeSchema as wM, type TaskCraftbook as wN, TaskCraftbookSchema as wO, type TaskCraftbookSource as wP, TaskCraftbookSourceSchema as wQ, type TaskCraftbookStep as wR, TaskCraftbookStepSchema as wS, type TaskCron as wT, type TaskCronOverlap as wU, TaskCronOverlapSchema as wV, TaskCronSchema as wW, type TaskFanout as wX, TaskFanoutSchema as wY, type TaskNightShift as wZ, TaskNightShiftSchema as w_, StepGateSchema as wa, type StepGateUnion as wb, StepGateUnionSchema as wc, type StepPatch as wd, type StepPosition as we, StepPositionSchema as wf, type StepSniff as wg, StepSniffSchema as wh, type StructuredOutput as wi, StructuredOutputSchema as wj, type SuggestCraftbooksResponse as wk, SuggestCraftbooksResponseSchema as wl, type SuggestedCraftbook as wm, SuggestedCraftbookSchema as wn, type SuggestedWorkItem as wo, SuggestedWorkItemSchema as wp, type SuggestedWorkResponse as wq, SuggestedWorkResponseSchema as wr, type SuggestedWorkSource as ws, SuggestedWorkSourceSchema as wt, type SuggestedWorkState as wu, SuggestedWorkStateSchema as wv, type SvgLayer as ww, SvgLayerSchema as wx, type SymbolContext as wy, SymbolContextSchema as wz, ActiveImagePullSchema as x, ToolsetVersionManifestSchema as x$, type TaskNoteAuthor as x0, TaskNoteAuthorSchema as x1, TaskNoteSchema as x2, type TaskPausedIntent as x3, TaskPausedIntentSchema as x4, type TaskPausedReason as x5, TaskPausedReasonSchema as x6, TaskRefSchema as x7, type TaskResponse as x8, TaskResponseSchema as x9, TerminalTimelineEntrySchema as xA, type TerminalWorkingDirChangedEvent as xB, TerminalWorkingDirChangedEventSchema as xC, type TextLayer as xD, TextLayerSchema as xE, type TimelineMessage as xF, TimelineMessageSchema as xG, type ToolCallFormat as xH, ToolCallFormatSchema as xI, type ToolPermissionIntent as xJ, ToolPermissionIntentSchema as xK, type ToolsetCategory as xL, ToolsetCategorySchema as xM, type ToolsetConfig as xN, type ToolsetConfigField as xO, ToolsetConfigFieldSchema as xP, ToolsetConfigSchema as xQ, type ToolsetIdentity as xR, ToolsetIdentitySchema as xS, type ToolsetInstallApprovalIntent as xT, ToolsetInstallApprovalIntentSchema as xU, type ToolsetManifest as xV, ToolsetManifestSchema as xW, type ToolsetPlatform as xX, ToolsetPlatformSchema as xY, ToolsetRuntimeSchema as xZ, type ToolsetVersionManifest as x_, TaskSchema as xa, type TaskStatus as xb, TaskStatusSchema as xc, type TaskVariation as xd, TaskVariationSchema as xe, type TerminalEventEnvelope as xf, TerminalEventEnvelopeSchema as xg, type TerminalFileReference as xh, TerminalFileReferenceSchema as xi, type TerminalInputRequestedEvent as xj, TerminalInputRequestedEventSchema as xk, type TerminalMessage as xl, type TerminalMessageEvent as xm, TerminalMessageEventSchema as xn, TerminalMessageSchema as xo, type TerminalOpenFileEvent as xp, TerminalOpenFileEventSchema as xq, type TerminalOutputChunkEvent as xr, TerminalOutputChunkEventSchema as xs, type TerminalRunStartedEvent as xt, TerminalRunStartedEventSchema as xu, type TerminalThread as xv, TerminalThreadSchema as xw, type TerminalThreadSummary as xx, TerminalThreadSummarySchema as xy, type TerminalTimelineEntry as xz, type ActiveVideoPull as y, type UpdateTaskStepRequest as y$, type ToolsetsScope as y0, ToolsetsScopeSchema as y1, type TraceTaintRequest as y2, TraceTaintRequestSchema as y3, type TraceTaintResponse as y4, TraceTaintResponseSchema as y5, type TraitProposal as y6, TraitProposalSchema as y7, type TransformStreamEvent as y8, TransformStreamEventSchema as y9, UpdateCraftbookRequestSchema as yA, type UpdateGezelAboutRequest as yB, UpdateGezelAboutRequestSchema as yC, type UpdateGezelFixedFunctionDefaultsRequest as yD, UpdateGezelFixedFunctionDefaultsRequestSchema as yE, type UpdateGezelIconRequest as yF, UpdateGezelIconRequestSchema as yG, type UpdateGezelMarkdownRequest as yH, UpdateGezelMarkdownRequestSchema as yI, type UpdateGezelPoppetjeRequest as yJ, UpdateGezelPoppetjeRequestSchema as yK, type UpdateGezelSettingsRequest as yL, UpdateGezelSettingsRequestSchema as yM, type UpdateProjectRequest as yN, UpdateProjectRequestSchema as yO, type UpdateQueuedMessageRequest as yP, UpdateQueuedMessageRequestSchema as yQ, type UpdateQueuedMessageResponse as yR, UpdateQueuedMessageResponseSchema as yS, type UpdateTaskCraftbookRequest as yT, UpdateTaskCraftbookRequestSchema as yU, type UpdateTaskNoteRequest as yV, UpdateTaskNoteRequestSchema as yW, type UpdateTaskNoteResponse as yX, UpdateTaskNoteResponseSchema as yY, type UpdateTaskRequest as yZ, UpdateTaskRequestSchema as y_, type TransformTextMode as ya, TransformTextModeSchema as yb, type TransformTextRequest as yc, TransformTextRequestSchema as yd, type TuningAction as ye, TuningActionSchema as yf, type TuningProfileId as yg, TuningProfileIdSchema as yh, type TuningProposal as yi, TuningProposalSchema as yj, UNIFIED_SEARCH_RESULT_KINDS as yk, type UnifiedSearchRequest as yl, UnifiedSearchRequestSchema as ym, type UnifiedSearchResponse as yn, UnifiedSearchResponseSchema as yo, type UnifiedSearchResult as yp, type UnifiedSearchResultKind as yq, UnifiedSearchResultKindSchema as yr, UnifiedSearchResultSchema as ys, type UpdateBoekwachterIssueRequest as yt, UpdateBoekwachterIssueRequestSchema as yu, type UpdateBoekwachterIssueResponse as yv, UpdateBoekwachterIssueResponseSchema as yw, type UpdateConfigRequest as yx, UpdateConfigRequestSchema as yy, type UpdateCraftbookRequest as yz, ActiveVideoPullSchema as z, type WorkspaceEditResponse as z$, UpdateTaskStepRequestSchema as z0, type UpdateTaskStepResponse as z1, UpdateTaskStepResponseSchema as z2, VILLAGE_FILE_ABOUT as z3, VILLAGE_FILE_SCHEMA_VERSION as z4, type VideoAccelerator as z5, VideoAcceleratorSchema as z6, type VideoEngineStatusResponse as z7, VideoEngineStatusResponseSchema as z8, type VideoGenerationApprovalIntent as z9, type VillageDowntown as zA, VillageDowntownSchema as zB, type VillageFile as zC, VillageFileSchema as zD, type VillageJournalNode as zE, VillageJournalNodeSchema as zF, VillageOverrideSchema as zG, WORKSPACE_READ_DEADLINE_MS as zH, WORKSPACE_READ_MAX_BATCH_LINES as zI, WORKSPACE_READ_MAX_BATCH_RESULT_BYTES as zJ, WORKSPACE_READ_MAX_BATCH_SCAN_BYTES as zK, WORKSPACE_READ_MAX_FILES as zL, WORKSPACE_READ_MAX_RANGE_LINES as zM, WORKSPACE_READ_MAX_RESULT_BYTES as zN, WORKSPACE_READ_MAX_SCAN_BYTES as zO, type WebSearchRequest as zP, WebSearchRequestSchema as zQ, type WebSearchResponse as zR, WebSearchResponseSchema as zS, type WebhookChannelConfig as zT, WebhookChannelConfigSchema as zU, type WikipediaSearchRequest as zV, WikipediaSearchRequestSchema as zW, type WorkspaceCommandIndex as zX, WorkspaceCommandIndexSchema as zY, type WorkspaceCommandShapes as zZ, WorkspaceCommandShapesSchema as z_, VideoGenerationApprovalIntentSchema as za, type VideoGenerationMeta as zb, VideoGenerationMetaSchema as zc, type VideoGenerationRequest as zd, VideoGenerationRequestSchema as ze, type VideoGenerationResponse as zf, VideoGenerationResponseSchema as zg, type VideoInputSource as zh, VideoInputSourceSchema as zi, type VideoModelFamily as zj, VideoModelFamilySchema as zk, type VideoModelIdentity as zl, VideoModelIdentitySchema as zm, type VideoModelLoad as zn, VideoModelLoadSchema as zo, type VideoModelManifest as zp, VideoModelManifestSchema as zq, type VideoModelPullEvent as zr, VideoModelPullEventSchema as zs, type VideoModelSource as zt, VideoModelSourceSchema as zu, type VideoModelVersionManifest as zv, VideoModelVersionManifestSchema as zw, VillageAnchorSchema as zx, type VillageDomainState as zy, VillageDomainStateSchema as zz };