@firestartr/cli 1.59.3-snapshot-10 → 1.59.3-snapshot-12
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 +79 -22
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/common-meta.schema.d.ts +46 -0
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +89 -14
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts +9 -1
- package/build/packages/cdk8s_renderer/src/claims/external-secrets/index.d.ts +9 -1
- package/build/packages/cdk8s_renderer/src/claims/github/component.schema.d.ts +18 -11
- package/build/packages/cdk8s_renderer/src/claims/github/group.schema.d.ts +6 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +33 -11
- 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 +6 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +1 -2
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +1 -2
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -357922,6 +357922,42 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
357922
357922
|
},
|
|
357923
357923
|
additionalProperties: false,
|
|
357924
357924
|
},
|
|
357925
|
+
GithubRules: {
|
|
357926
|
+
$id: 'firestartr.dev://common/FirestartrGithubRules',
|
|
357927
|
+
type: 'object',
|
|
357928
|
+
properties: {
|
|
357929
|
+
path: { type: 'string' },
|
|
357930
|
+
owners: {
|
|
357931
|
+
type: 'array',
|
|
357932
|
+
items: {
|
|
357933
|
+
$ref: 'firestartr.dev://common/FirestartrOwnerRef',
|
|
357934
|
+
},
|
|
357935
|
+
},
|
|
357936
|
+
},
|
|
357937
|
+
required: ['path', 'owners'],
|
|
357938
|
+
additionalProperties: false,
|
|
357939
|
+
},
|
|
357940
|
+
GithubSync: {
|
|
357941
|
+
$id: 'firestartr.dev://common/FirestartrGithubSync',
|
|
357942
|
+
type: 'object',
|
|
357943
|
+
properties: {
|
|
357944
|
+
enabled: { type: 'boolean' },
|
|
357945
|
+
period: {
|
|
357946
|
+
type: 'string',
|
|
357947
|
+
pattern: '^[0-9]+[smhd]$',
|
|
357948
|
+
},
|
|
357949
|
+
policy: { type: 'string' },
|
|
357950
|
+
schedule: { type: 'string' },
|
|
357951
|
+
schedule_timezone: { type: 'string' },
|
|
357952
|
+
},
|
|
357953
|
+
additionalProperties: false,
|
|
357954
|
+
required: ['enabled'],
|
|
357955
|
+
},
|
|
357956
|
+
TfStateKey: {
|
|
357957
|
+
$id: 'firestartr.dev://common/TerraformStateKey',
|
|
357958
|
+
type: 'string',
|
|
357959
|
+
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}$',
|
|
357960
|
+
},
|
|
357925
357961
|
},
|
|
357926
357962
|
});
|
|
357927
357963
|
|
|
@@ -358268,6 +358304,12 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358268
358304
|
name: {
|
|
358269
358305
|
type: 'string',
|
|
358270
358306
|
},
|
|
358307
|
+
tfStateKey: {
|
|
358308
|
+
$ref: 'firestartr.dev://common/TerraformStateKey',
|
|
358309
|
+
},
|
|
358310
|
+
sync: {
|
|
358311
|
+
$ref: 'firestartr.dev://common/FirestartrGithubSync',
|
|
358312
|
+
},
|
|
358271
358313
|
privacy: {
|
|
358272
358314
|
type: 'string',
|
|
358273
358315
|
enum: ['closed', 'secret'],
|
|
@@ -358307,6 +358349,12 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358307
358349
|
name: {
|
|
358308
358350
|
type: 'string',
|
|
358309
358351
|
},
|
|
358352
|
+
tfStateKey: {
|
|
358353
|
+
$ref: 'firestartr.dev://common/TerraformStateKey',
|
|
358354
|
+
},
|
|
358355
|
+
sync: {
|
|
358356
|
+
$ref: 'firestartr.dev://common/FirestartrGithubSync',
|
|
358357
|
+
},
|
|
358310
358358
|
role: {
|
|
358311
358359
|
type: 'string',
|
|
358312
358360
|
enum: ['admin', 'member'],
|
|
@@ -358346,18 +358394,15 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358346
358394
|
type: 'string',
|
|
358347
358395
|
description: 'The github repo name',
|
|
358348
358396
|
},
|
|
358397
|
+
tfStateKey: {
|
|
358398
|
+
$ref: 'firestartr.dev://common/TerraformStateKey',
|
|
358399
|
+
},
|
|
358349
358400
|
orgPermissions: {
|
|
358350
358401
|
type: 'string',
|
|
358351
358402
|
description: 'The level of org Permission',
|
|
358352
358403
|
},
|
|
358353
358404
|
sync: {
|
|
358354
|
-
|
|
358355
|
-
properties: {
|
|
358356
|
-
enabled: { type: 'boolean' },
|
|
358357
|
-
period: { type: 'string' },
|
|
358358
|
-
},
|
|
358359
|
-
additionalProperties: false,
|
|
358360
|
-
required: ['enabled', 'period'],
|
|
358405
|
+
$ref: 'firestartr.dev://common/FirestartrGithubSync',
|
|
358361
358406
|
},
|
|
358362
358407
|
technology: {
|
|
358363
358408
|
type: 'object',
|
|
@@ -358368,6 +358413,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358368
358413
|
additionalProperties: false,
|
|
358369
358414
|
required: ['stack', 'version'],
|
|
358370
358415
|
},
|
|
358416
|
+
defaultBranch: {
|
|
358417
|
+
type: 'string',
|
|
358418
|
+
},
|
|
358371
358419
|
branchStrategy: {
|
|
358372
358420
|
type: 'object',
|
|
358373
358421
|
description: 'A branch strategy for a claim',
|
|
@@ -358380,7 +358428,7 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358380
358428
|
},
|
|
358381
358429
|
},
|
|
358382
358430
|
additionalProperties: false,
|
|
358383
|
-
required: ['name'
|
|
358431
|
+
required: ['name'],
|
|
358384
358432
|
},
|
|
358385
358433
|
additionalBranches: {
|
|
358386
358434
|
type: 'array',
|
|
@@ -358459,6 +358507,12 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358459
358507
|
},
|
|
358460
358508
|
additionalProperties: false,
|
|
358461
358509
|
},
|
|
358510
|
+
additionalRules: {
|
|
358511
|
+
type: 'array',
|
|
358512
|
+
items: {
|
|
358513
|
+
$ref: 'firestartr.dev://common/FirestartrGithubRules',
|
|
358514
|
+
},
|
|
358515
|
+
},
|
|
358462
358516
|
visibility: {
|
|
358463
358517
|
type: 'string',
|
|
358464
358518
|
enum: ['private', 'public', 'internal'],
|
|
@@ -358487,9 +358541,14 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358487
358541
|
pattern: '^[a-z0-9][a-z0-9-]*$',
|
|
358488
358542
|
},
|
|
358489
358543
|
},
|
|
358544
|
+
overrides: {
|
|
358545
|
+
type: 'object',
|
|
358546
|
+
properties: {},
|
|
358547
|
+
additionalProperties: true,
|
|
358548
|
+
},
|
|
358490
358549
|
},
|
|
358491
358550
|
additionalProperties: false,
|
|
358492
|
-
required: ['visibility', 'org'],
|
|
358551
|
+
required: ['visibility', 'org', 'branchStrategy'],
|
|
358493
358552
|
},
|
|
358494
358553
|
],
|
|
358495
358554
|
},
|
|
@@ -358514,6 +358573,9 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358514
358573
|
name: {
|
|
358515
358574
|
type: 'string',
|
|
358516
358575
|
},
|
|
358576
|
+
tfStateKey: {
|
|
358577
|
+
$ref: 'firestartr.dev://common/TerraformStateKey',
|
|
358578
|
+
},
|
|
358517
358579
|
orgName: {
|
|
358518
358580
|
$ref: 'firestartr.dev://common/ClaimName',
|
|
358519
358581
|
},
|
|
@@ -358753,8 +358815,7 @@ const GithubSchemas = [
|
|
|
358753
358815
|
type: 'string',
|
|
358754
358816
|
},
|
|
358755
358817
|
tfStateKey: {
|
|
358756
|
-
|
|
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}$',
|
|
358818
|
+
$ref: 'firestartr.dev://common/TerraformStateKey',
|
|
358758
358819
|
},
|
|
358759
358820
|
source: {
|
|
358760
358821
|
type: 'string',
|
|
@@ -359016,6 +359077,9 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359016
359077
|
template: { type: 'object' },
|
|
359017
359078
|
secretName: { type: 'string' },
|
|
359018
359079
|
refreshInterval: { type: 'string' },
|
|
359080
|
+
updatePolicy: { type: 'string' },
|
|
359081
|
+
deletionPolicy: { type: 'string' },
|
|
359082
|
+
conversionStrategy: { type: 'string' },
|
|
359019
359083
|
generator: {
|
|
359020
359084
|
type: 'object',
|
|
359021
359085
|
properties: {
|
|
@@ -359038,15 +359102,9 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359038
359102
|
'Grafana',
|
|
359039
359103
|
],
|
|
359040
359104
|
},
|
|
359041
|
-
apiVersion: {
|
|
359042
|
-
|
|
359043
|
-
},
|
|
359044
|
-
conversionStrategy: {
|
|
359045
|
-
type: 'string',
|
|
359046
|
-
},
|
|
359047
|
-
outputKey: {
|
|
359048
|
-
type: 'string',
|
|
359049
|
-
},
|
|
359105
|
+
apiVersion: { type: 'string' },
|
|
359106
|
+
conversionStrategy: { type: 'string' },
|
|
359107
|
+
outputKey: { type: 'string' },
|
|
359050
359108
|
},
|
|
359051
359109
|
additionalProperties: false,
|
|
359052
359110
|
required: ['name'],
|
|
@@ -359060,7 +359118,6 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
359060
359118
|
$id: 'firestartr.dev://secrets/ExternalSecretsProvider',
|
|
359061
359119
|
type: 'object',
|
|
359062
359120
|
description: 'A external secrets claim provider',
|
|
359063
|
-
unevaluatedProperties: false,
|
|
359064
359121
|
allOf: [
|
|
359065
359122
|
{ $ref: 'firestartr.dev://common/ClaimProviderEnvelope' },
|
|
359066
359123
|
{
|
|
@@ -377027,7 +377084,7 @@ const crs_analyzerSubcommand = {
|
|
|
377027
377084
|
};
|
|
377028
377085
|
|
|
377029
377086
|
;// CONCATENATED MODULE: ./package.json
|
|
377030
|
-
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-
|
|
377087
|
+
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-12"}');
|
|
377031
377088
|
;// CONCATENATED MODULE: ../../package.json
|
|
377032
377089
|
const package_namespaceObject_1 = {"i8":"1.59.3"};
|
|
377033
377090
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -117,6 +117,52 @@ declare const _default: {
|
|
|
117
117
|
};
|
|
118
118
|
additionalProperties: boolean;
|
|
119
119
|
};
|
|
120
|
+
GithubRules: {
|
|
121
|
+
$id: string;
|
|
122
|
+
type: string;
|
|
123
|
+
properties: {
|
|
124
|
+
path: {
|
|
125
|
+
type: string;
|
|
126
|
+
};
|
|
127
|
+
owners: {
|
|
128
|
+
type: string;
|
|
129
|
+
items: {
|
|
130
|
+
$ref: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
required: string[];
|
|
135
|
+
additionalProperties: boolean;
|
|
136
|
+
};
|
|
137
|
+
GithubSync: {
|
|
138
|
+
$id: string;
|
|
139
|
+
type: string;
|
|
140
|
+
properties: {
|
|
141
|
+
enabled: {
|
|
142
|
+
type: string;
|
|
143
|
+
};
|
|
144
|
+
period: {
|
|
145
|
+
type: string;
|
|
146
|
+
pattern: string;
|
|
147
|
+
};
|
|
148
|
+
policy: {
|
|
149
|
+
type: string;
|
|
150
|
+
};
|
|
151
|
+
schedule: {
|
|
152
|
+
type: string;
|
|
153
|
+
};
|
|
154
|
+
schedule_timezone: {
|
|
155
|
+
type: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
additionalProperties: boolean;
|
|
159
|
+
required: string[];
|
|
160
|
+
};
|
|
161
|
+
TfStateKey: {
|
|
162
|
+
$id: string;
|
|
163
|
+
type: string;
|
|
164
|
+
pattern: string;
|
|
165
|
+
};
|
|
120
166
|
};
|
|
121
167
|
};
|
|
122
168
|
export default _default;
|
|
@@ -121,6 +121,52 @@ declare const schemas: {
|
|
|
121
121
|
};
|
|
122
122
|
additionalProperties: boolean;
|
|
123
123
|
};
|
|
124
|
+
GithubRules: {
|
|
125
|
+
$id: string;
|
|
126
|
+
type: string;
|
|
127
|
+
properties: {
|
|
128
|
+
path: {
|
|
129
|
+
type: string;
|
|
130
|
+
};
|
|
131
|
+
owners: {
|
|
132
|
+
type: string;
|
|
133
|
+
items: {
|
|
134
|
+
$ref: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
required: string[];
|
|
139
|
+
additionalProperties: boolean;
|
|
140
|
+
};
|
|
141
|
+
GithubSync: {
|
|
142
|
+
$id: string;
|
|
143
|
+
type: string;
|
|
144
|
+
properties: {
|
|
145
|
+
enabled: {
|
|
146
|
+
type: string;
|
|
147
|
+
};
|
|
148
|
+
period: {
|
|
149
|
+
type: string;
|
|
150
|
+
pattern: string;
|
|
151
|
+
};
|
|
152
|
+
policy: {
|
|
153
|
+
type: string;
|
|
154
|
+
};
|
|
155
|
+
schedule: {
|
|
156
|
+
type: string;
|
|
157
|
+
};
|
|
158
|
+
schedule_timezone: {
|
|
159
|
+
type: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
additionalProperties: boolean;
|
|
163
|
+
required: string[];
|
|
164
|
+
};
|
|
165
|
+
TfStateKey: {
|
|
166
|
+
$id: string;
|
|
167
|
+
type: string;
|
|
168
|
+
pattern: string;
|
|
169
|
+
};
|
|
124
170
|
};
|
|
125
171
|
} | {
|
|
126
172
|
$schema: string;
|
|
@@ -403,6 +449,12 @@ declare const schemas: {
|
|
|
403
449
|
name: {
|
|
404
450
|
type: string;
|
|
405
451
|
};
|
|
452
|
+
tfStateKey: {
|
|
453
|
+
$ref: string;
|
|
454
|
+
};
|
|
455
|
+
sync: {
|
|
456
|
+
$ref: string;
|
|
457
|
+
};
|
|
406
458
|
privacy: {
|
|
407
459
|
type: string;
|
|
408
460
|
enum: string[];
|
|
@@ -440,6 +492,12 @@ declare const schemas: {
|
|
|
440
492
|
name: {
|
|
441
493
|
type: string;
|
|
442
494
|
};
|
|
495
|
+
tfStateKey: {
|
|
496
|
+
$ref: string;
|
|
497
|
+
};
|
|
498
|
+
sync: {
|
|
499
|
+
$ref: string;
|
|
500
|
+
};
|
|
443
501
|
role: {
|
|
444
502
|
type: string;
|
|
445
503
|
enum: string[];
|
|
@@ -523,22 +581,15 @@ declare const schemas: {
|
|
|
523
581
|
type: string;
|
|
524
582
|
description: string;
|
|
525
583
|
};
|
|
584
|
+
tfStateKey: {
|
|
585
|
+
$ref: string;
|
|
586
|
+
};
|
|
526
587
|
orgPermissions: {
|
|
527
588
|
type: string;
|
|
528
589
|
description: string;
|
|
529
590
|
};
|
|
530
591
|
sync: {
|
|
531
|
-
|
|
532
|
-
properties: {
|
|
533
|
-
enabled: {
|
|
534
|
-
type: string;
|
|
535
|
-
};
|
|
536
|
-
period: {
|
|
537
|
-
type: string;
|
|
538
|
-
};
|
|
539
|
-
};
|
|
540
|
-
additionalProperties: boolean;
|
|
541
|
-
required: string[];
|
|
592
|
+
$ref: string;
|
|
542
593
|
};
|
|
543
594
|
technology: {
|
|
544
595
|
type: string;
|
|
@@ -553,6 +604,9 @@ declare const schemas: {
|
|
|
553
604
|
additionalProperties: boolean;
|
|
554
605
|
required: string[];
|
|
555
606
|
};
|
|
607
|
+
defaultBranch: {
|
|
608
|
+
type: string;
|
|
609
|
+
};
|
|
556
610
|
branchStrategy: {
|
|
557
611
|
type: string;
|
|
558
612
|
description: string;
|
|
@@ -658,6 +712,12 @@ declare const schemas: {
|
|
|
658
712
|
};
|
|
659
713
|
additionalProperties: boolean;
|
|
660
714
|
};
|
|
715
|
+
additionalRules: {
|
|
716
|
+
type: string;
|
|
717
|
+
items: {
|
|
718
|
+
$ref: string;
|
|
719
|
+
};
|
|
720
|
+
};
|
|
661
721
|
visibility: {
|
|
662
722
|
type: string;
|
|
663
723
|
enum: string[];
|
|
@@ -686,6 +746,11 @@ declare const schemas: {
|
|
|
686
746
|
pattern: string;
|
|
687
747
|
};
|
|
688
748
|
};
|
|
749
|
+
overrides: {
|
|
750
|
+
type: string;
|
|
751
|
+
properties: {};
|
|
752
|
+
additionalProperties: boolean;
|
|
753
|
+
};
|
|
689
754
|
};
|
|
690
755
|
additionalProperties: boolean;
|
|
691
756
|
required: string[];
|
|
@@ -713,6 +778,9 @@ declare const schemas: {
|
|
|
713
778
|
name: {
|
|
714
779
|
type: string;
|
|
715
780
|
};
|
|
781
|
+
tfStateKey: {
|
|
782
|
+
$ref: string;
|
|
783
|
+
};
|
|
716
784
|
orgName: {
|
|
717
785
|
$ref: string;
|
|
718
786
|
};
|
|
@@ -879,8 +947,7 @@ declare const schemas: {
|
|
|
879
947
|
type: string;
|
|
880
948
|
};
|
|
881
949
|
tfStateKey: {
|
|
882
|
-
|
|
883
|
-
pattern: string;
|
|
950
|
+
$ref: string;
|
|
884
951
|
};
|
|
885
952
|
source: {
|
|
886
953
|
type: string;
|
|
@@ -1134,6 +1201,15 @@ declare const schemas: {
|
|
|
1134
1201
|
refreshInterval: {
|
|
1135
1202
|
type: string;
|
|
1136
1203
|
};
|
|
1204
|
+
updatePolicy: {
|
|
1205
|
+
type: string;
|
|
1206
|
+
};
|
|
1207
|
+
deletionPolicy: {
|
|
1208
|
+
type: string;
|
|
1209
|
+
};
|
|
1210
|
+
conversionStrategy: {
|
|
1211
|
+
type: string;
|
|
1212
|
+
};
|
|
1137
1213
|
generator: {
|
|
1138
1214
|
type: string;
|
|
1139
1215
|
properties: {
|
|
@@ -1166,7 +1242,6 @@ declare const schemas: {
|
|
|
1166
1242
|
$id: string;
|
|
1167
1243
|
type: string;
|
|
1168
1244
|
description: string;
|
|
1169
|
-
unevaluatedProperties: boolean;
|
|
1170
1245
|
allOf: ({
|
|
1171
1246
|
$ref: string;
|
|
1172
1247
|
type?: undefined;
|
package/build/packages/cdk8s_renderer/src/claims/external-secrets/external-secrets.schema.d.ts
CHANGED
|
@@ -62,6 +62,15 @@ declare const _default: {
|
|
|
62
62
|
refreshInterval: {
|
|
63
63
|
type: string;
|
|
64
64
|
};
|
|
65
|
+
updatePolicy: {
|
|
66
|
+
type: string;
|
|
67
|
+
};
|
|
68
|
+
deletionPolicy: {
|
|
69
|
+
type: string;
|
|
70
|
+
};
|
|
71
|
+
conversionStrategy: {
|
|
72
|
+
type: string;
|
|
73
|
+
};
|
|
65
74
|
generator: {
|
|
66
75
|
type: string;
|
|
67
76
|
properties: {
|
|
@@ -94,7 +103,6 @@ declare const _default: {
|
|
|
94
103
|
$id: string;
|
|
95
104
|
type: string;
|
|
96
105
|
description: string;
|
|
97
|
-
unevaluatedProperties: boolean;
|
|
98
106
|
allOf: ({
|
|
99
107
|
$ref: string;
|
|
100
108
|
type?: undefined;
|
|
@@ -62,6 +62,15 @@ export declare const SecretsSchemas: {
|
|
|
62
62
|
refreshInterval: {
|
|
63
63
|
type: string;
|
|
64
64
|
};
|
|
65
|
+
updatePolicy: {
|
|
66
|
+
type: string;
|
|
67
|
+
};
|
|
68
|
+
deletionPolicy: {
|
|
69
|
+
type: string;
|
|
70
|
+
};
|
|
71
|
+
conversionStrategy: {
|
|
72
|
+
type: string;
|
|
73
|
+
};
|
|
65
74
|
generator: {
|
|
66
75
|
type: string;
|
|
67
76
|
properties: {
|
|
@@ -94,7 +103,6 @@ export declare const SecretsSchemas: {
|
|
|
94
103
|
$id: string;
|
|
95
104
|
type: string;
|
|
96
105
|
description: string;
|
|
97
|
-
unevaluatedProperties: boolean;
|
|
98
106
|
allOf: ({
|
|
99
107
|
$ref: string;
|
|
100
108
|
type?: undefined;
|
|
@@ -23,22 +23,15 @@ declare const _default: {
|
|
|
23
23
|
type: string;
|
|
24
24
|
description: string;
|
|
25
25
|
};
|
|
26
|
+
tfStateKey: {
|
|
27
|
+
$ref: string;
|
|
28
|
+
};
|
|
26
29
|
orgPermissions: {
|
|
27
30
|
type: string;
|
|
28
31
|
description: string;
|
|
29
32
|
};
|
|
30
33
|
sync: {
|
|
31
|
-
|
|
32
|
-
properties: {
|
|
33
|
-
enabled: {
|
|
34
|
-
type: string;
|
|
35
|
-
};
|
|
36
|
-
period: {
|
|
37
|
-
type: string;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
additionalProperties: boolean;
|
|
41
|
-
required: string[];
|
|
34
|
+
$ref: string;
|
|
42
35
|
};
|
|
43
36
|
technology: {
|
|
44
37
|
type: string;
|
|
@@ -53,6 +46,9 @@ declare const _default: {
|
|
|
53
46
|
additionalProperties: boolean;
|
|
54
47
|
required: string[];
|
|
55
48
|
};
|
|
49
|
+
defaultBranch: {
|
|
50
|
+
type: string;
|
|
51
|
+
};
|
|
56
52
|
branchStrategy: {
|
|
57
53
|
type: string;
|
|
58
54
|
description: string;
|
|
@@ -158,6 +154,12 @@ declare const _default: {
|
|
|
158
154
|
};
|
|
159
155
|
additionalProperties: boolean;
|
|
160
156
|
};
|
|
157
|
+
additionalRules: {
|
|
158
|
+
type: string;
|
|
159
|
+
items: {
|
|
160
|
+
$ref: string;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
161
163
|
visibility: {
|
|
162
164
|
type: string;
|
|
163
165
|
enum: string[];
|
|
@@ -186,6 +188,11 @@ declare const _default: {
|
|
|
186
188
|
pattern: string;
|
|
187
189
|
};
|
|
188
190
|
};
|
|
191
|
+
overrides: {
|
|
192
|
+
type: string;
|
|
193
|
+
properties: {};
|
|
194
|
+
additionalProperties: boolean;
|
|
195
|
+
};
|
|
189
196
|
};
|
|
190
197
|
additionalProperties: boolean;
|
|
191
198
|
required: string[];
|
|
@@ -18,6 +18,12 @@ export declare const GithubSchemas: ({
|
|
|
18
18
|
name: {
|
|
19
19
|
type: string;
|
|
20
20
|
};
|
|
21
|
+
tfStateKey: {
|
|
22
|
+
$ref: string;
|
|
23
|
+
};
|
|
24
|
+
sync: {
|
|
25
|
+
$ref: string;
|
|
26
|
+
};
|
|
21
27
|
privacy: {
|
|
22
28
|
type: string;
|
|
23
29
|
enum: string[];
|
|
@@ -55,6 +61,12 @@ export declare const GithubSchemas: ({
|
|
|
55
61
|
name: {
|
|
56
62
|
type: string;
|
|
57
63
|
};
|
|
64
|
+
tfStateKey: {
|
|
65
|
+
$ref: string;
|
|
66
|
+
};
|
|
67
|
+
sync: {
|
|
68
|
+
$ref: string;
|
|
69
|
+
};
|
|
58
70
|
role: {
|
|
59
71
|
type: string;
|
|
60
72
|
enum: string[];
|
|
@@ -138,22 +150,15 @@ export declare const GithubSchemas: ({
|
|
|
138
150
|
type: string;
|
|
139
151
|
description: string;
|
|
140
152
|
};
|
|
153
|
+
tfStateKey: {
|
|
154
|
+
$ref: string;
|
|
155
|
+
};
|
|
141
156
|
orgPermissions: {
|
|
142
157
|
type: string;
|
|
143
158
|
description: string;
|
|
144
159
|
};
|
|
145
160
|
sync: {
|
|
146
|
-
|
|
147
|
-
properties: {
|
|
148
|
-
enabled: {
|
|
149
|
-
type: string;
|
|
150
|
-
};
|
|
151
|
-
period: {
|
|
152
|
-
type: string;
|
|
153
|
-
};
|
|
154
|
-
};
|
|
155
|
-
additionalProperties: boolean;
|
|
156
|
-
required: string[];
|
|
161
|
+
$ref: string;
|
|
157
162
|
};
|
|
158
163
|
technology: {
|
|
159
164
|
type: string;
|
|
@@ -168,6 +173,9 @@ export declare const GithubSchemas: ({
|
|
|
168
173
|
additionalProperties: boolean;
|
|
169
174
|
required: string[];
|
|
170
175
|
};
|
|
176
|
+
defaultBranch: {
|
|
177
|
+
type: string;
|
|
178
|
+
};
|
|
171
179
|
branchStrategy: {
|
|
172
180
|
type: string;
|
|
173
181
|
description: string;
|
|
@@ -273,6 +281,12 @@ export declare const GithubSchemas: ({
|
|
|
273
281
|
};
|
|
274
282
|
additionalProperties: boolean;
|
|
275
283
|
};
|
|
284
|
+
additionalRules: {
|
|
285
|
+
type: string;
|
|
286
|
+
items: {
|
|
287
|
+
$ref: string;
|
|
288
|
+
};
|
|
289
|
+
};
|
|
276
290
|
visibility: {
|
|
277
291
|
type: string;
|
|
278
292
|
enum: string[];
|
|
@@ -301,6 +315,11 @@ export declare const GithubSchemas: ({
|
|
|
301
315
|
pattern: string;
|
|
302
316
|
};
|
|
303
317
|
};
|
|
318
|
+
overrides: {
|
|
319
|
+
type: string;
|
|
320
|
+
properties: {};
|
|
321
|
+
additionalProperties: boolean;
|
|
322
|
+
};
|
|
304
323
|
};
|
|
305
324
|
additionalProperties: boolean;
|
|
306
325
|
required: string[];
|
|
@@ -328,6 +347,9 @@ export declare const GithubSchemas: ({
|
|
|
328
347
|
name: {
|
|
329
348
|
type: string;
|
|
330
349
|
};
|
|
350
|
+
tfStateKey: {
|
|
351
|
+
$ref: string;
|
|
352
|
+
};
|
|
331
353
|
orgName: {
|
|
332
354
|
$ref: string;
|
|
333
355
|
};
|