@firestartr/cli 1.59.3-snapshot-5 → 1.59.3-snapshot-6

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 CHANGED
@@ -358342,10 +358342,106 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
358342
358342
  type: 'string',
358343
358343
  description: 'The level of org Permission',
358344
358344
  },
358345
+ technology: {
358346
+ type: 'object',
358347
+ properties: {
358348
+ stack: { type: 'string' },
358349
+ version: { type: 'string' },
358350
+ },
358351
+ additionalProperties: false,
358352
+ required: ['stack', 'version'],
358353
+ },
358354
+ branchStrategy: {
358355
+ type: 'object',
358356
+ description: 'A branch strategy for a claim',
358357
+ properties: {
358358
+ name: {
358359
+ type: 'string',
358360
+ },
358361
+ defaultBranch: {
358362
+ type: 'string',
358363
+ },
358364
+ },
358365
+ additionalProperties: false,
358366
+ required: ['name', 'defaultBranch'],
358367
+ },
358368
+ additionalBranches: {
358369
+ type: 'array',
358370
+ items: {
358371
+ type: 'object',
358372
+ properties: {
358373
+ name: { type: 'string' },
358374
+ orphan: { type: 'boolean' },
358375
+ },
358376
+ additionalProperties: false,
358377
+ required: ['name', 'orphan'],
358378
+ },
358379
+ },
358380
+ actions: {
358381
+ type: 'object',
358382
+ description: 'Actions configuration',
358383
+ properties: {
358384
+ oidc: {
358385
+ type: 'object',
358386
+ properties: {
358387
+ useDefault: { type: 'boolean' },
358388
+ includeClaimKeys: {
358389
+ type: 'array',
358390
+ items: { type: 'string' },
358391
+ },
358392
+ additionalProperties: false,
358393
+ },
358394
+ },
358395
+ },
358396
+ additionalProperties: false,
358397
+ required: ['oidc'],
358398
+ },
358345
358399
  archiveOnDestroy: {
358346
358400
  type: 'boolean',
358347
358401
  description: 'whether this repo should be archived when the claim is deleted',
358348
358402
  },
358403
+ allowMergeCommit: {
358404
+ type: 'boolean',
358405
+ },
358406
+ allowSquashMerge: {
358407
+ type: 'boolean',
358408
+ },
358409
+ allowRebaseMerge: {
358410
+ type: 'boolean',
358411
+ },
358412
+ allowAutoMerge: {
358413
+ type: 'boolean',
358414
+ },
358415
+ deleteBranchOnMerge: {
358416
+ type: 'boolean',
358417
+ },
358418
+ autoInit: {
358419
+ type: 'boolean',
358420
+ },
358421
+ allowUpdateBranch: {
358422
+ type: 'boolean',
358423
+ },
358424
+ hasIssues: {
358425
+ type: 'boolean',
358426
+ },
358427
+ hasWiki: {
358428
+ type: 'boolean',
358429
+ },
358430
+ pages: {
358431
+ type: 'object',
358432
+ properties: {
358433
+ cname: { type: 'string' },
358434
+ source: {
358435
+ type: 'object',
358436
+ properties: {
358437
+ branch: { type: 'string' },
358438
+ path: { type: 'string' },
358439
+ },
358440
+ additionalProperties: false,
358441
+ },
358442
+ },
358443
+ additionalProperties: false,
358444
+ },
358349
358445
  visibility: {
358350
358446
  type: 'string',
358351
358447
  enum: ['private', 'public', 'internal'],
@@ -376900,7 +376996,7 @@ const crs_analyzerSubcommand = {
376900
376996
  };
376901
376997
 
376902
376998
  ;// CONCATENATED MODULE: ./package.json
376903
- const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-5"}');
376999
+ const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-6"}');
376904
377000
  ;// CONCATENATED MODULE: ../../package.json
376905
377001
  const package_namespaceObject_1 = {"i8":"1.59.3"};
376906
377002
  ;// CONCATENATED MODULE: ./src/subcommands/index.ts
@@ -517,10 +517,124 @@ declare const schemas: {
517
517
  type: string;
518
518
  description: string;
519
519
  };
520
+ technology: {
521
+ type: string;
522
+ properties: {
523
+ stack: {
524
+ type: string;
525
+ };
526
+ version: {
527
+ type: string;
528
+ };
529
+ };
530
+ additionalProperties: boolean;
531
+ required: string[];
532
+ };
533
+ branchStrategy: {
534
+ type: string;
535
+ description: string;
536
+ properties: {
537
+ name: {
538
+ type: string;
539
+ };
540
+ defaultBranch: {
541
+ type: string;
542
+ };
543
+ };
544
+ additionalProperties: boolean;
545
+ required: string[];
546
+ };
547
+ additionalBranches: {
548
+ type: string;
549
+ items: {
550
+ type: string;
551
+ properties: {
552
+ name: {
553
+ type: string;
554
+ };
555
+ orphan: {
556
+ type: string;
557
+ };
558
+ };
559
+ additionalProperties: boolean;
560
+ required: string[];
561
+ };
562
+ };
563
+ actions: {
564
+ type: string;
565
+ description: string;
566
+ properties: {
567
+ oidc: {
568
+ type: string;
569
+ properties: {
570
+ useDefault: {
571
+ type: string;
572
+ };
573
+ includeClaimKeys: {
574
+ type: string;
575
+ items: {
576
+ type: string;
577
+ };
578
+ };
579
+ additionalProperties: boolean;
580
+ };
581
+ };
582
+ };
583
+ additionalProperties: boolean;
584
+ required: string[];
585
+ };
520
586
  archiveOnDestroy: {
521
587
  type: string;
522
588
  description: string;
523
589
  };
590
+ allowMergeCommit: {
591
+ type: string;
592
+ };
593
+ allowSquashMerge: {
594
+ type: string;
595
+ };
596
+ allowRebaseMerge: {
597
+ type: string;
598
+ };
599
+ allowAutoMerge: {
600
+ type: string;
601
+ };
602
+ deleteBranchOnMerge: {
603
+ type: string;
604
+ };
605
+ autoInit: {
606
+ type: string;
607
+ };
608
+ allowUpdateBranch: {
609
+ type: string;
610
+ };
611
+ hasIssues: {
612
+ type: string;
613
+ };
614
+ hasWiki: {
615
+ type: string;
616
+ };
617
+ pages: {
618
+ type: string;
619
+ properties: {
620
+ cname: {
621
+ type: string;
622
+ };
623
+ source: {
624
+ type: string;
625
+ properties: {
626
+ branch: {
627
+ type: string;
628
+ };
629
+ path: {
630
+ type: string;
631
+ };
632
+ };
633
+ additionalProperties: boolean;
634
+ };
635
+ };
636
+ additionalProperties: boolean;
637
+ };
524
638
  visibility: {
525
639
  type: string;
526
640
  enum: string[];
@@ -27,10 +27,124 @@ declare const _default: {
27
27
  type: string;
28
28
  description: string;
29
29
  };
30
+ technology: {
31
+ type: string;
32
+ properties: {
33
+ stack: {
34
+ type: string;
35
+ };
36
+ version: {
37
+ type: string;
38
+ };
39
+ };
40
+ additionalProperties: boolean;
41
+ required: string[];
42
+ };
43
+ branchStrategy: {
44
+ type: string;
45
+ description: string;
46
+ properties: {
47
+ name: {
48
+ type: string;
49
+ };
50
+ defaultBranch: {
51
+ type: string;
52
+ };
53
+ };
54
+ additionalProperties: boolean;
55
+ required: string[];
56
+ };
57
+ additionalBranches: {
58
+ type: string;
59
+ items: {
60
+ type: string;
61
+ properties: {
62
+ name: {
63
+ type: string;
64
+ };
65
+ orphan: {
66
+ type: string;
67
+ };
68
+ };
69
+ additionalProperties: boolean;
70
+ required: string[];
71
+ };
72
+ };
73
+ actions: {
74
+ type: string;
75
+ description: string;
76
+ properties: {
77
+ oidc: {
78
+ type: string;
79
+ properties: {
80
+ useDefault: {
81
+ type: string;
82
+ };
83
+ includeClaimKeys: {
84
+ type: string;
85
+ items: {
86
+ type: string;
87
+ };
88
+ };
89
+ additionalProperties: boolean;
90
+ };
91
+ };
92
+ };
93
+ additionalProperties: boolean;
94
+ required: string[];
95
+ };
30
96
  archiveOnDestroy: {
31
97
  type: string;
32
98
  description: string;
33
99
  };
100
+ allowMergeCommit: {
101
+ type: string;
102
+ };
103
+ allowSquashMerge: {
104
+ type: string;
105
+ };
106
+ allowRebaseMerge: {
107
+ type: string;
108
+ };
109
+ allowAutoMerge: {
110
+ type: string;
111
+ };
112
+ deleteBranchOnMerge: {
113
+ type: string;
114
+ };
115
+ autoInit: {
116
+ type: string;
117
+ };
118
+ allowUpdateBranch: {
119
+ type: string;
120
+ };
121
+ hasIssues: {
122
+ type: string;
123
+ };
124
+ hasWiki: {
125
+ type: string;
126
+ };
127
+ pages: {
128
+ type: string;
129
+ properties: {
130
+ cname: {
131
+ type: string;
132
+ };
133
+ source: {
134
+ type: string;
135
+ properties: {
136
+ branch: {
137
+ type: string;
138
+ };
139
+ path: {
140
+ type: string;
141
+ };
142
+ };
143
+ additionalProperties: boolean;
144
+ };
145
+ };
146
+ additionalProperties: boolean;
147
+ };
34
148
  visibility: {
35
149
  type: string;
36
150
  enum: string[];
@@ -132,10 +132,124 @@ export declare const GithubSchemas: ({
132
132
  type: string;
133
133
  description: string;
134
134
  };
135
+ technology: {
136
+ type: string;
137
+ properties: {
138
+ stack: {
139
+ type: string;
140
+ };
141
+ version: {
142
+ type: string;
143
+ };
144
+ };
145
+ additionalProperties: boolean;
146
+ required: string[];
147
+ };
148
+ branchStrategy: {
149
+ type: string;
150
+ description: string;
151
+ properties: {
152
+ name: {
153
+ type: string;
154
+ };
155
+ defaultBranch: {
156
+ type: string;
157
+ };
158
+ };
159
+ additionalProperties: boolean;
160
+ required: string[];
161
+ };
162
+ additionalBranches: {
163
+ type: string;
164
+ items: {
165
+ type: string;
166
+ properties: {
167
+ name: {
168
+ type: string;
169
+ };
170
+ orphan: {
171
+ type: string;
172
+ };
173
+ };
174
+ additionalProperties: boolean;
175
+ required: string[];
176
+ };
177
+ };
178
+ actions: {
179
+ type: string;
180
+ description: string;
181
+ properties: {
182
+ oidc: {
183
+ type: string;
184
+ properties: {
185
+ useDefault: {
186
+ type: string;
187
+ };
188
+ includeClaimKeys: {
189
+ type: string;
190
+ items: {
191
+ type: string;
192
+ };
193
+ };
194
+ additionalProperties: boolean;
195
+ };
196
+ };
197
+ };
198
+ additionalProperties: boolean;
199
+ required: string[];
200
+ };
135
201
  archiveOnDestroy: {
136
202
  type: string;
137
203
  description: string;
138
204
  };
205
+ allowMergeCommit: {
206
+ type: string;
207
+ };
208
+ allowSquashMerge: {
209
+ type: string;
210
+ };
211
+ allowRebaseMerge: {
212
+ type: string;
213
+ };
214
+ allowAutoMerge: {
215
+ type: string;
216
+ };
217
+ deleteBranchOnMerge: {
218
+ type: string;
219
+ };
220
+ autoInit: {
221
+ type: string;
222
+ };
223
+ allowUpdateBranch: {
224
+ type: string;
225
+ };
226
+ hasIssues: {
227
+ type: string;
228
+ };
229
+ hasWiki: {
230
+ type: string;
231
+ };
232
+ pages: {
233
+ type: string;
234
+ properties: {
235
+ cname: {
236
+ type: string;
237
+ };
238
+ source: {
239
+ type: string;
240
+ properties: {
241
+ branch: {
242
+ type: string;
243
+ };
244
+ path: {
245
+ type: string;
246
+ };
247
+ };
248
+ additionalProperties: boolean;
249
+ };
250
+ };
251
+ additionalProperties: boolean;
252
+ };
139
253
  visibility: {
140
254
  type: string;
141
255
  enum: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.59.3-snapshot-5",
3
+ "version": "1.59.3-snapshot-6",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",