@cat-factory/contracts 0.59.0 → 0.61.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.
@@ -137,16 +137,87 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
137
137
  readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
138
138
  readonly type: v.LiteralSchema<"colocated", undefined>;
139
139
  readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
140
+ readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
140
141
  }, undefined>, v.ObjectSchema<{
141
142
  readonly type: v.LiteralSchema<"separate", undefined>;
142
143
  readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
143
144
  readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
144
145
  readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
146
+ readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
145
147
  }, undefined>], undefined>, undefined>;
146
148
  readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
147
149
  readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
148
150
  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
151
  readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
152
+ readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
153
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
154
+ readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
155
+ readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
156
+ readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
157
+ }, undefined>, v.CheckAction<{
158
+ name: string;
159
+ newNameTemplate?: string | undefined;
160
+ newTagTemplate?: string | undefined;
161
+ digestTemplate?: string | undefined;
162
+ }, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
163
+ name: string;
164
+ newNameTemplate?: string | undefined;
165
+ newTagTemplate?: string | undefined;
166
+ digestTemplate?: string | undefined;
167
+ }, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
168
+ readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
169
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
170
+ readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
171
+ readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
172
+ 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.">]>;
173
+ readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
174
+ readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
175
+ readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
176
+ readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
177
+ readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
178
+ }, undefined>, undefined>, undefined>;
179
+ readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
180
+ readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
181
+ readonly secretRef: v.ObjectSchema<{
182
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
183
+ }, undefined>;
184
+ }, undefined>, undefined>, undefined>;
185
+ readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
186
+ }, undefined>, undefined>, undefined>;
187
+ readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
188
+ readonly mode: v.LiteralSchema<"secret", undefined>;
189
+ readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
190
+ readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
191
+ readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
192
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
193
+ readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
194
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
195
+ }, undefined>, undefined>;
196
+ readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
197
+ }, undefined>, v.CheckAction<{
198
+ key: string;
199
+ secretRef?: {
200
+ key: string;
201
+ } | undefined;
202
+ valueTemplate?: string | undefined;
203
+ }, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
204
+ }, undefined>, v.ObjectSchema<{
205
+ readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
206
+ readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
207
+ readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
208
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
209
+ readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
210
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
211
+ }, undefined>, undefined>;
212
+ readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
213
+ }, undefined>, v.CheckAction<{
214
+ key: string;
215
+ secretRef?: {
216
+ key: string;
217
+ } | undefined;
218
+ valueTemplate?: string | undefined;
219
+ }, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
220
+ }, undefined>], undefined>, undefined>, undefined>;
150
221
  }, undefined>;
151
222
  readonly cloudProvider: v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>;
152
223
  readonly instanceSize: v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>;
@@ -184,16 +255,87 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
184
255
  readonly manifestSource: v.OptionalSchema<v.VariantSchema<"type", [v.ObjectSchema<{
185
256
  readonly type: v.LiteralSchema<"colocated", undefined>;
186
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>;
187
259
  }, undefined>, v.ObjectSchema<{
188
260
  readonly type: v.LiteralSchema<"separate", undefined>;
189
261
  readonly repo: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.RegexAction<string, "must be \"owner/repo\"">]>;
190
262
  readonly ref: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>, undefined>;
191
263
  readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
264
+ readonly renderer: v.OptionalSchema<v.PicklistSchema<["raw", "kustomize"], undefined>, undefined>;
192
265
  }, undefined>], undefined>, undefined>;
193
266
  readonly composePath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
194
267
  readonly localDevOnly: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
195
268
  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
269
  readonly manifestPath: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
270
+ readonly images: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
271
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
272
+ readonly newNameTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
273
+ readonly newTagTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
274
+ readonly digestTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
275
+ }, undefined>, v.CheckAction<{
276
+ name: string;
277
+ newNameTemplate?: string | undefined;
278
+ newTagTemplate?: string | undefined;
279
+ digestTemplate?: string | undefined;
280
+ }, "an image override must set at least one of newNameTemplate, newTagTemplate, or digestTemplate.">, v.CheckAction<{
281
+ name: string;
282
+ newNameTemplate?: string | undefined;
283
+ newTagTemplate?: string | undefined;
284
+ digestTemplate?: string | undefined;
285
+ }, "newTagTemplate and digestTemplate are mutually exclusive on an image override.">]>, undefined>, undefined>;
286
+ readonly helmReleases: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
287
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
288
+ readonly chart: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
289
+ readonly repo: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
290
+ 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.">]>;
291
+ readonly namespaceTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>, undefined>;
292
+ readonly values: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>, undefined>;
293
+ readonly set: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
294
+ readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
295
+ readonly valueTemplate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>;
296
+ }, undefined>, undefined>, undefined>;
297
+ readonly valuesSecretRefs: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
298
+ readonly path: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
299
+ readonly secretRef: v.ObjectSchema<{
300
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
301
+ }, undefined>;
302
+ }, undefined>, undefined>, undefined>;
303
+ readonly scope: v.OptionalSchema<v.PicklistSchema<["per-environment", "shared"], undefined>, undefined>;
304
+ }, undefined>, undefined>, undefined>;
305
+ readonly secretInjections: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"mode", [v.ObjectSchema<{
306
+ readonly mode: v.LiteralSchema<"secret", undefined>;
307
+ readonly secretName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>;
308
+ readonly secretType: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>]>, undefined>;
309
+ readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
310
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
311
+ readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
312
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
313
+ }, undefined>, undefined>;
314
+ readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
315
+ }, undefined>, v.CheckAction<{
316
+ key: string;
317
+ secretRef?: {
318
+ key: string;
319
+ } | undefined;
320
+ valueTemplate?: string | undefined;
321
+ }, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
322
+ }, undefined>, v.ObjectSchema<{
323
+ readonly mode: v.LiteralSchema<"generatorEnvFile", undefined>;
324
+ readonly envFilePath: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
325
+ readonly entries: v.ArraySchema<v.SchemaWithPipe<readonly [v.ObjectSchema<{
326
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 256, undefined>]>;
327
+ readonly secretRef: v.OptionalSchema<v.ObjectSchema<{
328
+ readonly key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 64, undefined>]>;
329
+ }, undefined>, undefined>;
330
+ readonly valueTemplate: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 2000, undefined>]>, undefined>;
331
+ }, undefined>, v.CheckAction<{
332
+ key: string;
333
+ secretRef?: {
334
+ key: string;
335
+ } | undefined;
336
+ valueTemplate?: string | undefined;
337
+ }, "a secret entry must set exactly one of secretRef or valueTemplate.">]>, undefined>;
338
+ }, undefined>], undefined>, undefined>, undefined>;
197
339
  }, undefined>, undefined>;
198
340
  readonly cloudProvider: v.OptionalSchema<v.PicklistSchema<["cloudflare", "docker", "aws", "gcp", "azure", "custom"], undefined>, undefined>;
199
341
  readonly instanceSize: v.OptionalSchema<v.PicklistSchema<["small", "medium", "large", "xlarge"], undefined>, undefined>;
@@ -233,16 +375,67 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
233
375
  manifestSource?: {
234
376
  type: "colocated";
235
377
  path: string;
378
+ renderer?: "kustomize" | "raw" | undefined;
236
379
  } | {
237
380
  type: "separate";
238
381
  repo: string;
239
382
  ref?: string | undefined;
240
383
  path: string;
384
+ renderer?: "kustomize" | "raw" | undefined;
241
385
  } | undefined;
242
386
  composePath?: string | undefined;
243
387
  localDevOnly?: boolean | undefined;
244
388
  manifestId?: string | undefined;
245
389
  manifestPath?: string | undefined;
390
+ images?: {
391
+ name: string;
392
+ newNameTemplate?: string | undefined;
393
+ newTagTemplate?: string | undefined;
394
+ digestTemplate?: string | undefined;
395
+ }[] | undefined;
396
+ helmReleases?: {
397
+ name: string;
398
+ chart: string;
399
+ repo?: string | undefined;
400
+ version: string;
401
+ namespaceTemplate?: string | undefined;
402
+ values?: {
403
+ [x: string]: unknown;
404
+ } | undefined;
405
+ set?: {
406
+ path: string;
407
+ valueTemplate: string;
408
+ }[] | undefined;
409
+ valuesSecretRefs?: {
410
+ path: string;
411
+ secretRef: {
412
+ key: string;
413
+ };
414
+ }[] | undefined;
415
+ scope?: "per-environment" | "shared" | undefined;
416
+ }[] | undefined;
417
+ secretInjections?: ({
418
+ mode: "secret";
419
+ secretName: string;
420
+ secretType?: string | undefined;
421
+ entries: {
422
+ key: string;
423
+ secretRef?: {
424
+ key: string;
425
+ } | undefined;
426
+ valueTemplate?: string | undefined;
427
+ }[];
428
+ } | {
429
+ mode: "generatorEnvFile";
430
+ envFilePath: string;
431
+ entries: {
432
+ key: string;
433
+ secretRef?: {
434
+ key: string;
435
+ } | undefined;
436
+ valueTemplate?: string | undefined;
437
+ }[];
438
+ })[] | undefined;
246
439
  } | undefined;
247
440
  cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
248
441
  instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
@@ -281,16 +474,67 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
281
474
  manifestSource?: {
282
475
  type: "colocated";
283
476
  path: string;
477
+ renderer?: "kustomize" | "raw" | undefined;
284
478
  } | {
285
479
  type: "separate";
286
480
  repo: string;
287
481
  ref?: string | undefined;
288
482
  path: string;
483
+ renderer?: "kustomize" | "raw" | undefined;
289
484
  } | undefined;
290
485
  composePath?: string | undefined;
291
486
  localDevOnly?: boolean | undefined;
292
487
  manifestId?: string | undefined;
293
488
  manifestPath?: string | undefined;
489
+ images?: {
490
+ name: string;
491
+ newNameTemplate?: string | undefined;
492
+ newTagTemplate?: string | undefined;
493
+ digestTemplate?: string | undefined;
494
+ }[] | undefined;
495
+ helmReleases?: {
496
+ name: string;
497
+ chart: string;
498
+ repo?: string | undefined;
499
+ version: string;
500
+ namespaceTemplate?: string | undefined;
501
+ values?: {
502
+ [x: string]: unknown;
503
+ } | undefined;
504
+ set?: {
505
+ path: string;
506
+ valueTemplate: string;
507
+ }[] | undefined;
508
+ valuesSecretRefs?: {
509
+ path: string;
510
+ secretRef: {
511
+ key: string;
512
+ };
513
+ }[] | undefined;
514
+ scope?: "per-environment" | "shared" | undefined;
515
+ }[] | undefined;
516
+ secretInjections?: ({
517
+ mode: "secret";
518
+ secretName: string;
519
+ secretType?: string | undefined;
520
+ entries: {
521
+ key: string;
522
+ secretRef?: {
523
+ key: string;
524
+ } | undefined;
525
+ valueTemplate?: string | undefined;
526
+ }[];
527
+ } | {
528
+ mode: "generatorEnvFile";
529
+ envFilePath: string;
530
+ entries: {
531
+ key: string;
532
+ secretRef?: {
533
+ key: string;
534
+ } | undefined;
535
+ valueTemplate?: string | undefined;
536
+ }[];
537
+ })[] | undefined;
294
538
  } | undefined;
295
539
  cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
296
540
  instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
@@ -330,16 +574,67 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
330
574
  manifestSource?: {
331
575
  type: "colocated";
332
576
  path: string;
577
+ renderer?: "kustomize" | "raw" | undefined;
333
578
  } | {
334
579
  type: "separate";
335
580
  repo: string;
336
581
  ref?: string | undefined;
337
582
  path: string;
583
+ renderer?: "kustomize" | "raw" | undefined;
338
584
  } | undefined;
339
585
  composePath?: string | undefined;
340
586
  localDevOnly?: boolean | undefined;
341
587
  manifestId?: string | undefined;
342
588
  manifestPath?: string | undefined;
589
+ images?: {
590
+ name: string;
591
+ newNameTemplate?: string | undefined;
592
+ newTagTemplate?: string | undefined;
593
+ digestTemplate?: string | undefined;
594
+ }[] | undefined;
595
+ helmReleases?: {
596
+ name: string;
597
+ chart: string;
598
+ repo?: string | undefined;
599
+ version: string;
600
+ namespaceTemplate?: string | undefined;
601
+ values?: {
602
+ [x: string]: unknown;
603
+ } | undefined;
604
+ set?: {
605
+ path: string;
606
+ valueTemplate: string;
607
+ }[] | undefined;
608
+ valuesSecretRefs?: {
609
+ path: string;
610
+ secretRef: {
611
+ key: string;
612
+ };
613
+ }[] | undefined;
614
+ scope?: "per-environment" | "shared" | undefined;
615
+ }[] | undefined;
616
+ secretInjections?: ({
617
+ mode: "secret";
618
+ secretName: string;
619
+ secretType?: string | undefined;
620
+ entries: {
621
+ key: string;
622
+ secretRef?: {
623
+ key: string;
624
+ } | undefined;
625
+ valueTemplate?: string | undefined;
626
+ }[];
627
+ } | {
628
+ mode: "generatorEnvFile";
629
+ envFilePath: string;
630
+ entries: {
631
+ key: string;
632
+ secretRef?: {
633
+ key: string;
634
+ } | undefined;
635
+ valueTemplate?: string | undefined;
636
+ }[];
637
+ })[] | undefined;
343
638
  } | undefined;
344
639
  cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
345
640
  instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
@@ -349,7 +644,18 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
349
644
  responsibleProductUserId?: string | null | undefined;
350
645
  epicId?: string | undefined;
351
646
  autoStartDependents?: boolean | undefined;
352
- }, v.ArrayIssue | v.BooleanIssue | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | 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>;
647
+ }, v.ArrayIssue | v.BooleanIssue | v.CheckIssue<{
648
+ name: string;
649
+ newNameTemplate?: string | undefined;
650
+ newTagTemplate?: string | undefined;
651
+ digestTemplate?: string | undefined;
652
+ }> | v.CheckIssue<{
653
+ key: string;
654
+ secretRef?: {
655
+ key: string;
656
+ } | undefined;
657
+ valueTemplate?: string | undefined;
658
+ }> | 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
659
  readonly "~types"?: {
354
660
  readonly input: {
355
661
  title?: string | undefined;
@@ -380,16 +686,67 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
380
686
  manifestSource?: {
381
687
  type: "colocated";
382
688
  path: string;
689
+ renderer?: "kustomize" | "raw" | undefined;
383
690
  } | {
384
691
  type: "separate";
385
692
  repo: string;
386
693
  ref?: string | undefined;
387
694
  path: string;
695
+ renderer?: "kustomize" | "raw" | undefined;
388
696
  } | undefined;
389
697
  composePath?: string | undefined;
390
698
  localDevOnly?: boolean | undefined;
391
699
  manifestId?: string | undefined;
392
700
  manifestPath?: string | undefined;
701
+ images?: {
702
+ name: string;
703
+ newNameTemplate?: string | undefined;
704
+ newTagTemplate?: string | undefined;
705
+ digestTemplate?: string | undefined;
706
+ }[] | undefined;
707
+ helmReleases?: {
708
+ name: string;
709
+ chart: string;
710
+ repo?: string | undefined;
711
+ version: string;
712
+ namespaceTemplate?: string | undefined;
713
+ values?: {
714
+ [x: string]: unknown;
715
+ } | undefined;
716
+ set?: {
717
+ path: string;
718
+ valueTemplate: string;
719
+ }[] | undefined;
720
+ valuesSecretRefs?: {
721
+ path: string;
722
+ secretRef: {
723
+ key: string;
724
+ };
725
+ }[] | undefined;
726
+ scope?: "per-environment" | "shared" | undefined;
727
+ }[] | undefined;
728
+ secretInjections?: ({
729
+ mode: "secret";
730
+ secretName: string;
731
+ secretType?: string | undefined;
732
+ entries: {
733
+ key: string;
734
+ secretRef?: {
735
+ key: string;
736
+ } | undefined;
737
+ valueTemplate?: string | undefined;
738
+ }[];
739
+ } | {
740
+ mode: "generatorEnvFile";
741
+ envFilePath: string;
742
+ entries: {
743
+ key: string;
744
+ secretRef?: {
745
+ key: string;
746
+ } | undefined;
747
+ valueTemplate?: string | undefined;
748
+ }[];
749
+ })[] | undefined;
393
750
  } | undefined;
394
751
  cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
395
752
  instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
@@ -429,16 +786,67 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
429
786
  manifestSource?: {
430
787
  type: "colocated";
431
788
  path: string;
789
+ renderer?: "kustomize" | "raw" | undefined;
432
790
  } | {
433
791
  type: "separate";
434
792
  repo: string;
435
793
  ref?: string | undefined;
436
794
  path: string;
795
+ renderer?: "kustomize" | "raw" | undefined;
437
796
  } | undefined;
438
797
  composePath?: string | undefined;
439
798
  localDevOnly?: boolean | undefined;
440
799
  manifestId?: string | undefined;
441
800
  manifestPath?: string | undefined;
801
+ images?: {
802
+ name: string;
803
+ newNameTemplate?: string | undefined;
804
+ newTagTemplate?: string | undefined;
805
+ digestTemplate?: string | undefined;
806
+ }[] | undefined;
807
+ helmReleases?: {
808
+ name: string;
809
+ chart: string;
810
+ repo?: string | undefined;
811
+ version: string;
812
+ namespaceTemplate?: string | undefined;
813
+ values?: {
814
+ [x: string]: unknown;
815
+ } | undefined;
816
+ set?: {
817
+ path: string;
818
+ valueTemplate: string;
819
+ }[] | undefined;
820
+ valuesSecretRefs?: {
821
+ path: string;
822
+ secretRef: {
823
+ key: string;
824
+ };
825
+ }[] | undefined;
826
+ scope?: "per-environment" | "shared" | undefined;
827
+ }[] | undefined;
828
+ secretInjections?: ({
829
+ mode: "secret";
830
+ secretName: string;
831
+ secretType?: string | undefined;
832
+ entries: {
833
+ key: string;
834
+ secretRef?: {
835
+ key: string;
836
+ } | undefined;
837
+ valueTemplate?: string | undefined;
838
+ }[];
839
+ } | {
840
+ mode: "generatorEnvFile";
841
+ envFilePath: string;
842
+ entries: {
843
+ key: string;
844
+ secretRef?: {
845
+ key: string;
846
+ } | undefined;
847
+ valueTemplate?: string | undefined;
848
+ }[];
849
+ })[] | undefined;
442
850
  } | undefined;
443
851
  cloudProvider?: "aws" | "azure" | "cloudflare" | "custom" | "docker" | "gcp" | undefined;
444
852
  instanceSize?: "large" | "medium" | "small" | "xlarge" | undefined;
@@ -449,7 +857,18 @@ export declare const updateBlockSchema: Omit<v.ObjectSchema<{
449
857
  epicId?: string | undefined;
450
858
  autoStartDependents?: boolean | undefined;
451
859
  };
452
- readonly issue: v.ArrayIssue | v.BooleanIssue | v.LiteralIssue | v.MaxLengthIssue<string, 64> | v.MaxLengthIssue<string, 120> | v.MaxLengthIssue<string, 200> | 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;
860
+ readonly issue: v.ArrayIssue | v.BooleanIssue | v.CheckIssue<{
861
+ name: string;
862
+ newNameTemplate?: string | undefined;
863
+ newTagTemplate?: string | undefined;
864
+ digestTemplate?: string | undefined;
865
+ }> | v.CheckIssue<{
866
+ key: string;
867
+ secretRef?: {
868
+ key: string;
869
+ } | undefined;
870
+ valueTemplate?: string | undefined;
871
+ }> | 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
872
  } | undefined;
454
873
  };
455
874
  export type UpdateBlockInput = v.InferOutput<typeof updateBlockSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"requests.d.ts","sourceRoot":"","sources":["../src/requests.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"requests.d.ts","sourceRoot":"","sources":["../src/requests.ts"],"names":[],"mappings":"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"}