@bendyline/gezel 1.0.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.
- package/dist/{index-BtxY_EhX.d.ts → index-CWMNVAhp.d.ts} +790 -9
- package/dist/index.d.ts +195 -17
- package/dist/index.js +7263 -5316
- package/dist/markdown/index.d.ts +1 -1
- package/dist/markdown/index.js +694 -657
- package/dist/native/index.d.ts +34 -40
- package/dist/native/index.js +62 -57
- package/dist/paths.d.ts +11 -1
- package/dist/paths.js +8 -0
- package/dist/{report-action-DVQvpL-V.d.ts → report-action-DIz_2QOu.d.ts} +7 -7
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.js +5471 -5155
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import './report-action-
|
|
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;
|
|
@@ -9423,9 +9485,9 @@ declare const CraftbookTestRubricSchema: z.ZodObject<{
|
|
|
9423
9485
|
path: z.ZodString;
|
|
9424
9486
|
kind: z.ZodEnum<{
|
|
9425
9487
|
json: "json";
|
|
9488
|
+
text: "text";
|
|
9426
9489
|
typescript: "typescript";
|
|
9427
9490
|
markdown: "markdown";
|
|
9428
|
-
text: "text";
|
|
9429
9491
|
html: "html";
|
|
9430
9492
|
yaml: "yaml";
|
|
9431
9493
|
}>;
|
|
@@ -10447,9 +10509,9 @@ declare const CraftbookTestSpecSchema: z.ZodObject<{
|
|
|
10447
10509
|
path: z.ZodString;
|
|
10448
10510
|
kind: z.ZodEnum<{
|
|
10449
10511
|
json: "json";
|
|
10512
|
+
text: "text";
|
|
10450
10513
|
typescript: "typescript";
|
|
10451
10514
|
markdown: "markdown";
|
|
10452
|
-
text: "text";
|
|
10453
10515
|
html: "html";
|
|
10454
10516
|
yaml: "yaml";
|
|
10455
10517
|
}>;
|
|
@@ -10486,6 +10548,15 @@ type ParseCraftbookTestSpecResult = {
|
|
|
10486
10548
|
*/
|
|
10487
10549
|
declare function parseCraftbookTestSpec(raw: unknown, opts?: ParseCraftbookTestSpecOptions): ParseCraftbookTestSpecResult;
|
|
10488
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
|
+
|
|
10489
10560
|
/** User-facing Codex execution postures, ordered from least to most authority. */
|
|
10490
10561
|
declare const CodexPermissionModeSchema: z.ZodEnum<{
|
|
10491
10562
|
plan: "plan";
|
|
@@ -11074,6 +11145,17 @@ declare const ProjectTabVisibilitySchema: z.ZodObject<{
|
|
|
11074
11145
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
11075
11146
|
}, z.core.$strict>;
|
|
11076
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>;
|
|
11077
11159
|
/**
|
|
11078
11160
|
* Provenance recorded on `project.json` when a custom project type is applied
|
|
11079
11161
|
* (see docs/project-types.md). Captures which type + version + source
|
|
@@ -11146,6 +11228,11 @@ declare const ProjectSchema: z.ZodObject<{
|
|
|
11146
11228
|
artifacts: z.ZodOptional<z.ZodBoolean>;
|
|
11147
11229
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
11148
11230
|
}, z.core.$strict>>;
|
|
11231
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
11232
|
+
auto: "auto";
|
|
11233
|
+
allow: "allow";
|
|
11234
|
+
deny: "deny";
|
|
11235
|
+
}>>;
|
|
11149
11236
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
11150
11237
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
11151
11238
|
plan: "plan";
|
|
@@ -11153,6 +11240,12 @@ declare const ProjectSchema: z.ZodObject<{
|
|
|
11153
11240
|
reviewed: "reviewed";
|
|
11154
11241
|
full: "full";
|
|
11155
11242
|
}>>;
|
|
11243
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
11244
|
+
default: "default";
|
|
11245
|
+
plan: "plan";
|
|
11246
|
+
acceptEdits: "acceptEdits";
|
|
11247
|
+
bypassPermissions: "bypassPermissions";
|
|
11248
|
+
}>>;
|
|
11156
11249
|
status: z.ZodOptional<z.ZodEnum<{
|
|
11157
11250
|
readonly: "readonly";
|
|
11158
11251
|
active: "active";
|
|
@@ -11266,6 +11359,11 @@ declare const ProjectDetailSchema: z.ZodObject<{
|
|
|
11266
11359
|
artifacts: z.ZodOptional<z.ZodBoolean>;
|
|
11267
11360
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
11268
11361
|
}, z.core.$strict>>;
|
|
11362
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
11363
|
+
auto: "auto";
|
|
11364
|
+
allow: "allow";
|
|
11365
|
+
deny: "deny";
|
|
11366
|
+
}>>;
|
|
11269
11367
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
11270
11368
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
11271
11369
|
plan: "plan";
|
|
@@ -11273,6 +11371,12 @@ declare const ProjectDetailSchema: z.ZodObject<{
|
|
|
11273
11371
|
reviewed: "reviewed";
|
|
11274
11372
|
full: "full";
|
|
11275
11373
|
}>>;
|
|
11374
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
11375
|
+
default: "default";
|
|
11376
|
+
plan: "plan";
|
|
11377
|
+
acceptEdits: "acceptEdits";
|
|
11378
|
+
bypassPermissions: "bypassPermissions";
|
|
11379
|
+
}>>;
|
|
11276
11380
|
status: z.ZodOptional<z.ZodEnum<{
|
|
11277
11381
|
readonly: "readonly";
|
|
11278
11382
|
active: "active";
|
|
@@ -18041,6 +18145,10 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
18041
18145
|
kind: z.ZodLiteral<"system-job">;
|
|
18042
18146
|
jobId: z.ZodString;
|
|
18043
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;
|
|
18044
18152
|
}, z.core.$strip>, z.ZodObject<{
|
|
18045
18153
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
18046
18154
|
templateId: z.ZodString;
|
|
@@ -21710,6 +21818,10 @@ declare const CompleteStepResponseSchema: z.ZodObject<{
|
|
|
21710
21818
|
kind: z.ZodLiteral<"system-job">;
|
|
21711
21819
|
jobId: z.ZodString;
|
|
21712
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;
|
|
21713
21825
|
}, z.core.$strip>, z.ZodObject<{
|
|
21714
21826
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
21715
21827
|
templateId: z.ZodString;
|
|
@@ -24659,6 +24771,10 @@ declare const UpdateTaskStepResponseSchema: z.ZodObject<{
|
|
|
24659
24771
|
kind: z.ZodLiteral<"system-job">;
|
|
24660
24772
|
jobId: z.ZodString;
|
|
24661
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;
|
|
24662
24778
|
}, z.core.$strip>, z.ZodObject<{
|
|
24663
24779
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
24664
24780
|
templateId: z.ZodString;
|
|
@@ -27103,6 +27219,10 @@ declare const ListTasksResponseSchema: z.ZodObject<{
|
|
|
27103
27219
|
kind: z.ZodLiteral<"system-job">;
|
|
27104
27220
|
jobId: z.ZodString;
|
|
27105
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;
|
|
27106
27226
|
}, z.core.$strip>, z.ZodObject<{
|
|
27107
27227
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
27108
27228
|
templateId: z.ZodString;
|
|
@@ -29512,6 +29632,10 @@ declare const TaskResponseSchema: z.ZodObject<{
|
|
|
29512
29632
|
kind: z.ZodLiteral<"system-job">;
|
|
29513
29633
|
jobId: z.ZodString;
|
|
29514
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;
|
|
29515
29639
|
}, z.core.$strip>, z.ZodObject<{
|
|
29516
29640
|
kind: z.ZodLiteral<"gezel-suggested-craftbook">;
|
|
29517
29641
|
templateId: z.ZodString;
|
|
@@ -32411,9 +32535,11 @@ type MeesterStatusResponse = z.infer<typeof MeesterStatusResponseSchema>;
|
|
|
32411
32535
|
* review pass produces on top of the search-oriented enrichment summary:
|
|
32412
32536
|
* type-specific notes (1 sentence to ~3 paragraphs of markdown), a structured
|
|
32413
32537
|
* list of issues the model saw, and a 1-10 health score judged against a
|
|
32414
|
-
* per-file-kind rubric.
|
|
32415
|
-
* (`file_reviews`)
|
|
32416
|
-
*
|
|
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.
|
|
32417
32543
|
*/
|
|
32418
32544
|
/**
|
|
32419
32545
|
* Issue severity. Deliberately a SEPARATE vocabulary from security-finding
|
|
@@ -32437,6 +32563,65 @@ declare const FileReviewIssueSchema: z.ZodObject<{
|
|
|
32437
32563
|
line: z.ZodOptional<z.ZodNumber>;
|
|
32438
32564
|
}, z.core.$strip>;
|
|
32439
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>;
|
|
32440
32625
|
/**
|
|
32441
32626
|
* The strict LLM-reply contract (snake keys — exactly what the review prompt
|
|
32442
32627
|
* asks the model to emit). Parsed tolerantly then validated against this.
|
|
@@ -33592,6 +33777,40 @@ declare const FileReviewResponseSchema: z.ZodObject<{
|
|
|
33592
33777
|
appVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33593
33778
|
reviewedAt: z.ZodNullable<z.ZodString>;
|
|
33594
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>>>;
|
|
33595
33814
|
eligible: z.ZodOptional<z.ZodBoolean>;
|
|
33596
33815
|
}, z.core.$strip>;
|
|
33597
33816
|
type FileReviewResponse = z.infer<typeof FileReviewResponseSchema>;
|
|
@@ -33603,12 +33822,18 @@ declare const ListFileIssuesRequestSchema: z.ZodObject<{
|
|
|
33603
33822
|
}>>;
|
|
33604
33823
|
category: z.ZodOptional<z.ZodString>;
|
|
33605
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>;
|
|
33606
33832
|
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
33607
33833
|
}, z.core.$strip>;
|
|
33608
33834
|
type ListFileIssuesRequest = z.infer<typeof ListFileIssuesRequestSchema>;
|
|
33609
33835
|
declare const ListFileIssuesResponseSchema: z.ZodObject<{
|
|
33610
33836
|
issues: z.ZodArray<z.ZodObject<{
|
|
33611
|
-
path: z.ZodString;
|
|
33612
33837
|
severity: z.ZodEnum<{
|
|
33613
33838
|
info: "info";
|
|
33614
33839
|
major: "major";
|
|
@@ -33617,6 +33842,30 @@ declare const ListFileIssuesResponseSchema: z.ZodObject<{
|
|
|
33617
33842
|
category: z.ZodString;
|
|
33618
33843
|
message: z.ZodString;
|
|
33619
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>;
|
|
33620
33869
|
}, z.core.$strip>>;
|
|
33621
33870
|
counts: z.ZodObject<{
|
|
33622
33871
|
total: z.ZodNumber;
|
|
@@ -33635,6 +33884,147 @@ declare const ListFileIssuesResponseSchema: z.ZodObject<{
|
|
|
33635
33884
|
}, z.core.$strip>>>;
|
|
33636
33885
|
}, z.core.$strip>;
|
|
33637
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>;
|
|
33638
34028
|
declare const MapRepoRequestSchema: z.ZodObject<{
|
|
33639
34029
|
path: z.ZodOptional<z.ZodString>;
|
|
33640
34030
|
}, z.core.$strip>;
|
|
@@ -34350,6 +34740,9 @@ declare const GezelConfigSchema: z.ZodObject<{
|
|
|
34350
34740
|
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
34351
34741
|
acquiredAt: z.ZodOptional<z.ZodString>;
|
|
34352
34742
|
}, z.core.$strip>>;
|
|
34743
|
+
oauthClients: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
34744
|
+
clientId: z.ZodString;
|
|
34745
|
+
}, z.core.$strip>>>;
|
|
34353
34746
|
openaiApiKey: z.ZodOptional<z.ZodString>;
|
|
34354
34747
|
openaiOrganization: z.ZodOptional<z.ZodString>;
|
|
34355
34748
|
anthropicApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -35234,6 +35627,9 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
35234
35627
|
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
35235
35628
|
acquiredAt: z.ZodOptional<z.ZodString>;
|
|
35236
35629
|
}, z.core.$strip>>;
|
|
35630
|
+
oauthClients: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35631
|
+
clientId: z.ZodString;
|
|
35632
|
+
}, z.core.$strip>>>;
|
|
35237
35633
|
openaiApiKey: z.ZodOptional<z.ZodString>;
|
|
35238
35634
|
openaiOrganization: z.ZodOptional<z.ZodString>;
|
|
35239
35635
|
anthropicApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -38624,6 +39020,11 @@ declare const ListProjectsResponseSchema: z.ZodObject<{
|
|
|
38624
39020
|
artifacts: z.ZodOptional<z.ZodBoolean>;
|
|
38625
39021
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
38626
39022
|
}, z.core.$strict>>;
|
|
39023
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
39024
|
+
auto: "auto";
|
|
39025
|
+
allow: "allow";
|
|
39026
|
+
deny: "deny";
|
|
39027
|
+
}>>;
|
|
38627
39028
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
38628
39029
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
38629
39030
|
plan: "plan";
|
|
@@ -38631,6 +39032,12 @@ declare const ListProjectsResponseSchema: z.ZodObject<{
|
|
|
38631
39032
|
reviewed: "reviewed";
|
|
38632
39033
|
full: "full";
|
|
38633
39034
|
}>>;
|
|
39035
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39036
|
+
default: "default";
|
|
39037
|
+
plan: "plan";
|
|
39038
|
+
acceptEdits: "acceptEdits";
|
|
39039
|
+
bypassPermissions: "bypassPermissions";
|
|
39040
|
+
}>>;
|
|
38634
39041
|
status: z.ZodOptional<z.ZodEnum<{
|
|
38635
39042
|
readonly: "readonly";
|
|
38636
39043
|
active: "active";
|
|
@@ -38698,6 +39105,11 @@ declare const UpdateProjectRequestSchema: z.ZodObject<{
|
|
|
38698
39105
|
url: z.ZodOptional<z.ZodString>;
|
|
38699
39106
|
branch: z.ZodOptional<z.ZodString>;
|
|
38700
39107
|
}, z.core.$strip>]>>;
|
|
39108
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
39109
|
+
auto: "auto";
|
|
39110
|
+
allow: "allow";
|
|
39111
|
+
deny: "deny";
|
|
39112
|
+
}>>;
|
|
38701
39113
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
38702
39114
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
38703
39115
|
plan: "plan";
|
|
@@ -38705,6 +39117,12 @@ declare const UpdateProjectRequestSchema: z.ZodObject<{
|
|
|
38705
39117
|
reviewed: "reviewed";
|
|
38706
39118
|
full: "full";
|
|
38707
39119
|
}>>;
|
|
39120
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39121
|
+
default: "default";
|
|
39122
|
+
plan: "plan";
|
|
39123
|
+
acceptEdits: "acceptEdits";
|
|
39124
|
+
bypassPermissions: "bypassPermissions";
|
|
39125
|
+
}>>;
|
|
38708
39126
|
nudgeConfig: z.ZodOptional<z.ZodObject<{
|
|
38709
39127
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
38710
39128
|
rapidIntervalMs: z.ZodOptional<z.ZodNumber>;
|
|
@@ -38886,6 +39304,11 @@ declare const CreateTypedProjectResponseSchema: z.ZodObject<{
|
|
|
38886
39304
|
artifacts: z.ZodOptional<z.ZodBoolean>;
|
|
38887
39305
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
38888
39306
|
}, z.core.$strict>>;
|
|
39307
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
39308
|
+
auto: "auto";
|
|
39309
|
+
allow: "allow";
|
|
39310
|
+
deny: "deny";
|
|
39311
|
+
}>>;
|
|
38889
39312
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
38890
39313
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
38891
39314
|
plan: "plan";
|
|
@@ -38893,6 +39316,12 @@ declare const CreateTypedProjectResponseSchema: z.ZodObject<{
|
|
|
38893
39316
|
reviewed: "reviewed";
|
|
38894
39317
|
full: "full";
|
|
38895
39318
|
}>>;
|
|
39319
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39320
|
+
default: "default";
|
|
39321
|
+
plan: "plan";
|
|
39322
|
+
acceptEdits: "acceptEdits";
|
|
39323
|
+
bypassPermissions: "bypassPermissions";
|
|
39324
|
+
}>>;
|
|
38896
39325
|
status: z.ZodOptional<z.ZodEnum<{
|
|
38897
39326
|
readonly: "readonly";
|
|
38898
39327
|
active: "active";
|
|
@@ -39027,6 +39456,11 @@ declare const ProjectResponseSchema: z.ZodObject<{
|
|
|
39027
39456
|
artifacts: z.ZodOptional<z.ZodBoolean>;
|
|
39028
39457
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
39029
39458
|
}, z.core.$strict>>;
|
|
39459
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
39460
|
+
auto: "auto";
|
|
39461
|
+
allow: "allow";
|
|
39462
|
+
deny: "deny";
|
|
39463
|
+
}>>;
|
|
39030
39464
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
39031
39465
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39032
39466
|
plan: "plan";
|
|
@@ -39034,6 +39468,12 @@ declare const ProjectResponseSchema: z.ZodObject<{
|
|
|
39034
39468
|
reviewed: "reviewed";
|
|
39035
39469
|
full: "full";
|
|
39036
39470
|
}>>;
|
|
39471
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39472
|
+
default: "default";
|
|
39473
|
+
plan: "plan";
|
|
39474
|
+
acceptEdits: "acceptEdits";
|
|
39475
|
+
bypassPermissions: "bypassPermissions";
|
|
39476
|
+
}>>;
|
|
39037
39477
|
status: z.ZodOptional<z.ZodEnum<{
|
|
39038
39478
|
readonly: "readonly";
|
|
39039
39479
|
active: "active";
|
|
@@ -39144,6 +39584,11 @@ declare const InstallPackageResponseSchema: z.ZodObject<{
|
|
|
39144
39584
|
artifacts: z.ZodOptional<z.ZodBoolean>;
|
|
39145
39585
|
map: z.ZodOptional<z.ZodBoolean>;
|
|
39146
39586
|
}, z.core.$strict>>;
|
|
39587
|
+
managedWorkspaceWritePolicy: z.ZodOptional<z.ZodEnum<{
|
|
39588
|
+
auto: "auto";
|
|
39589
|
+
allow: "allow";
|
|
39590
|
+
deny: "deny";
|
|
39591
|
+
}>>;
|
|
39147
39592
|
allowGezelWrites: z.ZodOptional<z.ZodBoolean>;
|
|
39148
39593
|
codexPermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39149
39594
|
plan: "plan";
|
|
@@ -39151,6 +39596,12 @@ declare const InstallPackageResponseSchema: z.ZodObject<{
|
|
|
39151
39596
|
reviewed: "reviewed";
|
|
39152
39597
|
full: "full";
|
|
39153
39598
|
}>>;
|
|
39599
|
+
claudePermissionMode: z.ZodOptional<z.ZodEnum<{
|
|
39600
|
+
default: "default";
|
|
39601
|
+
plan: "plan";
|
|
39602
|
+
acceptEdits: "acceptEdits";
|
|
39603
|
+
bypassPermissions: "bypassPermissions";
|
|
39604
|
+
}>>;
|
|
39154
39605
|
status: z.ZodOptional<z.ZodEnum<{
|
|
39155
39606
|
readonly: "readonly";
|
|
39156
39607
|
active: "active";
|
|
@@ -41107,8 +41558,8 @@ declare const WorkspaceIndexStatusSchema: z.ZodObject<{
|
|
|
41107
41558
|
state: z.ZodEnum<{
|
|
41108
41559
|
never: "never";
|
|
41109
41560
|
disabled: "disabled";
|
|
41110
|
-
fresh: "fresh";
|
|
41111
41561
|
stale: "stale";
|
|
41562
|
+
fresh: "fresh";
|
|
41112
41563
|
indexing: "indexing";
|
|
41113
41564
|
}>;
|
|
41114
41565
|
meta: z.ZodOptional<z.ZodObject<{
|
|
@@ -45686,6 +46137,7 @@ declare const ProjectTypePreviewReadSchema: z.ZodObject<{
|
|
|
45686
46137
|
type ProjectTypePreviewRead = z.infer<typeof ProjectTypePreviewReadSchema>;
|
|
45687
46138
|
declare const ProjectTypePagesSchema: z.ZodObject<{
|
|
45688
46139
|
entry: z.ZodString;
|
|
46140
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
45689
46141
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45690
46142
|
source: z.ZodEnum<{
|
|
45691
46143
|
type: "type";
|
|
@@ -45792,6 +46244,7 @@ declare const ProjectTypeVersionManifestSchema: z.ZodObject<{
|
|
|
45792
46244
|
}, z.core.$strip>>>;
|
|
45793
46245
|
pages: z.ZodOptional<z.ZodObject<{
|
|
45794
46246
|
entry: z.ZodString;
|
|
46247
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
45795
46248
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45796
46249
|
source: z.ZodEnum<{
|
|
45797
46250
|
type: "type";
|
|
@@ -45884,6 +46337,7 @@ declare const ProjectTypeManifestSchema: z.ZodObject<{
|
|
|
45884
46337
|
}, z.core.$strip>>>;
|
|
45885
46338
|
pages: z.ZodOptional<z.ZodObject<{
|
|
45886
46339
|
entry: z.ZodString;
|
|
46340
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
45887
46341
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45888
46342
|
source: z.ZodEnum<{
|
|
45889
46343
|
type: "type";
|
|
@@ -46002,6 +46456,7 @@ declare const ConnectorTypeVersionManifestSchema: z.ZodObject<{
|
|
|
46002
46456
|
mirror: "mirror";
|
|
46003
46457
|
window: "window";
|
|
46004
46458
|
}>>;
|
|
46459
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
46005
46460
|
notes: z.ZodOptional<z.ZodString>;
|
|
46006
46461
|
schemaVersion: z.ZodLiteral<1>;
|
|
46007
46462
|
version: z.ZodString;
|
|
@@ -46038,6 +46493,7 @@ declare const ConnectorTypeManifestSchema: z.ZodObject<{
|
|
|
46038
46493
|
mirror: "mirror";
|
|
46039
46494
|
window: "window";
|
|
46040
46495
|
}>>;
|
|
46496
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
46041
46497
|
notes: z.ZodOptional<z.ZodString>;
|
|
46042
46498
|
schemaVersion: z.ZodLiteral<1>;
|
|
46043
46499
|
kind: z.ZodLiteral<"connector-type">;
|
|
@@ -49199,6 +49655,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
49199
49655
|
}, z.core.$strip>>>;
|
|
49200
49656
|
pages: z.ZodOptional<z.ZodObject<{
|
|
49201
49657
|
entry: z.ZodString;
|
|
49658
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
49202
49659
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
49203
49660
|
source: z.ZodEnum<{
|
|
49204
49661
|
type: "type";
|
|
@@ -49288,6 +49745,7 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
49288
49745
|
mirror: "mirror";
|
|
49289
49746
|
window: "window";
|
|
49290
49747
|
}>>;
|
|
49748
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
49291
49749
|
notes: z.ZodOptional<z.ZodString>;
|
|
49292
49750
|
schemaVersion: z.ZodLiteral<1>;
|
|
49293
49751
|
kind: z.ZodLiteral<"connector-type">;
|
|
@@ -51210,6 +51668,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
51210
51668
|
}, z.core.$strip>>>;
|
|
51211
51669
|
pages: z.ZodOptional<z.ZodObject<{
|
|
51212
51670
|
entry: z.ZodString;
|
|
51671
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
51213
51672
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51214
51673
|
source: z.ZodEnum<{
|
|
51215
51674
|
type: "type";
|
|
@@ -51299,6 +51758,7 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
51299
51758
|
mirror: "mirror";
|
|
51300
51759
|
window: "window";
|
|
51301
51760
|
}>>;
|
|
51761
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
51302
51762
|
notes: z.ZodOptional<z.ZodString>;
|
|
51303
51763
|
schemaVersion: z.ZodLiteral<1>;
|
|
51304
51764
|
kind: z.ZodLiteral<"connector-type">;
|
|
@@ -53207,6 +53667,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
53207
53667
|
}, z.core.$strip>>>;
|
|
53208
53668
|
pages: z.ZodOptional<z.ZodObject<{
|
|
53209
53669
|
entry: z.ZodString;
|
|
53670
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
53210
53671
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53211
53672
|
source: z.ZodEnum<{
|
|
53212
53673
|
type: "type";
|
|
@@ -53296,6 +53757,7 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
53296
53757
|
mirror: "mirror";
|
|
53297
53758
|
window: "window";
|
|
53298
53759
|
}>>;
|
|
53760
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
53299
53761
|
notes: z.ZodOptional<z.ZodString>;
|
|
53300
53762
|
schemaVersion: z.ZodLiteral<1>;
|
|
53301
53763
|
kind: z.ZodLiteral<"connector-type">;
|
|
@@ -55204,6 +55666,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
55204
55666
|
}, z.core.$strip>>>;
|
|
55205
55667
|
pages: z.ZodOptional<z.ZodObject<{
|
|
55206
55668
|
entry: z.ZodString;
|
|
55669
|
+
api: z.ZodOptional<z.ZodLiteral<1>>;
|
|
55207
55670
|
reads: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
55208
55671
|
source: z.ZodEnum<{
|
|
55209
55672
|
type: "type";
|
|
@@ -55293,6 +55756,7 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
55293
55756
|
mirror: "mirror";
|
|
55294
55757
|
window: "window";
|
|
55295
55758
|
}>>;
|
|
55759
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
55296
55760
|
notes: z.ZodOptional<z.ZodString>;
|
|
55297
55761
|
schemaVersion: z.ZodLiteral<1>;
|
|
55298
55762
|
kind: z.ZodLiteral<"connector-type">;
|
|
@@ -57789,6 +58253,323 @@ declare const DismissSuggestedWorkRequestSchema: z.ZodObject<{
|
|
|
57789
58253
|
}, z.core.$strip>;
|
|
57790
58254
|
type DismissSuggestedWorkRequest = z.infer<typeof DismissSuggestedWorkRequestSchema>;
|
|
57791
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
|
+
|
|
57792
58573
|
declare const PreviewSourceSchema: z.ZodEnum<{
|
|
57793
58574
|
type: "type";
|
|
57794
58575
|
workspace: "workspace";
|
|
@@ -59540,4 +60321,4 @@ declare const HandboekHowDoIResponseSchema: z.ZodObject<{
|
|
|
59540
60321
|
}, z.core.$strip>;
|
|
59541
60322
|
type HandboekHowDoIResponse = z.infer<typeof HandboekHowDoIResponseSchema>;
|
|
59542
60323
|
|
|
59543
|
-
export { ArchiveExtractRequestSchema as $, type AdvanceWhen as A, resolveProfileChain as A0, resolveProjectTypeId as A1, resolveSteps as A2, slugifyStepId as A3, spawnsChildren as A4, stepInsertionIndex as A5, taskRef as A6, tierAtLeast as A7, tierRank as A8, uniqueStepId as A9, unmetConnectors as Aa, unmetCraftbookRequirements as Ab, unmetToolsets as Ac, validateCraftbookGraph as Ad, validateCraftbookScriptRefs as Ae, validateScriptInput as Af, xpForLevel as Ag, AnswerQuestionRequestSchema as B, type CompassRegion as C, DeliverableKindSchema as D, type AppendTaskNoteRequest as E, type FileContextResponse as F, type GezelConfig as G, AppendTaskNoteRequestSchema as H, type AppendTaskNoteResponse as I, AppendTaskNoteResponseSchema as J, type AppliedProjectType as K, AppliedProjectTypeSchema as L, type MapDistrict as M, type NewCraftbookStep as N, type Outcome as O, type Project as P, type ApplyPatchToProjectWorkspaceFileRequest as Q, type Rect as R, type ScriptInputField as S, type ToolsetRuntime as T, ApplyPatchToProjectWorkspaceFileRequestSchema as U, type VillageAnchor as V, type ApplyProjectTypeRequest as W, ApplyProjectTypeRequestSchema as X, type ArchiveEntry as Y, ArchiveEntrySchema as Z, type ArchiveExtractRequest as _, type VillageOverride as a, type ChannelStatus as a$, type ArchiveExtractResponse as a0, ArchiveExtractResponseSchema as a1, type ArchiveListRequest as a2, ArchiveListRequestSchema as a3, type ArchiveListResponse as a4, ArchiveListResponseSchema as a5, type ArgSpec as a6, ArgSpecSchema as a7, type AskQuestionRequest as a8, AskQuestionRequestSchema as a9, type BehaviorId as aA, BehaviorIdSchema as aB, type BinaryDocumentCheck as aC, BinaryDocumentCheckSchema as aD, CANONICAL_PROFILES as aE, CRAFTBOOK_ROLE_META as aF, CRAFTBOOK_SCRIPTS_MAX_COUNT as aG, CRAFTBOOK_SCRIPTS_TOTAL_MAX_BYTES as aH, CRAFTBOOK_SCRIPT_MAX_BYTES as aI, CRAFTBOOK_TEST_FILENAME as aJ, CRAFTBOOK_TEST_SCHEMA_VERSION as aK, type CancelCodeReviewResponse as aL, CancelCodeReviewResponseSchema as aM, type CatalogItemDetail as aN, CatalogItemDetailSchema as aO, type CatalogItemIdentity as aP, CatalogItemIdentitySchema as aQ, type CatalogItemManifest as aR, CatalogItemManifestSchema as aS, type CatalogItemSummary as aT, CatalogItemSummarySchema as aU, type CatalogItemVersionInfo as aV, CatalogItemVersionInfoSchema as aW, type CatalogKind as aX, CatalogKindSchema as aY, type ChannelName as aZ, ChannelNameSchema as a_, type AskQuestionResponse as aa, AskQuestionResponseSchema as ab, type AudioCatalogModel as ac, AudioCatalogModelSchema as ad, type AudioEngineHealth as ae, AudioEngineHealthSchema as af, type AudioEngineStatusResponse as ag, AudioEngineStatusResponseSchema as ah, type AudioModelPullEvent as ai, AudioModelPullEventSchema as aj, type AudioSynthesizeMeta as ak, AudioSynthesizeMetaSchema as al, type AudioSynthesizeRequest as am, AudioSynthesizeRequestSchema as an, type AudioSynthesizeResponse as ao, AudioSynthesizeResponseSchema as ap, type AudioTranscribeRequest as aq, AudioTranscribeRequestSchema as ar, type AudioTranscribeResponse as as, AudioTranscribeResponseSchema as at, type AudioTranscribeSegment as au, AudioTranscribeSegmentSchema as av, type AudioVoice as aw, AudioVoiceSchema as ax, type BehaviorEntry as ay, BehaviorEntrySchema as az, type MapStreet as b, CompleteStepGateInfoSchema as b$, ChannelStatusSchema as b0, type ChannelsConfig as b1, ChannelsConfigSchema as b2, type ChatHistoryResponse as b3, ChatHistoryResponseSchema as b4, type ChatModelCategory as b5, ChatModelCategorySchema as b6, type ChatModelDs4Source as b7, ChatModelDs4SourceSchema as b8, type ChatModelIdentity as b9, type CodeReviewResponse as bA, CodeReviewResponseSchema as bB, CodeReviewSchema as bC, type CodeReviewStatus as bD, CodeReviewStatusSchema as bE, type CodeSymbol as bF, CodeSymbolSchema as bG, type CodexPermissionMode as bH, type CodexPermissionModeCompat as bI, CodexPermissionModeCompatSchema as bJ, CodexPermissionModeSchema as bK, type CodexSetupModelOption as bL, CodexSetupModelOptionSchema as bM, type CodexSetupState as bN, CodexSetupStateSchema as bO, type CodexSetupStatusResponse as bP, CodexSetupStatusResponseSchema as bQ, type CommandApprovalInputFile as bR, CommandApprovalInputFileSchema as bS, type CommandApprovalIntent as bT, CommandApprovalIntentSchema as bU, type CommandApprovalScope as bV, CommandApprovalScopeSchema as bW, type CommandShape as bX, CommandShapeSchema as bY, CompassRegionSchema as bZ, type CompleteStepGateInfo as b_, ChatModelIdentitySchema as ba, type ChatModelLlamaCppSource as bb, ChatModelLlamaCppSourceSchema as bc, type ChatModelManifest as bd, ChatModelManifestSchema as be, type ChatModelMlxSource as bf, ChatModelMlxSourceSchema as bg, type ChatModelOllamaSource as bh, ChatModelOllamaSourceSchema as bi, type ChatModelTuning as bj, type ChatModelTuningBase as bk, ChatModelTuningBaseSchema as bl, ChatModelTuningSchema as bm, type ChatModelVersionManifest as bn, ChatModelVersionManifestSchema as bo, type ChatSession as bp, ChatSessionSchema as bq, type ChatSessionSummary as br, ChatSessionSummarySchema as bs, type CodeReview as bt, type CodeReviewKind as bu, CodeReviewKindSchema as bv, type CodeReviewManifest as bw, CodeReviewManifestSchema as bx, type CodeReviewRecord as by, CodeReviewRecordSchema as bz, type MapPlaza as c, type CraftbookTestRubric as c$, type CompleteStepRequest as c0, CompleteStepRequestSchema as c1, type CompleteStepResponse as c2, CompleteStepResponseSchema as c3, type ConfigureCodexRequest as c4, ConfigureCodexRequestSchema as c5, type ConnectorTypeIdentity as c6, ConnectorTypeIdentitySchema as c7, type ConnectorTypeManifest as c8, ConnectorTypeManifestSchema as c9, CraftbookRunModesSchema as cA, CraftbookSchema as cB, type CraftbookScripts as cC, CraftbookScriptsSchema as cD, type CraftbookSpawn as cE, CraftbookSpawnSchema as cF, CraftbookStepSchema as cG, type CraftbookSuggestion as cH, CraftbookSuggestionSchema as cI, type CraftbookSummary as cJ, CraftbookSummarySchema as cK, type CraftbookTemplateIdentity as cL, CraftbookTemplateIdentitySchema as cM, type CraftbookTemplateManifest as cN, CraftbookTemplateManifestSchema as cO, type CraftbookTemplateVersionManifest as cP, CraftbookTemplateVersionManifestSchema as cQ, type CraftbookTestCheck as cR, CraftbookTestCheckSchema as cS, type CraftbookTestDeliverable as cT, CraftbookTestDeliverableSchema as cU, type CraftbookTestFixtureFile as cV, CraftbookTestFixtureFileSchema as cW, type CraftbookTestHistoryExpectation as cX, CraftbookTestHistoryExpectationSchema as cY, type CraftbookTestMockExpectation as cZ, CraftbookTestMockExpectationSchema as c_, type ConnectorTypeVersionManifest as ca, ConnectorTypeVersionManifestSchema as cb, type CopilotAvailability as cc, CopilotAvailabilitySchema as cd, type CopilotLoginEvent as ce, CopilotLoginEventSchema as cf, type CopyArtifactToWorkspaceRequest as cg, CopyArtifactToWorkspaceRequestSchema as ch, type CopyArtifactToWorkspaceResponse as ci, CopyArtifactToWorkspaceResponseSchema as cj, type CosmeticProposal as ck, CosmeticProposalSchema as cl, type CraftbookBasedOn as cm, CraftbookBasedOnSchema as cn, type CraftbookBranch as co, CraftbookBranchSchema as cp, type CraftbookConnectorNeed as cq, CraftbookConnectorNeedSchema as cr, type CraftbookRequirement as cs, type CraftbookRequirementContext as ct, CraftbookRequirementSchema as cu, type CraftbookResponse as cv, CraftbookResponseSchema as cw, type CraftbookRole as cx, CraftbookRoleSchema as cy, type CraftbookRunModes as cz, type MapBuilding as d, type DiscoveredInstruction as d$, CraftbookTestRubricSchema as d0, type CraftbookTestSetup as d1, CraftbookTestSetupSchema as d2, type CraftbookTestSpec as d3, CraftbookTestSpecSchema as d4, type CraftbookTestSuccess as d5, CraftbookTestSuccessSchema as d6, type CraftbookTestWorker as d7, CraftbookTestWorkerSchema as d8, type CraftbookToolsetNeed as d9, CredentialCapabilitySchema as dA, type CustomMcpImportWarning as dB, CustomMcpImportWarningSchema as dC, DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS as dD, DEFAULT_TUNING_PROFILE_ID as dE, type DeclineGrowthLevelUpRequest as dF, DeclineGrowthLevelUpRequestSchema as dG, type DeclinedProposalRecord as dH, DeclinedProposalRecordSchema as dI, type DelegateSecurityFindingRequest as dJ, DelegateSecurityFindingRequestSchema as dK, type DelegateSecurityFindingResponse as dL, DelegateSecurityFindingResponseSchema as dM, type DescribeFolderRequest as dN, DescribeFolderRequestSchema as dO, type DescribeFolderResponse as dP, DescribeFolderResponseSchema as dQ, type DeviceSafetyPolicyConfig as dR, DeviceSafetyPolicySchema as dS, type DiffFilesRequest as dT, DiffFilesRequestSchema as dU, type DiffFilesResponse as dV, DiffFilesResponseSchema as dW, type DisableSuggestedWorkRequest as dX, DisableSuggestedWorkRequestSchema as dY, type DiscoveredCommand as dZ, DiscoveredCommandSchema as d_, CraftbookToolsetNeedSchema as da, type CreateChatSessionRequest as db, CreateChatSessionRequestSchema as dc, type CreateCraftbookRequest as dd, CreateCraftbookRequestSchema as de, type CreateDocumentFolderRequest as df, CreateDocumentFolderRequestSchema as dg, type CreateGezelRequest as dh, CreateGezelRequestSchema as di, type CreatePreviewCapabilityRequest as dj, CreatePreviewCapabilityRequestSchema as dk, type CreatePreviewCapabilityResponse as dl, CreatePreviewCapabilityResponseSchema as dm, type CreateProjectRequest as dn, CreateProjectRequestSchema as dp, type CreateScriptRequest as dq, CreateScriptRequestSchema as dr, type CreateScriptResponse as ds, CreateScriptResponseSchema as dt, type CreateTaskRequest as du, CreateTaskRequestSchema as dv, type CreateTypedProjectRequest as dw, CreateTypedProjectRequestSchema as dx, type CreateTypedProjectResponse as dy, CreateTypedProjectResponseSchema as dz, type ScriptOutputField as e, FileMapRequestSchema as e$, DiscoveredInstructionSchema as e0, type DiscoveredSkill as e1, DiscoveredSkillSchema as e2, type DismissSuggestedWorkRequest as e3, DismissSuggestedWorkRequestSchema as e4, type DocumentExportOptions as e5, DocumentExportOptionsSchema as e6, type DocumentMediaExportRequest as e7, DocumentMediaExportRequestSchema as e8, type DocumentMediaExportSource as e9, ErrorResponseSchema as eA, type EvalHints as eB, EvalHintsSchema as eC, type ExpectedDeliverable as eD, ExpectedDeliverableSchema as eE, type ExternalFolders as eF, ExternalFoldersSchema as eG, type FetchDiffRequest as eH, FetchDiffRequestSchema as eI, type FetchDiffResponse as eJ, FetchDiffResponseSchema as eK, type FetchRepoRequest as eL, FetchRepoRequestSchema as eM, type FetchRepoResponse as eN, FetchRepoResponseSchema as eO, type FetchUrlRequest as eP, FetchUrlRequestSchema as eQ, type FetchUrlResponse as eR, FetchUrlResponseSchema as eS, type FileContextFinding as eT, FileContextFindingSchema as eU, type FileContextImporter as eV, FileContextImporterSchema as eW, type FileContextRequest as eX, FileContextRequestSchema as eY, FileContextResponseSchema as eZ, type FileMapRequest as e_, DocumentMediaExportSourceSchema as ea, type DocumentSearchResult as eb, DocumentSearchResultSchema as ec, type DraftScriptRequest as ed, DraftScriptRequestSchema as ee, type DraftScriptResponse as ef, DraftScriptResponseSchema as eg, type DriveIndexEnrichmentRequest as eh, DriveIndexEnrichmentRequestSchema as ei, type DriveIndexEnrichmentResponse as ej, DriveIndexEnrichmentResponseSchema as ek, type DrySamplerConfig as el, DrySamplerSchema as em, type EnableSuggestedWorkRequest as en, EnableSuggestedWorkRequestSchema as eo, type EngineConfig as ep, EngineConfigSchema as eq, type EnsureGezelRequest as er, EnsureGezelRequestSchema as es, type EnsureGezelResponse as et, EnsureGezelResponseSchema as eu, type Entity as ev, type EntityId as ew, EntityIdSchema as ex, EntitySchema as ey, type ErrorResponse as ez, type ScriptMeta as f, GezelIconHistoryResponseSchema as f$, type FileMapResponse as f0, FileMapResponseSchema as f1, type FileMapScope as f2, FileMapScopeSchema as f3, type FileReviewIssue as f4, FileReviewIssueSchema as f5, type FileReviewIssueSeverity as f6, FileReviewIssueSeveritySchema as f7, type FileReviewReply as f8, FileReviewReplySchema as f9, type FitnessCheck as fA, FitnessCheckSchema as fB, type FlagSpec as fC, FlagSpecSchema as fD, GATE_DEFAULT_MAX_ATTEMPTS as fE, type GateAttemptRecord as fF, GateCheckSchema as fG, GateScriptRefSchema as fH, type GateScriptResult as fI, GateScriptResultSchema as fJ, type GateSpec as fK, GateSpecSchema as fL, type GenerateGezelAboutRequest as fM, GenerateGezelAboutRequestSchema as fN, type GenerateGezelIconRequest as fO, GenerateGezelIconRequestSchema as fP, type GetScriptSourceResponse as fQ, GetScriptSourceResponseSchema as fR, GezelConfigSchema as fS, type GezelGrowthResponse as fT, GezelGrowthResponseSchema as fU, type GezelGrowthState as fV, GezelGrowthStateSchema as fW, type GezelGrowthSummary as fX, GezelGrowthSummarySchema as fY, GezelIconHistoryEntrySchema as fZ, type GezelIconHistoryResponse as f_, type FileReviewRequest as fa, FileReviewRequestSchema as fb, type FileReviewResponse as fc, FileReviewResponseSchema as fd, type FileReviewWire as fe, FileReviewWireSchema as ff, type FindEntityRequest as fg, FindEntityRequestSchema as fh, type FindEntityResponse as fi, FindEntityResponseSchema as fj, type FindFilesRequest as fk, FindFilesRequestSchema as fl, type FindFilesResponse as fm, FindFilesResponseSchema as fn, type FindReferencesRequest as fo, FindReferencesRequestSchema as fp, type FindReferencesResponse as fq, FindReferencesResponseSchema as fr, type FindSimilarImagesRequest as fs, FindSimilarImagesRequestSchema as ft, type FindSimilarImagesResponse as fu, FindSimilarImagesResponseSchema as fv, type FindSymbolRequest as fw, FindSymbolRequestSchema as fx, type FindSymbolResponse as fy, FindSymbolResponseSchema as fz, type SecurityPolicy as g, GitFileDiffResponseSchema as g$, type GezelResponse as g0, GezelResponseSchema as g1, type GezelTemplateIdentity as g2, GezelTemplateIdentitySchema as g3, type GezelTemplateManifest as g4, GezelTemplateManifestSchema as g5, type GezelTemplateVersionManifest as g6, GezelTemplateVersionManifestSchema as g7, type GezmodelBundleManifest as g8, GezmodelBundleManifestSchema as g9, type GitChangesResponse as gA, GitChangesResponseSchema as gB, type GitCloneResponse as gC, GitCloneResponseSchema as gD, type GitCommitDetailResponse as gE, GitCommitDetailResponseSchema as gF, type GitCommitRequest as gG, GitCommitRequestSchema as gH, type GitCommitResponse as gI, GitCommitResponseSchema as gJ, type GitCompleteMergeRequest as gK, GitCompleteMergeRequestSchema as gL, type GitCompleteMergeResponse as gM, GitCompleteMergeResponseSchema as gN, type GitConflictFile as gO, GitConflictFileSchema as gP, type GitConflictKind as gQ, GitConflictKindSchema as gR, type GitConflictVersionsResponse as gS, GitConflictVersionsResponseSchema as gT, type GitDiscardRequest as gU, GitDiscardRequestSchema as gV, type GitDiscardResponse as gW, GitDiscardResponseSchema as gX, type GitFetchResponse as gY, GitFetchResponseSchema as gZ, type GitFileDiffResponse as g_, type GezmodelEngine as ga, GezmodelEngineSchema as gb, type GezmodelFile as gc, GezmodelFileSchema as gd, type GezmodelImportReview as ge, GezmodelImportReviewSchema as gf, type GezmodelLicense as gg, GezmodelLicenseSchema as gh, type GildeUpdateCheckOutcome as gi, GildeUpdateCheckOutcomeSchema as gj, type GildeUpdateCheckResult as gk, GildeUpdateCheckResultSchema as gl, type GildeUpdateStatusResponse as gm, GildeUpdateStatusResponseSchema as gn, type GitAbandonMergeResponse as go, GitAbandonMergeResponseSchema as gp, type GitAiMergeRequest as gq, GitAiMergeRequestSchema as gr, type GitAiMergeResponse as gs, GitAiMergeResponseSchema as gt, type GitBranchSwitchRequest as gu, GitBranchSwitchRequestSchema as gv, type GitBranchesResponse as gw, GitBranchesResponseSchema as gx, type GitChangeKind as gy, GitChangeKindSchema as gz, type ModelFitnessRecord as h, type GitWorkingChange as h$, type GitHubAuthMeta as h0, GitHubAuthMetaSchema as h1, type GitHubCheckStatusResponse as h2, GitHubCheckStatusResponseSchema as h3, type GitHubCreateCommentRequest as h4, GitHubCreateCommentRequestSchema as h5, type GitHubCreateCommentResponse as h6, GitHubCreateCommentResponseSchema as h7, type GitHubCreatePullRequest as h8, GitHubCreatePullRequestSchema as h9, GitHubRepoPreviewResponseSchema as hA, type GitHubRepoSummary as hB, GitHubRepoSummarySchema as hC, type GitHubReposResponse as hD, GitHubReposResponseSchema as hE, type GitHubWorkflowRun as hF, GitHubWorkflowRunSchema as hG, type GitLogEntry as hH, GitLogEntrySchema as hI, type GitLogResponse as hJ, GitLogResponseSchema as hK, type GitMergeStateResponse as hL, GitMergeStateResponseSchema as hM, type GitPushResponse as hN, GitPushResponseSchema as hO, type GitResolveConflictRequest as hP, GitResolveConflictRequestSchema as hQ, type GitResolveConflictResponse as hR, GitResolveConflictResponseSchema as hS, type GitStatusResponse as hT, GitStatusResponseSchema as hU, type GitSuggestMessageResponse as hV, GitSuggestMessageResponseSchema as hW, type GitSyncResponse as hX, GitSyncResponseSchema as hY, type GitSyncState as hZ, GitSyncStateSchema as h_, type GitHubCreatePullResponse as ha, GitHubCreatePullResponseSchema as hb, type GitHubCredentialSource as hc, type GitHubIdentity as hd, type GitHubIdentityResponse as he, GitHubIdentityResponseSchema as hf, GitHubIdentitySchema as hg, type GitHubLoginPollRequest as hh, GitHubLoginPollRequestSchema as hi, type GitHubLoginPollResponse as hj, GitHubLoginPollResponseSchema as hk, type GitHubLoginStartResponse as hl, GitHubLoginStartResponseSchema as hm, type GitHubPullComment as hn, GitHubPullCommentSchema as ho, type GitHubPullDetail as hp, GitHubPullDetailSchema as hq, type GitHubPullDiffResponse as hr, GitHubPullDiffResponseSchema as hs, type GitHubPullFile as ht, GitHubPullFileSchema as hu, type GitHubPullSummary as hv, GitHubPullSummarySchema as hw, type GitHubRepoPreviewRequest as hx, GitHubRepoPreviewRequestSchema as hy, type GitHubRepoPreviewResponse as hz, type GateScriptRef as i, GithubLogResponseSchema as i$, GitWorkingChangeSchema as i0, type GithubAbandonMergeResponse as i1, GithubAbandonMergeResponseSchema as i2, type GithubAiMergeRequest as i3, GithubAiMergeRequestSchema as i4, type GithubAiMergeResponse as i5, GithubAiMergeResponseSchema as i6, type GithubAuthMeta as i7, GithubAuthMetaSchema as i8, type GithubBranchSwitchRequest as i9, GithubConflictKindSchema as iA, type GithubConflictVersionsResponse as iB, GithubConflictVersionsResponseSchema as iC, type GithubCreateCommentRequest as iD, GithubCreateCommentRequestSchema as iE, type GithubCreateCommentResponse as iF, GithubCreateCommentResponseSchema as iG, type GithubCreatePullRequest as iH, GithubCreatePullRequestSchema as iI, type GithubCreatePullResponse as iJ, GithubCreatePullResponseSchema as iK, type GithubCredentialSource as iL, type GithubDiscardRequest as iM, GithubDiscardRequestSchema as iN, type GithubDiscardResponse as iO, GithubDiscardResponseSchema as iP, type GithubFetchResponse as iQ, GithubFetchResponseSchema as iR, type GithubFileDiffResponse as iS, GithubFileDiffResponseSchema as iT, type GithubIdentity as iU, type GithubIdentityResponse as iV, GithubIdentityResponseSchema as iW, GithubIdentitySchema as iX, type GithubLogEntry as iY, GithubLogEntrySchema as iZ, type GithubLogResponse as i_, GithubBranchSwitchRequestSchema as ia, type GithubBranchesResponse as ib, GithubBranchesResponseSchema as ic, type GithubChangeKind as id, GithubChangeKindSchema as ie, type GithubChangesResponse as ig, GithubChangesResponseSchema as ih, type GithubCheckStatusResponse as ii, GithubCheckStatusResponseSchema as ij, type GithubCloneResponse as ik, GithubCloneResponseSchema as il, type GithubCommitDetailResponse as im, GithubCommitDetailResponseSchema as io, type GithubCommitRequest as ip, GithubCommitRequestSchema as iq, type GithubCommitResponse as ir, GithubCommitResponseSchema as is, type GithubCompleteMergeRequest as it, GithubCompleteMergeRequestSchema as iu, type GithubCompleteMergeResponse as iv, GithubCompleteMergeResponseSchema as iw, type GithubConflictFile as ix, GithubConflictFileSchema as iy, type GithubConflictKind as iz, type ModelTier as j, HandboekAreaSchema as j$, type GithubLoginPollRequest as j0, GithubLoginPollRequestSchema as j1, type GithubLoginPollResponse as j2, GithubLoginPollResponseSchema as j3, type GithubLoginStartResponse as j4, GithubLoginStartResponseSchema as j5, type GithubMergeStateResponse as j6, GithubMergeStateResponseSchema as j7, type GithubPullComment as j8, GithubPullCommentSchema as j9, type GithubSyncResponse as jA, GithubSyncResponseSchema as jB, type GithubSyncState as jC, GithubSyncStateSchema as jD, type GithubWorkflowRun as jE, GithubWorkflowRunSchema as jF, type GithubWorkingChange as jG, GithubWorkingChangeSchema as jH, type GpuProcessMemory as jI, GpuProcessMemorySchema as jJ, type GpuProcessOwner as jK, GpuProcessOwnerSchema as jL, type GrepArtifactRequest as jM, GrepArtifactRequestSchema as jN, type GrepArtifactResponse as jO, GrepArtifactResponseSchema as jP, type GrowthEvidence as jQ, GrowthEvidenceSchema as jR, type GrowthProposal as jS, GrowthProposalSchema as jT, type GrowthSignals as jU, GrowthSignalsSchema as jV, type GzelBundleItem as jW, GzelBundleItemSchema as jX, type GzelBundleManifest as jY, GzelBundleManifestSchema as jZ, type HandboekArea as j_, type GithubPullDetail as ja, GithubPullDetailSchema as jb, type GithubPullDiffResponse as jc, GithubPullDiffResponseSchema as jd, type GithubPullFile as je, GithubPullFileSchema as jf, type GithubPullSummary as jg, GithubPullSummarySchema as jh, type GithubPushResponse as ji, GithubPushResponseSchema as jj, type GithubRepoPreviewRequest as jk, GithubRepoPreviewRequestSchema as jl, type GithubRepoPreviewResponse as jm, GithubRepoPreviewResponseSchema as jn, type GithubRepoSummary as jo, GithubRepoSummarySchema as jp, type GithubReposResponse as jq, GithubReposResponseSchema as jr, type GithubResolveConflictRequest as js, GithubResolveConflictRequestSchema as jt, type GithubResolveConflictResponse as ju, GithubResolveConflictResponseSchema as jv, type GithubStatusResponse as jw, GithubStatusResponseSchema as jx, type GithubSuggestMessageResponse as jy, GithubSuggestMessageResponseSchema as jz, type GateCheck as k, ImageModelAuxiliaryRoleSchema as k$, type HandboekArticle as k0, HandboekArticleSchema as k1, type HandboekFigure as k2, HandboekFigureSchema as k3, type HandboekHowDoIResponse as k4, HandboekHowDoIResponseSchema as k5, type HandboekNarrationResponse as k6, HandboekNarrationResponseSchema as k7, type HandboekNarrationSegment as k8, HandboekNarrationSegmentSchema as k9, HookPhaseSchema as kA, type HookResult as kB, HookResultSchema as kC, type HookSpec as kD, HookSpecSchema as kE, type HtmlLayer as kF, HtmlLayerSchema as kG, HttpsOriginSchema as kH, type ImageEngineStatusResponse as kI, ImageEngineStatusResponseSchema as kJ, type ImageExif as kK, ImageExifSchema as kL, type ImageGenerationApprovalIntent as kM, ImageGenerationApprovalIntentSchema as kN, type ImageGenerationMeta as kO, ImageGenerationMetaSchema as kP, type ImageGenerationRequest as kQ, ImageGenerationRequestSchema as kR, type ImageGenerationResponse as kS, ImageGenerationResponseSchema as kT, type ImageInputSource as kU, ImageInputSourceSchema as kV, type ImageLayer as kW, ImageLayerSchema as kX, type ImageModelAuxiliaryFile as kY, ImageModelAuxiliaryFileSchema as kZ, type ImageModelAuxiliaryRole as k_, type HandboekRenderMode as ka, HandboekRenderModeSchema as kb, type HandboekToc as kc, type HandboekTocArea as kd, HandboekTocAreaSchema as ke, type HandboekTocEntry as kf, HandboekTocEntrySchema as kg, HandboekTocSchema as kh, type HandboekTocSubcategory as ki, HandboekTocSubcategorySchema as kj, type HealthResponse as kk, HealthResponseSchema as kl, type HistoryEntry as km, HistoryEntrySchema as kn, type HistoryEvent as ko, HistoryEventEntrySchema as kp, type HistoryEventKind as kq, HistoryEventKindSchema as kr, HistoryEventSchema as ks, type HistoryFilter as kt, HistoryFilterSchema as ku, type HistorySessionEntry as kv, HistorySessionEntrySchema as kw, type HookDecision as kx, HookDecisionSchema as ky, type HookPhase as kz, type StepGate as l, type KeurmeesterCaseClosed as l$, type ImageModelCategory as l0, ImageModelCategorySchema as l1, type ImageModelHardwareTier as l2, ImageModelHardwareTierSchema as l3, type ImageModelIdentity as l4, ImageModelIdentitySchema as l5, type ImageModelManifest as l6, ImageModelManifestSchema as l7, type ImageModelPullEvent as l8, ImageModelPullEventSchema as l9, type InstalledImageModel as lA, InstalledImageModelSchema as lB, type InstalledPackage as lC, InstalledPackageSchema as lD, type InstalledRecognitionModel as lE, InstalledRecognitionModelSchema as lF, type InstalledToolset as lG, InstalledToolsetSchema as lH, type InstalledVideoModel as lI, InstalledVideoModelSchema as lJ, type InstructionMergeMode as lK, InstructionMergeModeSchema as lL, type InstructionSourceFile as lM, InstructionSourceFileSchema as lN, type InterruptSessionRequest as lO, InterruptSessionRequestSchema as lP, type InvokePageToolRequest as lQ, InvokePageToolRequestSchema as lR, type InvokePageToolResponse as lS, InvokePageToolResponseSchema as lT, type InvokeSessionToolRequest as lU, InvokeSessionToolRequestSchema as lV, type InvokeSessionToolResponse as lW, InvokeSessionToolResponseSchema as lX, KNOWN_PROFILE_IDS as lY, type KeurmeesterAction as lZ, KeurmeesterActionSchema as l_, type ImageModelVersionManifest as la, ImageModelVersionManifestSchema as lb, type ImageRecognition as lc, ImageRecognitionSchema as ld, type ImageStaticMeta as le, ImageStaticMetaSchema as lf, type ImportCustomMcpConfigRequest as lg, ImportCustomMcpConfigRequestSchema as lh, type ImportCustomMcpConfigResponse as li, ImportCustomMcpConfigResponseSchema as lj, type ImportProvenance as lk, ImportProvenanceSchema as ll, type ImportedAboutProvenance as lm, ImportedAboutProvenanceSchema as ln, type ImportedCraftbookProvenance as lo, ImportedCraftbookProvenanceSchema as lp, type ImportedGezelProvenance as lq, ImportedGezelProvenanceSchema as lr, type InsertAtMarkerInProjectWorkspaceFileRequest as ls, InsertAtMarkerInProjectWorkspaceFileRequestSchema as lt, type InstallPackageRequest as lu, InstallPackageRequestSchema as lv, type InstallPackageResponse as lw, InstallPackageResponseSchema as lx, type InstalledAudioModel as ly, InstalledAudioModelSchema as lz, type CraftbookStep as m, ListGithubPullFilesResponseSchema as m$, KeurmeesterCaseClosedSchema as m0, type KeurmeesterCaseOpened as m1, KeurmeesterCaseOpenedSchema as m2, type KeurmeesterCaseOutcome as m3, KeurmeesterCaseOutcomeSchema as m4, type KeurmeesterCaseRecord as m5, KeurmeesterCaseRecordSchema as m6, type KeurmeesterFailureClass as m7, KeurmeesterFailureClassSchema as m8, type KeurmeesterTriggerKind as m9, type ListCodeReviewsResponse as mA, ListCodeReviewsResponseSchema as mB, type ListCraftbooksResponse as mC, ListCraftbooksResponseSchema as mD, type ListDependenciesResponse as mE, ListDependenciesResponseSchema as mF, type ListEntityMentionsRequest as mG, ListEntityMentionsRequestSchema as mH, type ListEntityMentionsResponse as mI, ListEntityMentionsResponseSchema as mJ, type ListFileIssuesRequest as mK, ListFileIssuesRequestSchema as mL, type ListFileIssuesResponse as mM, ListFileIssuesResponseSchema as mN, type ListGezelsResponse as mO, ListGezelsResponseSchema as mP, type ListGitHubPullCommentsResponse as mQ, ListGitHubPullCommentsResponseSchema as mR, type ListGitHubPullFilesResponse as mS, ListGitHubPullFilesResponseSchema as mT, type ListGitHubPullsResponse as mU, ListGitHubPullsResponseSchema as mV, type ListGitHubWorkflowRunsResponse as mW, ListGitHubWorkflowRunsResponseSchema as mX, type ListGithubPullCommentsResponse as mY, ListGithubPullCommentsResponseSchema as mZ, type ListGithubPullFilesResponse as m_, KeurmeesterTriggerKindSchema as ma, type KeurmeesterVerdict as mb, KeurmeesterVerdictSchema as mc, type KnownProfileId as md, LEVEL_THRESHOLDS as me, type Layer as mf, LayerSchema as mg, type LegacyCodexPermissionMode as mh, LegacyCodexPermissionModeSchema as mi, type LicenseClass as mj, LicenseClassSchema as mk, LicenseMetaShape as ml, type ListActiveImagePullsResponse as mm, ListActiveImagePullsResponseSchema as mn, type ListActiveVideoPullsResponse as mo, ListActiveVideoPullsResponseSchema as mp, type ListAudioCatalogResponse as mq, ListAudioCatalogResponseSchema as mr, type ListAudioVoicesResponse as ms, ListAudioVoicesResponseSchema as mt, type ListCatalogItemVersionsResponse as mu, ListCatalogItemVersionsResponseSchema as mv, type ListCatalogItemsResponse as mw, ListCatalogItemsResponseSchema as mx, type ListChatSessionsResponse as my, ListChatSessionsResponseSchema as mz, type StepDeliverable as n, MapDistrictSchema as n$, type ListGithubPullsResponse as n0, ListGithubPullsResponseSchema as n1, type ListGithubWorkflowRunsResponse as n2, ListGithubWorkflowRunsResponseSchema as n3, type ListHistoryResponse as n4, ListHistoryResponseSchema as n5, type ListInstalledAudioModelsResponse as n6, ListInstalledAudioModelsResponseSchema as n7, type ListInstalledImageModelsResponse as n8, ListInstalledImageModelsResponseSchema as n9, type ListTasksResponse as nA, ListTasksResponseSchema as nB, type ListTerminalThreadsResponse as nC, ListTerminalThreadsResponseSchema as nD, type ListTimelineResponse as nE, ListTimelineResponseSchema as nF, type LlamaCppContextSizing as nG, type LlamaCppContextSizingResponse as nH, LlamaCppContextSizingResponseSchema as nI, LlamaCppContextSizingSchema as nJ, type LlamaCppEngineConfig as nK, LlamaCppEngineConfigSchema as nL, type LocalEngineLifecycle as nM, LocalEngineLifecycleSchema as nN, MEESTER_STATUS_HEADLINE_MAX as nO, MODEL_TIER_ORDER as nP, type MachineMemoryKind as nQ, MachineMemoryKindSchema as nR, type MachineMemoryUsage as nS, MachineMemoryUsageSchema as nT, type MapAttackSurfaceResponse as nU, MapAttackSurfaceResponseSchema as nV, type MapBlock as nW, type MapBlockHealth as nX, MapBlockHealthSchema as nY, MapBlockSchema as nZ, MapBuildingSchema as n_, type ListInstalledRecognitionModelsResponse as na, ListInstalledRecognitionModelsResponseSchema as nb, type ListInstalledVideoModelsResponse as nc, ListInstalledVideoModelsResponseSchema as nd, type ListMentionCandidatesResponse as ne, ListMentionCandidatesResponseSchema as nf, type ListModelsResponse as ng, ListModelsResponseSchema as nh, type ListPackageScriptsResponse as ni, ListPackageScriptsResponseSchema as nj, type ListProjectsForGezelResponse as nk, ListProjectsForGezelResponseSchema as nl, type ListProjectsResponse as nm, ListProjectsResponseSchema as nn, type ListQuestionsResponse as no, ListQuestionsResponseSchema as np, type ListRecognitionCatalogResponse as nq, ListRecognitionCatalogResponseSchema as nr, type ListScriptsResponse as ns, ListScriptsResponseSchema as nt, type ListSessionQueueResponse as nu, ListSessionQueueResponseSchema as nv, type ListSessionToolsResponse as nw, ListSessionToolsResponseSchema as nx, type ListTaskNotesResponse as ny, ListTaskNotesResponseSchema as nz, type Craftbook as o, type NamedScriptCapability as o$, MapPlazaSchema as o0, type MapPrChange as o1, MapPrChangeSchema as o2, type MapPrOverlay as o3, MapPrOverlaySchema as o4, type MapRepoRequest as o5, MapRepoRequestSchema as o6, type MapRepoResponse as o7, MapRepoResponseSchema as o8, type MapRoad as o9, MinGezelVersionShape as oA, type MlxRuntimeStatus as oB, MlxRuntimeStatusSchema as oC, type MockHttpRoute as oD, MockHttpRouteSchema as oE, type MockService as oF, MockServiceSchema as oG, type ModelContextOverrideUpdate as oH, ModelContextOverrideUpdateSchema as oI, type ModelContextOverridesResponse as oJ, ModelContextOverridesResponseSchema as oK, type ModelDownloadPreflightRequest as oL, ModelDownloadPreflightRequestSchema as oM, type ModelDownloadPreflightResponse as oN, ModelDownloadPreflightResponseSchema as oO, type ModelFamily as oP, ModelFamilySchema as oQ, ModelFitnessRecordSchema as oR, type ModelFitnessStatus as oS, ModelFitnessStatusSchema as oT, type ModelFitnessTrigger as oU, ModelFitnessTriggerSchema as oV, type ModelInfo as oW, ModelInfoSchema as oX, type ModelStyle as oY, ModelStyleSchema as oZ, ModelTierSchema as o_, MapRoadSchema as oa, MapStreetSchema as ob, type MapUrbanity as oc, MapUrbanitySchema as od, type McpToolInfo as oe, McpToolInfoSchema as of, type MeesterStatusAction as og, MeesterStatusActionSchema as oh, type MeesterStatusCta as oi, MeesterStatusCtaSchema as oj, type MeesterStatusModelOutput as ok, MeesterStatusModelOutputSchema as ol, type MeesterStatusReport as om, MeesterStatusReportSchema as on, type MeesterStatusResponse as oo, MeesterStatusResponseSchema as op, type MeesterStatusState as oq, MeesterStatusStateSchema as or, type MentionCandidate as os, MentionCandidateSchema as ot, type MessageGezelRequest as ou, MessageGezelRequestSchema as ov, type MessageGezelResponse as ow, MessageGezelResponseSchema as ox, type MessageImageDigest as oy, MessageImageDigestSchema as oz, type Task as p, PixelsLayerSchema as p$, NamedScriptCapabilitySchema as p0, type NativeEngineInstallStatus as p1, NativeEngineInstallStatusSchema as p2, type NativeEngineName as p3, NativeEngineNameSchema as p4, type NativeEngineResolveEvent as p5, NativeEngineResolveEventSchema as p6, type NativeEngineStatusResponse as p7, NativeEngineStatusResponseSchema as p8, NewCraftbookStepSchema as p9, NpmInstallRequestSchema as pA, NpmPackageNameSchema as pB, type NpmRegistryPackageRequest as pC, NpmRegistryPackageRequestSchema as pD, NpmRegistryVersionSchema as pE, OutcomeSchema as pF, type OutlineFileRequest as pG, OutlineFileRequestSchema as pH, type OutlineFileResponse as pI, OutlineFileResponseSchema as pJ, type PageCheckRequest as pK, PageCheckRequestSchema as pL, type PageCheckResponse as pM, PageCheckResponseSchema as pN, type ParseCraftbookTestSpecOptions as pO, type ParseCraftbookTestSpecResult as pP, type PendingImportItem as pQ, PendingImportItemSchema as pR, type PendingImports as pS, PendingImportsSchema as pT, type PendingLevelUp as pU, PendingLevelUpSchema as pV, type PendingPersona as pW, PendingPersonaSchema as pX, type PendingScript as pY, PendingScriptSchema as pZ, type PixelsLayer as p_, type NewTaskFanout as pa, NewTaskFanoutSchema as pb, type NewTaskStep as pc, NewTaskStepSchema as pd, type NightShiftBackgroundWorkBrief as pe, NightShiftBackgroundWorkBriefSchema as pf, type NightShiftCompletedTask as pg, NightShiftCompletedTaskSchema as ph, type NightShiftReport as pi, NightShiftReportSchema as pj, type NightShiftReviewIntent as pk, NightShiftReviewIntentSchema as pl, type NightShiftReviewResponse as pm, NightShiftReviewResponseSchema as pn, type NightShiftTaskBrief as po, NightShiftTaskBriefSchema as pp, type NightShiftTasksResponse as pq, NightShiftTasksResponseSchema as pr, type NodeScriptPassesCheck as ps, NodeScriptPassesCheckSchema as pt, type NormalizedStepGate as pu, type NpmInstallApprovalDecision as pv, NpmInstallApprovalDecisionSchema as pw, type NpmInstallApprovalPackage as px, NpmInstallApprovalPackageSchema as py, type NpmInstallRequest as pz, type AcceptGrowthProposalRequest as q, type ProjectTypeToolsetRef as q$, type PreviewLogEntry as q0, PreviewLogEntrySchema as q1, type PreviewSource as q2, PreviewSourceSchema as q3, type ProfileKind as q4, type ProfileMeta as q5, type ProjectAboutPreviewRequest as q6, ProjectAboutPreviewRequestSchema as q7, type ProjectAboutPreviewResponse as q8, ProjectAboutPreviewResponseSchema as q9, type ProjectNudgeState as qA, ProjectNudgeStateSchema as qB, type ProjectResponse as qC, ProjectResponseSchema as qD, ProjectSchema as qE, type ProjectTabVisibility as qF, ProjectTabVisibilitySchema as qG, type ProjectTypeCategory as qH, ProjectTypeCategorySchema as qI, type ProjectTypeGezelRef as qJ, ProjectTypeGezelSchema as qK, type ProjectTypeIdentity as qL, ProjectTypeIdentitySchema as qM, type ProjectTypeManifest as qN, ProjectTypeManifestSchema as qO, type ProjectTypePages as qP, ProjectTypePagesSchema as qQ, type ProjectTypePreviewRead as qR, ProjectTypePreviewReadSchema as qS, type ProjectTypeProvenance as qT, ProjectTypeProvenanceSchema as qU, type ProjectTypeSchedule as qV, ProjectTypeScheduleSchema as qW, type ProjectTypeTool as qX, type ProjectTypeToolReaction as qY, ProjectTypeToolReactionSchema as qZ, ProjectTypeToolSchema as q_, type ProjectActivity as qa, ProjectActivitySchema as qb, type ProjectApprovalsResponse as qc, ProjectApprovalsResponseSchema as qd, type ProjectConnectorBinding as qe, ProjectConnectorBindingSchema as qf, type ProjectCraftbookProvenance as qg, ProjectCraftbookProvenanceSchema as qh, type ProjectDetail as qi, ProjectDetailSchema as qj, type ProjectFileEntry as qk, ProjectFileEntrySchema as ql, type ProjectFolderPreviewRequest as qm, ProjectFolderPreviewRequestSchema as qn, type ProjectFolderPreviewResponse as qo, ProjectFolderPreviewResponseSchema as qp, type ProjectForGezel as qq, ProjectForGezelSchema as qr, type ProjectGitHub as qs, ProjectGitHubSchema as qt, type ProjectGithub as qu, ProjectGithubSchema as qv, type ProjectLocalConfig as qw, ProjectLocalConfigSchema as qx, type ProjectNudgeConfig as qy, ProjectNudgeConfigSchema as qz, AcceptGrowthProposalRequestSchema as r, type ReferencePreviewRequest as r$, ProjectTypeToolsetSchema as r0, type ProjectTypeVersionManifest as r1, ProjectTypeVersionManifestSchema as r2, type PrometheusAlertsCheck as r3, PrometheusAlertsCheckSchema as r4, type PromptTags as r5, PromptTagsSchema as r6, type Question as r7, type QuestionAnswer as r8, QuestionAnswerSchema as r9, ReasoningBlockSchema as rA, type ReasoningFormat as rB, ReasoningFormatSchema as rC, type RecentTab as rD, type RecentTabArea as rE, RecentTabAreaSchema as rF, RecentTabSchema as rG, RecoMetaShape as rH, type RecognitionCatalogEntry as rI, RecognitionCatalogEntrySchema as rJ, type RecognitionHealth as rK, RecognitionHealthSchema as rL, type RecognitionMode as rM, type RecognitionModeRequest as rN, RecognitionModeRequestSchema as rO, RecognitionModeSchema as rP, type RecognitionPullEvent as rQ, RecognitionPullEventSchema as rR, type RecognitionRequest as rS, RecognitionRequestSchema as rT, type RecognitionResponse as rU, RecognitionResponseSchema as rV, RectSchema as rW, type ReferenceFileLocationRequest as rX, ReferenceFileLocationRequestSchema as rY, type ReferenceFileLocationResponse as rZ, ReferenceFileLocationResponseSchema as r_, type QuestionIntent as ra, QuestionIntentSchema as rb, QuestionSchema as rc, type QueuedMessage as rd, QueuedMessageSchema as re, type ReadArtifactSliceOpts as rf, ReadArtifactSliceOptsSchema as rg, type ReadArtifactSliceResponse as rh, ReadArtifactSliceResponseSchema as ri, type ReadDocAsMarkdownRequest as rj, ReadDocAsMarkdownRequestSchema as rk, type ReadDocAsMarkdownResponse as rl, ReadDocAsMarkdownResponseSchema as rm, type ReadImageBase64Request as rn, ReadImageBase64RequestSchema as ro, type ReadImageBase64Response as rp, ReadImageBase64ResponseSchema as rq, type ReadSymbolRequest as rr, ReadSymbolRequestSchema as rs, type ReadSymbolResponse as rt, ReadSymbolResponseSchema as ru, type ReadWorkspaceFilesRequest as rv, ReadWorkspaceFilesRequestSchema as rw, type ReadWorkspaceFilesResponse as rx, ReadWorkspaceFilesResponseSchema as ry, type ReasoningBlock as rz, type ActiveImagePull as s, type RunTerminalCommandResponse as s$, ReferencePreviewRequestSchema as s0, type ReferencePreviewResponse as s1, ReferencePreviewResponseSchema as s2, type RemoteServingConfig as s3, RemoteServingConfigSchema as s4, type RenameDocumentRequest as s5, RenameDocumentRequestSchema as s6, type RenameGezelRequest as s7, RenameGezelRequestSchema as s8, type RenderImageRequest as s9, ResolveSecurityFindingResponseSchema as sA, type RevertGezelIconRequest as sB, RevertGezelIconRequestSchema as sC, type RewriteTextContext as sD, RewriteTextContextSchema as sE, type RewriteTextRequest as sF, RewriteTextRequestSchema as sG, type RewriteTextResponse as sH, RewriteTextResponseSchema as sI, type RunGitRequest as sJ, RunGitRequestSchema as sK, type RunGitResponse as sL, RunGitResponseSchema as sM, type RunNpxRequest as sN, RunNpxRequestSchema as sO, type RunNpxResponse as sP, RunNpxResponseSchema as sQ, type RunPackageScriptRequest as sR, RunPackageScriptRequestSchema as sS, type RunPackageScriptResponse as sT, RunPackageScriptResponseSchema as sU, type RunScriptRequest as sV, RunScriptRequestSchema as sW, type RunScriptResponse as sX, RunScriptResponseSchema as sY, type RunTerminalCommandRequest as sZ, RunTerminalCommandRequestSchema as s_, RenderImageRequestSchema as sa, type RenderImageResponse as sb, RenderImageResponseSchema as sc, type ReplaceInProjectWorkspaceFileRequest as sd, ReplaceInProjectWorkspaceFileRequestSchema as se, type ReplaceLinesInProjectWorkspaceFileRequest as sf, ReplaceLinesInProjectWorkspaceFileRequestSchema as sg, type ReportPreviewLogRequest as sh, ReportPreviewLogRequestSchema as si, type RequestAskRequest as sj, RequestAskRequestSchema as sk, type RequestAskResponse as sl, RequestAskResponseSchema as sm, type RequestPermissionRequest as sn, RequestPermissionRequestSchema as so, type RequestPermissionResponse as sp, RequestPermissionResponseSchema as sq, type RerollGezelPoppetjeRequest as sr, RerollGezelPoppetjeRequestSchema as ss, type ResidentEngineModel as st, ResidentEngineModelSchema as su, type ResolveArtifactResponse as sv, ResolveArtifactResponseSchema as sw, type ResolveSecurityFindingRequest as sx, ResolveSecurityFindingRequestSchema as sy, type ResolveSecurityFindingResponse as sz, ActiveImagePullSchema as t, SearchCodeRequestSchema as t$, RunTerminalCommandResponseSchema as t0, type SamplingBlock as t1, SamplingBlockSchema as t2, type SaveScriptSourceRequest as t3, SaveScriptSourceRequestSchema as t4, type SaveScriptSourceResponse as t5, SaveScriptSourceResponseSchema as t6, type ScanFindingsRequest as t7, ScanFindingsRequestSchema as t8, type ScanFindingsResponse as t9, ScriptOutputPredicateSchema as tA, type ScriptOutputs as tB, ScriptOutputsSchema as tC, type ScriptProvenance as tD, ScriptProvenanceSchema as tE, type ScriptRef as tF, ScriptRefInputSchema as tG, type ScriptRefList as tH, ScriptRefListSchema as tI, ScriptRefSchema as tJ, type ScriptRun as tK, type ScriptRunCall as tL, ScriptRunCallSchema as tM, ScriptRunSchema as tN, type ScriptRunStatus as tO, ScriptRunStatusSchema as tP, type ScriptRunTrigger as tQ, ScriptRunTriggerSchema as tR, type ScriptScope as tS, ScriptScopeSchema as tT, ScriptStringInputSchema as tU, ScriptStringOutputSchema as tV, type ScriptTemplateId as tW, ScriptTemplateIdSchema as tX, type SdkTypesResponse as tY, SdkTypesResponseSchema as tZ, type SearchCodeRequest as t_, ScanFindingsResponseSchema as ta, type ScheduleApprovalIntent as tb, ScheduleApprovalIntentSchema as tc, type ScheduleMaterialization as td, ScheduleMaterializationSchema as te, ScriptArrayOutputSchema as tf, ScriptBooleanInputSchema as tg, ScriptBooleanOutputSchema as th, type ScriptCapability as ti, ScriptCapabilitySchema as tj, ScriptChoiceInputSchema as tk, type ScriptDiagnostic as tl, ScriptDiagnosticSchema as tm, ScriptInputError as tn, ScriptInputFieldSchema as to, type ScriptInputs as tp, ScriptInputsSchema as tq, ScriptJsonInputSchema as tr, ScriptJsonOutputSchema as ts, ScriptMetaSchema as tt, ScriptNameSchema as tu, ScriptNumberInputSchema as tv, ScriptNumberOutputSchema as tw, ScriptObjectOutputSchema as tx, ScriptOutputFieldSchema as ty, type ScriptOutputPredicate as tz, type ActiveVideoPull as u, SessionSearchResultSchema as u$, type SearchCodeResponse as u0, SearchCodeResponseSchema as u1, type SearchDocsRequest as u2, SearchDocsRequestSchema as u3, type SearchDocsResponse as u4, SearchDocsResponseSchema as u5, type SearchDocumentsRequest as u6, SearchDocumentsRequestSchema as u7, type SearchDocumentsResponse as u8, SearchDocumentsResponseSchema as u9, SecurityPolicySchema as uA, type SecurityScanRequest as uB, SecurityScanRequestSchema as uC, type SecurityScanResponse as uD, SecurityScanResponseSchema as uE, SecuritySeveritySchema as uF, type SecuritySeverityWire as uG, SecuritySourceSchema as uH, type SendChannelMessageRequest as uI, SendChannelMessageRequestSchema as uJ, type SendChannelMessageResponse as uK, SendChannelMessageResponseSchema as uL, type SendChatRequest as uM, SendChatRequestSchema as uN, type SendChatResponse as uO, SendChatResponseSchema as uP, type SendToSessionRequest as uQ, SendToSessionRequestSchema as uR, type SendToSessionResponse as uS, SendToSessionResponseSchema as uT, type ServiceRole as uU, ServiceRoleSchema as uV, type SessionDebugSnapshot as uW, SessionDebugSnapshotSchema as uX, type SessionGpuTask as uY, SessionGpuTaskSchema as uZ, type SessionSearchResult as u_, type SearchFilesContextLine as ua, SearchFilesContextLineSchema as ub, type SearchFilesMatch as uc, SearchFilesMatchSchema as ud, type SearchFilesRequest as ue, SearchFilesRequestSchema as uf, type SearchFilesResponse as ug, SearchFilesResponseSchema as uh, type SearchImagesRequest as ui, SearchImagesRequestSchema as uj, type SearchImagesResponse as uk, SearchImagesResponseSchema as ul, type SearchResult as um, SearchResultSchema as un, type SearchSessionsRequest as uo, SearchSessionsRequestSchema as up, type SearchSessionsResponse as uq, SearchSessionsResponseSchema as ur, type SecurityDependency as us, SecurityDependencySchema as ut, SecurityFindingSchema as uu, type SecurityFindingStatus as uv, SecurityFindingStatusSchema as uw, type SecurityFindingWire as ux, type SecurityOverviewResponse as uy, SecurityOverviewResponseSchema as uz, ActiveVideoPullSchema as v, SystemToolsetInstallSnapshotSchema as v$, type SessionTelemetry as v0, type SessionTelemetryListResponse as v1, SessionTelemetryListResponseSchema as v2, SessionTelemetrySchema as v3, type SessionTurnTelemetry as v4, SessionTurnTelemetrySchema as v5, type SetTaskStatusRequest as v6, SetTaskStatusRequestSchema as v7, type Settlement as v8, SettlementSchema as v9, StructuredOutputSchema as vA, type SuggestCraftbooksResponse as vB, SuggestCraftbooksResponseSchema as vC, type SuggestedCraftbook as vD, SuggestedCraftbookSchema as vE, type SuggestedWorkItem as vF, SuggestedWorkItemSchema as vG, type SuggestedWorkResponse as vH, SuggestedWorkResponseSchema as vI, type SuggestedWorkSource as vJ, SuggestedWorkSourceSchema as vK, type SuggestedWorkState as vL, SuggestedWorkStateSchema as vM, type SvgLayer as vN, SvgLayerSchema as vO, type SymbolContext as vP, SymbolContextSchema as vQ, type SystemBootstrapStatus as vR, SystemBootstrapStatusSchema as vS, type SystemDiagnostics as vT, SystemDiagnosticsSchema as vU, type SystemHomeInfo as vV, SystemHomeInfoSchema as vW, type SystemToolsetInstallEvent as vX, SystemToolsetInstallEventSchema as vY, type SystemToolsetInstallPhase as vZ, type SystemToolsetInstallSnapshot as v_, type SharedModelMigrationCandidate as va, SharedModelMigrationCandidateSchema as vb, type SharedModelMigrationCandidatesResponse as vc, SharedModelMigrationCandidatesResponseSchema as vd, type SharedModelMigrationRequest as ve, SharedModelMigrationRequestSchema as vf, type SharedModelMigrationResult as vg, SharedModelMigrationResultSchema as vh, type SharedModelMigrationSource as vi, SharedModelMigrationSourceSchema as vj, type SpawnTaskInstancesRequest as vk, SpawnTaskInstancesRequestSchema as vl, type StartCodeReviewRequest as vm, StartCodeReviewRequestSchema as vn, type StartCodeReviewResponse as vo, StartCodeReviewResponseSchema as vp, StepDeliverableSchema as vq, StepGateSchema as vr, type StepGateUnion as vs, StepGateUnionSchema as vt, type StepPatch as vu, type StepPosition as vv, StepPositionSchema as vw, type StepSniff as vx, StepSniffSchema as vy, type StructuredOutput as vz, type AdoptedTraitRecord as w, type ToolPermissionIntent as w$, TOOL_CALL_DIFF_MAX_BYTES as w0, type TaskAssignee as w1, TaskAssigneeSchema as w2, type TaskCraftbook as w3, TaskCraftbookSchema as w4, type TaskCraftbookSource as w5, TaskCraftbookSourceSchema as w6, type TaskCraftbookStep as w7, TaskCraftbookStepSchema as w8, type TaskCron as w9, TerminalFileReferenceSchema as wA, type TerminalInputRequestedEvent as wB, TerminalInputRequestedEventSchema as wC, type TerminalMessage as wD, type TerminalMessageEvent as wE, TerminalMessageEventSchema as wF, TerminalMessageSchema as wG, type TerminalOpenFileEvent as wH, TerminalOpenFileEventSchema as wI, type TerminalOutputChunkEvent as wJ, TerminalOutputChunkEventSchema as wK, type TerminalRunStartedEvent as wL, TerminalRunStartedEventSchema as wM, type TerminalThread as wN, TerminalThreadSchema as wO, type TerminalThreadSummary as wP, TerminalThreadSummarySchema as wQ, type TerminalTimelineEntry as wR, TerminalTimelineEntrySchema as wS, type TerminalWorkingDirChangedEvent as wT, TerminalWorkingDirChangedEventSchema as wU, type TextLayer as wV, TextLayerSchema as wW, type TimelineMessage as wX, TimelineMessageSchema as wY, type ToolCallFormat as wZ, ToolCallFormatSchema as w_, type TaskCronOverlap as wa, TaskCronOverlapSchema as wb, TaskCronSchema as wc, type TaskFanout as wd, TaskFanoutSchema as we, type TaskNightShift as wf, TaskNightShiftSchema as wg, type TaskNote as wh, type TaskNoteAuthor as wi, TaskNoteAuthorSchema as wj, TaskNoteSchema as wk, type TaskPausedIntent as wl, TaskPausedIntentSchema as wm, type TaskPausedReason as wn, TaskPausedReasonSchema as wo, TaskRefSchema as wp, type TaskResponse as wq, TaskResponseSchema as wr, TaskSchema as ws, type TaskStatus as wt, TaskStatusSchema as wu, type TaskVariation as wv, TaskVariationSchema as ww, type TerminalEventEnvelope as wx, TerminalEventEnvelopeSchema as wy, type TerminalFileReference as wz, AdoptedTraitRecordSchema as x, type UpdateProjectRequest as x$, ToolPermissionIntentSchema as x0, type ToolsetCategory as x1, ToolsetCategorySchema as x2, type ToolsetConfig as x3, type ToolsetConfigField as x4, ToolsetConfigFieldSchema as x5, ToolsetConfigSchema as x6, type ToolsetIdentity as x7, ToolsetIdentitySchema as x8, type ToolsetInstallApprovalIntent as x9, type TuningProposal as xA, TuningProposalSchema as xB, UNIFIED_SEARCH_RESULT_KINDS as xC, type UnifiedSearchRequest as xD, UnifiedSearchRequestSchema as xE, type UnifiedSearchResponse as xF, UnifiedSearchResponseSchema as xG, type UnifiedSearchResult as xH, type UnifiedSearchResultKind as xI, UnifiedSearchResultKindSchema as xJ, UnifiedSearchResultSchema as xK, type UpdateConfigRequest as xL, UpdateConfigRequestSchema as xM, type UpdateCraftbookRequest as xN, UpdateCraftbookRequestSchema as xO, type UpdateGezelAboutRequest as xP, UpdateGezelAboutRequestSchema as xQ, type UpdateGezelFixedFunctionDefaultsRequest as xR, UpdateGezelFixedFunctionDefaultsRequestSchema as xS, type UpdateGezelIconRequest as xT, UpdateGezelIconRequestSchema as xU, type UpdateGezelMarkdownRequest as xV, UpdateGezelMarkdownRequestSchema as xW, type UpdateGezelPoppetjeRequest as xX, UpdateGezelPoppetjeRequestSchema as xY, type UpdateGezelSettingsRequest as xZ, UpdateGezelSettingsRequestSchema as x_, ToolsetInstallApprovalIntentSchema as xa, type ToolsetManifest as xb, ToolsetManifestSchema as xc, type ToolsetPlatform as xd, ToolsetPlatformSchema as xe, ToolsetRuntimeSchema as xf, type ToolsetVersionManifest as xg, ToolsetVersionManifestSchema as xh, type ToolsetsScope as xi, ToolsetsScopeSchema as xj, type TraceTaintRequest as xk, TraceTaintRequestSchema as xl, type TraceTaintResponse as xm, TraceTaintResponseSchema as xn, type TraitProposal as xo, TraitProposalSchema as xp, type TransformStreamEvent as xq, TransformStreamEventSchema as xr, type TransformTextMode as xs, TransformTextModeSchema as xt, type TransformTextRequest as xu, TransformTextRequestSchema as xv, type TuningAction as xw, TuningActionSchema as xx, type TuningProfileId as xy, TuningProfileIdSchema as xz, AdvanceWhenSchema as y, WORKSPACE_READ_MAX_RESULT_BYTES as y$, UpdateProjectRequestSchema as y0, type UpdateQueuedMessageRequest as y1, UpdateQueuedMessageRequestSchema as y2, type UpdateQueuedMessageResponse as y3, UpdateQueuedMessageResponseSchema as y4, type UpdateTaskCraftbookRequest as y5, UpdateTaskCraftbookRequestSchema as y6, type UpdateTaskNoteRequest as y7, UpdateTaskNoteRequestSchema as y8, type UpdateTaskNoteResponse as y9, VideoModelIdentitySchema as yA, type VideoModelLoad as yB, VideoModelLoadSchema as yC, type VideoModelManifest as yD, VideoModelManifestSchema as yE, type VideoModelPullEvent as yF, VideoModelPullEventSchema as yG, type VideoModelSource as yH, VideoModelSourceSchema as yI, type VideoModelVersionManifest as yJ, VideoModelVersionManifestSchema as yK, VillageAnchorSchema as yL, type VillageDomainState as yM, VillageDomainStateSchema as yN, type VillageDowntown as yO, VillageDowntownSchema as yP, type VillageFile as yQ, VillageFileSchema as yR, type VillageJournalNode as yS, VillageJournalNodeSchema as yT, VillageOverrideSchema as yU, WORKSPACE_READ_DEADLINE_MS as yV, WORKSPACE_READ_MAX_BATCH_LINES as yW, WORKSPACE_READ_MAX_BATCH_RESULT_BYTES as yX, WORKSPACE_READ_MAX_BATCH_SCAN_BYTES as yY, WORKSPACE_READ_MAX_FILES as yZ, WORKSPACE_READ_MAX_RANGE_LINES as y_, UpdateTaskNoteResponseSchema as ya, type UpdateTaskRequest as yb, UpdateTaskRequestSchema as yc, type UpdateTaskStepRequest as yd, UpdateTaskStepRequestSchema as ye, type UpdateTaskStepResponse as yf, UpdateTaskStepResponseSchema as yg, VILLAGE_FILE_ABOUT as yh, VILLAGE_FILE_SCHEMA_VERSION as yi, type VideoAccelerator as yj, VideoAcceleratorSchema as yk, type VideoEngineStatusResponse as yl, VideoEngineStatusResponseSchema as ym, type VideoGenerationApprovalIntent as yn, VideoGenerationApprovalIntentSchema as yo, type VideoGenerationMeta as yp, VideoGenerationMetaSchema as yq, type VideoGenerationRequest as yr, VideoGenerationRequestSchema as ys, type VideoGenerationResponse as yt, VideoGenerationResponseSchema as yu, type VideoInputSource as yv, VideoInputSourceSchema as yw, type VideoModelFamily as yx, VideoModelFamilySchema as yy, type VideoModelIdentity as yz, type AnswerQuestionRequest as z, reorderStepsArray as z$, WORKSPACE_READ_MAX_SCAN_BYTES as z0, type WebSearchRequest as z1, WebSearchRequestSchema as z2, type WebSearchResponse as z3, WebSearchResponseSchema as z4, type WebhookChannelConfig as z5, WebhookChannelConfigSchema as z6, type WikipediaSearchRequest as z7, WikipediaSearchRequestSchema as z8, type WorkspaceCommandIndex as z9, assertCraftbookGraph as zA, compareSemver as zB, craftbookRequirementsMet as zC, credentialCapabilityName as zD, formatNpmRegistrySpec as zE, formatReviewProvenance as zF, gateEdgeTargets as zG, isCredentialCapability as zH, isDraftTask as zI, isKnownProfileId as zJ, isLegacyGateSpec as zK, isNightShiftTask as zL, isPendingNightShiftTask as zM, isScheduleHost as zN, isSemver as zO, isValidNpmPackageName as zP, isValidNpmRegistryVersion as zQ, levelForXp as zR, modelFitnessKey as zS, normalizeCodexPermissionMode as zT, normalizeScriptRefs as zU, normalizeStepGate as zV, parseCraftbookTestSpec as zW, parseTaskRef as zX, profileKind as zY, projectAllowsAmbientWork as zZ, removeStepAndCleanEdges as z_, WorkspaceCommandIndexSchema as za, type WorkspaceCommandShapes as zb, WorkspaceCommandShapesSchema as zc, type WorkspaceEditResponse as zd, WorkspaceEditResponseSchema as ze, type WorkspaceIndexMeta as zf, WorkspaceIndexMetaSchema as zg, type WorkspaceIndexStatus as zh, WorkspaceIndexStatusSchema as zi, type WorkspaceInstructionIndex as zj, WorkspaceInstructionIndexSchema as zk, type WorkspaceReadFileError as zl, WorkspaceReadFileErrorSchema as zm, type WorkspaceReadFileRequest as zn, WorkspaceReadFileRequestSchema as zo, type WorkspaceReadFileResult as zp, WorkspaceReadFileResultSchema as zq, type WorkspaceReadFileSuccess as zr, WorkspaceReadFileSuccessSchema as zs, type WorkspaceSkillIndex as zt, WorkspaceSkillIndexSchema as zu, type WriteDocumentRequest as zv, WriteDocumentRequestSchema as zw, type XtcSamplerConfig as zx, XtcSamplerSchema as zy, applyStepPatch as zz };
|
|
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 };
|