@firestartr/cli 1.46.0-snapshot-1 → 1.46.0-snapshot-2

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.
Files changed (23) hide show
  1. package/build/index.js +27241 -21130
  2. package/build/packages/cdk8s_renderer/src/claims/base/schema.d.ts +1 -0
  3. package/build/packages/cdk8s_renderer/src/claims/base/schemas/argodeploy.schema.d.ts +8 -2
  4. package/build/packages/cdk8s_renderer/src/claims/base/schemas/common-meta.schema.d.ts +31 -2
  5. package/build/packages/cdk8s_renderer/src/claims/base/schemas/component.schema.d.ts +16 -2
  6. package/build/packages/cdk8s_renderer/src/claims/base/schemas/domain.schema.d.ts +1 -2
  7. package/build/packages/cdk8s_renderer/src/claims/base/schemas/group.schema.d.ts +10 -2
  8. package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +86 -22
  9. package/build/packages/cdk8s_renderer/src/claims/base/schemas/orgwebhook.schema.d.ts +1 -2
  10. package/build/packages/cdk8s_renderer/src/claims/base/schemas/secrets.schema.d.ts +4 -2
  11. package/build/packages/cdk8s_renderer/src/claims/base/schemas/system.schema.d.ts +4 -2
  12. package/build/packages/cdk8s_renderer/src/claims/base/schemas/tfworkspace.schema.d.ts +7 -3
  13. package/build/packages/cdk8s_renderer/src/claims/base/schemas/user.schema.d.ts +1 -2
  14. package/build/packages/cdk8s_renderer/src/claims/github/component.schema.d.ts +1 -0
  15. package/build/packages/cdk8s_renderer/src/claims/github/feature.schema.d.ts +2 -0
  16. package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +3 -0
  17. package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +0 -1
  18. package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +0 -1
  19. package/build/packages/cdk8s_renderer/src/defaults/base.d.ts +1 -1
  20. package/build/packages/cdk8s_renderer/src/initializers/branchStrategies.d.ts +1 -1
  21. package/build/packages/cdk8s_renderer/src/validations/references.d.ts +0 -5
  22. package/package.json +1 -1
  23. package/build/packages/cdk8s_renderer/src/validations/wellKnownStructures.d.ts +0 -1
@@ -0,0 +1 @@
1
+ export declare const SCHEMA = "https://json-schema.org/draft/2020-12/schema";
@@ -6,14 +6,21 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
- additionalProperties?: undefined;
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
17
+ system: {
18
+ type: string;
19
+ pattern: string;
20
+ };
21
+ project: {
22
+ type: string;
23
+ };
17
24
  providers: {
18
25
  type: string;
19
26
  properties: {
@@ -24,7 +31,6 @@ declare const _default: {
24
31
  required: string[];
25
32
  };
26
33
  };
27
- additionalProperties: boolean;
28
34
  $ref?: undefined;
29
35
  })[];
30
36
  };
@@ -1,5 +1,4 @@
1
1
  declare const _default: {
2
- $schema: string;
3
2
  $id: string;
4
3
  definitions: {
5
4
  Envelope: {
@@ -19,6 +18,12 @@ declare const _default: {
19
18
  type: {
20
19
  type: string;
21
20
  };
21
+ lifecycle: {
22
+ type: string;
23
+ };
24
+ version: {
25
+ type: string;
26
+ };
22
27
  providers: {
23
28
  type: string;
24
29
  description: string;
@@ -27,7 +32,6 @@ declare const _default: {
27
32
  $ref: string;
28
33
  };
29
34
  };
30
- additionalProperties: boolean;
31
35
  required: string[];
32
36
  };
33
37
  Provider: {
@@ -59,6 +63,31 @@ declare const _default: {
59
63
  };
60
64
  additionalProperties: boolean;
61
65
  };
66
+ Reference: {
67
+ $id: string;
68
+ type: string;
69
+ pattern: string;
70
+ };
71
+ SystemReference: {
72
+ $id: string;
73
+ type: string;
74
+ pattern: string;
75
+ };
76
+ ComponentReference: {
77
+ $id: string;
78
+ type: string;
79
+ pattern: string;
80
+ };
81
+ Annotations: {
82
+ $id: string;
83
+ type: string;
84
+ patternProperties: {
85
+ '^[a-zA-Z0-9/.-]+$': {
86
+ type: string;
87
+ };
88
+ };
89
+ additionalProperties: boolean;
90
+ };
62
91
  };
63
92
  };
64
93
  export default _default;
@@ -6,12 +6,12 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
14
  required?: undefined;
14
- additionalProperties?: undefined;
15
15
  } | {
16
16
  type: string;
17
17
  properties: {
@@ -23,6 +23,21 @@ declare const _default: {
23
23
  type: string;
24
24
  pattern: string;
25
25
  };
26
+ maintainedBy: {
27
+ type: string;
28
+ items: {
29
+ $ref: string;
30
+ };
31
+ };
32
+ platformOwner: {
33
+ $ref: string;
34
+ };
35
+ subComponentOf: {
36
+ $ref: string;
37
+ };
38
+ annotations: {
39
+ $ref: string;
40
+ };
26
41
  providers: {
27
42
  type: string;
28
43
  properties: {
@@ -33,7 +48,6 @@ declare const _default: {
33
48
  };
34
49
  };
35
50
  required: string[];
36
- additionalProperties: boolean;
37
51
  $ref?: undefined;
38
52
  })[];
39
53
  };
@@ -6,12 +6,12 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
14
  required?: undefined;
14
- additionalProperties?: undefined;
15
15
  } | {
16
16
  type: string;
17
17
  properties: {
@@ -23,7 +23,6 @@ declare const _default: {
23
23
  };
24
24
  };
25
25
  required: string[];
26
- additionalProperties: boolean;
27
26
  $ref?: undefined;
28
27
  })[];
29
28
  };
@@ -6,14 +6,23 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
- additionalProperties?: undefined;
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
17
+ children: {
18
+ type: string;
19
+ items: {
20
+ type: string;
21
+ };
22
+ };
23
+ parent: {
24
+ $ref: string;
25
+ };
17
26
  members: {
18
27
  type: string;
19
28
  items: {
@@ -29,7 +38,6 @@ declare const _default: {
29
38
  };
30
39
  };
31
40
  };
32
- additionalProperties: boolean;
33
41
  $ref?: undefined;
34
42
  })[];
35
43
  };
@@ -3,7 +3,6 @@ declare const schemas: {
3
3
  $schema: string;
4
4
  };
5
5
  schemas: ({
6
- $schema: string;
7
6
  $id: string;
8
7
  definitions: {
9
8
  Envelope: {
@@ -23,6 +22,12 @@ declare const schemas: {
23
22
  type: {
24
23
  type: string;
25
24
  };
25
+ lifecycle: {
26
+ type: string;
27
+ };
28
+ version: {
29
+ type: string;
30
+ };
26
31
  providers: {
27
32
  type: string;
28
33
  description: string;
@@ -31,7 +36,6 @@ declare const schemas: {
31
36
  $ref: string;
32
37
  };
33
38
  };
34
- additionalProperties: boolean;
35
39
  required: string[];
36
40
  };
37
41
  Provider: {
@@ -63,6 +67,31 @@ declare const schemas: {
63
67
  };
64
68
  additionalProperties: boolean;
65
69
  };
70
+ Reference: {
71
+ $id: string;
72
+ type: string;
73
+ pattern: string;
74
+ };
75
+ SystemReference: {
76
+ $id: string;
77
+ type: string;
78
+ pattern: string;
79
+ };
80
+ ComponentReference: {
81
+ $id: string;
82
+ type: string;
83
+ pattern: string;
84
+ };
85
+ Annotations: {
86
+ $id: string;
87
+ type: string;
88
+ patternProperties: {
89
+ '^[a-zA-Z0-9/.-]+$': {
90
+ type: string;
91
+ };
92
+ };
93
+ additionalProperties: boolean;
94
+ };
66
95
  };
67
96
  } | {
68
97
  $schema: string;
@@ -72,14 +101,23 @@ declare const schemas: {
72
101
  $id: string;
73
102
  type: string;
74
103
  description: string;
104
+ unevaluatedProperties: boolean;
75
105
  allOf: ({
76
106
  $ref: string;
77
107
  type?: undefined;
78
108
  properties?: undefined;
79
- additionalProperties?: undefined;
80
109
  } | {
81
110
  type: string;
82
111
  properties: {
112
+ children: {
113
+ type: string;
114
+ items: {
115
+ type: string;
116
+ };
117
+ };
118
+ parent: {
119
+ $ref: string;
120
+ };
83
121
  members: {
84
122
  type: string;
85
123
  items: {
@@ -95,7 +133,6 @@ declare const schemas: {
95
133
  };
96
134
  };
97
135
  };
98
- additionalProperties: boolean;
99
136
  $ref?: undefined;
100
137
  })[];
101
138
  };
@@ -108,11 +145,11 @@ declare const schemas: {
108
145
  $id: string;
109
146
  type: string;
110
147
  description: string;
148
+ unevaluatedProperties: boolean;
111
149
  allOf: ({
112
150
  $ref: string;
113
151
  type?: undefined;
114
152
  properties?: undefined;
115
- additionalProperties?: undefined;
116
153
  } | {
117
154
  type: string;
118
155
  properties: {
@@ -125,7 +162,6 @@ declare const schemas: {
125
162
  };
126
163
  };
127
164
  };
128
- additionalProperties: boolean;
129
165
  $ref?: undefined;
130
166
  })[];
131
167
  };
@@ -138,12 +174,12 @@ declare const schemas: {
138
174
  $id: string;
139
175
  type: string;
140
176
  description: string;
177
+ unevaluatedProperties: boolean;
141
178
  allOf: ({
142
179
  $ref: string;
143
180
  type?: undefined;
144
181
  properties?: undefined;
145
182
  required?: undefined;
146
- additionalProperties?: undefined;
147
183
  } | {
148
184
  type: string;
149
185
  properties: {
@@ -155,6 +191,21 @@ declare const schemas: {
155
191
  type: string;
156
192
  pattern: string;
157
193
  };
194
+ maintainedBy: {
195
+ type: string;
196
+ items: {
197
+ $ref: string;
198
+ };
199
+ };
200
+ platformOwner: {
201
+ $ref: string;
202
+ };
203
+ subComponentOf: {
204
+ $ref: string;
205
+ };
206
+ annotations: {
207
+ $ref: string;
208
+ };
158
209
  providers: {
159
210
  type: string;
160
211
  properties: {
@@ -165,7 +216,6 @@ declare const schemas: {
165
216
  };
166
217
  };
167
218
  required: string[];
168
- additionalProperties: boolean;
169
219
  $ref?: undefined;
170
220
  })[];
171
221
  };
@@ -178,12 +228,12 @@ declare const schemas: {
178
228
  $id: string;
179
229
  type: string;
180
230
  description: string;
231
+ unevaluatedProperties: boolean;
181
232
  allOf: ({
182
233
  $ref: string;
183
234
  type?: undefined;
184
235
  properties?: undefined;
185
236
  required?: undefined;
186
- additionalProperties?: undefined;
187
237
  } | {
188
238
  type: string;
189
239
  properties: {
@@ -194,9 +244,11 @@ declare const schemas: {
194
244
  type: string;
195
245
  pattern: string;
196
246
  };
247
+ owner: {
248
+ $ref: string;
249
+ };
197
250
  };
198
251
  required: string[];
199
- additionalProperties: boolean;
200
252
  $ref?: undefined;
201
253
  })[];
202
254
  };
@@ -209,12 +261,12 @@ declare const schemas: {
209
261
  $id: string;
210
262
  type: string;
211
263
  description: string;
264
+ unevaluatedProperties: boolean;
212
265
  allOf: ({
213
266
  $ref: string;
214
267
  type?: undefined;
215
268
  properties?: undefined;
216
269
  required?: undefined;
217
- additionalProperties?: undefined;
218
270
  } | {
219
271
  type: string;
220
272
  properties: {
@@ -226,24 +278,23 @@ declare const schemas: {
226
278
  };
227
279
  };
228
280
  required: string[];
229
- additionalProperties: boolean;
230
281
  $ref?: undefined;
231
282
  })[];
232
283
  };
233
284
  };
234
285
  } | {
235
- $schema: string;
236
286
  $id: string;
237
287
  definitions: {
238
288
  TFWorkspaceClaim: {
239
289
  $id: string;
240
290
  type: string;
241
291
  description: string;
292
+ unevaluatedProperties: boolean;
242
293
  allOf: ({
243
294
  $ref: string;
244
295
  type?: undefined;
245
296
  properties?: undefined;
246
- additionalProperties?: undefined;
297
+ required?: undefined;
247
298
  } | {
248
299
  type: string;
249
300
  properties: {
@@ -254,6 +305,10 @@ declare const schemas: {
254
305
  type: string;
255
306
  pattern: string;
256
307
  };
308
+ owner: {
309
+ type: string;
310
+ pattern: string;
311
+ };
257
312
  providers: {
258
313
  type: string;
259
314
  properties: {
@@ -264,7 +319,7 @@ declare const schemas: {
264
319
  required: string[];
265
320
  };
266
321
  };
267
- additionalProperties: boolean;
322
+ required: string[];
268
323
  $ref?: undefined;
269
324
  })[];
270
325
  };
@@ -277,14 +332,21 @@ declare const schemas: {
277
332
  $id: string;
278
333
  type: string;
279
334
  description: string;
335
+ unevaluatedProperties: boolean;
280
336
  allOf: ({
281
337
  $ref: string;
282
338
  type?: undefined;
283
339
  properties?: undefined;
284
- additionalProperties?: undefined;
285
340
  } | {
286
341
  type: string;
287
342
  properties: {
343
+ system: {
344
+ type: string;
345
+ pattern: string;
346
+ };
347
+ project: {
348
+ type: string;
349
+ };
288
350
  providers: {
289
351
  type: string;
290
352
  properties: {
@@ -295,7 +357,6 @@ declare const schemas: {
295
357
  required: string[];
296
358
  };
297
359
  };
298
- additionalProperties: boolean;
299
360
  $ref?: undefined;
300
361
  })[];
301
362
  };
@@ -368,6 +429,7 @@ declare const schemas: {
368
429
  GithubComponentFeatureClaim: {
369
430
  $id: string;
370
431
  description: string;
432
+ type: string;
371
433
  properties: {
372
434
  name: {
373
435
  type: string;
@@ -395,6 +457,7 @@ declare const schemas: {
395
457
  };
396
458
  required: string[];
397
459
  oneOf: {
460
+ type: string;
398
461
  required: string[];
399
462
  not: {
400
463
  required: string[];
@@ -411,6 +474,7 @@ declare const schemas: {
411
474
  $id: string;
412
475
  type: string;
413
476
  description: string;
477
+ unevaluatedProperties: boolean;
414
478
  allOf: ({
415
479
  $ref: string;
416
480
  type?: undefined;
@@ -492,7 +556,6 @@ declare const schemas: {
492
556
  };
493
557
  };
494
558
  })[] | {
495
- $schema: string;
496
559
  $id: string;
497
560
  definitions: {
498
561
  TerraformProvider: {
@@ -789,14 +852,17 @@ declare const schemas: {
789
852
  $id: string;
790
853
  type: string;
791
854
  description: string;
855
+ unevaluatedProperties: boolean;
792
856
  allOf: ({
793
857
  $ref: string;
794
858
  type?: undefined;
795
859
  properties?: undefined;
796
- additionalProperties?: undefined;
797
860
  } | {
798
861
  type: string;
799
862
  properties: {
863
+ system: {
864
+ $ref: string;
865
+ };
800
866
  providers: {
801
867
  type: string;
802
868
  properties: {
@@ -807,7 +873,6 @@ declare const schemas: {
807
873
  required: string[];
808
874
  };
809
875
  };
810
- additionalProperties: boolean;
811
876
  $ref?: undefined;
812
877
  })[];
813
878
  };
@@ -820,11 +885,11 @@ declare const schemas: {
820
885
  $id: string;
821
886
  type: string;
822
887
  description: string;
888
+ unevaluatedProperties: boolean;
823
889
  allOf: ({
824
890
  $ref: string;
825
891
  type?: undefined;
826
892
  properties?: undefined;
827
- additionalProperties?: undefined;
828
893
  } | {
829
894
  type: string;
830
895
  properties: {
@@ -837,7 +902,6 @@ declare const schemas: {
837
902
  };
838
903
  };
839
904
  };
840
- additionalProperties: boolean;
841
905
  $ref?: undefined;
842
906
  })[];
843
907
  };
@@ -6,11 +6,11 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
- additionalProperties?: undefined;
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
@@ -23,7 +23,6 @@ declare const _default: {
23
23
  };
24
24
  };
25
25
  };
26
- additionalProperties: boolean;
27
26
  $ref?: undefined;
28
27
  })[];
29
28
  };
@@ -6,14 +6,17 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
- additionalProperties?: undefined;
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
17
+ system: {
18
+ $ref: string;
19
+ };
17
20
  providers: {
18
21
  type: string;
19
22
  properties: {
@@ -24,7 +27,6 @@ declare const _default: {
24
27
  required: string[];
25
28
  };
26
29
  };
27
- additionalProperties: boolean;
28
30
  $ref?: undefined;
29
31
  })[];
30
32
  };
@@ -6,12 +6,12 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
14
  required?: undefined;
14
- additionalProperties?: undefined;
15
15
  } | {
16
16
  type: string;
17
17
  properties: {
@@ -22,9 +22,11 @@ declare const _default: {
22
22
  type: string;
23
23
  pattern: string;
24
24
  };
25
+ owner: {
26
+ $ref: string;
27
+ };
25
28
  };
26
29
  required: string[];
27
- additionalProperties: boolean;
28
30
  $ref?: undefined;
29
31
  })[];
30
32
  };
@@ -1,16 +1,16 @@
1
1
  declare const _default: {
2
- $schema: string;
3
2
  $id: string;
4
3
  definitions: {
5
4
  TFWorkspaceClaim: {
6
5
  $id: string;
7
6
  type: string;
8
7
  description: string;
8
+ unevaluatedProperties: boolean;
9
9
  allOf: ({
10
10
  $ref: string;
11
11
  type?: undefined;
12
12
  properties?: undefined;
13
- additionalProperties?: undefined;
13
+ required?: undefined;
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
@@ -21,6 +21,10 @@ declare const _default: {
21
21
  type: string;
22
22
  pattern: string;
23
23
  };
24
+ owner: {
25
+ type: string;
26
+ pattern: string;
27
+ };
24
28
  providers: {
25
29
  type: string;
26
30
  properties: {
@@ -31,7 +35,7 @@ declare const _default: {
31
35
  required: string[];
32
36
  };
33
37
  };
34
- additionalProperties: boolean;
38
+ required: string[];
35
39
  $ref?: undefined;
36
40
  })[];
37
41
  };
@@ -6,11 +6,11 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;
12
13
  properties?: undefined;
13
- additionalProperties?: undefined;
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
@@ -23,7 +23,6 @@ declare const _default: {
23
23
  };
24
24
  };
25
25
  };
26
- additionalProperties: boolean;
27
26
  $ref?: undefined;
28
27
  })[];
29
28
  };
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  $id: string;
7
7
  type: string;
8
8
  description: string;
9
+ unevaluatedProperties: boolean;
9
10
  allOf: ({
10
11
  $ref: string;
11
12
  type?: undefined;