@firestartr/cli 1.46.0-snapshot-2 → 1.46.0-snapshot-4
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/build/index.js
CHANGED
|
@@ -278922,6 +278922,9 @@ class FirestartrAllClaim {
|
|
|
278922
278922
|
},
|
|
278923
278923
|
required: ['terraform'],
|
|
278924
278924
|
},
|
|
278925
|
+
annotations: {
|
|
278926
|
+
$ref: 'firestartr.dev://common/FirestartrAnnotations',
|
|
278927
|
+
},
|
|
278925
278928
|
},
|
|
278926
278929
|
required: ['owner'],
|
|
278927
278930
|
},
|
|
@@ -279666,6 +279669,8 @@ function validateClaim(data, schemaId = 'firestartr.dev://common/ClaimEnvelope')
|
|
|
279666
279669
|
}
|
|
279667
279670
|
const v = prepareValidation(schemaId);
|
|
279668
279671
|
if (!v(data)) {
|
|
279672
|
+
console.log('---- SCHEMA VALIDATION ----');
|
|
279673
|
+
console.log(`${data.kind}-${data.name}`);
|
|
279669
279674
|
console.log(v.errors);
|
|
279670
279675
|
throw v.errors;
|
|
279671
279676
|
}
|