@firestartr/cli 1.46.0-snapshot-4 → 1.46.0
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 +3 -6
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/common-meta.schema.d.ts +3 -0
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/component.schema.d.ts +0 -3
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +3 -6
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/tfworkspace.schema.d.ts +0 -3
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -278634,6 +278634,9 @@ class FirestartrAllClaim {
|
|
|
278634
278634
|
profile: {
|
|
278635
278635
|
$ref: 'firestartr.dev://common/ClaimProfile',
|
|
278636
278636
|
},
|
|
278637
|
+
annotations: {
|
|
278638
|
+
$ref: 'firestartr.dev://common/FirestartrAnnotations',
|
|
278639
|
+
},
|
|
278637
278640
|
},
|
|
278638
278641
|
required: ['name', 'kind', 'providers'],
|
|
278639
278642
|
},
|
|
@@ -278805,9 +278808,6 @@ class FirestartrAllClaim {
|
|
|
278805
278808
|
subComponentOf: {
|
|
278806
278809
|
$ref: 'firestartr.dev://common/FirestartrComponentRef',
|
|
278807
278810
|
},
|
|
278808
|
-
annotations: {
|
|
278809
|
-
$ref: 'firestartr.dev://common/FirestartrAnnotations',
|
|
278810
|
-
},
|
|
278811
278811
|
providers: {
|
|
278812
278812
|
type: 'object',
|
|
278813
278813
|
properties: {
|
|
@@ -278922,9 +278922,6 @@ class FirestartrAllClaim {
|
|
|
278922
278922
|
},
|
|
278923
278923
|
required: ['terraform'],
|
|
278924
278924
|
},
|
|
278925
|
-
annotations: {
|
|
278926
|
-
$ref: 'firestartr.dev://common/FirestartrAnnotations',
|
|
278927
|
-
},
|
|
278928
278925
|
},
|
|
278929
278926
|
required: ['owner'],
|
|
278930
278927
|
},
|
|
@@ -35,6 +35,9 @@ declare const schemas: {
|
|
|
35
35
|
profile: {
|
|
36
36
|
$ref: string;
|
|
37
37
|
};
|
|
38
|
+
annotations: {
|
|
39
|
+
$ref: string;
|
|
40
|
+
};
|
|
38
41
|
};
|
|
39
42
|
required: string[];
|
|
40
43
|
};
|
|
@@ -203,9 +206,6 @@ declare const schemas: {
|
|
|
203
206
|
subComponentOf: {
|
|
204
207
|
$ref: string;
|
|
205
208
|
};
|
|
206
|
-
annotations: {
|
|
207
|
-
$ref: string;
|
|
208
|
-
};
|
|
209
209
|
providers: {
|
|
210
210
|
type: string;
|
|
211
211
|
properties: {
|
|
@@ -318,9 +318,6 @@ declare const schemas: {
|
|
|
318
318
|
};
|
|
319
319
|
required: string[];
|
|
320
320
|
};
|
|
321
|
-
annotations: {
|
|
322
|
-
$ref: string;
|
|
323
|
-
};
|
|
324
321
|
};
|
|
325
322
|
required: string[];
|
|
326
323
|
$ref?: undefined;
|