@paklo/core 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/usage.d.ts +11 -8
- package/dist/browser/usage.js +52 -16
- package/dist/browser/usage.js.map +1 -1
- package/dist/node/azure.d.ts +29 -7
- package/dist/node/azure.js +28 -8
- package/dist/node/azure.js.map +1 -1
- package/dist/node/{dependabot-BteoKZVy.js → dependabot-BmHuie46.js} +11 -5
- package/dist/node/dependabot-BmHuie46.js.map +1 -0
- package/dist/node/dependabot.d.ts +2 -2
- package/dist/node/dependabot.js +3 -3
- package/dist/node/{index-DP9JfUPG.d.ts → index-Dgl6vmM4.d.ts} +392 -69
- package/dist/node/{job-Crr4kh3e.js → job-C8KX68QT.js} +55 -19
- package/dist/node/job-C8KX68QT.js.map +1 -0
- package/dist/node/usage.d.ts +12 -9
- package/dist/node/usage.js +1 -1
- package/package.json +4 -4
- package/dist/node/dependabot-BteoKZVy.js.map +0 -1
- package/dist/node/job-Crr4kh3e.js.map +0 -1
|
@@ -24,14 +24,18 @@ declare function extractPlaceholder(input: string): RegExpExecArray[];
|
|
|
24
24
|
//#region src/dependabot/config.d.ts
|
|
25
25
|
declare const DependabotRegistrySchema: z.ZodPipe<z.ZodObject<{
|
|
26
26
|
type: z.ZodEnum<{
|
|
27
|
+
"cargo-registry": "cargo-registry";
|
|
27
28
|
"composer-repository": "composer-repository";
|
|
28
29
|
"docker-registry": "docker-registry";
|
|
29
30
|
git: "git";
|
|
31
|
+
"goproxy-server": "goproxy-server";
|
|
32
|
+
"helm-registry": "helm-registry";
|
|
30
33
|
"hex-organization": "hex-organization";
|
|
31
34
|
"hex-repository": "hex-repository";
|
|
32
35
|
"maven-repository": "maven-repository";
|
|
33
36
|
"npm-registry": "npm-registry";
|
|
34
37
|
"nuget-feed": "nuget-feed";
|
|
38
|
+
"pub-repository": "pub-repository";
|
|
35
39
|
"python-index": "python-index";
|
|
36
40
|
"rubygems-server": "rubygems-server";
|
|
37
41
|
"terraform-registry": "terraform-registry";
|
|
@@ -69,7 +73,7 @@ declare const DependabotRegistrySchema: z.ZodPipe<z.ZodObject<{
|
|
|
69
73
|
'tenant-id'?: string | undefined;
|
|
70
74
|
'client-id'?: string | undefined;
|
|
71
75
|
}, {
|
|
72
|
-
type: "composer-repository" | "docker-registry" | "git" | "hex-organization" | "hex-repository" | "maven-repository" | "npm-registry" | "nuget-feed" | "python-index" | "rubygems-server" | "terraform-registry";
|
|
76
|
+
type: "cargo-registry" | "composer-repository" | "docker-registry" | "git" | "goproxy-server" | "helm-registry" | "hex-organization" | "hex-repository" | "maven-repository" | "npm-registry" | "nuget-feed" | "pub-repository" | "python-index" | "rubygems-server" | "terraform-registry";
|
|
73
77
|
url?: string | undefined;
|
|
74
78
|
username?: string | undefined;
|
|
75
79
|
password?: string | undefined;
|
|
@@ -109,11 +113,11 @@ type DependabotGroup = z.infer<typeof DependabotGroupSchema>;
|
|
|
109
113
|
declare const DependabotAllowConditionSchema: z.ZodObject<{
|
|
110
114
|
'dependency-name': z.ZodOptional<z.ZodString>;
|
|
111
115
|
'dependency-type': z.ZodOptional<z.ZodEnum<{
|
|
116
|
+
all: "all";
|
|
112
117
|
development: "development";
|
|
113
118
|
production: "production";
|
|
114
119
|
direct: "direct";
|
|
115
120
|
indirect: "indirect";
|
|
116
|
-
all: "all";
|
|
117
121
|
}>>;
|
|
118
122
|
'update-type': z.ZodOptional<z.ZodEnum<{
|
|
119
123
|
all: "all";
|
|
@@ -175,22 +179,24 @@ declare const DependabotPullRequestBranchNameSchema: z.ZodObject<{
|
|
|
175
179
|
}, z.core.$strip>;
|
|
176
180
|
type DependabotPullRequestBranchName = z.infer<typeof DependabotPullRequestBranchNameSchema>;
|
|
177
181
|
declare const PackageEcosystemSchema: z.ZodEnum<{
|
|
178
|
-
bun: "bun";
|
|
179
182
|
bundler: "bundler";
|
|
180
183
|
cargo: "cargo";
|
|
181
184
|
composer: "composer";
|
|
182
|
-
|
|
185
|
+
pub: "pub";
|
|
183
186
|
docker: "docker";
|
|
184
|
-
helm: "helm";
|
|
185
187
|
elm: "elm";
|
|
186
188
|
gradle: "gradle";
|
|
187
189
|
maven: "maven";
|
|
188
190
|
nuget: "nuget";
|
|
189
191
|
pip: "pip";
|
|
190
|
-
pub: "pub";
|
|
191
192
|
swift: "swift";
|
|
192
193
|
terraform: "terraform";
|
|
194
|
+
devcontainers: "devcontainers";
|
|
195
|
+
bun: "bun";
|
|
193
196
|
uv: "uv";
|
|
197
|
+
vcpkg: "vcpkg";
|
|
198
|
+
helm: "helm";
|
|
199
|
+
julia: "julia";
|
|
194
200
|
"docker-compose": "docker-compose";
|
|
195
201
|
"dotnet-sdk": "dotnet-sdk";
|
|
196
202
|
mix: "mix";
|
|
@@ -198,39 +204,42 @@ declare const PackageEcosystemSchema: z.ZodEnum<{
|
|
|
198
204
|
"github-actions": "github-actions";
|
|
199
205
|
gomod: "gomod";
|
|
200
206
|
npm: "npm";
|
|
201
|
-
pipenv: "pipenv";
|
|
202
207
|
"pip-compile": "pip-compile";
|
|
203
|
-
|
|
208
|
+
pipenv: "pipenv";
|
|
204
209
|
pnpm: "pnpm";
|
|
210
|
+
poetry: "poetry";
|
|
211
|
+
"rust-toolchain": "rust-toolchain";
|
|
205
212
|
yarn: "yarn";
|
|
206
213
|
}>;
|
|
207
214
|
type PackageEcosystem = z.infer<typeof PackageEcosystemSchema>;
|
|
208
215
|
declare const VersioningStrategySchema: z.ZodEnum<{
|
|
216
|
+
"lockfile-only": "lockfile-only";
|
|
209
217
|
auto: "auto";
|
|
210
218
|
increase: "increase";
|
|
211
219
|
"increase-if-necessary": "increase-if-necessary";
|
|
212
|
-
"lockfile-only": "lockfile-only";
|
|
213
220
|
widen: "widen";
|
|
214
221
|
}>;
|
|
215
222
|
type VersioningStrategy = z.infer<typeof VersioningStrategySchema>;
|
|
216
223
|
declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
|
|
217
224
|
'package-ecosystem': z.ZodEnum<{
|
|
218
|
-
bun: "bun";
|
|
219
225
|
bundler: "bundler";
|
|
220
226
|
cargo: "cargo";
|
|
221
227
|
composer: "composer";
|
|
222
|
-
|
|
228
|
+
pub: "pub";
|
|
223
229
|
docker: "docker";
|
|
224
|
-
helm: "helm";
|
|
225
230
|
elm: "elm";
|
|
226
231
|
gradle: "gradle";
|
|
227
232
|
maven: "maven";
|
|
228
233
|
nuget: "nuget";
|
|
229
234
|
pip: "pip";
|
|
230
|
-
pub: "pub";
|
|
231
235
|
swift: "swift";
|
|
232
236
|
terraform: "terraform";
|
|
237
|
+
devcontainers: "devcontainers";
|
|
238
|
+
bun: "bun";
|
|
233
239
|
uv: "uv";
|
|
240
|
+
vcpkg: "vcpkg";
|
|
241
|
+
helm: "helm";
|
|
242
|
+
julia: "julia";
|
|
234
243
|
"docker-compose": "docker-compose";
|
|
235
244
|
"dotnet-sdk": "dotnet-sdk";
|
|
236
245
|
mix: "mix";
|
|
@@ -238,22 +247,24 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
|
|
|
238
247
|
"github-actions": "github-actions";
|
|
239
248
|
gomod: "gomod";
|
|
240
249
|
npm: "npm";
|
|
241
|
-
pipenv: "pipenv";
|
|
242
250
|
"pip-compile": "pip-compile";
|
|
243
|
-
|
|
251
|
+
pipenv: "pipenv";
|
|
244
252
|
pnpm: "pnpm";
|
|
253
|
+
poetry: "poetry";
|
|
254
|
+
"rust-toolchain": "rust-toolchain";
|
|
245
255
|
yarn: "yarn";
|
|
246
256
|
}>;
|
|
247
257
|
directory: z.ZodOptional<z.ZodString>;
|
|
248
258
|
directories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
259
|
+
'exclude-paths': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
249
260
|
allow: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
250
261
|
'dependency-name': z.ZodOptional<z.ZodString>;
|
|
251
262
|
'dependency-type': z.ZodOptional<z.ZodEnum<{
|
|
263
|
+
all: "all";
|
|
252
264
|
development: "development";
|
|
253
265
|
production: "production";
|
|
254
266
|
direct: "direct";
|
|
255
267
|
indirect: "indirect";
|
|
256
|
-
all: "all";
|
|
257
268
|
}>>;
|
|
258
269
|
'update-type': z.ZodOptional<z.ZodEnum<{
|
|
259
270
|
all: "all";
|
|
@@ -339,19 +350,22 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
|
|
|
339
350
|
'target-branch': z.ZodOptional<z.ZodString>;
|
|
340
351
|
vendor: z.ZodOptional<z.ZodBoolean>;
|
|
341
352
|
'versioning-strategy': z.ZodOptional<z.ZodEnum<{
|
|
353
|
+
"lockfile-only": "lockfile-only";
|
|
342
354
|
auto: "auto";
|
|
343
355
|
increase: "increase";
|
|
344
356
|
"increase-if-necessary": "increase-if-necessary";
|
|
345
|
-
"lockfile-only": "lockfile-only";
|
|
346
357
|
widen: "widen";
|
|
347
358
|
}>>;
|
|
359
|
+
patterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
360
|
+
'multi-ecosystem-group': z.ZodOptional<z.ZodString>;
|
|
348
361
|
}, z.core.$strip>, z.ZodTransform<{
|
|
349
|
-
'package-ecosystem': "
|
|
362
|
+
'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
|
|
350
363
|
directory?: string | undefined;
|
|
351
364
|
directories?: string[] | undefined;
|
|
365
|
+
'exclude-paths'?: string[] | undefined;
|
|
352
366
|
allow?: {
|
|
353
367
|
'dependency-name'?: string | undefined;
|
|
354
|
-
'dependency-type'?: "
|
|
368
|
+
'dependency-type'?: "all" | "development" | "production" | "direct" | "indirect" | undefined;
|
|
355
369
|
'update-type'?: "all" | "security" | undefined;
|
|
356
370
|
}[] | undefined;
|
|
357
371
|
assignees?: string[] | undefined;
|
|
@@ -399,14 +413,17 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
|
|
|
399
413
|
} | undefined;
|
|
400
414
|
'target-branch'?: string | undefined;
|
|
401
415
|
vendor?: boolean | undefined;
|
|
402
|
-
'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "
|
|
416
|
+
'versioning-strategy'?: "lockfile-only" | "auto" | "increase" | "increase-if-necessary" | "widen" | undefined;
|
|
417
|
+
patterns?: string[] | undefined;
|
|
418
|
+
'multi-ecosystem-group'?: string | undefined;
|
|
403
419
|
}, {
|
|
404
|
-
'package-ecosystem': "
|
|
420
|
+
'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
|
|
405
421
|
directory?: string | undefined;
|
|
406
422
|
directories?: string[] | undefined;
|
|
423
|
+
'exclude-paths'?: string[] | undefined;
|
|
407
424
|
allow?: {
|
|
408
425
|
'dependency-name'?: string | undefined;
|
|
409
|
-
'dependency-type'?: "
|
|
426
|
+
'dependency-type'?: "all" | "development" | "production" | "direct" | "indirect" | undefined;
|
|
410
427
|
'update-type'?: "all" | "security" | undefined;
|
|
411
428
|
}[] | undefined;
|
|
412
429
|
assignees?: string[] | undefined;
|
|
@@ -454,33 +471,112 @@ declare const DependabotUpdateSchema: z.ZodPipe<z.ZodObject<{
|
|
|
454
471
|
} | undefined;
|
|
455
472
|
'target-branch'?: string | undefined;
|
|
456
473
|
vendor?: boolean | undefined;
|
|
457
|
-
'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "
|
|
474
|
+
'versioning-strategy'?: "lockfile-only" | "auto" | "increase" | "increase-if-necessary" | "widen" | undefined;
|
|
475
|
+
patterns?: string[] | undefined;
|
|
476
|
+
'multi-ecosystem-group'?: string | undefined;
|
|
458
477
|
}>>;
|
|
459
478
|
type DependabotUpdate = z.infer<typeof DependabotUpdateSchema>;
|
|
479
|
+
declare const DependabotMultiEcosystemGroupSchema: z.ZodObject<{
|
|
480
|
+
schedule: z.ZodObject<{
|
|
481
|
+
interval: z.ZodEnum<{
|
|
482
|
+
daily: "daily";
|
|
483
|
+
weekly: "weekly";
|
|
484
|
+
monthly: "monthly";
|
|
485
|
+
quarterly: "quarterly";
|
|
486
|
+
semiannually: "semiannually";
|
|
487
|
+
yearly: "yearly";
|
|
488
|
+
cron: "cron";
|
|
489
|
+
}>;
|
|
490
|
+
day: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
491
|
+
sunday: "sunday";
|
|
492
|
+
monday: "monday";
|
|
493
|
+
tuesday: "tuesday";
|
|
494
|
+
wednesday: "wednesday";
|
|
495
|
+
thursday: "thursday";
|
|
496
|
+
friday: "friday";
|
|
497
|
+
saturday: "saturday";
|
|
498
|
+
}>>>;
|
|
499
|
+
time: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
500
|
+
timezone: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
501
|
+
cronjob: z.ZodOptional<z.ZodString>;
|
|
502
|
+
}, z.core.$strip>;
|
|
503
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
504
|
+
milestone: z.ZodOptional<z.ZodCoercedString<unknown>>;
|
|
505
|
+
assignees: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
506
|
+
'target-branch': z.ZodOptional<z.ZodString>;
|
|
507
|
+
'commit-message': z.ZodOptional<z.ZodObject<{
|
|
508
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
509
|
+
'prefix-development': z.ZodOptional<z.ZodString>;
|
|
510
|
+
include: z.ZodOptional<z.ZodString>;
|
|
511
|
+
}, z.core.$strip>>;
|
|
512
|
+
'pull-request-branch-name': z.ZodOptional<z.ZodObject<{
|
|
513
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
514
|
+
}, z.core.$strip>>;
|
|
515
|
+
}, z.core.$strip>;
|
|
516
|
+
type DependabotMultiEcosystemGroup = z.infer<typeof DependabotMultiEcosystemGroupSchema>;
|
|
460
517
|
/**
|
|
461
518
|
* Represents the dependabot.yaml configuration file options.
|
|
462
519
|
* See: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#configuration-options-for-dependabotyml
|
|
463
520
|
*/
|
|
464
|
-
declare const DependabotConfigSchema: z.ZodObject<{
|
|
521
|
+
declare const DependabotConfigSchema: z.ZodPipe<z.ZodObject<{
|
|
465
522
|
version: z.ZodNumber;
|
|
523
|
+
'multi-ecosystem-groups': z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
524
|
+
schedule: z.ZodObject<{
|
|
525
|
+
interval: z.ZodEnum<{
|
|
526
|
+
daily: "daily";
|
|
527
|
+
weekly: "weekly";
|
|
528
|
+
monthly: "monthly";
|
|
529
|
+
quarterly: "quarterly";
|
|
530
|
+
semiannually: "semiannually";
|
|
531
|
+
yearly: "yearly";
|
|
532
|
+
cron: "cron";
|
|
533
|
+
}>;
|
|
534
|
+
day: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
535
|
+
sunday: "sunday";
|
|
536
|
+
monday: "monday";
|
|
537
|
+
tuesday: "tuesday";
|
|
538
|
+
wednesday: "wednesday";
|
|
539
|
+
thursday: "thursday";
|
|
540
|
+
friday: "friday";
|
|
541
|
+
saturday: "saturday";
|
|
542
|
+
}>>>;
|
|
543
|
+
time: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
544
|
+
timezone: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
545
|
+
cronjob: z.ZodOptional<z.ZodString>;
|
|
546
|
+
}, z.core.$strip>;
|
|
547
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
548
|
+
milestone: z.ZodOptional<z.ZodCoercedString<unknown>>;
|
|
549
|
+
assignees: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
550
|
+
'target-branch': z.ZodOptional<z.ZodString>;
|
|
551
|
+
'commit-message': z.ZodOptional<z.ZodObject<{
|
|
552
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
553
|
+
'prefix-development': z.ZodOptional<z.ZodString>;
|
|
554
|
+
include: z.ZodOptional<z.ZodString>;
|
|
555
|
+
}, z.core.$strip>>;
|
|
556
|
+
'pull-request-branch-name': z.ZodOptional<z.ZodObject<{
|
|
557
|
+
separator: z.ZodOptional<z.ZodString>;
|
|
558
|
+
}, z.core.$strip>>;
|
|
559
|
+
}, z.core.$strip>>>;
|
|
466
560
|
updates: z.ZodArray<z.ZodPipe<z.ZodObject<{
|
|
467
561
|
'package-ecosystem': z.ZodEnum<{
|
|
468
|
-
bun: "bun";
|
|
469
562
|
bundler: "bundler";
|
|
470
563
|
cargo: "cargo";
|
|
471
564
|
composer: "composer";
|
|
472
|
-
|
|
565
|
+
pub: "pub";
|
|
473
566
|
docker: "docker";
|
|
474
|
-
helm: "helm";
|
|
475
567
|
elm: "elm";
|
|
476
568
|
gradle: "gradle";
|
|
477
569
|
maven: "maven";
|
|
478
570
|
nuget: "nuget";
|
|
479
571
|
pip: "pip";
|
|
480
|
-
pub: "pub";
|
|
481
572
|
swift: "swift";
|
|
482
573
|
terraform: "terraform";
|
|
574
|
+
devcontainers: "devcontainers";
|
|
575
|
+
bun: "bun";
|
|
483
576
|
uv: "uv";
|
|
577
|
+
vcpkg: "vcpkg";
|
|
578
|
+
helm: "helm";
|
|
579
|
+
julia: "julia";
|
|
484
580
|
"docker-compose": "docker-compose";
|
|
485
581
|
"dotnet-sdk": "dotnet-sdk";
|
|
486
582
|
mix: "mix";
|
|
@@ -488,22 +584,24 @@ declare const DependabotConfigSchema: z.ZodObject<{
|
|
|
488
584
|
"github-actions": "github-actions";
|
|
489
585
|
gomod: "gomod";
|
|
490
586
|
npm: "npm";
|
|
491
|
-
pipenv: "pipenv";
|
|
492
587
|
"pip-compile": "pip-compile";
|
|
493
|
-
|
|
588
|
+
pipenv: "pipenv";
|
|
494
589
|
pnpm: "pnpm";
|
|
590
|
+
poetry: "poetry";
|
|
591
|
+
"rust-toolchain": "rust-toolchain";
|
|
495
592
|
yarn: "yarn";
|
|
496
593
|
}>;
|
|
497
594
|
directory: z.ZodOptional<z.ZodString>;
|
|
498
595
|
directories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
596
|
+
'exclude-paths': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
499
597
|
allow: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
500
598
|
'dependency-name': z.ZodOptional<z.ZodString>;
|
|
501
599
|
'dependency-type': z.ZodOptional<z.ZodEnum<{
|
|
600
|
+
all: "all";
|
|
502
601
|
development: "development";
|
|
503
602
|
production: "production";
|
|
504
603
|
direct: "direct";
|
|
505
604
|
indirect: "indirect";
|
|
506
|
-
all: "all";
|
|
507
605
|
}>>;
|
|
508
606
|
'update-type': z.ZodOptional<z.ZodEnum<{
|
|
509
607
|
all: "all";
|
|
@@ -589,19 +687,22 @@ declare const DependabotConfigSchema: z.ZodObject<{
|
|
|
589
687
|
'target-branch': z.ZodOptional<z.ZodString>;
|
|
590
688
|
vendor: z.ZodOptional<z.ZodBoolean>;
|
|
591
689
|
'versioning-strategy': z.ZodOptional<z.ZodEnum<{
|
|
690
|
+
"lockfile-only": "lockfile-only";
|
|
592
691
|
auto: "auto";
|
|
593
692
|
increase: "increase";
|
|
594
693
|
"increase-if-necessary": "increase-if-necessary";
|
|
595
|
-
"lockfile-only": "lockfile-only";
|
|
596
694
|
widen: "widen";
|
|
597
695
|
}>>;
|
|
696
|
+
patterns: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
697
|
+
'multi-ecosystem-group': z.ZodOptional<z.ZodString>;
|
|
598
698
|
}, z.core.$strip>, z.ZodTransform<{
|
|
599
|
-
'package-ecosystem': "
|
|
699
|
+
'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
|
|
600
700
|
directory?: string | undefined;
|
|
601
701
|
directories?: string[] | undefined;
|
|
702
|
+
'exclude-paths'?: string[] | undefined;
|
|
602
703
|
allow?: {
|
|
603
704
|
'dependency-name'?: string | undefined;
|
|
604
|
-
'dependency-type'?: "
|
|
705
|
+
'dependency-type'?: "all" | "development" | "production" | "direct" | "indirect" | undefined;
|
|
605
706
|
'update-type'?: "all" | "security" | undefined;
|
|
606
707
|
}[] | undefined;
|
|
607
708
|
assignees?: string[] | undefined;
|
|
@@ -649,14 +750,17 @@ declare const DependabotConfigSchema: z.ZodObject<{
|
|
|
649
750
|
} | undefined;
|
|
650
751
|
'target-branch'?: string | undefined;
|
|
651
752
|
vendor?: boolean | undefined;
|
|
652
|
-
'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "
|
|
753
|
+
'versioning-strategy'?: "lockfile-only" | "auto" | "increase" | "increase-if-necessary" | "widen" | undefined;
|
|
754
|
+
patterns?: string[] | undefined;
|
|
755
|
+
'multi-ecosystem-group'?: string | undefined;
|
|
653
756
|
}, {
|
|
654
|
-
'package-ecosystem': "
|
|
757
|
+
'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
|
|
655
758
|
directory?: string | undefined;
|
|
656
759
|
directories?: string[] | undefined;
|
|
760
|
+
'exclude-paths'?: string[] | undefined;
|
|
657
761
|
allow?: {
|
|
658
762
|
'dependency-name'?: string | undefined;
|
|
659
|
-
'dependency-type'?: "
|
|
763
|
+
'dependency-type'?: "all" | "development" | "production" | "direct" | "indirect" | undefined;
|
|
660
764
|
'update-type'?: "all" | "security" | undefined;
|
|
661
765
|
}[] | undefined;
|
|
662
766
|
assignees?: string[] | undefined;
|
|
@@ -704,18 +808,24 @@ declare const DependabotConfigSchema: z.ZodObject<{
|
|
|
704
808
|
} | undefined;
|
|
705
809
|
'target-branch'?: string | undefined;
|
|
706
810
|
vendor?: boolean | undefined;
|
|
707
|
-
'versioning-strategy'?: "auto" | "increase" | "increase-if-necessary" | "
|
|
811
|
+
'versioning-strategy'?: "lockfile-only" | "auto" | "increase" | "increase-if-necessary" | "widen" | undefined;
|
|
812
|
+
patterns?: string[] | undefined;
|
|
813
|
+
'multi-ecosystem-group'?: string | undefined;
|
|
708
814
|
}>>>;
|
|
709
815
|
registries: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodObject<{
|
|
710
816
|
type: z.ZodEnum<{
|
|
817
|
+
"cargo-registry": "cargo-registry";
|
|
711
818
|
"composer-repository": "composer-repository";
|
|
712
819
|
"docker-registry": "docker-registry";
|
|
713
820
|
git: "git";
|
|
821
|
+
"goproxy-server": "goproxy-server";
|
|
822
|
+
"helm-registry": "helm-registry";
|
|
714
823
|
"hex-organization": "hex-organization";
|
|
715
824
|
"hex-repository": "hex-repository";
|
|
716
825
|
"maven-repository": "maven-repository";
|
|
717
826
|
"npm-registry": "npm-registry";
|
|
718
827
|
"nuget-feed": "nuget-feed";
|
|
828
|
+
"pub-repository": "pub-repository";
|
|
719
829
|
"python-index": "python-index";
|
|
720
830
|
"rubygems-server": "rubygems-server";
|
|
721
831
|
"terraform-registry": "terraform-registry";
|
|
@@ -753,7 +863,7 @@ declare const DependabotConfigSchema: z.ZodObject<{
|
|
|
753
863
|
'tenant-id'?: string | undefined;
|
|
754
864
|
'client-id'?: string | undefined;
|
|
755
865
|
}, {
|
|
756
|
-
type: "composer-repository" | "docker-registry" | "git" | "hex-organization" | "hex-repository" | "maven-repository" | "npm-registry" | "nuget-feed" | "python-index" | "rubygems-server" | "terraform-registry";
|
|
866
|
+
type: "cargo-registry" | "composer-repository" | "docker-registry" | "git" | "goproxy-server" | "helm-registry" | "hex-organization" | "hex-repository" | "maven-repository" | "npm-registry" | "nuget-feed" | "pub-repository" | "python-index" | "rubygems-server" | "terraform-registry";
|
|
757
867
|
url?: string | undefined;
|
|
758
868
|
username?: string | undefined;
|
|
759
869
|
password?: string | undefined;
|
|
@@ -771,7 +881,209 @@ declare const DependabotConfigSchema: z.ZodObject<{
|
|
|
771
881
|
'client-id'?: string | undefined;
|
|
772
882
|
}>>>>;
|
|
773
883
|
'enable-beta-ecosystems': z.ZodOptional<z.ZodBoolean>;
|
|
774
|
-
}, z.core.$strip
|
|
884
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
885
|
+
version: number;
|
|
886
|
+
updates: {
|
|
887
|
+
'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
|
|
888
|
+
directory?: string | undefined;
|
|
889
|
+
directories?: string[] | undefined;
|
|
890
|
+
'exclude-paths'?: string[] | undefined;
|
|
891
|
+
allow?: {
|
|
892
|
+
'dependency-name'?: string | undefined;
|
|
893
|
+
'dependency-type'?: "all" | "development" | "production" | "direct" | "indirect" | undefined;
|
|
894
|
+
'update-type'?: "all" | "security" | undefined;
|
|
895
|
+
}[] | undefined;
|
|
896
|
+
assignees?: string[] | undefined;
|
|
897
|
+
'commit-message'?: {
|
|
898
|
+
prefix?: string | undefined;
|
|
899
|
+
'prefix-development'?: string | undefined;
|
|
900
|
+
include?: string | undefined;
|
|
901
|
+
} | undefined;
|
|
902
|
+
cooldown?: {
|
|
903
|
+
'default-days'?: number | undefined;
|
|
904
|
+
'semver-major-days'?: number | undefined;
|
|
905
|
+
'semver-minor-days'?: number | undefined;
|
|
906
|
+
'semver-patch-days'?: number | undefined;
|
|
907
|
+
include?: string[] | undefined;
|
|
908
|
+
exclude?: string[] | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
groups?: Record<string, {
|
|
911
|
+
IDENTIFIER?: string | undefined;
|
|
912
|
+
'applies-to'?: "version-updates" | "security-updates" | undefined;
|
|
913
|
+
'dependency-type'?: "development" | "production" | undefined;
|
|
914
|
+
patterns?: string[] | undefined;
|
|
915
|
+
'exclude-patterns'?: string[] | undefined;
|
|
916
|
+
'update-types'?: ("major" | "minor" | "patch")[] | undefined;
|
|
917
|
+
}> | undefined;
|
|
918
|
+
ignore?: ({
|
|
919
|
+
'dependency-name'?: string | undefined;
|
|
920
|
+
versions?: string | string[] | undefined;
|
|
921
|
+
'update-types'?: ("version-update:semver-major" | "version-update:semver-minor" | "version-update:semver-patch")[] | undefined;
|
|
922
|
+
} & Record<string, any>)[] | undefined;
|
|
923
|
+
'insecure-external-code-execution'?: "allow" | "deny" | undefined;
|
|
924
|
+
labels?: string[] | undefined;
|
|
925
|
+
milestone?: string | undefined;
|
|
926
|
+
'open-pull-requests-limit'?: number | undefined;
|
|
927
|
+
'pull-request-branch-name'?: {
|
|
928
|
+
separator?: string | undefined;
|
|
929
|
+
} | undefined;
|
|
930
|
+
'rebase-strategy'?: string | undefined;
|
|
931
|
+
registries?: string[] | undefined;
|
|
932
|
+
schedule?: {
|
|
933
|
+
interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
|
|
934
|
+
day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
|
|
935
|
+
timezone: string;
|
|
936
|
+
time?: string | undefined;
|
|
937
|
+
cronjob?: string | undefined;
|
|
938
|
+
} | undefined;
|
|
939
|
+
'target-branch'?: string | undefined;
|
|
940
|
+
vendor?: boolean | undefined;
|
|
941
|
+
'versioning-strategy'?: "lockfile-only" | "auto" | "increase" | "increase-if-necessary" | "widen" | undefined;
|
|
942
|
+
patterns?: string[] | undefined;
|
|
943
|
+
'multi-ecosystem-group'?: string | undefined;
|
|
944
|
+
}[];
|
|
945
|
+
'multi-ecosystem-groups'?: Record<string, {
|
|
946
|
+
schedule: {
|
|
947
|
+
interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
|
|
948
|
+
day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
|
|
949
|
+
timezone: string;
|
|
950
|
+
time?: string | undefined;
|
|
951
|
+
cronjob?: string | undefined;
|
|
952
|
+
};
|
|
953
|
+
labels?: string[] | undefined;
|
|
954
|
+
milestone?: string | undefined;
|
|
955
|
+
assignees?: string[] | undefined;
|
|
956
|
+
'target-branch'?: string | undefined;
|
|
957
|
+
'commit-message'?: {
|
|
958
|
+
prefix?: string | undefined;
|
|
959
|
+
'prefix-development'?: string | undefined;
|
|
960
|
+
include?: string | undefined;
|
|
961
|
+
} | undefined;
|
|
962
|
+
'pull-request-branch-name'?: {
|
|
963
|
+
separator?: string | undefined;
|
|
964
|
+
} | undefined;
|
|
965
|
+
}> | undefined;
|
|
966
|
+
registries?: Record<string, {
|
|
967
|
+
type: string;
|
|
968
|
+
url?: string | undefined;
|
|
969
|
+
username?: string | undefined;
|
|
970
|
+
password?: string | undefined;
|
|
971
|
+
key?: string | undefined;
|
|
972
|
+
token?: string | undefined;
|
|
973
|
+
'replaces-base'?: boolean | undefined;
|
|
974
|
+
host?: string | undefined;
|
|
975
|
+
registry?: string | undefined;
|
|
976
|
+
organization?: string | undefined;
|
|
977
|
+
repo?: string | undefined;
|
|
978
|
+
'public-key-fingerprint'?: string | undefined;
|
|
979
|
+
'index-url'?: string | undefined;
|
|
980
|
+
'auth-key'?: string | undefined;
|
|
981
|
+
'tenant-id'?: string | undefined;
|
|
982
|
+
'client-id'?: string | undefined;
|
|
983
|
+
}> | undefined;
|
|
984
|
+
'enable-beta-ecosystems'?: boolean | undefined;
|
|
985
|
+
}, {
|
|
986
|
+
version: number;
|
|
987
|
+
updates: {
|
|
988
|
+
'package-ecosystem': "bundler" | "cargo" | "composer" | "pub" | "docker" | "elm" | "gradle" | "maven" | "nuget" | "pip" | "swift" | "terraform" | "devcontainers" | "bun" | "uv" | "vcpkg" | "helm" | "julia" | "docker-compose" | "dotnet-sdk" | "mix" | "gitsubmodule" | "github-actions" | "gomod" | "npm" | "pip-compile" | "pipenv" | "pnpm" | "poetry" | "rust-toolchain" | "yarn";
|
|
989
|
+
directory?: string | undefined;
|
|
990
|
+
directories?: string[] | undefined;
|
|
991
|
+
'exclude-paths'?: string[] | undefined;
|
|
992
|
+
allow?: {
|
|
993
|
+
'dependency-name'?: string | undefined;
|
|
994
|
+
'dependency-type'?: "all" | "development" | "production" | "direct" | "indirect" | undefined;
|
|
995
|
+
'update-type'?: "all" | "security" | undefined;
|
|
996
|
+
}[] | undefined;
|
|
997
|
+
assignees?: string[] | undefined;
|
|
998
|
+
'commit-message'?: {
|
|
999
|
+
prefix?: string | undefined;
|
|
1000
|
+
'prefix-development'?: string | undefined;
|
|
1001
|
+
include?: string | undefined;
|
|
1002
|
+
} | undefined;
|
|
1003
|
+
cooldown?: {
|
|
1004
|
+
'default-days'?: number | undefined;
|
|
1005
|
+
'semver-major-days'?: number | undefined;
|
|
1006
|
+
'semver-minor-days'?: number | undefined;
|
|
1007
|
+
'semver-patch-days'?: number | undefined;
|
|
1008
|
+
include?: string[] | undefined;
|
|
1009
|
+
exclude?: string[] | undefined;
|
|
1010
|
+
} | undefined;
|
|
1011
|
+
groups?: Record<string, {
|
|
1012
|
+
IDENTIFIER?: string | undefined;
|
|
1013
|
+
'applies-to'?: "version-updates" | "security-updates" | undefined;
|
|
1014
|
+
'dependency-type'?: "development" | "production" | undefined;
|
|
1015
|
+
patterns?: string[] | undefined;
|
|
1016
|
+
'exclude-patterns'?: string[] | undefined;
|
|
1017
|
+
'update-types'?: ("major" | "minor" | "patch")[] | undefined;
|
|
1018
|
+
}> | undefined;
|
|
1019
|
+
ignore?: ({
|
|
1020
|
+
'dependency-name'?: string | undefined;
|
|
1021
|
+
versions?: string | string[] | undefined;
|
|
1022
|
+
'update-types'?: ("version-update:semver-major" | "version-update:semver-minor" | "version-update:semver-patch")[] | undefined;
|
|
1023
|
+
} & Record<string, any>)[] | undefined;
|
|
1024
|
+
'insecure-external-code-execution'?: "allow" | "deny" | undefined;
|
|
1025
|
+
labels?: string[] | undefined;
|
|
1026
|
+
milestone?: string | undefined;
|
|
1027
|
+
'open-pull-requests-limit'?: number | undefined;
|
|
1028
|
+
'pull-request-branch-name'?: {
|
|
1029
|
+
separator?: string | undefined;
|
|
1030
|
+
} | undefined;
|
|
1031
|
+
'rebase-strategy'?: string | undefined;
|
|
1032
|
+
registries?: string[] | undefined;
|
|
1033
|
+
schedule?: {
|
|
1034
|
+
interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
|
|
1035
|
+
day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
|
|
1036
|
+
timezone: string;
|
|
1037
|
+
time?: string | undefined;
|
|
1038
|
+
cronjob?: string | undefined;
|
|
1039
|
+
} | undefined;
|
|
1040
|
+
'target-branch'?: string | undefined;
|
|
1041
|
+
vendor?: boolean | undefined;
|
|
1042
|
+
'versioning-strategy'?: "lockfile-only" | "auto" | "increase" | "increase-if-necessary" | "widen" | undefined;
|
|
1043
|
+
patterns?: string[] | undefined;
|
|
1044
|
+
'multi-ecosystem-group'?: string | undefined;
|
|
1045
|
+
}[];
|
|
1046
|
+
'multi-ecosystem-groups'?: Record<string, {
|
|
1047
|
+
schedule: {
|
|
1048
|
+
interval: "daily" | "weekly" | "monthly" | "quarterly" | "semiannually" | "yearly" | "cron";
|
|
1049
|
+
day: "sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday";
|
|
1050
|
+
timezone: string;
|
|
1051
|
+
time?: string | undefined;
|
|
1052
|
+
cronjob?: string | undefined;
|
|
1053
|
+
};
|
|
1054
|
+
labels?: string[] | undefined;
|
|
1055
|
+
milestone?: string | undefined;
|
|
1056
|
+
assignees?: string[] | undefined;
|
|
1057
|
+
'target-branch'?: string | undefined;
|
|
1058
|
+
'commit-message'?: {
|
|
1059
|
+
prefix?: string | undefined;
|
|
1060
|
+
'prefix-development'?: string | undefined;
|
|
1061
|
+
include?: string | undefined;
|
|
1062
|
+
} | undefined;
|
|
1063
|
+
'pull-request-branch-name'?: {
|
|
1064
|
+
separator?: string | undefined;
|
|
1065
|
+
} | undefined;
|
|
1066
|
+
}> | undefined;
|
|
1067
|
+
registries?: Record<string, {
|
|
1068
|
+
type: string;
|
|
1069
|
+
url?: string | undefined;
|
|
1070
|
+
username?: string | undefined;
|
|
1071
|
+
password?: string | undefined;
|
|
1072
|
+
key?: string | undefined;
|
|
1073
|
+
token?: string | undefined;
|
|
1074
|
+
'replaces-base'?: boolean | undefined;
|
|
1075
|
+
host?: string | undefined;
|
|
1076
|
+
registry?: string | undefined;
|
|
1077
|
+
organization?: string | undefined;
|
|
1078
|
+
repo?: string | undefined;
|
|
1079
|
+
'public-key-fingerprint'?: string | undefined;
|
|
1080
|
+
'index-url'?: string | undefined;
|
|
1081
|
+
'auth-key'?: string | undefined;
|
|
1082
|
+
'tenant-id'?: string | undefined;
|
|
1083
|
+
'client-id'?: string | undefined;
|
|
1084
|
+
}> | undefined;
|
|
1085
|
+
'enable-beta-ecosystems'?: boolean | undefined;
|
|
1086
|
+
}>>;
|
|
775
1087
|
type DependabotConfig = z.infer<typeof DependabotConfigSchema>;
|
|
776
1088
|
declare function parseUpdates(config: DependabotConfig, configPath: string): DependabotUpdate[];
|
|
777
1089
|
declare function parseRegistries(config: DependabotConfig, variableFinder: VariableFinderFn): Promise<Record<string, DependabotRegistry>>;
|
|
@@ -934,29 +1246,32 @@ type DependabotCommitOptions = z.infer<typeof DependabotCommitOptionsSchema>;
|
|
|
934
1246
|
declare const DependabotExperimentsSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodBoolean]>>;
|
|
935
1247
|
type DependabotExperiments = z.infer<typeof DependabotExperimentsSchema>;
|
|
936
1248
|
declare const DependabotPackageManagerSchema: z.ZodEnum<{
|
|
937
|
-
|
|
1249
|
+
hex: "hex";
|
|
938
1250
|
bundler: "bundler";
|
|
939
1251
|
cargo: "cargo";
|
|
940
1252
|
composer: "composer";
|
|
941
|
-
|
|
1253
|
+
pub: "pub";
|
|
942
1254
|
docker: "docker";
|
|
943
|
-
docker_compose: "docker_compose";
|
|
944
|
-
dotnet_sdk: "dotnet_sdk";
|
|
945
|
-
helm: "helm";
|
|
946
|
-
hex: "hex";
|
|
947
1255
|
elm: "elm";
|
|
948
|
-
submodules: "submodules";
|
|
949
1256
|
github_actions: "github_actions";
|
|
1257
|
+
submodules: "submodules";
|
|
950
1258
|
go_modules: "go_modules";
|
|
951
1259
|
gradle: "gradle";
|
|
952
1260
|
maven: "maven";
|
|
953
|
-
npm_and_yarn: "npm_and_yarn";
|
|
954
1261
|
nuget: "nuget";
|
|
1262
|
+
npm_and_yarn: "npm_and_yarn";
|
|
955
1263
|
pip: "pip";
|
|
956
|
-
|
|
1264
|
+
rust_toolchain: "rust_toolchain";
|
|
957
1265
|
swift: "swift";
|
|
958
1266
|
terraform: "terraform";
|
|
1267
|
+
devcontainers: "devcontainers";
|
|
1268
|
+
dotnet_sdk: "dotnet_sdk";
|
|
1269
|
+
bun: "bun";
|
|
1270
|
+
docker_compose: "docker_compose";
|
|
959
1271
|
uv: "uv";
|
|
1272
|
+
vcpkg: "vcpkg";
|
|
1273
|
+
helm: "helm";
|
|
1274
|
+
julia: "julia";
|
|
960
1275
|
}>;
|
|
961
1276
|
type DependabotPackageManager = z.infer<typeof DependabotPackageManagerSchema>;
|
|
962
1277
|
declare const DependabotCommandSchema: z.ZodEnum<{
|
|
@@ -973,29 +1288,32 @@ declare const DependabotJobConfigSchema: z.ZodObject<{
|
|
|
973
1288
|
recreate: "recreate";
|
|
974
1289
|
}>>;
|
|
975
1290
|
'package-manager': z.ZodEnum<{
|
|
976
|
-
|
|
1291
|
+
hex: "hex";
|
|
977
1292
|
bundler: "bundler";
|
|
978
1293
|
cargo: "cargo";
|
|
979
1294
|
composer: "composer";
|
|
980
|
-
|
|
1295
|
+
pub: "pub";
|
|
981
1296
|
docker: "docker";
|
|
982
|
-
docker_compose: "docker_compose";
|
|
983
|
-
dotnet_sdk: "dotnet_sdk";
|
|
984
|
-
helm: "helm";
|
|
985
|
-
hex: "hex";
|
|
986
1297
|
elm: "elm";
|
|
987
|
-
submodules: "submodules";
|
|
988
1298
|
github_actions: "github_actions";
|
|
1299
|
+
submodules: "submodules";
|
|
989
1300
|
go_modules: "go_modules";
|
|
990
1301
|
gradle: "gradle";
|
|
991
1302
|
maven: "maven";
|
|
992
|
-
npm_and_yarn: "npm_and_yarn";
|
|
993
1303
|
nuget: "nuget";
|
|
1304
|
+
npm_and_yarn: "npm_and_yarn";
|
|
994
1305
|
pip: "pip";
|
|
995
|
-
|
|
1306
|
+
rust_toolchain: "rust_toolchain";
|
|
996
1307
|
swift: "swift";
|
|
997
1308
|
terraform: "terraform";
|
|
1309
|
+
devcontainers: "devcontainers";
|
|
1310
|
+
dotnet_sdk: "dotnet_sdk";
|
|
1311
|
+
bun: "bun";
|
|
1312
|
+
docker_compose: "docker_compose";
|
|
998
1313
|
uv: "uv";
|
|
1314
|
+
vcpkg: "vcpkg";
|
|
1315
|
+
helm: "helm";
|
|
1316
|
+
julia: "julia";
|
|
999
1317
|
}>;
|
|
1000
1318
|
'allowed-updates': z.ZodArray<z.ZodObject<{
|
|
1001
1319
|
'dependency-name': z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1085,6 +1403,7 @@ declare const DependabotJobConfigSchema: z.ZodObject<{
|
|
|
1085
1403
|
'proxy-log-response-body-on-auth-failure': z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1086
1404
|
'enable-beta-ecosystems': z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1087
1405
|
'multi-ecosystem-update': z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1406
|
+
'exclude-paths': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1088
1407
|
}, z.core.$strip>;
|
|
1089
1408
|
type DependabotJobConfig = z.infer<typeof DependabotJobConfigSchema>;
|
|
1090
1409
|
declare const DependabotJobFileSchema: z.ZodObject<{
|
|
@@ -1096,29 +1415,32 @@ declare const DependabotJobFileSchema: z.ZodObject<{
|
|
|
1096
1415
|
recreate: "recreate";
|
|
1097
1416
|
}>>;
|
|
1098
1417
|
'package-manager': z.ZodEnum<{
|
|
1099
|
-
|
|
1418
|
+
hex: "hex";
|
|
1100
1419
|
bundler: "bundler";
|
|
1101
1420
|
cargo: "cargo";
|
|
1102
1421
|
composer: "composer";
|
|
1103
|
-
|
|
1422
|
+
pub: "pub";
|
|
1104
1423
|
docker: "docker";
|
|
1105
|
-
docker_compose: "docker_compose";
|
|
1106
|
-
dotnet_sdk: "dotnet_sdk";
|
|
1107
|
-
helm: "helm";
|
|
1108
|
-
hex: "hex";
|
|
1109
1424
|
elm: "elm";
|
|
1110
|
-
submodules: "submodules";
|
|
1111
1425
|
github_actions: "github_actions";
|
|
1426
|
+
submodules: "submodules";
|
|
1112
1427
|
go_modules: "go_modules";
|
|
1113
1428
|
gradle: "gradle";
|
|
1114
1429
|
maven: "maven";
|
|
1115
|
-
npm_and_yarn: "npm_and_yarn";
|
|
1116
1430
|
nuget: "nuget";
|
|
1431
|
+
npm_and_yarn: "npm_and_yarn";
|
|
1117
1432
|
pip: "pip";
|
|
1118
|
-
|
|
1433
|
+
rust_toolchain: "rust_toolchain";
|
|
1119
1434
|
swift: "swift";
|
|
1120
1435
|
terraform: "terraform";
|
|
1436
|
+
devcontainers: "devcontainers";
|
|
1437
|
+
dotnet_sdk: "dotnet_sdk";
|
|
1438
|
+
bun: "bun";
|
|
1439
|
+
docker_compose: "docker_compose";
|
|
1121
1440
|
uv: "uv";
|
|
1441
|
+
vcpkg: "vcpkg";
|
|
1442
|
+
helm: "helm";
|
|
1443
|
+
julia: "julia";
|
|
1122
1444
|
}>;
|
|
1123
1445
|
'allowed-updates': z.ZodArray<z.ZodObject<{
|
|
1124
1446
|
'dependency-name': z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1208,6 +1530,7 @@ declare const DependabotJobFileSchema: z.ZodObject<{
|
|
|
1208
1530
|
'proxy-log-response-body-on-auth-failure': z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1209
1531
|
'enable-beta-ecosystems': z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1210
1532
|
'multi-ecosystem-update': z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1533
|
+
'exclude-paths': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1211
1534
|
}, z.core.$strip>;
|
|
1212
1535
|
}, z.core.$strip>;
|
|
1213
1536
|
type DependabotJobFile = z.infer<typeof DependabotJobFileSchema>;
|
|
@@ -1757,5 +2080,5 @@ declare const DependabotMetricSchema: z.ZodObject<{
|
|
|
1757
2080
|
}, z.core.$strip>;
|
|
1758
2081
|
type DependabotMetric = z.infer<typeof DependabotMetricSchema>;
|
|
1759
2082
|
//#endregion
|
|
1760
|
-
export { sanitizeRef as $, DependabotGroup as $t, DependabotRequest as A, DependabotProxyConfig as At, makeRandomJobToken as B, DependabotSourceProviderSchema as Bt, DependabotRecordUpdateJobUnknownError as C,
|
|
1761
|
-
//# sourceMappingURL=index-
|
|
2083
|
+
export { sanitizeRef as $, DependabotGroup as $t, DependabotRequest as A, DependabotProxyConfig as At, makeRandomJobToken as B, DependabotSourceProviderSchema as Bt, DependabotRecordUpdateJobUnknownError as C, extractPlaceholder as Cn, DependabotGroupRuleJobSchema as Ct, DependabotUpdatePullRequest as D, DependabotJobFileSchema as Dt, DependabotUpdateDependencyListSchema as E, GitAuthor as En, DependabotJobFile as Et, createApiServerApp as F, DependabotRequirementSourceSchema as Ft, mapIgnoreConditionsFromDependabotConfigToJobConfig as G, DependabotAllowCondition as Gt, mapCredentials as H, FetchedFiles as Ht, DependabotJobBuilder as I, DependabotSecurityAdvisory as It, mapSourceFromDependabotConfigToJobConfig as J, DependabotCommitMessageSchema as Jt, mapPackageEcosystemToPackageManager as K, DependabotAllowConditionSchema as Kt, DependabotJobBuilderOutput as L, DependabotSecurityAdvisorySchema as Lt, DependabotRequestType as M, DependabotRequirement as Mt, DependabotRequestTypeSchema as N, DependabotRequirementSchema as Nt, DependabotUpdatePullRequestSchema as O, DependabotPackageManager as Ot, DependabotTokenType as P, DependabotRequirementSource as Pt, getBranchNameForUpdate as Q, DependabotCooldownSchema as Qt, DependabotSourceInfo as R, DependabotSource as Rt, DependabotRecordUpdateJobErrorSchema as S, convertPlaceholder as Sn, DependabotGroupRuleJob as St, DependabotUpdateDependencyList as T, DEPENDABOT_DEFAULT_AUTHOR_NAME as Tn, DependabotJobConfigSchema as Tt, mapExperiments as U, FileFetcherInput as Ut, mapAllowedUpdatesFromDependabotConfigToJobConfig as V, DependabotSourceSchema as Vt, mapGroupsFromDependabotConfigToJobConfig as W, FileUpdaterInput as Wt, DEFAULT_EXPERIMENTS as X, DependabotConfigSchema as Xt, mapVersionStrategyToRequirementsUpdateStrategy as Y, DependabotConfig as Yt, parseExperiments as Z, DependabotCooldown as Zt, DependabotRecordEcosystemMeta as _, parseDependabotConfig as _n, DependabotExistingPRSchema as _t, DependabotDependencyFile as a, DependabotPullRequestBranchName as an, DependabotCommandSchema as at, DependabotRecordEcosystemVersionsSchema as b, validateConfiguration as bn, DependabotGroupJob as bt, DependabotEcosystemMetaSchema as c, DependabotSchedule as cn, DependabotCondition as ct, DependabotIncrementMetric as d, DependabotUpdateSchema as dn, DependabotCredentialSchema as dt, DependabotGroupSchema as en, CertificateAuthority as et, DependabotIncrementMetricSchema as f, POSSIBLE_CONFIG_FILE_PATHS as fn, DependabotDependency as ft, DependabotMetricSchema as g, VersioningStrategySchema as gn, DependabotExistingPR as gt, DependabotMetric as h, VersioningStrategy as hn, DependabotExistingGroupPRSchema as ht, DependabotCreatePullRequestSchema as i, DependabotMultiEcosystemGroupSchema as in, DependabotCommand as it, DependabotRequestSchema as j, DependabotProxyConfigSchema as jt, CreateApiServerAppOptions as k, DependabotPackageManagerSchema as kt, DependabotEcosystemVersionManager as l, DependabotScheduleSchema as ln, DependabotConditionSchema as lt, DependabotMarkAsProcessedSchema as m, PackageEcosystemSchema as mn, DependabotExistingGroupPR as mt, DependabotClosePullRequestSchema as n, DependabotIgnoreConditionSchema as nn, DependabotAllowed as nt, DependabotDependencyFileSchema as o, DependabotRegistry as on, DependabotCommitOptions as ot, DependabotMarkAsProcessed as p, PackageEcosystem as pn, DependabotDependencySchema as pt, mapSecurityAdvisories as q, DependabotCommitMessage as qt, DependabotCreatePullRequest as r, DependabotMultiEcosystemGroup as rn, DependabotAllowedSchema as rt, DependabotEcosystemMeta as s, DependabotRegistrySchema as sn, DependabotCommitOptionsSchema as st, DependabotClosePullRequest as t, DependabotIgnoreCondition as tn, CertificateAuthoritySchema as tt, DependabotEcosystemVersionManagerSchema as u, DependabotUpdate as un, DependabotCredential as ut, DependabotRecordEcosystemMetaSchema as v, parseRegistries as vn, DependabotExperiments as vt, DependabotRecordUpdateJobUnknownErrorSchema as w, DEPENDABOT_DEFAULT_AUTHOR_EMAIL as wn, DependabotJobConfig as wt, DependabotRecordUpdateJobError as x, VariableFinderFn as xn, DependabotGroupJobSchema as xt, DependabotRecordEcosystemVersions as y, parseUpdates as yn, DependabotExperimentsSchema as yt, makeRandomJobId as z, DependabotSourceProvider as zt };
|
|
2084
|
+
//# sourceMappingURL=index-Dgl6vmM4.d.ts.map
|