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

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