@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
  }
@@ -318,6 +318,9 @@ declare const schemas: {
318
318
  };
319
319
  required: string[];
320
320
  };
321
+ annotations: {
322
+ $ref: string;
323
+ };
321
324
  };
322
325
  required: string[];
323
326
  $ref?: undefined;
@@ -34,6 +34,9 @@ declare const _default: {
34
34
  };
35
35
  required: string[];
36
36
  };
37
+ annotations: {
38
+ $ref: string;
39
+ };
37
40
  };
38
41
  required: string[];
39
42
  $ref?: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.46.0-snapshot-2",
3
+ "version": "1.46.0-snapshot-4",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",