renovate 39.257.2 → 39.257.3
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/modules/datasource/docker/schema.d.ts +72 -96
- package/dist/modules/datasource/packagist/schema.d.ts +7 -7
- package/dist/modules/manager/argocd/schema.d.ts +12 -12
- package/dist/modules/manager/bazel-module/parser/maven.d.ts +6 -52
- package/dist/modules/manager/bazel-module/parser/oci.d.ts +3 -26
- package/dist/modules/manager/bazel-module/rules.d.ts +15 -125
- package/dist/modules/manager/cargo/schema.d.ts +3 -3
- package/dist/modules/manager/circleci/schema.d.ts +3 -3
- package/dist/modules/manager/composer/schema.d.ts +6 -8
- package/dist/modules/manager/flux/schema.d.ts +36 -60
- package/dist/modules/manager/sveltos/schema.d.ts +18 -30
- package/dist/modules/manager/vendir/schema.d.ts +3 -3
- package/dist/modules/platform/bitbucket/schema.d.ts +3 -3
- package/dist/modules/platform/github/issue.d.ts +6 -6
- package/dist/modules/platform/github/schema.d.ts +52 -52
- package/package.json +2 -2
@@ -2,36 +2,13 @@ import { z } from 'zod';
|
|
2
2
|
import type { PackageDependency } from '../../types';
|
3
3
|
export declare const ociExtensionPrefix = "oci";
|
4
4
|
export declare const ociExtensionTags: string[];
|
5
|
-
export declare const RuleToDockerPackageDep: z.ZodEffects<z.ZodObject<
|
5
|
+
export declare const RuleToDockerPackageDep: z.ZodEffects<z.ZodObject<{
|
6
6
|
type: z.ZodLiteral<"extensionTag">;
|
7
|
-
extension: z.ZodString;
|
8
7
|
rawExtension: z.ZodString;
|
9
|
-
tag: z.ZodString;
|
10
|
-
children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
11
|
-
type: "string";
|
12
|
-
value: string;
|
13
|
-
isComplete: true;
|
14
|
-
} | {
|
15
|
-
type: "boolean";
|
16
|
-
value: boolean;
|
17
|
-
isComplete: true;
|
18
|
-
} | {
|
19
|
-
type: "array";
|
20
|
-
isComplete: boolean;
|
21
|
-
items: ({
|
22
|
-
type: "string";
|
23
|
-
value: string;
|
24
|
-
isComplete: true;
|
25
|
-
} | {
|
26
|
-
type: "boolean";
|
27
|
-
value: boolean;
|
28
|
-
isComplete: true;
|
29
|
-
})[];
|
30
|
-
}>, Record<string, any>>;
|
31
8
|
isComplete: z.ZodBoolean;
|
32
9
|
offset: z.ZodNumber;
|
33
10
|
rawString: z.ZodOptional<z.ZodString>;
|
34
|
-
}
|
11
|
+
} & {
|
35
12
|
extension: z.ZodLiteral<"oci">;
|
36
13
|
tag: z.ZodLiteral<"pull">;
|
37
14
|
children: z.ZodObject<{
|
@@ -130,7 +107,7 @@ export declare const RuleToDockerPackageDep: z.ZodEffects<z.ZodObject<z.objectUt
|
|
130
107
|
isComplete: true;
|
131
108
|
} | undefined;
|
132
109
|
}>;
|
133
|
-
}
|
110
|
+
}, "strip", z.ZodTypeAny, {
|
134
111
|
type: "extensionTag";
|
135
112
|
tag: "pull";
|
136
113
|
children: {
|
@@ -14,32 +14,10 @@ export interface OverridePackageDep extends BasePackageDep {
|
|
14
14
|
}
|
15
15
|
export type BazelModulePackageDep = BasePackageDep | OverridePackageDep | MergePackageDep;
|
16
16
|
export declare function bazelModulePackageDepToPackageDependency(bmpd: BazelModulePackageDep): PackageDependency;
|
17
|
-
export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.ZodObject<
|
17
|
+
export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
18
18
|
type: z.ZodLiteral<"rule">;
|
19
|
-
rule: z.ZodString;
|
20
|
-
children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
21
|
-
type: "string";
|
22
|
-
value: string;
|
23
|
-
isComplete: true;
|
24
|
-
} | {
|
25
|
-
type: "boolean";
|
26
|
-
value: boolean;
|
27
|
-
isComplete: true;
|
28
|
-
} | {
|
29
|
-
type: "array";
|
30
|
-
isComplete: boolean;
|
31
|
-
items: ({
|
32
|
-
type: "string";
|
33
|
-
value: string;
|
34
|
-
isComplete: true;
|
35
|
-
} | {
|
36
|
-
type: "boolean";
|
37
|
-
value: boolean;
|
38
|
-
isComplete: true;
|
39
|
-
})[];
|
40
|
-
}>, Record<string, any>>;
|
41
19
|
isComplete: z.ZodBoolean;
|
42
|
-
}
|
20
|
+
} & {
|
43
21
|
rule: z.ZodLiteral<"bazel_dep">;
|
44
22
|
children: z.ZodObject<{
|
45
23
|
name: z.ZodObject<{
|
@@ -91,7 +69,7 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
91
69
|
isComplete: true;
|
92
70
|
} | undefined;
|
93
71
|
}>;
|
94
|
-
}
|
72
|
+
}, "strip", z.ZodTypeAny, {
|
95
73
|
type: "rule";
|
96
74
|
rule: "bazel_dep";
|
97
75
|
children: {
|
@@ -139,32 +117,10 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
139
117
|
} | undefined;
|
140
118
|
};
|
141
119
|
isComplete: boolean;
|
142
|
-
}>, z.ZodEffects<z.ZodObject<
|
120
|
+
}>, z.ZodEffects<z.ZodObject<{
|
143
121
|
type: z.ZodLiteral<"rule">;
|
144
|
-
rule: z.ZodString;
|
145
|
-
children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
146
|
-
type: "string";
|
147
|
-
value: string;
|
148
|
-
isComplete: true;
|
149
|
-
} | {
|
150
|
-
type: "boolean";
|
151
|
-
value: boolean;
|
152
|
-
isComplete: true;
|
153
|
-
} | {
|
154
|
-
type: "array";
|
155
|
-
isComplete: boolean;
|
156
|
-
items: ({
|
157
|
-
type: "string";
|
158
|
-
value: string;
|
159
|
-
isComplete: true;
|
160
|
-
} | {
|
161
|
-
type: "boolean";
|
162
|
-
value: boolean;
|
163
|
-
isComplete: true;
|
164
|
-
})[];
|
165
|
-
}>, Record<string, any>>;
|
166
122
|
isComplete: z.ZodBoolean;
|
167
|
-
}
|
123
|
+
} & {
|
168
124
|
rule: z.ZodLiteral<"git_override">;
|
169
125
|
children: z.ZodObject<{
|
170
126
|
module_name: z.ZodObject<{
|
@@ -239,7 +195,7 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
239
195
|
isComplete: true;
|
240
196
|
};
|
241
197
|
}>;
|
242
|
-
}
|
198
|
+
}, "strip", z.ZodTypeAny, {
|
243
199
|
type: "rule";
|
244
200
|
rule: "git_override";
|
245
201
|
children: {
|
@@ -302,32 +258,10 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
302
258
|
};
|
303
259
|
};
|
304
260
|
isComplete: boolean;
|
305
|
-
}>, z.ZodEffects<z.ZodObject<
|
261
|
+
}>, z.ZodEffects<z.ZodObject<{
|
306
262
|
type: z.ZodLiteral<"rule">;
|
307
|
-
rule: z.ZodString;
|
308
|
-
children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
309
|
-
type: "string";
|
310
|
-
value: string;
|
311
|
-
isComplete: true;
|
312
|
-
} | {
|
313
|
-
type: "boolean";
|
314
|
-
value: boolean;
|
315
|
-
isComplete: true;
|
316
|
-
} | {
|
317
|
-
type: "array";
|
318
|
-
isComplete: boolean;
|
319
|
-
items: ({
|
320
|
-
type: "string";
|
321
|
-
value: string;
|
322
|
-
isComplete: true;
|
323
|
-
} | {
|
324
|
-
type: "boolean";
|
325
|
-
value: boolean;
|
326
|
-
isComplete: true;
|
327
|
-
})[];
|
328
|
-
}>, Record<string, any>>;
|
329
263
|
isComplete: z.ZodBoolean;
|
330
|
-
}
|
264
|
+
} & {
|
331
265
|
rule: z.ZodLiteral<"single_version_override">;
|
332
266
|
children: z.ZodObject<{
|
333
267
|
module_name: z.ZodObject<{
|
@@ -402,7 +336,7 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
402
336
|
isComplete: true;
|
403
337
|
} | undefined;
|
404
338
|
}>;
|
405
|
-
}
|
339
|
+
}, "strip", z.ZodTypeAny, {
|
406
340
|
type: "rule";
|
407
341
|
rule: "single_version_override";
|
408
342
|
children: {
|
@@ -465,32 +399,10 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
465
399
|
} | undefined;
|
466
400
|
};
|
467
401
|
isComplete: boolean;
|
468
|
-
}>, z.ZodEffects<z.ZodObject<
|
402
|
+
}>, z.ZodEffects<z.ZodObject<{
|
469
403
|
type: z.ZodLiteral<"rule">;
|
470
|
-
rule: z.ZodString;
|
471
|
-
children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
472
|
-
type: "string";
|
473
|
-
value: string;
|
474
|
-
isComplete: true;
|
475
|
-
} | {
|
476
|
-
type: "boolean";
|
477
|
-
value: boolean;
|
478
|
-
isComplete: true;
|
479
|
-
} | {
|
480
|
-
type: "array";
|
481
|
-
isComplete: boolean;
|
482
|
-
items: ({
|
483
|
-
type: "string";
|
484
|
-
value: string;
|
485
|
-
isComplete: true;
|
486
|
-
} | {
|
487
|
-
type: "boolean";
|
488
|
-
value: boolean;
|
489
|
-
isComplete: true;
|
490
|
-
})[];
|
491
|
-
}>, Record<string, any>>;
|
492
404
|
isComplete: z.ZodBoolean;
|
493
|
-
}
|
405
|
+
} & {
|
494
406
|
rule: z.ZodEnum<["archive_override", "local_path_override"]>;
|
495
407
|
children: z.ZodObject<{
|
496
408
|
module_name: z.ZodObject<{
|
@@ -519,7 +431,7 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
519
431
|
isComplete: true;
|
520
432
|
};
|
521
433
|
}>;
|
522
|
-
}
|
434
|
+
}, "strip", z.ZodTypeAny, {
|
523
435
|
type: "rule";
|
524
436
|
rule: "archive_override" | "local_path_override";
|
525
437
|
children: {
|
@@ -555,32 +467,10 @@ export declare const RuleToBazelModulePackageDep: z.ZodUnion<[z.ZodEffects<z.Zod
|
|
555
467
|
}>]>;
|
556
468
|
export declare function processModulePkgDeps(packageDeps: BazelModulePackageDep[]): PackageDependency[];
|
557
469
|
export declare function toPackageDependencies(packageDeps: BazelModulePackageDep[]): PackageDependency[];
|
558
|
-
export declare const GitRepositoryToPackageDep: z.ZodEffects<z.ZodObject<
|
470
|
+
export declare const GitRepositoryToPackageDep: z.ZodEffects<z.ZodObject<{
|
559
471
|
type: z.ZodLiteral<"rule">;
|
560
|
-
rule: z.ZodString;
|
561
|
-
children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
562
|
-
type: "string";
|
563
|
-
value: string;
|
564
|
-
isComplete: true;
|
565
|
-
} | {
|
566
|
-
type: "boolean";
|
567
|
-
value: boolean;
|
568
|
-
isComplete: true;
|
569
|
-
} | {
|
570
|
-
type: "array";
|
571
|
-
isComplete: boolean;
|
572
|
-
items: ({
|
573
|
-
type: "string";
|
574
|
-
value: string;
|
575
|
-
isComplete: true;
|
576
|
-
} | {
|
577
|
-
type: "boolean";
|
578
|
-
value: boolean;
|
579
|
-
isComplete: true;
|
580
|
-
})[];
|
581
|
-
}>, Record<string, any>>;
|
582
472
|
isComplete: z.ZodBoolean;
|
583
|
-
}
|
473
|
+
} & {
|
584
474
|
rule: z.ZodLiteral<"git_repository">;
|
585
475
|
children: z.ZodObject<{
|
586
476
|
name: z.ZodObject<{
|
@@ -655,7 +545,7 @@ export declare const GitRepositoryToPackageDep: z.ZodEffects<z.ZodObject<z.objec
|
|
655
545
|
isComplete: true;
|
656
546
|
};
|
657
547
|
}>;
|
658
|
-
}
|
548
|
+
}, "strip", z.ZodTypeAny, {
|
659
549
|
type: "rule";
|
660
550
|
rule: "git_repository";
|
661
551
|
children: {
|
@@ -44,7 +44,7 @@ declare const CargoDeps: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.Zod
|
|
44
44
|
workspace?: boolean | undefined;
|
45
45
|
}>>;
|
46
46
|
export type CargoDeps = z.infer<typeof CargoDeps>;
|
47
|
-
export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString, unknown, string>, z.ZodObject<
|
47
|
+
export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString, unknown, string>, z.ZodObject<{
|
48
48
|
dependencies: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
49
49
|
/** Path on disk to the crate sources */
|
50
50
|
path: z.ZodOptional<z.ZodString>;
|
@@ -192,7 +192,7 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
|
|
192
192
|
registry?: string | undefined;
|
193
193
|
workspace?: boolean | undefined;
|
194
194
|
}>>>;
|
195
|
-
}
|
195
|
+
} & {
|
196
196
|
package: z.ZodOptional<z.ZodObject<{
|
197
197
|
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
198
198
|
workspace: z.ZodLiteral<true>;
|
@@ -463,7 +463,7 @@ export declare const CargoManifestSchema: z.ZodPipeline<z.ZodEffects<z.ZodString
|
|
463
463
|
workspace?: boolean | undefined;
|
464
464
|
}> | undefined;
|
465
465
|
}>>>;
|
466
|
-
}
|
466
|
+
}, "strip", z.ZodTypeAny, {
|
467
467
|
package?: {
|
468
468
|
version?: string | {
|
469
469
|
workspace: true;
|
@@ -33,13 +33,13 @@ type Orb = z.infer<typeof BaseOrb> & {
|
|
33
33
|
};
|
34
34
|
export declare const CircleCiOrb: z.ZodType<Orb>;
|
35
35
|
export type CircleCiOrb = z.infer<typeof CircleCiOrb>;
|
36
|
-
export declare const CircleCiFile: z.ZodPipeline<z.ZodEffects<z.ZodUnknown, unknown, unknown>, z.ZodObject<
|
36
|
+
export declare const CircleCiFile: z.ZodPipeline<z.ZodEffects<z.ZodUnknown, unknown, unknown>, z.ZodObject<{
|
37
37
|
executors: z.ZodCatch<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, string[]>, Record<string, any>>, string[], Record<string, any>>>;
|
38
38
|
jobs: z.ZodCatch<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, string[]>, Record<string, any>>, string[], Record<string, any>>>;
|
39
|
-
}
|
39
|
+
} & {
|
40
40
|
aliases: z.ZodCatch<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, string[], any[]>>;
|
41
41
|
orbs: z.ZodCatch<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, string | Orb>, Record<string, any>>>;
|
42
|
-
}
|
42
|
+
}, "strip", z.ZodTypeAny, {
|
43
43
|
aliases: string[];
|
44
44
|
jobs: string[];
|
45
45
|
executors: string[];
|
@@ -118,13 +118,12 @@ export declare const NamedRepo: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
118
118
|
}, {
|
119
119
|
type: "composer";
|
120
120
|
url: string;
|
121
|
-
}>, z.ZodObject<
|
121
|
+
}>, z.ZodObject<{
|
122
122
|
type: z.ZodEffects<z.ZodEnum<["vcs", "git"]>, "git", "git" | "vcs">;
|
123
123
|
url: z.ZodString;
|
124
|
-
|
125
|
-
}, {
|
124
|
+
} & {
|
126
125
|
name: z.ZodString;
|
127
|
-
}
|
126
|
+
}, "strip", z.ZodTypeAny, {
|
128
127
|
type: "git";
|
129
128
|
url: string;
|
130
129
|
name: string;
|
@@ -132,13 +131,12 @@ export declare const NamedRepo: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
132
131
|
type: "git" | "vcs";
|
133
132
|
url: string;
|
134
133
|
name: string;
|
135
|
-
}>, z.ZodObject<
|
134
|
+
}>, z.ZodObject<{
|
136
135
|
type: z.ZodLiteral<"path">;
|
137
136
|
url: z.ZodString;
|
138
|
-
|
139
|
-
}, {
|
137
|
+
} & {
|
140
138
|
name: z.ZodString;
|
141
|
-
}
|
139
|
+
}, "strip", z.ZodTypeAny, {
|
142
140
|
type: "path";
|
143
141
|
url: string;
|
144
142
|
name: string;
|
@@ -27,9 +27,7 @@ export declare const KubernetesResource: z.ZodObject<{
|
|
27
27
|
};
|
28
28
|
kind: string;
|
29
29
|
}>;
|
30
|
-
export declare const HelmRelease: z.ZodObject<
|
31
|
-
apiVersion: z.ZodString;
|
32
|
-
kind: z.ZodString;
|
30
|
+
export declare const HelmRelease: z.ZodObject<{
|
33
31
|
metadata: z.ZodObject<{
|
34
32
|
name: z.ZodString;
|
35
33
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -40,7 +38,7 @@ export declare const HelmRelease: z.ZodObject<z.objectUtil.extendShape<{
|
|
40
38
|
name: string;
|
41
39
|
namespace?: string | undefined;
|
42
40
|
}>;
|
43
|
-
}
|
41
|
+
} & {
|
44
42
|
apiVersion: z.ZodString;
|
45
43
|
kind: z.ZodLiteral<"HelmRelease">;
|
46
44
|
spec: z.ZodObject<{
|
@@ -150,7 +148,7 @@ export declare const HelmRelease: z.ZodObject<z.objectUtil.extendShape<{
|
|
150
148
|
kind?: string | undefined;
|
151
149
|
} | undefined;
|
152
150
|
}>;
|
153
|
-
}
|
151
|
+
}, "strip", z.ZodTypeAny, {
|
154
152
|
apiVersion: string;
|
155
153
|
metadata: {
|
156
154
|
name: string;
|
@@ -204,9 +202,7 @@ export declare const HelmRelease: z.ZodObject<z.objectUtil.extendShape<{
|
|
204
202
|
};
|
205
203
|
}>;
|
206
204
|
export type HelmRelease = z.infer<typeof HelmRelease>;
|
207
|
-
export declare const HelmRepository: z.ZodObject<
|
208
|
-
apiVersion: z.ZodString;
|
209
|
-
kind: z.ZodString;
|
205
|
+
export declare const HelmRepository: z.ZodObject<{
|
210
206
|
metadata: z.ZodObject<{
|
211
207
|
name: z.ZodString;
|
212
208
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -217,7 +213,7 @@ export declare const HelmRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
217
213
|
name: string;
|
218
214
|
namespace?: string | undefined;
|
219
215
|
}>;
|
220
|
-
}
|
216
|
+
} & {
|
221
217
|
apiVersion: z.ZodString;
|
222
218
|
kind: z.ZodLiteral<"HelmRepository">;
|
223
219
|
spec: z.ZodObject<{
|
@@ -230,7 +226,7 @@ export declare const HelmRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
230
226
|
url: string;
|
231
227
|
type?: "default" | "oci" | undefined;
|
232
228
|
}>;
|
233
|
-
}
|
229
|
+
}, "strip", z.ZodTypeAny, {
|
234
230
|
apiVersion: string;
|
235
231
|
metadata: {
|
236
232
|
name: string;
|
@@ -254,9 +250,7 @@ export declare const HelmRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
254
250
|
};
|
255
251
|
}>;
|
256
252
|
export type HelmRepository = z.infer<typeof HelmRepository>;
|
257
|
-
export declare const HelmChart: z.ZodObject<
|
258
|
-
apiVersion: z.ZodString;
|
259
|
-
kind: z.ZodString;
|
253
|
+
export declare const HelmChart: z.ZodObject<{
|
260
254
|
metadata: z.ZodObject<{
|
261
255
|
name: z.ZodString;
|
262
256
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -267,7 +261,7 @@ export declare const HelmChart: z.ZodObject<z.objectUtil.extendShape<{
|
|
267
261
|
name: string;
|
268
262
|
namespace?: string | undefined;
|
269
263
|
}>;
|
270
|
-
}
|
264
|
+
} & {
|
271
265
|
apiVersion: z.ZodString;
|
272
266
|
kind: z.ZodLiteral<"HelmChart">;
|
273
267
|
spec: z.ZodObject<{
|
@@ -298,7 +292,7 @@ export declare const HelmChart: z.ZodObject<z.objectUtil.extendShape<{
|
|
298
292
|
};
|
299
293
|
version?: string | undefined;
|
300
294
|
}>;
|
301
|
-
}
|
295
|
+
}, "strip", z.ZodTypeAny, {
|
302
296
|
apiVersion: string;
|
303
297
|
metadata: {
|
304
298
|
name: string;
|
@@ -330,9 +324,7 @@ export declare const HelmChart: z.ZodObject<z.objectUtil.extendShape<{
|
|
330
324
|
};
|
331
325
|
}>;
|
332
326
|
export type HelmChart = z.infer<typeof HelmChart>;
|
333
|
-
export declare const GitRepository: z.ZodObject<
|
334
|
-
apiVersion: z.ZodString;
|
335
|
-
kind: z.ZodString;
|
327
|
+
export declare const GitRepository: z.ZodObject<{
|
336
328
|
metadata: z.ZodObject<{
|
337
329
|
name: z.ZodString;
|
338
330
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -343,7 +335,7 @@ export declare const GitRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
343
335
|
name: string;
|
344
336
|
namespace?: string | undefined;
|
345
337
|
}>;
|
346
|
-
}
|
338
|
+
} & {
|
347
339
|
apiVersion: z.ZodString;
|
348
340
|
kind: z.ZodLiteral<"GitRepository">;
|
349
341
|
spec: z.ZodObject<{
|
@@ -371,7 +363,7 @@ export declare const GitRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
371
363
|
tag?: string | undefined;
|
372
364
|
} | undefined;
|
373
365
|
}>;
|
374
|
-
}
|
366
|
+
}, "strip", z.ZodTypeAny, {
|
375
367
|
apiVersion: string;
|
376
368
|
metadata: {
|
377
369
|
name: string;
|
@@ -400,9 +392,7 @@ export declare const GitRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
400
392
|
} | undefined;
|
401
393
|
};
|
402
394
|
}>;
|
403
|
-
export declare const OCIRepository: z.ZodObject<
|
404
|
-
apiVersion: z.ZodString;
|
405
|
-
kind: z.ZodString;
|
395
|
+
export declare const OCIRepository: z.ZodObject<{
|
406
396
|
metadata: z.ZodObject<{
|
407
397
|
name: z.ZodString;
|
408
398
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -413,7 +403,7 @@ export declare const OCIRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
413
403
|
name: string;
|
414
404
|
namespace?: string | undefined;
|
415
405
|
}>;
|
416
|
-
}
|
406
|
+
} & {
|
417
407
|
apiVersion: z.ZodString;
|
418
408
|
kind: z.ZodLiteral<"OCIRepository">;
|
419
409
|
spec: z.ZodObject<{
|
@@ -441,7 +431,7 @@ export declare const OCIRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
441
431
|
tag?: string | undefined;
|
442
432
|
} | undefined;
|
443
433
|
}>;
|
444
|
-
}
|
434
|
+
}, "strip", z.ZodTypeAny, {
|
445
435
|
apiVersion: string;
|
446
436
|
metadata: {
|
447
437
|
name: string;
|
@@ -470,9 +460,7 @@ export declare const OCIRepository: z.ZodObject<z.objectUtil.extendShape<{
|
|
470
460
|
} | undefined;
|
471
461
|
};
|
472
462
|
}>;
|
473
|
-
export declare const Kustomization: z.ZodObject<
|
474
|
-
apiVersion: z.ZodString;
|
475
|
-
kind: z.ZodString;
|
463
|
+
export declare const Kustomization: z.ZodObject<{
|
476
464
|
metadata: z.ZodObject<{
|
477
465
|
name: z.ZodString;
|
478
466
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -483,7 +471,7 @@ export declare const Kustomization: z.ZodObject<z.objectUtil.extendShape<{
|
|
483
471
|
name: string;
|
484
472
|
namespace?: string | undefined;
|
485
473
|
}>;
|
486
|
-
}
|
474
|
+
} & {
|
487
475
|
apiVersion: z.ZodString;
|
488
476
|
kind: z.ZodLiteral<"Kustomization">;
|
489
477
|
spec: z.ZodObject<{
|
@@ -518,7 +506,7 @@ export declare const Kustomization: z.ZodObject<z.objectUtil.extendShape<{
|
|
518
506
|
newTag?: string | undefined;
|
519
507
|
}[] | undefined;
|
520
508
|
}>;
|
521
|
-
}
|
509
|
+
}, "strip", z.ZodTypeAny, {
|
522
510
|
apiVersion: string;
|
523
511
|
metadata: {
|
524
512
|
name: string;
|
@@ -549,9 +537,7 @@ export declare const Kustomization: z.ZodObject<z.objectUtil.extendShape<{
|
|
549
537
|
}[] | undefined;
|
550
538
|
};
|
551
539
|
}>;
|
552
|
-
export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
553
|
-
apiVersion: z.ZodString;
|
554
|
-
kind: z.ZodString;
|
540
|
+
export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
555
541
|
metadata: z.ZodObject<{
|
556
542
|
name: z.ZodString;
|
557
543
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -562,7 +548,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
562
548
|
name: string;
|
563
549
|
namespace?: string | undefined;
|
564
550
|
}>;
|
565
|
-
}
|
551
|
+
} & {
|
566
552
|
apiVersion: z.ZodString;
|
567
553
|
kind: z.ZodLiteral<"HelmRelease">;
|
568
554
|
spec: z.ZodObject<{
|
@@ -672,7 +658,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
672
658
|
kind?: string | undefined;
|
673
659
|
} | undefined;
|
674
660
|
}>;
|
675
|
-
}
|
661
|
+
}, "strip", z.ZodTypeAny, {
|
676
662
|
apiVersion: string;
|
677
663
|
metadata: {
|
678
664
|
name: string;
|
@@ -724,9 +710,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
724
710
|
kind?: string | undefined;
|
725
711
|
} | undefined;
|
726
712
|
};
|
727
|
-
}>, z.ZodObject<
|
728
|
-
apiVersion: z.ZodString;
|
729
|
-
kind: z.ZodString;
|
713
|
+
}>, z.ZodObject<{
|
730
714
|
metadata: z.ZodObject<{
|
731
715
|
name: z.ZodString;
|
732
716
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -737,7 +721,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
737
721
|
name: string;
|
738
722
|
namespace?: string | undefined;
|
739
723
|
}>;
|
740
|
-
}
|
724
|
+
} & {
|
741
725
|
apiVersion: z.ZodString;
|
742
726
|
kind: z.ZodLiteral<"HelmRepository">;
|
743
727
|
spec: z.ZodObject<{
|
@@ -750,7 +734,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
750
734
|
url: string;
|
751
735
|
type?: "default" | "oci" | undefined;
|
752
736
|
}>;
|
753
|
-
}
|
737
|
+
}, "strip", z.ZodTypeAny, {
|
754
738
|
apiVersion: string;
|
755
739
|
metadata: {
|
756
740
|
name: string;
|
@@ -772,9 +756,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
772
756
|
url: string;
|
773
757
|
type?: "default" | "oci" | undefined;
|
774
758
|
};
|
775
|
-
}>]>, z.ZodObject<
|
776
|
-
apiVersion: z.ZodString;
|
777
|
-
kind: z.ZodString;
|
759
|
+
}>]>, z.ZodObject<{
|
778
760
|
metadata: z.ZodObject<{
|
779
761
|
name: z.ZodString;
|
780
762
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -785,7 +767,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
785
767
|
name: string;
|
786
768
|
namespace?: string | undefined;
|
787
769
|
}>;
|
788
|
-
}
|
770
|
+
} & {
|
789
771
|
apiVersion: z.ZodString;
|
790
772
|
kind: z.ZodLiteral<"HelmChart">;
|
791
773
|
spec: z.ZodObject<{
|
@@ -816,7 +798,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
816
798
|
};
|
817
799
|
version?: string | undefined;
|
818
800
|
}>;
|
819
|
-
}
|
801
|
+
}, "strip", z.ZodTypeAny, {
|
820
802
|
apiVersion: string;
|
821
803
|
metadata: {
|
822
804
|
name: string;
|
@@ -846,9 +828,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
846
828
|
};
|
847
829
|
version?: string | undefined;
|
848
830
|
};
|
849
|
-
}>]>, z.ZodObject<
|
850
|
-
apiVersion: z.ZodString;
|
851
|
-
kind: z.ZodString;
|
831
|
+
}>]>, z.ZodObject<{
|
852
832
|
metadata: z.ZodObject<{
|
853
833
|
name: z.ZodString;
|
854
834
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -859,7 +839,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
859
839
|
name: string;
|
860
840
|
namespace?: string | undefined;
|
861
841
|
}>;
|
862
|
-
}
|
842
|
+
} & {
|
863
843
|
apiVersion: z.ZodString;
|
864
844
|
kind: z.ZodLiteral<"GitRepository">;
|
865
845
|
spec: z.ZodObject<{
|
@@ -887,7 +867,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
887
867
|
tag?: string | undefined;
|
888
868
|
} | undefined;
|
889
869
|
}>;
|
890
|
-
}
|
870
|
+
}, "strip", z.ZodTypeAny, {
|
891
871
|
apiVersion: string;
|
892
872
|
metadata: {
|
893
873
|
name: string;
|
@@ -915,9 +895,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
915
895
|
tag?: string | undefined;
|
916
896
|
} | undefined;
|
917
897
|
};
|
918
|
-
}>]>, z.ZodObject<
|
919
|
-
apiVersion: z.ZodString;
|
920
|
-
kind: z.ZodString;
|
898
|
+
}>]>, z.ZodObject<{
|
921
899
|
metadata: z.ZodObject<{
|
922
900
|
name: z.ZodString;
|
923
901
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -928,7 +906,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
928
906
|
name: string;
|
929
907
|
namespace?: string | undefined;
|
930
908
|
}>;
|
931
|
-
}
|
909
|
+
} & {
|
932
910
|
apiVersion: z.ZodString;
|
933
911
|
kind: z.ZodLiteral<"OCIRepository">;
|
934
912
|
spec: z.ZodObject<{
|
@@ -956,7 +934,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
956
934
|
tag?: string | undefined;
|
957
935
|
} | undefined;
|
958
936
|
}>;
|
959
|
-
}
|
937
|
+
}, "strip", z.ZodTypeAny, {
|
960
938
|
apiVersion: string;
|
961
939
|
metadata: {
|
962
940
|
name: string;
|
@@ -984,9 +962,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
984
962
|
tag?: string | undefined;
|
985
963
|
} | undefined;
|
986
964
|
};
|
987
|
-
}>]>, z.ZodObject<
|
988
|
-
apiVersion: z.ZodString;
|
989
|
-
kind: z.ZodString;
|
965
|
+
}>]>, z.ZodObject<{
|
990
966
|
metadata: z.ZodObject<{
|
991
967
|
name: z.ZodString;
|
992
968
|
namespace: z.ZodOptional<z.ZodString>;
|
@@ -997,7 +973,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
997
973
|
name: string;
|
998
974
|
namespace?: string | undefined;
|
999
975
|
}>;
|
1000
|
-
}
|
976
|
+
} & {
|
1001
977
|
apiVersion: z.ZodString;
|
1002
978
|
kind: z.ZodLiteral<"Kustomization">;
|
1003
979
|
spec: z.ZodObject<{
|
@@ -1032,7 +1008,7 @@ export declare const FluxResource: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnio
|
|
1032
1008
|
newTag?: string | undefined;
|
1033
1009
|
}[] | undefined;
|
1034
1010
|
}>;
|
1035
|
-
}
|
1011
|
+
}, "strip", z.ZodTypeAny, {
|
1036
1012
|
apiVersion: string;
|
1037
1013
|
metadata: {
|
1038
1014
|
name: string;
|