@kungfu-tech/buildchain 3.0.9-alpha.4 → 3.0.9-alpha.6
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/bin/buildchain.mjs +5 -1
- package/dist/site/buildchain-contract.json +9 -9
- package/dist/site/buildchain-site.json +56 -26
- package/dist/site/cli-registry.json +18 -2
- package/dist/site/kfd-claims.json +8 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +6 -6
- package/dist/site/node-api-registry.json +290 -49
- package/dist/site/page-registry.json +46 -16
- package/dist/site/public-surface-audit.json +122 -6
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +10 -10
- package/dist/site/workflow-registry.json +12 -6
- package/docs/cli-reference.md +79 -13
- package/docs/dev-delivery-warrant.md +53 -19
- package/docs/kfd-support.md +7 -2
- package/docs/node-api-reference.md +59 -51
- package/docs/release-governance.md +5 -4
- package/docs/release-passport.md +8 -2
- package/docs/versioning.md +1 -0
- package/package.json +3 -2
- package/packages/core/artifact-verification-envelope.js +5 -5
- package/packages/core/dev-delivery-native-proof.js +333 -0
- package/packages/core/dev-delivery-warrant-settlement.js +5 -1
- package/packages/core/dev-delivery-warrant.js +40 -6
- package/packages/core/kfd-adopter-manifest.js +46 -47
- package/packages/core/release-passport-contract.js +5 -5
- package/packages/core/release-passport.js +5 -4
- package/scripts/aws-macos-jit-controller-core.mjs +82 -2
- package/scripts/aws-macos-jit-controller.mjs +81 -1
- package/scripts/aws-macos-jit-source-rebind.mjs +147 -24
- package/scripts/buildchain-cli-help.mjs +6 -2
- package/scripts/check-internal-architecture.mjs +1 -0
- package/scripts/dev-delivery-native-run.mjs +187 -0
- package/scripts/dev-delivery-proof.mjs +54 -2
- package/scripts/dev-delivery-two-phase.mjs +598 -0
- package/scripts/dev-delivery-warrant.mjs +38 -3
- package/scripts/dev-pr-delivery-warrant.mjs +6 -1
- package/scripts/generate-channel-build-workflow.mjs +4 -0
- package/scripts/init-repo.mjs +16 -0
- package/scripts/release-candidate-tail-reseal.mjs +426 -0
- package/templates/native-dev-delivery.yml +82 -0
|
@@ -830,11 +830,11 @@
|
|
|
830
830
|
"id": "packages/core/artifact-verification-envelope.js#createKfdAdopterReleaseBinding",
|
|
831
831
|
"name": "createKfdAdopterReleaseBinding",
|
|
832
832
|
"kind": "function",
|
|
833
|
-
"signature": "function createKfdAdopterReleaseBinding({ manifest, manifestGate, legacyProjection, manifestPath = \"kfd-adopter-manifest.json\", gatePath = \"kfd-adopter-manifest-gate.json\", legacyProjectionPath = \"kfd-support.json\", expectedSourceSha = \"\", } = {})",
|
|
833
|
+
"signature": "function createKfdAdopterReleaseBinding({ manifest, manifestGate, legacyProjection, manifestPath = \"kfd-adopter-manifest.json\", gatePath = \"kfd-adopter-manifest-gate.json\", legacyProjectionPath = \"kfd-support.json\", expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", expectedSourceSha = \"\", } = {})",
|
|
834
834
|
"parameters": [
|
|
835
835
|
{
|
|
836
836
|
"name": "parameter1",
|
|
837
|
-
"signature": "{ manifest, manifestGate, legacyProjection, manifestPath = \"kfd-adopter-manifest.json\", gatePath = \"kfd-adopter-manifest-gate.json\", legacyProjectionPath = \"kfd-support.json\", expectedSourceSha = \"\", } = {}"
|
|
837
|
+
"signature": "{ manifest, manifestGate, legacyProjection, manifestPath = \"kfd-adopter-manifest.json\", gatePath = \"kfd-adopter-manifest-gate.json\", legacyProjectionPath = \"kfd-support.json\", expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", expectedSourceSha = \"\", } = {}"
|
|
838
838
|
}
|
|
839
839
|
],
|
|
840
840
|
"returns": "unknown",
|
|
@@ -989,7 +989,7 @@
|
|
|
989
989
|
"id": "packages/core/artifact-verification-envelope.js#validateKfdAdopterReleaseBinding",
|
|
990
990
|
"name": "validateKfdAdopterReleaseBinding",
|
|
991
991
|
"kind": "function",
|
|
992
|
-
"signature": "function validateKfdAdopterReleaseBinding(binding, { manifest, manifestGate, legacyProjection, expectedSourceSha = \"\", } = {})",
|
|
992
|
+
"signature": "function validateKfdAdopterReleaseBinding(binding, { manifest, manifestGate, legacyProjection, expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", expectedSourceSha = \"\", } = {})",
|
|
993
993
|
"parameters": [
|
|
994
994
|
{
|
|
995
995
|
"name": "binding",
|
|
@@ -997,7 +997,7 @@
|
|
|
997
997
|
},
|
|
998
998
|
{
|
|
999
999
|
"name": "parameter2",
|
|
1000
|
-
"signature": "{ manifest, manifestGate, legacyProjection, expectedSourceSha = \"\", } = {}"
|
|
1000
|
+
"signature": "{ manifest, manifestGate, legacyProjection, expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", expectedSourceSha = \"\", } = {}"
|
|
1001
1001
|
}
|
|
1002
1002
|
],
|
|
1003
1003
|
"returns": "unknown",
|
|
@@ -4945,6 +4945,202 @@
|
|
|
4945
4945
|
"agent"
|
|
4946
4946
|
]
|
|
4947
4947
|
},
|
|
4948
|
+
{
|
|
4949
|
+
"id": "packages/core/dev-delivery-native-proof.js#createNativeProofReuseDecision",
|
|
4950
|
+
"name": "createNativeProofReuseDecision",
|
|
4951
|
+
"kind": "function",
|
|
4952
|
+
"signature": "function createNativeProofReuseDecision({ proof, current = {} } = {})",
|
|
4953
|
+
"parameters": [
|
|
4954
|
+
{
|
|
4955
|
+
"name": "parameter1",
|
|
4956
|
+
"signature": "{ proof, current = {} } = {}"
|
|
4957
|
+
}
|
|
4958
|
+
],
|
|
4959
|
+
"returns": "unknown",
|
|
4960
|
+
"errors": [
|
|
4961
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
4962
|
+
],
|
|
4963
|
+
"sideEffects": [
|
|
4964
|
+
"none-detected-by-static-source-scan"
|
|
4965
|
+
],
|
|
4966
|
+
"source": {
|
|
4967
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
4968
|
+
"line": 205
|
|
4969
|
+
},
|
|
4970
|
+
"example": "import { createNativeProofReuseDecision } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
4971
|
+
"maturity": "stable",
|
|
4972
|
+
"audience": [
|
|
4973
|
+
"developer",
|
|
4974
|
+
"agent"
|
|
4975
|
+
]
|
|
4976
|
+
},
|
|
4977
|
+
{
|
|
4978
|
+
"id": "packages/core/dev-delivery-native-proof.js#createNativeQualificationProof",
|
|
4979
|
+
"name": "createNativeQualificationProof",
|
|
4980
|
+
"kind": "function",
|
|
4981
|
+
"signature": "function createNativeQualificationProof(input = {})",
|
|
4982
|
+
"parameters": [
|
|
4983
|
+
{
|
|
4984
|
+
"name": "input",
|
|
4985
|
+
"signature": "input = {}"
|
|
4986
|
+
}
|
|
4987
|
+
],
|
|
4988
|
+
"returns": "unknown",
|
|
4989
|
+
"errors": [
|
|
4990
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
4991
|
+
],
|
|
4992
|
+
"sideEffects": [
|
|
4993
|
+
"none-detected-by-static-source-scan"
|
|
4994
|
+
],
|
|
4995
|
+
"source": {
|
|
4996
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
4997
|
+
"line": 55
|
|
4998
|
+
},
|
|
4999
|
+
"example": "import { createNativeQualificationProof } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5000
|
+
"maturity": "stable",
|
|
5001
|
+
"audience": [
|
|
5002
|
+
"developer",
|
|
5003
|
+
"agent"
|
|
5004
|
+
]
|
|
5005
|
+
},
|
|
5006
|
+
{
|
|
5007
|
+
"id": "packages/core/dev-delivery-native-proof.js#DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA",
|
|
5008
|
+
"name": "DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA",
|
|
5009
|
+
"kind": "constant",
|
|
5010
|
+
"signature": "const DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA",
|
|
5011
|
+
"parameters": [],
|
|
5012
|
+
"returns": "value",
|
|
5013
|
+
"errors": [
|
|
5014
|
+
"Import does not declare a throw contract."
|
|
5015
|
+
],
|
|
5016
|
+
"sideEffects": [
|
|
5017
|
+
"none-on-import"
|
|
5018
|
+
],
|
|
5019
|
+
"source": {
|
|
5020
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
5021
|
+
"line": 16
|
|
5022
|
+
},
|
|
5023
|
+
"example": "import { DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5024
|
+
"maturity": "stable",
|
|
5025
|
+
"audience": [
|
|
5026
|
+
"developer",
|
|
5027
|
+
"agent"
|
|
5028
|
+
]
|
|
5029
|
+
},
|
|
5030
|
+
{
|
|
5031
|
+
"id": "packages/core/dev-delivery-native-proof.js#NATIVE_PROOF_REUSE_DECISION_SCHEMA",
|
|
5032
|
+
"name": "NATIVE_PROOF_REUSE_DECISION_SCHEMA",
|
|
5033
|
+
"kind": "constant",
|
|
5034
|
+
"signature": "const NATIVE_PROOF_REUSE_DECISION_SCHEMA",
|
|
5035
|
+
"parameters": [],
|
|
5036
|
+
"returns": "value",
|
|
5037
|
+
"errors": [
|
|
5038
|
+
"Import does not declare a throw contract."
|
|
5039
|
+
],
|
|
5040
|
+
"sideEffects": [
|
|
5041
|
+
"none-on-import"
|
|
5042
|
+
],
|
|
5043
|
+
"source": {
|
|
5044
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
5045
|
+
"line": 14
|
|
5046
|
+
},
|
|
5047
|
+
"example": "import { NATIVE_PROOF_REUSE_DECISION_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5048
|
+
"maturity": "stable",
|
|
5049
|
+
"audience": [
|
|
5050
|
+
"developer",
|
|
5051
|
+
"agent"
|
|
5052
|
+
]
|
|
5053
|
+
},
|
|
5054
|
+
{
|
|
5055
|
+
"id": "packages/core/dev-delivery-native-proof.js#NATIVE_QUALIFICATION_PROOF_SCHEMA",
|
|
5056
|
+
"name": "NATIVE_QUALIFICATION_PROOF_SCHEMA",
|
|
5057
|
+
"kind": "constant",
|
|
5058
|
+
"signature": "const NATIVE_QUALIFICATION_PROOF_SCHEMA",
|
|
5059
|
+
"parameters": [],
|
|
5060
|
+
"returns": "value",
|
|
5061
|
+
"errors": [
|
|
5062
|
+
"Import does not declare a throw contract."
|
|
5063
|
+
],
|
|
5064
|
+
"sideEffects": [
|
|
5065
|
+
"none-on-import"
|
|
5066
|
+
],
|
|
5067
|
+
"source": {
|
|
5068
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
5069
|
+
"line": 12
|
|
5070
|
+
},
|
|
5071
|
+
"example": "import { NATIVE_QUALIFICATION_PROOF_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5072
|
+
"maturity": "stable",
|
|
5073
|
+
"audience": [
|
|
5074
|
+
"developer",
|
|
5075
|
+
"agent"
|
|
5076
|
+
]
|
|
5077
|
+
},
|
|
5078
|
+
{
|
|
5079
|
+
"id": "packages/core/dev-delivery-native-proof.js#verifyNativeProofReuseDecision",
|
|
5080
|
+
"name": "verifyNativeProofReuseDecision",
|
|
5081
|
+
"kind": "function",
|
|
5082
|
+
"signature": "function verifyNativeProofReuseDecision(decisionInput, { proof, current = {} } = {})",
|
|
5083
|
+
"parameters": [
|
|
5084
|
+
{
|
|
5085
|
+
"name": "decisionInput",
|
|
5086
|
+
"signature": "decisionInput"
|
|
5087
|
+
},
|
|
5088
|
+
{
|
|
5089
|
+
"name": "parameter2",
|
|
5090
|
+
"signature": "{ proof, current = {} } = {}"
|
|
5091
|
+
}
|
|
5092
|
+
],
|
|
5093
|
+
"returns": "unknown",
|
|
5094
|
+
"errors": [
|
|
5095
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
5096
|
+
],
|
|
5097
|
+
"sideEffects": [
|
|
5098
|
+
"none-detected-by-static-source-scan"
|
|
5099
|
+
],
|
|
5100
|
+
"source": {
|
|
5101
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
5102
|
+
"line": 209
|
|
5103
|
+
},
|
|
5104
|
+
"example": "import { verifyNativeProofReuseDecision } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5105
|
+
"maturity": "stable",
|
|
5106
|
+
"audience": [
|
|
5107
|
+
"developer",
|
|
5108
|
+
"agent"
|
|
5109
|
+
]
|
|
5110
|
+
},
|
|
5111
|
+
{
|
|
5112
|
+
"id": "packages/core/dev-delivery-native-proof.js#verifyNativeQualificationProof",
|
|
5113
|
+
"name": "verifyNativeQualificationProof",
|
|
5114
|
+
"kind": "function",
|
|
5115
|
+
"signature": "function verifyNativeQualificationProof(proofInput, expected = {})",
|
|
5116
|
+
"parameters": [
|
|
5117
|
+
{
|
|
5118
|
+
"name": "proofInput",
|
|
5119
|
+
"signature": "proofInput"
|
|
5120
|
+
},
|
|
5121
|
+
{
|
|
5122
|
+
"name": "expected",
|
|
5123
|
+
"signature": "expected = {}"
|
|
5124
|
+
}
|
|
5125
|
+
],
|
|
5126
|
+
"returns": "unknown",
|
|
5127
|
+
"errors": [
|
|
5128
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
5129
|
+
],
|
|
5130
|
+
"sideEffects": [
|
|
5131
|
+
"none-detected-by-static-source-scan"
|
|
5132
|
+
],
|
|
5133
|
+
"source": {
|
|
5134
|
+
"path": "packages/core/dev-delivery-native-proof.js",
|
|
5135
|
+
"line": 85
|
|
5136
|
+
},
|
|
5137
|
+
"example": "import { verifyNativeQualificationProof } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5138
|
+
"maturity": "stable",
|
|
5139
|
+
"audience": [
|
|
5140
|
+
"developer",
|
|
5141
|
+
"agent"
|
|
5142
|
+
]
|
|
5143
|
+
},
|
|
4948
5144
|
{
|
|
4949
5145
|
"id": "packages/core/dev-delivery-proof.js#classifyDevDeliveryDelta",
|
|
4950
5146
|
"name": "classifyDevDeliveryDelta",
|
|
@@ -5289,7 +5485,7 @@
|
|
|
5289
5485
|
],
|
|
5290
5486
|
"source": {
|
|
5291
5487
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5292
|
-
"line":
|
|
5488
|
+
"line": 600
|
|
5293
5489
|
},
|
|
5294
5490
|
"example": "import { cancelQueuedDevDeliveryCandidate } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5295
5491
|
"maturity": "stable",
|
|
@@ -5326,7 +5522,7 @@
|
|
|
5326
5522
|
],
|
|
5327
5523
|
"source": {
|
|
5328
5524
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5329
|
-
"line":
|
|
5525
|
+
"line": 552
|
|
5330
5526
|
},
|
|
5331
5527
|
"example": "import { closeDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5332
5528
|
"maturity": "stable",
|
|
@@ -5355,7 +5551,7 @@
|
|
|
5355
5551
|
],
|
|
5356
5552
|
"source": {
|
|
5357
5553
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5358
|
-
"line":
|
|
5554
|
+
"line": 106
|
|
5359
5555
|
},
|
|
5360
5556
|
"example": "import { createDevDeliveryQueue } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5361
5557
|
"maturity": "stable",
|
|
@@ -5403,7 +5599,7 @@
|
|
|
5403
5599
|
],
|
|
5404
5600
|
"source": {
|
|
5405
5601
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5406
|
-
"line":
|
|
5602
|
+
"line": 24
|
|
5407
5603
|
},
|
|
5408
5604
|
"example": "import { DEV_DELIVERY_CLASSES } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5409
5605
|
"maturity": "stable",
|
|
@@ -5427,7 +5623,7 @@
|
|
|
5427
5623
|
],
|
|
5428
5624
|
"source": {
|
|
5429
5625
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5430
|
-
"line":
|
|
5626
|
+
"line": 16
|
|
5431
5627
|
},
|
|
5432
5628
|
"example": "import { DEV_DELIVERY_LEASE_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5433
5629
|
"maturity": "stable",
|
|
@@ -5451,7 +5647,7 @@
|
|
|
5451
5647
|
],
|
|
5452
5648
|
"source": {
|
|
5453
5649
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5454
|
-
"line":
|
|
5650
|
+
"line": 18
|
|
5455
5651
|
},
|
|
5456
5652
|
"example": "import { DEV_DELIVERY_PRIORITIES } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5457
5653
|
"maturity": "stable",
|
|
@@ -5475,7 +5671,7 @@
|
|
|
5475
5671
|
],
|
|
5476
5672
|
"source": {
|
|
5477
5673
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5478
|
-
"line":
|
|
5674
|
+
"line": 12
|
|
5479
5675
|
},
|
|
5480
5676
|
"example": "import { DEV_DELIVERY_QUEUE_CONTRACT } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5481
5677
|
"maturity": "stable",
|
|
@@ -5499,7 +5695,7 @@
|
|
|
5499
5695
|
],
|
|
5500
5696
|
"source": {
|
|
5501
5697
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5502
|
-
"line":
|
|
5698
|
+
"line": 15
|
|
5503
5699
|
},
|
|
5504
5700
|
"example": "import { DEV_DELIVERY_SELECTION_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5505
5701
|
"maturity": "stable",
|
|
@@ -5547,7 +5743,7 @@
|
|
|
5547
5743
|
],
|
|
5548
5744
|
"source": {
|
|
5549
5745
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5550
|
-
"line":
|
|
5746
|
+
"line": 14
|
|
5551
5747
|
},
|
|
5552
5748
|
"example": "import { DEV_DELIVERY_SUBMISSION_RECEIPT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5553
5749
|
"maturity": "stable",
|
|
@@ -5571,7 +5767,7 @@
|
|
|
5571
5767
|
],
|
|
5572
5768
|
"source": {
|
|
5573
5769
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5574
|
-
"line":
|
|
5770
|
+
"line": 13
|
|
5575
5771
|
},
|
|
5576
5772
|
"example": "import { DEV_DELIVERY_WARRANT_SCHEMA } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5577
5773
|
"maturity": "stable",
|
|
@@ -5608,7 +5804,7 @@
|
|
|
5608
5804
|
],
|
|
5609
5805
|
"source": {
|
|
5610
5806
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5611
|
-
"line":
|
|
5807
|
+
"line": 467
|
|
5612
5808
|
},
|
|
5613
5809
|
"example": "import { heartbeatDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5614
5810
|
"maturity": "stable",
|
|
@@ -5641,7 +5837,7 @@
|
|
|
5641
5837
|
],
|
|
5642
5838
|
"source": {
|
|
5643
5839
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5644
|
-
"line":
|
|
5840
|
+
"line": 121
|
|
5645
5841
|
},
|
|
5646
5842
|
"example": "import { normalizeDevDeliveryQueue } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5647
5843
|
"maturity": "stable",
|
|
@@ -5674,7 +5870,7 @@
|
|
|
5674
5870
|
],
|
|
5675
5871
|
"source": {
|
|
5676
5872
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5677
|
-
"line":
|
|
5873
|
+
"line": 603
|
|
5678
5874
|
},
|
|
5679
5875
|
"example": "import { observeDevDeliveryQueue } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5680
5876
|
"maturity": "stable",
|
|
@@ -5683,6 +5879,43 @@
|
|
|
5683
5879
|
"agent"
|
|
5684
5880
|
]
|
|
5685
5881
|
},
|
|
5882
|
+
{
|
|
5883
|
+
"id": "packages/core/dev-delivery-warrant.js#qualifyDevDeliveryWarrant",
|
|
5884
|
+
"name": "qualifyDevDeliveryWarrant",
|
|
5885
|
+
"kind": "function",
|
|
5886
|
+
"signature": "function qualifyDevDeliveryWarrant(queueInput, warrant, options)",
|
|
5887
|
+
"parameters": [
|
|
5888
|
+
{
|
|
5889
|
+
"name": "queueInput",
|
|
5890
|
+
"signature": "queueInput"
|
|
5891
|
+
},
|
|
5892
|
+
{
|
|
5893
|
+
"name": "warrant",
|
|
5894
|
+
"signature": "warrant"
|
|
5895
|
+
},
|
|
5896
|
+
{
|
|
5897
|
+
"name": "options",
|
|
5898
|
+
"signature": "options"
|
|
5899
|
+
}
|
|
5900
|
+
],
|
|
5901
|
+
"returns": "unknown",
|
|
5902
|
+
"errors": [
|
|
5903
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
5904
|
+
],
|
|
5905
|
+
"sideEffects": [
|
|
5906
|
+
"may-write-or-invoke-external-actions"
|
|
5907
|
+
],
|
|
5908
|
+
"source": {
|
|
5909
|
+
"path": "packages/core/dev-delivery-warrant.js",
|
|
5910
|
+
"line": 501
|
|
5911
|
+
},
|
|
5912
|
+
"example": "import { qualifyDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5913
|
+
"maturity": "stable",
|
|
5914
|
+
"audience": [
|
|
5915
|
+
"developer",
|
|
5916
|
+
"agent"
|
|
5917
|
+
]
|
|
5918
|
+
},
|
|
5686
5919
|
{
|
|
5687
5920
|
"id": "packages/core/dev-delivery-warrant.js#rankDevDeliveryCandidates",
|
|
5688
5921
|
"name": "rankDevDeliveryCandidates",
|
|
@@ -5707,7 +5940,7 @@
|
|
|
5707
5940
|
],
|
|
5708
5941
|
"source": {
|
|
5709
5942
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5710
|
-
"line":
|
|
5943
|
+
"line": 302
|
|
5711
5944
|
},
|
|
5712
5945
|
"example": "import { rankDevDeliveryCandidates } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5713
5946
|
"maturity": "stable",
|
|
@@ -5740,7 +5973,7 @@
|
|
|
5740
5973
|
],
|
|
5741
5974
|
"source": {
|
|
5742
5975
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5743
|
-
"line":
|
|
5976
|
+
"line": 502
|
|
5744
5977
|
},
|
|
5745
5978
|
"example": "import { recoverExpiredDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5746
5979
|
"maturity": "stable",
|
|
@@ -5773,7 +6006,7 @@
|
|
|
5773
6006
|
],
|
|
5774
6007
|
"source": {
|
|
5775
6008
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5776
|
-
"line":
|
|
6009
|
+
"line": 326
|
|
5777
6010
|
},
|
|
5778
6011
|
"example": "import { selectDevDeliveryWarrant } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5779
6012
|
"maturity": "stable",
|
|
@@ -5797,7 +6030,7 @@
|
|
|
5797
6030
|
],
|
|
5798
6031
|
"source": {
|
|
5799
6032
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5800
|
-
"line":
|
|
6033
|
+
"line": 601
|
|
5801
6034
|
},
|
|
5802
6035
|
"example": "import { settleDevDeliveryTerminalEvent } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5803
6036
|
"maturity": "stable",
|
|
@@ -5834,7 +6067,7 @@
|
|
|
5834
6067
|
],
|
|
5835
6068
|
"source": {
|
|
5836
6069
|
"path": "packages/core/dev-delivery-warrant.js",
|
|
5837
|
-
"line":
|
|
6070
|
+
"line": 216
|
|
5838
6071
|
},
|
|
5839
6072
|
"example": "import { submitDevDeliveryCandidate } from \"@kungfu-tech/buildchain/dev-delivery-warrant\";",
|
|
5840
6073
|
"maturity": "stable",
|
|
@@ -8930,11 +9163,11 @@
|
|
|
8930
9163
|
"id": "packages/core/kfd-adopter-manifest.js#createKfdAdopterManifestGate",
|
|
8931
9164
|
"name": "createKfdAdopterManifestGate",
|
|
8932
9165
|
"kind": "function",
|
|
8933
|
-
"signature": "function createKfdAdopterManifestGate({ manifest, packageArtifactRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/adopter-manifest.json\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), maxAgeSeconds = 86400, } = {})",
|
|
9166
|
+
"signature": "function createKfdAdopterManifestGate({ manifest, packageArtifactRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/adopter-manifest.json\", expectedAdopterId = BUILDCHAIN_ADOPTER_ID, expectedSourceRepository = \"\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), maxAgeSeconds = 86400, } = {})",
|
|
8934
9167
|
"parameters": [
|
|
8935
9168
|
{
|
|
8936
9169
|
"name": "parameter1",
|
|
8937
|
-
"signature": "{ manifest, packageArtifactRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/adopter-manifest.json\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), maxAgeSeconds = 86400, } = {}"
|
|
9170
|
+
"signature": "{ manifest, packageArtifactRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/adopter-manifest.json\", expectedAdopterId = BUILDCHAIN_ADOPTER_ID, expectedSourceRepository = \"\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), maxAgeSeconds = 86400, } = {}"
|
|
8938
9171
|
}
|
|
8939
9172
|
],
|
|
8940
9173
|
"returns": "unknown",
|
|
@@ -8946,7 +9179,7 @@
|
|
|
8946
9179
|
],
|
|
8947
9180
|
"source": {
|
|
8948
9181
|
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8949
|
-
"line":
|
|
9182
|
+
"line": 206
|
|
8950
9183
|
},
|
|
8951
9184
|
"example": "import { createKfdAdopterManifestGate } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8952
9185
|
"maturity": "stable",
|
|
@@ -8975,7 +9208,7 @@
|
|
|
8975
9208
|
],
|
|
8976
9209
|
"source": {
|
|
8977
9210
|
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8978
|
-
"line":
|
|
9211
|
+
"line": 325
|
|
8979
9212
|
},
|
|
8980
9213
|
"example": "import { createKfdLegacySupportMatrixProjection } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8981
9214
|
"maturity": "stable",
|
|
@@ -9036,7 +9269,7 @@
|
|
|
9036
9269
|
"id": "packages/core/kfd-adopter-manifest.js#validateKfdAdopterManifestGate",
|
|
9037
9270
|
"name": "validateKfdAdopterManifestGate",
|
|
9038
9271
|
"kind": "function",
|
|
9039
|
-
"signature": "function validateKfdAdopterManifestGate(gate, { expectedSourceSha = \"\", checkedAt = gate?.checkedAt || new Date().toISOString(), } = {})",
|
|
9272
|
+
"signature": "function validateKfdAdopterManifestGate(gate, { expectedAdopterId = BUILDCHAIN_ADOPTER_ID, expectedSourceRepository = \"\", expectedSourceSha = \"\", checkedAt = gate?.checkedAt || new Date().toISOString(), } = {})",
|
|
9040
9273
|
"parameters": [
|
|
9041
9274
|
{
|
|
9042
9275
|
"name": "gate",
|
|
@@ -9044,7 +9277,7 @@
|
|
|
9044
9277
|
},
|
|
9045
9278
|
{
|
|
9046
9279
|
"name": "parameter2",
|
|
9047
|
-
"signature": "{ expectedSourceSha = \"\", checkedAt = gate?.checkedAt || new Date().toISOString(), } = {}"
|
|
9280
|
+
"signature": "{ expectedAdopterId = BUILDCHAIN_ADOPTER_ID, expectedSourceRepository = \"\", expectedSourceSha = \"\", checkedAt = gate?.checkedAt || new Date().toISOString(), } = {}"
|
|
9048
9281
|
}
|
|
9049
9282
|
],
|
|
9050
9283
|
"returns": "unknown",
|
|
@@ -9056,7 +9289,7 @@
|
|
|
9056
9289
|
],
|
|
9057
9290
|
"source": {
|
|
9058
9291
|
"path": "packages/core/kfd-adopter-manifest.js",
|
|
9059
|
-
"line":
|
|
9292
|
+
"line": 277
|
|
9060
9293
|
},
|
|
9061
9294
|
"example": "import { validateKfdAdopterManifestGate } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
9062
9295
|
"maturity": "stable",
|
|
@@ -9089,7 +9322,7 @@
|
|
|
9089
9322
|
],
|
|
9090
9323
|
"source": {
|
|
9091
9324
|
"path": "packages/core/kfd-adopter-manifest.js",
|
|
9092
|
-
"line":
|
|
9325
|
+
"line": 380
|
|
9093
9326
|
},
|
|
9094
9327
|
"example": "import { validateKfdLegacySupportMatrixProjection } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
9095
9328
|
"maturity": "stable",
|
|
@@ -17864,11 +18097,11 @@
|
|
|
17864
18097
|
"id": "packages/core/release-passport-contract.js#collectKfdAdopterReleaseEvidence",
|
|
17865
18098
|
"name": "collectKfdAdopterReleaseEvidence",
|
|
17866
18099
|
"kind": "function",
|
|
17867
|
-
"signature": "function collectKfdAdopterReleaseEvidence({ manifest, gateResults = [], comparisonMatrix, sourceSha = \"\", checkedAt } = {})",
|
|
18100
|
+
"signature": "function collectKfdAdopterReleaseEvidence({ manifest, gateResults = [], comparisonMatrix, expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", sourceSha = \"\", checkedAt } = {})",
|
|
17868
18101
|
"parameters": [
|
|
17869
18102
|
{
|
|
17870
18103
|
"name": "parameter1",
|
|
17871
|
-
"signature": "{ manifest, gateResults = [], comparisonMatrix, sourceSha = \"\", checkedAt } = {}"
|
|
18104
|
+
"signature": "{ manifest, gateResults = [], comparisonMatrix, expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", sourceSha = \"\", checkedAt } = {}"
|
|
17872
18105
|
}
|
|
17873
18106
|
],
|
|
17874
18107
|
"returns": "unknown",
|
|
@@ -18216,11 +18449,11 @@
|
|
|
18216
18449
|
"id": "packages/core/release-passport-contract.js#validateKfdAdopterReleaseEvidence",
|
|
18217
18450
|
"name": "validateKfdAdopterReleaseEvidence",
|
|
18218
18451
|
"kind": "function",
|
|
18219
|
-
"signature": "function validateKfdAdopterReleaseEvidence({ binding, artifactBinding, manifest, manifestGate, legacyProjection, passportLegacyProjection, expectedSourceSha = \"\" } = {})",
|
|
18452
|
+
"signature": "function validateKfdAdopterReleaseEvidence({ binding, artifactBinding, manifest, manifestGate, legacyProjection, passportLegacyProjection, expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", expectedSourceSha = \"\" } = {})",
|
|
18220
18453
|
"parameters": [
|
|
18221
18454
|
{
|
|
18222
18455
|
"name": "parameter1",
|
|
18223
|
-
"signature": "{ binding, artifactBinding, manifest, manifestGate, legacyProjection, passportLegacyProjection, expectedSourceSha = \"\" } = {}"
|
|
18456
|
+
"signature": "{ binding, artifactBinding, manifest, manifestGate, legacyProjection, passportLegacyProjection, expectedAdopterId = \"kungfu-systems/buildchain\", expectedSourceRepository = \"\", expectedSourceSha = \"\" } = {}"
|
|
18224
18457
|
}
|
|
18225
18458
|
],
|
|
18226
18459
|
"returns": "unknown",
|
|
@@ -18425,7 +18658,7 @@
|
|
|
18425
18658
|
],
|
|
18426
18659
|
"source": {
|
|
18427
18660
|
"path": "packages/core/release-passport.js",
|
|
18428
|
-
"line":
|
|
18661
|
+
"line": 2666
|
|
18429
18662
|
},
|
|
18430
18663
|
"example": "import { createReleaseCheckReport } from \"@kungfu-tech/buildchain\";",
|
|
18431
18664
|
"maturity": "stable",
|
|
@@ -18483,7 +18716,7 @@
|
|
|
18483
18716
|
],
|
|
18484
18717
|
"source": {
|
|
18485
18718
|
"path": "packages/core/release-passport.js",
|
|
18486
|
-
"line":
|
|
18719
|
+
"line": 2820
|
|
18487
18720
|
},
|
|
18488
18721
|
"example": "import { explainReleasePassport } from \"@kungfu-tech/buildchain\";",
|
|
18489
18722
|
"maturity": "stable",
|
|
@@ -18632,7 +18865,7 @@
|
|
|
18632
18865
|
],
|
|
18633
18866
|
"source": {
|
|
18634
18867
|
"path": "packages/core/release-passport.js",
|
|
18635
|
-
"line":
|
|
18868
|
+
"line": 2849
|
|
18636
18869
|
},
|
|
18637
18870
|
"example": "import { makeReleasePassportFixtureAssets } from \"@kungfu-tech/buildchain\";",
|
|
18638
18871
|
"maturity": "stable",
|
|
@@ -18693,7 +18926,7 @@
|
|
|
18693
18926
|
],
|
|
18694
18927
|
"source": {
|
|
18695
18928
|
"path": "packages/core/release-passport.js",
|
|
18696
|
-
"line":
|
|
18929
|
+
"line": 2736
|
|
18697
18930
|
},
|
|
18698
18931
|
"example": "import { readJsonFromLocation } from \"@kungfu-tech/buildchain\";",
|
|
18699
18932
|
"maturity": "stable",
|
|
@@ -18848,7 +19081,7 @@
|
|
|
18848
19081
|
],
|
|
18849
19082
|
"source": {
|
|
18850
19083
|
"path": "packages/core/release-passport.js",
|
|
18851
|
-
"line":
|
|
19084
|
+
"line": 2861
|
|
18852
19085
|
},
|
|
18853
19086
|
"example": "import { validateKnownReleasePassportContracts } from \"@kungfu-tech/buildchain\";",
|
|
18854
19087
|
"maturity": "stable",
|
|
@@ -18877,7 +19110,7 @@
|
|
|
18877
19110
|
],
|
|
18878
19111
|
"source": {
|
|
18879
19112
|
"path": "packages/core/release-passport.js",
|
|
18880
|
-
"line":
|
|
19113
|
+
"line": 2785
|
|
18881
19114
|
},
|
|
18882
19115
|
"example": "import { verifyReleasePassport } from \"@kungfu-tech/buildchain\";",
|
|
18883
19116
|
"maturity": "stable",
|
|
@@ -23347,7 +23580,7 @@
|
|
|
23347
23580
|
"specifier": "@kungfu-tech/buildchain/artifact-verification-envelope",
|
|
23348
23581
|
"export": "./artifact-verification-envelope",
|
|
23349
23582
|
"target": "./packages/core/artifact-verification-envelope.js",
|
|
23350
|
-
"digest": "sha256:
|
|
23583
|
+
"digest": "sha256:c917dac2f636fa7e078500c53639e958b1d94e46eb1a2c1a31f0e4ee57e10416",
|
|
23351
23584
|
"summary": "Sealed exact-root, lifecycle, identity, and existing KFD assessment inputs for KFX admission.",
|
|
23352
23585
|
"capabilityGroup": "release-passport-trust",
|
|
23353
23586
|
"audience": [
|
|
@@ -23745,20 +23978,22 @@
|
|
|
23745
23978
|
"specifier": "@kungfu-tech/buildchain/dev-delivery-warrant",
|
|
23746
23979
|
"export": "./dev-delivery-warrant",
|
|
23747
23980
|
"target": "./packages/core/dev-delivery-warrant.js",
|
|
23748
|
-
"digest": "sha256:
|
|
23981
|
+
"digest": "sha256:8d354aa31faf225201b9adb04ff7ca7fc26984b89b47dd60ac1f8c696a3b4347",
|
|
23749
23982
|
"summary": "Durable fair Dev Delivery Warrant queue, fenced lease, and split source and integration proof APIs.",
|
|
23750
23983
|
"capabilityGroup": "governance-versioning",
|
|
23751
23984
|
"audience": [
|
|
23752
23985
|
"developer",
|
|
23753
23986
|
"agent"
|
|
23754
23987
|
],
|
|
23755
|
-
"symbolCount":
|
|
23988
|
+
"symbolCount": 42,
|
|
23756
23989
|
"symbolIds": [
|
|
23757
23990
|
"packages/core/dev-delivery-warrant.js#cancelQueuedDevDeliveryCandidate",
|
|
23758
23991
|
"packages/core/dev-delivery-proof.js#classifyDevDeliveryDelta",
|
|
23759
23992
|
"packages/core/dev-delivery-warrant.js#closeDevDeliveryWarrant",
|
|
23760
23993
|
"packages/core/dev-delivery-warrant.js#createDevDeliveryQueue",
|
|
23761
23994
|
"packages/core/dev-delivery-proof.js#createIntegrationDeliveryProof",
|
|
23995
|
+
"packages/core/dev-delivery-native-proof.js#createNativeProofReuseDecision",
|
|
23996
|
+
"packages/core/dev-delivery-native-proof.js#createNativeQualificationProof",
|
|
23762
23997
|
"packages/core/dev-delivery-proof.js#createProjectCutReplayPlan",
|
|
23763
23998
|
"packages/core/dev-delivery-proof.js#createProjectCutReplayProof",
|
|
23764
23999
|
"packages/core/release-blocker-priority.js#createReleaseBlockerPriorityClaim",
|
|
@@ -23767,6 +24002,7 @@
|
|
|
23767
24002
|
"packages/core/dev-delivery-warrant.js#DEV_DELIVERY_CLASSES",
|
|
23768
24003
|
"packages/core/dev-delivery-warrant.js#DEV_DELIVERY_LEASE_RECEIPT_SCHEMA",
|
|
23769
24004
|
"packages/core/dev-delivery-warrant.js#DEV_DELIVERY_PRIORITIES",
|
|
24005
|
+
"packages/core/dev-delivery-native-proof.js#DEV_DELIVERY_QUALIFICATION_RECEIPT_SCHEMA",
|
|
23770
24006
|
"packages/core/dev-delivery-warrant.js#DEV_DELIVERY_QUEUE_CONTRACT",
|
|
23771
24007
|
"packages/core/dev-delivery-warrant.js#DEV_DELIVERY_SELECTION_RECEIPT_SCHEMA",
|
|
23772
24008
|
"packages/core/dev-delivery-warrant.js#DEV_DELIVERY_SETTLEMENT_RECEIPT_SCHEMA",
|
|
@@ -23775,9 +24011,12 @@
|
|
|
23775
24011
|
"packages/core/dev-delivery-common.js#devDeliveryContentRoot",
|
|
23776
24012
|
"packages/core/dev-delivery-warrant.js#heartbeatDevDeliveryWarrant",
|
|
23777
24013
|
"packages/core/dev-delivery-proof.js#INTEGRATION_DELIVERY_PROOF_SCHEMA",
|
|
24014
|
+
"packages/core/dev-delivery-native-proof.js#NATIVE_PROOF_REUSE_DECISION_SCHEMA",
|
|
24015
|
+
"packages/core/dev-delivery-native-proof.js#NATIVE_QUALIFICATION_PROOF_SCHEMA",
|
|
23778
24016
|
"packages/core/dev-delivery-warrant.js#normalizeDevDeliveryQueue",
|
|
23779
24017
|
"packages/core/dev-delivery-warrant.js#observeDevDeliveryQueue",
|
|
23780
24018
|
"packages/core/dev-delivery-proof.js#PROJECT_CUT_REPLAY_PROOF_SCHEMA",
|
|
24019
|
+
"packages/core/dev-delivery-warrant.js#qualifyDevDeliveryWarrant",
|
|
23781
24020
|
"packages/core/dev-delivery-warrant.js#rankDevDeliveryCandidates",
|
|
23782
24021
|
"packages/core/dev-delivery-warrant.js#recoverExpiredDevDeliveryWarrant",
|
|
23783
24022
|
"packages/core/release-blocker-priority.js#RELEASE_BLOCKER_PRIORITY_CLAIM_SCHEMA",
|
|
@@ -23786,6 +24025,8 @@
|
|
|
23786
24025
|
"packages/core/dev-delivery-proof.js#SOURCE_QUALIFICATION_PROOF_SCHEMA",
|
|
23787
24026
|
"packages/core/dev-delivery-warrant.js#submitDevDeliveryCandidate",
|
|
23788
24027
|
"packages/core/dev-delivery-proof.js#verifyIntegrationDeliveryProof",
|
|
24028
|
+
"packages/core/dev-delivery-native-proof.js#verifyNativeProofReuseDecision",
|
|
24029
|
+
"packages/core/dev-delivery-native-proof.js#verifyNativeQualificationProof",
|
|
23789
24030
|
"packages/core/dev-delivery-proof.js#verifyProjectCutReplayProof",
|
|
23790
24031
|
"packages/core/dev-delivery-proof.js#verifySourceQualificationProof"
|
|
23791
24032
|
],
|
|
@@ -23939,7 +24180,7 @@
|
|
|
23939
24180
|
"specifier": "@kungfu-tech/buildchain/kfd-adopter-manifest",
|
|
23940
24181
|
"export": "./kfd-adopter-manifest",
|
|
23941
24182
|
"target": "./packages/core/kfd-adopter-manifest.js",
|
|
23942
|
-
"digest": "sha256:
|
|
24183
|
+
"digest": "sha256:71ab52ffc71e12b0d985daa5e4ef518fbaf0fb5a2cad248fecc361d0eb875626",
|
|
23943
24184
|
"summary": "Exact-cut KFD adopter manifest verification, Buildchain evidence binding, and one-way legacy support-matrix projection APIs.",
|
|
23944
24185
|
"capabilityGroup": "kfd-trust",
|
|
23945
24186
|
"audience": [
|
|
@@ -23967,7 +24208,7 @@
|
|
|
23967
24208
|
"specifier": "@kungfu-tech/buildchain/kfd-adopter-release-binding",
|
|
23968
24209
|
"export": "./kfd-adopter-release-binding",
|
|
23969
24210
|
"target": "./packages/core/artifact-verification-envelope.js",
|
|
23970
|
-
"digest": "sha256:
|
|
24211
|
+
"digest": "sha256:c917dac2f636fa7e078500c53639e958b1d94e46eb1a2c1a31f0e4ee57e10416",
|
|
23971
24212
|
"summary": "Release Passport and artifact-evidence binding for one exact standard adopter manifest closure.",
|
|
23972
24213
|
"capabilityGroup": "kfd-trust",
|
|
23973
24214
|
"audience": [
|
|
@@ -24891,7 +25132,7 @@
|
|
|
24891
25132
|
"specifier": "@kungfu-tech/buildchain/release-passport",
|
|
24892
25133
|
"export": "./release-passport",
|
|
24893
25134
|
"target": "./packages/core/release-passport.js",
|
|
24894
|
-
"digest": "sha256:
|
|
25135
|
+
"digest": "sha256:485c55c362476de980eb35c32c1f58b780520f96c924ac316eb515de60696243",
|
|
24895
25136
|
"summary": "Release passport collection, verification, explanation, and evidence APIs.",
|
|
24896
25137
|
"capabilityGroup": "release-passport-trust",
|
|
24897
25138
|
"audience": [
|
|
@@ -24936,7 +25177,7 @@
|
|
|
24936
25177
|
"specifier": "@kungfu-tech/buildchain/release-passport-contract",
|
|
24937
25178
|
"export": "./release-passport-contract",
|
|
24938
25179
|
"target": "./packages/core/release-passport-contract.js",
|
|
24939
|
-
"digest": "sha256:
|
|
25180
|
+
"digest": "sha256:a0d1beb5ac8849ddd79e8da7c2862a9d3bec9e2d6ebd8f1b653b7f6bde6b2e97",
|
|
24940
25181
|
"summary": "Standalone release passport JSON Schema, ownership/check manifest, and structural validation APIs.",
|
|
24941
25182
|
"capabilityGroup": "release-passport-trust",
|
|
24942
25183
|
"audience": [
|
|
@@ -25298,7 +25539,7 @@
|
|
|
25298
25539
|
{
|
|
25299
25540
|
"id": "node-api-reference",
|
|
25300
25541
|
"path": "docs/node-api-reference.md",
|
|
25301
|
-
"digest": "sha256:
|
|
25542
|
+
"digest": "sha256:4663cf32a0116a8605e7b8a475fc4b38e02b81ca21af59e49be0043f3eb99a02"
|
|
25302
25543
|
},
|
|
25303
25544
|
{
|
|
25304
25545
|
"id": "build-facts",
|
|
@@ -25308,7 +25549,7 @@
|
|
|
25308
25549
|
{
|
|
25309
25550
|
"id": "kfd-support",
|
|
25310
25551
|
"path": "docs/kfd-support.md",
|
|
25311
|
-
"digest": "sha256:
|
|
25552
|
+
"digest": "sha256:f849c3b69c8c716a5ae4e917e43a9a3ab8de977e7672b49697ba242fd320a014"
|
|
25312
25553
|
},
|
|
25313
25554
|
{
|
|
25314
25555
|
"id": "readme-badges",
|