@produtype/core 0.84.0 → 0.84.1
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/dist/report/types.d.ts +13 -0
- package/package.json +1 -1
package/dist/report/types.d.ts
CHANGED
|
@@ -114,6 +114,19 @@ export interface ProductionReadinessReport {
|
|
|
114
114
|
findingsByCategory: Record<Category, Finding[]>;
|
|
115
115
|
criticalIssues: Finding[];
|
|
116
116
|
warnings: Finding[];
|
|
117
|
+
/**
|
|
118
|
+
* The observed rules that passed. Not the capabilities a profile asked for and found.
|
|
119
|
+
*
|
|
120
|
+
* Those live in `productProfile.capabilities`, every one of them, with its own
|
|
121
|
+
* status — and they are deliberately not repeated here. A met expectation and the
|
|
122
|
+
* observed rule underneath it are the same verification stated twice: counting both
|
|
123
|
+
* made "basic web security: 4 checks verified" read as 7.
|
|
124
|
+
*
|
|
125
|
+
* Written down because the shape misleads on the way in. Reading `findings` and
|
|
126
|
+
* `passedChecks` and finding no capability in either looks exactly like a capability
|
|
127
|
+
* no project ever satisfies, and it is not: it is the wrong array. That reading was
|
|
128
|
+
* made twice while surveying this analyzer's own corpus.
|
|
129
|
+
*/
|
|
117
130
|
passedChecks: Finding[];
|
|
118
131
|
suggestedNextSteps: string[];
|
|
119
132
|
technicalEvidence: Array<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@produtype/core",
|
|
3
|
-
"version": "0.84.
|
|
3
|
+
"version": "0.84.1",
|
|
4
4
|
"description": "Deterministic CLI and library that analyzes a web application repository and reports how far it is from production-ready for the kind of product it is meant to be.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|