@firestartr/cli 1.59.3-snapshot-8 → 1.59.3-snapshot-10
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 +23 -1
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +26 -0
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts +4 -0
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/index.d.ts +4 -0
- package/build/packages/cdk8s_renderer/src/claims/github/group.schema.d.ts +5 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +16 -0
- package/build/packages/cdk8s_renderer/src/claims/github/orgwebhook.schema.d.ts +6 -0
- package/build/packages/cdk8s_renderer/src/claims/github/user.schema.d.ts +5 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +6 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +6 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -358265,6 +358265,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358265
358265
|
{
|
|
358266
358266
|
type: 'object',
|
|
358267
358267
|
properties: {
|
|
358268
|
+
name: {
|
|
358269
|
+
type: 'string',
|
|
358270
|
+
},
|
|
358268
358271
|
privacy: {
|
|
358269
358272
|
type: 'string',
|
|
358270
358273
|
enum: ['closed', 'secret'],
|
|
@@ -358276,6 +358279,7 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358276
358279
|
$ref: 'firestartr.dev://common/ClaimName',
|
|
358277
358280
|
},
|
|
358278
358281
|
},
|
|
358282
|
+
additionalProperties: false,
|
|
358279
358283
|
required: ['org', 'privacy'],
|
|
358280
358284
|
},
|
|
358281
358285
|
],
|
|
@@ -358300,6 +358304,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358300
358304
|
{
|
|
358301
358305
|
type: 'object',
|
|
358302
358306
|
properties: {
|
|
358307
|
+
name: {
|
|
358308
|
+
type: 'string',
|
|
358309
|
+
},
|
|
358303
358310
|
role: {
|
|
358304
358311
|
type: 'string',
|
|
358305
358312
|
enum: ['admin', 'member'],
|
|
@@ -358308,6 +358315,7 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358308
358315
|
$ref: 'firestartr.dev://common/ClaimName',
|
|
358309
358316
|
},
|
|
358310
358317
|
},
|
|
358318
|
+
additionalProperties: false,
|
|
358311
358319
|
required: ['org', 'role'],
|
|
358312
358320
|
},
|
|
358313
358321
|
],
|
|
@@ -358503,6 +358511,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358503
358511
|
{
|
|
358504
358512
|
type: 'object',
|
|
358505
358513
|
properties: {
|
|
358514
|
+
name: {
|
|
358515
|
+
type: 'string',
|
|
358516
|
+
},
|
|
358506
358517
|
orgName: {
|
|
358507
358518
|
$ref: 'firestartr.dev://common/ClaimName',
|
|
358508
358519
|
},
|
|
@@ -358533,9 +358544,11 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358533
358544
|
},
|
|
358534
358545
|
},
|
|
358535
358546
|
},
|
|
358547
|
+
additionalProperties: false,
|
|
358536
358548
|
required: ['url', 'contentType', 'events', 'secretRef'],
|
|
358537
358549
|
},
|
|
358538
358550
|
},
|
|
358551
|
+
additionalProperties: false,
|
|
358539
358552
|
required: ['orgName', 'webhook'],
|
|
358540
358553
|
},
|
|
358541
358554
|
],
|
|
@@ -358739,6 +358752,10 @@ const GithubSchemas = [
|
|
|
358739
358752
|
name: {
|
|
358740
358753
|
type: 'string',
|
|
358741
358754
|
},
|
|
358755
|
+
tfStateKey: {
|
|
358756
|
+
type: 'string',
|
|
358757
|
+
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$',
|
|
358758
|
+
},
|
|
358742
358759
|
source: {
|
|
358743
358760
|
type: 'string',
|
|
358744
358761
|
enum: ['remote', 'inline', 'Remote', 'Inline'],
|
|
@@ -358830,6 +358847,7 @@ const GithubSchemas = [
|
|
|
358830
358847
|
additionalProperties: false,
|
|
358831
358848
|
},
|
|
358832
358849
|
},
|
|
358850
|
+
additionalProperties: false,
|
|
358833
358851
|
required: ['values', 'context', 'source', 'name'],
|
|
358834
358852
|
},
|
|
358835
358853
|
],
|
|
@@ -358962,6 +358980,7 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
358962
358980
|
enum: ['SecretStore', 'ClusterSecretStore'],
|
|
358963
358981
|
},
|
|
358964
358982
|
},
|
|
358983
|
+
additionalProperties: false,
|
|
358965
358984
|
required: ['name'],
|
|
358966
358985
|
},
|
|
358967
358986
|
ExternalSecretsSection: {
|
|
@@ -359029,9 +359048,11 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359029
359048
|
type: 'string',
|
|
359030
359049
|
},
|
|
359031
359050
|
},
|
|
359051
|
+
additionalProperties: false,
|
|
359032
359052
|
required: ['name'],
|
|
359033
359053
|
},
|
|
359034
359054
|
},
|
|
359055
|
+
additionalProperties: false,
|
|
359035
359056
|
required: ['secretName', 'generator'],
|
|
359036
359057
|
},
|
|
359037
359058
|
},
|
|
@@ -359039,6 +359060,7 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359039
359060
|
$id: 'firestartr.dev://secrets/ExternalSecretsProvider',
|
|
359040
359061
|
type: 'object',
|
|
359041
359062
|
description: 'A external secrets claim provider',
|
|
359063
|
+
unevaluatedProperties: false,
|
|
359042
359064
|
allOf: [
|
|
359043
359065
|
{ $ref: 'firestartr.dev://common/ClaimProviderEnvelope' },
|
|
359044
359066
|
{
|
|
@@ -377005,7 +377027,7 @@ const crs_analyzerSubcommand = {
|
|
|
377005
377027
|
};
|
|
377006
377028
|
|
|
377007
377029
|
;// CONCATENATED MODULE: ./package.json
|
|
377008
|
-
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-
|
|
377030
|
+
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-10"}');
|
|
377009
377031
|
;// CONCATENATED MODULE: ../../package.json
|
|
377010
377032
|
const package_namespaceObject_1 = {"i8":"1.59.3"};
|
|
377011
377033
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -395,10 +395,14 @@ declare const schemas: {
|
|
|
395
395
|
$ref: string;
|
|
396
396
|
type?: undefined;
|
|
397
397
|
properties?: undefined;
|
|
398
|
+
additionalProperties?: undefined;
|
|
398
399
|
required?: undefined;
|
|
399
400
|
} | {
|
|
400
401
|
type: string;
|
|
401
402
|
properties: {
|
|
403
|
+
name: {
|
|
404
|
+
type: string;
|
|
405
|
+
};
|
|
402
406
|
privacy: {
|
|
403
407
|
type: string;
|
|
404
408
|
enum: string[];
|
|
@@ -410,6 +414,7 @@ declare const schemas: {
|
|
|
410
414
|
$ref: string;
|
|
411
415
|
};
|
|
412
416
|
};
|
|
417
|
+
additionalProperties: boolean;
|
|
413
418
|
required: string[];
|
|
414
419
|
$ref?: undefined;
|
|
415
420
|
})[];
|
|
@@ -427,10 +432,14 @@ declare const schemas: {
|
|
|
427
432
|
$ref: string;
|
|
428
433
|
type?: undefined;
|
|
429
434
|
properties?: undefined;
|
|
435
|
+
additionalProperties?: undefined;
|
|
430
436
|
required?: undefined;
|
|
431
437
|
} | {
|
|
432
438
|
type: string;
|
|
433
439
|
properties: {
|
|
440
|
+
name: {
|
|
441
|
+
type: string;
|
|
442
|
+
};
|
|
434
443
|
role: {
|
|
435
444
|
type: string;
|
|
436
445
|
enum: string[];
|
|
@@ -439,6 +448,7 @@ declare const schemas: {
|
|
|
439
448
|
$ref: string;
|
|
440
449
|
};
|
|
441
450
|
};
|
|
451
|
+
additionalProperties: boolean;
|
|
442
452
|
required: string[];
|
|
443
453
|
$ref?: undefined;
|
|
444
454
|
})[];
|
|
@@ -695,10 +705,14 @@ declare const schemas: {
|
|
|
695
705
|
$ref: string;
|
|
696
706
|
type?: undefined;
|
|
697
707
|
properties?: undefined;
|
|
708
|
+
additionalProperties?: undefined;
|
|
698
709
|
required?: undefined;
|
|
699
710
|
} | {
|
|
700
711
|
type: string;
|
|
701
712
|
properties: {
|
|
713
|
+
name: {
|
|
714
|
+
type: string;
|
|
715
|
+
};
|
|
702
716
|
orgName: {
|
|
703
717
|
$ref: string;
|
|
704
718
|
};
|
|
@@ -729,9 +743,11 @@ declare const schemas: {
|
|
|
729
743
|
};
|
|
730
744
|
};
|
|
731
745
|
};
|
|
746
|
+
additionalProperties: boolean;
|
|
732
747
|
required: string[];
|
|
733
748
|
};
|
|
734
749
|
};
|
|
750
|
+
additionalProperties: boolean;
|
|
735
751
|
required: string[];
|
|
736
752
|
$ref?: undefined;
|
|
737
753
|
})[];
|
|
@@ -850,6 +866,7 @@ declare const schemas: {
|
|
|
850
866
|
$ref: string;
|
|
851
867
|
type?: undefined;
|
|
852
868
|
properties?: undefined;
|
|
869
|
+
additionalProperties?: undefined;
|
|
853
870
|
required?: undefined;
|
|
854
871
|
} | {
|
|
855
872
|
type: string;
|
|
@@ -861,6 +878,10 @@ declare const schemas: {
|
|
|
861
878
|
name: {
|
|
862
879
|
type: string;
|
|
863
880
|
};
|
|
881
|
+
tfStateKey: {
|
|
882
|
+
type: string;
|
|
883
|
+
pattern: string;
|
|
884
|
+
};
|
|
864
885
|
source: {
|
|
865
886
|
type: string;
|
|
866
887
|
enum: string[];
|
|
@@ -943,6 +964,7 @@ declare const schemas: {
|
|
|
943
964
|
additionalProperties: boolean;
|
|
944
965
|
};
|
|
945
966
|
};
|
|
967
|
+
additionalProperties: boolean;
|
|
946
968
|
required: string[];
|
|
947
969
|
$ref?: undefined;
|
|
948
970
|
})[];
|
|
@@ -1064,6 +1086,7 @@ declare const schemas: {
|
|
|
1064
1086
|
enum: string[];
|
|
1065
1087
|
};
|
|
1066
1088
|
};
|
|
1089
|
+
additionalProperties: boolean;
|
|
1067
1090
|
required: string[];
|
|
1068
1091
|
};
|
|
1069
1092
|
ExternalSecretsSection: {
|
|
@@ -1131,9 +1154,11 @@ declare const schemas: {
|
|
|
1131
1154
|
type: string;
|
|
1132
1155
|
};
|
|
1133
1156
|
};
|
|
1157
|
+
additionalProperties: boolean;
|
|
1134
1158
|
required: string[];
|
|
1135
1159
|
};
|
|
1136
1160
|
};
|
|
1161
|
+
additionalProperties: boolean;
|
|
1137
1162
|
required: string[];
|
|
1138
1163
|
};
|
|
1139
1164
|
};
|
|
@@ -1141,6 +1166,7 @@ declare const schemas: {
|
|
|
1141
1166
|
$id: string;
|
|
1142
1167
|
type: string;
|
|
1143
1168
|
description: string;
|
|
1169
|
+
unevaluatedProperties: boolean;
|
|
1144
1170
|
allOf: ({
|
|
1145
1171
|
$ref: string;
|
|
1146
1172
|
type?: undefined;
|
package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ declare const _default: {
|
|
|
14
14
|
enum: string[];
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
+
additionalProperties: boolean;
|
|
17
18
|
required: string[];
|
|
18
19
|
};
|
|
19
20
|
ExternalSecretsSection: {
|
|
@@ -81,9 +82,11 @@ declare const _default: {
|
|
|
81
82
|
type: string;
|
|
82
83
|
};
|
|
83
84
|
};
|
|
85
|
+
additionalProperties: boolean;
|
|
84
86
|
required: string[];
|
|
85
87
|
};
|
|
86
88
|
};
|
|
89
|
+
additionalProperties: boolean;
|
|
87
90
|
required: string[];
|
|
88
91
|
};
|
|
89
92
|
};
|
|
@@ -91,6 +94,7 @@ declare const _default: {
|
|
|
91
94
|
$id: string;
|
|
92
95
|
type: string;
|
|
93
96
|
description: string;
|
|
97
|
+
unevaluatedProperties: boolean;
|
|
94
98
|
allOf: ({
|
|
95
99
|
$ref: string;
|
|
96
100
|
type?: undefined;
|
|
@@ -14,6 +14,7 @@ export declare const SecretsSchemas: {
|
|
|
14
14
|
enum: string[];
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
|
+
additionalProperties: boolean;
|
|
17
18
|
required: string[];
|
|
18
19
|
};
|
|
19
20
|
ExternalSecretsSection: {
|
|
@@ -81,9 +82,11 @@ export declare const SecretsSchemas: {
|
|
|
81
82
|
type: string;
|
|
82
83
|
};
|
|
83
84
|
};
|
|
85
|
+
additionalProperties: boolean;
|
|
84
86
|
required: string[];
|
|
85
87
|
};
|
|
86
88
|
};
|
|
89
|
+
additionalProperties: boolean;
|
|
87
90
|
required: string[];
|
|
88
91
|
};
|
|
89
92
|
};
|
|
@@ -91,6 +94,7 @@ export declare const SecretsSchemas: {
|
|
|
91
94
|
$id: string;
|
|
92
95
|
type: string;
|
|
93
96
|
description: string;
|
|
97
|
+
unevaluatedProperties: boolean;
|
|
94
98
|
allOf: ({
|
|
95
99
|
$ref: string;
|
|
96
100
|
type?: undefined;
|
|
@@ -10,10 +10,14 @@ declare const _default: {
|
|
|
10
10
|
$ref: string;
|
|
11
11
|
type?: undefined;
|
|
12
12
|
properties?: undefined;
|
|
13
|
+
additionalProperties?: undefined;
|
|
13
14
|
required?: undefined;
|
|
14
15
|
} | {
|
|
15
16
|
type: string;
|
|
16
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
17
21
|
privacy: {
|
|
18
22
|
type: string;
|
|
19
23
|
enum: string[];
|
|
@@ -25,6 +29,7 @@ declare const _default: {
|
|
|
25
29
|
$ref: string;
|
|
26
30
|
};
|
|
27
31
|
};
|
|
32
|
+
additionalProperties: boolean;
|
|
28
33
|
required: string[];
|
|
29
34
|
$ref?: undefined;
|
|
30
35
|
})[];
|
|
@@ -10,10 +10,14 @@ export declare const GithubSchemas: ({
|
|
|
10
10
|
$ref: string;
|
|
11
11
|
type?: undefined;
|
|
12
12
|
properties?: undefined;
|
|
13
|
+
additionalProperties?: undefined;
|
|
13
14
|
required?: undefined;
|
|
14
15
|
} | {
|
|
15
16
|
type: string;
|
|
16
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
17
21
|
privacy: {
|
|
18
22
|
type: string;
|
|
19
23
|
enum: string[];
|
|
@@ -25,6 +29,7 @@ export declare const GithubSchemas: ({
|
|
|
25
29
|
$ref: string;
|
|
26
30
|
};
|
|
27
31
|
};
|
|
32
|
+
additionalProperties: boolean;
|
|
28
33
|
required: string[];
|
|
29
34
|
$ref?: undefined;
|
|
30
35
|
})[];
|
|
@@ -42,10 +47,14 @@ export declare const GithubSchemas: ({
|
|
|
42
47
|
$ref: string;
|
|
43
48
|
type?: undefined;
|
|
44
49
|
properties?: undefined;
|
|
50
|
+
additionalProperties?: undefined;
|
|
45
51
|
required?: undefined;
|
|
46
52
|
} | {
|
|
47
53
|
type: string;
|
|
48
54
|
properties: {
|
|
55
|
+
name: {
|
|
56
|
+
type: string;
|
|
57
|
+
};
|
|
49
58
|
role: {
|
|
50
59
|
type: string;
|
|
51
60
|
enum: string[];
|
|
@@ -54,6 +63,7 @@ export declare const GithubSchemas: ({
|
|
|
54
63
|
$ref: string;
|
|
55
64
|
};
|
|
56
65
|
};
|
|
66
|
+
additionalProperties: boolean;
|
|
57
67
|
required: string[];
|
|
58
68
|
$ref?: undefined;
|
|
59
69
|
})[];
|
|
@@ -310,10 +320,14 @@ export declare const GithubSchemas: ({
|
|
|
310
320
|
$ref: string;
|
|
311
321
|
type?: undefined;
|
|
312
322
|
properties?: undefined;
|
|
323
|
+
additionalProperties?: undefined;
|
|
313
324
|
required?: undefined;
|
|
314
325
|
} | {
|
|
315
326
|
type: string;
|
|
316
327
|
properties: {
|
|
328
|
+
name: {
|
|
329
|
+
type: string;
|
|
330
|
+
};
|
|
317
331
|
orgName: {
|
|
318
332
|
$ref: string;
|
|
319
333
|
};
|
|
@@ -344,9 +358,11 @@ export declare const GithubSchemas: ({
|
|
|
344
358
|
};
|
|
345
359
|
};
|
|
346
360
|
};
|
|
361
|
+
additionalProperties: boolean;
|
|
347
362
|
required: string[];
|
|
348
363
|
};
|
|
349
364
|
};
|
|
365
|
+
additionalProperties: boolean;
|
|
350
366
|
required: string[];
|
|
351
367
|
$ref?: undefined;
|
|
352
368
|
})[];
|
|
@@ -10,10 +10,14 @@ declare const _default: {
|
|
|
10
10
|
$ref: string;
|
|
11
11
|
type?: undefined;
|
|
12
12
|
properties?: undefined;
|
|
13
|
+
additionalProperties?: undefined;
|
|
13
14
|
required?: undefined;
|
|
14
15
|
} | {
|
|
15
16
|
type: string;
|
|
16
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
17
21
|
orgName: {
|
|
18
22
|
$ref: string;
|
|
19
23
|
};
|
|
@@ -44,9 +48,11 @@ declare const _default: {
|
|
|
44
48
|
};
|
|
45
49
|
};
|
|
46
50
|
};
|
|
51
|
+
additionalProperties: boolean;
|
|
47
52
|
required: string[];
|
|
48
53
|
};
|
|
49
54
|
};
|
|
55
|
+
additionalProperties: boolean;
|
|
50
56
|
required: string[];
|
|
51
57
|
$ref?: undefined;
|
|
52
58
|
})[];
|
|
@@ -10,10 +10,14 @@ declare const _default: {
|
|
|
10
10
|
$ref: string;
|
|
11
11
|
type?: undefined;
|
|
12
12
|
properties?: undefined;
|
|
13
|
+
additionalProperties?: undefined;
|
|
13
14
|
required?: undefined;
|
|
14
15
|
} | {
|
|
15
16
|
type: string;
|
|
16
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
17
21
|
role: {
|
|
18
22
|
type: string;
|
|
19
23
|
enum: string[];
|
|
@@ -22,6 +26,7 @@ declare const _default: {
|
|
|
22
26
|
$ref: string;
|
|
23
27
|
};
|
|
24
28
|
};
|
|
29
|
+
additionalProperties: boolean;
|
|
25
30
|
required: string[];
|
|
26
31
|
$ref?: undefined;
|
|
27
32
|
})[];
|
|
@@ -29,6 +29,7 @@ export declare const TerraformSchemas: {
|
|
|
29
29
|
$ref: string;
|
|
30
30
|
type?: undefined;
|
|
31
31
|
properties?: undefined;
|
|
32
|
+
additionalProperties?: undefined;
|
|
32
33
|
required?: undefined;
|
|
33
34
|
} | {
|
|
34
35
|
type: string;
|
|
@@ -40,6 +41,10 @@ export declare const TerraformSchemas: {
|
|
|
40
41
|
name: {
|
|
41
42
|
type: string;
|
|
42
43
|
};
|
|
44
|
+
tfStateKey: {
|
|
45
|
+
type: string;
|
|
46
|
+
pattern: string;
|
|
47
|
+
};
|
|
43
48
|
source: {
|
|
44
49
|
type: string;
|
|
45
50
|
enum: string[];
|
|
@@ -122,6 +127,7 @@ export declare const TerraformSchemas: {
|
|
|
122
127
|
additionalProperties: boolean;
|
|
123
128
|
};
|
|
124
129
|
};
|
|
130
|
+
additionalProperties: boolean;
|
|
125
131
|
required: string[];
|
|
126
132
|
$ref?: undefined;
|
|
127
133
|
})[];
|
|
@@ -29,6 +29,7 @@ declare const _default: {
|
|
|
29
29
|
$ref: string;
|
|
30
30
|
type?: undefined;
|
|
31
31
|
properties?: undefined;
|
|
32
|
+
additionalProperties?: undefined;
|
|
32
33
|
required?: undefined;
|
|
33
34
|
} | {
|
|
34
35
|
type: string;
|
|
@@ -40,6 +41,10 @@ declare const _default: {
|
|
|
40
41
|
name: {
|
|
41
42
|
type: string;
|
|
42
43
|
};
|
|
44
|
+
tfStateKey: {
|
|
45
|
+
type: string;
|
|
46
|
+
pattern: string;
|
|
47
|
+
};
|
|
43
48
|
source: {
|
|
44
49
|
type: string;
|
|
45
50
|
enum: string[];
|
|
@@ -122,6 +127,7 @@ declare const _default: {
|
|
|
122
127
|
additionalProperties: boolean;
|
|
123
128
|
};
|
|
124
129
|
};
|
|
130
|
+
additionalProperties: boolean;
|
|
125
131
|
required: string[];
|
|
126
132
|
$ref?: undefined;
|
|
127
133
|
})[];
|