@paklo/core 0.7.2 → 0.8.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.
@@ -114,9 +114,9 @@ declare const DependabotAllowConditionSchema: z.ZodObject<{
114
114
  'dependency-name': z.ZodOptional<z.ZodString>;
115
115
  'dependency-type': z.ZodOptional<z.ZodEnum<{
116
116
  production: "production";
117
- development: "development";
118
117
  direct: "direct";
119
118
  indirect: "indirect";
119
+ development: "development";
120
120
  all: "all";
121
121
  }>>;
122
122
  'update-type': z.ZodOptional<z.ZodEnum<{
@@ -194,6 +194,7 @@ declare const PackageEcosystemSchema: z.ZodEnum<{
194
194
  bundler: "bundler";
195
195
  cargo: "cargo";
196
196
  composer: "composer";
197
+ conda: "conda";
197
198
  pub: "pub";
198
199
  docker: "docker";
199
200
  elm: "elm";
@@ -239,6 +240,7 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
239
240
  bundler: "bundler";
240
241
  cargo: "cargo";
241
242
  composer: "composer";
243
+ conda: "conda";
242
244
  pub: "pub";
243
245
  docker: "docker";
244
246
  elm: "elm";
@@ -277,9 +279,9 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
277
279
  'dependency-name': z.ZodOptional<z.ZodString>;
278
280
  'dependency-type': z.ZodOptional<z.ZodEnum<{
279
281
  production: "production";
280
- development: "development";
281
282
  direct: "direct";
282
283
  indirect: "indirect";
284
+ development: "development";
283
285
  all: "all";
284
286
  }>>;
285
287
  'update-type': z.ZodOptional<z.ZodEnum<{
@@ -340,7 +342,7 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
340
342
  }, z.core.$strip>>;
341
343
  'rebase-strategy': z.ZodOptional<z.ZodString>;
342
344
  registries: z.ZodOptional<z.ZodArray<z.ZodString>>;
343
- schedule: z.ZodOptional<z.ZodPipe<z.ZodObject<{
345
+ schedule: z.ZodPipe<z.ZodObject<{
344
346
  interval: z.ZodEnum<{
345
347
  daily: "daily";
346
348
  weekly: "weekly";
@@ -374,7 +376,7 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
374
376
  timezone: string;
375
377
  time?: string | undefined;
376
378
  cronjob?: string | undefined;
377
- }>>>;
379
+ }>>;
378
380
  'target-branch': z.ZodOptional<z.ZodString>;
379
381
  vendor: z.ZodOptional<z.ZodBoolean>;
380
382
  'versioning-strategy': z.ZodOptional<z.ZodEnum<{
@@ -387,13 +389,20 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
387
389
  patterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
388
390
  'multi-ecosystem-group': z.ZodOptional<z.ZodString>;
389
391
  }, z.core.$strip>, z.ZodTransform<{
390
- 'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
392
+ 'package-ecosystem': "bundler" | "cargo" | "composer" | "conda" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
393
+ schedule: {
394
+ interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
395
+ day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
396
+ timezone: string;
397
+ time?: string | undefined;
398
+ cronjob?: string | undefined;
399
+ };
391
400
  directory?: string | undefined;
392
401
  directories?: string[] | undefined;
393
402
  'exclude-paths'?: string[] | undefined;
394
403
  allow?: {
395
404
  'dependency-name'?: string | undefined;
396
- 'dependency-type'?: "production" | "development" | "direct" | "indirect" | "all" | undefined;
405
+ 'dependency-type'?: "production" | "direct" | "indirect" | "development" | "all" | undefined;
397
406
  'update-type'?: "all" | "security" | undefined;
398
407
  }[] | undefined;
399
408
  assignees?: string[] | undefined;
@@ -432,26 +441,26 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
432
441
  } | undefined;
433
442
  'rebase-strategy'?: string | undefined;
434
443
  registries?: string[] | undefined;
435
- schedule?: {
436
- interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
437
- day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
438
- timezone: string;
439
- time?: string | undefined;
440
- cronjob?: string | undefined;
441
- } | undefined;
442
444
  'target-branch'?: string | undefined;
443
445
  vendor?: boolean | undefined;
444
446
  'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "lockfile-only" | "widen" | undefined;
445
447
  patterns?: string[] | undefined;
446
448
  'multi-ecosystem-group'?: string | undefined;
447
449
  }, {
448
- 'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
450
+ 'package-ecosystem': "bundler" | "cargo" | "composer" | "conda" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
451
+ schedule: {
452
+ interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
453
+ day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
454
+ timezone: string;
455
+ time?: string | undefined;
456
+ cronjob?: string | undefined;
457
+ };
449
458
  directory?: string | undefined;
450
459
  directories?: string[] | undefined;
451
460
  'exclude-paths'?: string[] | undefined;
452
461
  allow?: {
453
462
  'dependency-name'?: string | undefined;
454
- 'dependency-type'?: "production" | "development" | "direct" | "indirect" | "all" | undefined;
463
+ 'dependency-type'?: "production" | "direct" | "indirect" | "development" | "all" | undefined;
455
464
  'update-type'?: "all" | "security" | undefined;
456
465
  }[] | undefined;
457
466
  assignees?: string[] | undefined;
@@ -490,13 +499,6 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
490
499
  } | undefined;
491
500
  'rebase-strategy'?: string | undefined;
492
501
  registries?: string[] | undefined;
493
- schedule?: {
494
- interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
495
- day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
496
- timezone: string;
497
- time?: string | undefined;
498
- cronjob?: string | undefined;
499
- } | undefined;
500
502
  'target-branch'?: string | undefined;
501
503
  vendor?: boolean | undefined;
502
504
  'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "lockfile-only" | "widen" | undefined;
@@ -614,6 +616,7 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
614
616
  bundler: "bundler";
615
617
  cargo: "cargo";
616
618
  composer: "composer";
619
+ conda: "conda";
617
620
  pub: "pub";
618
621
  docker: "docker";
619
622
  elm: "elm";
@@ -652,9 +655,9 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
652
655
  'dependency-name': z.ZodOptional<z.ZodString>;
653
656
  'dependency-type': z.ZodOptional<z.ZodEnum<{
654
657
  production: "production";
655
- development: "development";
656
658
  direct: "direct";
657
659
  indirect: "indirect";
660
+ development: "development";
658
661
  all: "all";
659
662
  }>>;
660
663
  'update-type': z.ZodOptional<z.ZodEnum<{
@@ -715,7 +718,7 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
715
718
  }, z.core.$strip>>;
716
719
  'rebase-strategy': z.ZodOptional<z.ZodString>;
717
720
  registries: z.ZodOptional<z.ZodArray<z.ZodString>>;
718
- schedule: z.ZodOptional<z.ZodPipe<z.ZodObject<{
721
+ schedule: z.ZodPipe<z.ZodObject<{
719
722
  interval: z.ZodEnum<{
720
723
  daily: "daily";
721
724
  weekly: "weekly";
@@ -749,7 +752,7 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
749
752
  timezone: string;
750
753
  time?: string | undefined;
751
754
  cronjob?: string | undefined;
752
- }>>>;
755
+ }>>;
753
756
  'target-branch': z.ZodOptional<z.ZodString>;
754
757
  vendor: z.ZodOptional<z.ZodBoolean>;
755
758
  'versioning-strategy': z.ZodOptional<z.ZodEnum<{
@@ -762,13 +765,20 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
762
765
  patterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
763
766
  'multi-ecosystem-group': z.ZodOptional<z.ZodString>;
764
767
  }, z.core.$strip>, z.ZodTransform<{
765
- 'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
768
+ 'package-ecosystem': "bundler" | "cargo" | "composer" | "conda" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
769
+ schedule: {
770
+ interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
771
+ day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
772
+ timezone: string;
773
+ time?: string | undefined;
774
+ cronjob?: string | undefined;
775
+ };
766
776
  directory?: string | undefined;
767
777
  directories?: string[] | undefined;
768
778
  'exclude-paths'?: string[] | undefined;
769
779
  allow?: {
770
780
  'dependency-name'?: string | undefined;
771
- 'dependency-type'?: "production" | "development" | "direct" | "indirect" | "all" | undefined;
781
+ 'dependency-type'?: "production" | "direct" | "indirect" | "development" | "all" | undefined;
772
782
  'update-type'?: "all" | "security" | undefined;
773
783
  }[] | undefined;
774
784
  assignees?: string[] | undefined;
@@ -807,26 +817,26 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
807
817
  } | undefined;
808
818
  'rebase-strategy'?: string | undefined;
809
819
  registries?: string[] | undefined;
810
- schedule?: {
811
- interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
812
- day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
813
- timezone: string;
814
- time?: string | undefined;
815
- cronjob?: string | undefined;
816
- } | undefined;
817
820
  'target-branch'?: string | undefined;
818
821
  vendor?: boolean | undefined;
819
822
  'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "lockfile-only" | "widen" | undefined;
820
823
  patterns?: string[] | undefined;
821
824
  'multi-ecosystem-group'?: string | undefined;
822
825
  }, {
823
- 'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
826
+ 'package-ecosystem': "bundler" | "cargo" | "composer" | "conda" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
827
+ schedule: {
828
+ interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
829
+ day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
830
+ timezone: string;
831
+ time?: string | undefined;
832
+ cronjob?: string | undefined;
833
+ };
824
834
  directory?: string | undefined;
825
835
  directories?: string[] | undefined;
826
836
  'exclude-paths'?: string[] | undefined;
827
837
  allow?: {
828
838
  'dependency-name'?: string | undefined;
829
- 'dependency-type'?: "production" | "development" | "direct" | "indirect" | "all" | undefined;
839
+ 'dependency-type'?: "production" | "direct" | "indirect" | "development" | "all" | undefined;
830
840
  'update-type'?: "all" | "security" | undefined;
831
841
  }[] | undefined;
832
842
  assignees?: string[] | undefined;
@@ -865,13 +875,6 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
865
875
  } | undefined;
866
876
  'rebase-strategy'?: string | undefined;
867
877
  registries?: string[] | undefined;
868
- schedule?: {
869
- interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
870
- day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
871
- timezone: string;
872
- time?: string | undefined;
873
- cronjob?: string | undefined;
874
- } | undefined;
875
878
  'target-branch'?: string | undefined;
876
879
  vendor?: boolean | undefined;
877
880
  'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "lockfile-only" | "widen" | undefined;
@@ -950,13 +953,20 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
950
953
  }, z.core.$strip>, z.ZodTransform<{
951
954
  version: number;
952
955
  updates: {
953
- 'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
956
+ 'package-ecosystem': "bundler" | "cargo" | "composer" | "conda" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
957
+ schedule: {
958
+ interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
959
+ day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
960
+ timezone: string;
961
+ time?: string | undefined;
962
+ cronjob?: string | undefined;
963
+ };
954
964
  directory?: string | undefined;
955
965
  directories?: string[] | undefined;
956
966
  'exclude-paths'?: string[] | undefined;
957
967
  allow?: {
958
968
  'dependency-name'?: string | undefined;
959
- 'dependency-type'?: "production" | "development" | "direct" | "indirect" | "all" | undefined;
969
+ 'dependency-type'?: "production" | "direct" | "indirect" | "development" | "all" | undefined;
960
970
  'update-type'?: "all" | "security" | undefined;
961
971
  }[] | undefined;
962
972
  assignees?: string[] | undefined;
@@ -995,13 +1005,6 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
995
1005
  } | undefined;
996
1006
  'rebase-strategy'?: string | undefined;
997
1007
  registries?: string[] | undefined;
998
- schedule?: {
999
- interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
1000
- day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
1001
- timezone: string;
1002
- time?: string | undefined;
1003
- cronjob?: string | undefined;
1004
- } | undefined;
1005
1008
  'target-branch'?: string | undefined;
1006
1009
  vendor?: boolean | undefined;
1007
1010
  'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "lockfile-only" | "widen" | undefined;
@@ -1051,13 +1054,20 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
1051
1054
  }, {
1052
1055
  version: number;
1053
1056
  updates: {
1054
- 'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
1057
+ 'package-ecosystem': "bundler" | "cargo" | "composer" | "conda" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "bazel" | "opentofu" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
1058
+ schedule: {
1059
+ interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
1060
+ day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
1061
+ timezone: string;
1062
+ time?: string | undefined;
1063
+ cronjob?: string | undefined;
1064
+ };
1055
1065
  directory?: string | undefined;
1056
1066
  directories?: string[] | undefined;
1057
1067
  'exclude-paths'?: string[] | undefined;
1058
1068
  allow?: {
1059
1069
  'dependency-name'?: string | undefined;
1060
- 'dependency-type'?: "production" | "development" | "direct" | "indirect" | "all" | undefined;
1070
+ 'dependency-type'?: "production" | "direct" | "indirect" | "development" | "all" | undefined;
1061
1071
  'update-type'?: "all" | "security" | undefined;
1062
1072
  }[] | undefined;
1063
1073
  assignees?: string[] | undefined;
@@ -1096,13 +1106,6 @@ declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
1096
1106
  } | undefined;
1097
1107
  'rebase-strategy'?: string | undefined;
1098
1108
  registries?: string[] | undefined;
1099
- schedule?: {
1100
- interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
1101
- day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
1102
- timezone: string;
1103
- time?: string | undefined;
1104
- cronjob?: string | undefined;
1105
- } | undefined;
1106
1109
  'target-branch'?: string | undefined;
1107
1110
  vendor?: boolean | undefined;
1108
1111
  'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "lockfile-only" | "widen" | undefined;
@@ -1316,9 +1319,11 @@ type DependabotCommitOptions = z.infer<typeof DependabotCommitOptionsSchema>;
1316
1319
  declare const DependabotExperimentsSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean]>>;
1317
1320
  type DependabotExperiments = z.infer<typeof DependabotExperimentsSchema>;
1318
1321
  declare const DependabotPackageManagerSchema: z.ZodEnum<{
1322
+ hex: "hex";
1319
1323
  bundler: "bundler";
1320
1324
  cargo: "cargo";
1321
1325
  composer: "composer";
1326
+ conda: "conda";
1322
1327
  pub: "pub";
1323
1328
  docker: "docker";
1324
1329
  elm: "elm";
@@ -1327,7 +1332,6 @@ declare const DependabotPackageManagerSchema: z.ZodEnum<{
1327
1332
  go_modules: "go_modules";
1328
1333
  gradle: "gradle";
1329
1334
  maven: "maven";
1330
- hex: "hex";
1331
1335
  nuget: "nuget";
1332
1336
  npm_and_yarn: "npm_and_yarn";
1333
1337
  pip: "pip";
@@ -1360,9 +1364,11 @@ declare const DependabotJobConfigSchema: z.ZodObject<{
1360
1364
  recreate: "recreate";
1361
1365
  }>>;
1362
1366
  'package-manager': z.ZodEnum<{
1367
+ hex: "hex";
1363
1368
  bundler: "bundler";
1364
1369
  cargo: "cargo";
1365
1370
  composer: "composer";
1371
+ conda: "conda";
1366
1372
  pub: "pub";
1367
1373
  docker: "docker";
1368
1374
  elm: "elm";
@@ -1371,7 +1377,6 @@ declare const DependabotJobConfigSchema: z.ZodObject<{
1371
1377
  go_modules: "go_modules";
1372
1378
  gradle: "gradle";
1373
1379
  maven: "maven";
1374
- hex: "hex";
1375
1380
  nuget: "nuget";
1376
1381
  npm_and_yarn: "npm_and_yarn";
1377
1382
  pip: "pip";
@@ -1491,9 +1496,11 @@ declare const DependabotJobFileSchema: z.ZodObject<{
1491
1496
  recreate: "recreate";
1492
1497
  }>>;
1493
1498
  'package-manager': z.ZodEnum<{
1499
+ hex: "hex";
1494
1500
  bundler: "bundler";
1495
1501
  cargo: "cargo";
1496
1502
  composer: "composer";
1503
+ conda: "conda";
1497
1504
  pub: "pub";
1498
1505
  docker: "docker";
1499
1506
  elm: "elm";
@@ -1502,7 +1509,6 @@ declare const DependabotJobFileSchema: z.ZodObject<{
1502
1509
  go_modules: "go_modules";
1503
1510
  gradle: "gradle";
1504
1511
  maven: "maven";
1505
- hex: "hex";
1506
1512
  nuget: "nuget";
1507
1513
  npm_and_yarn: "npm_and_yarn";
1508
1514
  pip: "pip";
@@ -1694,6 +1700,15 @@ declare const DEFAULT_EXPERIMENTS: DependabotExperiments;
1694
1700
  * @returns A map of experiment names to their values.
1695
1701
  */
1696
1702
  declare function parseExperiments(raw?: string): DependabotExperiments | undefined;
1703
+ /**
1704
+ * Set experiment in the given experiments map.
1705
+ * If the experiments map is undefined, a new map will be created.
1706
+ * @param experiments The experiments map to set the experiment in.
1707
+ * @param name The name of the experiment to set.
1708
+ * @param value The value of the experiment to set. Defaults to true.
1709
+ * @returns The updated experiments map.
1710
+ */
1711
+ declare function setExperiment(experiments: DependabotExperiments | undefined, name: string, value?: boolean | string): DependabotExperiments;
1697
1712
  //#endregion
1698
1713
  //#region src/dependabot/job-builder.d.ts
1699
1714
  type DependabotSourceInfo = {
@@ -1801,8 +1816,9 @@ declare const DependabotRequestTypeSchema: z.ZodEnum<{
1801
1816
  update_dependency_list: "update_dependency_list";
1802
1817
  create_dependency_submission: "create_dependency_submission";
1803
1818
  record_ecosystem_versions: "record_ecosystem_versions";
1804
- record_ecosystem_meta: "record_ecosystem_meta";
1805
1819
  increment_metric: "increment_metric";
1820
+ record_ecosystem_meta: "record_ecosystem_meta";
1821
+ record_cooldown_meta: "record_cooldown_meta";
1806
1822
  record_metrics: "record_metrics";
1807
1823
  }>;
1808
1824
  type DependabotRequestType = z.infer<typeof DependabotRequestTypeSchema>;
@@ -1992,9 +2008,11 @@ declare const DependabotRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1992
2008
  }, z.core.$strip>>>;
1993
2009
  metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1994
2010
  ecosystem: z.ZodEnum<{
2011
+ hex: "hex";
1995
2012
  bundler: "bundler";
1996
2013
  cargo: "cargo";
1997
2014
  composer: "composer";
2015
+ conda: "conda";
1998
2016
  pub: "pub";
1999
2017
  docker: "docker";
2000
2018
  elm: "elm";
@@ -2003,7 +2021,6 @@ declare const DependabotRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2003
2021
  go_modules: "go_modules";
2004
2022
  gradle: "gradle";
2005
2023
  maven: "maven";
2006
- hex: "hex";
2007
2024
  nuget: "nuget";
2008
2025
  npm_and_yarn: "npm_and_yarn";
2009
2026
  pip: "pip";
@@ -2029,8 +2046,8 @@ declare const DependabotRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2029
2046
  indirect: "indirect";
2030
2047
  }>;
2031
2048
  scope: z.ZodEnum<{
2032
- development: "development";
2033
2049
  runtime: "runtime";
2050
+ development: "development";
2034
2051
  }>;
2035
2052
  dependencies: z.ZodArray<z.ZodObject<{
2036
2053
  name: z.ZodString;
@@ -2090,6 +2107,49 @@ declare const DependabotRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2090
2107
  }, z.core.$strip>>>;
2091
2108
  }, z.core.$strip>;
2092
2109
  }, z.core.$strip>>;
2110
+ }, z.core.$strip>, z.ZodObject<{
2111
+ type: z.ZodLiteral<"record_cooldown_meta">;
2112
+ data: z.ZodArray<z.ZodObject<{
2113
+ cooldown: z.ZodObject<{
2114
+ ecosystem_name: z.ZodEnum<{
2115
+ hex: "hex";
2116
+ bundler: "bundler";
2117
+ cargo: "cargo";
2118
+ composer: "composer";
2119
+ conda: "conda";
2120
+ pub: "pub";
2121
+ docker: "docker";
2122
+ elm: "elm";
2123
+ github_actions: "github_actions";
2124
+ submodules: "submodules";
2125
+ go_modules: "go_modules";
2126
+ gradle: "gradle";
2127
+ maven: "maven";
2128
+ nuget: "nuget";
2129
+ npm_and_yarn: "npm_and_yarn";
2130
+ pip: "pip";
2131
+ rust_toolchain: "rust_toolchain";
2132
+ swift: "swift";
2133
+ terraform: "terraform";
2134
+ devcontainers: "devcontainers";
2135
+ dotnet_sdk: "dotnet_sdk";
2136
+ bun: "bun";
2137
+ docker_compose: "docker_compose";
2138
+ uv: "uv";
2139
+ vcpkg: "vcpkg";
2140
+ helm: "helm";
2141
+ julia: "julia";
2142
+ bazel: "bazel";
2143
+ opentofu: "opentofu";
2144
+ }>;
2145
+ config: z.ZodObject<{
2146
+ default_days: z.ZodNumber;
2147
+ semver_major_days: z.ZodNumber;
2148
+ semver_minor_days: z.ZodNumber;
2149
+ semver_patch_days: z.ZodNumber;
2150
+ }, z.core.$strip>;
2151
+ }, z.core.$strip>;
2152
+ }, z.core.$strip>>;
2093
2153
  }, z.core.$strip>, z.ZodObject<{
2094
2154
  type: z.ZodLiteral<"increment_metric">;
2095
2155
  data: z.ZodObject<{
@@ -2267,9 +2327,11 @@ declare const DependabotDependencySubmissionSchema: z.ZodObject<{
2267
2327
  }, z.core.$strip>>>;
2268
2328
  metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2269
2329
  ecosystem: z.ZodEnum<{
2330
+ hex: "hex";
2270
2331
  bundler: "bundler";
2271
2332
  cargo: "cargo";
2272
2333
  composer: "composer";
2334
+ conda: "conda";
2273
2335
  pub: "pub";
2274
2336
  docker: "docker";
2275
2337
  elm: "elm";
@@ -2278,7 +2340,6 @@ declare const DependabotDependencySubmissionSchema: z.ZodObject<{
2278
2340
  go_modules: "go_modules";
2279
2341
  gradle: "gradle";
2280
2342
  maven: "maven";
2281
- hex: "hex";
2282
2343
  nuget: "nuget";
2283
2344
  npm_and_yarn: "npm_and_yarn";
2284
2345
  pip: "pip";
@@ -2304,8 +2365,8 @@ declare const DependabotDependencySubmissionSchema: z.ZodObject<{
2304
2365
  indirect: "indirect";
2305
2366
  }>;
2306
2367
  scope: z.ZodEnum<{
2307
- development: "development";
2308
2368
  runtime: "runtime";
2369
+ development: "development";
2309
2370
  }>;
2310
2371
  dependencies: z.ZodArray<z.ZodObject<{
2311
2372
  name: z.ZodString;
@@ -2528,6 +2589,48 @@ declare const DependabotRecordEcosystemMetaSchema: z.ZodObject<{
2528
2589
  }, z.core.$strip>;
2529
2590
  }, z.core.$strip>;
2530
2591
  type DependabotRecordEcosystemMeta = z.infer<typeof DependabotRecordEcosystemMetaSchema>;
2592
+ declare const DependabotRecordCooldownMetaSchema: z.ZodObject<{
2593
+ cooldown: z.ZodObject<{
2594
+ ecosystem_name: z.ZodEnum<{
2595
+ hex: "hex";
2596
+ bundler: "bundler";
2597
+ cargo: "cargo";
2598
+ composer: "composer";
2599
+ conda: "conda";
2600
+ pub: "pub";
2601
+ docker: "docker";
2602
+ elm: "elm";
2603
+ github_actions: "github_actions";
2604
+ submodules: "submodules";
2605
+ go_modules: "go_modules";
2606
+ gradle: "gradle";
2607
+ maven: "maven";
2608
+ nuget: "nuget";
2609
+ npm_and_yarn: "npm_and_yarn";
2610
+ pip: "pip";
2611
+ rust_toolchain: "rust_toolchain";
2612
+ swift: "swift";
2613
+ terraform: "terraform";
2614
+ devcontainers: "devcontainers";
2615
+ dotnet_sdk: "dotnet_sdk";
2616
+ bun: "bun";
2617
+ docker_compose: "docker_compose";
2618
+ uv: "uv";
2619
+ vcpkg: "vcpkg";
2620
+ helm: "helm";
2621
+ julia: "julia";
2622
+ bazel: "bazel";
2623
+ opentofu: "opentofu";
2624
+ }>;
2625
+ config: z.ZodObject<{
2626
+ default_days: z.ZodNumber;
2627
+ semver_major_days: z.ZodNumber;
2628
+ semver_minor_days: z.ZodNumber;
2629
+ semver_patch_days: z.ZodNumber;
2630
+ }, z.core.$strip>;
2631
+ }, z.core.$strip>;
2632
+ }, z.core.$strip>;
2633
+ type DependabotRecordCooldownMeta = z.infer<typeof DependabotRecordCooldownMetaSchema>;
2531
2634
  declare const DependabotIncrementMetricSchema: z.ZodObject<{
2532
2635
  metric: z.ZodString;
2533
2636
  tags: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>>;
@@ -2547,5 +2650,5 @@ declare const DependabotMetricSchema: z.ZodObject<{
2547
2650
  }, z.core.$strip>;
2548
2651
  type DependabotMetric = z.infer<typeof DependabotMetricSchema>;
2549
2652
  //#endregion
2550
- export { mapSourceFromDependabotConfigToJobConfig as $, DependabotCommitMessage as $t, DependabotRecordUpdateJobWarningSchema as A, DEPENDABOT_DEFAULT_AUTHOR_EMAIL as An, DependabotJobConfig as At, DependabotTokenType as B, DependabotRequirementSource as Bt, DependabotRecordEcosystemVersions as C, parseDependabotConfig as Cn, DependabotExistingPRSchema as Ct, DependabotRecordUpdateJobUnknownError as D, VariableFinderFn as Dn, DependabotGroupJobSchema as Dt, DependabotRecordUpdateJobErrorSchema as E, validateConfiguration as En, DependabotGroupJob as Et, CreateApiServerAppOptions as F, DependabotPackageManagerSchema as Ft, makeRandomJobId as G, DependabotSourceProvider as Gt, DependabotJobBuilder as H, DependabotSecurityAdvisory as Ht, DependabotRequest as I, DependabotProxyConfig as It, mapExperiments as J, FetchedFiles as Jt, mapAllowedUpdatesFromDependabotConfigToJobConfig as K, DependabotSourceProviderSchema as Kt, DependabotRequestSchema as L, DependabotProxyConfigSchema as Lt, DependabotUpdateDependencyListSchema as M, GitAuthor as Mn, DependabotJobFile as Mt, DependabotUpdatePullRequest as N, DependabotJobFileSchema as Nt, DependabotRecordUpdateJobUnknownErrorSchema as O, convertPlaceholder as On, DependabotGroupRuleJob as Ot, DependabotUpdatePullRequestSchema as P, DependabotPackageManager as Pt, mapSecurityAdvisories as Q, DependabotAllowConditionSchema as Qt, DependabotRequestType as R, DependabotRequirement as Rt, DependabotRecordEcosystemMetaSchema as S, VersioningStrategySchema as Sn, DependabotExistingPR as St, DependabotRecordUpdateJobError as T, parseUpdates as Tn, DependabotExperimentsSchema as Tt, DependabotJobBuilderOutput as U, DependabotSecurityAdvisorySchema as Ut, createApiServerApp as V, DependabotRequirementSourceSchema as Vt, DependabotSourceInfo as W, DependabotSource as Wt, mapIgnoreConditionsFromDependabotConfigToJobConfig as X, FileUpdaterInput as Xt, mapGroupsFromDependabotConfigToJobConfig as Y, FileFetcherInput as Yt, mapPackageEcosystemToPackageManager as Z, DependabotAllowCondition as Zt, DependabotMarkAsProcessed as _, DependabotUpdateSchema as _n, DependabotCredentialSchema as _t, DependabotCreatePullRequest as a, DependabotGroup as an, sanitizeRef as at, DependabotMetricSchema as b, PackageEcosystemSchema as bn, DependabotExistingGroupPR as bt, DependabotDependencyFileSchema as c, DependabotIgnoreConditionSchema as cn, DependabotAllowed as ct, DependabotEcosystemMeta as d, DependabotPullRequestBranchName as dn, DependabotCommandSchema as dt, DependabotCommitMessageSchema as en, mapVersionStrategyToRequirementsUpdateStrategy as et, DependabotEcosystemMetaSchema as f, DependabotRegistry as fn, DependabotCommitOptions as ft, DependabotIncrementMetricSchema as g, DependabotUpdate as gn, DependabotCredential as gt, DependabotIncrementMetric as h, DependabotScheduleSchema as hn, DependabotConditionSchema as ht, DependabotClosePullRequestSchema as i, DependabotCooldownSchema as in, getBranchNameForUpdate as it, DependabotUpdateDependencyList as j, DEPENDABOT_DEFAULT_AUTHOR_NAME as jn, DependabotJobConfigSchema as jt, DependabotRecordUpdateJobWarning as k, extractPlaceholder as kn, DependabotGroupRuleJobSchema as kt, DependabotDependencySubmission as l, DependabotMultiEcosystemGroup as ln, DependabotAllowedSchema as lt, DependabotEcosystemVersionManagerSchema as m, DependabotSchedule as mn, DependabotCondition as mt, DependabotClosePullRequestReason as n, DependabotConfigSchema as nn, parseExperiments as nt, DependabotCreatePullRequestSchema as o, DependabotGroupSchema as on, CertificateAuthority as ot, DependabotEcosystemVersionManager as p, DependabotRegistrySchema as pn, DependabotCommitOptionsSchema as pt, mapCredentials as q, DependabotSourceSchema as qt, DependabotClosePullRequestReasonEnum as r, DependabotCooldown as rn, makeDirectoryKey as rt, DependabotDependencyFile as s, DependabotIgnoreCondition as sn, CertificateAuthoritySchema as st, DependabotClosePullRequest as t, DependabotConfig as tn, DEFAULT_EXPERIMENTS as tt, DependabotDependencySubmissionSchema as u, DependabotMultiEcosystemGroupSchema as un, DependabotCommand as ut, DependabotMarkAsProcessedSchema as v, POSSIBLE_CONFIG_FILE_PATHS as vn, DependabotDependency as vt, DependabotRecordEcosystemVersionsSchema as w, parseRegistries as wn, DependabotExperiments as wt, DependabotRecordEcosystemMeta as x, VersioningStrategy as xn, DependabotExistingGroupPRSchema as xt, DependabotMetric as y, PackageEcosystem as yn, DependabotDependencySchema as yt, DependabotRequestTypeSchema as z, DependabotRequirementSchema as zt };
2551
- //# sourceMappingURL=index--PMbsXAm.d.mts.map
2653
+ export { mapPackageEcosystemToPackageManager as $, FileUpdaterInput as $t, DependabotRecordUpdateJobUnknownErrorSchema as A, VariableFinderFn as An, DependabotGroupJobSchema as At, DependabotRequestType as B, DependabotProxyConfigSchema as Bt, DependabotRecordEcosystemMeta as C, PackageEcosystemSchema as Cn, DependabotExistingGroupPR as Ct, DependabotRecordUpdateJobError as D, parseRegistries as Dn, DependabotExperiments as Dt, DependabotRecordEcosystemVersionsSchema as E, parseDependabotConfig as En, DependabotExistingPRSchema as Et, DependabotUpdatePullRequest as F, GitAuthor as Fn, DependabotJobFile as Ft, DependabotJobBuilderOutput as G, DependabotSecurityAdvisory as Gt, DependabotTokenType as H, DependabotRequirementSchema as Ht, DependabotUpdatePullRequestSchema as I, DependabotJobFileSchema as It, mapAllowedUpdatesFromDependabotConfigToJobConfig as J, DependabotSourceProvider as Jt, DependabotSourceInfo as K, DependabotSecurityAdvisorySchema as Kt, CreateApiServerAppOptions as L, DependabotPackageManager as Lt, DependabotRecordUpdateJobWarningSchema as M, extractPlaceholder as Mn, DependabotGroupRuleJobSchema as Mt, DependabotUpdateDependencyList as N, DEPENDABOT_DEFAULT_AUTHOR_EMAIL as Nn, DependabotJobConfig as Nt, DependabotRecordUpdateJobErrorSchema as O, parseUpdates as On, DependabotExperimentsSchema as Ot, DependabotUpdateDependencyListSchema as P, DEPENDABOT_DEFAULT_AUTHOR_NAME as Pn, DependabotJobConfigSchema as Pt, mapIgnoreConditionsFromDependabotConfigToJobConfig as Q, FileFetcherInput as Qt, DependabotRequest as R, DependabotPackageManagerSchema as Rt, DependabotRecordCooldownMetaSchema as S, PackageEcosystem as Sn, DependabotDependencySchema as St, DependabotRecordEcosystemVersions as T, VersioningStrategySchema as Tn, DependabotExistingPR as Tt, createApiServerApp as U, DependabotRequirementSource as Ut, DependabotRequestTypeSchema as V, DependabotRequirement as Vt, DependabotJobBuilder as W, DependabotRequirementSourceSchema as Wt, mapExperiments as X, DependabotSourceSchema as Xt, mapCredentials as Y, DependabotSourceProviderSchema as Yt, mapGroupsFromDependabotConfigToJobConfig as Z, FetchedFiles as Zt, DependabotMarkAsProcessed as _, DependabotSchedule as _n, DependabotCondition as _t, DependabotCreatePullRequest as a, DependabotConfigSchema as an, setExperiment as at, DependabotMetricSchema as b, DependabotUpdateSchema as bn, DependabotCredentialSchema as bt, DependabotDependencyFileSchema as c, DependabotGroup as cn, sanitizeRef as ct, DependabotEcosystemMeta as d, DependabotIgnoreConditionSchema as dn, DependabotAllowed as dt, DependabotAllowCondition as en, mapSecurityAdvisories as et, DependabotEcosystemMetaSchema as f, DependabotMultiEcosystemGroup as fn, DependabotAllowedSchema as ft, DependabotIncrementMetricSchema as g, DependabotRegistrySchema as gn, DependabotCommitOptionsSchema as gt, DependabotIncrementMetric as h, DependabotRegistry as hn, DependabotCommitOptions as ht, DependabotClosePullRequestSchema as i, DependabotConfig as in, parseExperiments as it, DependabotRecordUpdateJobWarning as j, convertPlaceholder as jn, DependabotGroupRuleJob as jt, DependabotRecordUpdateJobUnknownError as k, validateConfiguration as kn, DependabotGroupJob as kt, DependabotDependencySubmission as l, DependabotGroupSchema as ln, CertificateAuthority as lt, DependabotEcosystemVersionManagerSchema as m, DependabotPullRequestBranchName as mn, DependabotCommandSchema as mt, DependabotClosePullRequestReason as n, DependabotCommitMessage as nn, mapVersionStrategyToRequirementsUpdateStrategy as nt, DependabotCreatePullRequestSchema as o, DependabotCooldown as on, makeDirectoryKey as ot, DependabotEcosystemVersionManager as p, DependabotMultiEcosystemGroupSchema as pn, DependabotCommand as pt, makeRandomJobId as q, DependabotSource as qt, DependabotClosePullRequestReasonEnum as r, DependabotCommitMessageSchema as rn, DEFAULT_EXPERIMENTS as rt, DependabotDependencyFile as s, DependabotCooldownSchema as sn, getBranchNameForUpdate as st, DependabotClosePullRequest as t, DependabotAllowConditionSchema as tn, mapSourceFromDependabotConfigToJobConfig as tt, DependabotDependencySubmissionSchema as u, DependabotIgnoreCondition as un, CertificateAuthoritySchema as ut, DependabotMarkAsProcessedSchema as v, DependabotScheduleSchema as vn, DependabotConditionSchema as vt, DependabotRecordEcosystemMetaSchema as w, VersioningStrategy as wn, DependabotExistingGroupPRSchema as wt, DependabotRecordCooldownMeta as x, POSSIBLE_CONFIG_FILE_PATHS as xn, DependabotDependency as xt, DependabotMetric as y, DependabotUpdate as yn, DependabotCredential as yt, DependabotRequestSchema as z, DependabotProxyConfig as zt };
2654
+ //# sourceMappingURL=index-bwD11mTZ.d.mts.map
@@ -196,6 +196,7 @@ const PackageEcosystemSchema = z.enum([
196
196
  "bundler",
197
197
  "cargo",
198
198
  "composer",
199
+ "conda",
199
200
  "devcontainers",
200
201
  "docker",
201
202
  "docker-compose",
@@ -250,7 +251,7 @@ const DependabotUpdateSchema = z.object({
250
251
  "pull-request-branch-name": DependabotPullRequestBranchNameSchema.optional(),
251
252
  "rebase-strategy": z.string().optional(),
252
253
  registries: z.string().array().optional(),
253
- schedule: DependabotScheduleSchema.optional(),
254
+ schedule: DependabotScheduleSchema,
254
255
  "target-branch": z.string().optional(),
255
256
  vendor: z.boolean().optional(),
256
257
  "versioning-strategy": VersioningStrategySchema.optional(),
@@ -298,7 +299,11 @@ const DependabotConfigSchema = z.object({
298
299
  if (seen.has(key)) addIssue(`Duplicate update configuration found for '${update["package-ecosystem"]}' and directory: '${update.directory ?? update.directories?.join(",")}'`);
299
300
  seen.add(key);
300
301
  }
301
- const betaEcosystems = ["bazel", "opentofu"];
302
+ const betaEcosystems = [
303
+ "bazel",
304
+ "conda",
305
+ "opentofu"
306
+ ];
302
307
  if (!value["enable-beta-ecosystems"]) {
303
308
  for (const update of value.updates) if (betaEcosystems.includes(update["package-ecosystem"])) addIssue(`The package ecosystem '${update["package-ecosystem"]}' is currently in beta. To use it, set 'enable-beta-ecosystems' to true in the dependabot configuration.`);
304
309
  }
@@ -484,6 +489,7 @@ const DependabotPackageManagerSchema = z.enum([
484
489
  "bundler",
485
490
  "cargo",
486
491
  "composer",
492
+ "conda",
487
493
  "pub",
488
494
  "docker",
489
495
  "elm",
@@ -551,4 +557,4 @@ const DependabotJobFileSchema = z.object({ job: DependabotJobConfigSchema });
551
557
 
552
558
  //#endregion
553
559
  export { DependabotScheduleSchema as A, extractPlaceholder as B, DependabotCommitMessageSchema as C, DependabotIgnoreConditionSchema as D, DependabotGroupSchema as E, parseDependabotConfig as F, parseRegistries as I, parseUpdates as L, POSSIBLE_CONFIG_FILE_PATHS as M, PackageEcosystemSchema as N, DependabotMultiEcosystemGroupSchema as O, VersioningStrategySchema as P, validateConfiguration as R, DependabotAllowConditionSchema as S, DependabotCooldownSchema as T, makeDirectoryKey as V, DependabotRequirementSchema as _, DependabotConditionSchema as a, DependabotSourceProviderSchema as b, DependabotExistingGroupPRSchema as c, DependabotGroupJobSchema as d, DependabotGroupRuleJobSchema as f, DependabotProxyConfigSchema as g, DependabotPackageManagerSchema as h, DependabotCommitOptionsSchema as i, DependabotUpdateSchema as j, DependabotRegistrySchema as k, DependabotExistingPRSchema as l, DependabotJobFileSchema as m, DependabotAllowedSchema as n, DependabotCredentialSchema as o, DependabotJobConfigSchema as p, DependabotCommandSchema as r, DependabotDependencySchema as s, CertificateAuthoritySchema as t, DependabotExperimentsSchema as u, DependabotRequirementSourceSchema as v, DependabotConfigSchema as w, DependabotSourceSchema as x, DependabotSecurityAdvisorySchema as y, convertPlaceholder as z };
554
- //# sourceMappingURL=job-BuCBKP9L.mjs.map
560
+ //# sourceMappingURL=job-DanO84YW.mjs.map