@firestartr/cli 1.59.3-snapshot-10 → 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 +19 -1
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +26 -0
- package/build/packages/cdk8s_renderer/src/claims/github/group.schema.d.ts +13 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +26 -0
- package/build/packages/cdk8s_renderer/src/claims/github/user.schema.d.ts +13 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -358268,6 +358268,15 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358268
358268
|
name: {
|
|
358269
358269
|
type: 'string',
|
|
358270
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
|
+
},
|
|
358271
358280
|
privacy: {
|
|
358272
358281
|
type: 'string',
|
|
358273
358282
|
enum: ['closed', 'secret'],
|
|
@@ -358307,6 +358316,15 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
|
|
|
358307
358316
|
name: {
|
|
358308
358317
|
type: 'string',
|
|
358309
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
|
+
},
|
|
358310
358328
|
role: {
|
|
358311
358329
|
type: 'string',
|
|
358312
358330
|
enum: ['admin', 'member'],
|
|
@@ -377027,7 +377045,7 @@ const crs_analyzerSubcommand = {
|
|
|
377027
377045
|
};
|
|
377028
377046
|
|
|
377029
377047
|
;// CONCATENATED MODULE: ./package.json
|
|
377030
|
-
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-
|
|
377048
|
+
const package_namespaceObject = JSON.parse('{"i8":"1.59.3-snapshot-11"}');
|
|
377031
377049
|
;// CONCATENATED MODULE: ../../package.json
|
|
377032
377050
|
const package_namespaceObject_1 = {"i8":"1.59.3"};
|
|
377033
377051
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -403,6 +403,19 @@ declare const schemas: {
|
|
|
403
403
|
name: {
|
|
404
404
|
type: string;
|
|
405
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
|
+
};
|
|
406
419
|
privacy: {
|
|
407
420
|
type: string;
|
|
408
421
|
enum: string[];
|
|
@@ -440,6 +453,19 @@ declare const schemas: {
|
|
|
440
453
|
name: {
|
|
441
454
|
type: string;
|
|
442
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
|
+
};
|
|
443
469
|
role: {
|
|
444
470
|
type: string;
|
|
445
471
|
enum: string[];
|
|
@@ -18,6 +18,19 @@ declare const _default: {
|
|
|
18
18
|
name: {
|
|
19
19
|
type: string;
|
|
20
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
|
+
};
|
|
21
34
|
privacy: {
|
|
22
35
|
type: string;
|
|
23
36
|
enum: string[];
|
|
@@ -18,6 +18,19 @@ export declare const GithubSchemas: ({
|
|
|
18
18
|
name: {
|
|
19
19
|
type: string;
|
|
20
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
|
+
};
|
|
21
34
|
privacy: {
|
|
22
35
|
type: string;
|
|
23
36
|
enum: string[];
|
|
@@ -55,6 +68,19 @@ export declare const GithubSchemas: ({
|
|
|
55
68
|
name: {
|
|
56
69
|
type: string;
|
|
57
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
|
+
};
|
|
58
84
|
role: {
|
|
59
85
|
type: string;
|
|
60
86
|
enum: string[];
|
|
@@ -18,6 +18,19 @@ declare const _default: {
|
|
|
18
18
|
name: {
|
|
19
19
|
type: string;
|
|
20
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
|
+
};
|
|
21
34
|
role: {
|
|
22
35
|
type: string;
|
|
23
36
|
enum: string[];
|