renovate 39.181.0 → 40.0.0-next.10
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/schema.d.ts +2 -2
- package/dist/modules/datasource/custom/schema.d.ts +5 -5
- package/dist/modules/datasource/deno/schema.d.ts +8 -8
- package/dist/modules/datasource/docker/schema.d.ts +32 -32
- package/dist/modules/datasource/galaxy/schema.d.ts +1 -1
- package/dist/modules/datasource/galaxy-collection/schema.d.ts +3 -3
- package/dist/modules/datasource/gitea-releases/schema.d.ts +4 -4
- package/dist/modules/datasource/gitea-tags/schema.d.ts +4 -4
- package/dist/modules/datasource/hex/schema.d.ts +11 -11
- package/dist/modules/datasource/packagist/schema.d.ts +30 -30
- package/dist/modules/manager/argocd/schema.d.ts +10 -10
- package/dist/modules/manager/azure-pipelines/schema.d.ts +10 -10
- package/dist/modules/manager/batect/schema.d.ts +6 -6
- package/dist/modules/manager/bazel/rules/docker.d.ts +9 -9
- package/dist/modules/manager/bazel/rules/git.d.ts +10 -10
- package/dist/modules/manager/bazel/rules/go.d.ts +5 -5
- package/dist/modules/manager/bazel/rules/oci.d.ts +3 -3
- package/dist/modules/manager/bazel-module/parser/fragments.d.ts +40 -40
- package/dist/modules/manager/bazel-module/parser/maven.d.ts +27 -27
- package/dist/modules/manager/bazel-module/parser/oci.d.ts +17 -17
- package/dist/modules/manager/bazel-module/rules.d.ts +40 -40
- package/dist/modules/manager/cargo/schema.d.ts +100 -100
- package/dist/modules/manager/circleci/schema.d.ts +6 -6
- package/dist/modules/manager/composer/schema.d.ts +40 -40
- package/dist/modules/manager/crossplane/schema.d.ts +2 -2
- package/dist/modules/manager/custom/jsonata/schema.d.ts +7 -7
- package/dist/modules/manager/fingerprint.generated.js +66 -66
- package/dist/modules/manager/fingerprint.generated.js.map +1 -1
- package/dist/modules/manager/fleet/schema.d.ts +12 -12
- package/dist/modules/manager/flux/schema.d.ts +50 -50
- package/dist/modules/manager/glasskube/schema.d.ts +8 -8
- package/dist/modules/manager/nix/schema.d.ts +24 -24
- package/dist/modules/manager/npm/schema.d.ts +13 -13
- package/dist/modules/manager/nuget/schema.d.ts +8 -8
- package/dist/modules/manager/ocb/schema.d.ts +6 -6
- package/dist/modules/manager/pep621/schema.d.ts +55 -55
- package/dist/modules/manager/poetry/schema.d.ts +48 -48
- package/dist/modules/manager/sveltos/schema.d.ts +12 -12
- package/dist/modules/manager/vendir/schema.d.ts +27 -27
- package/dist/modules/platform/api.d.ts +1 -1
- package/dist/modules/platform/bitbucket/schema.d.ts +17 -17
- package/dist/modules/platform/gitea/schema.d.ts +8 -8
- package/dist/modules/platform/github/issue.d.ts +12 -12
- package/dist/modules/platform/github/schema.d.ts +65 -65
- package/dist/modules/platform/scm.d.ts +1 -1
- package/dist/util/cache/repository/impl/base.d.ts +1 -1
- package/dist/util/github/graphql/query-adapters/releases-query-adapter.d.ts +5 -5
- package/dist/util/http/cache/schema.d.ts +2 -2
- package/dist/util/http/legacy.js +4 -0
- package/dist/util/http/legacy.js.map +1 -1
- package/package.json +17 -19
@@ -22,52 +22,52 @@ export declare const ComposerRelease: z.ZodObject<{
|
|
22
22
|
}>>>;
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
24
24
|
time: import("../../../util/timestamp").Timestamp | null;
|
25
|
+
version: string;
|
25
26
|
source: {
|
26
27
|
url: string;
|
27
28
|
} | null;
|
29
|
+
homepage: string | null;
|
28
30
|
require: {
|
29
31
|
php: string;
|
30
32
|
} | null;
|
31
|
-
version: string;
|
32
|
-
homepage: string | null;
|
33
33
|
}, {
|
34
34
|
version: string;
|
35
35
|
time?: unknown;
|
36
36
|
source?: unknown;
|
37
|
-
require?: unknown;
|
38
37
|
homepage?: unknown;
|
38
|
+
require?: unknown;
|
39
39
|
}>;
|
40
40
|
export type ComposerRelease = z.infer<typeof ComposerRelease>;
|
41
41
|
export declare const ComposerReleases: z.ZodCatch<z.ZodUnion<[z.ZodPipeline<z.ZodEffects<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, Record<string, unknown>[], Record<string, unknown>[]>, z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
42
42
|
time: import("../../../util/timestamp").Timestamp | null;
|
43
|
+
version: string;
|
43
44
|
source: {
|
44
45
|
url: string;
|
45
46
|
} | null;
|
47
|
+
homepage: string | null;
|
46
48
|
require: {
|
47
49
|
php: string;
|
48
50
|
} | null;
|
49
|
-
version: string;
|
50
|
-
homepage: string | null;
|
51
51
|
}[], any[]>>, z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
52
52
|
time: import("../../../util/timestamp").Timestamp | null;
|
53
|
+
version: string;
|
53
54
|
source: {
|
54
55
|
url: string;
|
55
56
|
} | null;
|
57
|
+
homepage: string | null;
|
56
58
|
require: {
|
57
59
|
php: string;
|
58
60
|
} | null;
|
59
|
-
version: string;
|
60
|
-
homepage: string | null;
|
61
61
|
}>, Record<string, any>>, {
|
62
62
|
time: import("../../../util/timestamp").Timestamp | null;
|
63
|
+
version: string;
|
63
64
|
source: {
|
64
65
|
url: string;
|
65
66
|
} | null;
|
67
|
+
homepage: string | null;
|
66
68
|
require: {
|
67
69
|
php: string;
|
68
70
|
} | null;
|
69
|
-
version: string;
|
70
|
-
homepage: string | null;
|
71
71
|
}[], Record<string, any>>]>>;
|
72
72
|
export type ComposerReleases = z.infer<typeof ComposerReleases>;
|
73
73
|
export declare const ComposerPackagesResponse: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
@@ -96,14 +96,14 @@ export declare const ComposerPackagesResponse: z.ZodEffects<z.ZodEffects<z.ZodOb
|
|
96
96
|
};
|
97
97
|
}>, {
|
98
98
|
time: import("../../../util/timestamp").Timestamp | null;
|
99
|
+
version: string;
|
99
100
|
source: {
|
100
101
|
url: string;
|
101
102
|
} | null;
|
103
|
+
homepage: string | null;
|
102
104
|
require: {
|
103
105
|
php: string;
|
104
106
|
} | null;
|
105
|
-
version: string;
|
106
|
-
homepage: string | null;
|
107
107
|
}[], {
|
108
108
|
packageName: string;
|
109
109
|
packagesResponse: {
|
@@ -168,26 +168,26 @@ export type RegistryFile = z.infer<typeof RegistryFile>;
|
|
168
168
|
export declare const PackagesResponse: z.ZodObject<{
|
169
169
|
packages: z.ZodCatch<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
170
170
|
time: import("../../../util/timestamp").Timestamp | null;
|
171
|
+
version: string;
|
171
172
|
source: {
|
172
173
|
url: string;
|
173
174
|
} | null;
|
175
|
+
homepage: string | null;
|
174
176
|
require: {
|
175
177
|
php: string;
|
176
178
|
} | null;
|
177
|
-
version: string;
|
178
|
-
homepage: string | null;
|
179
179
|
}[]>, Record<string, any>>>;
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
181
181
|
packages: Record<string, {
|
182
182
|
time: import("../../../util/timestamp").Timestamp | null;
|
183
|
+
version: string;
|
183
184
|
source: {
|
184
185
|
url: string;
|
185
186
|
} | null;
|
187
|
+
homepage: string | null;
|
186
188
|
require: {
|
187
189
|
php: string;
|
188
190
|
} | null;
|
189
|
-
version: string;
|
190
|
-
homepage: string | null;
|
191
191
|
}[]>;
|
192
192
|
}, {
|
193
193
|
packages?: unknown;
|
@@ -196,14 +196,14 @@ export type PackagesResponse = z.infer<typeof PackagesResponse>;
|
|
196
196
|
export declare const PackagistFile: z.ZodObject<z.objectUtil.extendShape<{
|
197
197
|
packages: z.ZodCatch<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
198
198
|
time: import("../../../util/timestamp").Timestamp | null;
|
199
|
+
version: string;
|
199
200
|
source: {
|
200
201
|
url: string;
|
201
202
|
} | null;
|
203
|
+
homepage: string | null;
|
202
204
|
require: {
|
203
205
|
php: string;
|
204
206
|
} | null;
|
205
|
-
version: string;
|
206
|
-
homepage: string | null;
|
207
207
|
}[]>, Record<string, any>>>;
|
208
208
|
}, {
|
209
209
|
providers: z.ZodCatch<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
@@ -216,14 +216,14 @@ export declare const PackagistFile: z.ZodObject<z.objectUtil.extendShape<{
|
|
216
216
|
}>, "strip", z.ZodTypeAny, {
|
217
217
|
packages: Record<string, {
|
218
218
|
time: import("../../../util/timestamp").Timestamp | null;
|
219
|
+
version: string;
|
219
220
|
source: {
|
220
221
|
url: string;
|
221
222
|
} | null;
|
223
|
+
homepage: string | null;
|
222
224
|
require: {
|
223
225
|
php: string;
|
224
226
|
} | null;
|
225
|
-
version: string;
|
226
|
-
homepage: string | null;
|
227
227
|
}[]>;
|
228
228
|
providers: {
|
229
229
|
[k: string]: string | null;
|
@@ -236,14 +236,14 @@ export type PackagistFile = z.infer<typeof PackagistFile>;
|
|
236
236
|
export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
237
237
|
packages: z.ZodCatch<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
238
238
|
time: import("../../../util/timestamp").Timestamp | null;
|
239
|
+
version: string;
|
239
240
|
source: {
|
240
241
|
url: string;
|
241
242
|
} | null;
|
243
|
+
homepage: string | null;
|
242
244
|
require: {
|
243
245
|
php: string;
|
244
246
|
} | null;
|
245
|
-
version: string;
|
246
|
-
homepage: string | null;
|
247
247
|
}[]>, Record<string, any>>>;
|
248
248
|
}, {
|
249
249
|
providers: z.ZodCatch<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
|
@@ -275,21 +275,21 @@ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRe
|
|
275
275
|
"metadata-url": z.ZodCatch<z.ZodNullable<z.ZodString>>;
|
276
276
|
"available-packages": z.ZodCatch<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
277
277
|
}>, "strip", z.ZodTypeAny, {
|
278
|
-
includes: {
|
279
|
-
key: string;
|
280
|
-
hash: string | null;
|
281
|
-
}[];
|
282
278
|
packages: Record<string, {
|
283
279
|
time: import("../../../util/timestamp").Timestamp | null;
|
280
|
+
version: string;
|
284
281
|
source: {
|
285
282
|
url: string;
|
286
283
|
} | null;
|
284
|
+
homepage: string | null;
|
287
285
|
require: {
|
288
286
|
php: string;
|
289
287
|
} | null;
|
290
|
-
version: string;
|
291
|
-
homepage: string | null;
|
292
288
|
}[]>;
|
289
|
+
includes: {
|
290
|
+
key: string;
|
291
|
+
hash: string | null;
|
292
|
+
}[];
|
293
293
|
providers: {
|
294
294
|
[k: string]: string | null;
|
295
295
|
};
|
@@ -302,8 +302,8 @@ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRe
|
|
302
302
|
"metadata-url": string | null;
|
303
303
|
"available-packages": string[] | null;
|
304
304
|
}, {
|
305
|
-
includes?: unknown;
|
306
305
|
packages?: unknown;
|
306
|
+
includes?: unknown;
|
307
307
|
providers?: unknown;
|
308
308
|
"provider-includes"?: unknown;
|
309
309
|
"providers-lazy-url"?: unknown;
|
@@ -313,14 +313,14 @@ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRe
|
|
313
313
|
}>>, {
|
314
314
|
packages: Record<string, {
|
315
315
|
time: import("../../../util/timestamp").Timestamp | null;
|
316
|
+
version: string;
|
316
317
|
source: {
|
317
318
|
url: string;
|
318
319
|
} | null;
|
320
|
+
homepage: string | null;
|
319
321
|
require: {
|
320
322
|
php: string;
|
321
323
|
} | null;
|
322
|
-
version: string;
|
323
|
-
homepage: string | null;
|
324
324
|
}[]>;
|
325
325
|
includesFiles: {
|
326
326
|
key: string;
|
@@ -172,8 +172,8 @@ export declare const Application: z.ZodObject<z.objectUtil.extendShape<{
|
|
172
172
|
sources?: any[] | undefined;
|
173
173
|
}>;
|
174
174
|
}>, "strip", z.ZodTypeAny, {
|
175
|
-
kind: "Application";
|
176
175
|
apiVersion: string;
|
176
|
+
kind: "Application";
|
177
177
|
spec: {
|
178
178
|
source?: {
|
179
179
|
repoURL: string;
|
@@ -193,8 +193,8 @@ export declare const Application: z.ZodObject<z.objectUtil.extendShape<{
|
|
193
193
|
}[] | undefined;
|
194
194
|
};
|
195
195
|
}, {
|
196
|
-
kind: "Application";
|
197
196
|
apiVersion: string;
|
197
|
+
kind: "Application";
|
198
198
|
spec: {
|
199
199
|
source?: {
|
200
200
|
repoURL: string;
|
@@ -345,8 +345,8 @@ export declare const ApplicationSet: z.ZodObject<z.objectUtil.extendShape<{
|
|
345
345
|
};
|
346
346
|
}>;
|
347
347
|
}>, "strip", z.ZodTypeAny, {
|
348
|
-
kind: "ApplicationSet";
|
349
348
|
apiVersion: string;
|
349
|
+
kind: "ApplicationSet";
|
350
350
|
spec: {
|
351
351
|
template: {
|
352
352
|
spec: {
|
@@ -370,8 +370,8 @@ export declare const ApplicationSet: z.ZodObject<z.objectUtil.extendShape<{
|
|
370
370
|
};
|
371
371
|
};
|
372
372
|
}, {
|
373
|
-
kind: "ApplicationSet";
|
374
373
|
apiVersion: string;
|
374
|
+
kind: "ApplicationSet";
|
375
375
|
spec: {
|
376
376
|
template: {
|
377
377
|
spec: {
|
@@ -456,8 +456,8 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
|
|
456
456
|
sources?: any[] | undefined;
|
457
457
|
}>;
|
458
458
|
}>, "strip", z.ZodTypeAny, {
|
459
|
-
kind: "Application";
|
460
459
|
apiVersion: string;
|
460
|
+
kind: "Application";
|
461
461
|
spec: {
|
462
462
|
source?: {
|
463
463
|
repoURL: string;
|
@@ -477,8 +477,8 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
|
|
477
477
|
}[] | undefined;
|
478
478
|
};
|
479
479
|
}, {
|
480
|
-
kind: "Application";
|
481
480
|
apiVersion: string;
|
481
|
+
kind: "Application";
|
482
482
|
spec: {
|
483
483
|
source?: {
|
484
484
|
repoURL: string;
|
@@ -628,8 +628,8 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
|
|
628
628
|
};
|
629
629
|
}>;
|
630
630
|
}>, "strip", z.ZodTypeAny, {
|
631
|
-
kind: "ApplicationSet";
|
632
631
|
apiVersion: string;
|
632
|
+
kind: "ApplicationSet";
|
633
633
|
spec: {
|
634
634
|
template: {
|
635
635
|
spec: {
|
@@ -653,8 +653,8 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
|
|
653
653
|
};
|
654
654
|
};
|
655
655
|
}, {
|
656
|
-
kind: "ApplicationSet";
|
657
656
|
apiVersion: string;
|
657
|
+
kind: "ApplicationSet";
|
658
658
|
spec: {
|
659
659
|
template: {
|
660
660
|
spec: {
|
@@ -673,8 +673,8 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
|
|
673
673
|
}>]>;
|
674
674
|
export type ApplicationDefinition = z.infer<typeof ApplicationDefinition>;
|
675
675
|
export declare const ApplicationDefinitionSchema: z.ZodPipeline<z.ZodEffects<z.ZodString, import("type-fest").JsonArray, string>, z.ZodEffects<z.ZodArray<z.ZodAny, "many">, ({
|
676
|
-
kind: "Application";
|
677
676
|
apiVersion: string;
|
677
|
+
kind: "Application";
|
678
678
|
spec: {
|
679
679
|
source?: {
|
680
680
|
repoURL: string;
|
@@ -694,8 +694,8 @@ export declare const ApplicationDefinitionSchema: z.ZodPipeline<z.ZodEffects<z.Z
|
|
694
694
|
}[] | undefined;
|
695
695
|
};
|
696
696
|
} | {
|
697
|
-
kind: "ApplicationSet";
|
698
697
|
apiVersion: string;
|
698
|
+
kind: "ApplicationSet";
|
699
699
|
spec: {
|
700
700
|
template: {
|
701
701
|
spec: {
|
@@ -1287,19 +1287,19 @@ export declare const Repository: z.ZodObject<{
|
|
1287
1287
|
name: z.ZodString;
|
1288
1288
|
ref: z.ZodOptional<z.ZodString>;
|
1289
1289
|
}, "strip", z.ZodTypeAny, {
|
1290
|
-
name: string;
|
1291
1290
|
type: "bitbucket" | "github" | "git";
|
1291
|
+
name: string;
|
1292
1292
|
ref?: string | undefined;
|
1293
1293
|
}, {
|
1294
|
-
name: string;
|
1295
1294
|
type: "bitbucket" | "github" | "git";
|
1295
|
+
name: string;
|
1296
1296
|
ref?: string | undefined;
|
1297
1297
|
}>;
|
1298
1298
|
export type Repository = z.infer<typeof Repository>;
|
1299
1299
|
export declare const Resources: z.ZodObject<{
|
1300
1300
|
repositories: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
1301
|
-
name: string;
|
1302
1301
|
type: "bitbucket" | "github" | "git";
|
1302
|
+
name: string;
|
1303
1303
|
ref?: string | undefined;
|
1304
1304
|
}[], any[]>>;
|
1305
1305
|
containers: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
@@ -1307,8 +1307,8 @@ export declare const Resources: z.ZodObject<{
|
|
1307
1307
|
}[], any[]>>;
|
1308
1308
|
}, "strip", z.ZodTypeAny, {
|
1309
1309
|
repositories?: {
|
1310
|
-
name: string;
|
1311
1310
|
type: "bitbucket" | "github" | "git";
|
1311
|
+
name: string;
|
1312
1312
|
ref?: string | undefined;
|
1313
1313
|
}[] | undefined;
|
1314
1314
|
containers?: {
|
@@ -1322,8 +1322,8 @@ export type Resources = z.infer<typeof Resources>;
|
|
1322
1322
|
export declare const AzurePipelines: z.ZodObject<{
|
1323
1323
|
resources: z.ZodOptional<z.ZodObject<{
|
1324
1324
|
repositories: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
1325
|
-
name: string;
|
1326
1325
|
type: "bitbucket" | "github" | "git";
|
1326
|
+
name: string;
|
1327
1327
|
ref?: string | undefined;
|
1328
1328
|
}[], any[]>>;
|
1329
1329
|
containers: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
@@ -1331,8 +1331,8 @@ export declare const AzurePipelines: z.ZodObject<{
|
|
1331
1331
|
}[], any[]>>;
|
1332
1332
|
}, "strip", z.ZodTypeAny, {
|
1333
1333
|
repositories?: {
|
1334
|
-
name: string;
|
1335
1334
|
type: "bitbucket" | "github" | "git";
|
1335
|
+
name: string;
|
1336
1336
|
ref?: string | undefined;
|
1337
1337
|
}[] | undefined;
|
1338
1338
|
containers?: {
|
@@ -1683,8 +1683,8 @@ export declare const AzurePipelines: z.ZodObject<{
|
|
1683
1683
|
})[] | undefined;
|
1684
1684
|
resources?: {
|
1685
1685
|
repositories?: {
|
1686
|
-
name: string;
|
1687
1686
|
type: "bitbucket" | "github" | "git";
|
1687
|
+
name: string;
|
1688
1688
|
ref?: string | undefined;
|
1689
1689
|
}[] | undefined;
|
1690
1690
|
containers?: {
|
@@ -1816,8 +1816,8 @@ export type AzurePipelines = z.infer<typeof AzurePipelines>;
|
|
1816
1816
|
export declare const AzurePipelinesYaml: z.ZodPipeline<z.ZodEffects<z.ZodString, string | number | boolean | import("type-fest").JsonObject | import("type-fest").JsonValue[] | readonly import("type-fest").JsonValue[] | null, string>, z.ZodObject<{
|
1817
1817
|
resources: z.ZodOptional<z.ZodObject<{
|
1818
1818
|
repositories: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
1819
|
-
name: string;
|
1820
1819
|
type: "bitbucket" | "github" | "git";
|
1820
|
+
name: string;
|
1821
1821
|
ref?: string | undefined;
|
1822
1822
|
}[], any[]>>;
|
1823
1823
|
containers: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, {
|
@@ -1825,8 +1825,8 @@ export declare const AzurePipelinesYaml: z.ZodPipeline<z.ZodEffects<z.ZodString,
|
|
1825
1825
|
}[], any[]>>;
|
1826
1826
|
}, "strip", z.ZodTypeAny, {
|
1827
1827
|
repositories?: {
|
1828
|
-
name: string;
|
1829
1828
|
type: "bitbucket" | "github" | "git";
|
1829
|
+
name: string;
|
1830
1830
|
ref?: string | undefined;
|
1831
1831
|
}[] | undefined;
|
1832
1832
|
containers?: {
|
@@ -2177,8 +2177,8 @@ export declare const AzurePipelinesYaml: z.ZodPipeline<z.ZodEffects<z.ZodString,
|
|
2177
2177
|
})[] | undefined;
|
2178
2178
|
resources?: {
|
2179
2179
|
repositories?: {
|
2180
|
-
name: string;
|
2181
2180
|
type: "bitbucket" | "github" | "git";
|
2181
|
+
name: string;
|
2182
2182
|
ref?: string | undefined;
|
2183
2183
|
}[] | undefined;
|
2184
2184
|
containers?: {
|
@@ -4,31 +4,31 @@ export declare const BatectConfigSchema: z.ZodEffects<z.ZodPipeline<z.ZodEffects
|
|
4
4
|
containers: z.ZodCatch<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, string>, Record<string, any>>, string[], Record<string, any>>>;
|
5
5
|
include: z.ZodCatch<z.ZodEffects<z.ZodArray<z.ZodAny, "many">, ({
|
6
6
|
type: "git";
|
7
|
-
ref: string;
|
8
7
|
repo: string;
|
8
|
+
ref: string;
|
9
9
|
} | {
|
10
|
-
type: "file";
|
11
10
|
path: string;
|
11
|
+
type: "file";
|
12
12
|
} | {
|
13
13
|
type: "file";
|
14
14
|
path: string;
|
15
15
|
})[], any[]>>;
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
17
|
+
containers: string[];
|
17
18
|
include: ({
|
18
19
|
type: "git";
|
19
|
-
ref: string;
|
20
20
|
repo: string;
|
21
|
+
ref: string;
|
21
22
|
} | {
|
22
|
-
type: "file";
|
23
23
|
path: string;
|
24
|
+
type: "file";
|
24
25
|
} | {
|
25
26
|
type: "file";
|
26
27
|
path: string;
|
27
28
|
})[];
|
28
|
-
containers: string[];
|
29
29
|
}, {
|
30
|
-
include?: unknown;
|
31
30
|
containers?: unknown;
|
31
|
+
include?: unknown;
|
32
32
|
}>>, {
|
33
33
|
imageDependencies: PackageDependency<Record<string, any>>[];
|
34
34
|
bundleDependencies: PackageDependency<Record<string, any>>[];
|
@@ -9,24 +9,24 @@ export declare const DockerTarget: z.ZodEffects<z.ZodObject<{
|
|
9
9
|
repository: z.ZodString;
|
10
10
|
registry: z.ZodString;
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
12
|
-
name: string;
|
13
|
-
registry: string;
|
14
|
-
tag: string;
|
15
12
|
repository: string;
|
16
13
|
digest: string;
|
17
|
-
rule: "container_pull" | "_container_pull";
|
18
|
-
}, {
|
19
14
|
name: string;
|
20
|
-
registry: string;
|
21
15
|
tag: string;
|
16
|
+
registry: string;
|
17
|
+
rule: "container_pull" | "_container_pull";
|
18
|
+
}, {
|
22
19
|
repository: string;
|
23
20
|
digest: string;
|
24
|
-
rule: "container_pull" | "_container_pull";
|
25
|
-
}>, PackageDependency<Record<string, any>>[], {
|
26
21
|
name: string;
|
27
|
-
registry: string;
|
28
22
|
tag: string;
|
23
|
+
registry: string;
|
24
|
+
rule: "container_pull" | "_container_pull";
|
25
|
+
}>, PackageDependency<Record<string, any>>[], {
|
29
26
|
repository: string;
|
30
27
|
digest: string;
|
28
|
+
name: string;
|
29
|
+
tag: string;
|
30
|
+
registry: string;
|
31
31
|
rule: "container_pull" | "_container_pull";
|
32
32
|
}>;
|
@@ -9,32 +9,32 @@ export declare const GitTarget: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
9
9
|
remote: z.ZodString;
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
11
11
|
name: string;
|
12
|
-
remote: string;
|
13
12
|
rule: "git_repository" | "_git_repository";
|
14
|
-
|
13
|
+
remote: string;
|
15
14
|
commit?: string | undefined;
|
15
|
+
tag?: string | undefined;
|
16
16
|
}, {
|
17
17
|
name: string;
|
18
|
-
remote: string;
|
19
18
|
rule: "git_repository" | "_git_repository";
|
20
|
-
|
19
|
+
remote: string;
|
21
20
|
commit?: string | undefined;
|
21
|
+
tag?: string | undefined;
|
22
22
|
}>, {
|
23
23
|
name: string;
|
24
|
-
remote: string;
|
25
24
|
rule: "git_repository" | "_git_repository";
|
26
|
-
|
25
|
+
remote: string;
|
27
26
|
commit?: string | undefined;
|
27
|
+
tag?: string | undefined;
|
28
28
|
}, {
|
29
29
|
name: string;
|
30
|
-
remote: string;
|
31
30
|
rule: "git_repository" | "_git_repository";
|
32
|
-
|
31
|
+
remote: string;
|
33
32
|
commit?: string | undefined;
|
33
|
+
tag?: string | undefined;
|
34
34
|
}>, PackageDependency<Record<string, any>>[], {
|
35
35
|
name: string;
|
36
|
-
remote: string;
|
37
36
|
rule: "git_repository" | "_git_repository";
|
38
|
-
|
37
|
+
remote: string;
|
39
38
|
commit?: string | undefined;
|
39
|
+
tag?: string | undefined;
|
40
40
|
}>;
|
@@ -12,35 +12,35 @@ export declare const GoTarget: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
12
12
|
name: string;
|
13
13
|
rule: "go_repository" | "_go_repository";
|
14
14
|
importpath: string;
|
15
|
-
tag?: string | undefined;
|
16
15
|
commit?: string | undefined;
|
16
|
+
tag?: string | undefined;
|
17
17
|
remote?: string | undefined;
|
18
18
|
}, {
|
19
19
|
name: string;
|
20
20
|
rule: "go_repository" | "_go_repository";
|
21
21
|
importpath: string;
|
22
|
-
tag?: string | undefined;
|
23
22
|
commit?: string | undefined;
|
23
|
+
tag?: string | undefined;
|
24
24
|
remote?: string | undefined;
|
25
25
|
}>, {
|
26
26
|
name: string;
|
27
27
|
rule: "go_repository" | "_go_repository";
|
28
28
|
importpath: string;
|
29
|
-
tag?: string | undefined;
|
30
29
|
commit?: string | undefined;
|
30
|
+
tag?: string | undefined;
|
31
31
|
remote?: string | undefined;
|
32
32
|
}, {
|
33
33
|
name: string;
|
34
34
|
rule: "go_repository" | "_go_repository";
|
35
35
|
importpath: string;
|
36
|
-
tag?: string | undefined;
|
37
36
|
commit?: string | undefined;
|
37
|
+
tag?: string | undefined;
|
38
38
|
remote?: string | undefined;
|
39
39
|
}>, PackageDependency<Record<string, any>>[], {
|
40
40
|
name: string;
|
41
41
|
rule: "go_repository" | "_go_repository";
|
42
42
|
importpath: string;
|
43
|
-
tag?: string | undefined;
|
44
43
|
commit?: string | undefined;
|
44
|
+
tag?: string | undefined;
|
45
45
|
remote?: string | undefined;
|
46
46
|
}>;
|
@@ -11,18 +11,18 @@ export declare const OciTarget: z.ZodEffects<z.ZodObject<{
|
|
11
11
|
name: string;
|
12
12
|
image: string;
|
13
13
|
rule: "oci_pull" | "_oci_pull";
|
14
|
-
tag?: string | undefined;
|
15
14
|
digest?: string | undefined;
|
15
|
+
tag?: string | undefined;
|
16
16
|
}, {
|
17
17
|
name: string;
|
18
18
|
image: string;
|
19
19
|
rule: "oci_pull" | "_oci_pull";
|
20
|
-
tag?: string | undefined;
|
21
20
|
digest?: string | undefined;
|
21
|
+
tag?: string | undefined;
|
22
22
|
}>, PackageDependency<Record<string, any>>[], {
|
23
23
|
name: string;
|
24
24
|
image: string;
|
25
25
|
rule: "oci_pull" | "_oci_pull";
|
26
|
-
tag?: string | undefined;
|
27
26
|
digest?: string | undefined;
|
27
|
+
tag?: string | undefined;
|
28
28
|
}>;
|