renovate 39.257.2 → 39.257.4

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.
@@ -82,18 +82,16 @@ export type OciHelmConfig = z.infer<typeof OciHelmConfig>;
82
82
  * The same structure as docker image manifest, but mediaType is not required and is not present in the wild.
83
83
  * https://github.com/opencontainers/image-spec/blob/main/manifest.md
84
84
  */
85
- export declare const OciImageManifest: z.ZodObject<z.objectUtil.extendShape<{
85
+ export declare const OciImageManifest: z.ZodObject<{
86
86
  schemaVersion: z.ZodLiteral<2>;
87
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
88
- }, {
87
+ } & {
89
88
  mediaType: z.ZodLiteral<"application/vnd.oci.image.manifest.v1+json">;
90
- config: z.ZodObject<z.objectUtil.extendShape<{
91
- mediaType: z.ZodString;
89
+ config: z.ZodObject<{
92
90
  digest: z.ZodString;
93
91
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
94
- }, {
92
+ } & {
95
93
  mediaType: z.ZodEnum<["application/vnd.oci.image.config.v1+json", "application/vnd.cncf.helm.config.v1+json", "application/vnd.devcontainers", "application/vnd.oci.empty.v1+json", "application/vnd.cncf.flux.config.v1+json"]>;
96
- }>, "strip", z.ZodTypeAny, {
94
+ }, "strip", z.ZodTypeAny, {
97
95
  digest: string;
98
96
  mediaType: "application/vnd.oci.image.config.v1+json" | "application/vnd.cncf.helm.config.v1+json" | "application/vnd.devcontainers" | "application/vnd.oci.empty.v1+json" | "application/vnd.cncf.flux.config.v1+json";
99
97
  size?: number | null | undefined;
@@ -103,7 +101,7 @@ export declare const OciImageManifest: z.ZodObject<z.objectUtil.extendShape<{
103
101
  size?: number | null | undefined;
104
102
  }>;
105
103
  annotations: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
106
- }>, "strip", z.ZodTypeAny, {
104
+ }, "strip", z.ZodTypeAny, {
107
105
  config: {
108
106
  digest: string;
109
107
  mediaType: "application/vnd.oci.image.config.v1+json" | "application/vnd.cncf.helm.config.v1+json" | "application/vnd.devcontainers" | "application/vnd.oci.empty.v1+json" | "application/vnd.cncf.flux.config.v1+json";
@@ -128,16 +126,14 @@ export type OciImageManifest = z.infer<typeof OciImageManifest>;
128
126
  * mediaType is not required.
129
127
  * https://github.com/opencontainers/image-spec/blob/main/image-index.md
130
128
  */
131
- export declare const OciImageIndexManifest: z.ZodObject<z.objectUtil.extendShape<{
129
+ export declare const OciImageIndexManifest: z.ZodObject<{
132
130
  schemaVersion: z.ZodLiteral<2>;
133
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134
- }, {
131
+ } & {
135
132
  mediaType: z.ZodLiteral<"application/vnd.oci.image.index.v1+json">;
136
- manifests: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
137
- mediaType: z.ZodString;
133
+ manifests: z.ZodArray<z.ZodObject<{
138
134
  digest: z.ZodString;
139
135
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
140
- }, {
136
+ } & {
141
137
  mediaType: z.ZodEnum<["application/vnd.oci.image.manifest.v1+json", "application/vnd.oci.image.index.v1+json"]>;
142
138
  platform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
143
139
  architecture: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -146,7 +142,7 @@ export declare const OciImageIndexManifest: z.ZodObject<z.objectUtil.extendShape
146
142
  }, {
147
143
  architecture?: string | null | undefined;
148
144
  }>>>;
149
- }>, "strip", z.ZodTypeAny, {
145
+ }, "strip", z.ZodTypeAny, {
150
146
  digest: string;
151
147
  mediaType: "application/vnd.oci.image.manifest.v1+json" | "application/vnd.oci.image.index.v1+json";
152
148
  platform?: {
@@ -162,7 +158,7 @@ export declare const OciImageIndexManifest: z.ZodObject<z.objectUtil.extendShape
162
158
  size?: number | null | undefined;
163
159
  }>, "many">;
164
160
  annotations: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
165
- }>, "strip", z.ZodTypeAny, {
161
+ }, "strip", z.ZodTypeAny, {
166
162
  schemaVersion: 2;
167
163
  mediaType: "application/vnd.oci.image.index.v1+json";
168
164
  manifests: {
@@ -191,18 +187,16 @@ export declare const OciImageIndexManifest: z.ZodObject<z.objectUtil.extendShape
191
187
  * Image Manifest
192
188
  * https://docs.docker.com/registry/spec/manifest-v2-2/#image-manifest
193
189
  */
194
- export declare const DistributionManifest: z.ZodObject<z.objectUtil.extendShape<{
190
+ export declare const DistributionManifest: z.ZodObject<{
195
191
  schemaVersion: z.ZodLiteral<2>;
196
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
197
- }, {
192
+ } & {
198
193
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.v2+json">;
199
- config: z.ZodObject<z.objectUtil.extendShape<{
200
- mediaType: z.ZodString;
194
+ config: z.ZodObject<{
201
195
  digest: z.ZodString;
202
196
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
203
- }, {
197
+ } & {
204
198
  mediaType: z.ZodLiteral<"application/vnd.docker.container.image.v1+json">;
205
- }>, "strip", z.ZodTypeAny, {
199
+ }, "strip", z.ZodTypeAny, {
206
200
  digest: string;
207
201
  mediaType: "application/vnd.docker.container.image.v1+json";
208
202
  size?: number | null | undefined;
@@ -211,7 +205,7 @@ export declare const DistributionManifest: z.ZodObject<z.objectUtil.extendShape<
211
205
  mediaType: "application/vnd.docker.container.image.v1+json";
212
206
  size?: number | null | undefined;
213
207
  }>;
214
- }>, "strip", z.ZodTypeAny, {
208
+ }, "strip", z.ZodTypeAny, {
215
209
  config: {
216
210
  digest: string;
217
211
  mediaType: "application/vnd.docker.container.image.v1+json";
@@ -233,16 +227,14 @@ export type DistributionManifest = z.infer<typeof DistributionManifest>;
233
227
  * Manifest List
234
228
  * https://docs.docker.com/registry/spec/manifest-v2-2/#manifest-list
235
229
  */
236
- export declare const DistributionListManifest: z.ZodObject<z.objectUtil.extendShape<{
230
+ export declare const DistributionListManifest: z.ZodObject<{
237
231
  schemaVersion: z.ZodLiteral<2>;
238
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
239
- }, {
232
+ } & {
240
233
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.list.v2+json">;
241
- manifests: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
242
- mediaType: z.ZodString;
234
+ manifests: z.ZodArray<z.ZodObject<{
243
235
  digest: z.ZodString;
244
236
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
245
- }, {
237
+ } & {
246
238
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.v2+json">;
247
239
  platform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
248
240
  architecture: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -251,7 +243,7 @@ export declare const DistributionListManifest: z.ZodObject<z.objectUtil.extendSh
251
243
  }, {
252
244
  architecture?: string | null | undefined;
253
245
  }>>>;
254
- }>, "strip", z.ZodTypeAny, {
246
+ }, "strip", z.ZodTypeAny, {
255
247
  digest: string;
256
248
  mediaType: "application/vnd.docker.distribution.manifest.v2+json";
257
249
  platform?: {
@@ -266,7 +258,7 @@ export declare const DistributionListManifest: z.ZodObject<z.objectUtil.extendSh
266
258
  } | null | undefined;
267
259
  size?: number | null | undefined;
268
260
  }>, "many">;
269
- }>, "strip", z.ZodTypeAny, {
261
+ }, "strip", z.ZodTypeAny, {
270
262
  schemaVersion: 2;
271
263
  mediaType: "application/vnd.docker.distribution.manifest.list.v2+json";
272
264
  manifests: {
@@ -304,18 +296,16 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
304
296
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
305
297
  schemaVersion: z.ZodLiteral<2>;
306
298
  mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
307
- }, z.ZodTypeAny, "passthrough">>, z.ZodDiscriminatedUnion<"mediaType", [z.ZodObject<z.objectUtil.extendShape<{
299
+ }, z.ZodTypeAny, "passthrough">>, z.ZodDiscriminatedUnion<"mediaType", [z.ZodObject<{
308
300
  schemaVersion: z.ZodLiteral<2>;
309
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
310
- }, {
301
+ } & {
311
302
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.v2+json">;
312
- config: z.ZodObject<z.objectUtil.extendShape<{
313
- mediaType: z.ZodString;
303
+ config: z.ZodObject<{
314
304
  digest: z.ZodString;
315
305
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
316
- }, {
306
+ } & {
317
307
  mediaType: z.ZodLiteral<"application/vnd.docker.container.image.v1+json">;
318
- }>, "strip", z.ZodTypeAny, {
308
+ }, "strip", z.ZodTypeAny, {
319
309
  digest: string;
320
310
  mediaType: "application/vnd.docker.container.image.v1+json";
321
311
  size?: number | null | undefined;
@@ -324,7 +314,7 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
324
314
  mediaType: "application/vnd.docker.container.image.v1+json";
325
315
  size?: number | null | undefined;
326
316
  }>;
327
- }>, "strip", z.ZodTypeAny, {
317
+ }, "strip", z.ZodTypeAny, {
328
318
  config: {
329
319
  digest: string;
330
320
  mediaType: "application/vnd.docker.container.image.v1+json";
@@ -340,16 +330,14 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
340
330
  };
341
331
  schemaVersion: 2;
342
332
  mediaType: "application/vnd.docker.distribution.manifest.v2+json";
343
- }>, z.ZodObject<z.objectUtil.extendShape<{
333
+ }>, z.ZodObject<{
344
334
  schemaVersion: z.ZodLiteral<2>;
345
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
346
- }, {
335
+ } & {
347
336
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.list.v2+json">;
348
- manifests: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
349
- mediaType: z.ZodString;
337
+ manifests: z.ZodArray<z.ZodObject<{
350
338
  digest: z.ZodString;
351
339
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
352
- }, {
340
+ } & {
353
341
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.v2+json">;
354
342
  platform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
355
343
  architecture: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -358,7 +346,7 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
358
346
  }, {
359
347
  architecture?: string | null | undefined;
360
348
  }>>>;
361
- }>, "strip", z.ZodTypeAny, {
349
+ }, "strip", z.ZodTypeAny, {
362
350
  digest: string;
363
351
  mediaType: "application/vnd.docker.distribution.manifest.v2+json";
364
352
  platform?: {
@@ -373,7 +361,7 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
373
361
  } | null | undefined;
374
362
  size?: number | null | undefined;
375
363
  }>, "many">;
376
- }>, "strip", z.ZodTypeAny, {
364
+ }, "strip", z.ZodTypeAny, {
377
365
  schemaVersion: 2;
378
366
  mediaType: "application/vnd.docker.distribution.manifest.list.v2+json";
379
367
  manifests: {
@@ -395,18 +383,16 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
395
383
  } | null | undefined;
396
384
  size?: number | null | undefined;
397
385
  }[];
398
- }>, z.ZodObject<z.objectUtil.extendShape<{
386
+ }>, z.ZodObject<{
399
387
  schemaVersion: z.ZodLiteral<2>;
400
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
401
- }, {
388
+ } & {
402
389
  mediaType: z.ZodLiteral<"application/vnd.oci.image.manifest.v1+json">;
403
- config: z.ZodObject<z.objectUtil.extendShape<{
404
- mediaType: z.ZodString;
390
+ config: z.ZodObject<{
405
391
  digest: z.ZodString;
406
392
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
407
- }, {
393
+ } & {
408
394
  mediaType: z.ZodEnum<["application/vnd.oci.image.config.v1+json", "application/vnd.cncf.helm.config.v1+json", "application/vnd.devcontainers", "application/vnd.oci.empty.v1+json", "application/vnd.cncf.flux.config.v1+json"]>;
409
- }>, "strip", z.ZodTypeAny, {
395
+ }, "strip", z.ZodTypeAny, {
410
396
  digest: string;
411
397
  mediaType: "application/vnd.oci.image.config.v1+json" | "application/vnd.cncf.helm.config.v1+json" | "application/vnd.devcontainers" | "application/vnd.oci.empty.v1+json" | "application/vnd.cncf.flux.config.v1+json";
412
398
  size?: number | null | undefined;
@@ -416,7 +402,7 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
416
402
  size?: number | null | undefined;
417
403
  }>;
418
404
  annotations: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
419
- }>, "strip", z.ZodTypeAny, {
405
+ }, "strip", z.ZodTypeAny, {
420
406
  config: {
421
407
  digest: string;
422
408
  mediaType: "application/vnd.oci.image.config.v1+json" | "application/vnd.cncf.helm.config.v1+json" | "application/vnd.devcontainers" | "application/vnd.oci.empty.v1+json" | "application/vnd.cncf.flux.config.v1+json";
@@ -434,16 +420,14 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
434
420
  schemaVersion: 2;
435
421
  mediaType: "application/vnd.oci.image.manifest.v1+json";
436
422
  annotations?: Record<string, string> | null | undefined;
437
- }>, z.ZodObject<z.objectUtil.extendShape<{
423
+ }>, z.ZodObject<{
438
424
  schemaVersion: z.ZodLiteral<2>;
439
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
440
- }, {
425
+ } & {
441
426
  mediaType: z.ZodLiteral<"application/vnd.oci.image.index.v1+json">;
442
- manifests: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
443
- mediaType: z.ZodString;
427
+ manifests: z.ZodArray<z.ZodObject<{
444
428
  digest: z.ZodString;
445
429
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
446
- }, {
430
+ } & {
447
431
  mediaType: z.ZodEnum<["application/vnd.oci.image.manifest.v1+json", "application/vnd.oci.image.index.v1+json"]>;
448
432
  platform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
449
433
  architecture: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -452,7 +436,7 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
452
436
  }, {
453
437
  architecture?: string | null | undefined;
454
438
  }>>>;
455
- }>, "strip", z.ZodTypeAny, {
439
+ }, "strip", z.ZodTypeAny, {
456
440
  digest: string;
457
441
  mediaType: "application/vnd.oci.image.manifest.v1+json" | "application/vnd.oci.image.index.v1+json";
458
442
  platform?: {
@@ -468,7 +452,7 @@ export declare const Manifest: z.ZodPipeline<z.ZodEffects<z.ZodObject<{
468
452
  size?: number | null | undefined;
469
453
  }>, "many">;
470
454
  annotations: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
471
- }>, "strip", z.ZodTypeAny, {
455
+ }, "strip", z.ZodTypeAny, {
472
456
  schemaVersion: 2;
473
457
  mediaType: "application/vnd.oci.image.index.v1+json";
474
458
  manifests: {
@@ -509,18 +493,16 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
509
493
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
510
494
  schemaVersion: z.ZodLiteral<2>;
511
495
  mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
512
- }, z.ZodTypeAny, "passthrough">>, z.ZodDiscriminatedUnion<"mediaType", [z.ZodObject<z.objectUtil.extendShape<{
496
+ }, z.ZodTypeAny, "passthrough">>, z.ZodDiscriminatedUnion<"mediaType", [z.ZodObject<{
513
497
  schemaVersion: z.ZodLiteral<2>;
514
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
515
- }, {
498
+ } & {
516
499
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.v2+json">;
517
- config: z.ZodObject<z.objectUtil.extendShape<{
518
- mediaType: z.ZodString;
500
+ config: z.ZodObject<{
519
501
  digest: z.ZodString;
520
502
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
521
- }, {
503
+ } & {
522
504
  mediaType: z.ZodLiteral<"application/vnd.docker.container.image.v1+json">;
523
- }>, "strip", z.ZodTypeAny, {
505
+ }, "strip", z.ZodTypeAny, {
524
506
  digest: string;
525
507
  mediaType: "application/vnd.docker.container.image.v1+json";
526
508
  size?: number | null | undefined;
@@ -529,7 +511,7 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
529
511
  mediaType: "application/vnd.docker.container.image.v1+json";
530
512
  size?: number | null | undefined;
531
513
  }>;
532
- }>, "strip", z.ZodTypeAny, {
514
+ }, "strip", z.ZodTypeAny, {
533
515
  config: {
534
516
  digest: string;
535
517
  mediaType: "application/vnd.docker.container.image.v1+json";
@@ -545,16 +527,14 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
545
527
  };
546
528
  schemaVersion: 2;
547
529
  mediaType: "application/vnd.docker.distribution.manifest.v2+json";
548
- }>, z.ZodObject<z.objectUtil.extendShape<{
530
+ }>, z.ZodObject<{
549
531
  schemaVersion: z.ZodLiteral<2>;
550
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
551
- }, {
532
+ } & {
552
533
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.list.v2+json">;
553
- manifests: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
554
- mediaType: z.ZodString;
534
+ manifests: z.ZodArray<z.ZodObject<{
555
535
  digest: z.ZodString;
556
536
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
557
- }, {
537
+ } & {
558
538
  mediaType: z.ZodLiteral<"application/vnd.docker.distribution.manifest.v2+json">;
559
539
  platform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
560
540
  architecture: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -563,7 +543,7 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
563
543
  }, {
564
544
  architecture?: string | null | undefined;
565
545
  }>>>;
566
- }>, "strip", z.ZodTypeAny, {
546
+ }, "strip", z.ZodTypeAny, {
567
547
  digest: string;
568
548
  mediaType: "application/vnd.docker.distribution.manifest.v2+json";
569
549
  platform?: {
@@ -578,7 +558,7 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
578
558
  } | null | undefined;
579
559
  size?: number | null | undefined;
580
560
  }>, "many">;
581
- }>, "strip", z.ZodTypeAny, {
561
+ }, "strip", z.ZodTypeAny, {
582
562
  schemaVersion: 2;
583
563
  mediaType: "application/vnd.docker.distribution.manifest.list.v2+json";
584
564
  manifests: {
@@ -600,18 +580,16 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
600
580
  } | null | undefined;
601
581
  size?: number | null | undefined;
602
582
  }[];
603
- }>, z.ZodObject<z.objectUtil.extendShape<{
583
+ }>, z.ZodObject<{
604
584
  schemaVersion: z.ZodLiteral<2>;
605
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
606
- }, {
585
+ } & {
607
586
  mediaType: z.ZodLiteral<"application/vnd.oci.image.manifest.v1+json">;
608
- config: z.ZodObject<z.objectUtil.extendShape<{
609
- mediaType: z.ZodString;
587
+ config: z.ZodObject<{
610
588
  digest: z.ZodString;
611
589
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
612
- }, {
590
+ } & {
613
591
  mediaType: z.ZodEnum<["application/vnd.oci.image.config.v1+json", "application/vnd.cncf.helm.config.v1+json", "application/vnd.devcontainers", "application/vnd.oci.empty.v1+json", "application/vnd.cncf.flux.config.v1+json"]>;
614
- }>, "strip", z.ZodTypeAny, {
592
+ }, "strip", z.ZodTypeAny, {
615
593
  digest: string;
616
594
  mediaType: "application/vnd.oci.image.config.v1+json" | "application/vnd.cncf.helm.config.v1+json" | "application/vnd.devcontainers" | "application/vnd.oci.empty.v1+json" | "application/vnd.cncf.flux.config.v1+json";
617
595
  size?: number | null | undefined;
@@ -621,7 +599,7 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
621
599
  size?: number | null | undefined;
622
600
  }>;
623
601
  annotations: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
624
- }>, "strip", z.ZodTypeAny, {
602
+ }, "strip", z.ZodTypeAny, {
625
603
  config: {
626
604
  digest: string;
627
605
  mediaType: "application/vnd.oci.image.config.v1+json" | "application/vnd.cncf.helm.config.v1+json" | "application/vnd.devcontainers" | "application/vnd.oci.empty.v1+json" | "application/vnd.cncf.flux.config.v1+json";
@@ -639,16 +617,14 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
639
617
  schemaVersion: 2;
640
618
  mediaType: "application/vnd.oci.image.manifest.v1+json";
641
619
  annotations?: Record<string, string> | null | undefined;
642
- }>, z.ZodObject<z.objectUtil.extendShape<{
620
+ }>, z.ZodObject<{
643
621
  schemaVersion: z.ZodLiteral<2>;
644
- mediaType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
645
- }, {
622
+ } & {
646
623
  mediaType: z.ZodLiteral<"application/vnd.oci.image.index.v1+json">;
647
- manifests: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
648
- mediaType: z.ZodString;
624
+ manifests: z.ZodArray<z.ZodObject<{
649
625
  digest: z.ZodString;
650
626
  size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
651
- }, {
627
+ } & {
652
628
  mediaType: z.ZodEnum<["application/vnd.oci.image.manifest.v1+json", "application/vnd.oci.image.index.v1+json"]>;
653
629
  platform: z.ZodOptional<z.ZodNullable<z.ZodObject<{
654
630
  architecture: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -657,7 +633,7 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
657
633
  }, {
658
634
  architecture?: string | null | undefined;
659
635
  }>>>;
660
- }>, "strip", z.ZodTypeAny, {
636
+ }, "strip", z.ZodTypeAny, {
661
637
  digest: string;
662
638
  mediaType: "application/vnd.oci.image.manifest.v1+json" | "application/vnd.oci.image.index.v1+json";
663
639
  platform?: {
@@ -673,7 +649,7 @@ export declare const ManifestJson: z.ZodPipeline<z.ZodEffects<z.ZodString, strin
673
649
  size?: number | null | undefined;
674
650
  }>, "many">;
675
651
  annotations: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
676
- }>, "strip", z.ZodTypeAny, {
652
+ }, "strip", z.ZodTypeAny, {
677
653
  schemaVersion: 2;
678
654
  mediaType: "application/vnd.oci.image.index.v1+json";
679
655
  manifests: {
@@ -193,7 +193,7 @@ export declare const PackagesResponse: z.ZodObject<{
193
193
  packages?: unknown;
194
194
  }>;
195
195
  export type PackagesResponse = z.infer<typeof PackagesResponse>;
196
- export declare const PackagistFile: z.ZodObject<z.objectUtil.extendShape<{
196
+ export declare const PackagistFile: z.ZodObject<{
197
197
  packages: z.ZodCatch<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
198
198
  time: import("../../../util/timestamp").Timestamp | null;
199
199
  version: string;
@@ -205,7 +205,7 @@ export declare const PackagistFile: z.ZodObject<z.objectUtil.extendShape<{
205
205
  php: string;
206
206
  } | 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, {
210
210
  hash: string | null;
211
211
  } | {
@@ -213,7 +213,7 @@ export declare const PackagistFile: z.ZodObject<z.objectUtil.extendShape<{
213
213
  }>, Record<string, any>>, {
214
214
  [k: string]: string | null;
215
215
  }, Record<string, any>>>;
216
- }>, "strip", z.ZodTypeAny, {
216
+ }, "strip", z.ZodTypeAny, {
217
217
  packages: Record<string, {
218
218
  time: import("../../../util/timestamp").Timestamp | null;
219
219
  version: string;
@@ -233,7 +233,7 @@ export declare const PackagistFile: z.ZodObject<z.objectUtil.extendShape<{
233
233
  providers?: unknown;
234
234
  }>;
235
235
  export type PackagistFile = z.infer<typeof PackagistFile>;
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<{
236
+ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRecord<z.ZodString, z.ZodUnknown>>, z.ZodObject<{
237
237
  packages: z.ZodCatch<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
238
238
  time: import("../../../util/timestamp").Timestamp | null;
239
239
  version: string;
@@ -245,7 +245,7 @@ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRe
245
245
  php: string;
246
246
  } | 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, {
250
250
  hash: string | null;
251
251
  } | {
@@ -253,7 +253,7 @@ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRe
253
253
  }>, Record<string, any>>, {
254
254
  [k: string]: string | null;
255
255
  }, Record<string, any>>>;
256
- }>, {
256
+ } & {
257
257
  includes: z.ZodCatch<z.ZodEffects<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
258
258
  hash: string | null;
259
259
  } | {
@@ -274,7 +274,7 @@ export declare const RegistryMeta: z.ZodEffects<z.ZodPipeline<z.ZodCatch<z.ZodRe
274
274
  "providers-url": z.ZodCatch<z.ZodNullable<z.ZodString>>;
275
275
  "metadata-url": z.ZodCatch<z.ZodNullable<z.ZodString>>;
276
276
  "available-packages": z.ZodCatch<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
277
- }>, "strip", z.ZodTypeAny, {
277
+ }, "strip", z.ZodTypeAny, {
278
278
  includes: {
279
279
  key: string;
280
280
  hash: string | null;
@@ -104,9 +104,9 @@ export declare const ApplicationSpec: z.ZodObject<{
104
104
  sources?: any[] | undefined;
105
105
  }>;
106
106
  export type ApplicationSpec = z.infer<typeof ApplicationSpec>;
107
- export declare const Application: z.ZodObject<z.objectUtil.extendShape<{
107
+ export declare const Application: z.ZodObject<{
108
108
  apiVersion: z.ZodString;
109
- }, {
109
+ } & {
110
110
  kind: z.ZodLiteral<"Application">;
111
111
  spec: z.ZodObject<{
112
112
  source: z.ZodOptional<z.ZodObject<{
@@ -171,7 +171,7 @@ export declare const Application: z.ZodObject<z.objectUtil.extendShape<{
171
171
  } | undefined;
172
172
  sources?: any[] | undefined;
173
173
  }>;
174
- }>, "strip", z.ZodTypeAny, {
174
+ }, "strip", z.ZodTypeAny, {
175
175
  apiVersion: string;
176
176
  kind: "Application";
177
177
  spec: {
@@ -207,9 +207,9 @@ export declare const Application: z.ZodObject<z.objectUtil.extendShape<{
207
207
  sources?: any[] | undefined;
208
208
  };
209
209
  }>;
210
- export declare const ApplicationSet: z.ZodObject<z.objectUtil.extendShape<{
210
+ export declare const ApplicationSet: z.ZodObject<{
211
211
  apiVersion: z.ZodString;
212
- }, {
212
+ } & {
213
213
  kind: z.ZodLiteral<"ApplicationSet">;
214
214
  spec: z.ZodObject<{
215
215
  template: z.ZodObject<{
@@ -344,7 +344,7 @@ export declare const ApplicationSet: z.ZodObject<z.objectUtil.extendShape<{
344
344
  };
345
345
  };
346
346
  }>;
347
- }>, "strip", z.ZodTypeAny, {
347
+ }, "strip", z.ZodTypeAny, {
348
348
  apiVersion: string;
349
349
  kind: "ApplicationSet";
350
350
  spec: {
@@ -388,9 +388,9 @@ export declare const ApplicationSet: z.ZodObject<z.objectUtil.extendShape<{
388
388
  };
389
389
  };
390
390
  }>;
391
- export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
391
+ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<{
392
392
  apiVersion: z.ZodString;
393
- }, {
393
+ } & {
394
394
  kind: z.ZodLiteral<"Application">;
395
395
  spec: z.ZodObject<{
396
396
  source: z.ZodOptional<z.ZodObject<{
@@ -455,7 +455,7 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
455
455
  } | undefined;
456
456
  sources?: any[] | undefined;
457
457
  }>;
458
- }>, "strip", z.ZodTypeAny, {
458
+ }, "strip", z.ZodTypeAny, {
459
459
  apiVersion: string;
460
460
  kind: "Application";
461
461
  spec: {
@@ -490,9 +490,9 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
490
490
  } | undefined;
491
491
  sources?: any[] | undefined;
492
492
  };
493
- }>, z.ZodObject<z.objectUtil.extendShape<{
493
+ }>, z.ZodObject<{
494
494
  apiVersion: z.ZodString;
495
- }, {
495
+ } & {
496
496
  kind: z.ZodLiteral<"ApplicationSet">;
497
497
  spec: z.ZodObject<{
498
498
  template: z.ZodObject<{
@@ -627,7 +627,7 @@ export declare const ApplicationDefinition: z.ZodUnion<[z.ZodObject<z.objectUtil
627
627
  };
628
628
  };
629
629
  }>;
630
- }>, "strip", z.ZodTypeAny, {
630
+ }, "strip", z.ZodTypeAny, {
631
631
  apiVersion: string;
632
632
  kind: "ApplicationSet";
633
633
  spec: {
@@ -2,36 +2,13 @@ import { z } from 'zod';
2
2
  import type { PackageDependency } from '../../types';
3
3
  export declare const mavenExtensionPrefix = "maven";
4
4
  export declare const mavenExtensionTags: string[];
5
- export declare const RuleToMavenPackageDep: z.ZodUnion<[z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
5
+ export declare const RuleToMavenPackageDep: z.ZodUnion<[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<"maven">;
36
13
  tag: z.ZodLiteral<"artifact">;
37
14
  children: z.ZodObject<{
@@ -107,7 +84,7 @@ export declare const RuleToMavenPackageDep: z.ZodUnion<[z.ZodEffects<z.ZodObject
107
84
  isComplete: true;
108
85
  };
109
86
  }>;
110
- }>, "strip", z.ZodTypeAny, {
87
+ }, "strip", z.ZodTypeAny, {
111
88
  type: "extensionTag";
112
89
  tag: "artifact";
113
90
  children: {
@@ -182,36 +159,13 @@ export declare const RuleToMavenPackageDep: z.ZodUnion<[z.ZodEffects<z.ZodObject
182
159
  extension: "maven";
183
160
  rawExtension: string;
184
161
  rawString?: string | undefined;
185
- }>, z.ZodEffects<z.ZodObject<z.objectUtil.extendShape<{
162
+ }>, z.ZodEffects<z.ZodObject<{
186
163
  type: z.ZodLiteral<"extensionTag">;
187
- extension: z.ZodString;
188
164
  rawExtension: z.ZodString;
189
- tag: z.ZodString;
190
- children: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodAny>, Record<string, {
191
- type: "string";
192
- value: string;
193
- isComplete: true;
194
- } | {
195
- type: "boolean";
196
- value: boolean;
197
- isComplete: true;
198
- } | {
199
- type: "array";
200
- isComplete: boolean;
201
- items: ({
202
- type: "string";
203
- value: string;
204
- isComplete: true;
205
- } | {
206
- type: "boolean";
207
- value: boolean;
208
- isComplete: true;
209
- })[];
210
- }>, Record<string, any>>;
211
165
  isComplete: z.ZodBoolean;
212
166
  offset: z.ZodNumber;
213
167
  rawString: z.ZodOptional<z.ZodString>;
214
- }, {
168
+ } & {
215
169
  extension: z.ZodLiteral<"maven">;
216
170
  tag: z.ZodLiteral<"install">;
217
171
  children: z.ZodObject<{
@@ -292,7 +246,7 @@ export declare const RuleToMavenPackageDep: z.ZodUnion<[z.ZodEffects<z.ZodObject
292
246
  items: any[];
293
247
  };
294
248
  }>;
295
- }>, "strip", z.ZodTypeAny, {
249
+ }, "strip", z.ZodTypeAny, {
296
250
  type: "extensionTag";
297
251
  tag: "install";
298
252
  children: {