@codedrifters/configulator 0.0.450 → 0.0.452

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.ts CHANGED
@@ -8169,7 +8169,8 @@ declare class AstroConfig extends Component {
8169
8169
  * `as const` enums for the `cdk` CLI surface. Phase 1 covered `cdk deploy`;
8170
8170
  * Phase 2 adds the enum needed by `cdk diff`; Phase 3 adds the enums needed by
8171
8171
  * `cdk gc`; Phase 4 adds the enums needed by `cdk init` (and reused by `cdk
8172
- * migrate`).
8172
+ * migrate`); Phase 5 brings the surface up to aws-cdk CLI 2.1136.0 (the pinned
8173
+ * version) plus the additions that landed in 2.1137/2.1138.
8173
8174
  *
8174
8175
  ******************************************************************************/
8175
8176
  /**
@@ -8198,11 +8199,21 @@ declare const CDK_DEPLOY_METHOD: {
8198
8199
  */
8199
8200
  type CdkDeployMethod = (typeof CDK_DEPLOY_METHOD)[keyof typeof CDK_DEPLOY_METHOD];
8200
8201
  /**
8201
- * `--progress` values accepted by `cdk deploy`.
8202
+ * `--progress` values accepted by `cdk deploy` and `cdk watch`.
8203
+ *
8204
+ * `ErrorsOnly` displays nothing except errors — upstream recommends it for AI
8205
+ * agents and other consumers that do not benefit from continuous progress
8206
+ * updates.
8207
+ *
8208
+ * **CLI version note:** `ErrorsOnly` requires aws-cdk CLI **2.1137.0 or
8209
+ * later**. This repository currently pins 2.1136.0, which rejects
8210
+ * `--progress=errors-only`. Consumers on the pinned version should stay on
8211
+ * `Bar` or `Events` until the pin advances.
8202
8212
  */
8203
8213
  declare const CDK_PROGRESS: {
8204
8214
  readonly Bar: "bar";
8205
8215
  readonly Events: "events";
8216
+ readonly ErrorsOnly: "errors-only";
8206
8217
  };
8207
8218
  /**
8208
8219
  * Type for {@link CDK_PROGRESS} values.
@@ -8274,6 +8285,39 @@ declare const CDK_INIT_LANGUAGE: {
8274
8285
  * Type for {@link CDK_INIT_LANGUAGE} values.
8275
8286
  */
8276
8287
  type CdkInitLanguage = (typeof CDK_INIT_LANGUAGE)[keyof typeof CDK_INIT_LANGUAGE];
8288
+ /**
8289
+ * `--package-manager` values accepted by `cdk init`.
8290
+ *
8291
+ * Only applicable to TypeScript and JavaScript projects; the CLI defaults to
8292
+ * `npm` for those and ignores the flag for every other language.
8293
+ */
8294
+ declare const CDK_INIT_PACKAGE_MANAGER: {
8295
+ readonly Npm: "npm";
8296
+ readonly Yarn: "yarn";
8297
+ readonly Pnpm: "pnpm";
8298
+ readonly Bun: "bun";
8299
+ };
8300
+ /**
8301
+ * Type for {@link CDK_INIT_PACKAGE_MANAGER} values.
8302
+ */
8303
+ type CdkInitPackageManager = (typeof CDK_INIT_PACKAGE_MANAGER)[keyof typeof CDK_INIT_PACKAGE_MANAGER];
8304
+ /**
8305
+ * `--from-scan` values accepted by `cdk migrate` — whether to start a new
8306
+ * CloudFormation resource scan or reuse the last successful one.
8307
+ *
8308
+ * Upstream declares `--from-scan` as a free-form `string` option and documents
8309
+ * the two accepted values only in the flag description rather than as a yargs
8310
+ * `choices` array. This enum pins that documented pair so callers cannot
8311
+ * render an invocation the CLI will reject.
8312
+ */
8313
+ declare const CDK_MIGRATE_FROM_SCAN: {
8314
+ readonly New: "new";
8315
+ readonly MostRecent: "most-recent";
8316
+ };
8317
+ /**
8318
+ * Type for {@link CDK_MIGRATE_FROM_SCAN} values.
8319
+ */
8320
+ type CdkMigrateFromScan = (typeof CDK_MIGRATE_FROM_SCAN)[keyof typeof CDK_MIGRATE_FROM_SCAN];
8277
8321
 
8278
8322
  /*******************************************************************************
8279
8323
  *
@@ -8284,9 +8328,11 @@ type CdkInitLanguage = (typeof CDK_INIT_LANGUAGE)[keyof typeof CDK_INIT_LANGUAGE
8284
8328
  * adds the maintenance / lifecycle commands `rollback`, `import`, `gc`,
8285
8329
  * `drift`, `refactor`, `publish-assets`, and `orphan`; Phase 4 adds the
8286
8330
  * inspection / scaffolding commands `init`, `migrate`, `context`, `metadata`,
8287
- * `flags`, `acknowledge`, `notices`, `doctor`, and `docs`. Every
8288
- * command-specific interface inherits {@link CdkGlobalOptions} so it carries
8289
- * the same global flag surface.
8331
+ * `flags`, `acknowledge`, `notices`, `doctor`, and `docs`; Phase 5 brings the
8332
+ * surface level with aws-cdk CLI 2.1136.0 (the pinned version) and adds
8333
+ * `validate`, `lsp`, `diagnose`, and `cli-telemetry`. Every command-specific
8334
+ * interface inherits {@link CdkGlobalOptions} so it carries the same global
8335
+ * flag surface.
8290
8336
  *
8291
8337
  * Every boolean field is tri-state (`boolean | undefined`):
8292
8338
  * - `undefined` → the renderer emits nothing, and the CLI's own default
@@ -8314,6 +8360,15 @@ interface CdkGlobalOptions {
8314
8360
  * `--profile` — named AWS profile from `~/.aws/credentials`.
8315
8361
  */
8316
8362
  readonly profile?: string;
8363
+ /**
8364
+ * `--region` — AWS region to use as the default environment region.
8365
+ *
8366
+ * Also carries `cdk migrate`'s region flag: the CLI declares `--region` both
8367
+ * globally and on `migrate`, where it names the region to retrieve the
8368
+ * source CloudFormation stack template from. See
8369
+ * {@link CdkMigrateOptions}.
8370
+ */
8371
+ readonly region?: string;
8317
8372
  /**
8318
8373
  * `--lookups` — whether the CLI may perform context lookups against the
8319
8374
  * target environment.
@@ -8334,9 +8389,24 @@ interface CdkGlobalOptions {
8334
8389
  */
8335
8390
  readonly verbose?: number;
8336
8391
  /**
8337
- * `--debug` — enable debug output.
8392
+ * `--debug` — enable debug output for both the CDK app and the CDK CLI.
8393
+ *
8394
+ * Upstream split the original single `--debug` switch into
8395
+ * {@link debugApp} and {@link debugCli}; `--debug` now implies both. Set
8396
+ * this when you want the pair, or set the narrower fields individually.
8397
+ * Significantly slows synthesis.
8338
8398
  */
8339
8399
  readonly debug?: boolean;
8400
+ /**
8401
+ * `--debug-app` — debug the CDK app only. Logs additional information during
8402
+ * synthesis (creation stack traces) and sets the `CDK_DEBUG` environment
8403
+ * variable. Implied by {@link debug}. Slows synthesis.
8404
+ */
8405
+ readonly debugApp?: boolean;
8406
+ /**
8407
+ * `--debug-cli` — debug the CDK CLI itself. Implied by {@link debug}.
8408
+ */
8409
+ readonly debugCli?: boolean;
8340
8410
  /**
8341
8411
  * `--ci` — non-interactive CI mode.
8342
8412
  */
@@ -8457,9 +8527,23 @@ interface CdkDeployOptions extends CdkGlobalOptions {
8457
8527
  * `--rollback` / `--no-rollback` — roll back the stack on failure.
8458
8528
  *
8459
8529
  * Tri-state: `true` enables rollback, `false` disables it (useful in dev for
8460
- * fast iteration), `undefined` defers to the CLI default.
8530
+ * fast iteration), `undefined` defers to the CLI default. The CLI default is
8531
+ * `true` for normal deployments but `false` under {@link express}.
8461
8532
  */
8462
8533
  readonly rollback?: boolean;
8534
+ /**
8535
+ * `--express` — deploy via CloudFormation express mode, a faster deployment
8536
+ * mode that skips resource stabilization.
8537
+ *
8538
+ * Express mode is oriented at dev iteration, not production: it does not
8539
+ * wait for resources to stabilize, and it flips the CLI's {@link rollback}
8540
+ * default from `true` to `false`. Set `rollback` explicitly alongside
8541
+ * `express` if you want rollback behaviour that does not depend on which
8542
+ * mode is active.
8543
+ *
8544
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html
8545
+ */
8546
+ readonly express?: boolean;
8463
8547
  /**
8464
8548
  * `--hotswap` — apply changes directly to running resources without going
8465
8549
  * through CloudFormation when possible.
@@ -8474,6 +8558,24 @@ interface CdkDeployOptions extends CdkGlobalOptions {
8474
8558
  * hotswap is not possible.
8475
8559
  */
8476
8560
  readonly hotswapFallback?: boolean;
8561
+ /**
8562
+ * `--hotswap-ecs-minimum-healthy-percent` — lower limit on the number of an
8563
+ * ECS service's tasks that must stay `RUNNING` during a hotswap deployment,
8564
+ * as a percentage of `desiredCount`.
8565
+ */
8566
+ readonly hotswapEcsMinimumHealthyPercent?: number;
8567
+ /**
8568
+ * `--hotswap-ecs-maximum-healthy-percent` — upper limit on the number of an
8569
+ * ECS service's tasks allowed in the `RUNNING` or `PENDING` state during a
8570
+ * hotswap deployment, as a percentage of `desiredCount`.
8571
+ */
8572
+ readonly hotswapEcsMaximumHealthyPercent?: number;
8573
+ /**
8574
+ * `--hotswap-ecs-stabilization-timeout-seconds` — how long to wait for a
8575
+ * single ECS service to reach a stable state (`runningCount` equal to
8576
+ * `desiredCount`) during a hotswap deployment.
8577
+ */
8578
+ readonly hotswapEcsStabilizationTimeoutSeconds?: number;
8477
8579
  /**
8478
8580
  * `--method` — how the deployment is performed (change-set vs direct).
8479
8581
  */
@@ -8515,6 +8617,11 @@ interface CdkDeployOptions extends CdkGlobalOptions {
8515
8617
  * `--concurrency` — number of stacks to deploy in parallel.
8516
8618
  */
8517
8619
  readonly concurrency?: number;
8620
+ /**
8621
+ * `--asset-build-concurrency` — maximum number of asset builds to run in
8622
+ * parallel. CLI default is `1`.
8623
+ */
8624
+ readonly assetBuildConcurrency?: number;
8518
8625
  /**
8519
8626
  * `--asset-parallelism` — upload assets in parallel.
8520
8627
  */
@@ -8637,6 +8744,24 @@ interface CdkWatchOptions extends CdkGlobalOptions {
8637
8744
  * `true`; supply `false` to disable.
8638
8745
  */
8639
8746
  readonly hotswap?: boolean;
8747
+ /**
8748
+ * `--hotswap-ecs-minimum-healthy-percent` — lower limit on the number of an
8749
+ * ECS service's tasks that must stay `RUNNING` during a hotswap deployment,
8750
+ * as a percentage of `desiredCount`.
8751
+ */
8752
+ readonly hotswapEcsMinimumHealthyPercent?: number;
8753
+ /**
8754
+ * `--hotswap-ecs-maximum-healthy-percent` — upper limit on the number of an
8755
+ * ECS service's tasks allowed in the `RUNNING` or `PENDING` state during a
8756
+ * hotswap deployment, as a percentage of `desiredCount`.
8757
+ */
8758
+ readonly hotswapEcsMaximumHealthyPercent?: number;
8759
+ /**
8760
+ * `--hotswap-ecs-stabilization-timeout-seconds` — how long to wait for a
8761
+ * single ECS service to reach a stable state (`runningCount` equal to
8762
+ * `desiredCount`) during a hotswap deployment.
8763
+ */
8764
+ readonly hotswapEcsStabilizationTimeoutSeconds?: number;
8640
8765
  /**
8641
8766
  * `--hotswap-fallback` — fall back to a full CloudFormation deployment when
8642
8767
  * a hotswap is not possible.
@@ -8685,6 +8810,16 @@ interface CdkDestroyOptions extends CdkGlobalOptions {
8685
8810
  * dependencies.
8686
8811
  */
8687
8812
  readonly exclusively?: boolean;
8813
+ /**
8814
+ * `--express` — tear the stack(s) down via CloudFormation express mode, a
8815
+ * faster teardown mode that skips resource stabilization and disables
8816
+ * automatic rollback by default.
8817
+ *
8818
+ * Oriented at dev iteration rather than production teardown.
8819
+ *
8820
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html
8821
+ */
8822
+ readonly express?: boolean;
8688
8823
  /**
8689
8824
  * `--force` — skip the confirmation prompt before destroying.
8690
8825
  */
@@ -8718,6 +8853,16 @@ interface CdkDiffOptions extends CdkGlobalOptions {
8718
8853
  * `--fail` — fail with a non-zero exit code when differences are detected.
8719
8854
  */
8720
8855
  readonly fail?: boolean;
8856
+ /**
8857
+ * `--import-existing-resources` — whether the change set the diff models
8858
+ * imports resources that already exist. CLI default is `false`.
8859
+ */
8860
+ readonly importExistingResources?: boolean;
8861
+ /**
8862
+ * `--include-moves` — include resource moves in the diff output. CLI default
8863
+ * is `false`.
8864
+ */
8865
+ readonly includeMoves?: boolean;
8721
8866
  /**
8722
8867
  * `--method` — how the diff is computed.
8723
8868
  */
@@ -8775,6 +8920,12 @@ interface CdkBootstrapOptions extends CdkGlobalOptions {
8775
8920
  * attach to the bootstrap roles.
8776
8921
  */
8777
8922
  readonly customPermissionsBoundary?: string;
8923
+ /**
8924
+ * `--deny-external-id` — block `AssumeRole` access to every bootstrapped
8925
+ * role when an `ExternalId` is supplied. Enabled by default in the CLI;
8926
+ * supply `false` to allow it.
8927
+ */
8928
+ readonly denyExternalId?: boolean;
8778
8929
  /**
8779
8930
  * `--example-permissions-boundary` — install the example permissions
8780
8931
  * boundary shipped with the CDK.
@@ -8784,10 +8935,26 @@ interface CdkBootstrapOptions extends CdkGlobalOptions {
8784
8935
  * `--execute` — execute the bootstrap change set immediately.
8785
8936
  */
8786
8937
  readonly execute?: boolean;
8938
+ /**
8939
+ * `--express` — create the bootstrap stack via CloudFormation express mode,
8940
+ * a faster mode that skips resource stabilization and disables automatic
8941
+ * rollback by default.
8942
+ *
8943
+ * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html
8944
+ */
8945
+ readonly express?: boolean;
8787
8946
  /**
8788
8947
  * `--force` — force re-bootstrap even when the bootstrap stack is current.
8789
8948
  */
8790
8949
  readonly force?: boolean;
8950
+ /**
8951
+ * `--import-existing-resources` — import resources that already exist into
8952
+ * the bootstrap stack rather than failing on the collision.
8953
+ *
8954
+ * Note the CLI default here is **`true`**, unlike the same-named flag on
8955
+ * `cdk deploy` and `cdk diff`, which default to `false`.
8956
+ */
8957
+ readonly importExistingResources?: boolean;
8791
8958
  /**
8792
8959
  * `--previous-parameters` — use previous parameter values for any parameters
8793
8960
  * not explicitly supplied.
@@ -8837,6 +9004,12 @@ interface CdkBootstrapOptions extends CdkGlobalOptions {
8837
9004
  * per entry.
8838
9005
  */
8839
9006
  readonly trustForLookup?: Array<string>;
9007
+ /**
9008
+ * `--untrust` — AWS account IDs that should **not** be trusted by this
9009
+ * bootstrap environment. Repeats one `--untrust` flag per entry.
9010
+ * Modern bootstrapping only.
9011
+ */
9012
+ readonly untrust?: Array<string>;
8840
9013
  }
8841
9014
  /**
8842
9015
  * Options for the `cdk list` / `cdk ls` command.
@@ -8912,6 +9085,15 @@ interface CdkImportOptions extends CdkGlobalOptions {
8912
9085
  * would normally block it.
8913
9086
  */
8914
9087
  readonly force?: boolean;
9088
+ /**
9089
+ * `--notification-arns` — SNS topic ARNs CloudFormation notifies with
9090
+ * stack-related events. Repeats one `--notification-arns` flag per entry.
9091
+ *
9092
+ * **CLI version note:** requires aws-cdk CLI **2.1138.0 or later**. This
9093
+ * repository currently pins 2.1136.0, which does not accept the flag on
9094
+ * `cdk import`.
9095
+ */
9096
+ readonly notificationArns?: Array<string>;
8915
9097
  /**
8916
9098
  * `--record-resource-mapping` — write the resolved logical-id → physical-id
8917
9099
  * mapping to the given path for later reuse.
@@ -8922,6 +9104,13 @@ interface CdkImportOptions extends CdkGlobalOptions {
8922
9104
  * given path instead of prompting interactively.
8923
9105
  */
8924
9106
  readonly resourceMapping?: string;
9107
+ /**
9108
+ * `--resource-mapping-inline` — inline JSON resource mapping, e.g.
9109
+ * `{"MyResource":{"TableName":"my-table"}}`. Alternative to
9110
+ * {@link resourceMapping} when the mapping is short enough to pass on the
9111
+ * command line rather than through a file.
9112
+ */
9113
+ readonly resourceMappingInline?: string;
8925
9114
  /**
8926
9115
  * `--rollback` / `--no-rollback` — roll back the stack on failure.
8927
9116
  *
@@ -8957,6 +9146,10 @@ interface CdkGcOptions extends CdkGlobalOptions {
8957
9146
  /**
8958
9147
  * `--bootstrap-stack-name` — name of the bootstrap stack whose assets are
8959
9148
  * being garbage collected.
9149
+ *
9150
+ * @deprecated Upstream deprecated `--bootstrap-stack-name` in favour of
9151
+ * {@link toolkitStackName}, and the CLI rejects an invocation that supplies
9152
+ * both (they are declared as mutually exclusive). Use `toolkitStackName`.
8960
9153
  */
8961
9154
  readonly bootstrapStackName?: string;
8962
9155
  /**
@@ -8973,6 +9166,12 @@ interface CdkGcOptions extends CdkGlobalOptions {
8973
9166
  * deleting them so a rollback can recover them.
8974
9167
  */
8975
9168
  readonly rollbackBufferDays?: number;
9169
+ /**
9170
+ * `--toolkit-stack-name` — name of the CDK toolkit stack, when it differs
9171
+ * from the default `CDKToolkit`. Replaces the deprecated
9172
+ * {@link bootstrapStackName}; supplying both is rejected by the CLI.
9173
+ */
9174
+ readonly toolkitStackName?: string;
8976
9175
  /**
8977
9176
  * `--type` — restrict garbage collection to a particular asset type.
8978
9177
  */
@@ -9025,6 +9224,11 @@ interface CdkRefactorOptions extends CdkGlobalOptions {
9025
9224
  * out.
9026
9225
  */
9027
9226
  readonly force?: boolean;
9227
+ /**
9228
+ * `--toolkit-stack-name` — name of the existing CDK toolkit stack, used to
9229
+ * find the staging bucket for templates too large to send inline.
9230
+ */
9231
+ readonly toolkitStackName?: string;
9028
9232
  }
9029
9233
  /**
9030
9234
  * Options for the `cdk publish-assets` command.
@@ -9109,9 +9313,42 @@ interface CdkInitOptions extends CdkGlobalOptions {
9109
9313
  * post-scaffold steps (e.g. `git init`, dependency install).
9110
9314
  */
9111
9315
  readonly generateOnly?: boolean;
9316
+ /**
9317
+ * `--lib-version` — version of `aws-cdk-lib` to initialise built-in
9318
+ * templates with. Defaults to whatever was current when the CLI was built.
9319
+ *
9320
+ * The CLI rejects this alongside {@link fromPath}.
9321
+ */
9322
+ readonly libVersion?: string;
9323
+ /**
9324
+ * `--from-path` — path to a local custom template directory or
9325
+ * multi-template repository. Mutually exclusive with {@link libVersion}.
9326
+ */
9327
+ readonly fromPath?: string;
9328
+ /**
9329
+ * `--template-path` — path to a specific template inside a multi-template
9330
+ * repository. The CLI only accepts this alongside {@link fromPath}.
9331
+ */
9332
+ readonly templatePath?: string;
9333
+ /**
9334
+ * `--package-manager` — package manager used to install dependencies. Only
9335
+ * applies to TypeScript and JavaScript projects, where the CLI defaults to
9336
+ * `npm`.
9337
+ */
9338
+ readonly packageManager?: CdkInitPackageManager;
9339
+ /**
9340
+ * `--project-name` — name of the new project.
9341
+ */
9342
+ readonly projectName?: string;
9112
9343
  }
9113
9344
  /**
9114
9345
  * Options for the `cdk migrate` command.
9346
+ *
9347
+ * The CLI declares `--region` both globally and on `migrate`, where it names
9348
+ * the region to retrieve the source CloudFormation stack template from. That
9349
+ * flag is modelled once, as the inherited {@link CdkGlobalOptions.region}
9350
+ * field, so a rendered `migrate` invocation carries exactly one `--region`
9351
+ * token.
9115
9352
  */
9116
9353
  interface CdkMigrateOptions extends CdkGlobalOptions {
9117
9354
  /*****************************************************************************
@@ -9133,10 +9370,6 @@ interface CdkMigrateOptions extends CdkGlobalOptions {
9133
9370
  * `--account` — AWS account ID hosting the source resources.
9134
9371
  */
9135
9372
  readonly account?: string;
9136
- /**
9137
- * `--region` — AWS region hosting the source resources.
9138
- */
9139
- readonly region?: string;
9140
9373
  /**
9141
9374
  * `--from-path` — path to a CloudFormation template file to migrate from.
9142
9375
  */
@@ -9146,9 +9379,13 @@ interface CdkMigrateOptions extends CdkGlobalOptions {
9146
9379
  */
9147
9380
  readonly fromStack?: boolean;
9148
9381
  /**
9149
- * `--from-scan` — migrate by initiating a CloudFormation resource scan.
9382
+ * `--from-scan` — whether to start a new CloudFormation resource scan
9383
+ * (`"new"`) or reuse the last successful one (`"most-recent"`).
9384
+ *
9385
+ * The CLI flag is value-taking, so this field is an enum rather than a
9386
+ * tri-state boolean.
9150
9387
  */
9151
- readonly fromScan?: boolean;
9388
+ readonly fromScan?: CdkMigrateFromScan;
9152
9389
  /**
9153
9390
  * `--output-path` — directory to write the generated CDK app into.
9154
9391
  */
@@ -9211,23 +9448,37 @@ interface CdkMetadataOptions extends CdkGlobalOptions {
9211
9448
  * Options for the `cdk flags` command.
9212
9449
  */
9213
9450
  interface CdkFlagsOptions extends CdkGlobalOptions {
9451
+ /*****************************************************************************
9452
+ *
9453
+ * Flags-specific positional arguments
9454
+ *
9455
+ ****************************************************************************/
9456
+ /**
9457
+ * Positional `<FLAGNAME>` arguments naming the feature flags to view or
9458
+ * modify. Variadic — the CLI accepts zero or more. Rendered last, after the
9459
+ * trailing tokens, mirroring `cdk orphan`'s positional logical IDs.
9460
+ */
9461
+ readonly flagNames?: Array<string>;
9214
9462
  /*****************************************************************************
9215
9463
  *
9216
9464
  * Flags-specific flags
9217
9465
  *
9218
9466
  ****************************************************************************/
9219
9467
  /**
9220
- * `--value=FLAG` — print the configured value of a single feature flag.
9221
- * The CLI's `--value` flag is value-taking, so this field is typed as
9222
- * `string | undefined`.
9468
+ * `--value=VALUE` — the value to set the targeted feature flag to. Paired
9469
+ * with {@link set} and the {@link flagNames} positional; the CLI's `--value`
9470
+ * flag is value-taking, so this field is typed as `string | undefined`.
9223
9471
  */
9224
9472
  readonly value?: string;
9225
9473
  /**
9226
- * `--set=FLAG=VALUE` — set a feature flag to the given value. The CLI's
9227
- * `--set` flag is value-taking, so this field is typed as
9228
- * `string | undefined`.
9474
+ * `--set` — signals the intent to modify the feature-flag configuration.
9475
+ *
9476
+ * The CLI's `--set` is a plain boolean switch, **not** a value-taking
9477
+ * `--set=FLAG=VALUE` flag: the flag to change comes from the
9478
+ * {@link flagNames} positional and the new value from {@link value}. A
9479
+ * complete invocation looks like `cdk flags --set --value=true MyFlag`.
9229
9480
  */
9230
- readonly set?: string;
9481
+ readonly set?: boolean;
9231
9482
  /**
9232
9483
  * `--all` — include every known feature flag in the output.
9233
9484
  */
@@ -9282,12 +9533,18 @@ interface CdkAcknowledgeOptions extends CdkGlobalOptions {
9282
9533
  }
9283
9534
  /**
9284
9535
  * Options for the `cdk notices` command.
9285
- *
9286
- * `cdk notices` has no command-specific flags beyond the inherited globals.
9287
- * Surfaced as an empty interface so the renderer signature stays uniform
9288
- * with the rest of the command surface.
9289
9536
  */
9290
9537
  interface CdkNoticesOptions extends CdkGlobalOptions {
9538
+ /*****************************************************************************
9539
+ *
9540
+ * Notices-specific flags
9541
+ *
9542
+ ****************************************************************************/
9543
+ /**
9544
+ * `--unacknowledged` (`-u`) — list only notices that have not been
9545
+ * acknowledged yet.
9546
+ */
9547
+ readonly unacknowledged?: boolean;
9291
9548
  }
9292
9549
  /**
9293
9550
  * Options for the `cdk doctor` command.
@@ -9300,12 +9557,121 @@ interface CdkDoctorOptions extends CdkGlobalOptions {
9300
9557
  }
9301
9558
  /**
9302
9559
  * Options for the `cdk docs` (`doc`) command.
9303
- *
9304
- * `cdk docs` has no command-specific flags beyond the inherited globals.
9305
- * Surfaced as an empty interface so the renderer signature stays uniform
9306
- * with the rest of the command surface.
9307
9560
  */
9308
9561
  interface CdkDocsOptions extends CdkGlobalOptions {
9562
+ /*****************************************************************************
9563
+ *
9564
+ * Docs-specific flags
9565
+ *
9566
+ ****************************************************************************/
9567
+ /**
9568
+ * `--browser` (`-b`) — command used to open the browser, with `%u` as the
9569
+ * placeholder for the path to open.
9570
+ *
9571
+ * Left unset by default: the CLI's own default is resolved per platform at
9572
+ * run time, so baking a value here would override a platform-correct choice.
9573
+ */
9574
+ readonly browser?: string;
9575
+ }
9576
+ /**
9577
+ * Options for the `cdk validate` command — validates synthesized
9578
+ * CloudFormation templates against policy rules.
9579
+ *
9580
+ * Takes a variadic `STACKS` positional, carried by the inherited
9581
+ * {@link CdkGlobalOptions.stackPatterns} field.
9582
+ */
9583
+ interface CdkValidateOptions extends CdkGlobalOptions {
9584
+ /*****************************************************************************
9585
+ *
9586
+ * Validate-specific flags
9587
+ *
9588
+ ****************************************************************************/
9589
+ /**
9590
+ * `--online` — submit templates to CloudFormation for early validation.
9591
+ * Requires AWS credentials. CLI default is `true`; supply `false` to run
9592
+ * offline-only validation.
9593
+ */
9594
+ readonly online?: boolean;
9595
+ /**
9596
+ * `--watch` — continuously observe project files and re-validate the given
9597
+ * stacks when changes are detected. Never deploys. Consider pairing with
9598
+ * `online: false` to skip CloudFormation validation on every change.
9599
+ */
9600
+ readonly watch?: boolean;
9601
+ }
9602
+ /**
9603
+ * Options for the `cdk lsp` command — starts the CDK Language Server over
9604
+ * stdio for editor and AI-agent integration.
9605
+ *
9606
+ * Takes no positional arguments.
9607
+ */
9608
+ interface CdkLspOptions extends CdkGlobalOptions {
9609
+ /*****************************************************************************
9610
+ *
9611
+ * Lsp-specific flags
9612
+ *
9613
+ ****************************************************************************/
9614
+ /**
9615
+ * `--features` — print the LSP feature manifest as JSON and exit instead of
9616
+ * starting the server, letting a client probe LSP presence and capabilities
9617
+ * without opening a session.
9618
+ */
9619
+ readonly features?: boolean;
9620
+ }
9621
+ /**
9622
+ * Options for the `cdk diagnose` command — finds the root cause(s) of stack
9623
+ * deployment failures.
9624
+ *
9625
+ * Takes a variadic `STACKS` positional, carried by the inherited
9626
+ * {@link CdkGlobalOptions.stackPatterns} field.
9627
+ */
9628
+ interface CdkDiagnoseOptions extends CdkGlobalOptions {
9629
+ /*****************************************************************************
9630
+ *
9631
+ * Diagnose-specific flags
9632
+ *
9633
+ ****************************************************************************/
9634
+ /**
9635
+ * `--concurrency` — how many stacks to diagnose in parallel. The CLI
9636
+ * declares no default for this flag.
9637
+ */
9638
+ readonly concurrency?: number;
9639
+ /**
9640
+ * `--toolkit-stack-name` — name of the existing CDK toolkit stack. Only used
9641
+ * for apps on legacy synthesis.
9642
+ */
9643
+ readonly toolkitStackName?: string;
9644
+ }
9645
+ /**
9646
+ * Options for the `cdk cli-telemetry` command — enables or disables anonymous
9647
+ * CLI telemetry.
9648
+ *
9649
+ * The three flags are **mutually exclusive** in the CLI: it rejects an
9650
+ * invocation supplying more than one of {@link enable}, {@link disable}, and
9651
+ * {@link status}. The renderer emits whatever it is given and does not
9652
+ * validate the constraint, matching how the rest of this surface treats
9653
+ * upstream `conflicts` declarations.
9654
+ *
9655
+ * Takes no positional arguments.
9656
+ */
9657
+ interface CdkCliTelemetryOptions extends CdkGlobalOptions {
9658
+ /*****************************************************************************
9659
+ *
9660
+ * Cli-telemetry-specific flags
9661
+ *
9662
+ ****************************************************************************/
9663
+ /**
9664
+ * `--disable` — disable anonymous telemetry. Conflicts with {@link enable}.
9665
+ */
9666
+ readonly disable?: boolean;
9667
+ /**
9668
+ * `--enable` — enable anonymous telemetry. Conflicts with {@link disable}.
9669
+ */
9670
+ readonly enable?: boolean;
9671
+ /**
9672
+ * `--status` — report the current telemetry opt-in/out status.
9673
+ */
9674
+ readonly status?: boolean;
9309
9675
  }
9310
9676
  /**
9311
9677
  * Per-target / per-account override bundle for the `CdkCli` component.
@@ -9959,6 +10325,10 @@ interface AwsOrganization {
9959
10325
  * (`true`, i.e. atomic deploys with rollback) applies — this is what allows
9960
10326
  * replacement-style updates to succeed in stage/prod.
9961
10327
  * - `prod` pins `--method=change-set` to leave a reviewable change-set trail.
10328
+ * - `express` is deliberately **not** defaulted on any stage. CloudFormation
10329
+ * express mode skips resource stabilization and flips the CLI's `rollback`
10330
+ * default to `false`, so it is opt-in per consumer via `deployDefaults`,
10331
+ * `accountOverrides`, or a target's `cdkOptions.deploy` — never a built-in.
9962
10332
  */
9963
10333
  declare const CDK_DEPLOY_DEFAULTS_BY_STAGE: Record<AwsStageType, Partial<CdkDeployOptions>>;
9964
10334
  /**
@@ -10115,6 +10485,10 @@ declare const renderCdkOrphan: (opts: CdkOrphanOptions) => string;
10115
10485
  declare const renderCdkInit: (opts: CdkInitOptions) => string;
10116
10486
  /**
10117
10487
  * Render a `cdk migrate ...` command from the supplied options.
10488
+ *
10489
+ * `--region` is emitted by {@link renderGlobalTokens} rather than here: the
10490
+ * CLI declares the flag both globally and on `migrate`, and the surface models
10491
+ * it once on `CdkGlobalOptions` so exactly one `--region` token renders.
10118
10492
  */
10119
10493
  declare const renderCdkMigrate: (opts: CdkMigrateOptions) => string;
10120
10494
  /**
@@ -10131,9 +10505,10 @@ declare const renderCdkContext: (opts: CdkContextOptions) => string;
10131
10505
  */
10132
10506
  declare const renderCdkMetadata: (opts: CdkMetadataOptions) => string;
10133
10507
  /**
10134
- * Render a `cdk flags ...` command from the supplied options. `--value` and
10135
- * `--set` are value-taking string flags per the CLI surface; the remaining
10136
- * flags are tri-state booleans.
10508
+ * Render a `cdk flags ...` command from the supplied options. `--value` is the
10509
+ * only value-taking flag on this command; `--set` and the rest are tri-state
10510
+ * booleans. Variadic positional feature-flag names render last, after the
10511
+ * trailing tokens.
10137
10512
  */
10138
10513
  declare const renderCdkFlags: (opts: CdkFlagsOptions) => string;
10139
10514
  /**
@@ -10143,9 +10518,7 @@ declare const renderCdkFlags: (opts: CdkFlagsOptions) => string;
10143
10518
  */
10144
10519
  declare const renderCdkAcknowledge: (opts: CdkAcknowledgeOptions) => string;
10145
10520
  /**
10146
- * Render a `cdk notices ...` command from the supplied options. `notices`
10147
- * has no command-specific flags; only the inherited globals and trailing
10148
- * tokens contribute output.
10521
+ * Render a `cdk notices ...` command from the supplied options.
10149
10522
  */
10150
10523
  declare const renderCdkNotices: (opts: CdkNoticesOptions) => string;
10151
10524
  /**
@@ -10155,11 +10528,35 @@ declare const renderCdkNotices: (opts: CdkNoticesOptions) => string;
10155
10528
  */
10156
10529
  declare const renderCdkDoctor: (opts: CdkDoctorOptions) => string;
10157
10530
  /**
10158
- * Render a `cdk docs ...` command from the supplied options. `docs` has no
10159
- * command-specific flags; only the inherited globals and trailing tokens
10160
- * contribute output.
10531
+ * Render a `cdk docs ...` command from the supplied options.
10161
10532
  */
10162
10533
  declare const renderCdkDocs: (opts: CdkDocsOptions) => string;
10534
+ /**
10535
+ * Render a `cdk validate ...` command from the supplied options. The variadic
10536
+ * `STACKS` positional is carried by the inherited `stackPatterns` field and
10537
+ * renders in trailing-token position.
10538
+ */
10539
+ declare const renderCdkValidate: (opts: CdkValidateOptions) => string;
10540
+ /**
10541
+ * Render a `cdk lsp ...` command from the supplied options. `lsp` takes no
10542
+ * positional arguments.
10543
+ */
10544
+ declare const renderCdkLsp: (opts: CdkLspOptions) => string;
10545
+ /**
10546
+ * Render a `cdk diagnose ...` command from the supplied options. The variadic
10547
+ * `STACKS` positional is carried by the inherited `stackPatterns` field and
10548
+ * renders in trailing-token position.
10549
+ */
10550
+ declare const renderCdkDiagnose: (opts: CdkDiagnoseOptions) => string;
10551
+ /**
10552
+ * Render a `cdk cli-telemetry ...` command from the supplied options.
10553
+ *
10554
+ * `--enable`, `--disable`, and `--status` are mutually exclusive in the CLI.
10555
+ * The renderer emits whatever it is given without validating that constraint,
10556
+ * matching how the rest of this surface treats upstream `conflicts`
10557
+ * declarations.
10558
+ */
10559
+ declare const renderCdkCliTelemetry: (opts: CdkCliTelemetryOptions) => string;
10163
10560
 
10164
10561
  /**
10165
10562
  * One row in the doc reference-extraction report — describes a single
@@ -15294,5 +15691,5 @@ declare function pinPnpmActionSetup(project: Project): void;
15294
15691
  */
15295
15692
  declare function pinSetupNodeVersion(project: Project): void;
15296
15693
 
15297
- export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, APPROVE_JOB_ID, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, ApplyWorkflow, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_TEMPLATE, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, CdkCli, 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_BASE_CONVENTIONS, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_GITHUB_ISSUE_TYPE, 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_ORCHESTRATOR_CONVENTIONS, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, 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_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_RULE_CONVENTIONS, 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, DEPLOY_APPROVALS, DEPLOY_GATE, DIFF_ARTIFACT_NAME, DIFF_NEW_STACK_MARKER, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, DiffReportJob, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, ISSUE_TEMPLATES_GENERATED_SUFFIX, 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, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, WorkflowHomeRepository, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkClosingKeywordsProcedure, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, collectIssueTemplateRecipeStubs, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubIssueTypeForTitle, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, issueTemplatesChildGlob, issueTemplatesGeneratedPath, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkWatch, renderCheckClosingKeywordsScript, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderDiffPartUploadStep, renderExtractApiProcedure, renderFocusSection, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderHomeRepositoryCondition, renderIssueTemplateLabelsCheckerScript, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesGeneratedPage, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderIssueTypeAssignmentBlanket, renderIssueTypeAssignmentStep, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPlanValidationScript, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSetIssueTypeFallbackLines, renderSetupNode, renderSetupPnpm, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveApprovalGate, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveEnvironmentGate, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
15298
- export type { ActionItemFilingConfig, 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, ApplyWorkflowAttachOptions, ApplyWorkflowContract, ApplyWorkflowOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitTemplate, CdkListOptions, CdkMetadataOptions, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployApprovals, DeployDiffOptions, DeployGate, DeployWorkflowOptions, DeploymentMetadata, DiffReportJobAttachOptions, DiffReportTarget, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PlanApplyOptions, PlanValidationScriptOptions, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBaseConventions, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedOrchestratorConventions, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRuleConventions, 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, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowHomeRepositoryOptions };
15694
+ export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, APPROVE_JOB_ID, AUDIT_CATEGORY_ORDER, AgentConfig, ApiExtractor, ApplyWorkflow, AstroConfig, AstroOutput, AstroProject, AuditCategory, AuditMode, AuditSeverity, AwsCdkProject, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, AwsTeardownWorkflow, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, CDK_BOOTSTRAP_DEFAULTS_BY_STAGE, CDK_DEPLOY_DEFAULTS_BY_STAGE, CDK_DEPLOY_METHOD, CDK_DESTROY_DEFAULTS_BY_STAGE, CDK_DIFF_DEFAULTS_BY_STAGE, CDK_DIFF_METHOD, CDK_GC_ACTION, CDK_GC_TYPE, CDK_INIT_LANGUAGE, CDK_INIT_PACKAGE_MANAGER, CDK_INIT_TEMPLATE, CDK_MIGRATE_FROM_SCAN, CDK_PROGRESS, CDK_REQUIRE_APPROVAL, CDK_SYNTH_DEFAULTS_BY_STAGE, CDK_WATCH_DEFAULTS_BY_STAGE, CLAUDE_RULE_TARGET, COMPLETE_JOB_ID, CONVENTIONAL_COMMIT_TYPE_LABELS, CdkCli, 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_BASE_CONVENTIONS, DEFAULT_BUILD_POLICY, DEFAULT_BUNDLE_OVERRIDES, DEFAULT_DECOMPOSITION_TEMPLATE, DEFAULT_DISPATCH_MODEL, DEFAULT_DISPATCH_TO_HOUSEKEEPING_RATIO, DEFAULT_GITHUB_ISSUE_TYPE, 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_ORCHESTRATOR_CONVENTIONS, DEFAULT_PARTIAL_UNBLOCK_COMMENT_TEMPLATE, DEFAULT_PATHS_EXEMPT_FROM_SIZE, 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_REQUIREMENT_CATEGORY_DIRS, DEFAULT_REQUIRE_PRODUCT_CONTEXT, DEFAULT_RESOLVED_ISSUE_DEFAULTS, DEFAULT_RULE_CONVENTIONS, 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, DEPLOY_APPROVALS, DEPLOY_GATE, DIFF_ARTIFACT_NAME, DIFF_NEW_STACK_MARKER, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, DiffReportJob, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, ISSUE_TEMPLATES_GENERATED_SUFFIX, 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, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, PnpmWorkspace, ProjectMetadata, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, RequirementIssueTemplate, ResetTask, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, SampleLang, StarlightProject, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, TestRunner, TsDocCoverageKind, TsdocConfig, TurboRepo, TurboRepoTask, TypeScriptConfig, TypeScriptProject, UNKNOWN_TYPE_FALLBACK_TIER, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, Vitest, WorkflowHomeRepository, addApproveMergeUpgradeWorkflow, addBuildCompleteJob, addPlaywright, addStorybook, addSyncLabelsWorkflow, agendaBundle, analyzeTsDocCoverage, auditReportJsonSchema, awsCdkBundle, baseBundle, bcmWriterBundle, buildAgentRegistryRule, buildBaseBundle, buildBcmWriterBundle, buildBuiltInBundles, buildBusinessModelsBundle, buildCheckBlockedProcedure, buildCompanyProfileBundle, buildCustomerProfileBundle, buildDocsSyncBundle, buildGithubWorkflowBundle, buildIndustryDiscoveryBundle, buildMaintenanceAuditBundle, buildMeetingAnalysisBundle, buildOrchestratorBundle, buildOrchestratorConventionsContent, buildPeopleProfileBundle, buildPrReviewBundle, buildRegulatoryResearchBundle, buildReport, buildRequirementsAnalystBundle, buildRequirementsReviewerBundle, buildRequirementsWriterBundle, buildResearchPipelineBundle, buildSoftwareProfileBundle, buildStandardsResearchBundle, buildTurborepoBundle, buildUnblockDependentsProcedure, bundleNameForWorkflowRule, businessModelsBundle, checkClosingKeywordsProcedure, checkDocSamplesProcedure, checkLinksProcedure, classifyIssueScope, classifyRun, collectIssueTemplateRecipeStubs, companyProfileBundle, compileFencedSamples, createApiDiffCheck, createReferenceMismatchCheck, createTsdocCoverageCheck, customerProfileBundle, diffApiRollups, docsSyncBundle, emptyCategoryBuckets, extractApiProcedure, extractDocReferences, extractFencedSamples, formatLayoutViolation, formatStarlightSingletonViolation, getLatestEligibleVersion, githubIssueTypeForTitle, githubWorkflowBundle, hasAnyDocsEmittingBundle, hasAnyDownstreamIssueKindBundle, includeHiddenFilesInBuildArtifact, industryDiscoveryBundle, isPhaseLabelOwnedByExcluded, isScheduledTaskOwnedByExcluded, isSuppressedWorkflowRule, isTypeLabelOwnedByExcluded, issueTemplatesChildGlob, issueTemplatesGeneratedPath, jestBundle, labelsForPhase, maintenanceAuditBundle, meetingAnalysisBundle, mergeCdkOptions, nextRequirementIdProcedure, orchestratorBundle, parseApiRollup, peopleProfileBundle, persistAuditReport, pinPnpmActionSetup, pinSetupNodeVersion, pnpmBundle, prReviewBundle, projenBundle, referenceRecordToFinding, regulatoryResearchBundle, renderAgentTierCaseStatement, renderAgentTierSection, renderCdkAcknowledge, renderCdkBootstrap, renderCdkCliTelemetry, renderCdkContext, renderCdkDeploy, renderCdkDestroy, renderCdkDiagnose, renderCdkDiff, renderCdkDocs, renderCdkDoctor, renderCdkDrift, renderCdkFlags, renderCdkGc, renderCdkImport, renderCdkInit, renderCdkList, renderCdkLsp, renderCdkMetadata, renderCdkMigrate, renderCdkNotices, renderCdkOrphan, renderCdkPublishAssets, renderCdkRefactor, renderCdkRollback, renderCdkSynth, renderCdkValidate, renderCdkWatch, renderCheckClosingKeywordsScript, renderCheckDocSamplesProcedure, renderCheckLinksProcedure, renderCustomDocSectionBlock, renderCustomDocSections, renderDiffPartUploadStep, renderExtractApiProcedure, renderFocusSection, renderGithubIssueTypeSection, renderGithubIssueTypeSectionLines, renderHomeRepositoryCondition, renderIssueTemplateLabelsCheckerScript, renderIssueTemplatesBundleHook, renderIssueTemplatesCheckerScript, renderIssueTemplatesGeneratedPage, renderIssueTemplatesRuleContent, renderIssueTemplatesStarterPage, renderIssueTypeAssignmentBlanket, renderIssueTypeAssignmentStep, renderMeetingTypesSection, renderNextRequirementIdProcedure, renderPhaseTypeInvariantSection, renderPhaseTypeInvariantShellHelpers, renderPlanValidationScript, renderPriorityRulesSection, renderProgressFileName, renderProgressFilePath, renderProgressFilesBundleHook, renderProgressFilesRuleContent, renderRequirementBlock, renderRunRatioSection, renderRunRatioShellHelpers, renderScheduledTaskSkillFile, renderScheduledTasksSection, renderScopeGateSection, renderScopeGateShellHelpers, renderSetIssueTypeFallbackLines, renderSetupNode, renderSetupPnpm, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, resolveApprovalGate, resolveAstroProjectOutdir, resolveAwsCdkProjectOutdir, resolveBuildPolicy, resolveEnvironmentGate, resolveIssueDefaults, resolveIssueTemplates, resolveModelAlias, resolveOrchestratorAssets, resolveOutdirFromPackageName, resolveOverrideForLabels, resolvePrReviewPolicy, resolveProgressFiles, resolveReactViteSiteProjectOutdir, resolveRunRatio, resolveScheduledTasks, resolveScopeGate, resolveSharedEditing, resolveSkillEvals, resolveTemplateVariables, resolveTemporalFraming, resolveTypeLabelForLabels, resolveTypeScriptProjectOutdir, resolveUnblockDependents, runScan, slackBundle, softwareProfileBundle, standardsResearchBundle, stripToolArtifactTagsProcedure, tsdocRecordToFindings, turborepoBundle, typeLabelForPhaseLabel, typescriptBundle, upstreamConfigulatorDocsBundle, validateAgentTierConfig, validateIssueDefaultsConfig, validateIssueTemplatesConfig, validateMonorepoLayout, validatePrReviewPolicyConfig, validateProgressFilesConfig, validateRunRatioConfig, validateScheduledTasksConfig, validateScopeGateConfig, validateSharedEditingConfig, validateSkillEvalsConfig, validateStarlightSingleton, validateTemporalFramingConfig, validateUnblockDependentsConfig, vitestBundle };
15695
+ export type { ActionItemFilingConfig, 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, ApplyWorkflowAttachOptions, ApplyWorkflowContract, ApplyWorkflowOptions, ApproveMergeUpgradeOptions, AstroConfigOptions, AstroIntegrationSpec, AstroProjectOptions, AuditCheckRunner, AuditCheckRunnerContext, AuditFinding, AuditFindingBase, AuditLocation, AuditReport, AwsAccount, AwsCdkProjectOptions, AwsDeploymentTargetOptions, AwsLocalDeploymentConfig, AwsOrganization, AwsRegion, AwsTeardownWorkflowOptions, BundleOwnership, CdkAcknowledgeOptions, CdkBootstrapOptions, CdkCliOptions, CdkCliTelemetryOptions, CdkContextOptions, CdkDeployMethod, CdkDeployOptions, CdkDestroyOptions, CdkDiagnoseOptions, CdkDiffMethod, CdkDiffOptions, CdkDocsOptions, CdkDoctorOptions, CdkDriftOptions, CdkFlagsOptions, CdkGcAction, CdkGcOptions, CdkGcType, CdkGlobalOptions, CdkImportOptions, CdkInitLanguage, CdkInitOptions, CdkInitPackageManager, CdkInitTemplate, CdkListOptions, CdkLspOptions, CdkMetadataOptions, CdkMigrateFromScan, CdkMigrateOptions, CdkNoticesOptions, CdkOrphanOptions, CdkProgress, CdkPublishAssetsOptions, CdkRefactorOptions, CdkRequireApproval, CdkRollbackOptions, CdkSynthOptions, CdkTargetOverrides, CdkValidateOptions, CdkWatchOptions, CiDeploymentConfig, ClassTypeOptions, ClaudeAutoModeConfig, ClaudeHookAction, ClaudeHookEntry, ClaudeHooksConfig, ClaudeMdConfig, ClaudePermissionsConfig, ClaudeRuleTarget, ClaudeSandboxConfig, ClaudeSettingsConfig, CompileFencedSamplesOptions, CopilotHandoff, CursorHookAction, CursorHooksConfig, CursorSettingsConfig, CustomDocSection, DeployApprovals, DeployDiffOptions, DeployGate, DeployWorkflowOptions, DeploymentMetadata, DiffReportJobAttachOptions, DiffReportTarget, DocReferenceRecord, EffectiveScopeThresholds, ExtractDocReferencesOptions, ExtractFencedSamplesOptions, FencedSampleRecord, FocusArea, FocusAreaMatch, FocusConfig, GitBranch, GitHubBoardMetadata, GitHubProjectMetadata, GitHubSprintMetadata, GithubIssueType, IDependencyResolver, IssueDefaultsConfig, IssueDefaultsOverride, IssueDefaultsPriority, IssueDefaultsStatus, IssueTemplateRecipeStub, IssueTemplatesConfig, IssueTypeAssignmentStepOptions, LabelDefinition, LayoutEnforcement, LayoutViolation, LinkFailureFinding, McpServerConfig, McpTransport, MeetingArea, MeetingScope, MeetingType, MeetingTypeKind, MeetingsConfig, MergeMethod, MonorepoLayoutRoot, MonorepoPnpmOptions, MonorepoProjectOptions, OrganizationMetadata, PhaseLabelTypeOutcome, PhaseLabelTypeResolution, PlanApplyOptions, PlanValidationScriptOptions, PnpmWorkspaceOptions, PrReviewAutoMergeConfig, PrReviewCiVerificationConfig, PrReviewPolicyConfig, PriorityRule, ProgressFilesConfig, ProjectMetadataOptions, ReactViteSiteProjectOptions, ReferenceMismatchCheckOptions, ReferenceMismatchFinding, RemoteCacheOptions, RepositoryMetadata, RequirementBlockFields, RequirementCategoryDirsConfig, RequirementIssueTemplateOptions, ResetTaskOptions, ResolvedAgentPaths, ResolvedAgentTier, ResolvedBaseConventions, ResolvedBuildPolicy, ResolvedIssueDefaults, ResolvedIssueDefaultsEntry, ResolvedIssueTemplates, ResolvedOrchestratorConventions, ResolvedPrReviewAutoMerge, ResolvedPrReviewPolicy, ResolvedProgressFiles, ResolvedProjectMetadata, ResolvedRequirementCategoryDirs, ResolvedRuleConventions, 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, TurboRunContinue, TurboRunDryRun, TurboRunLogOrder, TurboRunLogPrefix, TurboRunOptions, TurboRunOutputLogs, TypeScriptProjectOptions, UnblockDependentsConfig, UpstreamConfigulatorConfig, VersionKey, VitestConfigOptions, VitestOptions, WorkflowHomeRepositoryOptions };