@codedrifters/configulator 0.0.316 → 0.0.318
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/lib/index.d.mts +155 -76
- package/lib/index.d.ts +155 -76
- package/lib/index.js +28 -23
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +28 -23
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ declare const AGENT_PLATFORM: {
|
|
|
81
81
|
type AgentPlatform = (typeof AGENT_PLATFORM)[keyof typeof AGENT_PLATFORM];
|
|
82
82
|
/**
|
|
83
83
|
* Render target for Claude Code rules.
|
|
84
|
-
* - SCOPED_FILE:
|
|
84
|
+
* - SCOPED_FILE: `.claude/rules/{name}.md` (default — supports paths frontmatter for conditional activation)
|
|
85
85
|
* - AGENTS_MD: AGENTS.md (always-active, shared with Codex)
|
|
86
86
|
* - CLAUDE_MD: CLAUDE.md (always-active, Claude-only content not consumed by other agents)
|
|
87
87
|
*/
|
|
@@ -131,7 +131,7 @@ interface AgentPlatformOverrides {
|
|
|
131
131
|
readonly claude?: {
|
|
132
132
|
/**
|
|
133
133
|
* Where to render this rule for Claude Code.
|
|
134
|
-
* - SCOPED_FILE:
|
|
134
|
+
* - SCOPED_FILE: `.claude/rules/{name}.md` (default — supports paths frontmatter)
|
|
135
135
|
* - AGENTS_MD: AGENTS.md (always-active, shared with Codex)
|
|
136
136
|
* - CLAUDE_MD: CLAUDE.md (always-active, Claude-only)
|
|
137
137
|
*/
|
|
@@ -269,10 +269,12 @@ interface AgentSkill {
|
|
|
269
269
|
* files for that platform alongside the SKILL.md.
|
|
270
270
|
*
|
|
271
271
|
* @example
|
|
272
|
+
* ```ts
|
|
272
273
|
* referenceFiles: [
|
|
273
274
|
* { path: '_references/templates/_template-FR.md', content: '# Functional Requirement\n...' },
|
|
274
275
|
* { path: '_references/standards-and-frameworks.md', content: '# Standards\n...' },
|
|
275
276
|
* ]
|
|
277
|
+
* ```
|
|
276
278
|
*/
|
|
277
279
|
readonly referenceFiles?: ReadonlyArray<{
|
|
278
280
|
/** Path relative to the skill directory (e.g., `_references/templates/_template-FR.md`). */
|
|
@@ -452,7 +454,7 @@ interface AgentCommand {
|
|
|
452
454
|
}
|
|
453
455
|
/**
|
|
454
456
|
* An executable procedure (shell script) that ships with a bundle.
|
|
455
|
-
* Rendered to
|
|
457
|
+
* Rendered to `.claude/procedures/{name}` as an executable file.
|
|
456
458
|
*/
|
|
457
459
|
interface AgentProcedure {
|
|
458
460
|
/**
|
|
@@ -580,7 +582,7 @@ interface AgentRuleBundle {
|
|
|
580
582
|
* Function that inspects the Projen project and returns true if this
|
|
581
583
|
* bundle should be automatically included. Receives the root project
|
|
582
584
|
* as input and can check for sibling components, dependencies, etc.
|
|
583
|
-
* @example (project) => Vitest.of(project) !== undefined
|
|
585
|
+
* @example `(project) => Vitest.of(project) !== undefined`
|
|
584
586
|
*/
|
|
585
587
|
readonly appliesWhen: (project: Project$1) => boolean;
|
|
586
588
|
/**
|
|
@@ -593,7 +595,7 @@ interface AgentRuleBundle {
|
|
|
593
595
|
* TypeScript-adjacent code (e.g. typescript, aws-cdk, vitest, jest) should
|
|
594
596
|
* implement this so their rules only activate for files in the packages
|
|
595
597
|
* that actually use them.
|
|
596
|
-
* @example (project) => findProjectsWithFile(project, 'tsconfig.json')
|
|
598
|
+
* @example `(project) => findProjectsWithFile(project, 'tsconfig.json')`
|
|
597
599
|
*/
|
|
598
600
|
readonly findApplicableProjects?: (project: Project$1) => ReadonlyArray<Project$1>;
|
|
599
601
|
/** Rules included in this bundle. */
|
|
@@ -1380,11 +1382,11 @@ interface MeetingType {
|
|
|
1380
1382
|
* edits on that meeting (see the `meeting-analyst` agent's
|
|
1381
1383
|
* **Areas filtering** section for the full gating contract).
|
|
1382
1384
|
*
|
|
1383
|
-
* Example: declaring
|
|
1384
|
-
* Engineering', docRoot: 'product' }`
|
|
1385
|
-
* bundle that a meeting whose frontmatter
|
|
1386
|
-
* `areas: [product-engineering]` should have its direct edits
|
|
1387
|
-
* under `<docsRoot>/product/`.
|
|
1385
|
+
* Example: declaring
|
|
1386
|
+
* `{ id: 'product-engineering', label: 'Product & Engineering', docRoot: 'product' }`
|
|
1387
|
+
* tells the `meeting-analysis` bundle that a meeting whose frontmatter
|
|
1388
|
+
* carries `areas: [product-engineering]` should have its direct edits
|
|
1389
|
+
* routed under `<docsRoot>/product/`.
|
|
1388
1390
|
*
|
|
1389
1391
|
* When `AgentConfigOptions.meetings.meetingAreas` is non-empty, the
|
|
1390
1392
|
* `meeting-analysis` bundle renders an "Area → doc-root mapping"
|
|
@@ -2877,7 +2879,7 @@ interface AgentConfigOptions {
|
|
|
2877
2879
|
* match one of the six tier-aware bundle names — typos or
|
|
2878
2880
|
* deprecated bundle names would otherwise be silently ignored.
|
|
2879
2881
|
*
|
|
2880
|
-
* @default {}
|
|
2882
|
+
* @default `{}`
|
|
2881
2883
|
*/
|
|
2882
2884
|
readonly bundleAgentTiers?: Readonly<Record<string, "powerful" | "balanced" | "fast">>;
|
|
2883
2885
|
/**
|
|
@@ -4467,7 +4469,7 @@ interface ResolvedScheduledTask {
|
|
|
4467
4469
|
readonly typeLabel: string;
|
|
4468
4470
|
/**
|
|
4469
4471
|
* Exact `type:*` label values (without the `type:` prefix) the
|
|
4470
|
-
* worker picks up. When set (length >= 1), represents a
|
|
4472
|
+
* worker picks up. When set (`length >= 1`), represents a
|
|
4471
4473
|
* multi-type filter (e.g. routing-bucket `worker-issue`). When
|
|
4472
4474
|
* unset, the `typeLabel` single-value filter applies.
|
|
4473
4475
|
*/
|
|
@@ -4481,7 +4483,7 @@ interface ResolvedScheduledTask {
|
|
|
4481
4483
|
readonly phasePrefix?: string;
|
|
4482
4484
|
/**
|
|
4483
4485
|
* Exact phase-label values the worker filters on (e.g.
|
|
4484
|
-
* `["req:write"]`). When set (length >= 1), takes precedence over
|
|
4486
|
+
* `["req:write"]`). When set (`length >= 1`), takes precedence over
|
|
4485
4487
|
* `phasePrefix`. When unset, the `phasePrefix` prefix-match
|
|
4486
4488
|
* applies.
|
|
4487
4489
|
*/
|
|
@@ -4934,10 +4936,10 @@ declare function validateAgentTierConfig(config?: AgentTierConfig): ReadonlyArra
|
|
|
4934
4936
|
*
|
|
4935
4937
|
* When `excludeBundles` is non-empty, rows whose `type:*` label is
|
|
4936
4938
|
* owned by an excluded bundle are dropped before rendering. Tiers
|
|
4937
|
-
* that end up with no surviving rows render an empty
|
|
4938
|
-
* registered)_` cell for consistency with the existing
|
|
4939
|
-
* tier itself stays in the table so the dispatch
|
|
4940
|
-
* documented end-to-end.
|
|
4939
|
+
* that end up with no surviving rows render an empty
|
|
4940
|
+
* `_(none registered)_` cell for consistency with the existing
|
|
4941
|
+
* render — the tier itself stays in the table so the dispatch
|
|
4942
|
+
* ordering is still documented end-to-end.
|
|
4941
4943
|
*/
|
|
4942
4944
|
declare function renderAgentTierSection(tiers: ReadonlyArray<ResolvedAgentTier>, excludeBundles?: ReadonlyArray<string>): string;
|
|
4943
4945
|
/**
|
|
@@ -6416,7 +6418,7 @@ interface GitHubProjectMetadata {
|
|
|
6416
6418
|
readonly sprints?: GitHubSprintMetadata;
|
|
6417
6419
|
/**
|
|
6418
6420
|
* Kanban column (status field) definitions.
|
|
6419
|
-
* @example [{ name: 'To Do', id: 'status_1' }, { name: 'In Progress', id: 'status_2' }]
|
|
6421
|
+
* @example `[{ name: 'To Do', id: 'status_1' }, { name: 'In Progress', id: 'status_2' }]`
|
|
6420
6422
|
*/
|
|
6421
6423
|
readonly columns?: ReadonlyArray<{
|
|
6422
6424
|
readonly name: string;
|
|
@@ -6465,7 +6467,7 @@ interface SlackMetadata {
|
|
|
6465
6467
|
readonly alertsChannel?: string;
|
|
6466
6468
|
/**
|
|
6467
6469
|
* Additional named channels. Keys are purpose identifiers.
|
|
6468
|
-
* @example { releases: '#releases', support: '#customer-support' }
|
|
6470
|
+
* @example `{ releases: '#releases', support: '#customer-support' }`
|
|
6469
6471
|
*/
|
|
6470
6472
|
readonly channels?: Readonly<Record<string, string>>;
|
|
6471
6473
|
}
|
|
@@ -6490,7 +6492,7 @@ interface DeploymentMetadata {
|
|
|
6490
6492
|
readonly awsRegion?: string;
|
|
6491
6493
|
/**
|
|
6492
6494
|
* Named environments.
|
|
6493
|
-
* @example { dev: { accountId: '111', region: 'us-east-1' }, prod: { accountId: '222', region: 'us-east-1' } }
|
|
6495
|
+
* @example `{ dev: { accountId: '111', region: 'us-east-1' }, prod: { accountId: '222', region: 'us-east-1' } }`
|
|
6494
6496
|
*/
|
|
6495
6497
|
readonly environments?: Readonly<Record<string, {
|
|
6496
6498
|
readonly accountId?: string;
|
|
@@ -6763,7 +6765,7 @@ interface AstroIntegrationSpec {
|
|
|
6763
6765
|
*/
|
|
6764
6766
|
readonly name: string;
|
|
6765
6767
|
/**
|
|
6766
|
-
* Module to import from, e.g.
|
|
6768
|
+
* Module to import from, e.g. `@astrojs/react`.
|
|
6767
6769
|
*/
|
|
6768
6770
|
readonly importPath: string;
|
|
6769
6771
|
/**
|
|
@@ -6879,7 +6881,7 @@ interface AwsLocalDeploymentConfig {
|
|
|
6879
6881
|
/**
|
|
6880
6882
|
* The pattern used to identify stacks to deploy in CI deployments.
|
|
6881
6883
|
*
|
|
6882
|
-
* @default
|
|
6884
|
+
* @default `*-${account}-${region}`
|
|
6883
6885
|
*/
|
|
6884
6886
|
readonly stackPattern?: string;
|
|
6885
6887
|
}
|
|
@@ -6891,7 +6893,7 @@ interface CiDeploymentConfig {
|
|
|
6891
6893
|
/**
|
|
6892
6894
|
* The pattern used to identify stacks to deploy in CI deployments.
|
|
6893
6895
|
*
|
|
6894
|
-
* @default
|
|
6896
|
+
* @default `*-${account}-${region}`
|
|
6895
6897
|
*/
|
|
6896
6898
|
readonly stackPattern?: string;
|
|
6897
6899
|
}
|
|
@@ -7541,7 +7543,7 @@ declare const AuditCategory: {
|
|
|
7541
7543
|
readonly LinkFailures: "linkFailures";
|
|
7542
7544
|
/**
|
|
7543
7545
|
* Findings produced by the fenced-sample compilation check that
|
|
7544
|
-
* flags `
|
|
7546
|
+
* flags `ts`, `typescript`, and `tsx` fenced code blocks in the
|
|
7545
7547
|
* docs that fail `tsc`. Wired in by child issue #520.
|
|
7546
7548
|
*/
|
|
7547
7549
|
readonly SampleFailures: "sampleFailures";
|
|
@@ -8467,7 +8469,7 @@ declare const VERSION: {
|
|
|
8467
8469
|
*/
|
|
8468
8470
|
readonly SHARP_VERSION: "0.34.5";
|
|
8469
8471
|
/**
|
|
8470
|
-
* Version of
|
|
8472
|
+
* Version of `@astrojs/starlight` to pin for StarlightProject scaffolding.
|
|
8471
8473
|
*/
|
|
8472
8474
|
readonly STARLIGHT_VERSION: "0.39.2";
|
|
8473
8475
|
/**
|
|
@@ -8475,7 +8477,7 @@ declare const VERSION: {
|
|
|
8475
8477
|
*/
|
|
8476
8478
|
readonly TURBO_VERSION: "2.9.14";
|
|
8477
8479
|
/**
|
|
8478
|
-
* Version of
|
|
8480
|
+
* Version of `@types/node` to use across all packages (pnpm catalog).
|
|
8479
8481
|
*/
|
|
8480
8482
|
readonly TYPES_NODE_VERSION: "25.8.0";
|
|
8481
8483
|
/**
|
|
@@ -8839,8 +8841,8 @@ declare class PnpmWorkspace extends Component {
|
|
|
8839
8841
|
* Get the pnpm workspace component of a project. If it does not exist,
|
|
8840
8842
|
* return undefined.
|
|
8841
8843
|
*
|
|
8842
|
-
* @param project
|
|
8843
|
-
* @returns
|
|
8844
|
+
* @param project - The project to query.
|
|
8845
|
+
* @returns The PnpmWorkspace component if present, otherwise undefined.
|
|
8844
8846
|
*/
|
|
8845
8847
|
static of(project: Project): PnpmWorkspace | undefined;
|
|
8846
8848
|
/**
|
|
@@ -9119,6 +9121,84 @@ declare class ResetTask extends Component {
|
|
|
9119
9121
|
constructor(project: Project, options?: ResetTaskOptions);
|
|
9120
9122
|
}
|
|
9121
9123
|
|
|
9124
|
+
/*******************************************************************************
|
|
9125
|
+
*
|
|
9126
|
+
* TsdocConfig
|
|
9127
|
+
*
|
|
9128
|
+
* Emits `tsdoc.json` at the project root so `eslint-plugin-tsdoc` recognises
|
|
9129
|
+
* the JSDoc tags consuming code commonly uses but that are not in the
|
|
9130
|
+
* default TSDoc tag list:
|
|
9131
|
+
*
|
|
9132
|
+
* - Workspace-scope package references (such as `@codedrifters` or
|
|
9133
|
+
* `@openhi`) registered as modifier tags so prose like
|
|
9134
|
+
* `See @codedrifters/configulator` does not trip `tsdoc-at-sign-in-word`.
|
|
9135
|
+
* - Common JSDoc convention tags (default, defaultValue, experimental, and
|
|
9136
|
+
* the internal-marker tag) registered as modifier tags so they do
|
|
9137
|
+
* not trip `tsdoc-undefined-tag`.
|
|
9138
|
+
*
|
|
9139
|
+
* Without `tsdoc.json` configulator emits, downstream consumers see ~1,250
|
|
9140
|
+
* `tsdoc-at-sign-in-word` warnings and ~17 `tsdoc-undefined-tag` warnings
|
|
9141
|
+
* per build on every scoped-package reference in a JSDoc comment.
|
|
9142
|
+
*
|
|
9143
|
+
* Note: the tag names above are intentionally written without their leading
|
|
9144
|
+
* at-sign. `tsc --stripInternal` (which configulator enables) treats the
|
|
9145
|
+
* file-leading banner as the JSDoc comment of the next declaration, and a
|
|
9146
|
+
* bare at-sign-prefixed `internal` token anywhere in that banner — even
|
|
9147
|
+
* inside a backtick code span — strips the following interface from the
|
|
9148
|
+
* emitted `.d.ts`.
|
|
9149
|
+
*
|
|
9150
|
+
******************************************************************************/
|
|
9151
|
+
/**
|
|
9152
|
+
* Configuration options for {@link TsdocConfig}.
|
|
9153
|
+
*/
|
|
9154
|
+
interface TsdocConfigOptions {
|
|
9155
|
+
/**
|
|
9156
|
+
* Workspace scopes to register as TSDoc modifier tags so prose references
|
|
9157
|
+
* like `@codedrifters/configulator` are not treated as malformed TSDoc
|
|
9158
|
+
* tags.
|
|
9159
|
+
*
|
|
9160
|
+
* Each entry should include the leading `@` (e.g. `@codedrifters`,
|
|
9161
|
+
* `@openhi`). When omitted, the scope is derived from the consuming
|
|
9162
|
+
* project's `packageName` (the substring up to the first `/`, when the
|
|
9163
|
+
* name starts with `@`). `@codedrifters` is always included so internal
|
|
9164
|
+
* configulator references work out of the box.
|
|
9165
|
+
*/
|
|
9166
|
+
readonly workspaceScopes?: Array<string>;
|
|
9167
|
+
/**
|
|
9168
|
+
* Additional modifier tag names (each starting with `@`) to register
|
|
9169
|
+
* beyond the standard set: default, defaultValue, experimental, and
|
|
9170
|
+
* the internal-marker tag.
|
|
9171
|
+
*
|
|
9172
|
+
* Note: the tag names above are intentionally written without their
|
|
9173
|
+
* leading at-sign. `tsc --stripInternal` (which configulator enables)
|
|
9174
|
+
* strips any declaration whose JSDoc contains the bare at-sign-prefixed
|
|
9175
|
+
* `internal` tag — even when the token sits inside a backtick code span
|
|
9176
|
+
* — and that strips this field from the published `.d.ts` rollup.
|
|
9177
|
+
*
|
|
9178
|
+
* @default []
|
|
9179
|
+
*/
|
|
9180
|
+
readonly additionalModifierTags?: Array<string>;
|
|
9181
|
+
}
|
|
9182
|
+
/**
|
|
9183
|
+
* Emits `tsdoc.json` so `eslint-plugin-tsdoc` recognises workspace-scope
|
|
9184
|
+
* package references and the standard JSDoc modifier tag set.
|
|
9185
|
+
*/
|
|
9186
|
+
declare class TsdocConfig extends Component {
|
|
9187
|
+
constructor(project: TypeScriptProject$1, options?: TsdocConfigOptions);
|
|
9188
|
+
}
|
|
9189
|
+
|
|
9190
|
+
/*******************************************************************************
|
|
9191
|
+
*
|
|
9192
|
+
* Update / customize typescript configs for a project.
|
|
9193
|
+
*
|
|
9194
|
+
* Update typescript paths in tsconfig so we don't have to compile packages to
|
|
9195
|
+
* dist in order to see changes.
|
|
9196
|
+
*
|
|
9197
|
+
******************************************************************************/
|
|
9198
|
+
declare class TypeScriptConfig extends Component {
|
|
9199
|
+
constructor(project: TypeScriptProject$1);
|
|
9200
|
+
}
|
|
9201
|
+
|
|
9122
9202
|
/**
|
|
9123
9203
|
* Options for the Vitest config (test block in vitest.config).
|
|
9124
9204
|
*
|
|
@@ -9128,7 +9208,7 @@ interface VitestConfigOptions {
|
|
|
9128
9208
|
/**
|
|
9129
9209
|
* Glob patterns for test files.
|
|
9130
9210
|
*
|
|
9131
|
-
* @default ["**\/*.{test,spec}.?(c|m)[jt]s?(x)"]
|
|
9211
|
+
* @default `["**\/*.{test,spec}.?(c|m)[jt]s?(x)"]`
|
|
9132
9212
|
*/
|
|
9133
9213
|
readonly include?: string[];
|
|
9134
9214
|
/**
|
|
@@ -9270,9 +9350,28 @@ interface TypeScriptProjectOptions extends Omit<typescript.TypeScriptProjectOpti
|
|
|
9270
9350
|
* `.api-extractor/` and are gitignored). Set to `false` to opt a
|
|
9271
9351
|
* package out of drift detection entirely.
|
|
9272
9352
|
*
|
|
9273
|
-
* @default {}
|
|
9353
|
+
* @default `{}`
|
|
9274
9354
|
*/
|
|
9275
9355
|
readonly apiExtractor?: ApiExtractorOptions | false;
|
|
9356
|
+
/**
|
|
9357
|
+
* Configure the emitted `tsdoc.json` so `eslint-plugin-tsdoc` recognises
|
|
9358
|
+
* workspace-scope package references (`@codedrifters/...`, `@openhi/...`,
|
|
9359
|
+
* etc.) and common JSDoc convention tags such as default, defaultValue,
|
|
9360
|
+
* experimental, and the internal-marker tag.
|
|
9361
|
+
*
|
|
9362
|
+
* Pass `false` to opt out of emitting `tsdoc.json` entirely. The
|
|
9363
|
+
* `tsdoc-at-sign-in-word` and `tsdoc-undefined-tag` lint warnings will
|
|
9364
|
+
* return at full volume in that case.
|
|
9365
|
+
*
|
|
9366
|
+
* Note: the tag names above are intentionally written without their
|
|
9367
|
+
* leading at-sign. `tsc --stripInternal` (which configulator enables)
|
|
9368
|
+
* strips any declaration whose JSDoc contains the bare at-sign-prefixed
|
|
9369
|
+
* `internal` tag — even when the token sits inside a backtick code span
|
|
9370
|
+
* — and that strips this field from the published `.d.ts` rollup.
|
|
9371
|
+
*
|
|
9372
|
+
* @default `{}`
|
|
9373
|
+
*/
|
|
9374
|
+
readonly tsdocConfig?: TsdocConfigOptions | false;
|
|
9276
9375
|
/**
|
|
9277
9376
|
* Control the `jsdoc/require-jsdoc` lint rule applied to `src/**` files.
|
|
9278
9377
|
*
|
|
@@ -9412,7 +9511,7 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
9412
9511
|
* Handles both exact matches (e.g., "main") and glob patterns (e.g., "feature/*").
|
|
9413
9512
|
* Also allows workflow_dispatch (manual runs) to proceed.
|
|
9414
9513
|
*
|
|
9415
|
-
* @param branches Array of GitBranch objects with branch patterns
|
|
9514
|
+
* @param branches - Array of GitBranch objects with branch patterns
|
|
9416
9515
|
* @returns Condition string or empty string if no branches provided
|
|
9417
9516
|
*/
|
|
9418
9517
|
private buildBranchFilterCondition;
|
|
@@ -9619,7 +9718,7 @@ interface TurboRepoOptions {
|
|
|
9619
9718
|
/**
|
|
9620
9719
|
* Version of turborepo to use.
|
|
9621
9720
|
*
|
|
9622
|
-
* @default
|
|
9721
|
+
* @default specified in versions file
|
|
9623
9722
|
*/
|
|
9624
9723
|
readonly turboVersion?: string;
|
|
9625
9724
|
/**
|
|
@@ -9668,7 +9767,7 @@ interface TurboRepoOptions {
|
|
|
9668
9767
|
*/
|
|
9669
9768
|
readonly globalPassThroughEnv?: Array<string>;
|
|
9670
9769
|
/**
|
|
9671
|
-
* @default
|
|
9770
|
+
* @default "stream"
|
|
9672
9771
|
*
|
|
9673
9772
|
* Select a terminal UI for the repository.
|
|
9674
9773
|
*
|
|
@@ -9679,7 +9778,7 @@ interface TurboRepoOptions {
|
|
|
9679
9778
|
*/
|
|
9680
9779
|
readonly ui?: "tui" | "stream";
|
|
9681
9780
|
/**
|
|
9682
|
-
* @default
|
|
9781
|
+
* @default false
|
|
9683
9782
|
*
|
|
9684
9783
|
* Turborepo uses your repository's lockfile to determine caching behavior,
|
|
9685
9784
|
* Package Graphs, and more. Because of this, we use the packageManager field
|
|
@@ -9696,7 +9795,7 @@ interface TurboRepoOptions {
|
|
|
9696
9795
|
*/
|
|
9697
9796
|
readonly dangerouslyDisablePackageManagerCheck?: boolean;
|
|
9698
9797
|
/**
|
|
9699
|
-
* @default
|
|
9798
|
+
* @default ".turbo/cache"
|
|
9700
9799
|
*
|
|
9701
9800
|
* Specify the filesystem cache directory.
|
|
9702
9801
|
*
|
|
@@ -9713,7 +9812,7 @@ interface TurboRepoOptions {
|
|
|
9713
9812
|
*/
|
|
9714
9813
|
readonly daemon?: boolean;
|
|
9715
9814
|
/**
|
|
9716
|
-
* @default
|
|
9815
|
+
* @default "strict"
|
|
9717
9816
|
*
|
|
9718
9817
|
* Turborepo's Environment Modes allow you to control which environment
|
|
9719
9818
|
* variables are available to a task at runtime:
|
|
@@ -9738,7 +9837,7 @@ interface TurboRepoOptions {
|
|
|
9738
9837
|
/**
|
|
9739
9838
|
* Env Args that will bre added to turbo's build:all task
|
|
9740
9839
|
*
|
|
9741
|
-
* @default
|
|
9840
|
+
* @default `{}`
|
|
9742
9841
|
*/
|
|
9743
9842
|
readonly buildAllTaskEnvVars?: Record<string, string>;
|
|
9744
9843
|
/*****************************************************************************
|
|
@@ -9750,31 +9849,31 @@ interface TurboRepoOptions {
|
|
|
9750
9849
|
/**
|
|
9751
9850
|
* Pre compile task
|
|
9752
9851
|
*
|
|
9753
|
-
* @default
|
|
9852
|
+
* @default "pre-compile"
|
|
9754
9853
|
*/
|
|
9755
9854
|
readonly preCompileTask?: Task;
|
|
9756
9855
|
/**
|
|
9757
9856
|
* Compile task
|
|
9758
9857
|
*
|
|
9759
|
-
* @default
|
|
9858
|
+
* @default "compile"
|
|
9760
9859
|
*/
|
|
9761
9860
|
readonly compileTask?: Task;
|
|
9762
9861
|
/**
|
|
9763
9862
|
* Post compile task
|
|
9764
9863
|
*
|
|
9765
|
-
* @default
|
|
9864
|
+
* @default "post-compile"
|
|
9766
9865
|
*/
|
|
9767
9866
|
readonly postCompileTask?: Task;
|
|
9768
9867
|
/**
|
|
9769
9868
|
* Test task
|
|
9770
9869
|
*
|
|
9771
|
-
* @default
|
|
9870
|
+
* @default "test"
|
|
9772
9871
|
*/
|
|
9773
9872
|
readonly testTask?: Task;
|
|
9774
9873
|
/**
|
|
9775
9874
|
* Package task
|
|
9776
9875
|
*
|
|
9777
|
-
* @default
|
|
9876
|
+
* @default "package"
|
|
9778
9877
|
*/
|
|
9779
9878
|
readonly packageTask?: Task;
|
|
9780
9879
|
}
|
|
@@ -9835,7 +9934,7 @@ declare class TurboRepo extends Component$1 {
|
|
|
9835
9934
|
*/
|
|
9836
9935
|
readonly globalPassThroughEnv: Array<string>;
|
|
9837
9936
|
/**
|
|
9838
|
-
* @default
|
|
9937
|
+
* @default "stream"
|
|
9839
9938
|
*
|
|
9840
9939
|
* Select a terminal UI for the repository.
|
|
9841
9940
|
*
|
|
@@ -9846,7 +9945,7 @@ declare class TurboRepo extends Component$1 {
|
|
|
9846
9945
|
*/
|
|
9847
9946
|
readonly ui: "tui" | "stream";
|
|
9848
9947
|
/**
|
|
9849
|
-
* @default
|
|
9948
|
+
* @default false
|
|
9850
9949
|
*
|
|
9851
9950
|
* Turborepo uses your repository's lockfile to determine caching behavior,
|
|
9852
9951
|
* Package Graphs, and more. Because of this, we use the packageManager field
|
|
@@ -9863,7 +9962,7 @@ declare class TurboRepo extends Component$1 {
|
|
|
9863
9962
|
*/
|
|
9864
9963
|
readonly dangerouslyDisablePackageManagerCheck: boolean;
|
|
9865
9964
|
/**
|
|
9866
|
-
* @default
|
|
9965
|
+
* @default ".turbo/cache"
|
|
9867
9966
|
*
|
|
9868
9967
|
* Specify the filesystem cache directory.
|
|
9869
9968
|
*
|
|
@@ -9879,7 +9978,7 @@ declare class TurboRepo extends Component$1 {
|
|
|
9879
9978
|
*/
|
|
9880
9979
|
readonly daemon: boolean;
|
|
9881
9980
|
/**
|
|
9882
|
-
* @default
|
|
9981
|
+
* @default "strict"
|
|
9883
9982
|
*
|
|
9884
9983
|
* Turborepo's Environment Modes allow you to control which environment
|
|
9885
9984
|
* variables are available to a task at runtime:
|
|
@@ -10096,7 +10195,7 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
|
|
|
10096
10195
|
/**
|
|
10097
10196
|
* The version of PNPM to use in the monorepo.
|
|
10098
10197
|
* @default VERSION.PNPM_VERSION
|
|
10099
|
-
* @see
|
|
10198
|
+
* @see `src/versions.ts`
|
|
10100
10199
|
*/
|
|
10101
10200
|
version?: string;
|
|
10102
10201
|
/**
|
|
@@ -10114,7 +10213,7 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
|
|
|
10114
10213
|
*/
|
|
10115
10214
|
readonly approveMergeUpgradeOptions?: ApproveMergeUpgradeOptions;
|
|
10116
10215
|
/**
|
|
10117
|
-
* Whether this monorepo consumes
|
|
10216
|
+
* Whether this monorepo consumes `@codedrifters/configulator` from a registry (npm).
|
|
10118
10217
|
* When true, the upgrade workflow adds steps to sync configulator and synthesize.
|
|
10119
10218
|
* Set to false when configulator is developed in this repo (e.g. workspace dependency).
|
|
10120
10219
|
*
|
|
@@ -10130,7 +10229,7 @@ interface MonorepoProjectOptions extends Omit<TypeScriptProjectOptions$1, "defau
|
|
|
10130
10229
|
* - `ProjectMetadataOptions`: explicit metadata configuration
|
|
10131
10230
|
* - `false`: disable ProjectMetadata entirely
|
|
10132
10231
|
*
|
|
10133
|
-
* @default {} (auto-detect from package.json)
|
|
10232
|
+
* @default `{}` (auto-detect from package.json)
|
|
10134
10233
|
*/
|
|
10135
10234
|
readonly projectMetadata?: ProjectMetadataOptions | false;
|
|
10136
10235
|
/**
|
|
@@ -10404,8 +10503,8 @@ declare class ProjectMetadata extends Component {
|
|
|
10404
10503
|
/**
|
|
10405
10504
|
* Return the maintainer-seed addendum for the `project-context`
|
|
10406
10505
|
* bundle, or an empty string when the root project either has no
|
|
10407
|
-
* layout-enforcement opinion or has opted out
|
|
10408
|
-
* "off"`).
|
|
10506
|
+
* layout-enforcement opinion or has opted out
|
|
10507
|
+
* (`layoutEnforcement: "off"`).
|
|
10409
10508
|
*
|
|
10410
10509
|
* Uses duck-typing on the root project's `layoutEnforcement`
|
|
10411
10510
|
* property to avoid a circular import with `MonorepoProject`. The
|
|
@@ -10630,7 +10729,7 @@ interface StarlightProjectOptions extends AstroProjectOptions {
|
|
|
10630
10729
|
*/
|
|
10631
10730
|
readonly editLink?: StarlightEditLink;
|
|
10632
10731
|
/**
|
|
10633
|
-
*
|
|
10732
|
+
* `@astrojs/starlight` package version.
|
|
10634
10733
|
*
|
|
10635
10734
|
* @default VERSION.STARLIGHT_VERSION
|
|
10636
10735
|
*/
|
|
@@ -10664,26 +10763,6 @@ declare class StarlightProject extends AstroProject {
|
|
|
10664
10763
|
constructor(userOptions: StarlightProjectOptions);
|
|
10665
10764
|
}
|
|
10666
10765
|
|
|
10667
|
-
/**
|
|
10668
|
-
* Emits `tsdoc.json` so `eslint-plugin-tsdoc` recognises workspace-scope
|
|
10669
|
-
* package references and the standard JSDoc modifier tag set.
|
|
10670
|
-
*/
|
|
10671
|
-
declare class TsdocConfig extends Component {
|
|
10672
|
-
constructor(project: TypeScriptProject$1, options?: TsdocConfigOptions);
|
|
10673
|
-
}
|
|
10674
|
-
|
|
10675
|
-
/*******************************************************************************
|
|
10676
|
-
*
|
|
10677
|
-
* Update / customize typescript configs for a project.
|
|
10678
|
-
*
|
|
10679
|
-
* Update typescript paths in tsconfig so we don't have to compile packages to
|
|
10680
|
-
* dist in order to see changes.
|
|
10681
|
-
*
|
|
10682
|
-
******************************************************************************/
|
|
10683
|
-
declare class TypeScriptConfig extends Component {
|
|
10684
|
-
constructor(project: TypeScriptProject$1);
|
|
10685
|
-
}
|
|
10686
|
-
|
|
10687
10766
|
/*******************************************************************************
|
|
10688
10767
|
*
|
|
10689
10768
|
* Configure VSCode Settings
|
|
@@ -10702,7 +10781,7 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
10702
10781
|
* Call this for the default build workflow and for any build workflow created
|
|
10703
10782
|
* by Configulator (e.g. AwsDeployWorkflow).
|
|
10704
10783
|
*
|
|
10705
|
-
* @param buildWorkflow The Projen BuildWorkflow to append the complete job to.
|
|
10784
|
+
* @param buildWorkflow - The Projen BuildWorkflow to append the complete job to.
|
|
10706
10785
|
*/
|
|
10707
10786
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
10708
10787
|
|
|
@@ -10730,7 +10809,7 @@ declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
|
10730
10809
|
* (e.g. the upgrade workflow). Steps held inside lazy closures
|
|
10731
10810
|
* are skipped — those are reached via pass 1.
|
|
10732
10811
|
*
|
|
10733
|
-
* @param project The project whose GitHub workflows should be patched.
|
|
10812
|
+
* @param project - The project whose GitHub workflows should be patched.
|
|
10734
10813
|
*/
|
|
10735
10814
|
declare function pinPnpmActionSetup(project: Project): void;
|
|
10736
10815
|
|
|
@@ -10778,9 +10857,9 @@ declare function pinPnpmActionSetup(project: Project): void;
|
|
|
10778
10857
|
* untouched. The step's `uses` field is also left alone — this
|
|
10779
10858
|
* helper pins the input, not the action version pin.
|
|
10780
10859
|
*
|
|
10781
|
-
* @param project The project whose GitHub workflows should be patched.
|
|
10860
|
+
* @param project - The project whose GitHub workflows should be patched.
|
|
10782
10861
|
*/
|
|
10783
10862
|
declare function pinSetupNodeVersion(project: Project): void;
|
|
10784
10863
|
|
|
10785
10864
|
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, DEFAULT_AC_THRESHOLDS, DEFAULT_AGENT_PATHS, DEFAULT_AGENT_TIERS, DEFAULT_API_EXTRACTOR_CONFIG_FILE, DEFAULT_API_EXTRACTOR_ENTRY_POINT, DEFAULT_API_EXTRACTOR_REPORT_FILENAME, DEFAULT_API_EXTRACTOR_REPORT_FOLDER, DEFAULT_AUDIT_REPORT_DIR, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, DEFAULT_ISSUE_PRIORITY, DEFAULT_ISSUE_STATUS, DEFAULT_ISSUE_TEMPLATES_BUNDLE_PATH_PATTERNS, DEFAULT_ISSUE_TEMPLATES_EMIT_CHECKER, DEFAULT_ISSUE_TEMPLATES_EMIT_STARTER, DEFAULT_ISSUE_TEMPLATES_ENABLED, DEFAULT_ISSUE_TEMPLATES_PATH, DEFAULT_ISSUE_TEMPLATES_REQUIRE_REFERENCE, DEFAULT_OFF_PEAK_CRON_EXAMPLE, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PRIORITY_LABELS, DEFAULT_PRODUCT_CONTEXT_PATH, DEFAULT_PROGRESS_FILES_ENABLED, DEFAULT_PROGRESS_FILES_FILENAME_PATTERN, DEFAULT_PROGRESS_FILES_FORMAT, DEFAULT_PROGRESS_FILES_STALE_AFTER_HOURS, DEFAULT_PROGRESS_FILES_STATE_DIR, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_SAMPLE_COMPILER_OPTIONS, DEFAULT_SCHEDULED_TASKS_ROOT, DEFAULT_SCHEDULED_TASK_ENTRIES, DEFAULT_SHARED_EDITING_CONFLICT_STRATEGY, DEFAULT_SHARED_EDITING_EMIT_HELPER, DEFAULT_SHARED_EDITING_ENABLED, DEFAULT_SHARED_EDITING_VERIFY_COMMIT, DEFAULT_SHARED_INDEX_PATHS, DEFAULT_SKILL_EVALS_EMIT_RUNNER, DEFAULT_SKILL_EVALS_ENABLED, DEFAULT_SKILL_EVALS_SKILLS_ROOT, DEFAULT_SOURCES_THRESHOLDS, DEFAULT_STATE_FILE_PATH, DEFAULT_STATUS_LABELS, DEFAULT_TEARDOWN_BRANCH_PATTERNS, DEFAULT_TEMPORAL_FRAMING_CADENCES, DEFAULT_TEMPORAL_FRAMING_EMIT_CHECKER, DEFAULT_TEMPORAL_FRAMING_ENABLED, DEFAULT_TEMPORAL_FRAMING_PATHS, DEFAULT_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_UPSTREAM_CONFIGULATOR_ENABLED, DOCS_SYNC_AUDIT_SCHEMA_VERSION, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MAX_LABEL_DESCRIPTION_LENGTH, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, Nvmrc, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStubIndexConventionRuleContent, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, tsdocRecordToFindings, turborepoBundle, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
|
|
10786
|
-
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|
|
10865
|
+
export type { ActivateBranchNameEnvVarOptions, AddStorybookOptions, AgentCommand, AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRegistryEntry, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiDiffCheckOptions, ApiDiffFinding, ApiDiffResult, ApiExtractorOptions, ApiExtractorReportOptions, ApiSurfaceEntry, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedScopeGateBundleOverride, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedTemporalFraming, ResolvedUnblockDependents, RunRatioConfig, RunScanOptions, RunScanResult, SampleCompilationFailure, SampleFailureFinding, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateBundleOverride, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TemporalFramingCategory, TemporalFramingConfig, TsDocCoverageRecord, TsdocConfigOptions, TsdocCoverageCheckOptions, TsdocCoverageFinding, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions };
|