@firestartr/cli 1.59.3-snapshot-9 → 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 +15 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +14 -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 +3 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +9 -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 +3 -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,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'],
|
|
@@ -358301,6 +358304,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358301
358304
|
{
|
|
358302
358305
|
type: 'object',
|
|
358303
358306
|
properties: {
|
|
358307
|
+
name: {
|
|
358308
|
+
type: 'string',
|
|
358309
|
+
},
|
|
358304
358310
|
role: {
|
|
358305
358311
|
type: 'string',
|
|
358306
358312
|
enum: ['admin', 'member'],
|
|
@@ -358505,6 +358511,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358505
358511
|
{
|
|
358506
358512
|
type: 'object',
|
|
358507
358513
|
properties: {
|
|
358514
|
+
name: {
|
|
358515
|
+
type: 'string',
|
|
358516
|
+
},
|
|
358508
358517
|
orgName: {
|
|
358509
358518
|
$ref: 'firestartr.dev://common/ClaimName',
|
|
358510
358519
|
},
|
|
@@ -358743,6 +358752,10 @@ const GithubSchemas = [
|
|
|
358743
358752
|
name: {
|
|
358744
358753
|
type: 'string',
|
|
358745
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
|
+
},
|
|
358746
358759
|
source: {
|
|
358747
358760
|
type: 'string',
|
|
358748
358761
|
enum: ['remote', 'inline', 'Remote', 'Inline'],
|
|
@@ -359047,6 +359060,7 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359047
359060
|
$id: 'firestartr.dev://secrets/ExternalSecretsProvider',
|
|
359048
359061
|
type: 'object',
|
|
359049
359062
|
description: 'A external secrets claim provider',
|
|
359063
|
+
unevaluatedProperties: false,
|
|
359050
359064
|
allOf: [
|
|
359051
359065
|
{ $ref: 'firestartr.dev://common/ClaimProviderEnvelope' },
|
|
359052
359066
|
{
|
|
@@ -359062,7 +359076,6 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359062
359076
|
$ref: 'firestartr.dev://secrets/PushSecretsSection',
|
|
359063
359077
|
},
|
|
359064
359078
|
},
|
|
359065
|
-
additionalProperties: false,
|
|
359066
359079
|
// 1. MANDATORY RULE (ALWAYS): secretStore
|
|
359067
359080
|
required: ['secretStore'],
|
|
359068
359081
|
// 2. CONDITIONAL RULE (AT LEAST ONE): externalSecrets OR pushSecrets
|
|
@@ -377014,7 +377027,7 @@ const crs_analyzerSubcommand = {
|
|
|
377014
377027
|
};
|
|
377015
377028
|
|
|
377016
377029
|
;// CONCATENATED MODULE: ./package.json
|
|
377017
|
-
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-
|
|
377030
|
+
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-10"}');
|
|
377018
377031
|
;// CONCATENATED MODULE: ../../package.json
|
|
377019
377032
|
const package_namespaceObject_1 = {"i8":"1.59.3"};
|
|
377020
377033
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -400,6 +400,9 @@ declare const schemas: {
|
|
|
400
400
|
} | {
|
|
401
401
|
type: string;
|
|
402
402
|
properties: {
|
|
403
|
+
name: {
|
|
404
|
+
type: string;
|
|
405
|
+
};
|
|
403
406
|
privacy: {
|
|
404
407
|
type: string;
|
|
405
408
|
enum: string[];
|
|
@@ -434,6 +437,9 @@ declare const schemas: {
|
|
|
434
437
|
} | {
|
|
435
438
|
type: string;
|
|
436
439
|
properties: {
|
|
440
|
+
name: {
|
|
441
|
+
type: string;
|
|
442
|
+
};
|
|
437
443
|
role: {
|
|
438
444
|
type: string;
|
|
439
445
|
enum: string[];
|
|
@@ -704,6 +710,9 @@ declare const schemas: {
|
|
|
704
710
|
} | {
|
|
705
711
|
type: string;
|
|
706
712
|
properties: {
|
|
713
|
+
name: {
|
|
714
|
+
type: string;
|
|
715
|
+
};
|
|
707
716
|
orgName: {
|
|
708
717
|
$ref: string;
|
|
709
718
|
};
|
|
@@ -869,6 +878,10 @@ declare const schemas: {
|
|
|
869
878
|
name: {
|
|
870
879
|
type: string;
|
|
871
880
|
};
|
|
881
|
+
tfStateKey: {
|
|
882
|
+
type: string;
|
|
883
|
+
pattern: string;
|
|
884
|
+
};
|
|
872
885
|
source: {
|
|
873
886
|
type: string;
|
|
874
887
|
enum: string[];
|
|
@@ -1153,11 +1166,11 @@ declare const schemas: {
|
|
|
1153
1166
|
$id: string;
|
|
1154
1167
|
type: string;
|
|
1155
1168
|
description: string;
|
|
1169
|
+
unevaluatedProperties: boolean;
|
|
1156
1170
|
allOf: ({
|
|
1157
1171
|
$ref: string;
|
|
1158
1172
|
type?: undefined;
|
|
1159
1173
|
properties?: undefined;
|
|
1160
|
-
additionalProperties?: undefined;
|
|
1161
1174
|
required?: undefined;
|
|
1162
1175
|
anyOf?: undefined;
|
|
1163
1176
|
} | {
|
|
@@ -1173,7 +1186,6 @@ declare const schemas: {
|
|
|
1173
1186
|
$ref: string;
|
|
1174
1187
|
};
|
|
1175
1188
|
};
|
|
1176
|
-
additionalProperties: boolean;
|
|
1177
1189
|
required: string[];
|
|
1178
1190
|
anyOf: {
|
|
1179
1191
|
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,9 @@ export declare const GithubSchemas: ({
|
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
18
|
+
name: {
|
|
19
|
+
type: string;
|
|
20
|
+
};
|
|
18
21
|
privacy: {
|
|
19
22
|
type: string;
|
|
20
23
|
enum: string[];
|
|
@@ -49,6 +52,9 @@ export declare const GithubSchemas: ({
|
|
|
49
52
|
} | {
|
|
50
53
|
type: string;
|
|
51
54
|
properties: {
|
|
55
|
+
name: {
|
|
56
|
+
type: string;
|
|
57
|
+
};
|
|
52
58
|
role: {
|
|
53
59
|
type: string;
|
|
54
60
|
enum: string[];
|
|
@@ -319,6 +325,9 @@ export declare const GithubSchemas: ({
|
|
|
319
325
|
} | {
|
|
320
326
|
type: string;
|
|
321
327
|
properties: {
|
|
328
|
+
name: {
|
|
329
|
+
type: string;
|
|
330
|
+
};
|
|
322
331
|
orgName: {
|
|
323
332
|
$ref: string;
|
|
324
333
|
};
|