@firestartr/cli 1.48.0-hotfix-1 → 1.48.0-hotfix-2
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/351.index.js +36 -0
- package/build/540.index.js +80 -0
- package/build/594.index.js +46 -0
- package/build/647.index.js +80 -0
- package/build/857.index.js +79 -0
- package/build/index.js +111579 -83049
- package/build/packages/catalog_common/index.d.ts +8 -0
- package/build/packages/catalog_common/src/io/write.d.ts +2 -2
- package/build/packages/catalog_common/src/logger/index.d.ts +2 -0
- package/build/packages/catalog_common/src/logger/logger.d.ts +9 -0
- package/build/packages/catalog_common/src/logger/utils.d.ts +1 -0
- package/build/packages/catalog_common/src/types/envvars.d.ts +1 -0
- package/build/packages/cdk8s_renderer/src/claims/base/schema.d.ts +1 -0
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/argodeploy.schema.d.ts +8 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/common-meta.schema.d.ts +34 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/component.schema.d.ts +19 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/domain.schema.d.ts +1 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/group.schema.d.ts +10 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/index.d.ts +92 -22
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/orgwebhook.schema.d.ts +1 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/secrets.schema.d.ts +4 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/system.schema.d.ts +4 -2
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/tfworkspace.schema.d.ts +7 -3
- package/build/packages/cdk8s_renderer/src/claims/base/schemas/user.schema.d.ts +1 -2
- package/build/packages/cdk8s_renderer/src/claims/github/component.schema.d.ts +1 -0
- package/build/packages/cdk8s_renderer/src/claims/github/feature.schema.d.ts +2 -0
- package/build/packages/cdk8s_renderer/src/claims/github/index.d.ts +3 -0
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/index.d.ts +0 -1
- package/build/packages/cdk8s_renderer/src/claims/tfworkspaces/terraform.schema.d.ts +0 -1
- package/build/packages/cdk8s_renderer/src/config.d.ts +1 -0
- package/build/packages/cdk8s_renderer/src/defaults/base.d.ts +1 -1
- package/build/packages/cdk8s_renderer/src/initializers/branchStrategies.d.ts +1 -1
- package/build/packages/cdk8s_renderer/src/loader/lazy_loader.d.ts +1 -0
- package/build/packages/cdk8s_renderer/src/loader/loader.d.ts +1 -9
- package/build/packages/cdk8s_renderer/src/renderer/renderer.d.ts +1 -1
- package/build/packages/cdk8s_renderer/src/utils/claimUtils.d.ts +4 -0
- package/build/packages/cdk8s_renderer/src/validations/crSize.d.ts +2 -0
- package/build/packages/cdk8s_renderer/src/validations/references.d.ts +0 -5
- package/build/packages/features_preparer/src/logger.d.ts +9 -0
- package/build/packages/features_renderer/index.d.ts +10 -1
- package/build/packages/features_renderer/src/auxiliar.d.ts +71 -0
- package/build/packages/features_renderer/src/render.d.ts +2 -0
- package/build/packages/github/index.d.ts +5 -0
- package/build/packages/github/src/auth.d.ts +2 -2
- package/build/packages/github/src/check_run.d.ts +83 -0
- package/build/packages/github/src/logger.d.ts +9 -0
- package/build/packages/operator/src/logger.d.ts +9 -0
- package/build/packages/operator/src/metrics/CRStates.d.ts +20 -0
- package/build/packages/operator/src/metricsServer.d.ts +1 -1
- package/build/packages/operator/src/user-feedback-ops/gh-checkrun.d.ts +5 -0
- package/build/packages/operator/src/user-feedback-ops/tf-checkrun.d.ts +5 -0
- package/build/packages/provisioner/src/cdktf.d.ts +3 -1
- package/build/packages/provisioner/src/logger.d.ts +9 -0
- package/build/packages/provisioner/src/resources/resource.d.ts +10 -0
- package/build/packages/provisioner/src/terraform.d.ts +7 -5
- package/build/packages/scaffolder/src/scaffolder.d.ts +1 -1
- package/build/packages/terraform_provisioner/index.d.ts +1 -1
- package/build/packages/terraform_provisioner/src/logger.d.ts +9 -0
- package/build/packages/terraform_provisioner/src/project_tf.d.ts +4 -0
- package/build/packages/terraform_provisioner/src/project_tf_remote.d.ts +4 -0
- package/build/packages/terraform_provisioner/src/utils.d.ts +8 -6
- package/package.json +1 -1
- package/build/packages/cdk8s_renderer/src/validations/wellKnownStructures.d.ts +0 -1
|
@@ -88,5 +88,13 @@ declare const _default: {
|
|
|
88
88
|
allowedOps: string[];
|
|
89
89
|
}[];
|
|
90
90
|
};
|
|
91
|
+
logger: {
|
|
92
|
+
error: (...args: any) => void;
|
|
93
|
+
warn: (...args: any) => void;
|
|
94
|
+
info: (...args: any) => void;
|
|
95
|
+
debug: (...args: any) => void;
|
|
96
|
+
verbose: (...args: any) => void;
|
|
97
|
+
silly: (...args: any) => void;
|
|
98
|
+
};
|
|
91
99
|
};
|
|
92
100
|
export default _default;
|
|
@@ -5,5 +5,5 @@ export declare function renameEntity(entity: any, catalogPath: string, oldname:
|
|
|
5
5
|
export declare function removeEntity(entity: any, catalogPath: string): void;
|
|
6
6
|
export declare function removeFile(path: string): void;
|
|
7
7
|
export declare function moveFile(oldPath: string, newPath: string): void;
|
|
8
|
-
export declare function writeFunctionLog(functionName: string,
|
|
9
|
-
export declare function writeLogFile(fileName: string,
|
|
8
|
+
export declare function writeFunctionLog(functionName: string, logStream: string): void;
|
|
9
|
+
export declare function writeLogFile(fileName: string, logStream: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function fixCircularReferences(o: any): (k: string | symbol | number, v: any) => any;
|
|
@@ -34,6 +34,7 @@ export declare enum envVars {
|
|
|
34
34
|
githubAppInstallationId = "GITHUB_APP_INSTALLATION_ID",
|
|
35
35
|
githubAppInstallationIdPrefapp = "GITHUB_APP_INSTALLATION_ID_PREFAPP",
|
|
36
36
|
githubAppPemFile = "GITHUB_APP_PEM_FILE",
|
|
37
|
+
avoidPAT = "AVOID_PAT",
|
|
37
38
|
githubAppPatPrefapp = "PREFAPP_BOT_PAT",
|
|
38
39
|
firestartrImageKind = "FIRESTARTR_IMAGE_KIND",
|
|
39
40
|
operatorNamespace = "OPERATOR_NAMESPACE",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SCHEMA = "https://json-schema.org/draft/2020-12/schema";
|
|
@@ -6,14 +6,21 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
|
-
additionalProperties?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
+
system: {
|
|
18
|
+
type: string;
|
|
19
|
+
pattern: string;
|
|
20
|
+
};
|
|
21
|
+
project: {
|
|
22
|
+
type: string;
|
|
23
|
+
};
|
|
17
24
|
providers: {
|
|
18
25
|
type: string;
|
|
19
26
|
properties: {
|
|
@@ -24,7 +31,6 @@ declare const _default: {
|
|
|
24
31
|
required: string[];
|
|
25
32
|
};
|
|
26
33
|
};
|
|
27
|
-
additionalProperties: boolean;
|
|
28
34
|
$ref?: undefined;
|
|
29
35
|
})[];
|
|
30
36
|
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
$schema: string;
|
|
3
2
|
$id: string;
|
|
4
3
|
definitions: {
|
|
5
4
|
Envelope: {
|
|
@@ -19,6 +18,12 @@ declare const _default: {
|
|
|
19
18
|
type: {
|
|
20
19
|
type: string;
|
|
21
20
|
};
|
|
21
|
+
lifecycle: {
|
|
22
|
+
type: string;
|
|
23
|
+
};
|
|
24
|
+
version: {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
22
27
|
providers: {
|
|
23
28
|
type: string;
|
|
24
29
|
description: string;
|
|
@@ -26,8 +31,10 @@ declare const _default: {
|
|
|
26
31
|
profile: {
|
|
27
32
|
$ref: string;
|
|
28
33
|
};
|
|
34
|
+
annotations: {
|
|
35
|
+
$ref: string;
|
|
36
|
+
};
|
|
29
37
|
};
|
|
30
|
-
additionalProperties: boolean;
|
|
31
38
|
required: string[];
|
|
32
39
|
};
|
|
33
40
|
Provider: {
|
|
@@ -59,6 +66,31 @@ declare const _default: {
|
|
|
59
66
|
};
|
|
60
67
|
additionalProperties: boolean;
|
|
61
68
|
};
|
|
69
|
+
Reference: {
|
|
70
|
+
$id: string;
|
|
71
|
+
type: string;
|
|
72
|
+
pattern: string;
|
|
73
|
+
};
|
|
74
|
+
SystemReference: {
|
|
75
|
+
$id: string;
|
|
76
|
+
type: string;
|
|
77
|
+
pattern: string;
|
|
78
|
+
};
|
|
79
|
+
ComponentReference: {
|
|
80
|
+
$id: string;
|
|
81
|
+
type: string;
|
|
82
|
+
pattern: string;
|
|
83
|
+
};
|
|
84
|
+
Annotations: {
|
|
85
|
+
$id: string;
|
|
86
|
+
type: string;
|
|
87
|
+
patternProperties: {
|
|
88
|
+
'^[a-zA-Z0-9/.-]+$': {
|
|
89
|
+
type: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
additionalProperties: boolean;
|
|
93
|
+
};
|
|
62
94
|
};
|
|
63
95
|
};
|
|
64
96
|
export default _default;
|
|
@@ -6,11 +6,12 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
|
-
|
|
14
|
+
required?: undefined;
|
|
14
15
|
} | {
|
|
15
16
|
type: string;
|
|
16
17
|
properties: {
|
|
@@ -18,6 +19,22 @@ declare const _default: {
|
|
|
18
19
|
type: string;
|
|
19
20
|
pattern: string;
|
|
20
21
|
};
|
|
22
|
+
owner: {
|
|
23
|
+
type: string;
|
|
24
|
+
pattern: string;
|
|
25
|
+
};
|
|
26
|
+
maintainedBy: {
|
|
27
|
+
type: string;
|
|
28
|
+
items: {
|
|
29
|
+
$ref: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
platformOwner: {
|
|
33
|
+
$ref: string;
|
|
34
|
+
};
|
|
35
|
+
subComponentOf: {
|
|
36
|
+
$ref: string;
|
|
37
|
+
};
|
|
21
38
|
providers: {
|
|
22
39
|
type: string;
|
|
23
40
|
properties: {
|
|
@@ -27,7 +44,7 @@ declare const _default: {
|
|
|
27
44
|
};
|
|
28
45
|
};
|
|
29
46
|
};
|
|
30
|
-
|
|
47
|
+
required: string[];
|
|
31
48
|
$ref?: undefined;
|
|
32
49
|
})[];
|
|
33
50
|
};
|
|
@@ -6,12 +6,12 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
14
|
required?: undefined;
|
|
14
|
-
additionalProperties?: undefined;
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
@@ -23,7 +23,6 @@ declare const _default: {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
required: string[];
|
|
26
|
-
additionalProperties: boolean;
|
|
27
26
|
$ref?: undefined;
|
|
28
27
|
})[];
|
|
29
28
|
};
|
|
@@ -6,14 +6,23 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
|
-
additionalProperties?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
+
children: {
|
|
18
|
+
type: string;
|
|
19
|
+
items: {
|
|
20
|
+
type: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
parent: {
|
|
24
|
+
$ref: string;
|
|
25
|
+
};
|
|
17
26
|
members: {
|
|
18
27
|
type: string;
|
|
19
28
|
items: {
|
|
@@ -29,7 +38,6 @@ declare const _default: {
|
|
|
29
38
|
};
|
|
30
39
|
};
|
|
31
40
|
};
|
|
32
|
-
additionalProperties: boolean;
|
|
33
41
|
$ref?: undefined;
|
|
34
42
|
})[];
|
|
35
43
|
};
|
|
@@ -3,7 +3,6 @@ declare const schemas: {
|
|
|
3
3
|
$schema: string;
|
|
4
4
|
};
|
|
5
5
|
schemas: ({
|
|
6
|
-
$schema: string;
|
|
7
6
|
$id: string;
|
|
8
7
|
definitions: {
|
|
9
8
|
Envelope: {
|
|
@@ -23,6 +22,12 @@ declare const schemas: {
|
|
|
23
22
|
type: {
|
|
24
23
|
type: string;
|
|
25
24
|
};
|
|
25
|
+
lifecycle: {
|
|
26
|
+
type: string;
|
|
27
|
+
};
|
|
28
|
+
version: {
|
|
29
|
+
type: string;
|
|
30
|
+
};
|
|
26
31
|
providers: {
|
|
27
32
|
type: string;
|
|
28
33
|
description: string;
|
|
@@ -30,8 +35,10 @@ declare const schemas: {
|
|
|
30
35
|
profile: {
|
|
31
36
|
$ref: string;
|
|
32
37
|
};
|
|
38
|
+
annotations: {
|
|
39
|
+
$ref: string;
|
|
40
|
+
};
|
|
33
41
|
};
|
|
34
|
-
additionalProperties: boolean;
|
|
35
42
|
required: string[];
|
|
36
43
|
};
|
|
37
44
|
Provider: {
|
|
@@ -63,6 +70,31 @@ declare const schemas: {
|
|
|
63
70
|
};
|
|
64
71
|
additionalProperties: boolean;
|
|
65
72
|
};
|
|
73
|
+
Reference: {
|
|
74
|
+
$id: string;
|
|
75
|
+
type: string;
|
|
76
|
+
pattern: string;
|
|
77
|
+
};
|
|
78
|
+
SystemReference: {
|
|
79
|
+
$id: string;
|
|
80
|
+
type: string;
|
|
81
|
+
pattern: string;
|
|
82
|
+
};
|
|
83
|
+
ComponentReference: {
|
|
84
|
+
$id: string;
|
|
85
|
+
type: string;
|
|
86
|
+
pattern: string;
|
|
87
|
+
};
|
|
88
|
+
Annotations: {
|
|
89
|
+
$id: string;
|
|
90
|
+
type: string;
|
|
91
|
+
patternProperties: {
|
|
92
|
+
'^[a-zA-Z0-9/.-]+$': {
|
|
93
|
+
type: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
additionalProperties: boolean;
|
|
97
|
+
};
|
|
66
98
|
};
|
|
67
99
|
} | {
|
|
68
100
|
$schema: string;
|
|
@@ -72,14 +104,23 @@ declare const schemas: {
|
|
|
72
104
|
$id: string;
|
|
73
105
|
type: string;
|
|
74
106
|
description: string;
|
|
107
|
+
unevaluatedProperties: boolean;
|
|
75
108
|
allOf: ({
|
|
76
109
|
$ref: string;
|
|
77
110
|
type?: undefined;
|
|
78
111
|
properties?: undefined;
|
|
79
|
-
additionalProperties?: undefined;
|
|
80
112
|
} | {
|
|
81
113
|
type: string;
|
|
82
114
|
properties: {
|
|
115
|
+
children: {
|
|
116
|
+
type: string;
|
|
117
|
+
items: {
|
|
118
|
+
type: string;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
parent: {
|
|
122
|
+
$ref: string;
|
|
123
|
+
};
|
|
83
124
|
members: {
|
|
84
125
|
type: string;
|
|
85
126
|
items: {
|
|
@@ -95,7 +136,6 @@ declare const schemas: {
|
|
|
95
136
|
};
|
|
96
137
|
};
|
|
97
138
|
};
|
|
98
|
-
additionalProperties: boolean;
|
|
99
139
|
$ref?: undefined;
|
|
100
140
|
})[];
|
|
101
141
|
};
|
|
@@ -108,11 +148,11 @@ declare const schemas: {
|
|
|
108
148
|
$id: string;
|
|
109
149
|
type: string;
|
|
110
150
|
description: string;
|
|
151
|
+
unevaluatedProperties: boolean;
|
|
111
152
|
allOf: ({
|
|
112
153
|
$ref: string;
|
|
113
154
|
type?: undefined;
|
|
114
155
|
properties?: undefined;
|
|
115
|
-
additionalProperties?: undefined;
|
|
116
156
|
} | {
|
|
117
157
|
type: string;
|
|
118
158
|
properties: {
|
|
@@ -125,7 +165,6 @@ declare const schemas: {
|
|
|
125
165
|
};
|
|
126
166
|
};
|
|
127
167
|
};
|
|
128
|
-
additionalProperties: boolean;
|
|
129
168
|
$ref?: undefined;
|
|
130
169
|
})[];
|
|
131
170
|
};
|
|
@@ -138,11 +177,12 @@ declare const schemas: {
|
|
|
138
177
|
$id: string;
|
|
139
178
|
type: string;
|
|
140
179
|
description: string;
|
|
180
|
+
unevaluatedProperties: boolean;
|
|
141
181
|
allOf: ({
|
|
142
182
|
$ref: string;
|
|
143
183
|
type?: undefined;
|
|
144
184
|
properties?: undefined;
|
|
145
|
-
|
|
185
|
+
required?: undefined;
|
|
146
186
|
} | {
|
|
147
187
|
type: string;
|
|
148
188
|
properties: {
|
|
@@ -150,6 +190,22 @@ declare const schemas: {
|
|
|
150
190
|
type: string;
|
|
151
191
|
pattern: string;
|
|
152
192
|
};
|
|
193
|
+
owner: {
|
|
194
|
+
type: string;
|
|
195
|
+
pattern: string;
|
|
196
|
+
};
|
|
197
|
+
maintainedBy: {
|
|
198
|
+
type: string;
|
|
199
|
+
items: {
|
|
200
|
+
$ref: string;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
platformOwner: {
|
|
204
|
+
$ref: string;
|
|
205
|
+
};
|
|
206
|
+
subComponentOf: {
|
|
207
|
+
$ref: string;
|
|
208
|
+
};
|
|
153
209
|
providers: {
|
|
154
210
|
type: string;
|
|
155
211
|
properties: {
|
|
@@ -159,7 +215,7 @@ declare const schemas: {
|
|
|
159
215
|
};
|
|
160
216
|
};
|
|
161
217
|
};
|
|
162
|
-
|
|
218
|
+
required: string[];
|
|
163
219
|
$ref?: undefined;
|
|
164
220
|
})[];
|
|
165
221
|
};
|
|
@@ -172,12 +228,12 @@ declare const schemas: {
|
|
|
172
228
|
$id: string;
|
|
173
229
|
type: string;
|
|
174
230
|
description: string;
|
|
231
|
+
unevaluatedProperties: boolean;
|
|
175
232
|
allOf: ({
|
|
176
233
|
$ref: string;
|
|
177
234
|
type?: undefined;
|
|
178
235
|
properties?: undefined;
|
|
179
236
|
required?: undefined;
|
|
180
|
-
additionalProperties?: undefined;
|
|
181
237
|
} | {
|
|
182
238
|
type: string;
|
|
183
239
|
properties: {
|
|
@@ -188,9 +244,11 @@ declare const schemas: {
|
|
|
188
244
|
type: string;
|
|
189
245
|
pattern: string;
|
|
190
246
|
};
|
|
247
|
+
owner: {
|
|
248
|
+
$ref: string;
|
|
249
|
+
};
|
|
191
250
|
};
|
|
192
251
|
required: string[];
|
|
193
|
-
additionalProperties: boolean;
|
|
194
252
|
$ref?: undefined;
|
|
195
253
|
})[];
|
|
196
254
|
};
|
|
@@ -203,12 +261,12 @@ declare const schemas: {
|
|
|
203
261
|
$id: string;
|
|
204
262
|
type: string;
|
|
205
263
|
description: string;
|
|
264
|
+
unevaluatedProperties: boolean;
|
|
206
265
|
allOf: ({
|
|
207
266
|
$ref: string;
|
|
208
267
|
type?: undefined;
|
|
209
268
|
properties?: undefined;
|
|
210
269
|
required?: undefined;
|
|
211
|
-
additionalProperties?: undefined;
|
|
212
270
|
} | {
|
|
213
271
|
type: string;
|
|
214
272
|
properties: {
|
|
@@ -220,24 +278,23 @@ declare const schemas: {
|
|
|
220
278
|
};
|
|
221
279
|
};
|
|
222
280
|
required: string[];
|
|
223
|
-
additionalProperties: boolean;
|
|
224
281
|
$ref?: undefined;
|
|
225
282
|
})[];
|
|
226
283
|
};
|
|
227
284
|
};
|
|
228
285
|
} | {
|
|
229
|
-
$schema: string;
|
|
230
286
|
$id: string;
|
|
231
287
|
definitions: {
|
|
232
288
|
TFWorkspaceClaim: {
|
|
233
289
|
$id: string;
|
|
234
290
|
type: string;
|
|
235
291
|
description: string;
|
|
292
|
+
unevaluatedProperties: boolean;
|
|
236
293
|
allOf: ({
|
|
237
294
|
$ref: string;
|
|
238
295
|
type?: undefined;
|
|
239
296
|
properties?: undefined;
|
|
240
|
-
|
|
297
|
+
required?: undefined;
|
|
241
298
|
} | {
|
|
242
299
|
type: string;
|
|
243
300
|
properties: {
|
|
@@ -248,6 +305,10 @@ declare const schemas: {
|
|
|
248
305
|
type: string;
|
|
249
306
|
pattern: string;
|
|
250
307
|
};
|
|
308
|
+
owner: {
|
|
309
|
+
type: string;
|
|
310
|
+
pattern: string;
|
|
311
|
+
};
|
|
251
312
|
providers: {
|
|
252
313
|
type: string;
|
|
253
314
|
properties: {
|
|
@@ -258,7 +319,7 @@ declare const schemas: {
|
|
|
258
319
|
required: string[];
|
|
259
320
|
};
|
|
260
321
|
};
|
|
261
|
-
|
|
322
|
+
required: string[];
|
|
262
323
|
$ref?: undefined;
|
|
263
324
|
})[];
|
|
264
325
|
};
|
|
@@ -271,14 +332,21 @@ declare const schemas: {
|
|
|
271
332
|
$id: string;
|
|
272
333
|
type: string;
|
|
273
334
|
description: string;
|
|
335
|
+
unevaluatedProperties: boolean;
|
|
274
336
|
allOf: ({
|
|
275
337
|
$ref: string;
|
|
276
338
|
type?: undefined;
|
|
277
339
|
properties?: undefined;
|
|
278
|
-
additionalProperties?: undefined;
|
|
279
340
|
} | {
|
|
280
341
|
type: string;
|
|
281
342
|
properties: {
|
|
343
|
+
system: {
|
|
344
|
+
type: string;
|
|
345
|
+
pattern: string;
|
|
346
|
+
};
|
|
347
|
+
project: {
|
|
348
|
+
type: string;
|
|
349
|
+
};
|
|
282
350
|
providers: {
|
|
283
351
|
type: string;
|
|
284
352
|
properties: {
|
|
@@ -289,7 +357,6 @@ declare const schemas: {
|
|
|
289
357
|
required: string[];
|
|
290
358
|
};
|
|
291
359
|
};
|
|
292
|
-
additionalProperties: boolean;
|
|
293
360
|
$ref?: undefined;
|
|
294
361
|
})[];
|
|
295
362
|
};
|
|
@@ -362,6 +429,7 @@ declare const schemas: {
|
|
|
362
429
|
GithubComponentFeatureClaim: {
|
|
363
430
|
$id: string;
|
|
364
431
|
description: string;
|
|
432
|
+
type: string;
|
|
365
433
|
properties: {
|
|
366
434
|
name: {
|
|
367
435
|
type: string;
|
|
@@ -389,6 +457,7 @@ declare const schemas: {
|
|
|
389
457
|
};
|
|
390
458
|
required: string[];
|
|
391
459
|
oneOf: {
|
|
460
|
+
type: string;
|
|
392
461
|
required: string[];
|
|
393
462
|
not: {
|
|
394
463
|
required: string[];
|
|
@@ -405,6 +474,7 @@ declare const schemas: {
|
|
|
405
474
|
$id: string;
|
|
406
475
|
type: string;
|
|
407
476
|
description: string;
|
|
477
|
+
unevaluatedProperties: boolean;
|
|
408
478
|
allOf: ({
|
|
409
479
|
$ref: string;
|
|
410
480
|
type?: undefined;
|
|
@@ -486,7 +556,6 @@ declare const schemas: {
|
|
|
486
556
|
};
|
|
487
557
|
};
|
|
488
558
|
})[] | {
|
|
489
|
-
$schema: string;
|
|
490
559
|
$id: string;
|
|
491
560
|
definitions: {
|
|
492
561
|
TerraformProvider: {
|
|
@@ -783,14 +852,17 @@ declare const schemas: {
|
|
|
783
852
|
$id: string;
|
|
784
853
|
type: string;
|
|
785
854
|
description: string;
|
|
855
|
+
unevaluatedProperties: boolean;
|
|
786
856
|
allOf: ({
|
|
787
857
|
$ref: string;
|
|
788
858
|
type?: undefined;
|
|
789
859
|
properties?: undefined;
|
|
790
|
-
additionalProperties?: undefined;
|
|
791
860
|
} | {
|
|
792
861
|
type: string;
|
|
793
862
|
properties: {
|
|
863
|
+
system: {
|
|
864
|
+
$ref: string;
|
|
865
|
+
};
|
|
794
866
|
providers: {
|
|
795
867
|
type: string;
|
|
796
868
|
properties: {
|
|
@@ -801,7 +873,6 @@ declare const schemas: {
|
|
|
801
873
|
required: string[];
|
|
802
874
|
};
|
|
803
875
|
};
|
|
804
|
-
additionalProperties: boolean;
|
|
805
876
|
$ref?: undefined;
|
|
806
877
|
})[];
|
|
807
878
|
};
|
|
@@ -814,11 +885,11 @@ declare const schemas: {
|
|
|
814
885
|
$id: string;
|
|
815
886
|
type: string;
|
|
816
887
|
description: string;
|
|
888
|
+
unevaluatedProperties: boolean;
|
|
817
889
|
allOf: ({
|
|
818
890
|
$ref: string;
|
|
819
891
|
type?: undefined;
|
|
820
892
|
properties?: undefined;
|
|
821
|
-
additionalProperties?: undefined;
|
|
822
893
|
} | {
|
|
823
894
|
type: string;
|
|
824
895
|
properties: {
|
|
@@ -831,7 +902,6 @@ declare const schemas: {
|
|
|
831
902
|
};
|
|
832
903
|
};
|
|
833
904
|
};
|
|
834
|
-
additionalProperties: boolean;
|
|
835
905
|
$ref?: undefined;
|
|
836
906
|
})[];
|
|
837
907
|
};
|
|
@@ -6,11 +6,11 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
|
-
additionalProperties?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
@@ -23,7 +23,6 @@ declare const _default: {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
additionalProperties: boolean;
|
|
27
26
|
$ref?: undefined;
|
|
28
27
|
})[];
|
|
29
28
|
};
|
|
@@ -6,14 +6,17 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
|
-
additionalProperties?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
type: string;
|
|
16
16
|
properties: {
|
|
17
|
+
system: {
|
|
18
|
+
$ref: string;
|
|
19
|
+
};
|
|
17
20
|
providers: {
|
|
18
21
|
type: string;
|
|
19
22
|
properties: {
|
|
@@ -24,7 +27,6 @@ declare const _default: {
|
|
|
24
27
|
required: string[];
|
|
25
28
|
};
|
|
26
29
|
};
|
|
27
|
-
additionalProperties: boolean;
|
|
28
30
|
$ref?: undefined;
|
|
29
31
|
})[];
|
|
30
32
|
};
|
|
@@ -6,12 +6,12 @@ declare const _default: {
|
|
|
6
6
|
$id: string;
|
|
7
7
|
type: string;
|
|
8
8
|
description: string;
|
|
9
|
+
unevaluatedProperties: boolean;
|
|
9
10
|
allOf: ({
|
|
10
11
|
$ref: string;
|
|
11
12
|
type?: undefined;
|
|
12
13
|
properties?: undefined;
|
|
13
14
|
required?: undefined;
|
|
14
|
-
additionalProperties?: undefined;
|
|
15
15
|
} | {
|
|
16
16
|
type: string;
|
|
17
17
|
properties: {
|
|
@@ -22,9 +22,11 @@ declare const _default: {
|
|
|
22
22
|
type: string;
|
|
23
23
|
pattern: string;
|
|
24
24
|
};
|
|
25
|
+
owner: {
|
|
26
|
+
$ref: string;
|
|
27
|
+
};
|
|
25
28
|
};
|
|
26
29
|
required: string[];
|
|
27
|
-
additionalProperties: boolean;
|
|
28
30
|
$ref?: undefined;
|
|
29
31
|
})[];
|
|
30
32
|
};
|