@firestartr/cli 1.59.3-snapshot-9 → 1.59.3-snapshot-11
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 +33 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +40 -2
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts +1 -2
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/index.d.ts +1 -2
- package/build/packages/cdk8s_renderer/src/claims/github/group.schema.d.ts +16 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +35 -0
- package/build/packages/cdk8s_renderer/src/claims/github/orgwebhook.schema.d.ts +3 -0
- package/build/packages/cdk8s_renderer/src/claims/github/user.schema.d.ts +16 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +4 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +4 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -358265,6 +358265,18 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358265
358265
|
{
|
|
358266
358266
|
type: 'object',
|
|
358267
358267
|
properties: {
|
|
358268
|
+
name: {
|
|
358269
|
+
type: 'string',
|
|
358270
|
+
},
|
|
358271
|
+
sync: {
|
|
358272
|
+
type: 'object',
|
|
358273
|
+
properties: {
|
|
358274
|
+
enabled: { type: 'boolean' },
|
|
358275
|
+
period: { type: 'string' },
|
|
358276
|
+
},
|
|
358277
|
+
additionalProperties: false,
|
|
358278
|
+
required: ['enabled', 'period'],
|
|
358279
|
+
},
|
|
358268
358280
|
privacy: {
|
|
358269
358281
|
type: 'string',
|
|
358270
358282
|
enum: ['closed', 'secret'],
|
|
@@ -358301,6 +358313,18 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358301
358313
|
{
|
|
358302
358314
|
type: 'object',
|
|
358303
358315
|
properties: {
|
|
358316
|
+
name: {
|
|
358317
|
+
type: 'string',
|
|
358318
|
+
},
|
|
358319
|
+
sync: {
|
|
358320
|
+
type: 'object',
|
|
358321
|
+
properties: {
|
|
358322
|
+
enabled: { type: 'boolean' },
|
|
358323
|
+
period: { type: 'string' },
|
|
358324
|
+
},
|
|
358325
|
+
additionalProperties: false,
|
|
358326
|
+
required: ['enabled', 'period'],
|
|
358327
|
+
},
|
|
358304
358328
|
role: {
|
|
358305
358329
|
type: 'string',
|
|
358306
358330
|
enum: ['admin', 'member'],
|
|
@@ -358505,6 +358529,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358505
358529
|
{
|
|
358506
358530
|
type: 'object',
|
|
358507
358531
|
properties: {
|
|
358532
|
+
name: {
|
|
358533
|
+
type: 'string',
|
|
358534
|
+
},
|
|
358508
358535
|
orgName: {
|
|
358509
358536
|
$ref: 'firestartr.dev://common/ClaimName',
|
|
358510
358537
|
},
|
|
@@ -358743,6 +358770,10 @@ const GithubSchemas = [
|
|
|
358743
358770
|
name: {
|
|
358744
358771
|
type: 'string',
|
|
358745
358772
|
},
|
|
358773
|
+
tfStateKey: {
|
|
358774
|
+
type: 'string',
|
|
358775
|
+
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}$',
|
|
358776
|
+
},
|
|
358746
358777
|
source: {
|
|
358747
358778
|
type: 'string',
|
|
358748
358779
|
enum: ['remote', 'inline', 'Remote', 'Inline'],
|
|
@@ -359047,6 +359078,7 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359047
359078
|
$id: 'firestartr.dev://secrets/ExternalSecretsProvider',
|
|
359048
359079
|
type: 'object',
|
|
359049
359080
|
description: 'A external secrets claim provider',
|
|
359081
|
+
unevaluatedProperties: false,
|
|
359050
359082
|
allOf: [
|
|
359051
359083
|
{ $ref: 'firestartr.dev://common/ClaimProviderEnvelope' },
|
|
359052
359084
|
{
|
|
@@ -359062,7 +359094,6 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359062
359094
|
$ref: 'firestartr.dev://secrets/PushSecretsSection',
|
|
359063
359095
|
},
|
|
359064
359096
|
},
|
|
359065
|
-
additionalProperties: false,
|
|
359066
359097
|
// 1. MANDATORY RULE (ALWAYS): secretStore
|
|
359067
359098
|
required: ['secretStore'],
|
|
359068
359099
|
// 2. CONDITIONAL RULE (AT LEAST ONE): externalSecrets OR pushSecrets
|
|
@@ -377014,7 +377045,7 @@ const crs_analyzerSubcommand = {
|
|
|
377014
377045
|
};
|
|
377015
377046
|
|
|
377016
377047
|
;// CONCATENATED MODULE: ./package.json
|
|
377017
|
-
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-
|
|
377048
|
+
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-11"}');
|
|
377018
377049
|
;// CONCATENATED MODULE: ../../package.json
|
|
377019
377050
|
const package_namespaceObject_1 = {"i8":"1.59.3"};
|
|
377020
377051
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -400,6 +400,22 @@ declare const schemas: {
|
|
|
400
400
|
} | {
|
|
401
401
|
type: string;
|
|
402
402
|
properties: {
|
|
403
|
+
name: {
|
|
404
|
+
type: string;
|
|
405
|
+
};
|
|
406
|
+
sync: {
|
|
407
|
+
type: string;
|
|
408
|
+
properties: {
|
|
409
|
+
enabled: {
|
|
410
|
+
type: string;
|
|
411
|
+
};
|
|
412
|
+
period: {
|
|
413
|
+
type: string;
|
|
414
|
+
};
|
|
415
|
+
};
|
|
416
|
+
additionalProperties: boolean;
|
|
417
|
+
required: string[];
|
|
418
|
+
};
|
|
403
419
|
privacy: {
|
|
404
420
|
type: string;
|
|
405
421
|
enum: string[];
|
|
@@ -434,6 +450,22 @@ declare const schemas: {
|
|
|
434
450
|
} | {
|
|
435
451
|
type: string;
|
|
436
452
|
properties: {
|
|
453
|
+
name: {
|
|
454
|
+
type: string;
|
|
455
|
+
};
|
|
456
|
+
sync: {
|
|
457
|
+
type: string;
|
|
458
|
+
properties: {
|
|
459
|
+
enabled: {
|
|
460
|
+
type: string;
|
|
461
|
+
};
|
|
462
|
+
period: {
|
|
463
|
+
type: string;
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
additionalProperties: boolean;
|
|
467
|
+
required: string[];
|
|
468
|
+
};
|
|
437
469
|
role: {
|
|
438
470
|
type: string;
|
|
439
471
|
enum: string[];
|
|
@@ -704,6 +736,9 @@ declare const schemas: {
|
|
|
704
736
|
} | {
|
|
705
737
|
type: string;
|
|
706
738
|
properties: {
|
|
739
|
+
name: {
|
|
740
|
+
type: string;
|
|
741
|
+
};
|
|
707
742
|
orgName: {
|
|
708
743
|
$ref: string;
|
|
709
744
|
};
|
|
@@ -869,6 +904,10 @@ declare const schemas: {
|
|
|
869
904
|
name: {
|
|
870
905
|
type: string;
|
|
871
906
|
};
|
|
907
|
+
tfStateKey: {
|
|
908
|
+
type: string;
|
|
909
|
+
pattern: string;
|
|
910
|
+
};
|
|
872
911
|
source: {
|
|
873
912
|
type: string;
|
|
874
913
|
enum: string[];
|
|
@@ -1153,11 +1192,11 @@ declare const schemas: {
|
|
|
1153
1192
|
$id: string;
|
|
1154
1193
|
type: string;
|
|
1155
1194
|
description: string;
|
|
1195
|
+
unevaluatedProperties: boolean;
|
|
1156
1196
|
allOf: ({
|
|
1157
1197
|
$ref: string;
|
|
1158
1198
|
type?: undefined;
|
|
1159
1199
|
properties?: undefined;
|
|
1160
|
-
additionalProperties?: undefined;
|
|
1161
1200
|
required?: undefined;
|
|
1162
1201
|
anyOf?: undefined;
|
|
1163
1202
|
} | {
|
|
@@ -1173,7 +1212,6 @@ declare const schemas: {
|
|
|
1173
1212
|
$ref: string;
|
|
1174
1213
|
};
|
|
1175
1214
|
};
|
|
1176
|
-
additionalProperties: boolean;
|
|
1177
1215
|
required: string[];
|
|
1178
1216
|
anyOf: {
|
|
1179
1217
|
required: string[];
|
package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts
CHANGED
|
@@ -94,11 +94,11 @@ declare const _default: {
|
|
|
94
94
|
$id: string;
|
|
95
95
|
type: string;
|
|
96
96
|
description: string;
|
|
97
|
+
unevaluatedProperties: boolean;
|
|
97
98
|
allOf: ({
|
|
98
99
|
$ref: string;
|
|
99
100
|
type?: undefined;
|
|
100
101
|
properties?: undefined;
|
|
101
|
-
additionalProperties?: undefined;
|
|
102
102
|
required?: undefined;
|
|
103
103
|
anyOf?: undefined;
|
|
104
104
|
} | {
|
|
@@ -114,7 +114,6 @@ declare const _default: {
|
|
|
114
114
|
$ref: string;
|
|
115
115
|
};
|
|
116
116
|
};
|
|
117
|
-
additionalProperties: boolean;
|
|
118
117
|
required: string[];
|
|
119
118
|
anyOf: {
|
|
120
119
|
required: string[];
|
|
@@ -94,11 +94,11 @@ export declare const SecretsSchemas: {
|
|
|
94
94
|
$id: string;
|
|
95
95
|
type: string;
|
|
96
96
|
description: string;
|
|
97
|
+
unevaluatedProperties: boolean;
|
|
97
98
|
allOf: ({
|
|
98
99
|
$ref: string;
|
|
99
100
|
type?: undefined;
|
|
100
101
|
properties?: undefined;
|
|
101
|
-
additionalProperties?: undefined;
|
|
102
102
|
required?: undefined;
|
|
103
103
|
anyOf?: undefined;
|
|
104
104
|
} | {
|
|
@@ -114,7 +114,6 @@ export declare const SecretsSchemas: {
|
|
|
114
114
|
$ref: string;
|
|
115
115
|
};
|
|
116
116
|
};
|
|
117
|
-
additionalProperties: boolean;
|
|
118
117
|
required: string[];
|
|
119
118
|
anyOf: {
|
|
120
119
|
required: string[];
|
|
@@ -15,6 +15,22 @@ declare const _default: {
|
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
21
|
+
sync: {
|
|
22
|
+
type: string;
|
|
23
|
+
properties: {
|
|
24
|
+
enabled: {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
period: {
|
|
28
|
+
type: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
additionalProperties: boolean;
|
|
32
|
+
required: string[];
|
|
33
|
+
};
|
|
18
34
|
privacy: {
|
|
19
35
|
type: string;
|
|
20
36
|
enum: string[];
|
|
@@ -15,6 +15,22 @@ export declare const GithubSchemas: ({
|
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
21
|
+
sync: {
|
|
22
|
+
type: string;
|
|
23
|
+
properties: {
|
|
24
|
+
enabled: {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
period: {
|
|
28
|
+
type: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
additionalProperties: boolean;
|
|
32
|
+
required: string[];
|
|
33
|
+
};
|
|
18
34
|
privacy: {
|
|
19
35
|
type: string;
|
|
20
36
|
enum: string[];
|
|
@@ -49,6 +65,22 @@ export declare const GithubSchemas: ({
|
|
|
49
65
|
} | {
|
|
50
66
|
type: string;
|
|
51
67
|
properties: {
|
|
68
|
+
name: {
|
|
69
|
+
type: string;
|
|
70
|
+
};
|
|
71
|
+
sync: {
|
|
72
|
+
type: string;
|
|
73
|
+
properties: {
|
|
74
|
+
enabled: {
|
|
75
|
+
type: string;
|
|
76
|
+
};
|
|
77
|
+
period: {
|
|
78
|
+
type: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
additionalProperties: boolean;
|
|
82
|
+
required: string[];
|
|
83
|
+
};
|
|
52
84
|
role: {
|
|
53
85
|
type: string;
|
|
54
86
|
enum: string[];
|
|
@@ -319,6 +351,9 @@ export declare const GithubSchemas: ({
|
|
|
319
351
|
} | {
|
|
320
352
|
type: string;
|
|
321
353
|
properties: {
|
|
354
|
+
name: {
|
|
355
|
+
type: string;
|
|
356
|
+
};
|
|
322
357
|
orgName: {
|
|
323
358
|
$ref: string;
|
|
324
359
|
};
|
|
@@ -15,6 +15,22 @@ declare const _default: {
|
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
21
|
+
sync: {
|
|
22
|
+
type: string;
|
|
23
|
+
properties: {
|
|
24
|
+
enabled: {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
period: {
|
|
28
|
+
type: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
additionalProperties: boolean;
|
|
32
|
+
required: string[];
|
|
33
|
+
};
|
|
18
34
|
role: {
|
|
19
35
|
type: string;
|
|
20
36
|
enum: string[];
|