renovate 40.51.2 → 40.52.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/config/options/index.js +2 -0
- package/dist/config/options/index.js.map +1 -1
- package/dist/config/types.d.ts +2 -1
- package/dist/config/types.js.map +1 -1
- package/dist/config/validation.js +0 -18
- package/dist/config/validation.js.map +1 -1
- package/dist/manager-list.generated.d.ts +2 -0
- package/dist/manager-list.generated.js +5 -0
- package/dist/manager-list.generated.js.map +1 -0
- package/dist/modules/manager/argocd/schema.d.ts +60 -60
- package/dist/modules/manager/docker-compose/schema.d.ts +24 -24
- package/dist/modules/manager/pep621/schema.d.ts +86 -86
- package/dist/modules/platform/github/schema.d.ts +1 -1
- package/package.json +3 -3
- package/renovate-schema.json +4143 -153
@@ -27,17 +27,17 @@ export declare const ApplicationSource: z.ZodObject<{
|
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
28
28
|
repoURL: string;
|
29
29
|
targetRevision: string;
|
30
|
-
chart?: string | undefined;
|
31
30
|
kustomize?: {
|
32
31
|
images?: string[] | undefined;
|
33
32
|
} | undefined;
|
33
|
+
chart?: string | undefined;
|
34
34
|
}, {
|
35
35
|
repoURL: string;
|
36
36
|
targetRevision: string;
|
37
|
-
chart?: string | undefined;
|
38
37
|
kustomize?: {
|
39
38
|
images?: any[] | undefined;
|
40
39
|
} | undefined;
|
40
|
+
chart?: string | undefined;
|
41
41
|
}>;
|
42
42
|
export type ApplicationSource = z.infer<typeof ApplicationSource>;
|
43
43
|
export declare const ApplicationSpec: z.ZodObject<{
|
@@ -55,51 +55,51 @@ export declare const ApplicationSpec: z.ZodObject<{
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
56
56
|
repoURL: string;
|
57
57
|
targetRevision: string;
|
58
|
-
chart?: string | undefined;
|
59
58
|
kustomize?: {
|
60
59
|
images?: string[] | undefined;
|
61
60
|
} | undefined;
|
61
|
+
chart?: string | undefined;
|
62
62
|
}, {
|
63
63
|
repoURL: string;
|
64
64
|
targetRevision: string;
|
65
|
-
chart?: string | undefined;
|
66
65
|
kustomize?: {
|
67
66
|
images?: any[] | undefined;
|
68
67
|
} | undefined;
|
68
|
+
chart?: string | undefined;
|
69
69
|
}>>;
|
70
70
|
sources: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
71
71
|
repoURL: string;
|
72
72
|
targetRevision: string;
|
73
|
-
chart?: string | undefined;
|
74
73
|
kustomize?: {
|
75
74
|
images?: string[] | undefined;
|
76
75
|
} | undefined;
|
76
|
+
chart?: string | undefined;
|
77
77
|
}[], any[]>>;
|
78
78
|
}, "strip", z.ZodTypeAny, {
|
79
79
|
source?: {
|
80
80
|
repoURL: string;
|
81
81
|
targetRevision: string;
|
82
|
-
chart?: string | undefined;
|
83
82
|
kustomize?: {
|
84
83
|
images?: string[] | undefined;
|
85
84
|
} | undefined;
|
85
|
+
chart?: string | undefined;
|
86
86
|
} | undefined;
|
87
87
|
sources?: {
|
88
88
|
repoURL: string;
|
89
89
|
targetRevision: string;
|
90
|
-
chart?: string | undefined;
|
91
90
|
kustomize?: {
|
92
91
|
images?: string[] | undefined;
|
93
92
|
} | undefined;
|
93
|
+
chart?: string | undefined;
|
94
94
|
}[] | undefined;
|
95
95
|
}, {
|
96
96
|
source?: {
|
97
97
|
repoURL: string;
|
98
98
|
targetRevision: string;
|
99
|
-
chart?: string | undefined;
|
100
99
|
kustomize?: {
|
101
100
|
images?: any[] | undefined;
|
102
101
|
} | undefined;
|
102
|
+
chart?: string | undefined;
|
103
103
|
} | undefined;
|
104
104
|
sources?: any[] | undefined;
|
105
105
|
}>;
|
@@ -123,51 +123,51 @@ export declare const Application: z.ZodObject<{
|
|
123
123
|
}, "strip", z.ZodTypeAny, {
|
124
124
|
repoURL: string;
|
125
125
|
targetRevision: string;
|
126
|
-
chart?: string | undefined;
|
127
126
|
kustomize?: {
|
128
127
|
images?: string[] | undefined;
|
129
128
|
} | undefined;
|
129
|
+
chart?: string | undefined;
|
130
130
|
}, {
|
131
131
|
repoURL: string;
|
132
132
|
targetRevision: string;
|
133
|
-
chart?: string | undefined;
|
134
133
|
kustomize?: {
|
135
134
|
images?: any[] | undefined;
|
136
135
|
} | undefined;
|
136
|
+
chart?: string | undefined;
|
137
137
|
}>>;
|
138
138
|
sources: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
139
139
|
repoURL: string;
|
140
140
|
targetRevision: string;
|
141
|
-
chart?: string | undefined;
|
142
141
|
kustomize?: {
|
143
142
|
images?: string[] | undefined;
|
144
143
|
} | undefined;
|
144
|
+
chart?: string | undefined;
|
145
145
|
}[], any[]>>;
|
146
146
|
}, "strip", z.ZodTypeAny, {
|
147
147
|
source?: {
|
148
148
|
repoURL: string;
|
149
149
|
targetRevision: string;
|
150
|
-
chart?: string | undefined;
|
151
150
|
kustomize?: {
|
152
151
|
images?: string[] | undefined;
|
153
152
|
} | undefined;
|
153
|
+
chart?: string | undefined;
|
154
154
|
} | undefined;
|
155
155
|
sources?: {
|
156
156
|
repoURL: string;
|
157
157
|
targetRevision: string;
|
158
|
-
chart?: string | undefined;
|
159
158
|
kustomize?: {
|
160
159
|
images?: string[] | undefined;
|
161
160
|
} | undefined;
|
161
|
+
chart?: string | undefined;
|
162
162
|
}[] | undefined;
|
163
163
|
}, {
|
164
164
|
source?: {
|
165
165
|
repoURL: string;
|
166
166
|
targetRevision: string;
|
167
|
-
chart?: string | undefined;
|
168
167
|
kustomize?: {
|
169
168
|
images?: any[] | undefined;
|
170
169
|
} | undefined;
|
170
|
+
chart?: string | undefined;
|
171
171
|
} | undefined;
|
172
172
|
sources?: any[] | undefined;
|
173
173
|
}>;
|
@@ -178,18 +178,18 @@ export declare const Application: z.ZodObject<{
|
|
178
178
|
source?: {
|
179
179
|
repoURL: string;
|
180
180
|
targetRevision: string;
|
181
|
-
chart?: string | undefined;
|
182
181
|
kustomize?: {
|
183
182
|
images?: string[] | undefined;
|
184
183
|
} | undefined;
|
184
|
+
chart?: string | undefined;
|
185
185
|
} | undefined;
|
186
186
|
sources?: {
|
187
187
|
repoURL: string;
|
188
188
|
targetRevision: string;
|
189
|
-
chart?: string | undefined;
|
190
189
|
kustomize?: {
|
191
190
|
images?: string[] | undefined;
|
192
191
|
} | undefined;
|
192
|
+
chart?: string | undefined;
|
193
193
|
}[] | undefined;
|
194
194
|
};
|
195
195
|
}, {
|
@@ -199,10 +199,10 @@ export declare const Application: z.ZodObject<{
|
|
199
199
|
source?: {
|
200
200
|
repoURL: string;
|
201
201
|
targetRevision: string;
|
202
|
-
chart?: string | undefined;
|
203
202
|
kustomize?: {
|
204
203
|
images?: any[] | undefined;
|
205
204
|
} | undefined;
|
205
|
+
chart?: string | undefined;
|
206
206
|
} | undefined;
|
207
207
|
sources?: any[] | undefined;
|
208
208
|
};
|
@@ -228,51 +228,51 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
229
229
|
repoURL: string;
|
230
230
|
targetRevision: string;
|
231
|
-
chart?: string | undefined;
|
232
231
|
kustomize?: {
|
233
232
|
images?: string[] | undefined;
|
234
233
|
} | undefined;
|
234
|
+
chart?: string | undefined;
|
235
235
|
}, {
|
236
236
|
repoURL: string;
|
237
237
|
targetRevision: string;
|
238
|
-
chart?: string | undefined;
|
239
238
|
kustomize?: {
|
240
239
|
images?: any[] | undefined;
|
241
240
|
} | undefined;
|
241
|
+
chart?: string | undefined;
|
242
242
|
}>>;
|
243
243
|
sources: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
244
244
|
repoURL: string;
|
245
245
|
targetRevision: string;
|
246
|
-
chart?: string | undefined;
|
247
246
|
kustomize?: {
|
248
247
|
images?: string[] | undefined;
|
249
248
|
} | undefined;
|
249
|
+
chart?: string | undefined;
|
250
250
|
}[], any[]>>;
|
251
251
|
}, "strip", z.ZodTypeAny, {
|
252
252
|
source?: {
|
253
253
|
repoURL: string;
|
254
254
|
targetRevision: string;
|
255
|
-
chart?: string | undefined;
|
256
255
|
kustomize?: {
|
257
256
|
images?: string[] | undefined;
|
258
257
|
} | undefined;
|
258
|
+
chart?: string | undefined;
|
259
259
|
} | undefined;
|
260
260
|
sources?: {
|
261
261
|
repoURL: string;
|
262
262
|
targetRevision: string;
|
263
|
-
chart?: string | undefined;
|
264
263
|
kustomize?: {
|
265
264
|
images?: string[] | undefined;
|
266
265
|
} | undefined;
|
266
|
+
chart?: string | undefined;
|
267
267
|
}[] | undefined;
|
268
268
|
}, {
|
269
269
|
source?: {
|
270
270
|
repoURL: string;
|
271
271
|
targetRevision: string;
|
272
|
-
chart?: string | undefined;
|
273
272
|
kustomize?: {
|
274
273
|
images?: any[] | undefined;
|
275
274
|
} | undefined;
|
275
|
+
chart?: string | undefined;
|
276
276
|
} | undefined;
|
277
277
|
sources?: any[] | undefined;
|
278
278
|
}>;
|
@@ -281,18 +281,18 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
281
281
|
source?: {
|
282
282
|
repoURL: string;
|
283
283
|
targetRevision: string;
|
284
|
-
chart?: string | undefined;
|
285
284
|
kustomize?: {
|
286
285
|
images?: string[] | undefined;
|
287
286
|
} | undefined;
|
287
|
+
chart?: string | undefined;
|
288
288
|
} | undefined;
|
289
289
|
sources?: {
|
290
290
|
repoURL: string;
|
291
291
|
targetRevision: string;
|
292
|
-
chart?: string | undefined;
|
293
292
|
kustomize?: {
|
294
293
|
images?: string[] | undefined;
|
295
294
|
} | undefined;
|
295
|
+
chart?: string | undefined;
|
296
296
|
}[] | undefined;
|
297
297
|
};
|
298
298
|
}, {
|
@@ -300,10 +300,10 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
300
300
|
source?: {
|
301
301
|
repoURL: string;
|
302
302
|
targetRevision: string;
|
303
|
-
chart?: string | undefined;
|
304
303
|
kustomize?: {
|
305
304
|
images?: any[] | undefined;
|
306
305
|
} | undefined;
|
306
|
+
chart?: string | undefined;
|
307
307
|
} | undefined;
|
308
308
|
sources?: any[] | undefined;
|
309
309
|
};
|
@@ -314,18 +314,18 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
314
314
|
source?: {
|
315
315
|
repoURL: string;
|
316
316
|
targetRevision: string;
|
317
|
-
chart?: string | undefined;
|
318
317
|
kustomize?: {
|
319
318
|
images?: string[] | undefined;
|
320
319
|
} | undefined;
|
320
|
+
chart?: string | undefined;
|
321
321
|
} | undefined;
|
322
322
|
sources?: {
|
323
323
|
repoURL: string;
|
324
324
|
targetRevision: string;
|
325
|
-
chart?: string | undefined;
|
326
325
|
kustomize?: {
|
327
326
|
images?: string[] | undefined;
|
328
327
|
} | undefined;
|
328
|
+
chart?: string | undefined;
|
329
329
|
}[] | undefined;
|
330
330
|
};
|
331
331
|
};
|
@@ -335,10 +335,10 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
335
335
|
source?: {
|
336
336
|
repoURL: string;
|
337
337
|
targetRevision: string;
|
338
|
-
chart?: string | undefined;
|
339
338
|
kustomize?: {
|
340
339
|
images?: any[] | undefined;
|
341
340
|
} | undefined;
|
341
|
+
chart?: string | undefined;
|
342
342
|
} | undefined;
|
343
343
|
sources?: any[] | undefined;
|
344
344
|
};
|
@@ -353,18 +353,18 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
353
353
|
source?: {
|
354
354
|
repoURL: string;
|
355
355
|
targetRevision: string;
|
356
|
-
chart?: string | undefined;
|
357
356
|
kustomize?: {
|
358
357
|
images?: string[] | undefined;
|
359
358
|
} | undefined;
|
359
|
+
chart?: string | undefined;
|
360
360
|
} | undefined;
|
361
361
|
sources?: {
|
362
362
|
repoURL: string;
|
363
363
|
targetRevision: string;
|
364
|
-
chart?: string | undefined;
|
365
364
|
kustomize?: {
|
366
365
|
images?: string[] | undefined;
|
367
366
|
} | undefined;
|
367
|
+
chart?: string | undefined;
|
368
368
|
}[] | undefined;
|
369
369
|
};
|
370
370
|
};
|
@@ -378,10 +378,10 @@ export declare const ApplicationSet: z.ZodObject<{
|
|
378
378
|
source?: {
|
379
379
|
repoURL: string;
|
380
380
|
targetRevision: string;
|
381
|
-
chart?: string | undefined;
|
382
381
|
kustomize?: {
|
383
382
|
images?: any[] | undefined;
|
384
383
|
} | undefined;
|
384
|
+
chart?: string | undefined;
|
385
385
|
} | undefined;
|
386
386
|
sources?: any[] | undefined;
|
387
387
|
};
|
@@ -407,51 +407,51 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
407
407
|
}, "strip", z.ZodTypeAny, {
|
408
408
|
repoURL: string;
|
409
409
|
targetRevision: string;
|
410
|
-
chart?: string | undefined;
|
411
410
|
kustomize?: {
|
412
411
|
images?: string[] | undefined;
|
413
412
|
} | undefined;
|
413
|
+
chart?: string | undefined;
|
414
414
|
}, {
|
415
415
|
repoURL: string;
|
416
416
|
targetRevision: string;
|
417
|
-
chart?: string | undefined;
|
418
417
|
kustomize?: {
|
419
418
|
images?: any[] | undefined;
|
420
419
|
} | undefined;
|
420
|
+
chart?: string | undefined;
|
421
421
|
}>>;
|
422
422
|
sources: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
423
423
|
repoURL: string;
|
424
424
|
targetRevision: string;
|
425
|
-
chart?: string | undefined;
|
426
425
|
kustomize?: {
|
427
426
|
images?: string[] | undefined;
|
428
427
|
} | undefined;
|
428
|
+
chart?: string | undefined;
|
429
429
|
}[], any[]>>;
|
430
430
|
}, "strip", z.ZodTypeAny, {
|
431
431
|
source?: {
|
432
432
|
repoURL: string;
|
433
433
|
targetRevision: string;
|
434
|
-
chart?: string | undefined;
|
435
434
|
kustomize?: {
|
436
435
|
images?: string[] | undefined;
|
437
436
|
} | undefined;
|
437
|
+
chart?: string | undefined;
|
438
438
|
} | undefined;
|
439
439
|
sources?: {
|
440
440
|
repoURL: string;
|
441
441
|
targetRevision: string;
|
442
|
-
chart?: string | undefined;
|
443
442
|
kustomize?: {
|
444
443
|
images?: string[] | undefined;
|
445
444
|
} | undefined;
|
445
|
+
chart?: string | undefined;
|
446
446
|
}[] | undefined;
|
447
447
|
}, {
|
448
448
|
source?: {
|
449
449
|
repoURL: string;
|
450
450
|
targetRevision: string;
|
451
|
-
chart?: string | undefined;
|
452
451
|
kustomize?: {
|
453
452
|
images?: any[] | undefined;
|
454
453
|
} | undefined;
|
454
|
+
chart?: string | undefined;
|
455
455
|
} | undefined;
|
456
456
|
sources?: any[] | undefined;
|
457
457
|
}>;
|
@@ -462,18 +462,18 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
462
462
|
source?: {
|
463
463
|
repoURL: string;
|
464
464
|
targetRevision: string;
|
465
|
-
chart?: string | undefined;
|
466
465
|
kustomize?: {
|
467
466
|
images?: string[] | undefined;
|
468
467
|
} | undefined;
|
468
|
+
chart?: string | undefined;
|
469
469
|
} | undefined;
|
470
470
|
sources?: {
|
471
471
|
repoURL: string;
|
472
472
|
targetRevision: string;
|
473
|
-
chart?: string | undefined;
|
474
473
|
kustomize?: {
|
475
474
|
images?: string[] | undefined;
|
476
475
|
} | undefined;
|
476
|
+
chart?: string | undefined;
|
477
477
|
}[] | undefined;
|
478
478
|
};
|
479
479
|
}, {
|
@@ -483,10 +483,10 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
483
483
|
source?: {
|
484
484
|
repoURL: string;
|
485
485
|
targetRevision: string;
|
486
|
-
chart?: string | undefined;
|
487
486
|
kustomize?: {
|
488
487
|
images?: any[] | undefined;
|
489
488
|
} | undefined;
|
489
|
+
chart?: string | undefined;
|
490
490
|
} | undefined;
|
491
491
|
sources?: any[] | undefined;
|
492
492
|
};
|
@@ -511,51 +511,51 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
511
511
|
}, "strip", z.ZodTypeAny, {
|
512
512
|
repoURL: string;
|
513
513
|
targetRevision: string;
|
514
|
-
chart?: string | undefined;
|
515
514
|
kustomize?: {
|
516
515
|
images?: string[] | undefined;
|
517
516
|
} | undefined;
|
517
|
+
chart?: string | undefined;
|
518
518
|
}, {
|
519
519
|
repoURL: string;
|
520
520
|
targetRevision: string;
|
521
|
-
chart?: string | undefined;
|
522
521
|
kustomize?: {
|
523
522
|
images?: any[] | undefined;
|
524
523
|
} | undefined;
|
524
|
+
chart?: string | undefined;
|
525
525
|
}>>;
|
526
526
|
sources: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
527
527
|
repoURL: string;
|
528
528
|
targetRevision: string;
|
529
|
-
chart?: string | undefined;
|
530
529
|
kustomize?: {
|
531
530
|
images?: string[] | undefined;
|
532
531
|
} | undefined;
|
532
|
+
chart?: string | undefined;
|
533
533
|
}[], any[]>>;
|
534
534
|
}, "strip", z.ZodTypeAny, {
|
535
535
|
source?: {
|
536
536
|
repoURL: string;
|
537
537
|
targetRevision: string;
|
538
|
-
chart?: string | undefined;
|
539
538
|
kustomize?: {
|
540
539
|
images?: string[] | undefined;
|
541
540
|
} | undefined;
|
541
|
+
chart?: string | undefined;
|
542
542
|
} | undefined;
|
543
543
|
sources?: {
|
544
544
|
repoURL: string;
|
545
545
|
targetRevision: string;
|
546
|
-
chart?: string | undefined;
|
547
546
|
kustomize?: {
|
548
547
|
images?: string[] | undefined;
|
549
548
|
} | undefined;
|
549
|
+
chart?: string | undefined;
|
550
550
|
}[] | undefined;
|
551
551
|
}, {
|
552
552
|
source?: {
|
553
553
|
repoURL: string;
|
554
554
|
targetRevision: string;
|
555
|
-
chart?: string | undefined;
|
556
555
|
kustomize?: {
|
557
556
|
images?: any[] | undefined;
|
558
557
|
} | undefined;
|
558
|
+
chart?: string | undefined;
|
559
559
|
} | undefined;
|
560
560
|
sources?: any[] | undefined;
|
561
561
|
}>;
|
@@ -564,18 +564,18 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
564
564
|
source?: {
|
565
565
|
repoURL: string;
|
566
566
|
targetRevision: string;
|
567
|
-
chart?: string | undefined;
|
568
567
|
kustomize?: {
|
569
568
|
images?: string[] | undefined;
|
570
569
|
} | undefined;
|
570
|
+
chart?: string | undefined;
|
571
571
|
} | undefined;
|
572
572
|
sources?: {
|
573
573
|
repoURL: string;
|
574
574
|
targetRevision: string;
|
575
|
-
chart?: string | undefined;
|
576
575
|
kustomize?: {
|
577
576
|
images?: string[] | undefined;
|
578
577
|
} | undefined;
|
578
|
+
chart?: string | undefined;
|
579
579
|
}[] | undefined;
|
580
580
|
};
|
581
581
|
}, {
|
@@ -583,10 +583,10 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
583
583
|
source?: {
|
584
584
|
repoURL: string;
|
585
585
|
targetRevision: string;
|
586
|
-
chart?: string | undefined;
|
587
586
|
kustomize?: {
|
588
587
|
images?: any[] | undefined;
|
589
588
|
} | undefined;
|
589
|
+
chart?: string | undefined;
|
590
590
|
} | undefined;
|
591
591
|
sources?: any[] | undefined;
|
592
592
|
};
|
@@ -597,18 +597,18 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
597
597
|
source?: {
|
598
598
|
repoURL: string;
|
599
599
|
targetRevision: string;
|
600
|
-
chart?: string | undefined;
|
601
600
|
kustomize?: {
|
602
601
|
images?: string[] | undefined;
|
603
602
|
} | undefined;
|
603
|
+
chart?: string | undefined;
|
604
604
|
} | undefined;
|
605
605
|
sources?: {
|
606
606
|
repoURL: string;
|
607
607
|
targetRevision: string;
|
608
|
-
chart?: string | undefined;
|
609
608
|
kustomize?: {
|
610
609
|
images?: string[] | undefined;
|
611
610
|
} | undefined;
|
611
|
+
chart?: string | undefined;
|
612
612
|
}[] | undefined;
|
613
613
|
};
|
614
614
|
};
|
@@ -618,10 +618,10 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
618
618
|
source?: {
|
619
619
|
repoURL: string;
|
620
620
|
targetRevision: string;
|
621
|
-
chart?: string | undefined;
|
622
621
|
kustomize?: {
|
623
622
|
images?: any[] | undefined;
|
624
623
|
} | undefined;
|
624
|
+
chart?: string | undefined;
|
625
625
|
} | undefined;
|
626
626
|
sources?: any[] | undefined;
|
627
627
|
};
|
@@ -636,18 +636,18 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
636
636
|
source?: {
|
637
637
|
repoURL: string;
|
638
638
|
targetRevision: string;
|
639
|
-
chart?: string | undefined;
|
640
639
|
kustomize?: {
|
641
640
|
images?: string[] | undefined;
|
642
641
|
} | undefined;
|
642
|
+
chart?: string | undefined;
|
643
643
|
} | undefined;
|
644
644
|
sources?: {
|
645
645
|
repoURL: string;
|
646
646
|
targetRevision: string;
|
647
|
-
chart?: string | undefined;
|
648
647
|
kustomize?: {
|
649
648
|
images?: string[] | undefined;
|
650
649
|
} | undefined;
|
650
|
+
chart?: string | undefined;
|
651
651
|
}[] | undefined;
|
652
652
|
};
|
653
653
|
};
|
@@ -661,10 +661,10 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
|
|
661
661
|
source?: {
|
662
662
|
repoURL: string;
|
663
663
|
targetRevision: string;
|
664
|
-
chart?: string | undefined;
|
665
664
|
kustomize?: {
|
666
665
|
images?: any[] | undefined;
|
667
666
|
} | undefined;
|
667
|
+
chart?: string | undefined;
|
668
668
|
} | undefined;
|
669
669
|
sources?: any[] | undefined;
|
670
670
|
};
|
@@ -679,18 +679,18 @@ export declare const ApplicationDefinitionSchema: z.ZodPipeline<z.ZodEffects<z.Z
|
|
679
679
|
source?: {
|
680
680
|
repoURL: string;
|
681
681
|
targetRevision: string;
|
682
|
-
chart?: string | undefined;
|
683
682
|
kustomize?: {
|
684
683
|
images?: string[] | undefined;
|
685
684
|
} | undefined;
|
685
|
+
chart?: string | undefined;
|
686
686
|
} | undefined;
|
687
687
|
sources?: {
|
688
688
|
repoURL: string;
|
689
689
|
targetRevision: string;
|
690
|
-
chart?: string | undefined;
|
691
690
|
kustomize?: {
|
692
691
|
images?: string[] | undefined;
|
693
692
|
} | undefined;
|
693
|
+
chart?: string | undefined;
|
694
694
|
}[] | undefined;
|
695
695
|
};
|
696
696
|
} | {
|
@@ -702,18 +702,18 @@ export declare const ApplicationDefinitionSchema: z.ZodPipeline<z.ZodEffects<z.Z
|
|
702
702
|
source?: {
|
703
703
|
repoURL: string;
|
704
704
|
targetRevision: string;
|
705
|
-
chart?: string | undefined;
|
706
705
|
kustomize?: {
|
707
706
|
images?: string[] | undefined;
|
708
707
|
} | undefined;
|
708
|
+
chart?: string | undefined;
|
709
709
|
} | undefined;
|
710
710
|
sources?: {
|
711
711
|
repoURL: string;
|
712
712
|
targetRevision: string;
|
713
|
-
chart?: string | undefined;
|
714
713
|
kustomize?: {
|
715
714
|
images?: string[] | undefined;
|
716
715
|
} | undefined;
|
716
|
+
chart?: string | undefined;
|
717
717
|
}[] | undefined;
|
718
718
|
};
|
719
719
|
};
|