@cat-factory/contracts 0.60.0 → 0.62.0
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/dist/agent-config.d.ts +3 -3
- package/dist/agent-config.d.ts.map +1 -1
- package/dist/agent-config.js +6 -6
- package/dist/agent-config.js.map +1 -1
- package/dist/entities.d.ts +75 -24
- package/dist/entities.d.ts.map +1 -1
- package/dist/entities.js +5 -25
- package/dist/entities.js.map +1 -1
- package/dist/environments.d.ts +495 -4
- package/dist/environments.d.ts.map +1 -1
- package/dist/environments.js +158 -2
- package/dist/environments.js.map +1 -1
- package/dist/requests.d.ts +421 -23
- package/dist/requests.d.ts.map +1 -1
- package/dist/requests.js +0 -9
- package/dist/requests.js.map +1 -1
- package/dist/routes/board.d.ts +1131 -53
- package/dist/routes/board.d.ts.map +1 -1
- package/dist/routes/environments.d.ts +50 -0
- package/dist/routes/environments.d.ts.map +1 -1
- package/dist/routes/execution.d.ts +142 -6
- package/dist/routes/execution.d.ts.map +1 -1
- package/dist/routes/tasks.d.ts +213 -9
- package/dist/routes/tasks.d.ts.map +1 -1
- package/dist/routes/workspace-settings.d.ts +0 -3
- package/dist/routes/workspace-settings.d.ts.map +1 -1
- package/dist/routes/workspaces.d.ts +142 -8
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/snapshot.d.ts +71 -4
- package/dist/snapshot.d.ts.map +1 -1
- package/dist/workspace-settings.d.ts +0 -9
- package/dist/workspace-settings.d.ts.map +1 -1
- package/dist/workspace-settings.js +0 -9
- package/dist/workspace-settings.js.map +1 -1
- package/package.json +1 -1
package/dist/requests.d.ts
CHANGED
|
@@ -129,24 +129,92 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
129
129
|
readonly modelPresetId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
130
130
|
readonly pipelineId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 120, undefined>]>;
|
|
131
131
|
readonly agentConfig: v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
132
|
-
readonly testComposePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>;
|
|
133
|
-
readonly noInfraDependencies: v.BooleanSchema<undefined>;
|
|
134
|
-
readonly defaultTestEnvironment: v.PicklistSchema<["local", "ephemeral"], undefined>;
|
|
135
132
|
readonly provisioning: v.ObjectSchema<{
|
|
136
133
|
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
137
134
|
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
138
135
|
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
139
136
|
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
137
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
140
138
|
}, undefined>, v.ObjectSchema<{
|
|
141
139
|
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
142
140
|
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
143
141
|
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
144
142
|
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
143
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
145
144
|
}, undefined>], undefined>, undefined>;
|
|
146
145
|
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
147
146
|
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
148
147
|
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
149
148
|
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
149
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
150
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
151
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
152
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
153
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
154
|
+
}, undefined>, v.CheckAction<{
|
|
155
|
+
name: string;
|
|
156
|
+
newNameTemplate?: string | undefined;
|
|
157
|
+
newTagTemplate?: string | undefined;
|
|
158
|
+
digestTemplate?: string | undefined;
|
|
159
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
160
|
+
name: string;
|
|
161
|
+
newNameTemplate?: string | undefined;
|
|
162
|
+
newTagTemplate?: string | undefined;
|
|
163
|
+
digestTemplate?: string | undefined;
|
|
164
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
165
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
166
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
167
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
168
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
169
|
+
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
170
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
171
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
172
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
173
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
174
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
175
|
+
}, undefined>, undefined>, undefined>;
|
|
176
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
177
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
178
|
+
readonly secretRef: v.ObjectSchema<{
|
|
179
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
180
|
+
}, undefined>;
|
|
181
|
+
}, undefined>, undefined>, undefined>;
|
|
182
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
183
|
+
}, undefined>, undefined>, undefined>;
|
|
184
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
185
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
186
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
187
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
188
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
189
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
190
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
191
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
192
|
+
}, undefined>, undefined>;
|
|
193
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
194
|
+
}, undefined>, v.CheckAction<{
|
|
195
|
+
key: string;
|
|
196
|
+
secretRef?: {
|
|
197
|
+
key: string;
|
|
198
|
+
} | undefined;
|
|
199
|
+
valueTemplate?: string | undefined;
|
|
200
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
201
|
+
}, undefined>, v.ObjectSchema<{
|
|
202
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
203
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
204
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
205
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
206
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
207
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
208
|
+
}, undefined>, undefined>;
|
|
209
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
210
|
+
}, undefined>, v.CheckAction<{
|
|
211
|
+
key: string;
|
|
212
|
+
secretRef?: {
|
|
213
|
+
key: string;
|
|
214
|
+
} | undefined;
|
|
215
|
+
valueTemplate?: string | undefined;
|
|
216
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
217
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
150
218
|
}, undefined>;
|
|
151
219
|
readonly cloudProvider: v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>;
|
|
152
220
|
readonly instanceSize: v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>;
|
|
@@ -176,24 +244,92 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
176
244
|
readonly modelPresetId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
177
245
|
readonly pipelineId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
178
246
|
readonly agentConfig: v.OptionalSchema<v.RecordSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>, undefined>;
|
|
179
|
-
readonly testComposePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 400, undefined>]>, undefined>;
|
|
180
|
-
readonly noInfraDependencies: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
181
|
-
readonly defaultTestEnvironment: v.OptionalSchema<v.PicklistSchema<["local", "ephemeral"], undefined>, undefined>;
|
|
182
247
|
readonly provisioning: v.OptionalSchema<v.ObjectSchema<{
|
|
183
248
|
readonly type: v.PicklistSchema<["kubernetes", "docker-compose", "custom", "infraless"], undefined>;
|
|
184
249
|
readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
185
250
|
readonly type: v.LiteralSchema<"colocated", undefined>;
|
|
186
251
|
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
252
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
187
253
|
}, undefined>, v.ObjectSchema<{
|
|
188
254
|
readonly type: v.LiteralSchema<"separate", undefined>;
|
|
189
255
|
readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
|
|
190
256
|
readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
191
257
|
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
258
|
+
readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
|
|
192
259
|
}, undefined>], undefined>, undefined>;
|
|
193
260
|
readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
194
261
|
readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
195
262
|
readonly manifestId: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>, undefined>;
|
|
196
263
|
readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
264
|
+
readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
265
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
266
|
+
readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
267
|
+
readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
268
|
+
readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
269
|
+
}, undefined>, v.CheckAction<{
|
|
270
|
+
name: string;
|
|
271
|
+
newNameTemplate?: string | undefined;
|
|
272
|
+
newTagTemplate?: string | undefined;
|
|
273
|
+
digestTemplate?: string | undefined;
|
|
274
|
+
}, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
|
|
275
|
+
name: string;
|
|
276
|
+
newNameTemplate?: string | undefined;
|
|
277
|
+
newTagTemplate?: string | undefined;
|
|
278
|
+
digestTemplate?: string | undefined;
|
|
279
|
+
}, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
|
|
280
|
+
readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
281
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
282
|
+
readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
283
|
+
readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
284
|
+
readonly version: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "version must be a pinned semver (e.g. 1.2.3), not a floating tag like latest or ^1.0.">]>;
|
|
285
|
+
readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
|
|
286
|
+
readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
|
|
287
|
+
readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
288
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
289
|
+
readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
|
|
290
|
+
}, undefined>, undefined>, undefined>;
|
|
291
|
+
readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
292
|
+
readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
293
|
+
readonly secretRef: v.ObjectSchema<{
|
|
294
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
295
|
+
}, undefined>;
|
|
296
|
+
}, undefined>, undefined>, undefined>;
|
|
297
|
+
readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
|
|
298
|
+
}, undefined>, undefined>, undefined>;
|
|
299
|
+
readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
|
|
300
|
+
readonly mode: v.LiteralSchema<"secret", undefined>;
|
|
301
|
+
readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
|
|
302
|
+
readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
|
|
303
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
304
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
305
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
306
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
307
|
+
}, undefined>, undefined>;
|
|
308
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
309
|
+
}, undefined>, v.CheckAction<{
|
|
310
|
+
key: string;
|
|
311
|
+
secretRef?: {
|
|
312
|
+
key: string;
|
|
313
|
+
} | undefined;
|
|
314
|
+
valueTemplate?: string | undefined;
|
|
315
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
316
|
+
}, undefined>, v.ObjectSchema<{
|
|
317
|
+
readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
|
|
318
|
+
readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
319
|
+
readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
|
|
320
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
|
|
321
|
+
readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
|
|
322
|
+
readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
|
|
323
|
+
}, undefined>, undefined>;
|
|
324
|
+
readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
|
|
325
|
+
}, undefined>, v.CheckAction<{
|
|
326
|
+
key: string;
|
|
327
|
+
secretRef?: {
|
|
328
|
+
key: string;
|
|
329
|
+
} | undefined;
|
|
330
|
+
valueTemplate?: string | undefined;
|
|
331
|
+
}, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
|
|
332
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
197
333
|
}, undefined>, undefined>;
|
|
198
334
|
readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
|
|
199
335
|
readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
|
|
@@ -225,24 +361,72 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
225
361
|
agentConfig?: {
|
|
226
362
|
[x: string]: string;
|
|
227
363
|
} | undefined;
|
|
228
|
-
testComposePath?: string | undefined;
|
|
229
|
-
noInfraDependencies?: boolean | undefined;
|
|
230
|
-
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
231
364
|
provisioning?: {
|
|
232
365
|
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
233
366
|
manifestSource?: {
|
|
234
367
|
type: "colocated";
|
|
235
368
|
path: string;
|
|
369
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
236
370
|
} | {
|
|
237
371
|
type: "separate";
|
|
238
372
|
repo: string;
|
|
239
373
|
ref?: string | undefined;
|
|
240
374
|
path: string;
|
|
375
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
241
376
|
} | undefined;
|
|
242
377
|
composePath?: string | undefined;
|
|
243
378
|
localDevOnly?: boolean | undefined;
|
|
244
379
|
manifestId?: string | undefined;
|
|
245
380
|
manifestPath?: string | undefined;
|
|
381
|
+
images?: {
|
|
382
|
+
name: string;
|
|
383
|
+
newNameTemplate?: string | undefined;
|
|
384
|
+
newTagTemplate?: string | undefined;
|
|
385
|
+
digestTemplate?: string | undefined;
|
|
386
|
+
}[] | undefined;
|
|
387
|
+
helmReleases?: {
|
|
388
|
+
name: string;
|
|
389
|
+
chart: string;
|
|
390
|
+
repo?: string | undefined;
|
|
391
|
+
version: string;
|
|
392
|
+
namespaceTemplate?: string | undefined;
|
|
393
|
+
values?: {
|
|
394
|
+
[x: string]: unknown;
|
|
395
|
+
} | undefined;
|
|
396
|
+
set?: {
|
|
397
|
+
path: string;
|
|
398
|
+
valueTemplate: string;
|
|
399
|
+
}[] | undefined;
|
|
400
|
+
valuesSecretRefs?: {
|
|
401
|
+
path: string;
|
|
402
|
+
secretRef: {
|
|
403
|
+
key: string;
|
|
404
|
+
};
|
|
405
|
+
}[] | undefined;
|
|
406
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
407
|
+
}[] | undefined;
|
|
408
|
+
secretInjections?: ({
|
|
409
|
+
mode: "secret";
|
|
410
|
+
secretName: string;
|
|
411
|
+
secretType?: string | undefined;
|
|
412
|
+
entries: {
|
|
413
|
+
key: string;
|
|
414
|
+
secretRef?: {
|
|
415
|
+
key: string;
|
|
416
|
+
} | undefined;
|
|
417
|
+
valueTemplate?: string | undefined;
|
|
418
|
+
}[];
|
|
419
|
+
} | {
|
|
420
|
+
mode: "generatorEnvFile";
|
|
421
|
+
envFilePath: string;
|
|
422
|
+
entries: {
|
|
423
|
+
key: string;
|
|
424
|
+
secretRef?: {
|
|
425
|
+
key: string;
|
|
426
|
+
} | undefined;
|
|
427
|
+
valueTemplate?: string | undefined;
|
|
428
|
+
}[];
|
|
429
|
+
})[] | undefined;
|
|
246
430
|
} | undefined;
|
|
247
431
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
248
432
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -273,24 +457,72 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
273
457
|
agentConfig?: {
|
|
274
458
|
[x: string]: string;
|
|
275
459
|
} | undefined;
|
|
276
|
-
testComposePath?: string | undefined;
|
|
277
|
-
noInfraDependencies?: boolean | undefined;
|
|
278
|
-
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
279
460
|
provisioning?: {
|
|
280
461
|
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
281
462
|
manifestSource?: {
|
|
282
463
|
type: "colocated";
|
|
283
464
|
path: string;
|
|
465
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
284
466
|
} | {
|
|
285
467
|
type: "separate";
|
|
286
468
|
repo: string;
|
|
287
469
|
ref?: string | undefined;
|
|
288
470
|
path: string;
|
|
471
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
289
472
|
} | undefined;
|
|
290
473
|
composePath?: string | undefined;
|
|
291
474
|
localDevOnly?: boolean | undefined;
|
|
292
475
|
manifestId?: string | undefined;
|
|
293
476
|
manifestPath?: string | undefined;
|
|
477
|
+
images?: {
|
|
478
|
+
name: string;
|
|
479
|
+
newNameTemplate?: string | undefined;
|
|
480
|
+
newTagTemplate?: string | undefined;
|
|
481
|
+
digestTemplate?: string | undefined;
|
|
482
|
+
}[] | undefined;
|
|
483
|
+
helmReleases?: {
|
|
484
|
+
name: string;
|
|
485
|
+
chart: string;
|
|
486
|
+
repo?: string | undefined;
|
|
487
|
+
version: string;
|
|
488
|
+
namespaceTemplate?: string | undefined;
|
|
489
|
+
values?: {
|
|
490
|
+
[x: string]: unknown;
|
|
491
|
+
} | undefined;
|
|
492
|
+
set?: {
|
|
493
|
+
path: string;
|
|
494
|
+
valueTemplate: string;
|
|
495
|
+
}[] | undefined;
|
|
496
|
+
valuesSecretRefs?: {
|
|
497
|
+
path: string;
|
|
498
|
+
secretRef: {
|
|
499
|
+
key: string;
|
|
500
|
+
};
|
|
501
|
+
}[] | undefined;
|
|
502
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
503
|
+
}[] | undefined;
|
|
504
|
+
secretInjections?: ({
|
|
505
|
+
mode: "secret";
|
|
506
|
+
secretName: string;
|
|
507
|
+
secretType?: string | undefined;
|
|
508
|
+
entries: {
|
|
509
|
+
key: string;
|
|
510
|
+
secretRef?: {
|
|
511
|
+
key: string;
|
|
512
|
+
} | undefined;
|
|
513
|
+
valueTemplate?: string | undefined;
|
|
514
|
+
}[];
|
|
515
|
+
} | {
|
|
516
|
+
mode: "generatorEnvFile";
|
|
517
|
+
envFilePath: string;
|
|
518
|
+
entries: {
|
|
519
|
+
key: string;
|
|
520
|
+
secretRef?: {
|
|
521
|
+
key: string;
|
|
522
|
+
} | undefined;
|
|
523
|
+
valueTemplate?: string | undefined;
|
|
524
|
+
}[];
|
|
525
|
+
})[] | undefined;
|
|
294
526
|
} | undefined;
|
|
295
527
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
296
528
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -322,24 +554,72 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
322
554
|
agentConfig?: {
|
|
323
555
|
[x: string]: string;
|
|
324
556
|
} | undefined;
|
|
325
|
-
testComposePath?: string | undefined;
|
|
326
|
-
noInfraDependencies?: boolean | undefined;
|
|
327
|
-
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
328
557
|
provisioning?: {
|
|
329
558
|
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
330
559
|
manifestSource?: {
|
|
331
560
|
type: "colocated";
|
|
332
561
|
path: string;
|
|
562
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
333
563
|
} | {
|
|
334
564
|
type: "separate";
|
|
335
565
|
repo: string;
|
|
336
566
|
ref?: string | undefined;
|
|
337
567
|
path: string;
|
|
568
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
338
569
|
} | undefined;
|
|
339
570
|
composePath?: string | undefined;
|
|
340
571
|
localDevOnly?: boolean | undefined;
|
|
341
572
|
manifestId?: string | undefined;
|
|
342
573
|
manifestPath?: string | undefined;
|
|
574
|
+
images?: {
|
|
575
|
+
name: string;
|
|
576
|
+
newNameTemplate?: string | undefined;
|
|
577
|
+
newTagTemplate?: string | undefined;
|
|
578
|
+
digestTemplate?: string | undefined;
|
|
579
|
+
}[] | undefined;
|
|
580
|
+
helmReleases?: {
|
|
581
|
+
name: string;
|
|
582
|
+
chart: string;
|
|
583
|
+
repo?: string | undefined;
|
|
584
|
+
version: string;
|
|
585
|
+
namespaceTemplate?: string | undefined;
|
|
586
|
+
values?: {
|
|
587
|
+
[x: string]: unknown;
|
|
588
|
+
} | undefined;
|
|
589
|
+
set?: {
|
|
590
|
+
path: string;
|
|
591
|
+
valueTemplate: string;
|
|
592
|
+
}[] | undefined;
|
|
593
|
+
valuesSecretRefs?: {
|
|
594
|
+
path: string;
|
|
595
|
+
secretRef: {
|
|
596
|
+
key: string;
|
|
597
|
+
};
|
|
598
|
+
}[] | undefined;
|
|
599
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
600
|
+
}[] | undefined;
|
|
601
|
+
secretInjections?: ({
|
|
602
|
+
mode: "secret";
|
|
603
|
+
secretName: string;
|
|
604
|
+
secretType?: string | undefined;
|
|
605
|
+
entries: {
|
|
606
|
+
key: string;
|
|
607
|
+
secretRef?: {
|
|
608
|
+
key: string;
|
|
609
|
+
} | undefined;
|
|
610
|
+
valueTemplate?: string | undefined;
|
|
611
|
+
}[];
|
|
612
|
+
} | {
|
|
613
|
+
mode: "generatorEnvFile";
|
|
614
|
+
envFilePath: string;
|
|
615
|
+
entries: {
|
|
616
|
+
key: string;
|
|
617
|
+
secretRef?: {
|
|
618
|
+
key: string;
|
|
619
|
+
} | undefined;
|
|
620
|
+
valueTemplate?: string | undefined;
|
|
621
|
+
}[];
|
|
622
|
+
})[] | undefined;
|
|
343
623
|
} | undefined;
|
|
344
624
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
345
625
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -349,7 +629,18 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
349
629
|
responsibleProductUserId?: string | null | undefined;
|
|
350
630
|
epicId?: string | undefined;
|
|
351
631
|
autoStartDependents?: boolean | undefined;
|
|
352
|
-
}, v.ArrayIssue | v.BooleanIssue | v.
|
|
632
|
+
}, v.ArrayIssue | v.BooleanIssue | v.CheckIssue<{
|
|
633
|
+
name: string;
|
|
634
|
+
newNameTemplate?: string | undefined;
|
|
635
|
+
newTagTemplate?: string | undefined;
|
|
636
|
+
digestTemplate?: string | undefined;
|
|
637
|
+
}> | v.CheckIssue<{
|
|
638
|
+
key: string;
|
|
639
|
+
secretRef?: {
|
|
640
|
+
key: string;
|
|
641
|
+
} | undefined;
|
|
642
|
+
valueTemplate?: string | undefined;
|
|
643
|
+
}> | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 256> | v.MaxLengthIssue<string, 400> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.RecordIssue | v.RegexIssue<string> | v.StringIssue | v.VariantIssue>;
|
|
353
644
|
readonly "~types"?: {
|
|
354
645
|
readonly input: {
|
|
355
646
|
title?: string | undefined;
|
|
@@ -372,24 +663,72 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
372
663
|
agentConfig?: {
|
|
373
664
|
[x: string]: string;
|
|
374
665
|
} | undefined;
|
|
375
|
-
testComposePath?: string | undefined;
|
|
376
|
-
noInfraDependencies?: boolean | undefined;
|
|
377
|
-
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
378
666
|
provisioning?: {
|
|
379
667
|
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
380
668
|
manifestSource?: {
|
|
381
669
|
type: "colocated";
|
|
382
670
|
path: string;
|
|
671
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
383
672
|
} | {
|
|
384
673
|
type: "separate";
|
|
385
674
|
repo: string;
|
|
386
675
|
ref?: string | undefined;
|
|
387
676
|
path: string;
|
|
677
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
388
678
|
} | undefined;
|
|
389
679
|
composePath?: string | undefined;
|
|
390
680
|
localDevOnly?: boolean | undefined;
|
|
391
681
|
manifestId?: string | undefined;
|
|
392
682
|
manifestPath?: string | undefined;
|
|
683
|
+
images?: {
|
|
684
|
+
name: string;
|
|
685
|
+
newNameTemplate?: string | undefined;
|
|
686
|
+
newTagTemplate?: string | undefined;
|
|
687
|
+
digestTemplate?: string | undefined;
|
|
688
|
+
}[] | undefined;
|
|
689
|
+
helmReleases?: {
|
|
690
|
+
name: string;
|
|
691
|
+
chart: string;
|
|
692
|
+
repo?: string | undefined;
|
|
693
|
+
version: string;
|
|
694
|
+
namespaceTemplate?: string | undefined;
|
|
695
|
+
values?: {
|
|
696
|
+
[x: string]: unknown;
|
|
697
|
+
} | undefined;
|
|
698
|
+
set?: {
|
|
699
|
+
path: string;
|
|
700
|
+
valueTemplate: string;
|
|
701
|
+
}[] | undefined;
|
|
702
|
+
valuesSecretRefs?: {
|
|
703
|
+
path: string;
|
|
704
|
+
secretRef: {
|
|
705
|
+
key: string;
|
|
706
|
+
};
|
|
707
|
+
}[] | undefined;
|
|
708
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
709
|
+
}[] | undefined;
|
|
710
|
+
secretInjections?: ({
|
|
711
|
+
mode: "secret";
|
|
712
|
+
secretName: string;
|
|
713
|
+
secretType?: string | undefined;
|
|
714
|
+
entries: {
|
|
715
|
+
key: string;
|
|
716
|
+
secretRef?: {
|
|
717
|
+
key: string;
|
|
718
|
+
} | undefined;
|
|
719
|
+
valueTemplate?: string | undefined;
|
|
720
|
+
}[];
|
|
721
|
+
} | {
|
|
722
|
+
mode: "generatorEnvFile";
|
|
723
|
+
envFilePath: string;
|
|
724
|
+
entries: {
|
|
725
|
+
key: string;
|
|
726
|
+
secretRef?: {
|
|
727
|
+
key: string;
|
|
728
|
+
} | undefined;
|
|
729
|
+
valueTemplate?: string | undefined;
|
|
730
|
+
}[];
|
|
731
|
+
})[] | undefined;
|
|
393
732
|
} | undefined;
|
|
394
733
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
395
734
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -421,24 +760,72 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
421
760
|
agentConfig?: {
|
|
422
761
|
[x: string]: string;
|
|
423
762
|
} | undefined;
|
|
424
|
-
testComposePath?: string | undefined;
|
|
425
|
-
noInfraDependencies?: boolean | undefined;
|
|
426
|
-
defaultTestEnvironment?: "ephemeral" | "local" | undefined;
|
|
427
763
|
provisioning?: {
|
|
428
764
|
type: "custom" | "docker-compose" | "infraless" | "kubernetes";
|
|
429
765
|
manifestSource?: {
|
|
430
766
|
type: "colocated";
|
|
431
767
|
path: string;
|
|
768
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
432
769
|
} | {
|
|
433
770
|
type: "separate";
|
|
434
771
|
repo: string;
|
|
435
772
|
ref?: string | undefined;
|
|
436
773
|
path: string;
|
|
774
|
+
renderer?: "kustomize" | "raw" | undefined;
|
|
437
775
|
} | undefined;
|
|
438
776
|
composePath?: string | undefined;
|
|
439
777
|
localDevOnly?: boolean | undefined;
|
|
440
778
|
manifestId?: string | undefined;
|
|
441
779
|
manifestPath?: string | undefined;
|
|
780
|
+
images?: {
|
|
781
|
+
name: string;
|
|
782
|
+
newNameTemplate?: string | undefined;
|
|
783
|
+
newTagTemplate?: string | undefined;
|
|
784
|
+
digestTemplate?: string | undefined;
|
|
785
|
+
}[] | undefined;
|
|
786
|
+
helmReleases?: {
|
|
787
|
+
name: string;
|
|
788
|
+
chart: string;
|
|
789
|
+
repo?: string | undefined;
|
|
790
|
+
version: string;
|
|
791
|
+
namespaceTemplate?: string | undefined;
|
|
792
|
+
values?: {
|
|
793
|
+
[x: string]: unknown;
|
|
794
|
+
} | undefined;
|
|
795
|
+
set?: {
|
|
796
|
+
path: string;
|
|
797
|
+
valueTemplate: string;
|
|
798
|
+
}[] | undefined;
|
|
799
|
+
valuesSecretRefs?: {
|
|
800
|
+
path: string;
|
|
801
|
+
secretRef: {
|
|
802
|
+
key: string;
|
|
803
|
+
};
|
|
804
|
+
}[] | undefined;
|
|
805
|
+
scope?: "per-environment" | "shared" | undefined;
|
|
806
|
+
}[] | undefined;
|
|
807
|
+
secretInjections?: ({
|
|
808
|
+
mode: "secret";
|
|
809
|
+
secretName: string;
|
|
810
|
+
secretType?: string | undefined;
|
|
811
|
+
entries: {
|
|
812
|
+
key: string;
|
|
813
|
+
secretRef?: {
|
|
814
|
+
key: string;
|
|
815
|
+
} | undefined;
|
|
816
|
+
valueTemplate?: string | undefined;
|
|
817
|
+
}[];
|
|
818
|
+
} | {
|
|
819
|
+
mode: "generatorEnvFile";
|
|
820
|
+
envFilePath: string;
|
|
821
|
+
entries: {
|
|
822
|
+
key: string;
|
|
823
|
+
secretRef?: {
|
|
824
|
+
key: string;
|
|
825
|
+
} | undefined;
|
|
826
|
+
valueTemplate?: string | undefined;
|
|
827
|
+
}[];
|
|
828
|
+
})[] | undefined;
|
|
442
829
|
} | undefined;
|
|
443
830
|
cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
|
|
444
831
|
instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
|
|
@@ -449,7 +836,18 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
|
|
|
449
836
|
epicId?: string | undefined;
|
|
450
837
|
autoStartDependents?: boolean | undefined;
|
|
451
838
|
};
|
|
452
|
-
readonly issue: v.ArrayIssue | v.BooleanIssue | v.
|
|
839
|
+
readonly issue: v.ArrayIssue | v.BooleanIssue | v.CheckIssue<{
|
|
840
|
+
name: string;
|
|
841
|
+
newNameTemplate?: string | undefined;
|
|
842
|
+
newTagTemplate?: string | undefined;
|
|
843
|
+
digestTemplate?: string | undefined;
|
|
844
|
+
}> | v.CheckIssue<{
|
|
845
|
+
key: string;
|
|
846
|
+
secretRef?: {
|
|
847
|
+
key: string;
|
|
848
|
+
} | undefined;
|
|
849
|
+
valueTemplate?: string | undefined;
|
|
850
|
+
}> | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | v.MaxLengthIssue<string, 256> | v.MaxLengthIssue<string, 400> | v.MaxLengthIssue<string, 500> | v.MaxLengthIssue<string, 2000> | v.MinLengthIssue<string, 1> | v.MinValueIssue<number, 1> | v.NumberIssue | v.ObjectIssue | v.PicklistIssue | v.RecordIssue | v.RegexIssue<string> | v.StringIssue | v.VariantIssue;
|
|
453
851
|
} | undefined;
|
|
454
852
|
};
|
|
455
853
|
export type UpdateBlockInput = v.InferOutput<typeof updateBlockSchema>;
|
package/dist/requests.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"requests.d.ts","sourceRoot":"","sources":["../src/requests.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"requests.d.ts","sourceRoot":"","sources":["../src/requests.ts"],"names":[],"mappings":"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"}
|