@kungfu-tech/buildchain 4.0.1-alpha.2 → 4.0.1-alpha.21
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/actions/release-tail/README.md +8 -0
- package/architecture/ci-lane-change-budget.json +187 -0
- package/architecture/decisions/0002-next-development-transition.md +101 -0
- package/architecture/decisions/0003-two-phase-delivery-warrant.md +152 -0
- package/architecture/internal-capabilities.json +211 -8
- package/architecture/maintainability-policy.json +113 -28
- package/architecture/release-tail-contract-inventory.json +5 -2
- package/architecture/v3-core-mechanism-inventory.json +91 -0
- package/architecture/v4-adopter-delivery-parity.json +32 -5
- package/architecture/v4-capability-state-machine-manifest.json +73 -0
- package/architecture/v4-compatibility-facts-parity.json +77 -0
- package/architecture/v4-delivery-authority-parity.json +250 -0
- package/architecture/v4-delivery-warrant-shadow-fixtures.json +41 -9
- package/architecture/v4-floating-consumer-policy.json +6 -0
- package/architecture/v4-next-development-parity.json +192 -0
- package/architecture/v4-publication-rehearsal-parity.json +84 -0
- package/architecture/v4-release-train-parity.json +1 -0
- package/architecture/v4-tail-reseal-parity.json +150 -0
- package/bin/buildchain.mjs +32 -3
- package/bin/internal/adopter-delivery-cli.mjs +70 -0
- package/bin/internal/command-registry.mjs +3 -0
- package/bin/internal/compatibility-facts-cli.mjs +101 -0
- package/contracts/dev-delivery-authority-v2.schema.json +662 -0
- package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +40 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/archive-template.json +19 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/bootstrap-positive.json +93 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/gate-positive.json +29 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/gate-unknown-selector.json +26 -0
- package/contracts/fixtures/v4-adopter-delivery-v1/offline-vectors.json +50 -0
- package/contracts/fixtures/v4-compatibility-facts-v1/shared.json +1129 -0
- package/contracts/fixtures/v4-floating-consumer-policy-v1/cases.json +7 -1
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/artifacts/product.bin +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/config/buildchain.toml +5 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/documents/release-activation.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/documents/signed-channel.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/evidence/qualification.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/manifests/candidate.json +5 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/candidate/manifests/release-passport.json +1 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/capsule.json +707 -0
- package/contracts/fixtures/v4-publication-rehearsal-v1/offline-vectors.json +27 -0
- package/contracts/fixtures/v4-tail-reseal-v1/valid.json +229 -0
- package/contracts/next-development-request-v1.schema.json +66 -0
- package/contracts/next-development-transition-v1.schema.json +292 -0
- package/contracts/v4-adopter-delivery-v1.schema.json +81 -0
- package/contracts/v4-compatibility-facts-v1.schema.json +230 -0
- package/contracts/v4-floating-consumer-policy-receipt-v1.schema.json +4 -2
- package/contracts/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/contracts/v4-tail-reseal-v1.schema.json +276 -0
- package/dist/site/agent-index.json +5 -0
- package/dist/site/artifact-schemas.json +10 -0
- package/dist/site/buildchain-contract.json +1475 -27
- package/dist/site/buildchain-site.json +627 -31
- package/dist/site/capability-registry.json +17 -14
- package/dist/site/cli-registry.json +205 -3
- package/dist/site/kfd-claims.json +490 -16
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +52 -6
- package/dist/site/node-api-registry.json +14736 -8851
- package/dist/site/page-registry.json +593 -21
- package/dist/site/public-surface-audit.json +837 -48
- package/dist/site/publication-authority-registry.json +44 -8
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +24 -0
- package/dist/site/schemas/dev-delivery-authority-v2.schema.json +662 -0
- package/dist/site/schemas/release-tail-capabilities-v1.schema.json +199 -0
- package/dist/site/schemas/v4-adopter-delivery-v1.schema.json +81 -0
- package/dist/site/schemas/v4-compatibility-facts-v1.schema.json +230 -0
- package/dist/site/schemas/v4-publication-rehearsal-capsule-v1.schema.json +233 -0
- package/dist/site/site-manifest.json +34 -10
- package/dist/site/workflow-registry.json +160 -10
- package/docs/MAP.md +8 -2
- package/docs/cli-reference.md +404 -13
- package/docs/cli.md +8 -0
- package/docs/dev-alpha-candidate-patrol.md +8 -0
- package/docs/dev-delivery-qualification-landing-adr.md +251 -0
- package/docs/dev-delivery-warrant.md +351 -38
- package/docs/next-development-transition.md +118 -0
- package/docs/node-api-reference.md +646 -293
- package/docs/release-tail-provider-plane.md +30 -0
- package/docs/v4-adopter-delivery.md +133 -0
- package/docs/v4-compatibility-facts.md +91 -0
- package/docs/v4-publication-rehearsal.md +130 -0
- package/docs/v4-tail-reseal.md +73 -0
- package/docs/versioning.md +4 -3
- package/package.json +34 -6
- package/packages/core/adopter-delivery-passport.js +259 -0
- package/packages/core/adopter-delivery-vectors.js +158 -0
- package/packages/core/adopter-delivery-vectors.json +77 -0
- package/packages/core/buildchain-agent-manuals.js +3 -0
- package/packages/core/buildchain-compatibility-authority.js +336 -0
- package/packages/core/buildchain-compatibility-fact.js +394 -0
- package/packages/core/buildchain-compatibility-facts.json +217 -0
- package/packages/core/buildchain-compatibility-proof.js +566 -0
- package/packages/core/buildchain-config.js +84 -0
- package/packages/core/buildchain-contract.js +96 -143
- package/packages/core/buildchain-delivery-bootstrap.js +240 -0
- package/packages/core/buildchain-delivery-infrastructure.js +164 -0
- package/packages/core/buildchain-delivery-self-dogfood.js +395 -0
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/channel-candidate.js +8 -0
- package/packages/core/channel-promotion-baseline.js +55 -0
- package/packages/core/ci-lane-change-budget.js +247 -0
- package/packages/core/dev-alpha-candidate-selection.js +10 -2
- package/packages/core/dev-delivery-authority-candidate.js +270 -0
- package/packages/core/dev-delivery-authority-evidence.js +146 -0
- package/packages/core/dev-delivery-authority-landing.js +461 -0
- package/packages/core/dev-delivery-authority-observation.js +48 -0
- package/packages/core/dev-delivery-authority-qualification.js +591 -0
- package/packages/core/dev-delivery-authority-settlement.js +213 -0
- package/packages/core/dev-delivery-authority-state.js +583 -0
- package/packages/core/dev-delivery-candidate-identity.js +13 -0
- package/packages/core/dev-delivery-contract-surface.js +76 -0
- package/packages/core/dev-delivery-execution-failure.js +133 -0
- package/packages/core/dev-delivery-execution-transfer.js +592 -0
- package/packages/core/dev-delivery-landing-admission-core.js +119 -0
- package/packages/core/dev-delivery-landing-readback.js +598 -0
- package/packages/core/dev-delivery-landing-terminal-evidence.js +271 -0
- package/packages/core/dev-delivery-landing-testing-port.js +6 -0
- package/packages/core/dev-delivery-native-execution.js +110 -0
- package/packages/core/dev-delivery-native-proof.js +562 -0
- package/packages/core/dev-delivery-process-boundary.js +563 -0
- package/packages/core/dev-delivery-provider-attempt.js +127 -0
- package/packages/core/dev-delivery-provider-heartbeat.js +382 -0
- package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
- package/packages/core/dev-delivery-warrant-qualification.js +145 -0
- package/packages/core/dev-delivery-warrant-settlement.js +237 -36
- package/packages/core/dev-delivery-warrant-state.js +587 -0
- package/packages/core/dev-delivery-warrant.js +328 -370
- package/packages/core/github-governance-authority.js +1 -0
- package/packages/core/index.js +5 -0
- package/packages/core/kungfu-temporal-fact.js +557 -0
- package/packages/core/legacy-kfd-adopter-driver.js +167 -0
- package/packages/core/next-development-candidate-reservation.js +186 -0
- package/packages/core/next-development-controller.js +728 -0
- package/packages/core/next-development-projection.js +287 -0
- package/packages/core/next-development-transition.js +738 -0
- package/packages/core/paper-agent-entry.js +11 -5
- package/packages/core/paper.js +16 -5
- package/packages/core/published-delivery-authority.js +266 -0
- package/packages/core/release-candidate-recovery.js +70 -15
- package/packages/core/release-candidate.js +2 -2
- package/packages/core/release-passport.js +36 -9
- package/packages/core/v4-adopter-delivery-parity.js +3 -3
- package/packages/core/v4-adopter-delivery.js +359 -0
- package/packages/core/v4-canonical-contracts.js +5 -0
- package/packages/core/v4-delivery-warrant-read-candidate.js +10 -3
- package/packages/core/v4-floating-consumer-evidence.js +18 -4
- package/packages/core/v4-floating-consumer-policy.js +143 -20
- package/packages/core/v4-floating-consumer-release-passport.js +32 -5
- package/packages/core/v4-publication-rehearsal-capsule.js +468 -0
- package/packages/core/v4-publication-rehearsal-provider-bindings.js +212 -0
- package/packages/core/v4-publication-rehearsal.js +481 -0
- package/packages/core/v4-tail-reseal-contract.js +26 -0
- package/packages/core/v4-tail-reseal-github.js +178 -0
- package/packages/core/v4-tail-reseal-receipt.js +225 -0
- package/packages/core/v4-tail-reseal.js +594 -0
- package/packages/core/workflow-yaml-contract.js +24 -2
- package/scripts/buildchain-cli-help.mjs +41 -2
- package/scripts/check-ci-lane-change-budget.mjs +100 -0
- package/scripts/check-inventory.mjs +14 -3
- package/scripts/check-v4-floating-consumer-policy-contract.mjs +23 -4
- package/scripts/dev-alpha-candidate-patrol.mjs +22 -1
- package/scripts/dev-delivery-authority-command-adapters.mjs +206 -0
- package/scripts/dev-delivery-authority-provider.mjs +28 -0
- package/scripts/dev-delivery-authority.mjs +490 -0
- package/scripts/dev-delivery-native-run.mjs +177 -0
- package/scripts/dev-delivery-process-boundary.mjs +260 -0
- package/scripts/dev-delivery-proof.mjs +67 -2
- package/scripts/dev-delivery-provider-heartbeat.mjs +215 -0
- package/scripts/dev-delivery-source-proof-replay.mjs +153 -0
- package/scripts/dev-delivery-source-proof-reuse.mjs +13 -97
- package/scripts/dev-delivery-two-phase-resume.mjs +345 -0
- package/scripts/dev-delivery-two-phase.mjs +573 -0
- package/scripts/dev-delivery-warrant-options.mjs +266 -0
- package/scripts/dev-delivery-warrant-store.mjs +231 -0
- package/scripts/dev-delivery-warrant.mjs +232 -194
- package/scripts/dev-pr-auto-merge.mjs +1 -1
- package/scripts/dev-pr-delivery-warrant.mjs +11 -0
- package/scripts/dev-qualification-patrol.mjs +9 -9
- package/scripts/dispatch-artifact-signing-authority.mjs +1 -1
- package/scripts/generate-channel-promotion-workflow.mjs +2 -2
- package/scripts/generate-next-development-guidance.mjs +49 -0
- package/scripts/generate-release-candidate-passport.mjs +152 -0
- package/scripts/generate-site-bundle.mjs +69 -4
- package/scripts/init-repo.mjs +22 -4
- package/scripts/next-development-self-dogfood-harness.mjs +460 -0
- package/scripts/next-development-self-dogfood.mjs +597 -0
- package/scripts/next-development-transition.mjs +47 -0
- package/scripts/npm-publish-transaction.mjs +2 -2
- package/scripts/promotion-channel-router.mjs +4 -4
- package/scripts/release-candidate-anchor-provenance.mjs +99 -0
- package/scripts/release-tail.mjs +51 -3
- package/scripts/release-train-self-dogfood.mjs +94 -92
- package/scripts/resume-from-candidate-run.mjs +557 -30
- package/scripts/site-capability-metadata.mjs +41 -0
- package/scripts/stable-candidate-qualification.mjs +9 -10
- package/scripts/v4-consumer-policy.mjs +5 -5
- package/scripts/v4-publication-rehearsal-fixture.mjs +144 -0
- package/scripts/v4-tail-reseal-macos-rehearsal.mjs +134 -0
- package/scripts/v4-tail-reseal.mjs +416 -0
- package/templates/native-dev-delivery.yml +143 -0
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
},
|
|
15
15
|
"runtimeContract": {
|
|
16
16
|
"contract": "kungfu-buildchain-runtime-contract-world",
|
|
17
|
-
"compatibilityDigest": "sha256:
|
|
17
|
+
"compatibilityDigest": "sha256:5de1c69386510b74b17eb70141b8bdd07063d62c504f91db5e84b67c6d4b64a2",
|
|
18
18
|
"majorLine": "v4"
|
|
19
19
|
},
|
|
20
20
|
"publicSurfaceReverseAudit": {
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "090a44a52d505e24be62a43f01f8b173a6552b2ad93a180ed075e81deb61f2bf",
|
|
25
25
|
"summary": {
|
|
26
|
-
"cliCommandCount":
|
|
27
|
-
"workflowCount":
|
|
26
|
+
"cliCommandCount": 117,
|
|
27
|
+
"workflowCount": 76,
|
|
28
28
|
"actionCount": 7,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 82,
|
|
30
|
+
"docCommandRefCount": 1049,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -246,13 +246,13 @@
|
|
|
246
246
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
247
247
|
"path": "dist/site/public-surface-audit.json",
|
|
248
248
|
"status": "passed",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "090a44a52d505e24be62a43f01f8b173a6552b2ad93a180ed075e81deb61f2bf",
|
|
250
250
|
"summary": {
|
|
251
|
-
"cliCommandCount":
|
|
252
|
-
"workflowCount":
|
|
251
|
+
"cliCommandCount": 117,
|
|
252
|
+
"workflowCount": 76,
|
|
253
253
|
"actionCount": 7,
|
|
254
|
-
"sitePageCount":
|
|
255
|
-
"docCommandRefCount":
|
|
254
|
+
"sitePageCount": 82,
|
|
255
|
+
"docCommandRefCount": 1049,
|
|
256
256
|
"failureCount": 0
|
|
257
257
|
},
|
|
258
258
|
"auditBoundary": {
|
|
@@ -596,6 +596,18 @@
|
|
|
596
596
|
"public": true,
|
|
597
597
|
"plane": "verify"
|
|
598
598
|
},
|
|
599
|
+
{
|
|
600
|
+
"id": "doc:docs/next-development-transition.md",
|
|
601
|
+
"name": "Next-development transition",
|
|
602
|
+
"kind": "documentation",
|
|
603
|
+
"sourcePath": "docs/next-development-transition.md",
|
|
604
|
+
"evidencePath": "docs/next-development-transition.md",
|
|
605
|
+
"availability": "shipped",
|
|
606
|
+
"visibility": "public",
|
|
607
|
+
"participantFacing": true,
|
|
608
|
+
"public": true,
|
|
609
|
+
"plane": "verify"
|
|
610
|
+
},
|
|
599
611
|
{
|
|
600
612
|
"id": "doc:docs/node-api-reference.md",
|
|
601
613
|
"name": "Generated Node API reference",
|
|
@@ -812,6 +824,30 @@
|
|
|
812
824
|
"public": true,
|
|
813
825
|
"plane": "use"
|
|
814
826
|
},
|
|
827
|
+
{
|
|
828
|
+
"id": "doc:docs/v4-adopter-delivery.md",
|
|
829
|
+
"name": "V4 public adopter delivery",
|
|
830
|
+
"kind": "documentation",
|
|
831
|
+
"sourcePath": "docs/v4-adopter-delivery.md",
|
|
832
|
+
"evidencePath": "docs/v4-adopter-delivery.md",
|
|
833
|
+
"availability": "shipped",
|
|
834
|
+
"visibility": "public",
|
|
835
|
+
"participantFacing": true,
|
|
836
|
+
"public": true,
|
|
837
|
+
"plane": "verify"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"id": "doc:docs/v4-compatibility-facts.md",
|
|
841
|
+
"name": "Buildchain v4 compatibility Facts",
|
|
842
|
+
"kind": "documentation",
|
|
843
|
+
"sourcePath": "docs/v4-compatibility-facts.md",
|
|
844
|
+
"evidencePath": "docs/v4-compatibility-facts.md",
|
|
845
|
+
"availability": "shipped",
|
|
846
|
+
"visibility": "public",
|
|
847
|
+
"participantFacing": true,
|
|
848
|
+
"public": true,
|
|
849
|
+
"plane": "verify"
|
|
850
|
+
},
|
|
815
851
|
{
|
|
816
852
|
"id": "doc:docs/versioning.md",
|
|
817
853
|
"name": "Versioning",
|
|
@@ -1340,6 +1376,18 @@
|
|
|
1340
1376
|
"public": true,
|
|
1341
1377
|
"packageExport": "./buildchain-contract"
|
|
1342
1378
|
},
|
|
1379
|
+
{
|
|
1380
|
+
"id": "export:./compatibility-fact-authority",
|
|
1381
|
+
"name": "@kungfu-tech/buildchain/compatibility-fact-authority",
|
|
1382
|
+
"kind": "package-export",
|
|
1383
|
+
"sourcePath": "packages/core/buildchain-compatibility-proof.js",
|
|
1384
|
+
"evidencePath": "packages/core/buildchain-compatibility-proof.js",
|
|
1385
|
+
"availability": "shipped",
|
|
1386
|
+
"visibility": "public",
|
|
1387
|
+
"participantFacing": true,
|
|
1388
|
+
"public": true,
|
|
1389
|
+
"packageExport": "./compatibility-fact-authority"
|
|
1390
|
+
},
|
|
1343
1391
|
{
|
|
1344
1392
|
"id": "export:./candidate-timeline",
|
|
1345
1393
|
"name": "@kungfu-tech/buildchain/candidate-timeline",
|
|
@@ -1352,6 +1400,18 @@
|
|
|
1352
1400
|
"public": true,
|
|
1353
1401
|
"packageExport": "./candidate-timeline"
|
|
1354
1402
|
},
|
|
1403
|
+
{
|
|
1404
|
+
"id": "export:./ci-lane-change-budget",
|
|
1405
|
+
"name": "@kungfu-tech/buildchain/ci-lane-change-budget",
|
|
1406
|
+
"kind": "package-export",
|
|
1407
|
+
"sourcePath": "packages/core/ci-lane-change-budget.js",
|
|
1408
|
+
"evidencePath": "packages/core/ci-lane-change-budget.js",
|
|
1409
|
+
"availability": "shipped",
|
|
1410
|
+
"visibility": "public",
|
|
1411
|
+
"participantFacing": true,
|
|
1412
|
+
"public": true,
|
|
1413
|
+
"packageExport": "./ci-lane-change-budget"
|
|
1414
|
+
},
|
|
1355
1415
|
{
|
|
1356
1416
|
"id": "export:./channel-candidate",
|
|
1357
1417
|
"name": "@kungfu-tech/buildchain/channel-candidate",
|
|
@@ -1400,6 +1460,18 @@
|
|
|
1400
1460
|
"public": true,
|
|
1401
1461
|
"packageExport": "./diagnostics"
|
|
1402
1462
|
},
|
|
1463
|
+
{
|
|
1464
|
+
"id": "export:./dev-delivery-authority",
|
|
1465
|
+
"name": "@kungfu-tech/buildchain/dev-delivery-authority",
|
|
1466
|
+
"kind": "package-export",
|
|
1467
|
+
"sourcePath": "packages/core/dev-delivery-authority-landing.js",
|
|
1468
|
+
"evidencePath": "packages/core/dev-delivery-authority-landing.js",
|
|
1469
|
+
"availability": "shipped",
|
|
1470
|
+
"visibility": "public",
|
|
1471
|
+
"participantFacing": true,
|
|
1472
|
+
"public": true,
|
|
1473
|
+
"packageExport": "./dev-delivery-authority"
|
|
1474
|
+
},
|
|
1403
1475
|
{
|
|
1404
1476
|
"id": "export:./dev-delivery-warrant",
|
|
1405
1477
|
"name": "@kungfu-tech/buildchain/dev-delivery-warrant",
|
|
@@ -1568,6 +1640,162 @@
|
|
|
1568
1640
|
"public": true,
|
|
1569
1641
|
"packageExport": "./v4-runtime-ref-resume-authority"
|
|
1570
1642
|
},
|
|
1643
|
+
{
|
|
1644
|
+
"id": "export:./v4-tail-reseal",
|
|
1645
|
+
"name": "@kungfu-tech/buildchain/v4-tail-reseal",
|
|
1646
|
+
"kind": "package-export",
|
|
1647
|
+
"sourcePath": "packages/core/v4-tail-reseal.js",
|
|
1648
|
+
"evidencePath": "packages/core/v4-tail-reseal.js",
|
|
1649
|
+
"availability": "shipped",
|
|
1650
|
+
"visibility": "public",
|
|
1651
|
+
"participantFacing": true,
|
|
1652
|
+
"public": true,
|
|
1653
|
+
"packageExport": "./v4-tail-reseal"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"id": "export:./v4-tail-reseal-receipt",
|
|
1657
|
+
"name": "@kungfu-tech/buildchain/v4-tail-reseal-receipt",
|
|
1658
|
+
"kind": "package-export",
|
|
1659
|
+
"sourcePath": "packages/core/v4-tail-reseal-receipt.js",
|
|
1660
|
+
"evidencePath": "packages/core/v4-tail-reseal-receipt.js",
|
|
1661
|
+
"availability": "shipped",
|
|
1662
|
+
"visibility": "public",
|
|
1663
|
+
"participantFacing": true,
|
|
1664
|
+
"public": true,
|
|
1665
|
+
"packageExport": "./v4-tail-reseal-receipt"
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
"id": "export:./v4-publication-rehearsal",
|
|
1669
|
+
"name": "@kungfu-tech/buildchain/v4-publication-rehearsal",
|
|
1670
|
+
"kind": "package-export",
|
|
1671
|
+
"sourcePath": "packages/core/v4-publication-rehearsal.js",
|
|
1672
|
+
"evidencePath": "packages/core/v4-publication-rehearsal.js",
|
|
1673
|
+
"availability": "shipped",
|
|
1674
|
+
"visibility": "public",
|
|
1675
|
+
"participantFacing": true,
|
|
1676
|
+
"public": true,
|
|
1677
|
+
"packageExport": "./v4-publication-rehearsal"
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
"id": "export:./adopter-delivery-gate",
|
|
1681
|
+
"name": "@kungfu-tech/buildchain/adopter-delivery-gate",
|
|
1682
|
+
"kind": "package-export",
|
|
1683
|
+
"sourcePath": "packages/core/adopter-delivery-gate.js",
|
|
1684
|
+
"evidencePath": "packages/core/adopter-delivery-gate.js",
|
|
1685
|
+
"availability": "shipped",
|
|
1686
|
+
"visibility": "public",
|
|
1687
|
+
"participantFacing": true,
|
|
1688
|
+
"public": true,
|
|
1689
|
+
"packageExport": "./adopter-delivery-gate"
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"id": "export:./kfd-adopter-category-driver",
|
|
1693
|
+
"name": "@kungfu-tech/buildchain/kfd-adopter-category-driver",
|
|
1694
|
+
"kind": "package-export",
|
|
1695
|
+
"sourcePath": "packages/core/kfd-adopter-category-driver.js",
|
|
1696
|
+
"evidencePath": "packages/core/kfd-adopter-category-driver.js",
|
|
1697
|
+
"availability": "shipped",
|
|
1698
|
+
"visibility": "public",
|
|
1699
|
+
"participantFacing": true,
|
|
1700
|
+
"public": true,
|
|
1701
|
+
"packageExport": "./kfd-adopter-category-driver"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"id": "export:./buildchain-delivery-infrastructure",
|
|
1705
|
+
"name": "@kungfu-tech/buildchain/buildchain-delivery-infrastructure",
|
|
1706
|
+
"kind": "package-export",
|
|
1707
|
+
"sourcePath": "packages/core/buildchain-delivery-infrastructure.js",
|
|
1708
|
+
"evidencePath": "packages/core/buildchain-delivery-infrastructure.js",
|
|
1709
|
+
"availability": "shipped",
|
|
1710
|
+
"visibility": "public",
|
|
1711
|
+
"participantFacing": true,
|
|
1712
|
+
"public": true,
|
|
1713
|
+
"packageExport": "./buildchain-delivery-infrastructure"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"id": "export:./buildchain-delivery-bootstrap",
|
|
1717
|
+
"name": "@kungfu-tech/buildchain/buildchain-delivery-bootstrap",
|
|
1718
|
+
"kind": "package-export",
|
|
1719
|
+
"sourcePath": "packages/core/buildchain-delivery-bootstrap.js",
|
|
1720
|
+
"evidencePath": "packages/core/buildchain-delivery-bootstrap.js",
|
|
1721
|
+
"availability": "shipped",
|
|
1722
|
+
"visibility": "public",
|
|
1723
|
+
"participantFacing": true,
|
|
1724
|
+
"public": true,
|
|
1725
|
+
"packageExport": "./buildchain-delivery-bootstrap"
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"id": "export:./buildchain-delivery-self-dogfood",
|
|
1729
|
+
"name": "@kungfu-tech/buildchain/buildchain-delivery-self-dogfood",
|
|
1730
|
+
"kind": "package-export",
|
|
1731
|
+
"sourcePath": "packages/core/buildchain-delivery-self-dogfood.js",
|
|
1732
|
+
"evidencePath": "packages/core/buildchain-delivery-self-dogfood.js",
|
|
1733
|
+
"availability": "shipped",
|
|
1734
|
+
"visibility": "public",
|
|
1735
|
+
"participantFacing": true,
|
|
1736
|
+
"public": true,
|
|
1737
|
+
"packageExport": "./buildchain-delivery-self-dogfood"
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"id": "export:./published-delivery-authority",
|
|
1741
|
+
"name": "@kungfu-tech/buildchain/published-delivery-authority",
|
|
1742
|
+
"kind": "package-export",
|
|
1743
|
+
"sourcePath": "packages/core/published-delivery-authority.js",
|
|
1744
|
+
"evidencePath": "packages/core/published-delivery-authority.js",
|
|
1745
|
+
"availability": "shipped",
|
|
1746
|
+
"visibility": "public",
|
|
1747
|
+
"participantFacing": true,
|
|
1748
|
+
"public": true,
|
|
1749
|
+
"packageExport": "./published-delivery-authority"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"id": "export:./legacy-kfd-adopter-driver",
|
|
1753
|
+
"name": "@kungfu-tech/buildchain/legacy-kfd-adopter-driver",
|
|
1754
|
+
"kind": "package-export",
|
|
1755
|
+
"sourcePath": "packages/core/legacy-kfd-adopter-driver.js",
|
|
1756
|
+
"evidencePath": "packages/core/legacy-kfd-adopter-driver.js",
|
|
1757
|
+
"availability": "shipped",
|
|
1758
|
+
"visibility": "public",
|
|
1759
|
+
"participantFacing": true,
|
|
1760
|
+
"public": true,
|
|
1761
|
+
"packageExport": "./legacy-kfd-adopter-driver"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"id": "export:./adopter-delivery-passport",
|
|
1765
|
+
"name": "@kungfu-tech/buildchain/adopter-delivery-passport",
|
|
1766
|
+
"kind": "package-export",
|
|
1767
|
+
"sourcePath": "packages/core/adopter-delivery-passport.js",
|
|
1768
|
+
"evidencePath": "packages/core/adopter-delivery-passport.js",
|
|
1769
|
+
"availability": "shipped",
|
|
1770
|
+
"visibility": "public",
|
|
1771
|
+
"participantFacing": true,
|
|
1772
|
+
"public": true,
|
|
1773
|
+
"packageExport": "./adopter-delivery-passport"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"id": "export:./adopter-delivery-vectors",
|
|
1777
|
+
"name": "@kungfu-tech/buildchain/adopter-delivery-vectors",
|
|
1778
|
+
"kind": "package-export",
|
|
1779
|
+
"sourcePath": "packages/core/adopter-delivery-vectors.js",
|
|
1780
|
+
"evidencePath": "packages/core/adopter-delivery-vectors.js",
|
|
1781
|
+
"availability": "shipped",
|
|
1782
|
+
"visibility": "public",
|
|
1783
|
+
"participantFacing": true,
|
|
1784
|
+
"public": true,
|
|
1785
|
+
"packageExport": "./adopter-delivery-vectors"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"id": "export:./v4-adopter-delivery",
|
|
1789
|
+
"name": "@kungfu-tech/buildchain/v4-adopter-delivery",
|
|
1790
|
+
"kind": "package-export",
|
|
1791
|
+
"sourcePath": "packages/core/v4-adopter-delivery.js",
|
|
1792
|
+
"evidencePath": "packages/core/v4-adopter-delivery.js",
|
|
1793
|
+
"availability": "shipped",
|
|
1794
|
+
"visibility": "public",
|
|
1795
|
+
"participantFacing": true,
|
|
1796
|
+
"public": true,
|
|
1797
|
+
"packageExport": "./v4-adopter-delivery"
|
|
1798
|
+
},
|
|
1571
1799
|
{
|
|
1572
1800
|
"id": "export:./logging",
|
|
1573
1801
|
"name": "@kungfu-tech/buildchain/logging",
|
|
@@ -1772,6 +2000,42 @@
|
|
|
1772
2000
|
"public": true,
|
|
1773
2001
|
"packageExport": "./release-train"
|
|
1774
2002
|
},
|
|
2003
|
+
{
|
|
2004
|
+
"id": "export:./next-development-transition",
|
|
2005
|
+
"name": "@kungfu-tech/buildchain/next-development-transition",
|
|
2006
|
+
"kind": "package-export",
|
|
2007
|
+
"sourcePath": "packages/core/next-development-transition.js",
|
|
2008
|
+
"evidencePath": "packages/core/next-development-transition.js",
|
|
2009
|
+
"availability": "shipped",
|
|
2010
|
+
"visibility": "public",
|
|
2011
|
+
"participantFacing": true,
|
|
2012
|
+
"public": true,
|
|
2013
|
+
"packageExport": "./next-development-transition"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"id": "export:./next-development-controller",
|
|
2017
|
+
"name": "@kungfu-tech/buildchain/next-development-controller",
|
|
2018
|
+
"kind": "package-export",
|
|
2019
|
+
"sourcePath": "packages/core/next-development-controller.js",
|
|
2020
|
+
"evidencePath": "packages/core/next-development-controller.js",
|
|
2021
|
+
"availability": "shipped",
|
|
2022
|
+
"visibility": "public",
|
|
2023
|
+
"participantFacing": true,
|
|
2024
|
+
"public": true,
|
|
2025
|
+
"packageExport": "./next-development-controller"
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"id": "export:./next-development-projection",
|
|
2029
|
+
"name": "@kungfu-tech/buildchain/next-development-projection",
|
|
2030
|
+
"kind": "package-export",
|
|
2031
|
+
"sourcePath": "packages/core/next-development-projection.js",
|
|
2032
|
+
"evidencePath": "packages/core/next-development-projection.js",
|
|
2033
|
+
"availability": "shipped",
|
|
2034
|
+
"visibility": "public",
|
|
2035
|
+
"participantFacing": true,
|
|
2036
|
+
"public": true,
|
|
2037
|
+
"packageExport": "./next-development-projection"
|
|
2038
|
+
},
|
|
1775
2039
|
{
|
|
1776
2040
|
"id": "export:./stable-candidate-ledger",
|
|
1777
2041
|
"name": "@kungfu-tech/buildchain/stable-candidate-ledger",
|
|
@@ -2116,6 +2380,18 @@
|
|
|
2116
2380
|
}
|
|
2117
2381
|
],
|
|
2118
2382
|
"reverseEnumeratedSurfaces": [
|
|
2383
|
+
{
|
|
2384
|
+
"id": "cli:adopter-delivery",
|
|
2385
|
+
"name": "buildchain adopter-delivery run --input <json-or-path> [--output <path>]",
|
|
2386
|
+
"kind": "cli-command",
|
|
2387
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
2388
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
2389
|
+
"availability": "shipped",
|
|
2390
|
+
"visibility": "public",
|
|
2391
|
+
"participantFacing": true,
|
|
2392
|
+
"public": true,
|
|
2393
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2394
|
+
},
|
|
2119
2395
|
{
|
|
2120
2396
|
"id": "cli:architecture",
|
|
2121
2397
|
"name": "buildchain architecture validate [--cwd <dir>] [--json]",
|
|
@@ -2956,6 +3232,18 @@
|
|
|
2956
3232
|
"public": true,
|
|
2957
3233
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
2958
3234
|
},
|
|
3235
|
+
{
|
|
3236
|
+
"id": "cli:next-development",
|
|
3237
|
+
"name": "buildchain next-development materialize --input <request.json> [--cwd <dir>]",
|
|
3238
|
+
"kind": "cli-command",
|
|
3239
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
3240
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
3241
|
+
"availability": "shipped",
|
|
3242
|
+
"visibility": "public",
|
|
3243
|
+
"participantFacing": true,
|
|
3244
|
+
"public": true,
|
|
3245
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3246
|
+
},
|
|
2959
3247
|
{
|
|
2960
3248
|
"id": "cli:npm",
|
|
2961
3249
|
"name": "buildchain npm",
|
|
@@ -3340,6 +3628,18 @@
|
|
|
3340
3628
|
"public": true,
|
|
3341
3629
|
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3342
3630
|
},
|
|
3631
|
+
{
|
|
3632
|
+
"id": "cli:tail-reseal",
|
|
3633
|
+
"name": "buildchain tail-reseal plan --request <request.json> [--output <plan.json>]",
|
|
3634
|
+
"kind": "cli-command",
|
|
3635
|
+
"sourcePath": "bin/buildchain.mjs",
|
|
3636
|
+
"evidencePath": "bin/buildchain.mjs",
|
|
3637
|
+
"availability": "shipped",
|
|
3638
|
+
"visibility": "public",
|
|
3639
|
+
"participantFacing": true,
|
|
3640
|
+
"public": true,
|
|
3641
|
+
"reverseAuditSource": "bin/buildchain.mjs"
|
|
3642
|
+
},
|
|
3343
3643
|
{
|
|
3344
3644
|
"id": "cli:transaction-inspect",
|
|
3345
3645
|
"name": "buildchain transaction inspect ...",
|
|
@@ -4536,6 +4836,20 @@
|
|
|
4536
4836
|
],
|
|
4537
4837
|
"reverseAuditSource": ".github/workflows"
|
|
4538
4838
|
},
|
|
4839
|
+
{
|
|
4840
|
+
"id": "workflow:buildchain-ref-promotion-recovery",
|
|
4841
|
+
"name": "workflow:buildchain-ref-promotion-recovery",
|
|
4842
|
+
"kind": "workflow",
|
|
4843
|
+
"sourcePath": ".github/workflows/buildchain-ref-promotion-recovery.yml",
|
|
4844
|
+
"evidencePath": ".github/workflows/buildchain-ref-promotion-recovery.yml",
|
|
4845
|
+
"availability": "shipped",
|
|
4846
|
+
"visibility": "public",
|
|
4847
|
+
"participantFacing": true,
|
|
4848
|
+
"public": true,
|
|
4849
|
+
"inputCount": 0,
|
|
4850
|
+
"inputs": [],
|
|
4851
|
+
"reverseAuditSource": ".github/workflows"
|
|
4852
|
+
},
|
|
4539
4853
|
{
|
|
4540
4854
|
"id": "workflow:buildchain-ref-promotion",
|
|
4541
4855
|
"name": "workflow:buildchain-ref-promotion",
|
|
@@ -4728,7 +5042,7 @@
|
|
|
4728
5042
|
"visibility": "public",
|
|
4729
5043
|
"participantFacing": true,
|
|
4730
5044
|
"public": true,
|
|
4731
|
-
"inputCount":
|
|
5045
|
+
"inputCount": 43,
|
|
4732
5046
|
"inputs": [
|
|
4733
5047
|
"active-lease-context",
|
|
4734
5048
|
"affected-paths-json",
|
|
@@ -4744,22 +5058,32 @@
|
|
|
4744
5058
|
"dependency-root",
|
|
4745
5059
|
"diagnostic-context",
|
|
4746
5060
|
"dry-run",
|
|
5061
|
+
"environment-root",
|
|
4747
5062
|
"expected-head-sha",
|
|
4748
5063
|
"expected-pr-number",
|
|
5064
|
+
"handoff-workflow-id",
|
|
4749
5065
|
"initiative-root",
|
|
4750
5066
|
"landing-mode",
|
|
5067
|
+
"legacy-active-owner-binding-json",
|
|
4751
5068
|
"max-merges",
|
|
4752
5069
|
"merge-method",
|
|
5070
|
+
"native-command",
|
|
5071
|
+
"native-command-root",
|
|
5072
|
+
"native-heartbeat-seconds",
|
|
5073
|
+
"native-proof-json",
|
|
4753
5074
|
"plan-root",
|
|
4754
5075
|
"project-cut-proof-json",
|
|
4755
5076
|
"queue-admission-context",
|
|
4756
5077
|
"ready-label",
|
|
5078
|
+
"release-blocker-priority-json",
|
|
4757
5079
|
"require-approval",
|
|
4758
5080
|
"required-status-checks",
|
|
4759
5081
|
"same-repository-only",
|
|
4760
5082
|
"shard-evidence-roots-json",
|
|
4761
5083
|
"source-identity-root",
|
|
4762
5084
|
"source-patch-root",
|
|
5085
|
+
"source-workflow-id",
|
|
5086
|
+
"source-workflow-run-id",
|
|
4763
5087
|
"target-branch",
|
|
4764
5088
|
"toolchain-root",
|
|
4765
5089
|
"warrant-lease-seconds"
|
|
@@ -5352,12 +5676,17 @@
|
|
|
5352
5676
|
"visibility": "public",
|
|
5353
5677
|
"participantFacing": true,
|
|
5354
5678
|
"public": true,
|
|
5355
|
-
"inputCount":
|
|
5679
|
+
"inputCount": 10,
|
|
5356
5680
|
"inputs": [
|
|
5357
5681
|
"buildchain-ref",
|
|
5682
|
+
"candidate-root",
|
|
5358
5683
|
"declaration-path",
|
|
5359
5684
|
"execute",
|
|
5360
5685
|
"provider-bindings-path",
|
|
5686
|
+
"rehearsal-authority-path",
|
|
5687
|
+
"rehearsal-capsule-path",
|
|
5688
|
+
"rehearsal-evidence-path",
|
|
5689
|
+
"rehearsal-mode",
|
|
5361
5690
|
"state-path"
|
|
5362
5691
|
],
|
|
5363
5692
|
"reverseAuditSource": ".github/workflows"
|
|
@@ -5435,6 +5764,40 @@
|
|
|
5435
5764
|
],
|
|
5436
5765
|
"reverseAuditSource": ".github/workflows"
|
|
5437
5766
|
},
|
|
5767
|
+
{
|
|
5768
|
+
"id": "workflow:v4-adopter-delivery-dogfood",
|
|
5769
|
+
"name": "workflow:v4-adopter-delivery-dogfood",
|
|
5770
|
+
"kind": "workflow",
|
|
5771
|
+
"sourcePath": ".github/workflows/v4-adopter-delivery-dogfood.yml",
|
|
5772
|
+
"evidencePath": ".github/workflows/v4-adopter-delivery-dogfood.yml",
|
|
5773
|
+
"availability": "shipped",
|
|
5774
|
+
"visibility": "public",
|
|
5775
|
+
"participantFacing": true,
|
|
5776
|
+
"public": true,
|
|
5777
|
+
"inputCount": 0,
|
|
5778
|
+
"inputs": [],
|
|
5779
|
+
"reverseAuditSource": ".github/workflows"
|
|
5780
|
+
},
|
|
5781
|
+
{
|
|
5782
|
+
"id": "workflow:v4-adopter-delivery",
|
|
5783
|
+
"name": "workflow:v4-adopter-delivery",
|
|
5784
|
+
"kind": "workflow",
|
|
5785
|
+
"sourcePath": ".github/workflows/v4-adopter-delivery.yml",
|
|
5786
|
+
"evidencePath": ".github/workflows/v4-adopter-delivery.yml",
|
|
5787
|
+
"availability": "shipped",
|
|
5788
|
+
"visibility": "public",
|
|
5789
|
+
"participantFacing": true,
|
|
5790
|
+
"public": true,
|
|
5791
|
+
"inputCount": 5,
|
|
5792
|
+
"inputs": [
|
|
5793
|
+
"archive-path",
|
|
5794
|
+
"bootstrap-path",
|
|
5795
|
+
"consumer",
|
|
5796
|
+
"input-path",
|
|
5797
|
+
"node-version"
|
|
5798
|
+
],
|
|
5799
|
+
"reverseAuditSource": ".github/workflows"
|
|
5800
|
+
},
|
|
5438
5801
|
{
|
|
5439
5802
|
"id": "workflow:v4-public-consumer-dogfood",
|
|
5440
5803
|
"name": "workflow:v4-public-consumer-dogfood",
|
|
@@ -5449,6 +5812,20 @@
|
|
|
5449
5812
|
"inputs": [],
|
|
5450
5813
|
"reverseAuditSource": ".github/workflows"
|
|
5451
5814
|
},
|
|
5815
|
+
{
|
|
5816
|
+
"id": "workflow:v4-publication-rehearsal-dogfood",
|
|
5817
|
+
"name": "workflow:v4-publication-rehearsal-dogfood",
|
|
5818
|
+
"kind": "workflow",
|
|
5819
|
+
"sourcePath": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
|
|
5820
|
+
"evidencePath": ".github/workflows/v4-publication-rehearsal-dogfood.yml",
|
|
5821
|
+
"availability": "shipped",
|
|
5822
|
+
"visibility": "public",
|
|
5823
|
+
"participantFacing": true,
|
|
5824
|
+
"public": true,
|
|
5825
|
+
"inputCount": 0,
|
|
5826
|
+
"inputs": [],
|
|
5827
|
+
"reverseAuditSource": ".github/workflows"
|
|
5828
|
+
},
|
|
5452
5829
|
{
|
|
5453
5830
|
"id": "workflow:v4-stage-capsule-canary",
|
|
5454
5831
|
"name": "workflow:v4-stage-capsule-canary",
|
|
@@ -5470,6 +5847,25 @@
|
|
|
5470
5847
|
],
|
|
5471
5848
|
"reverseAuditSource": ".github/workflows"
|
|
5472
5849
|
},
|
|
5850
|
+
{
|
|
5851
|
+
"id": "workflow:v4-tail-reseal",
|
|
5852
|
+
"name": "workflow:v4-tail-reseal",
|
|
5853
|
+
"kind": "workflow",
|
|
5854
|
+
"sourcePath": ".github/workflows/v4-tail-reseal.yml",
|
|
5855
|
+
"evidencePath": ".github/workflows/v4-tail-reseal.yml",
|
|
5856
|
+
"availability": "shipped",
|
|
5857
|
+
"visibility": "public",
|
|
5858
|
+
"participantFacing": true,
|
|
5859
|
+
"public": true,
|
|
5860
|
+
"inputCount": 4,
|
|
5861
|
+
"inputs": [
|
|
5862
|
+
"artifact-retention-days",
|
|
5863
|
+
"consumer-policy-receipt-json",
|
|
5864
|
+
"macos-finalization-command",
|
|
5865
|
+
"request-json"
|
|
5866
|
+
],
|
|
5867
|
+
"reverseAuditSource": ".github/workflows"
|
|
5868
|
+
},
|
|
5473
5869
|
{
|
|
5474
5870
|
"id": "workflow:verify",
|
|
5475
5871
|
"name": "workflow:verify",
|
|
@@ -5558,7 +5954,7 @@
|
|
|
5558
5954
|
"visibility": "public",
|
|
5559
5955
|
"participantFacing": true,
|
|
5560
5956
|
"public": true,
|
|
5561
|
-
"inputCount":
|
|
5957
|
+
"inputCount": 84,
|
|
5562
5958
|
"inputs": [
|
|
5563
5959
|
"allow-repository",
|
|
5564
5960
|
"branch-protection-bypass-apps",
|
|
@@ -5630,6 +6026,7 @@
|
|
|
5630
6026
|
"release-passport-promotion-routing-json",
|
|
5631
6027
|
"release-passport-v4-consumer-policy-certification-json",
|
|
5632
6028
|
"release-passport-v4-consumer-policy-certification-root",
|
|
6029
|
+
"release-passport-v4-runtime-resume-evidence-command",
|
|
5633
6030
|
"release-passport-v4-runtime-resume-evidence-json",
|
|
5634
6031
|
"release-tail-state-path",
|
|
5635
6032
|
"require-governance",
|
|
@@ -5656,13 +6053,18 @@
|
|
|
5656
6053
|
"visibility": "public",
|
|
5657
6054
|
"participantFacing": true,
|
|
5658
6055
|
"public": true,
|
|
5659
|
-
"inputCount":
|
|
6056
|
+
"inputCount": 11,
|
|
5660
6057
|
"inputs": [
|
|
6058
|
+
"candidate-root",
|
|
5661
6059
|
"declaration",
|
|
5662
6060
|
"execute",
|
|
5663
6061
|
"github-token",
|
|
5664
6062
|
"http-token",
|
|
5665
6063
|
"provider-bindings",
|
|
6064
|
+
"rehearsal-authority",
|
|
6065
|
+
"rehearsal-capsule",
|
|
6066
|
+
"rehearsal-evidence-path",
|
|
6067
|
+
"rehearsal-mode",
|
|
5666
6068
|
"state-path"
|
|
5667
6069
|
],
|
|
5668
6070
|
"reverseAuditSource": "actions/*/action.yml"
|
|
@@ -6140,6 +6542,18 @@
|
|
|
6140
6542
|
"public": true,
|
|
6141
6543
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6142
6544
|
},
|
|
6545
|
+
{
|
|
6546
|
+
"id": "site-page:manual:dev-delivery-qualification-landing-adr",
|
|
6547
|
+
"name": "site-page:manual:dev-delivery-qualification-landing-adr",
|
|
6548
|
+
"kind": "site-page",
|
|
6549
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6550
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6551
|
+
"availability": "shipped",
|
|
6552
|
+
"visibility": "public",
|
|
6553
|
+
"participantFacing": true,
|
|
6554
|
+
"public": true,
|
|
6555
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6556
|
+
},
|
|
6143
6557
|
{
|
|
6144
6558
|
"id": "site-page:manual:dev-delivery-warrant",
|
|
6145
6559
|
"name": "site-page:manual:dev-delivery-warrant",
|
|
@@ -6308,6 +6722,18 @@
|
|
|
6308
6722
|
"public": true,
|
|
6309
6723
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6310
6724
|
},
|
|
6725
|
+
{
|
|
6726
|
+
"id": "site-page:manual:next-development-transition",
|
|
6727
|
+
"name": "site-page:manual:next-development-transition",
|
|
6728
|
+
"kind": "site-page",
|
|
6729
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
6730
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
6731
|
+
"availability": "shipped",
|
|
6732
|
+
"visibility": "public",
|
|
6733
|
+
"participantFacing": true,
|
|
6734
|
+
"public": true,
|
|
6735
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6736
|
+
},
|
|
6311
6737
|
{
|
|
6312
6738
|
"id": "site-page:manual:node-api-reference",
|
|
6313
6739
|
"name": "site-page:manual:node-api-reference",
|
|
@@ -6584,6 +7010,18 @@
|
|
|
6584
7010
|
"public": true,
|
|
6585
7011
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6586
7012
|
},
|
|
7013
|
+
{
|
|
7014
|
+
"id": "site-page:manual:v4-adopter-delivery",
|
|
7015
|
+
"name": "site-page:manual:v4-adopter-delivery",
|
|
7016
|
+
"kind": "site-page",
|
|
7017
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7018
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7019
|
+
"availability": "shipped",
|
|
7020
|
+
"visibility": "public",
|
|
7021
|
+
"participantFacing": true,
|
|
7022
|
+
"public": true,
|
|
7023
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7024
|
+
},
|
|
6587
7025
|
{
|
|
6588
7026
|
"id": "site-page:manual:v4-canonical-contracts",
|
|
6589
7027
|
"name": "site-page:manual:v4-canonical-contracts",
|
|
@@ -6596,6 +7034,18 @@
|
|
|
6596
7034
|
"public": true,
|
|
6597
7035
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6598
7036
|
},
|
|
7037
|
+
{
|
|
7038
|
+
"id": "site-page:manual:v4-compatibility-facts",
|
|
7039
|
+
"name": "site-page:manual:v4-compatibility-facts",
|
|
7040
|
+
"kind": "site-page",
|
|
7041
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7042
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7043
|
+
"availability": "shipped",
|
|
7044
|
+
"visibility": "public",
|
|
7045
|
+
"participantFacing": true,
|
|
7046
|
+
"public": true,
|
|
7047
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7048
|
+
},
|
|
6599
7049
|
{
|
|
6600
7050
|
"id": "site-page:manual:v4-delivery-warrant-read-candidate",
|
|
6601
7051
|
"name": "site-page:manual:v4-delivery-warrant-read-candidate",
|
|
@@ -6632,6 +7082,18 @@
|
|
|
6632
7082
|
"public": true,
|
|
6633
7083
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6634
7084
|
},
|
|
7085
|
+
{
|
|
7086
|
+
"id": "site-page:manual:v4-publication-rehearsal",
|
|
7087
|
+
"name": "site-page:manual:v4-publication-rehearsal",
|
|
7088
|
+
"kind": "site-page",
|
|
7089
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7090
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7091
|
+
"availability": "shipped",
|
|
7092
|
+
"visibility": "public",
|
|
7093
|
+
"participantFacing": true,
|
|
7094
|
+
"public": true,
|
|
7095
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7096
|
+
},
|
|
6635
7097
|
{
|
|
6636
7098
|
"id": "site-page:manual:v4-runtime-ref-resume-authority",
|
|
6637
7099
|
"name": "site-page:manual:v4-runtime-ref-resume-authority",
|
|
@@ -6656,6 +7118,18 @@
|
|
|
6656
7118
|
"public": true,
|
|
6657
7119
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
6658
7120
|
},
|
|
7121
|
+
{
|
|
7122
|
+
"id": "site-page:manual:v4-tail-reseal",
|
|
7123
|
+
"name": "site-page:manual:v4-tail-reseal",
|
|
7124
|
+
"kind": "site-page",
|
|
7125
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
7126
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
7127
|
+
"availability": "shipped",
|
|
7128
|
+
"visibility": "public",
|
|
7129
|
+
"participantFacing": true,
|
|
7130
|
+
"public": true,
|
|
7131
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
7132
|
+
},
|
|
6659
7133
|
{
|
|
6660
7134
|
"id": "site-page:manual:versioning",
|
|
6661
7135
|
"name": "site-page:manual:versioning",
|
|
@@ -6863,6 +7337,6 @@
|
|
|
6863
7337
|
}
|
|
6864
7338
|
}
|
|
6865
7339
|
],
|
|
6866
|
-
"publicSurfaceCount":
|
|
7340
|
+
"publicSurfaceCount": 472
|
|
6867
7341
|
}
|
|
6868
7342
|
}
|