@codedrifters/configulator 0.0.428 → 0.0.430
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 +402 -20
- package/lib/index.d.ts +403 -21
- package/lib/index.js +686 -257
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +661 -242
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -8,7 +8,7 @@ import * as spec from '@jsii/spec';
|
|
|
8
8
|
import { TypeScriptProject as TypeScriptProject$1, TypeScriptAppProject, TypeScriptProjectOptions as TypeScriptProjectOptions$1 } from 'projen/lib/typescript';
|
|
9
9
|
import { ValueOf } from 'type-fest';
|
|
10
10
|
import { BuildWorkflow, BuildWorkflowOptions } from 'projen/lib/build';
|
|
11
|
-
import { GithubWorkflow } from 'projen/lib/github';
|
|
11
|
+
import { GithubWorkflow, GitHub } from 'projen/lib/github';
|
|
12
12
|
import { JobStep } from 'projen/lib/github/workflows-model';
|
|
13
13
|
|
|
14
14
|
/**
|
|
@@ -12447,6 +12447,23 @@ declare const PERMISSION_BACKUP_FILE = "permissions-backup.acl";
|
|
|
12447
12447
|
* when `gate` is `plan-apply`.
|
|
12448
12448
|
*/
|
|
12449
12449
|
interface PlanApplyOptions {
|
|
12450
|
+
/**
|
|
12451
|
+
* Put this workflow's apply jobs on an apply workflow another
|
|
12452
|
+
* `AwsDeployWorkflow` already created, instead of creating a second one.
|
|
12453
|
+
*
|
|
12454
|
+
* Pass that component's `applyWorkflow`. Sharing is what lets a multi-service
|
|
12455
|
+
* repo render a cross-service `deployAfterTargets` graph: GitHub resolves
|
|
12456
|
+
* `needs` only within a single workflow file. Every component sharing an
|
|
12457
|
+
* apply workflow must share one build workflow and agree on
|
|
12458
|
+
* {@link requireCurrentHead}, {@link verifyArtifactDigest}, and
|
|
12459
|
+
* `homeRepository`, all of which the single shared validation job bakes in.
|
|
12460
|
+
*
|
|
12461
|
+
* Mutually exclusive with {@link applyWorkflowName}.
|
|
12462
|
+
*
|
|
12463
|
+
* @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
|
|
12464
|
+
* @default - this component creates its own apply workflow
|
|
12465
|
+
*/
|
|
12466
|
+
readonly applyWorkflow?: GithubWorkflow;
|
|
12450
12467
|
/**
|
|
12451
12468
|
* File name (without `.yml`) of the generated apply workflow.
|
|
12452
12469
|
*
|
|
@@ -12699,10 +12716,16 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
12699
12716
|
* Resolved `plan-apply` settings. Every field is concrete so callers never
|
|
12700
12717
|
* have to re-apply the defaults. Populated under every gate, and simply
|
|
12701
12718
|
* unused outside `plan-apply`.
|
|
12719
|
+
*
|
|
12720
|
+
* `applyWorkflow` is omitted because it is an input, not a setting — read
|
|
12721
|
+
* {@link applyWorkflow} for the workflow this component actually uses,
|
|
12722
|
+
* whether it created or joined it.
|
|
12702
12723
|
*/
|
|
12703
|
-
readonly planApplyOptions: Required<PlanApplyOptions
|
|
12724
|
+
readonly planApplyOptions: Required<Omit<PlanApplyOptions, "applyWorkflow">>;
|
|
12704
12725
|
/**
|
|
12705
|
-
* The dispatch-only apply workflow, when the gate is `plan-apply`.
|
|
12726
|
+
* The dispatch-only apply workflow, when the gate is `plan-apply`. Shared
|
|
12727
|
+
* with any other `AwsDeployWorkflow` that was pointed at it via
|
|
12728
|
+
* `planApply.applyWorkflow`.
|
|
12706
12729
|
*/
|
|
12707
12730
|
readonly applyWorkflow?: GithubWorkflow;
|
|
12708
12731
|
constructor(project: AwsCdkTypeScriptApp, options?: DeployWorkflowOptions);
|
|
@@ -12715,6 +12738,11 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
12715
12738
|
* header so dev/stage/prod comments don't collide on the same PR.
|
|
12716
12739
|
*/
|
|
12717
12740
|
private buildJobName;
|
|
12741
|
+
/**
|
|
12742
|
+
* Build the deterministic GitHub Actions job name for a target's apply job.
|
|
12743
|
+
* Mirrors {@link buildJobName} with an `apply` verb.
|
|
12744
|
+
*/
|
|
12745
|
+
private buildApplyJobName;
|
|
12718
12746
|
/**
|
|
12719
12747
|
* Build the deterministic GitHub Actions job name for a target's `cdk diff`
|
|
12720
12748
|
* job. Mirrors {@link buildJobName} with a `diff` verb so the diff and deploy
|
|
@@ -12722,29 +12750,35 @@ declare class AwsDeployWorkflow extends Component {
|
|
|
12722
12750
|
*/
|
|
12723
12751
|
private buildDiffJobName;
|
|
12724
12752
|
/**
|
|
12725
|
-
* Build the
|
|
12726
|
-
*
|
|
12753
|
+
* Build the slug that makes a target unique among every target in the plan
|
|
12754
|
+
* workflow, across every deploy component feeding it.
|
|
12755
|
+
*
|
|
12756
|
+
* Includes `deploymentTargetRole`, which two otherwise-identical targets can
|
|
12757
|
+
* differ on.
|
|
12727
12758
|
*/
|
|
12728
|
-
private
|
|
12759
|
+
private buildDiffSlug;
|
|
12729
12760
|
/**
|
|
12730
|
-
* Build the
|
|
12761
|
+
* Build the file a target's captured diff is written to, both in its own diff
|
|
12762
|
+
* job's workspace and in the merged directory the report job assembles.
|
|
12763
|
+
*/
|
|
12764
|
+
private buildDiffOutputFile;
|
|
12765
|
+
/**
|
|
12766
|
+
* Build the intermediate artifact name carrying one target's captured diff.
|
|
12731
12767
|
*
|
|
12732
|
-
*
|
|
12733
|
-
*
|
|
12734
|
-
*
|
|
12735
|
-
* a duplicate name within a run, so parallel diff jobs cannot share one.
|
|
12768
|
+
* The diff jobs run in parallel and `actions/upload-artifact` v4+ rejects a
|
|
12769
|
+
* duplicate name within a run, so each target needs its own. The report job
|
|
12770
|
+
* merges them into a single artifact, which is the one meant to be read.
|
|
12736
12771
|
*/
|
|
12737
|
-
private
|
|
12772
|
+
private buildDiffPartArtifactName;
|
|
12738
12773
|
/**
|
|
12739
|
-
*
|
|
12774
|
+
* Join an apply workflow another `AwsDeployWorkflow` already created, so this
|
|
12775
|
+
* component's apply jobs land in that file rather than a second one.
|
|
12740
12776
|
*
|
|
12741
|
-
*
|
|
12742
|
-
*
|
|
12743
|
-
*
|
|
12744
|
-
* `AwsDeployWorkflow`s sharing one build workflow, and the fix is an explicit
|
|
12745
|
-
* `planApply.applyWorkflowName`.
|
|
12777
|
+
* Rejects a `GithubWorkflow` that is not an apply workflow: attaching to an
|
|
12778
|
+
* arbitrary one would add apply jobs depending on a `validate-plan` job that
|
|
12779
|
+
* does not exist there, which GitHub rejects only at run time.
|
|
12746
12780
|
*/
|
|
12747
|
-
private
|
|
12781
|
+
private attachApplyWorkflow;
|
|
12748
12782
|
/**
|
|
12749
12783
|
* Register one target's apply job on the apply workflow.
|
|
12750
12784
|
*
|
|
@@ -14385,6 +14419,111 @@ declare class VSCodeConfig extends Component {
|
|
|
14385
14419
|
constructor(project: TypeScriptAppProject);
|
|
14386
14420
|
}
|
|
14387
14421
|
|
|
14422
|
+
/**
|
|
14423
|
+
* Settings every `AwsDeployWorkflow` sharing one apply workflow must agree on,
|
|
14424
|
+
* because they are baked into the single shared `validate-plan` job.
|
|
14425
|
+
*/
|
|
14426
|
+
interface ApplyWorkflowContract {
|
|
14427
|
+
/**
|
|
14428
|
+
* Name of the plan (build) workflow whose runs this apply workflow accepts.
|
|
14429
|
+
*/
|
|
14430
|
+
readonly planWorkflowName: string;
|
|
14431
|
+
/**
|
|
14432
|
+
* Assert the plan run's commit is still the head of its branch.
|
|
14433
|
+
*/
|
|
14434
|
+
readonly requireCurrentHead: boolean;
|
|
14435
|
+
/**
|
|
14436
|
+
* Resolve and export the build artifact's digest during validation.
|
|
14437
|
+
*/
|
|
14438
|
+
readonly verifyArtifactDigest: boolean;
|
|
14439
|
+
}
|
|
14440
|
+
/**
|
|
14441
|
+
* Inputs to {@link ApplyWorkflow.attach}.
|
|
14442
|
+
*/
|
|
14443
|
+
interface ApplyWorkflowAttachOptions extends ApplyWorkflowContract {
|
|
14444
|
+
/**
|
|
14445
|
+
* Targets the attaching component deploys. Their branches join the union the
|
|
14446
|
+
* validation job accepts.
|
|
14447
|
+
*/
|
|
14448
|
+
readonly awsDeploymentTargets: Array<AwsDeploymentTarget>;
|
|
14449
|
+
/**
|
|
14450
|
+
* Component name used in thrown error messages.
|
|
14451
|
+
*/
|
|
14452
|
+
readonly componentName: string;
|
|
14453
|
+
}
|
|
14454
|
+
/**
|
|
14455
|
+
* Inputs to the {@link ApplyWorkflow} constructor.
|
|
14456
|
+
*/
|
|
14457
|
+
interface ApplyWorkflowOptions extends ApplyWorkflowAttachOptions {
|
|
14458
|
+
/**
|
|
14459
|
+
* File name (without `.yml`) of the generated apply workflow.
|
|
14460
|
+
*/
|
|
14461
|
+
readonly applyWorkflowName: string;
|
|
14462
|
+
/**
|
|
14463
|
+
* Rendered repository-guard expression for the validation job, if any.
|
|
14464
|
+
*/
|
|
14465
|
+
readonly homeRepositoryCondition?: string;
|
|
14466
|
+
}
|
|
14467
|
+
/**
|
|
14468
|
+
* The dispatch-only apply workflow behind the `plan-apply` gate, plus the state
|
|
14469
|
+
* every `AwsDeployWorkflow` attached to it shares.
|
|
14470
|
+
*
|
|
14471
|
+
* One component owns the file so several deploy components — typically one per
|
|
14472
|
+
* service in a multi-service repo, all sharing a build workflow — can put their
|
|
14473
|
+
* apply jobs in it. That is what lets a cross-service `deployAfterTargets`
|
|
14474
|
+
* graph render as valid `needs`: GitHub resolves `needs` only within a single
|
|
14475
|
+
* workflow file.
|
|
14476
|
+
*
|
|
14477
|
+
* @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
|
|
14478
|
+
*/
|
|
14479
|
+
declare class ApplyWorkflow extends Component {
|
|
14480
|
+
static of(project: Project$1, workflow: GithubWorkflow): ApplyWorkflow | undefined;
|
|
14481
|
+
/**
|
|
14482
|
+
* The generated workflow. Exposed so a second `AwsDeployWorkflow` can be
|
|
14483
|
+
* pointed at it via `planApply.applyWorkflow`.
|
|
14484
|
+
*/
|
|
14485
|
+
readonly workflow: GithubWorkflow;
|
|
14486
|
+
/**
|
|
14487
|
+
* Settings every attached component must agree on.
|
|
14488
|
+
*/
|
|
14489
|
+
readonly contract: ApplyWorkflowContract;
|
|
14490
|
+
/**
|
|
14491
|
+
* Repository guard on the validation job, if any.
|
|
14492
|
+
*/
|
|
14493
|
+
private readonly homeRepositoryCondition?;
|
|
14494
|
+
/**
|
|
14495
|
+
* Every attached component's targets, in attach order. Held as targets rather
|
|
14496
|
+
* than branches because `AwsDeploymentTarget.branches` is mutable — the
|
|
14497
|
+
* branch union is read at `preSynthesize`, once every component has attached.
|
|
14498
|
+
*/
|
|
14499
|
+
private readonly attachedTargets;
|
|
14500
|
+
constructor(project: Project$1, github: GitHub, options: ApplyWorkflowOptions);
|
|
14501
|
+
/**
|
|
14502
|
+
* Attach another component's apply jobs to this workflow.
|
|
14503
|
+
*
|
|
14504
|
+
* Every setting the shared `validate-plan` job bakes in must match what the
|
|
14505
|
+
* workflow was created with — there is one validation job for the whole file,
|
|
14506
|
+
* so a disagreement cannot be honoured and is rejected rather than resolved
|
|
14507
|
+
* in favour of whichever component happened to be constructed first.
|
|
14508
|
+
*/
|
|
14509
|
+
attach: (options: ApplyWorkflowAttachOptions) => void;
|
|
14510
|
+
preSynthesize(): void;
|
|
14511
|
+
/**
|
|
14512
|
+
* Reject a boolean `planApply` setting that differs from the one this
|
|
14513
|
+
* workflow was created with.
|
|
14514
|
+
*/
|
|
14515
|
+
private requireAgreement;
|
|
14516
|
+
/**
|
|
14517
|
+
* Render the validation job every apply job depends on.
|
|
14518
|
+
*
|
|
14519
|
+
* `allowedBranches` is the union of every attached target's branches, deduped
|
|
14520
|
+
* and left in attach order. The apply run's own `github.ref` says nothing
|
|
14521
|
+
* about what was planned, so the list is checked against the *plan run's*
|
|
14522
|
+
* `head_branch` rather than against a workflow-level branch filter.
|
|
14523
|
+
*/
|
|
14524
|
+
private renderValidateJob;
|
|
14525
|
+
}
|
|
14526
|
+
|
|
14388
14527
|
/** Name of the gate job appended to build workflows (ADR 0004). */
|
|
14389
14528
|
declare const COMPLETE_JOB_ID = "complete";
|
|
14390
14529
|
/**
|
|
@@ -14398,6 +14537,182 @@ declare const COMPLETE_JOB_ID = "complete";
|
|
|
14398
14537
|
*/
|
|
14399
14538
|
declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
14400
14539
|
|
|
14540
|
+
/**
|
|
14541
|
+
* Job id of the report job that merges every target's captured diff into one
|
|
14542
|
+
* reviewable summary and artifact.
|
|
14543
|
+
*/
|
|
14544
|
+
declare const DIFF_REPORT_JOB_ID = "diff-report";
|
|
14545
|
+
/**
|
|
14546
|
+
* Directory each target's diff is captured to, and the directory the report job
|
|
14547
|
+
* merges every downloaded part into.
|
|
14548
|
+
*/
|
|
14549
|
+
declare const DIFF_OUTPUT_DIRECTORY = "cdk-diff";
|
|
14550
|
+
/**
|
|
14551
|
+
* Artifact-name prefix for a single target's captured diff.
|
|
14552
|
+
*
|
|
14553
|
+
* These are intermediates: the diff jobs run in parallel and
|
|
14554
|
+
* `actions/upload-artifact` v4+ treats artifact names as immutable, so each
|
|
14555
|
+
* target must upload under its own name. The report job merges them into
|
|
14556
|
+
* {@link DIFF_ARTIFACT_NAME}, which is the one meant to be read.
|
|
14557
|
+
*/
|
|
14558
|
+
declare const DIFF_PART_ARTIFACT_PREFIX = "cdk-diff-part";
|
|
14559
|
+
/**
|
|
14560
|
+
* Name of the single merged artifact carrying every target's diff.
|
|
14561
|
+
*/
|
|
14562
|
+
declare const DIFF_ARTIFACT_NAME = "cdk-diff";
|
|
14563
|
+
/**
|
|
14564
|
+
* One target's contribution to the diff report.
|
|
14565
|
+
*/
|
|
14566
|
+
interface DiffReportTarget {
|
|
14567
|
+
/**
|
|
14568
|
+
* Human-readable target label, used as the summary heading.
|
|
14569
|
+
*/
|
|
14570
|
+
readonly label: string;
|
|
14571
|
+
/**
|
|
14572
|
+
* Job id of the target's own diff job. Becomes a `needs` entry on the report.
|
|
14573
|
+
*/
|
|
14574
|
+
readonly jobName: string;
|
|
14575
|
+
/**
|
|
14576
|
+
* File the target's diff lands at once the parts are merged.
|
|
14577
|
+
*/
|
|
14578
|
+
readonly outputFile: string;
|
|
14579
|
+
/**
|
|
14580
|
+
* Branch filter this target deploys under, if any.
|
|
14581
|
+
*/
|
|
14582
|
+
readonly branchCondition?: string;
|
|
14583
|
+
}
|
|
14584
|
+
/**
|
|
14585
|
+
* Inputs to {@link DiffReportJob.attach}.
|
|
14586
|
+
*/
|
|
14587
|
+
interface DiffReportJobAttachOptions {
|
|
14588
|
+
/**
|
|
14589
|
+
* Plan workflow the report belongs to. One report job per build workflow.
|
|
14590
|
+
*/
|
|
14591
|
+
readonly buildWorkflow: BuildWorkflow;
|
|
14592
|
+
/**
|
|
14593
|
+
* Rendered repository-guard expression, if the workflow is pinned.
|
|
14594
|
+
*/
|
|
14595
|
+
readonly homeRepositoryCondition?: string;
|
|
14596
|
+
/**
|
|
14597
|
+
* Render the merged diffs into the job summary.
|
|
14598
|
+
*/
|
|
14599
|
+
readonly summary: boolean;
|
|
14600
|
+
/**
|
|
14601
|
+
* Upload the merged diffs as a single run artifact.
|
|
14602
|
+
*/
|
|
14603
|
+
readonly artifact: boolean;
|
|
14604
|
+
/**
|
|
14605
|
+
* Targets the attaching component contributes.
|
|
14606
|
+
*/
|
|
14607
|
+
readonly targets: Array<DiffReportTarget>;
|
|
14608
|
+
}
|
|
14609
|
+
/**
|
|
14610
|
+
* The job that turns a plan workflow's per-target `cdk diff` jobs into one
|
|
14611
|
+
* reviewable summary and one artifact.
|
|
14612
|
+
*
|
|
14613
|
+
* The diffs themselves stay in their own jobs, in parallel — a diff is a
|
|
14614
|
+
* read-only comparison and there is no reason to serialize them, and each needs
|
|
14615
|
+
* its own account's credentials anyway. What does not scale is the *review*:
|
|
14616
|
+
* under the `plan-apply` gate the diff is the only review surface, so a
|
|
14617
|
+
* seven-service repo would otherwise mean seven job summaries to open and
|
|
14618
|
+
* reconcile by hand. This job downloads every target's part, renders them under
|
|
14619
|
+
* one heading each, and uploads the merged directory as a single artifact.
|
|
14620
|
+
*
|
|
14621
|
+
* Every deploy component sharing the build workflow contributes here, so the
|
|
14622
|
+
* report spans services rather than stopping at one.
|
|
14623
|
+
*
|
|
14624
|
+
* @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
|
|
14625
|
+
*/
|
|
14626
|
+
declare class DiffReportJob extends Component {
|
|
14627
|
+
static of(project: Project$1, buildWorkflow: BuildWorkflow): DiffReportJob | undefined;
|
|
14628
|
+
/**
|
|
14629
|
+
* Add a component's targets to the plan workflow's diff report, creating the
|
|
14630
|
+
* report job the first time it is called for that workflow.
|
|
14631
|
+
*/
|
|
14632
|
+
static attach(project: Project$1, options: DiffReportJobAttachOptions): DiffReportJob;
|
|
14633
|
+
/**
|
|
14634
|
+
* Plan workflow this report belongs to.
|
|
14635
|
+
*/
|
|
14636
|
+
readonly buildWorkflow: BuildWorkflow;
|
|
14637
|
+
private readonly homeRepositoryCondition?;
|
|
14638
|
+
/**
|
|
14639
|
+
* Every contributed target, in attach order.
|
|
14640
|
+
*/
|
|
14641
|
+
private readonly targets;
|
|
14642
|
+
/**
|
|
14643
|
+
* Publish settings are OR-ed rather than first-wins: one report means one
|
|
14644
|
+
* answer, and a component that asked for a summary should get one even when
|
|
14645
|
+
* a sibling did not.
|
|
14646
|
+
*/
|
|
14647
|
+
private summary;
|
|
14648
|
+
private artifact;
|
|
14649
|
+
constructor(project: Project$1, options: DiffReportJobAttachOptions);
|
|
14650
|
+
preSynthesize(): void;
|
|
14651
|
+
/**
|
|
14652
|
+
* Fold one component's contribution in.
|
|
14653
|
+
*/
|
|
14654
|
+
private record;
|
|
14655
|
+
/**
|
|
14656
|
+
* Compose the report's own condition.
|
|
14657
|
+
*
|
|
14658
|
+
* `!cancelled()` leads, and it is load-bearing: a job whose `needs` failed or
|
|
14659
|
+
* were skipped is skipped by default, so without a status function the report
|
|
14660
|
+
* would vanish in exactly the cases it is most wanted — one target's diff
|
|
14661
|
+
* failing, or some targets not applying to this branch.
|
|
14662
|
+
*/
|
|
14663
|
+
private renderJobCondition;
|
|
14664
|
+
/**
|
|
14665
|
+
* Pull every target's part into one directory.
|
|
14666
|
+
*
|
|
14667
|
+
* `continueOnError` because a run where every target's diff job was skipped
|
|
14668
|
+
* by its branch filter matches no parts at all, and a report with nothing to
|
|
14669
|
+
* report is not a failure.
|
|
14670
|
+
*/
|
|
14671
|
+
private renderDownloadStep;
|
|
14672
|
+
/**
|
|
14673
|
+
* Render every target's diff into the job summary, one collapsed `<details>`
|
|
14674
|
+
* block per target.
|
|
14675
|
+
*
|
|
14676
|
+
* A target whose part is absent renders as "did not run", which is what
|
|
14677
|
+
* distinguishes a target that was skipped or whose diff failed before it
|
|
14678
|
+
* captured anything from one that simply had no changes — the latter has a
|
|
14679
|
+
* file, carrying the CDK CLI's own no-differences wording, rather than being
|
|
14680
|
+
* detected by matching on it.
|
|
14681
|
+
*/
|
|
14682
|
+
private renderSummaryStep;
|
|
14683
|
+
/**
|
|
14684
|
+
* Fail the report when any target's diff failed.
|
|
14685
|
+
*
|
|
14686
|
+
* Runs last, so the summary and the artifact are published first — a reviewer
|
|
14687
|
+
* still gets the whole picture, including whatever the failing target managed
|
|
14688
|
+
* to capture. But the report must not end up green: everything gated behind
|
|
14689
|
+
* it `needs` it, and a job whose `needs` failed is skipped, which is what
|
|
14690
|
+
* keeps a failed diff from letting a gated deploy through to *Waiting for
|
|
14691
|
+
* approval*. Without this the report would always succeed and a diff failure
|
|
14692
|
+
* would only soft-block behind a human.
|
|
14693
|
+
*
|
|
14694
|
+
* Only `failure` counts. A target skipped by its branch filter reports
|
|
14695
|
+
* `skipped`, which is normal and must not fail the report.
|
|
14696
|
+
*/
|
|
14697
|
+
private renderFailureStep;
|
|
14698
|
+
/**
|
|
14699
|
+
* Upload the merged directory as the one artifact meant to be read.
|
|
14700
|
+
*/
|
|
14701
|
+
private renderUploadStep;
|
|
14702
|
+
}
|
|
14703
|
+
/**
|
|
14704
|
+
* Upload step for a single target's captured diff, run inside that target's own
|
|
14705
|
+
* diff job.
|
|
14706
|
+
*
|
|
14707
|
+
* Guarded on `!cancelled()` rather than success, so a `cdk diff` that exits
|
|
14708
|
+
* non-zero still hands whatever it captured to the report.
|
|
14709
|
+
*/
|
|
14710
|
+
declare const renderDiffPartUploadStep: (options: {
|
|
14711
|
+
label: string;
|
|
14712
|
+
artifactName: string;
|
|
14713
|
+
outputFile: string;
|
|
14714
|
+
}) => JobStep;
|
|
14715
|
+
|
|
14401
14716
|
/**
|
|
14402
14717
|
* Render the GitHub Actions expression fragment that pins a job to one
|
|
14403
14718
|
* repository, validating the slug at synth time.
|
|
@@ -14412,6 +14727,73 @@ declare function addBuildCompleteJob(buildWorkflow: BuildWorkflow): void;
|
|
|
14412
14727
|
* @returns The condition fragment, or `undefined` when the workflow is unpinned.
|
|
14413
14728
|
*/
|
|
14414
14729
|
declare const renderHomeRepositoryCondition: (homeRepository: string | undefined, componentName: string) => string | undefined;
|
|
14730
|
+
/**
|
|
14731
|
+
* Inputs to {@link WorkflowHomeRepository.require}.
|
|
14732
|
+
*/
|
|
14733
|
+
interface WorkflowHomeRepositoryOptions {
|
|
14734
|
+
/**
|
|
14735
|
+
* Workflow the pin applies to. Object identity is the key, so a projen
|
|
14736
|
+
* `BuildWorkflow` and a `GithubWorkflow` are both valid.
|
|
14737
|
+
*/
|
|
14738
|
+
readonly workflow: Component;
|
|
14739
|
+
/**
|
|
14740
|
+
* Workflow file name, used in the thrown error message.
|
|
14741
|
+
*/
|
|
14742
|
+
readonly workflowName: string;
|
|
14743
|
+
/**
|
|
14744
|
+
* `owner/repo` slug this component declared, or `undefined` for no pin.
|
|
14745
|
+
*/
|
|
14746
|
+
readonly homeRepository?: string;
|
|
14747
|
+
/**
|
|
14748
|
+
* Component name used in the thrown error message.
|
|
14749
|
+
*/
|
|
14750
|
+
readonly componentName: string;
|
|
14751
|
+
}
|
|
14752
|
+
/**
|
|
14753
|
+
* The `homeRepository` pin declared against one workflow file.
|
|
14754
|
+
*
|
|
14755
|
+
* The pin is a property of the workflow, not of whichever component declared
|
|
14756
|
+
* it: it guards every cloud-touching job in the file, and under the
|
|
14757
|
+
* `plan-apply` gate the shared `validate-plan` job carries it for every apply
|
|
14758
|
+
* job that needs it. A skipped `needs` job skips its dependents, so one
|
|
14759
|
+
* component's pin would otherwise silently govern services that never asked to
|
|
14760
|
+
* be pinned. This component records the first declaration and rejects any later
|
|
14761
|
+
* one that disagrees.
|
|
14762
|
+
*
|
|
14763
|
+
* @see `docs/packages/@codedrifters/configulator/workflows/aws-deploy-workflow.md`
|
|
14764
|
+
*/
|
|
14765
|
+
declare class WorkflowHomeRepository extends Component {
|
|
14766
|
+
static of(project: Project$1, workflow: Component): WorkflowHomeRepository | undefined;
|
|
14767
|
+
/**
|
|
14768
|
+
* Record a pin against a workflow, throwing when it disagrees with what an
|
|
14769
|
+
* earlier component declared for the same one.
|
|
14770
|
+
*
|
|
14771
|
+
* @param project - Project the record is attached to. Use the root project,
|
|
14772
|
+
* so components on sibling sub-projects find each other.
|
|
14773
|
+
*/
|
|
14774
|
+
static require(project: Project$1, options: WorkflowHomeRepositoryOptions): WorkflowHomeRepository;
|
|
14775
|
+
/**
|
|
14776
|
+
* Workflow this pin applies to.
|
|
14777
|
+
*/
|
|
14778
|
+
readonly workflow: Component;
|
|
14779
|
+
/**
|
|
14780
|
+
* `owner/repo` slug every component sharing the workflow must declare, or
|
|
14781
|
+
* `undefined` when the workflow is unpinned.
|
|
14782
|
+
*/
|
|
14783
|
+
readonly homeRepository?: string;
|
|
14784
|
+
constructor(project: Project$1, options: WorkflowHomeRepositoryOptions);
|
|
14785
|
+
}
|
|
14786
|
+
|
|
14787
|
+
/**
|
|
14788
|
+
* Steps that put Node on the runner.
|
|
14789
|
+
*
|
|
14790
|
+
* Occasionally fails on GitHub-internal issues, hence the short timeout.
|
|
14791
|
+
*/
|
|
14792
|
+
declare const renderSetupNode: () => Array<JobStep>;
|
|
14793
|
+
/**
|
|
14794
|
+
* Steps that put pnpm on the runner, pinned to the project's version.
|
|
14795
|
+
*/
|
|
14796
|
+
declare const renderSetupPnpm: (pnpmVersion: string) => Array<JobStep>;
|
|
14415
14797
|
|
|
14416
14798
|
/**
|
|
14417
14799
|
* Sets `with["include-hidden-files"] = true` on every build-artifact
|
|
@@ -14561,4 +14943,4 @@ declare function pinPnpmActionSetup(project: Project$1): void;
|
|
|
14561
14943
|
*/
|
|
14562
14944
|
declare function pinSetupNodeVersion(project: Project$1): void;
|
|
14563
14945
|
|
|
14564
|
-
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, 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, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, 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_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_GATE, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployDiffOptions, type DeployGate, type DeployWorkflowOptions, type DeploymentMetadata, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type GithubIssueType, type IDependencyResolver, ISSUE_TEMPLATES_GENERATED_SUFFIX, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplateRecipeStub, type IssueTemplatesConfig, type IssueTypeAssignmentStepOptions, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, 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, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, type PlanApplyOptions, type PlanValidationScriptOptions, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementBlockFields, type RequirementCategoryDirsConfig, RequirementIssueTemplate, type RequirementIssueTemplateOptions, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedBaseConventions, type ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedOrchestratorConventions, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRuleConventions, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, 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, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, type TurboRunContinue, type TurboRunDryRun, type TurboRunLogOrder, type TurboRunLogPrefix, type TurboRunOptions, type TurboRunOutputLogs, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, 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, 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, renderSharedEditingBundleHook, renderSharedEditingHelperScript, renderSharedEditingRuleContent, renderSkillEvalsBundleHook, renderSkillEvalsRuleContent, renderSkillEvalsRunnerScript, renderSourceTierExamples, renderStripToolArtifactTagsProcedure, renderTemporalFramingCheckerScript, renderTemporalFramingRuleContent, renderTitlePrefixTypeBullets, renderUnblockDependentsScript, renderUnblockDependentsSection, requirementsAnalystBundle, requirementsReviewerBundle, requirementsWriterBundle, researchPipelineBundle, resolveAgentPaths, resolveAgentTiers, 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 };
|
|
14946
|
+
export { AGENT_MODEL, AGENT_PLATFORM, AGENT_REGISTRY_ENTRIES, AGENT_RULE_SCOPE, AGENT_TIER_ROLES, AGENT_TIER_VALUES, AUDIT_CATEGORY_ORDER, type ActionItemFilingConfig, type ActivateBranchNameEnvVarOptions, type AddStorybookOptions, type AgentCommand, AgentConfig, type AgentConfigOptions, type AgentExpansionRules, type AgentFeaturesConfig, type AgentModel, type AgentPathsConfig, type AgentPlatform, type AgentPlatformOverrides, type AgentProcedure, type AgentRegistryEntry, type AgentRule, type AgentRuleBundle, type AgentRuleScope, type AgentSkill, type AgentSubAgent, type AgentSubAgentPlatformOverrides, type AgentTier, type AgentTierConfig, type AgentTierEntry, type AnalyzeTsDocCoverageOptions, type ApiDiffCheckOptions, type ApiDiffFinding, type ApiDiffResult, ApiExtractor, type ApiExtractorOptions, type ApiExtractorReportOptions, type ApiSurfaceEntry, ApplyWorkflow, type ApplyWorkflowAttachOptions, type ApplyWorkflowContract, type ApplyWorkflowOptions, type ApproveMergeUpgradeOptions, AstroConfig, type AstroConfigOptions, type AstroIntegrationSpec, AstroOutput, AstroProject, type AstroProjectOptions, AuditCategory, type AuditCheckRunner, type AuditCheckRunnerContext, type AuditFinding, type AuditFindingBase, type AuditLocation, AuditMode, type AuditReport, AuditSeverity, type AwsAccount, AwsCdkProject, type AwsCdkProjectOptions, AwsDeployWorkflow, AwsDeploymentConfig, AwsDeploymentTarget, type AwsDeploymentTargetOptions, type AwsLocalDeploymentConfig, type AwsOrganization, type AwsRegion, AwsTeardownWorkflow, type AwsTeardownWorkflowOptions, BUILD_ARTIFACT_NAME, BUILT_IN_BUNDLES, BUNDLE_OWNERSHIP, type BundleOwnership, 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, type CdkAcknowledgeOptions, type CdkBootstrapOptions, CdkCli, type CdkCliOptions, type CdkContextOptions, type CdkDeployMethod, type CdkDeployOptions, type CdkDestroyOptions, type CdkDiffMethod, type CdkDiffOptions, type CdkDocsOptions, type CdkDoctorOptions, type CdkDriftOptions, type CdkFlagsOptions, type CdkGcAction, type CdkGcOptions, type CdkGcType, type CdkGlobalOptions, type CdkImportOptions, type CdkInitLanguage, type CdkInitOptions, type CdkInitTemplate, type CdkListOptions, type CdkMetadataOptions, type CdkMigrateOptions, type CdkNoticesOptions, type CdkOrphanOptions, type CdkProgress, type CdkPublishAssetsOptions, type CdkRefactorOptions, type CdkRequireApproval, type CdkRollbackOptions, type CdkSynthOptions, type CdkTargetOverrides, type CdkWatchOptions, type CiDeploymentConfig, type ClassTypeOptions, type ClaudeAutoModeConfig, type ClaudeHookAction, type ClaudeHookEntry, type ClaudeHooksConfig, type ClaudeMdConfig, type ClaudePermissionsConfig, type ClaudeRuleTarget, type ClaudeSandboxConfig, type ClaudeSettingsConfig, type CompileFencedSamplesOptions, 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_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_GATE, DIFF_ARTIFACT_NAME, DIFF_OUTPUT_DIRECTORY, DIFF_PART_ARTIFACT_PREFIX, DIFF_REPORT_JOB_ID, DOCS_SYNC_AUDIT_SCHEMA_VERSION, type DeployDiffOptions, type DeployGate, type DeployWorkflowOptions, type DeploymentMetadata, DiffReportJob, type DiffReportJobAttachOptions, type DiffReportTarget, type DocReferenceRecord, type EffectiveScopeThresholds, type ExtractDocReferencesOptions, type ExtractFencedSamplesOptions, type FencedSampleRecord, type FocusArea, type FocusAreaMatch, type FocusConfig, GITHUB_ISSUE_TYPES, GITHUB_ISSUE_TYPE_BY_TITLE_PREFIX, type GitBranch, type GitHubBoardMetadata, type GitHubProjectMetadata, type GitHubSprintMetadata, type GithubIssueType, type IDependencyResolver, ISSUE_TEMPLATES_GENERATED_SUFFIX, type IssueDefaultsConfig, type IssueDefaultsOverride, type IssueDefaultsPriority, type IssueDefaultsStatus, type IssueTemplateRecipeStub, type IssueTemplatesConfig, type IssueTypeAssignmentStepOptions, JsiiFaker, LAYOUT_ENFORCEMENT, LAYOUT_ROOT_BY_PROJECT_TYPE, type LabelDefinition, type LayoutEnforcement, type LayoutViolation, type LinkFailureFinding, MAX_LABEL_DESCRIPTION_LENGTH, 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, type MonorepoPnpmOptions, MonorepoProject, type MonorepoProjectOptions, Nvmrc, type OrganizationMetadata, PERMISSION_BACKUP_FILE, PHASE_LABEL_TYPE_MAP, PLAN_RUN_ID_INPUT, PROD_DEPLOY_NAME, PROGRESS_FILES_FORMAT_VALUES, type PhaseLabelTypeOutcome, type PhaseLabelTypeResolution, type PlanApplyOptions, type PlanValidationScriptOptions, PnpmWorkspace, type PnpmWorkspaceOptions, type PrReviewAutoMergeConfig, type PrReviewCiVerificationConfig, type PrReviewPolicyConfig, type PriorityRule, type ProgressFilesConfig, ProjectMetadata, type ProjectMetadataOptions, REQUIREMENTS_WRITER_PATHS, ROOT_CI_TASK_NAME, ROOT_TURBO_TASK_NAME, ReactViteSiteProject, type ReactViteSiteProjectOptions, type ReferenceMismatchCheckOptions, type ReferenceMismatchFinding, type RemoteCacheOptions, type RepositoryMetadata, type RequirementBlockFields, type RequirementCategoryDirsConfig, RequirementIssueTemplate, type RequirementIssueTemplateOptions, ResetTask, type ResetTaskOptions, type ResolvedAgentPaths, type ResolvedAgentTier, type ResolvedBaseConventions, type ResolvedBuildPolicy, type ResolvedIssueDefaults, type ResolvedIssueDefaultsEntry, type ResolvedIssueTemplates, type ResolvedOrchestratorConventions, type ResolvedPrReviewAutoMerge, type ResolvedPrReviewPolicy, type ResolvedProgressFiles, type ResolvedProjectMetadata, type ResolvedRequirementCategoryDirs, type ResolvedRuleConventions, type ResolvedRunRatio, type ResolvedScheduledTask, type ResolvedScheduledTasks, type ResolvedScopeGate, type ResolvedScopeGateBundleOverride, type ResolvedSharedEditing, type ResolvedSkillEvals, type ResolvedTemporalFraming, type ResolvedUnblockDependents, type RunRatioConfig, type RunScanOptions, type RunScanResult, SCHEDULED_TASK_MODEL_VALUES, SCOPE_CLASS_VALUES, SET_ISSUE_TYPE_HELPER_PATH, SHARED_EDITING_CONFLICT_STRATEGY_VALUES, STARLIGHT_ROLE, SUPPRESSED_WORKFLOW_RULE_NAMES, type SampleCompilationFailure, type SampleFailureFinding, SampleLang, type ScheduledTaskEntry, type ScheduledTaskModel, type ScheduledTaskOverride, type ScheduledTasksConfig, type ScopeClass, type ScopeGateBundleOverride, 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, TEMPORAL_FRAMING_CATEGORY_VALUES, TURBO_RUN_CONTINUE, TURBO_RUN_DRY_RUN, TURBO_RUN_LOG_ORDER, TURBO_RUN_LOG_PREFIX, TURBO_RUN_OUTPUT_LOGS, type TemplateResolveResult, type TemporalFramingCategory, type TemporalFramingConfig, TestRunner, TsDocCoverageKind, type TsDocCoverageRecord, TsdocConfig, type TsdocConfigOptions, type TsdocCoverageCheckOptions, type TsdocCoverageFinding, TurboRepo, type TurboRepoOptions, TurboRepoTask, type TurboRepoTaskOptions, type TurboRunContinue, type TurboRunDryRun, type TurboRunLogOrder, type TurboRunLogPrefix, type TurboRunOptions, type TurboRunOutputLogs, TypeScriptConfig, TypeScriptProject, type TypeScriptProjectOptions, UNKNOWN_TYPE_FALLBACK_TIER, type UnblockDependentsConfig, type UpstreamConfigulatorConfig, VALIDATE_PLAN_JOB_ID, VALID_PRIORITY_VALUES, VALID_STATUS_VALUES, VERSION, VERSION_KEYS_SKIP, VERSION_NPM_PACKAGES, VSCodeConfig, type VersionKey, Vitest, type VitestConfigOptions, type VitestOptions, WorkflowHomeRepository, type WorkflowHomeRepositoryOptions, 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, 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 };
|