@aws/cloudformation-validate 1.4.0-beta → 1.5.1-beta
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/README.md +1 -1
- package/bindings_wasm.d.ts +2 -2
- package/bindings_wasm_bg.wasm +0 -0
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -177,7 +177,7 @@ validator.free();
|
|
|
177
177
|
interface StandardReport {
|
|
178
178
|
filePath: string;
|
|
179
179
|
status: "OK" | "ERROR"; // ERROR when the template fails to parse
|
|
180
|
-
|
|
180
|
+
version: string;
|
|
181
181
|
metadata: ReportMetadata;
|
|
182
182
|
performance: PerformanceMetrics;
|
|
183
183
|
diagnostics: StandardDiagnostic[];
|
package/bindings_wasm.d.ts
CHANGED
|
@@ -558,7 +558,7 @@ export type DetailLevel = 'STANDARD' | 'DETAILED';
|
|
|
558
558
|
export interface DetailedReport {
|
|
559
559
|
filePath: string;
|
|
560
560
|
status: ReportStatus;
|
|
561
|
-
|
|
561
|
+
version: string;
|
|
562
562
|
metadata: ReportMetadata;
|
|
563
563
|
performance: PerformanceMetrics;
|
|
564
564
|
diagnostics: DetailedDiagnostic[];
|
|
@@ -690,7 +690,7 @@ export type EngineType = 'REGO' | 'CEL';
|
|
|
690
690
|
export interface StandardReport {
|
|
691
691
|
filePath: string;
|
|
692
692
|
status: ReportStatus;
|
|
693
|
-
|
|
693
|
+
version: string;
|
|
694
694
|
metadata: ReportMetadata;
|
|
695
695
|
performance: PerformanceMetrics;
|
|
696
696
|
diagnostics: StandardDiagnostic[];
|
package/bindings_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/cloudformation-validate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1-beta",
|
|
4
4
|
"description": "AWS CloudFormation Validate",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aws",
|
|
@@ -19,8 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": "
|
|
23
|
-
"npm": ">=10.5.0"
|
|
22
|
+
"node": ">=20.0.0"
|
|
24
23
|
},
|
|
25
24
|
"repository": {
|
|
26
25
|
"type": "git",
|