@codedrifters/configulator 0.0.269 → 0.0.271
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 +214 -1
- package/lib/index.d.ts +215 -2
- package/lib/index.js +356 -13
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +355 -15
- package/lib/index.mjs.map +1 -1
- package/package.json +7 -3
package/lib/index.d.mts
CHANGED
|
@@ -6329,6 +6329,219 @@ interface AwsOrganization {
|
|
|
6329
6329
|
accounts: Array<AwsAccount>;
|
|
6330
6330
|
}
|
|
6331
6331
|
|
|
6332
|
+
/**
|
|
6333
|
+
* One row in the doc reference-extraction report — describes a single
|
|
6334
|
+
* inline-code symbol mention found in a markdown page and whether
|
|
6335
|
+
* that symbol is present in the supplied `knownSymbols` list.
|
|
6336
|
+
*/
|
|
6337
|
+
interface DocReferenceRecord {
|
|
6338
|
+
/**
|
|
6339
|
+
* Path to the markdown file the mention was found in. Resolved
|
|
6340
|
+
* relative to the configured `docsRoot` so reports are stable
|
|
6341
|
+
* across machines (no absolute prefixes leak through).
|
|
6342
|
+
*/
|
|
6343
|
+
readonly docPath: string;
|
|
6344
|
+
/**
|
|
6345
|
+
* 1-indexed line number of the inline-code span in the markdown
|
|
6346
|
+
* source.
|
|
6347
|
+
*/
|
|
6348
|
+
readonly line: number;
|
|
6349
|
+
/**
|
|
6350
|
+
* 1-indexed column where the inline-code span starts (the position
|
|
6351
|
+
* of the opening backtick).
|
|
6352
|
+
*/
|
|
6353
|
+
readonly column: number;
|
|
6354
|
+
/**
|
|
6355
|
+
* The exact symbol text inside the backticks, e.g. `analyzeTsDocCoverage`.
|
|
6356
|
+
* Whitespace inside the inline-code span is preserved as-is and
|
|
6357
|
+
* the candidate is included only when it matches the configured
|
|
6358
|
+
* identifier pattern.
|
|
6359
|
+
*/
|
|
6360
|
+
readonly symbol: string;
|
|
6361
|
+
/**
|
|
6362
|
+
* `true` when the symbol appears in the supplied `knownSymbols`
|
|
6363
|
+
* set. The downstream scan phase (#519) treats `false` as an
|
|
6364
|
+
* orphan reference candidate (advisory).
|
|
6365
|
+
*/
|
|
6366
|
+
readonly isKnown: boolean;
|
|
6367
|
+
}
|
|
6368
|
+
/**
|
|
6369
|
+
* Options accepted by {@link extractDocReferences}.
|
|
6370
|
+
*/
|
|
6371
|
+
interface ExtractDocReferencesOptions {
|
|
6372
|
+
/**
|
|
6373
|
+
* Absolute path to the docs root that should be walked for
|
|
6374
|
+
* `*.md` files. Defaults to `docs/src/content/docs/` relative
|
|
6375
|
+
* to the current working directory when omitted.
|
|
6376
|
+
*
|
|
6377
|
+
* @default "docs/src/content/docs"
|
|
6378
|
+
*/
|
|
6379
|
+
readonly docsRoot?: string;
|
|
6380
|
+
/**
|
|
6381
|
+
* List of known public symbols to cross-index inline-code
|
|
6382
|
+
* mentions against. Typically the `symbol` column of the
|
|
6383
|
+
* report returned by `analyzeTsDocCoverage()` plus, optionally,
|
|
6384
|
+
* any extra names sourced from the api-extractor `.api.md`
|
|
6385
|
+
* rollup. Order is irrelevant; duplicates are deduplicated.
|
|
6386
|
+
*/
|
|
6387
|
+
readonly knownSymbols?: ReadonlyArray<string>;
|
|
6388
|
+
/**
|
|
6389
|
+
* Regular expression a candidate must match to be considered a
|
|
6390
|
+
* TypeScript-identifier-shaped symbol. The default rejects
|
|
6391
|
+
* obvious non-symbol prose tokens (paths with slashes, prose
|
|
6392
|
+
* with spaces, lowercase one-letter words) while accepting the
|
|
6393
|
+
* three common identifier shapes used in the monorepo:
|
|
6394
|
+
* camelCase (`analyzeTsDocCoverage`), PascalCase
|
|
6395
|
+
* (`TsDocCoverageRecord`), and UPPER_SNAKE_CASE (`MAX_RETRIES`).
|
|
6396
|
+
*
|
|
6397
|
+
* Override this only if a project uses an unusual identifier
|
|
6398
|
+
* style — a custom pattern that is too permissive will produce
|
|
6399
|
+
* a noisy backlog of false positives.
|
|
6400
|
+
*
|
|
6401
|
+
* @default /^(?:[a-z][a-zA-Z0-9]*|[A-Z][a-zA-Z0-9]*|[A-Z][A-Z0-9_]*)$/
|
|
6402
|
+
*/
|
|
6403
|
+
readonly symbolPattern?: RegExp;
|
|
6404
|
+
}
|
|
6405
|
+
/**
|
|
6406
|
+
* Walks every `*.md` file under the configured docs root and
|
|
6407
|
+
* returns one record per inline-code symbol mention.
|
|
6408
|
+
*
|
|
6409
|
+
* The walker is AST-based — markdown is parsed with
|
|
6410
|
+
* `mdast-util-from-markdown` and only `inlineCode` nodes are
|
|
6411
|
+
* inspected. This means fenced code blocks, indented code blocks,
|
|
6412
|
+
* and HTML comments are skipped natively and never produce false
|
|
6413
|
+
* positives. Mentions inside link text or list items are
|
|
6414
|
+
* extracted normally.
|
|
6415
|
+
*
|
|
6416
|
+
* Candidates are filtered with the configured `symbolPattern`
|
|
6417
|
+
* (defaults to TS-identifier shapes — camelCase, PascalCase,
|
|
6418
|
+
* UPPER_SNAKE_CASE) so prose tokens like flags, file paths, or
|
|
6419
|
+
* multi-word phrases never appear in the report.
|
|
6420
|
+
*
|
|
6421
|
+
* @param options - Extraction options. All fields are optional;
|
|
6422
|
+
* pass an empty object to use defaults.
|
|
6423
|
+
*/
|
|
6424
|
+
declare function extractDocReferences(options?: ExtractDocReferencesOptions): Array<DocReferenceRecord>;
|
|
6425
|
+
|
|
6426
|
+
/**
|
|
6427
|
+
* One row in the TSDoc-coverage report — describes a single public
|
|
6428
|
+
* symbol exported (transitively) from the package's entry point and
|
|
6429
|
+
* the TSDoc presence flags computed for it.
|
|
6430
|
+
*/
|
|
6431
|
+
interface TsDocCoverageRecord {
|
|
6432
|
+
/**
|
|
6433
|
+
* The public name of the symbol as it is exported from the package
|
|
6434
|
+
* entry point (post-rename for `export { X as Y }` re-exports).
|
|
6435
|
+
*/
|
|
6436
|
+
readonly symbol: string;
|
|
6437
|
+
/**
|
|
6438
|
+
* Compiler kind label for the declaration backing the symbol — one
|
|
6439
|
+
* of `Class`, `Interface`, `TypeAlias`, `Enum`, `Function`,
|
|
6440
|
+
* `Variable`, `Module`, `Default`, or `Other`. Useful for grouping
|
|
6441
|
+
* findings in the audit report.
|
|
6442
|
+
*/
|
|
6443
|
+
readonly kind: TsDocCoverageKind;
|
|
6444
|
+
/**
|
|
6445
|
+
* Source location of the underlying declaration (1-indexed line
|
|
6446
|
+
* number, file path absolute on disk).
|
|
6447
|
+
*/
|
|
6448
|
+
readonly location: {
|
|
6449
|
+
readonly file: string;
|
|
6450
|
+
readonly line: number;
|
|
6451
|
+
};
|
|
6452
|
+
/**
|
|
6453
|
+
* `true` when the declaration carries a TSDoc block whose
|
|
6454
|
+
* `summarySection` is non-empty (i.e. there is at least one
|
|
6455
|
+
* paragraph of summary prose).
|
|
6456
|
+
*/
|
|
6457
|
+
readonly hasSummary: boolean;
|
|
6458
|
+
/**
|
|
6459
|
+
* `true` when the declaration carries a summary that exists but is
|
|
6460
|
+
* shorter than the configured `thinSummaryWordThreshold` — useful
|
|
6461
|
+
* for advisory-level findings that do not block.
|
|
6462
|
+
*/
|
|
6463
|
+
readonly hasThinSummary: boolean;
|
|
6464
|
+
/**
|
|
6465
|
+
* `true` when the declaration carries at least one `@param` block
|
|
6466
|
+
* tag. Always `false` for kinds that have no parameters
|
|
6467
|
+
* (`Variable`, `TypeAlias`, etc.).
|
|
6468
|
+
*/
|
|
6469
|
+
readonly hasParams: boolean;
|
|
6470
|
+
/**
|
|
6471
|
+
* `true` when the declaration carries a `@returns` block tag.
|
|
6472
|
+
* Always `false` for kinds without a return value.
|
|
6473
|
+
*/
|
|
6474
|
+
readonly hasReturns: boolean;
|
|
6475
|
+
}
|
|
6476
|
+
/**
|
|
6477
|
+
* Compiler-kind label attached to each coverage record.
|
|
6478
|
+
*/
|
|
6479
|
+
declare const TsDocCoverageKind: {
|
|
6480
|
+
readonly Class: "Class";
|
|
6481
|
+
readonly Interface: "Interface";
|
|
6482
|
+
readonly TypeAlias: "TypeAlias";
|
|
6483
|
+
readonly Enum: "Enum";
|
|
6484
|
+
readonly Function: "Function";
|
|
6485
|
+
readonly Variable: "Variable";
|
|
6486
|
+
readonly Module: "Module";
|
|
6487
|
+
readonly Default: "Default";
|
|
6488
|
+
readonly Other: "Other";
|
|
6489
|
+
};
|
|
6490
|
+
/**
|
|
6491
|
+
* String-literal type matching the values of {@link TsDocCoverageKind}.
|
|
6492
|
+
*/
|
|
6493
|
+
type TsDocCoverageKind = (typeof TsDocCoverageKind)[keyof typeof TsDocCoverageKind];
|
|
6494
|
+
/**
|
|
6495
|
+
* Options accepted by `analyzeTsDocCoverage`.
|
|
6496
|
+
*/
|
|
6497
|
+
interface AnalyzeTsDocCoverageOptions {
|
|
6498
|
+
/**
|
|
6499
|
+
* Absolute path to the package root (the directory that contains
|
|
6500
|
+
* `tsconfig.json` and `src/`).
|
|
6501
|
+
*/
|
|
6502
|
+
readonly packageRoot: string;
|
|
6503
|
+
/**
|
|
6504
|
+
* Entry point relative to `packageRoot`. Defaults to
|
|
6505
|
+
* `src/index.ts` — the convention used by every package in the
|
|
6506
|
+
* monorepo.
|
|
6507
|
+
*
|
|
6508
|
+
* @default "src/index.ts"
|
|
6509
|
+
*/
|
|
6510
|
+
readonly entryPoint?: string;
|
|
6511
|
+
/**
|
|
6512
|
+
* Word threshold below which a TSDoc summary is flagged as
|
|
6513
|
+
* "thin" (advisory only — does not zero-out `hasSummary`). A
|
|
6514
|
+
* summary with exactly this many words is considered thin.
|
|
6515
|
+
*
|
|
6516
|
+
* @default 4
|
|
6517
|
+
*/
|
|
6518
|
+
readonly thinSummaryWordThreshold?: number;
|
|
6519
|
+
/**
|
|
6520
|
+
* Optional explicit path to a `tsconfig.json`. When omitted, the
|
|
6521
|
+
* utility runs with a built-in compiler-options set tailored for
|
|
6522
|
+
* AST analysis (no emit, ESNext target, NodeNext module
|
|
6523
|
+
* resolution). The built-in options are sufficient for every
|
|
6524
|
+
* coverage scan in the docs-sync pipeline; consumers only set
|
|
6525
|
+
* this when their package uses an unusual module-resolution
|
|
6526
|
+
* strategy that affects symbol resolution.
|
|
6527
|
+
*/
|
|
6528
|
+
readonly tsconfigPath?: string;
|
|
6529
|
+
}
|
|
6530
|
+
/**
|
|
6531
|
+
* Walks a package's public exports, transitively resolving
|
|
6532
|
+
* `export *` and `export { X } from "..."` re-exports through the
|
|
6533
|
+
* TypeScript compiler API, and reports TSDoc presence flags for
|
|
6534
|
+
* every public symbol.
|
|
6535
|
+
*
|
|
6536
|
+
* Internal symbols (anything not transitively re-exported from
|
|
6537
|
+
* `entryPoint`) never appear in the result — the report describes
|
|
6538
|
+
* the package's *public surface area*, not its internal modules.
|
|
6539
|
+
*
|
|
6540
|
+
* @param options - Either an options object or, as a shorthand, the
|
|
6541
|
+
* absolute path to the package root.
|
|
6542
|
+
*/
|
|
6543
|
+
declare function analyzeTsDocCoverage(options: AnalyzeTsDocCoverageOptions | string): Array<TsDocCoverageRecord>;
|
|
6544
|
+
|
|
6332
6545
|
/**
|
|
6333
6546
|
* Returns the latest full-release version of an npm package that has been
|
|
6334
6547
|
* published for at least `minimumReleaseAgeMinutes` minutes. Prefers the
|
|
@@ -8228,4 +8441,4 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
8228
8441
|
*/
|
|
8229
8442
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
8230
8443
|
|
|
8231
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, type DeployWorkflowOptions, type DeploymentMetadata, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, type OrganizationMetadata, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedPreflightPr, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type ResolvedWorkflowDiagrams, type RunRatioConfig, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, type TemplateResolveResult, TestRunner, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, type WorkflowDiagramsConfig, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, classifyIssueScope, classifyRun, companyProfileBundle, customerProfileBundle, docsSyncBundle, extractApiProcedure, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
|
|
8444
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILT_IN_BUNDLES, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CopilotHandoff, type CursorHookAction, type CursorHooksConfig, type CursorSettingsConfig, type CustomDocSection, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type ExtractDocReferencesOptions, type FocusArea, type FocusAreaMatch, type FocusConfig, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type IDependencyResolver, type IssueTemplatesConfig, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, type McpServerConfig, type McpTransport, type MeetingArea, type MeetingScope, type MeetingType, type MeetingTypeKind, type MeetingsConfig, type MergeMethod, type MonorepoLayoutRoot, MonorepoProject, type MonorepoProjectOptions, type OrganizationMetadata, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, type PnpmWorkspaceOptions, type PreflightMergeMethod, type PreflightPrConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, type RemoteCacheOptions, type RepositoryMetadata, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedIssueTemplates, type ResolvedPreflightPr, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedUnblockDependents, type ResolvedWorkflowDiagrams, type RunRatioConfig, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateConfig, type ScopeGateThresholds, type SharedEditingConfig, type SkillEvalsConfig, type SlackMetadata, type SourceTierExamples, type StarlightEditLink, type StarlightLogo, StarlightProject, type StarlightProjectOptions, type StarlightRole, type StarlightSidebarItem, type StarlightSingletonViolation, type StarlightSocialLink, type SyncLabelsOptions, type TemplateResolveResult, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, type WorkflowDiagramsConfig, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, classifyIssueScope, classifyRun, companyProfileBundle, customerProfileBundle, docsSyncBundle, extractApiProcedure, extractDocReferences, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
|
package/lib/index.d.ts
CHANGED
|
@@ -6378,6 +6378,219 @@ interface AwsOrganization {
|
|
|
6378
6378
|
accounts: Array<AwsAccount>;
|
|
6379
6379
|
}
|
|
6380
6380
|
|
|
6381
|
+
/**
|
|
6382
|
+
* One row in the doc reference-extraction report — describes a single
|
|
6383
|
+
* inline-code symbol mention found in a markdown page and whether
|
|
6384
|
+
* that symbol is present in the supplied `knownSymbols` list.
|
|
6385
|
+
*/
|
|
6386
|
+
interface DocReferenceRecord {
|
|
6387
|
+
/**
|
|
6388
|
+
* Path to the markdown file the mention was found in. Resolved
|
|
6389
|
+
* relative to the configured `docsRoot` so reports are stable
|
|
6390
|
+
* across machines (no absolute prefixes leak through).
|
|
6391
|
+
*/
|
|
6392
|
+
readonly docPath: string;
|
|
6393
|
+
/**
|
|
6394
|
+
* 1-indexed line number of the inline-code span in the markdown
|
|
6395
|
+
* source.
|
|
6396
|
+
*/
|
|
6397
|
+
readonly line: number;
|
|
6398
|
+
/**
|
|
6399
|
+
* 1-indexed column where the inline-code span starts (the position
|
|
6400
|
+
* of the opening backtick).
|
|
6401
|
+
*/
|
|
6402
|
+
readonly column: number;
|
|
6403
|
+
/**
|
|
6404
|
+
* The exact symbol text inside the backticks, e.g. `analyzeTsDocCoverage`.
|
|
6405
|
+
* Whitespace inside the inline-code span is preserved as-is and
|
|
6406
|
+
* the candidate is included only when it matches the configured
|
|
6407
|
+
* identifier pattern.
|
|
6408
|
+
*/
|
|
6409
|
+
readonly symbol: string;
|
|
6410
|
+
/**
|
|
6411
|
+
* `true` when the symbol appears in the supplied `knownSymbols`
|
|
6412
|
+
* set. The downstream scan phase (#519) treats `false` as an
|
|
6413
|
+
* orphan reference candidate (advisory).
|
|
6414
|
+
*/
|
|
6415
|
+
readonly isKnown: boolean;
|
|
6416
|
+
}
|
|
6417
|
+
/**
|
|
6418
|
+
* Options accepted by {@link extractDocReferences}.
|
|
6419
|
+
*/
|
|
6420
|
+
interface ExtractDocReferencesOptions {
|
|
6421
|
+
/**
|
|
6422
|
+
* Absolute path to the docs root that should be walked for
|
|
6423
|
+
* `*.md` files. Defaults to `docs/src/content/docs/` relative
|
|
6424
|
+
* to the current working directory when omitted.
|
|
6425
|
+
*
|
|
6426
|
+
* @default "docs/src/content/docs"
|
|
6427
|
+
*/
|
|
6428
|
+
readonly docsRoot?: string;
|
|
6429
|
+
/**
|
|
6430
|
+
* List of known public symbols to cross-index inline-code
|
|
6431
|
+
* mentions against. Typically the `symbol` column of the
|
|
6432
|
+
* report returned by `analyzeTsDocCoverage()` plus, optionally,
|
|
6433
|
+
* any extra names sourced from the api-extractor `.api.md`
|
|
6434
|
+
* rollup. Order is irrelevant; duplicates are deduplicated.
|
|
6435
|
+
*/
|
|
6436
|
+
readonly knownSymbols?: ReadonlyArray<string>;
|
|
6437
|
+
/**
|
|
6438
|
+
* Regular expression a candidate must match to be considered a
|
|
6439
|
+
* TypeScript-identifier-shaped symbol. The default rejects
|
|
6440
|
+
* obvious non-symbol prose tokens (paths with slashes, prose
|
|
6441
|
+
* with spaces, lowercase one-letter words) while accepting the
|
|
6442
|
+
* three common identifier shapes used in the monorepo:
|
|
6443
|
+
* camelCase (`analyzeTsDocCoverage`), PascalCase
|
|
6444
|
+
* (`TsDocCoverageRecord`), and UPPER_SNAKE_CASE (`MAX_RETRIES`).
|
|
6445
|
+
*
|
|
6446
|
+
* Override this only if a project uses an unusual identifier
|
|
6447
|
+
* style — a custom pattern that is too permissive will produce
|
|
6448
|
+
* a noisy backlog of false positives.
|
|
6449
|
+
*
|
|
6450
|
+
* @default /^(?:[a-z][a-zA-Z0-9]*|[A-Z][a-zA-Z0-9]*|[A-Z][A-Z0-9_]*)$/
|
|
6451
|
+
*/
|
|
6452
|
+
readonly symbolPattern?: RegExp;
|
|
6453
|
+
}
|
|
6454
|
+
/**
|
|
6455
|
+
* Walks every `*.md` file under the configured docs root and
|
|
6456
|
+
* returns one record per inline-code symbol mention.
|
|
6457
|
+
*
|
|
6458
|
+
* The walker is AST-based — markdown is parsed with
|
|
6459
|
+
* `mdast-util-from-markdown` and only `inlineCode` nodes are
|
|
6460
|
+
* inspected. This means fenced code blocks, indented code blocks,
|
|
6461
|
+
* and HTML comments are skipped natively and never produce false
|
|
6462
|
+
* positives. Mentions inside link text or list items are
|
|
6463
|
+
* extracted normally.
|
|
6464
|
+
*
|
|
6465
|
+
* Candidates are filtered with the configured `symbolPattern`
|
|
6466
|
+
* (defaults to TS-identifier shapes — camelCase, PascalCase,
|
|
6467
|
+
* UPPER_SNAKE_CASE) so prose tokens like flags, file paths, or
|
|
6468
|
+
* multi-word phrases never appear in the report.
|
|
6469
|
+
*
|
|
6470
|
+
* @param options - Extraction options. All fields are optional;
|
|
6471
|
+
* pass an empty object to use defaults.
|
|
6472
|
+
*/
|
|
6473
|
+
declare function extractDocReferences(options?: ExtractDocReferencesOptions): Array<DocReferenceRecord>;
|
|
6474
|
+
|
|
6475
|
+
/**
|
|
6476
|
+
* One row in the TSDoc-coverage report — describes a single public
|
|
6477
|
+
* symbol exported (transitively) from the package's entry point and
|
|
6478
|
+
* the TSDoc presence flags computed for it.
|
|
6479
|
+
*/
|
|
6480
|
+
interface TsDocCoverageRecord {
|
|
6481
|
+
/**
|
|
6482
|
+
* The public name of the symbol as it is exported from the package
|
|
6483
|
+
* entry point (post-rename for `export { X as Y }` re-exports).
|
|
6484
|
+
*/
|
|
6485
|
+
readonly symbol: string;
|
|
6486
|
+
/**
|
|
6487
|
+
* Compiler kind label for the declaration backing the symbol — one
|
|
6488
|
+
* of `Class`, `Interface`, `TypeAlias`, `Enum`, `Function`,
|
|
6489
|
+
* `Variable`, `Module`, `Default`, or `Other`. Useful for grouping
|
|
6490
|
+
* findings in the audit report.
|
|
6491
|
+
*/
|
|
6492
|
+
readonly kind: TsDocCoverageKind;
|
|
6493
|
+
/**
|
|
6494
|
+
* Source location of the underlying declaration (1-indexed line
|
|
6495
|
+
* number, file path absolute on disk).
|
|
6496
|
+
*/
|
|
6497
|
+
readonly location: {
|
|
6498
|
+
readonly file: string;
|
|
6499
|
+
readonly line: number;
|
|
6500
|
+
};
|
|
6501
|
+
/**
|
|
6502
|
+
* `true` when the declaration carries a TSDoc block whose
|
|
6503
|
+
* `summarySection` is non-empty (i.e. there is at least one
|
|
6504
|
+
* paragraph of summary prose).
|
|
6505
|
+
*/
|
|
6506
|
+
readonly hasSummary: boolean;
|
|
6507
|
+
/**
|
|
6508
|
+
* `true` when the declaration carries a summary that exists but is
|
|
6509
|
+
* shorter than the configured `thinSummaryWordThreshold` — useful
|
|
6510
|
+
* for advisory-level findings that do not block.
|
|
6511
|
+
*/
|
|
6512
|
+
readonly hasThinSummary: boolean;
|
|
6513
|
+
/**
|
|
6514
|
+
* `true` when the declaration carries at least one `@param` block
|
|
6515
|
+
* tag. Always `false` for kinds that have no parameters
|
|
6516
|
+
* (`Variable`, `TypeAlias`, etc.).
|
|
6517
|
+
*/
|
|
6518
|
+
readonly hasParams: boolean;
|
|
6519
|
+
/**
|
|
6520
|
+
* `true` when the declaration carries a `@returns` block tag.
|
|
6521
|
+
* Always `false` for kinds without a return value.
|
|
6522
|
+
*/
|
|
6523
|
+
readonly hasReturns: boolean;
|
|
6524
|
+
}
|
|
6525
|
+
/**
|
|
6526
|
+
* Compiler-kind label attached to each coverage record.
|
|
6527
|
+
*/
|
|
6528
|
+
declare const TsDocCoverageKind: {
|
|
6529
|
+
readonly Class: "Class";
|
|
6530
|
+
readonly Interface: "Interface";
|
|
6531
|
+
readonly TypeAlias: "TypeAlias";
|
|
6532
|
+
readonly Enum: "Enum";
|
|
6533
|
+
readonly Function: "Function";
|
|
6534
|
+
readonly Variable: "Variable";
|
|
6535
|
+
readonly Module: "Module";
|
|
6536
|
+
readonly Default: "Default";
|
|
6537
|
+
readonly Other: "Other";
|
|
6538
|
+
};
|
|
6539
|
+
/**
|
|
6540
|
+
* String-literal type matching the values of {@link TsDocCoverageKind}.
|
|
6541
|
+
*/
|
|
6542
|
+
type TsDocCoverageKind = (typeof TsDocCoverageKind)[keyof typeof TsDocCoverageKind];
|
|
6543
|
+
/**
|
|
6544
|
+
* Options accepted by `analyzeTsDocCoverage`.
|
|
6545
|
+
*/
|
|
6546
|
+
interface AnalyzeTsDocCoverageOptions {
|
|
6547
|
+
/**
|
|
6548
|
+
* Absolute path to the package root (the directory that contains
|
|
6549
|
+
* `tsconfig.json` and `src/`).
|
|
6550
|
+
*/
|
|
6551
|
+
readonly packageRoot: string;
|
|
6552
|
+
/**
|
|
6553
|
+
* Entry point relative to `packageRoot`. Defaults to
|
|
6554
|
+
* `src/index.ts` — the convention used by every package in the
|
|
6555
|
+
* monorepo.
|
|
6556
|
+
*
|
|
6557
|
+
* @default "src/index.ts"
|
|
6558
|
+
*/
|
|
6559
|
+
readonly entryPoint?: string;
|
|
6560
|
+
/**
|
|
6561
|
+
* Word threshold below which a TSDoc summary is flagged as
|
|
6562
|
+
* "thin" (advisory only — does not zero-out `hasSummary`). A
|
|
6563
|
+
* summary with exactly this many words is considered thin.
|
|
6564
|
+
*
|
|
6565
|
+
* @default 4
|
|
6566
|
+
*/
|
|
6567
|
+
readonly thinSummaryWordThreshold?: number;
|
|
6568
|
+
/**
|
|
6569
|
+
* Optional explicit path to a `tsconfig.json`. When omitted, the
|
|
6570
|
+
* utility runs with a built-in compiler-options set tailored for
|
|
6571
|
+
* AST analysis (no emit, ESNext target, NodeNext module
|
|
6572
|
+
* resolution). The built-in options are sufficient for every
|
|
6573
|
+
* coverage scan in the docs-sync pipeline; consumers only set
|
|
6574
|
+
* this when their package uses an unusual module-resolution
|
|
6575
|
+
* strategy that affects symbol resolution.
|
|
6576
|
+
*/
|
|
6577
|
+
readonly tsconfigPath?: string;
|
|
6578
|
+
}
|
|
6579
|
+
/**
|
|
6580
|
+
* Walks a package's public exports, transitively resolving
|
|
6581
|
+
* `export *` and `export { X } from "..."` re-exports through the
|
|
6582
|
+
* TypeScript compiler API, and reports TSDoc presence flags for
|
|
6583
|
+
* every public symbol.
|
|
6584
|
+
*
|
|
6585
|
+
* Internal symbols (anything not transitively re-exported from
|
|
6586
|
+
* `entryPoint`) never appear in the result — the report describes
|
|
6587
|
+
* the package's *public surface area*, not its internal modules.
|
|
6588
|
+
*
|
|
6589
|
+
* @param options - Either an options object or, as a shorthand, the
|
|
6590
|
+
* absolute path to the package root.
|
|
6591
|
+
*/
|
|
6592
|
+
declare function analyzeTsDocCoverage(options: AnalyzeTsDocCoverageOptions | string): Array<TsDocCoverageRecord>;
|
|
6593
|
+
|
|
6381
6594
|
/**
|
|
6382
6595
|
* Returns the latest full-release version of an npm package that has been
|
|
6383
6596
|
* published for at least `minimumReleaseAgeMinutes` minutes. Prefers the
|
|
@@ -8277,5 +8490,5 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
8277
8490
|
*/
|
|
8278
8491
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
8279
8492
|
|
|
8280
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, StarlightProject, TestRunner, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, classifyIssueScope, classifyRun, companyProfileBundle, customerProfileBundle, docsSyncBundle, extractApiProcedure, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
|
|
8281
|
-
export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, ApiExtractorOptions, ApiExtractorReportOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PreflightMergeMethod, PreflightPrConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedPreflightPr, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedUnblockDependents, ResolvedWorkflowDiagrams, RunRatioConfig, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowDiagramsConfig };
|
|
8493
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AgentConfig, ApiExtractor, AstroConfig, AstroOutput, AstroProject, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILT_IN_BUNDLES, 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_DECOMPOSITION_TEMPLATE, DEFAULT_DELEGATE_TO_PR_REVIEWER, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_HOUSEKEEPING_MODEL, 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_MERGE_METHOD, 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_LINKED_ISSUE, DEFAULT_REQUIRE_PRODUCT_CONTEXT, 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_TYPE_LABELS, DEFAULT_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_UNBLOCK_DEPENDENTS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_BUNDLE_PATH_PATTERNS, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_CHECKER, DEFAULT_WORKFLOW_DIAGRAMS_EMIT_STARTER, DEFAULT_WORKFLOW_DIAGRAMS_ENABLED, DEFAULT_WORKFLOW_DIAGRAMS_PATH, DEFAULT_WORKFLOW_DIAGRAMS_REQUIRE_UPDATE, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, MCP_TRANSPORT, MERGE_METHODS, MIMIMUM_RELEASE_AGE, MINIMUM_RELEASE_AGE, MONOREPO_LAYOUT, MonorepoProject, PREFLIGHT_MERGE_METHOD_VALUES, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, StarlightProject, TestRunner, TsDocCoverageKind, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, awsCdkBundle, baseBundle, bcmWriterBundle, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildRegulatoryResearchBundle, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildUnblockDependentsProcedure, businessModelsBundle, classifyIssueScope, classifyRun, companyProfileBundle, customerProfileBundle, docsSyncBundle, extractApiProcedure, extractDocReferences, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubWorkflowBundle, industryDiscoveryBundle, jestBundle, maintenanceAuditBundle, meetingAnalysisBundle, orchestratorBundle, peopleProfileBundle, pnpmBundle, prReviewBundle, projenBundle, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCustomDocSectionBlock, renderCustomDocSections, renderExtractApiProcedure, renderFocusSection, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderMeetingTypesSection, renderPreflightPrSection, renderPreflightPrShellHelpers, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderUnblockDependentsScript, renderUnblockDependentsSection, renderWorkflowDiagramsBundleHook, renderWorkflowDiagramsCheckerScript, renderWorkflowDiagramsRuleContent, renderWorkflowDiagramsStarterPage, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolvePreflightPr, resolveProgressFiles, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTypeScriptProjectOutdir, resolveUnblockDependents, resolveWorkflowDiagrams, slackBundle, softwareProfileBundle, standardsResearchBundle, turborepoBundle, typescriptBundle, validateAgentTierConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePreflightPrConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateUnblockDependentsConfig, validateWorkflowDiagramsConfig, vitestBundle };
|
|
8494
|
+
export type { AgentConfigOptions, AgentExpansionRules, AgentFeaturesConfig, AgentModel, AgentPathsConfig, AgentPlatform, AgentPlatformOverrides, AgentProcedure, AgentRule, AgentRuleBundle, AgentRuleScope, AgentSkill, AgentSubAgent, AgentSubAgentPlatformOverrides, AgentTier, AgentTierConfig, AgentTierEntry, AnalyzeTsDocCoverageOptions, ApiExtractorOptions, ApiExtractorReportOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployWorkflowOptions, DeploymentMetadata, DocReferenceRecord, ExtractDocReferencesOptions, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, IDependencyResolver, IssueTemplatesConfig, LabelDefinition, LayoutEnforcement, LayoutViolation, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoProjectOptions, OrganizationMetadata, PnpmWorkspaceOptions, PreflightMergeMethod, PreflightPrConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, RemoteCacheOptions, RepositoryMetadata, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedIssueTemplates, ResolvedPreflightPr, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRunRatio, ResolvedScheduledTask, ResolvedScheduledTasks, ResolvedScopeGate, ResolvedSharedEditing, ResolvedSkillEvals, ResolvedUnblockDependents, ResolvedWorkflowDiagrams, RunRatioConfig, ScheduledTaskEntry, ScheduledTaskModel, ScheduledTaskOverride, ScheduledTasksConfig, ScopeClass, ScopeGateConfig, ScopeGateThresholds, SharedEditingConfig, SkillEvalsConfig, SlackMetadata, SourceTierExamples, StarlightEditLink, StarlightLogo, StarlightProjectOptions, StarlightRole, StarlightSidebarItem, StarlightSingletonViolation, StarlightSocialLink, SyncLabelsOptions, TemplateResolveResult, TsDocCoverageRecord, TurboRepoOptions, TurboRepoTaskOptions, TypeScriptProjectOptions, UnblockDependentsConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowDiagramsConfig };
|