@paklo/core 0.11.0 → 0.11.1
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/azure/index.d.mts +35 -35
- package/dist/azure/index.mjs +2 -2
- package/dist/dependabot/index.d.mts +2 -2
- package/dist/dependabot/index.mjs +3 -3
- package/dist/{dependabot-DVf7lAEG.mjs → dependabot-DbKUmEV3.mjs} +2 -2
- package/dist/{dependabot-DVf7lAEG.mjs.map → dependabot-DbKUmEV3.mjs.map} +1 -1
- package/dist/{index-CjxvO_Pt.d.mts → index-t1Aj_PJX.d.mts} +17 -16
- package/dist/{job-COuliaYg.mjs → job-ClEevC5P.mjs} +4 -8
- package/dist/job-ClEevC5P.mjs.map +1 -0
- package/dist/usage.d.mts +1 -1
- package/dist/usage.mjs +2 -2
- package/dist/usage.mjs.map +1 -1
- package/package.json +4 -5
- package/dist/job-COuliaYg.mjs.map +0 -1
package/dist/azure/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Jt as DependabotPersistedPr,
|
|
1
|
+
import { Jt as DependabotPersistedPr, W as DependabotUpdatePullRequest, Wn as VariableFinderFn, f as DependabotCreatePullRequest, yn as DependabotConfig } from "../index-t1Aj_PJX.mjs";
|
|
2
2
|
import "../index-BfwWezjJ.mjs";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
import { KyInstance } from "ky";
|
|
@@ -71,21 +71,21 @@ declare class BaseAzureDevOpsClient {
|
|
|
71
71
|
//#endregion
|
|
72
72
|
//#region src/azure/client/types.d.ts
|
|
73
73
|
declare const AzdoVersionControlChangeTypeSchema: z.ZodEnum<{
|
|
74
|
+
all: "all";
|
|
75
|
+
branch: "branch";
|
|
76
|
+
delete: "delete";
|
|
74
77
|
none: "none";
|
|
75
78
|
add: "add";
|
|
76
79
|
edit: "edit";
|
|
77
80
|
encoding: "encoding";
|
|
78
81
|
rename: "rename";
|
|
79
|
-
delete: "delete";
|
|
80
82
|
undelete: "undelete";
|
|
81
|
-
branch: "branch";
|
|
82
83
|
merge: "merge";
|
|
83
84
|
lock: "lock";
|
|
84
85
|
rollback: "rollback";
|
|
85
86
|
sourceRename: "sourceRename";
|
|
86
87
|
targetRename: "targetRename";
|
|
87
88
|
property: "property";
|
|
88
|
-
all: "all";
|
|
89
89
|
}>;
|
|
90
90
|
type AzdoVersionControlChangeType = z.infer<typeof AzdoVersionControlChangeTypeSchema>;
|
|
91
91
|
declare const AZDO_PULL_REQUEST_MERGE_STRATEGIES: readonly ["noFastForward", "squash", "rebase", "rebaseMerge"];
|
|
@@ -248,21 +248,21 @@ declare const AzdoGitRefUpdateResultSchema: z.ZodObject<{
|
|
|
248
248
|
type AzdoGitRefUpdateResult = z.infer<typeof AzdoGitRefUpdateResultSchema>;
|
|
249
249
|
declare const AzdoGitChangeSchema: z.ZodObject<{
|
|
250
250
|
changeType: z.ZodEnum<{
|
|
251
|
+
all: "all";
|
|
252
|
+
branch: "branch";
|
|
253
|
+
delete: "delete";
|
|
251
254
|
none: "none";
|
|
252
255
|
add: "add";
|
|
253
256
|
edit: "edit";
|
|
254
257
|
encoding: "encoding";
|
|
255
258
|
rename: "rename";
|
|
256
|
-
delete: "delete";
|
|
257
259
|
undelete: "undelete";
|
|
258
|
-
branch: "branch";
|
|
259
260
|
merge: "merge";
|
|
260
261
|
lock: "lock";
|
|
261
262
|
rollback: "rollback";
|
|
262
263
|
sourceRename: "sourceRename";
|
|
263
264
|
targetRename: "targetRename";
|
|
264
265
|
property: "property";
|
|
265
|
-
all: "all";
|
|
266
266
|
}>;
|
|
267
267
|
item: z.ZodOptional<z.ZodObject<{
|
|
268
268
|
path: z.ZodString;
|
|
@@ -291,21 +291,21 @@ declare const AzdoGitCommitRefSchema: z.ZodObject<{
|
|
|
291
291
|
}, z.core.$strip>>;
|
|
292
292
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
293
293
|
changeType: z.ZodEnum<{
|
|
294
|
+
all: "all";
|
|
295
|
+
branch: "branch";
|
|
296
|
+
delete: "delete";
|
|
294
297
|
none: "none";
|
|
295
298
|
add: "add";
|
|
296
299
|
edit: "edit";
|
|
297
300
|
encoding: "encoding";
|
|
298
301
|
rename: "rename";
|
|
299
|
-
delete: "delete";
|
|
300
302
|
undelete: "undelete";
|
|
301
|
-
branch: "branch";
|
|
302
303
|
merge: "merge";
|
|
303
304
|
lock: "lock";
|
|
304
305
|
rollback: "rollback";
|
|
305
306
|
sourceRename: "sourceRename";
|
|
306
307
|
targetRename: "targetRename";
|
|
307
308
|
property: "property";
|
|
308
|
-
all: "all";
|
|
309
309
|
}>;
|
|
310
310
|
item: z.ZodOptional<z.ZodObject<{
|
|
311
311
|
path: z.ZodString;
|
|
@@ -336,21 +336,21 @@ declare const AzdoGitPushSchema: z.ZodObject<{
|
|
|
336
336
|
}, z.core.$strip>>;
|
|
337
337
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
338
338
|
changeType: z.ZodEnum<{
|
|
339
|
+
all: "all";
|
|
340
|
+
branch: "branch";
|
|
341
|
+
delete: "delete";
|
|
339
342
|
none: "none";
|
|
340
343
|
add: "add";
|
|
341
344
|
edit: "edit";
|
|
342
345
|
encoding: "encoding";
|
|
343
346
|
rename: "rename";
|
|
344
|
-
delete: "delete";
|
|
345
347
|
undelete: "undelete";
|
|
346
|
-
branch: "branch";
|
|
347
348
|
merge: "merge";
|
|
348
349
|
lock: "lock";
|
|
349
350
|
rollback: "rollback";
|
|
350
351
|
sourceRename: "sourceRename";
|
|
351
352
|
targetRename: "targetRename";
|
|
352
353
|
property: "property";
|
|
353
|
-
all: "all";
|
|
354
354
|
}>;
|
|
355
355
|
item: z.ZodOptional<z.ZodObject<{
|
|
356
356
|
path: z.ZodString;
|
|
@@ -395,21 +395,21 @@ declare const AzdoGitPushCreateSchema: z.ZodObject<{
|
|
|
395
395
|
}, z.core.$strip>>;
|
|
396
396
|
changes: z.ZodArray<z.ZodObject<{
|
|
397
397
|
changeType: z.ZodEnum<{
|
|
398
|
+
all: "all";
|
|
399
|
+
branch: "branch";
|
|
400
|
+
delete: "delete";
|
|
398
401
|
none: "none";
|
|
399
402
|
add: "add";
|
|
400
403
|
edit: "edit";
|
|
401
404
|
encoding: "encoding";
|
|
402
405
|
rename: "rename";
|
|
403
|
-
delete: "delete";
|
|
404
406
|
undelete: "undelete";
|
|
405
|
-
branch: "branch";
|
|
406
407
|
merge: "merge";
|
|
407
408
|
lock: "lock";
|
|
408
409
|
rollback: "rollback";
|
|
409
410
|
sourceRename: "sourceRename";
|
|
410
411
|
targetRename: "targetRename";
|
|
411
412
|
property: "property";
|
|
412
|
-
all: "all";
|
|
413
413
|
}>;
|
|
414
414
|
item: z.ZodOptional<z.ZodObject<{
|
|
415
415
|
path: z.ZodString;
|
|
@@ -436,21 +436,21 @@ declare const AzdoGitCommitDiffsSchema: z.ZodObject<{
|
|
|
436
436
|
baseCommit: z.ZodString;
|
|
437
437
|
changes: z.ZodArray<z.ZodObject<{
|
|
438
438
|
changeType: z.ZodEnum<{
|
|
439
|
+
all: "all";
|
|
440
|
+
branch: "branch";
|
|
441
|
+
delete: "delete";
|
|
439
442
|
none: "none";
|
|
440
443
|
add: "add";
|
|
441
444
|
edit: "edit";
|
|
442
445
|
encoding: "encoding";
|
|
443
446
|
rename: "rename";
|
|
444
|
-
delete: "delete";
|
|
445
447
|
undelete: "undelete";
|
|
446
|
-
branch: "branch";
|
|
447
448
|
merge: "merge";
|
|
448
449
|
lock: "lock";
|
|
449
450
|
rollback: "rollback";
|
|
450
451
|
sourceRename: "sourceRename";
|
|
451
452
|
targetRename: "targetRename";
|
|
452
453
|
property: "property";
|
|
453
|
-
all: "all";
|
|
454
454
|
}>;
|
|
455
455
|
item: z.ZodOptional<z.ZodObject<{
|
|
456
456
|
path: z.ZodString;
|
|
@@ -482,21 +482,21 @@ declare const AzdoRepositoryItemSchema: z.ZodObject<{
|
|
|
482
482
|
}, z.core.$strip>>;
|
|
483
483
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
484
484
|
changeType: z.ZodEnum<{
|
|
485
|
+
all: "all";
|
|
486
|
+
branch: "branch";
|
|
487
|
+
delete: "delete";
|
|
485
488
|
none: "none";
|
|
486
489
|
add: "add";
|
|
487
490
|
edit: "edit";
|
|
488
491
|
encoding: "encoding";
|
|
489
492
|
rename: "rename";
|
|
490
|
-
delete: "delete";
|
|
491
493
|
undelete: "undelete";
|
|
492
|
-
branch: "branch";
|
|
493
494
|
merge: "merge";
|
|
494
495
|
lock: "lock";
|
|
495
496
|
rollback: "rollback";
|
|
496
497
|
sourceRename: "sourceRename";
|
|
497
498
|
targetRename: "targetRename";
|
|
498
499
|
property: "property";
|
|
499
|
-
all: "all";
|
|
500
500
|
}>;
|
|
501
501
|
item: z.ZodOptional<z.ZodObject<{
|
|
502
502
|
path: z.ZodString;
|
|
@@ -551,21 +551,21 @@ declare const AzdoPullRequestSchema: z.ZodObject<{
|
|
|
551
551
|
}, z.core.$strip>>;
|
|
552
552
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
553
553
|
changeType: z.ZodEnum<{
|
|
554
|
+
all: "all";
|
|
555
|
+
branch: "branch";
|
|
556
|
+
delete: "delete";
|
|
554
557
|
none: "none";
|
|
555
558
|
add: "add";
|
|
556
559
|
edit: "edit";
|
|
557
560
|
encoding: "encoding";
|
|
558
561
|
rename: "rename";
|
|
559
|
-
delete: "delete";
|
|
560
562
|
undelete: "undelete";
|
|
561
|
-
branch: "branch";
|
|
562
563
|
merge: "merge";
|
|
563
564
|
lock: "lock";
|
|
564
565
|
rollback: "rollback";
|
|
565
566
|
sourceRename: "sourceRename";
|
|
566
567
|
targetRename: "targetRename";
|
|
567
568
|
property: "property";
|
|
568
|
-
all: "all";
|
|
569
569
|
}>;
|
|
570
570
|
item: z.ZodOptional<z.ZodObject<{
|
|
571
571
|
path: z.ZodString;
|
|
@@ -594,21 +594,21 @@ declare const AzdoPullRequestSchema: z.ZodObject<{
|
|
|
594
594
|
}, z.core.$strip>>;
|
|
595
595
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
596
596
|
changeType: z.ZodEnum<{
|
|
597
|
+
all: "all";
|
|
598
|
+
branch: "branch";
|
|
599
|
+
delete: "delete";
|
|
597
600
|
none: "none";
|
|
598
601
|
add: "add";
|
|
599
602
|
edit: "edit";
|
|
600
603
|
encoding: "encoding";
|
|
601
604
|
rename: "rename";
|
|
602
|
-
delete: "delete";
|
|
603
605
|
undelete: "undelete";
|
|
604
|
-
branch: "branch";
|
|
605
606
|
merge: "merge";
|
|
606
607
|
lock: "lock";
|
|
607
608
|
rollback: "rollback";
|
|
608
609
|
sourceRename: "sourceRename";
|
|
609
610
|
targetRename: "targetRename";
|
|
610
611
|
property: "property";
|
|
611
|
-
all: "all";
|
|
612
612
|
}>;
|
|
613
613
|
item: z.ZodOptional<z.ZodObject<{
|
|
614
614
|
path: z.ZodString;
|
|
@@ -962,7 +962,7 @@ declare function buildPullRequestProperties(packageManager: string, dependencies
|
|
|
962
962
|
declare function parsePullRequestProperties(pullRequests: AzdoPrExtractedWithProperties[], packageManager: string | null): Record<string, DependabotPersistedPr>;
|
|
963
963
|
declare function getPullRequestForDependencyNames(existingPullRequests: AzdoPrExtractedWithProperties[], packageManager: string, dependencyNames: string[]): AzdoPrExtractedWithProperties | undefined;
|
|
964
964
|
declare function getPullRequestChangedFiles(data: DependabotCreatePullRequest | DependabotUpdatePullRequest): {
|
|
965
|
-
changeType: "
|
|
965
|
+
changeType: "delete" | "add" | "edit";
|
|
966
966
|
path: string;
|
|
967
967
|
content: string | undefined;
|
|
968
968
|
encoding: "utf-8" | "base64";
|
|
@@ -1242,21 +1242,21 @@ declare const AzdoEventCodePushResourceSchema: z.ZodObject<{
|
|
|
1242
1242
|
}, z.core.$strip>>;
|
|
1243
1243
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1244
1244
|
changeType: z.ZodEnum<{
|
|
1245
|
+
all: "all";
|
|
1246
|
+
branch: "branch";
|
|
1247
|
+
delete: "delete";
|
|
1245
1248
|
none: "none";
|
|
1246
1249
|
add: "add";
|
|
1247
1250
|
edit: "edit";
|
|
1248
1251
|
encoding: "encoding";
|
|
1249
1252
|
rename: "rename";
|
|
1250
|
-
delete: "delete";
|
|
1251
1253
|
undelete: "undelete";
|
|
1252
|
-
branch: "branch";
|
|
1253
1254
|
merge: "merge";
|
|
1254
1255
|
lock: "lock";
|
|
1255
1256
|
rollback: "rollback";
|
|
1256
1257
|
sourceRename: "sourceRename";
|
|
1257
1258
|
targetRename: "targetRename";
|
|
1258
1259
|
property: "property";
|
|
1259
|
-
all: "all";
|
|
1260
1260
|
}>;
|
|
1261
1261
|
item: z.ZodOptional<z.ZodObject<{
|
|
1262
1262
|
path: z.ZodString;
|
|
@@ -1477,21 +1477,21 @@ declare const AzdoEventSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
1477
1477
|
}, z.core.$strip>>;
|
|
1478
1478
|
changes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1479
1479
|
changeType: z.ZodEnum<{
|
|
1480
|
+
all: "all";
|
|
1481
|
+
branch: "branch";
|
|
1482
|
+
delete: "delete";
|
|
1480
1483
|
none: "none";
|
|
1481
1484
|
add: "add";
|
|
1482
1485
|
edit: "edit";
|
|
1483
1486
|
encoding: "encoding";
|
|
1484
1487
|
rename: "rename";
|
|
1485
|
-
delete: "delete";
|
|
1486
1488
|
undelete: "undelete";
|
|
1487
|
-
branch: "branch";
|
|
1488
1489
|
merge: "merge";
|
|
1489
1490
|
lock: "lock";
|
|
1490
1491
|
rollback: "rollback";
|
|
1491
1492
|
sourceRename: "sourceRename";
|
|
1492
1493
|
targetRename: "targetRename";
|
|
1493
1494
|
property: "property";
|
|
1494
|
-
all: "all";
|
|
1495
1495
|
}>;
|
|
1496
1496
|
item: z.ZodOptional<z.ZodObject<{
|
|
1497
1497
|
path: z.ZodString;
|
package/dist/azure/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { n as logger } from "../logger-3Qfh9NUj.mjs";
|
|
2
|
-
import {
|
|
3
|
-
import { n as getDependencyNames, o as normalizeBranchName, s as normalizeFilePath, t as areEqual } from "../dependabot-
|
|
2
|
+
import { B as parseDependabotConfig, E as CONFIG_FILE_PATHS_AZURE, _ as DependabotPersistedPrSchema } from "../job-ClEevC5P.mjs";
|
|
3
|
+
import { n as getDependencyNames, o as normalizeBranchName, s as normalizeFilePath, t as areEqual } from "../dependabot-DbKUmEV3.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
import ky, { isHTTPError } from "ky";
|
|
6
6
|
import * as path from "node:path";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as DependabotJobBuilder, $t as DependabotRequirementSchema, A as DependabotRecordCooldownMeta, An as
|
|
1
|
+
import { $ as DependabotJobBuilder, $t as DependabotRequirementSchema, A as DependabotRecordCooldownMeta, An as DependabotRegistry, At as DependabotDependency, B as DependabotRecordUpdateJobWarning, Bn as parseDependabotConfig, Bt as DependabotGroupRuleJob, C as DependabotIncrementMetricSchema, Cn as DependabotGroup, Ct as DependabotCommandSchema, D as DependabotMarkAsProcessedSchema, Dn as DependabotMultiEcosystemGroup, Dt as DependabotConditionSchema, E as DependabotMarkAsProcessed, En as DependabotIgnoreConditionSchema, Et as DependabotCondition, F as DependabotRecordEcosystemVersionsSchema, Fn as DependabotUpdateSchema, Ft as DependabotExistingPRSchema, G as DependabotUpdatePullRequestSchema, Gn as convertPlaceholder, Gt as DependabotJobFileSchema, H as DependabotUpdateDependencyList, Hn as parseUpdates, Ht as DependabotJobConfig, I as DependabotRecordUpdateJobError, In as PackageEcosystem, It as DependabotExperiments, J as DependabotRequestSchema, Jn as DEPENDABOT_DEFAULT_AUTHOR_NAME, Jt as DependabotPersistedPr, K as CreateApiServerAppOptions, Kn as extractPlaceholder, Kt as DependabotPackageManager, L as DependabotRecordUpdateJobErrorSchema, Ln as PackageEcosystemSchema, Lt as DependabotExperimentsSchema, M as DependabotRecordEcosystemMeta, Mn as DependabotSchedule, Mt as DependabotExistingGroupPR, N as DependabotRecordEcosystemMetaSchema, Nn as DependabotScheduleSchema, Nt as DependabotExistingGroupPRSchema, O as DependabotMetric, On as DependabotMultiEcosystemGroupSchema, Ot as DependabotCredential, P as DependabotRecordEcosystemVersions, Pn as DependabotUpdate, Pt as DependabotExistingPR, Q as createApiServerApp, Qt as DependabotRequirement, R as DependabotRecordUpdateJobUnknownError, Rn as VersioningStrategy, Rt as DependabotGroupJob, S as DependabotIncrementMetric, Sn as DependabotCooldownSchema, St as DependabotCommand, T as DependabotJobErrorSchema, Tn as DependabotIgnoreCondition, Tt as DependabotCommitOptionsSchema, U as DependabotUpdateDependencyListSchema, Un as validateConfiguration, Ut as DependabotJobConfigSchema, V as DependabotRecordUpdateJobWarningSchema, Vn as parseRegistries, Vt as DependabotGroupRuleJobSchema, W as DependabotUpdatePullRequest, Wn as VariableFinderFn, Wt as DependabotJobFile, X as DependabotRequestTypeSchema, Xt as DependabotProxyConfig, Y as DependabotRequestType, Yn as GitAuthor, Yt as DependabotPersistedPrSchema, Z as DependabotTokenType, Zt as DependabotProxyConfigSchema, _ as DependabotDependencySubmissionSchema, _n as DependabotCommitMessage, _t as CertificateAuthority, a as getPullRequestDescription, an as DependabotSourceProvider, at as mapGroupsFromDependabotConfigToJobConfig, b as DependabotEcosystemVersionManager, bn as DependabotConfigSchema, bt as DependabotAllowed, c as DependabotClosePullRequest, cn as FetchedFiles, ct as mapSecurityAdvisories, d as DependabotClosePullRequestSchema, dn as BETA_ECOSYSTEMS, dt as DEFAULT_EXPERIMENTS, en as DependabotRequirementSource, et as DependabotJobBuilderOutput, f as DependabotCreatePullRequest, fn as CONFIG_FILE_NAMES, ft as parseExperiments, g as DependabotDependencySubmission, gn as DependabotAllowConditionSchema, gt as sanitizeRef, h as DependabotDependencyFileSchema, hn as DependabotAllowCondition, ht as getBranchNameForUpdate, i as getPullRequestDependencies, in as DependabotSource, it as mapExperiments, j as DependabotRecordCooldownMetaSchema, jn as DependabotRegistrySchema, jt as DependabotDependencySchema, k as DependabotMetricSchema, kn as DependabotPullRequestBranchName, kt as DependabotCredentialSchema, l as DependabotClosePullRequestReason, ln as FileFetcherInput, lt as mapSourceFromDependabotConfigToJobConfig, m as DependabotDependencyFile, mn as CONFIG_FILE_PATHS_GITHUB, mt as makeDirectoryKey, n as getDependencyNames, nn as DependabotSecurityAdvisory, nt as mapAllowedUpdatesFromDependabotConfigToJobConfig, o as normalizeBranchName, on as DependabotSourceProviderSchema, ot as mapIgnoreConditionsFromDependabotConfigToJobConfig, p as DependabotCreatePullRequestSchema, pn as CONFIG_FILE_PATHS_AZURE, pt as setExperiment, q as DependabotRequest, qn as DEPENDABOT_DEFAULT_AUTHOR_EMAIL, qt as DependabotPackageManagerSchema, r as getPullRequestCloseReason, rn as DependabotSecurityAdvisorySchema, rt as mapCredentials, s as normalizeFilePath, sn as DependabotSourceSchema, st as mapPackageEcosystemToPackageManager, t as areEqual, tn as DependabotRequirementSourceSchema, tt as DependabotSourceInfo, u as DependabotClosePullRequestReasonEnum, un as FileUpdaterInput, ut as mapVersionStrategyToRequirementsUpdateStrategy, v as DependabotEcosystemMeta, vn as DependabotCommitMessageSchema, vt as CertificateAuthoritySchema, w as DependabotJobError, wn as DependabotGroupSchema, wt as DependabotCommitOptions, x as DependabotEcosystemVersionManagerSchema, xn as DependabotCooldown, xt as DependabotAllowedSchema, y as DependabotEcosystemMetaSchema, yn as DependabotConfig, yt as DEPENDABOT_COMMANDS, z as DependabotRecordUpdateJobUnknownErrorSchema, zn as VersioningStrategySchema, zt as DependabotGroupJobSchema } from "../index-t1Aj_PJX.mjs";
|
|
2
2
|
import "../index-BfwWezjJ.mjs";
|
|
3
|
-
export { CONFIG_FILE_NAMES, CONFIG_FILE_PATHS_AZURE, CONFIG_FILE_PATHS_GITHUB, CertificateAuthority, CertificateAuthoritySchema, CreateApiServerAppOptions, DEFAULT_EXPERIMENTS, DEPENDABOT_COMMANDS, DEPENDABOT_DEFAULT_AUTHOR_EMAIL, DEPENDABOT_DEFAULT_AUTHOR_NAME, DependabotAllowCondition, DependabotAllowConditionSchema, DependabotAllowed, DependabotAllowedSchema, DependabotClosePullRequest, DependabotClosePullRequestReason, DependabotClosePullRequestReasonEnum, DependabotClosePullRequestSchema, DependabotCommand, DependabotCommandSchema, DependabotCommitMessage, DependabotCommitMessageSchema, DependabotCommitOptions, DependabotCommitOptionsSchema, DependabotCondition, DependabotConditionSchema, DependabotConfig, DependabotConfigSchema, DependabotCooldown, DependabotCooldownSchema, DependabotCreatePullRequest, DependabotCreatePullRequestSchema, DependabotCredential, DependabotCredentialSchema, DependabotDependency, DependabotDependencyFile, DependabotDependencyFileSchema, DependabotDependencySchema, DependabotDependencySubmission, DependabotDependencySubmissionSchema, DependabotEcosystemMeta, DependabotEcosystemMetaSchema, DependabotEcosystemVersionManager, DependabotEcosystemVersionManagerSchema, DependabotExistingGroupPR, DependabotExistingGroupPRSchema, DependabotExistingPR, DependabotExistingPRSchema, DependabotExperiments, DependabotExperimentsSchema, DependabotGroup, DependabotGroupJob, DependabotGroupJobSchema, DependabotGroupRuleJob, DependabotGroupRuleJobSchema, DependabotGroupSchema, DependabotIgnoreCondition, DependabotIgnoreConditionSchema, DependabotIncrementMetric, DependabotIncrementMetricSchema, DependabotJobBuilder, DependabotJobBuilderOutput, DependabotJobConfig, DependabotJobConfigSchema, DependabotJobError, DependabotJobErrorSchema, DependabotJobFile, DependabotJobFileSchema, DependabotMarkAsProcessed, DependabotMarkAsProcessedSchema, DependabotMetric, DependabotMetricSchema, DependabotMultiEcosystemGroup, DependabotMultiEcosystemGroupSchema, DependabotPackageManager, DependabotPackageManagerSchema, DependabotPersistedPr, DependabotPersistedPrSchema, DependabotProxyConfig, DependabotProxyConfigSchema, DependabotPullRequestBranchName, DependabotRecordCooldownMeta, DependabotRecordCooldownMetaSchema, DependabotRecordEcosystemMeta, DependabotRecordEcosystemMetaSchema, DependabotRecordEcosystemVersions, DependabotRecordEcosystemVersionsSchema, DependabotRecordUpdateJobError, DependabotRecordUpdateJobErrorSchema, DependabotRecordUpdateJobUnknownError, DependabotRecordUpdateJobUnknownErrorSchema, DependabotRecordUpdateJobWarning, DependabotRecordUpdateJobWarningSchema, DependabotRegistry, DependabotRegistrySchema, DependabotRequest, DependabotRequestSchema, DependabotRequestType, DependabotRequestTypeSchema, DependabotRequirement, DependabotRequirementSchema, DependabotRequirementSource, DependabotRequirementSourceSchema, DependabotSchedule, DependabotScheduleSchema, DependabotSecurityAdvisory, DependabotSecurityAdvisorySchema, DependabotSource, DependabotSourceInfo, DependabotSourceProvider, DependabotSourceProviderSchema, DependabotSourceSchema, DependabotTokenType, DependabotUpdate, DependabotUpdateDependencyList, DependabotUpdateDependencyListSchema, DependabotUpdatePullRequest, DependabotUpdatePullRequestSchema, DependabotUpdateSchema, FetchedFiles, FileFetcherInput, FileUpdaterInput, GitAuthor, PackageEcosystem, PackageEcosystemSchema, VariableFinderFn, VersioningStrategy, VersioningStrategySchema, areEqual, convertPlaceholder, createApiServerApp, extractPlaceholder, getBranchNameForUpdate, getDependencyNames, getPullRequestCloseReason, getPullRequestDependencies, getPullRequestDescription, makeDirectoryKey, mapAllowedUpdatesFromDependabotConfigToJobConfig, mapCredentials, mapExperiments, mapGroupsFromDependabotConfigToJobConfig, mapIgnoreConditionsFromDependabotConfigToJobConfig, mapPackageEcosystemToPackageManager, mapSecurityAdvisories, mapSourceFromDependabotConfigToJobConfig, mapVersionStrategyToRequirementsUpdateStrategy, normalizeBranchName, normalizeFilePath, parseDependabotConfig, parseExperiments, parseRegistries, parseUpdates, sanitizeRef, setExperiment, validateConfiguration };
|
|
3
|
+
export { BETA_ECOSYSTEMS, CONFIG_FILE_NAMES, CONFIG_FILE_PATHS_AZURE, CONFIG_FILE_PATHS_GITHUB, CertificateAuthority, CertificateAuthoritySchema, CreateApiServerAppOptions, DEFAULT_EXPERIMENTS, DEPENDABOT_COMMANDS, DEPENDABOT_DEFAULT_AUTHOR_EMAIL, DEPENDABOT_DEFAULT_AUTHOR_NAME, DependabotAllowCondition, DependabotAllowConditionSchema, DependabotAllowed, DependabotAllowedSchema, DependabotClosePullRequest, DependabotClosePullRequestReason, DependabotClosePullRequestReasonEnum, DependabotClosePullRequestSchema, DependabotCommand, DependabotCommandSchema, DependabotCommitMessage, DependabotCommitMessageSchema, DependabotCommitOptions, DependabotCommitOptionsSchema, DependabotCondition, DependabotConditionSchema, DependabotConfig, DependabotConfigSchema, DependabotCooldown, DependabotCooldownSchema, DependabotCreatePullRequest, DependabotCreatePullRequestSchema, DependabotCredential, DependabotCredentialSchema, DependabotDependency, DependabotDependencyFile, DependabotDependencyFileSchema, DependabotDependencySchema, DependabotDependencySubmission, DependabotDependencySubmissionSchema, DependabotEcosystemMeta, DependabotEcosystemMetaSchema, DependabotEcosystemVersionManager, DependabotEcosystemVersionManagerSchema, DependabotExistingGroupPR, DependabotExistingGroupPRSchema, DependabotExistingPR, DependabotExistingPRSchema, DependabotExperiments, DependabotExperimentsSchema, DependabotGroup, DependabotGroupJob, DependabotGroupJobSchema, DependabotGroupRuleJob, DependabotGroupRuleJobSchema, DependabotGroupSchema, DependabotIgnoreCondition, DependabotIgnoreConditionSchema, DependabotIncrementMetric, DependabotIncrementMetricSchema, DependabotJobBuilder, DependabotJobBuilderOutput, DependabotJobConfig, DependabotJobConfigSchema, DependabotJobError, DependabotJobErrorSchema, DependabotJobFile, DependabotJobFileSchema, DependabotMarkAsProcessed, DependabotMarkAsProcessedSchema, DependabotMetric, DependabotMetricSchema, DependabotMultiEcosystemGroup, DependabotMultiEcosystemGroupSchema, DependabotPackageManager, DependabotPackageManagerSchema, DependabotPersistedPr, DependabotPersistedPrSchema, DependabotProxyConfig, DependabotProxyConfigSchema, DependabotPullRequestBranchName, DependabotRecordCooldownMeta, DependabotRecordCooldownMetaSchema, DependabotRecordEcosystemMeta, DependabotRecordEcosystemMetaSchema, DependabotRecordEcosystemVersions, DependabotRecordEcosystemVersionsSchema, DependabotRecordUpdateJobError, DependabotRecordUpdateJobErrorSchema, DependabotRecordUpdateJobUnknownError, DependabotRecordUpdateJobUnknownErrorSchema, DependabotRecordUpdateJobWarning, DependabotRecordUpdateJobWarningSchema, DependabotRegistry, DependabotRegistrySchema, DependabotRequest, DependabotRequestSchema, DependabotRequestType, DependabotRequestTypeSchema, DependabotRequirement, DependabotRequirementSchema, DependabotRequirementSource, DependabotRequirementSourceSchema, DependabotSchedule, DependabotScheduleSchema, DependabotSecurityAdvisory, DependabotSecurityAdvisorySchema, DependabotSource, DependabotSourceInfo, DependabotSourceProvider, DependabotSourceProviderSchema, DependabotSourceSchema, DependabotTokenType, DependabotUpdate, DependabotUpdateDependencyList, DependabotUpdateDependencyListSchema, DependabotUpdatePullRequest, DependabotUpdatePullRequestSchema, DependabotUpdateSchema, FetchedFiles, FileFetcherInput, FileUpdaterInput, GitAuthor, PackageEcosystem, PackageEcosystemSchema, VariableFinderFn, VersioningStrategy, VersioningStrategySchema, areEqual, convertPlaceholder, createApiServerApp, extractPlaceholder, getBranchNameForUpdate, getDependencyNames, getPullRequestCloseReason, getPullRequestDependencies, getPullRequestDescription, makeDirectoryKey, mapAllowedUpdatesFromDependabotConfigToJobConfig, mapCredentials, mapExperiments, mapGroupsFromDependabotConfigToJobConfig, mapIgnoreConditionsFromDependabotConfigToJobConfig, mapPackageEcosystemToPackageManager, mapSecurityAdvisories, mapSourceFromDependabotConfigToJobConfig, mapVersionStrategyToRequirementsUpdateStrategy, normalizeBranchName, normalizeFilePath, parseDependabotConfig, parseExperiments, parseRegistries, parseUpdates, sanitizeRef, setExperiment, validateConfiguration };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as
|
|
2
|
-
import { A as DependabotJobBuilder, B as DEFAULT_EXPERIMENTS, C as DependabotRecordEcosystemMetaSchema, D as DependabotRecordUpdateJobWarningSchema, E as DependabotRecordUpdateJobUnknownErrorSchema, F as mapIgnoreConditionsFromDependabotConfigToJobConfig, G as DEPENDABOT_DEFAULT_AUTHOR_EMAIL, H as setExperiment, I as mapPackageEcosystemToPackageManager, K as DEPENDABOT_DEFAULT_AUTHOR_NAME, L as mapSecurityAdvisories, M as mapCredentials, N as mapExperiments, O as DependabotUpdateDependencyListSchema, P as mapGroupsFromDependabotConfigToJobConfig, R as mapSourceFromDependabotConfigToJobConfig, S as DependabotRecordCooldownMetaSchema, T as DependabotRecordUpdateJobErrorSchema, U as getBranchNameForUpdate, V as parseExperiments, W as sanitizeRef, _ as DependabotEcosystemVersionManagerSchema, a as getPullRequestDescription, b as DependabotMarkAsProcessedSchema, c as DependabotRequestSchema, d as DependabotClosePullRequestReasonEnum, f as DependabotClosePullRequestSchema, g as DependabotEcosystemMetaSchema, h as DependabotDependencySubmissionSchema, i as getPullRequestDependencies, j as mapAllowedUpdatesFromDependabotConfigToJobConfig, k as DependabotUpdatePullRequestSchema, l as DependabotRequestTypeSchema, m as DependabotDependencyFileSchema, n as getDependencyNames, o as normalizeBranchName, p as DependabotCreatePullRequestSchema, r as getPullRequestCloseReason, s as normalizeFilePath, t as areEqual, u as createApiServerApp, v as DependabotIncrementMetricSchema, w as DependabotRecordEcosystemVersionsSchema, x as DependabotMetricSchema, y as DependabotJobErrorSchema, z as mapVersionStrategyToRequirementsUpdateStrategy } from "../dependabot-
|
|
1
|
+
import { A as DependabotConfigSchema, B as parseDependabotConfig, C as DependabotSourceSchema, D as CONFIG_FILE_PATHS_GITHUB, E as CONFIG_FILE_PATHS_AZURE, F as DependabotRegistrySchema, G as extractPlaceholder, H as parseUpdates, I as DependabotScheduleSchema, K as makeDirectoryKey, L as DependabotUpdateSchema, M as DependabotGroupSchema, N as DependabotIgnoreConditionSchema, O as DependabotAllowConditionSchema, P as DependabotMultiEcosystemGroupSchema, R as PackageEcosystemSchema, S as DependabotSourceProviderSchema, T as CONFIG_FILE_NAMES, U as validateConfiguration, V as parseRegistries, W as convertPlaceholder, _ as DependabotPersistedPrSchema, a as DependabotCommitOptionsSchema, b as DependabotRequirementSourceSchema, c as DependabotDependencySchema, d as DependabotExperimentsSchema, f as DependabotGroupJobSchema, g as DependabotPackageManagerSchema, h as DependabotJobFileSchema, i as DependabotCommandSchema, j as DependabotCooldownSchema, k as DependabotCommitMessageSchema, l as DependabotExistingGroupPRSchema, m as DependabotJobConfigSchema, n as DEPENDABOT_COMMANDS, o as DependabotConditionSchema, p as DependabotGroupRuleJobSchema, r as DependabotAllowedSchema, s as DependabotCredentialSchema, t as CertificateAuthoritySchema, u as DependabotExistingPRSchema, v as DependabotProxyConfigSchema, w as BETA_ECOSYSTEMS, x as DependabotSecurityAdvisorySchema, y as DependabotRequirementSchema, z as VersioningStrategySchema } from "../job-ClEevC5P.mjs";
|
|
2
|
+
import { A as DependabotJobBuilder, B as DEFAULT_EXPERIMENTS, C as DependabotRecordEcosystemMetaSchema, D as DependabotRecordUpdateJobWarningSchema, E as DependabotRecordUpdateJobUnknownErrorSchema, F as mapIgnoreConditionsFromDependabotConfigToJobConfig, G as DEPENDABOT_DEFAULT_AUTHOR_EMAIL, H as setExperiment, I as mapPackageEcosystemToPackageManager, K as DEPENDABOT_DEFAULT_AUTHOR_NAME, L as mapSecurityAdvisories, M as mapCredentials, N as mapExperiments, O as DependabotUpdateDependencyListSchema, P as mapGroupsFromDependabotConfigToJobConfig, R as mapSourceFromDependabotConfigToJobConfig, S as DependabotRecordCooldownMetaSchema, T as DependabotRecordUpdateJobErrorSchema, U as getBranchNameForUpdate, V as parseExperiments, W as sanitizeRef, _ as DependabotEcosystemVersionManagerSchema, a as getPullRequestDescription, b as DependabotMarkAsProcessedSchema, c as DependabotRequestSchema, d as DependabotClosePullRequestReasonEnum, f as DependabotClosePullRequestSchema, g as DependabotEcosystemMetaSchema, h as DependabotDependencySubmissionSchema, i as getPullRequestDependencies, j as mapAllowedUpdatesFromDependabotConfigToJobConfig, k as DependabotUpdatePullRequestSchema, l as DependabotRequestTypeSchema, m as DependabotDependencyFileSchema, n as getDependencyNames, o as normalizeBranchName, p as DependabotCreatePullRequestSchema, r as getPullRequestCloseReason, s as normalizeFilePath, t as areEqual, u as createApiServerApp, v as DependabotIncrementMetricSchema, w as DependabotRecordEcosystemVersionsSchema, x as DependabotMetricSchema, y as DependabotJobErrorSchema, z as mapVersionStrategyToRequirementsUpdateStrategy } from "../dependabot-DbKUmEV3.mjs";
|
|
3
3
|
|
|
4
|
-
export { CONFIG_FILE_NAMES, CONFIG_FILE_PATHS_AZURE, CONFIG_FILE_PATHS_GITHUB, CertificateAuthoritySchema, DEFAULT_EXPERIMENTS, DEPENDABOT_COMMANDS, DEPENDABOT_DEFAULT_AUTHOR_EMAIL, DEPENDABOT_DEFAULT_AUTHOR_NAME, DependabotAllowConditionSchema, DependabotAllowedSchema, DependabotClosePullRequestReasonEnum, DependabotClosePullRequestSchema, DependabotCommandSchema, DependabotCommitMessageSchema, DependabotCommitOptionsSchema, DependabotConditionSchema, DependabotConfigSchema, DependabotCooldownSchema, DependabotCreatePullRequestSchema, DependabotCredentialSchema, DependabotDependencyFileSchema, DependabotDependencySchema, DependabotDependencySubmissionSchema, DependabotEcosystemMetaSchema, DependabotEcosystemVersionManagerSchema, DependabotExistingGroupPRSchema, DependabotExistingPRSchema, DependabotExperimentsSchema, DependabotGroupJobSchema, DependabotGroupRuleJobSchema, DependabotGroupSchema, DependabotIgnoreConditionSchema, DependabotIncrementMetricSchema, DependabotJobBuilder, DependabotJobConfigSchema, DependabotJobErrorSchema, DependabotJobFileSchema, DependabotMarkAsProcessedSchema, DependabotMetricSchema, DependabotMultiEcosystemGroupSchema, DependabotPackageManagerSchema, DependabotPersistedPrSchema, DependabotProxyConfigSchema, DependabotRecordCooldownMetaSchema, DependabotRecordEcosystemMetaSchema, DependabotRecordEcosystemVersionsSchema, DependabotRecordUpdateJobErrorSchema, DependabotRecordUpdateJobUnknownErrorSchema, DependabotRecordUpdateJobWarningSchema, DependabotRegistrySchema, DependabotRequestSchema, DependabotRequestTypeSchema, DependabotRequirementSchema, DependabotRequirementSourceSchema, DependabotScheduleSchema, DependabotSecurityAdvisorySchema, DependabotSourceProviderSchema, DependabotSourceSchema, DependabotUpdateDependencyListSchema, DependabotUpdatePullRequestSchema, DependabotUpdateSchema, PackageEcosystemSchema, VersioningStrategySchema, areEqual, convertPlaceholder, createApiServerApp, extractPlaceholder, getBranchNameForUpdate, getDependencyNames, getPullRequestCloseReason, getPullRequestDependencies, getPullRequestDescription, makeDirectoryKey, mapAllowedUpdatesFromDependabotConfigToJobConfig, mapCredentials, mapExperiments, mapGroupsFromDependabotConfigToJobConfig, mapIgnoreConditionsFromDependabotConfigToJobConfig, mapPackageEcosystemToPackageManager, mapSecurityAdvisories, mapSourceFromDependabotConfigToJobConfig, mapVersionStrategyToRequirementsUpdateStrategy, normalizeBranchName, normalizeFilePath, parseDependabotConfig, parseExperiments, parseRegistries, parseUpdates, sanitizeRef, setExperiment, validateConfiguration };
|
|
4
|
+
export { BETA_ECOSYSTEMS, CONFIG_FILE_NAMES, CONFIG_FILE_PATHS_AZURE, CONFIG_FILE_PATHS_GITHUB, CertificateAuthoritySchema, DEFAULT_EXPERIMENTS, DEPENDABOT_COMMANDS, DEPENDABOT_DEFAULT_AUTHOR_EMAIL, DEPENDABOT_DEFAULT_AUTHOR_NAME, DependabotAllowConditionSchema, DependabotAllowedSchema, DependabotClosePullRequestReasonEnum, DependabotClosePullRequestSchema, DependabotCommandSchema, DependabotCommitMessageSchema, DependabotCommitOptionsSchema, DependabotConditionSchema, DependabotConfigSchema, DependabotCooldownSchema, DependabotCreatePullRequestSchema, DependabotCredentialSchema, DependabotDependencyFileSchema, DependabotDependencySchema, DependabotDependencySubmissionSchema, DependabotEcosystemMetaSchema, DependabotEcosystemVersionManagerSchema, DependabotExistingGroupPRSchema, DependabotExistingPRSchema, DependabotExperimentsSchema, DependabotGroupJobSchema, DependabotGroupRuleJobSchema, DependabotGroupSchema, DependabotIgnoreConditionSchema, DependabotIncrementMetricSchema, DependabotJobBuilder, DependabotJobConfigSchema, DependabotJobErrorSchema, DependabotJobFileSchema, DependabotMarkAsProcessedSchema, DependabotMetricSchema, DependabotMultiEcosystemGroupSchema, DependabotPackageManagerSchema, DependabotPersistedPrSchema, DependabotProxyConfigSchema, DependabotRecordCooldownMetaSchema, DependabotRecordEcosystemMetaSchema, DependabotRecordEcosystemVersionsSchema, DependabotRecordUpdateJobErrorSchema, DependabotRecordUpdateJobUnknownErrorSchema, DependabotRecordUpdateJobWarningSchema, DependabotRegistrySchema, DependabotRequestSchema, DependabotRequestTypeSchema, DependabotRequirementSchema, DependabotRequirementSourceSchema, DependabotScheduleSchema, DependabotSecurityAdvisorySchema, DependabotSourceProviderSchema, DependabotSourceSchema, DependabotUpdateDependencyListSchema, DependabotUpdatePullRequestSchema, DependabotUpdateSchema, PackageEcosystemSchema, VersioningStrategySchema, areEqual, convertPlaceholder, createApiServerApp, extractPlaceholder, getBranchNameForUpdate, getDependencyNames, getPullRequestCloseReason, getPullRequestDependencies, getPullRequestDescription, makeDirectoryKey, mapAllowedUpdatesFromDependabotConfigToJobConfig, mapCredentials, mapExperiments, mapGroupsFromDependabotConfigToJobConfig, mapIgnoreConditionsFromDependabotConfigToJobConfig, mapPackageEcosystemToPackageManager, mapSecurityAdvisories, mapSourceFromDependabotConfigToJobConfig, mapVersionStrategyToRequirementsUpdateStrategy, normalizeBranchName, normalizeFilePath, parseDependabotConfig, parseExperiments, parseRegistries, parseUpdates, sanitizeRef, setExperiment, validateConfiguration };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as logger } from "./logger-3Qfh9NUj.mjs";
|
|
2
|
-
import { c as DependabotDependencySchema, g as DependabotPackageManagerSchema } from "./job-
|
|
2
|
+
import { c as DependabotDependencySchema, g as DependabotPackageManagerSchema } from "./job-ClEevC5P.mjs";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
import * as crypto from "node:crypto";
|
|
5
5
|
import { zValidator } from "@hono/zod-validator";
|
|
@@ -700,4 +700,4 @@ function getPullRequestDescription({ packageManager, body, dependencies, maxDesc
|
|
|
700
700
|
|
|
701
701
|
//#endregion
|
|
702
702
|
export { DependabotJobBuilder as A, DEFAULT_EXPERIMENTS as B, DependabotRecordEcosystemMetaSchema as C, DependabotRecordUpdateJobWarningSchema as D, DependabotRecordUpdateJobUnknownErrorSchema as E, mapIgnoreConditionsFromDependabotConfigToJobConfig as F, DEPENDABOT_DEFAULT_AUTHOR_EMAIL as G, setExperiment as H, mapPackageEcosystemToPackageManager as I, DEPENDABOT_DEFAULT_AUTHOR_NAME as K, mapSecurityAdvisories as L, mapCredentials as M, mapExperiments as N, DependabotUpdateDependencyListSchema as O, mapGroupsFromDependabotConfigToJobConfig as P, mapSourceFromDependabotConfigToJobConfig as R, DependabotRecordCooldownMetaSchema as S, DependabotRecordUpdateJobErrorSchema as T, getBranchNameForUpdate as U, parseExperiments as V, sanitizeRef as W, DependabotEcosystemVersionManagerSchema as _, getPullRequestDescription as a, DependabotMarkAsProcessedSchema as b, DependabotRequestSchema as c, DependabotClosePullRequestReasonEnum as d, DependabotClosePullRequestSchema as f, DependabotEcosystemMetaSchema as g, DependabotDependencySubmissionSchema as h, getPullRequestDependencies as i, mapAllowedUpdatesFromDependabotConfigToJobConfig as j, DependabotUpdatePullRequestSchema as k, DependabotRequestTypeSchema as l, DependabotDependencyFileSchema as m, getDependencyNames as n, normalizeBranchName as o, DependabotCreatePullRequestSchema as p, getPullRequestCloseReason as r, normalizeFilePath as s, areEqual as t, createApiServerApp as u, DependabotIncrementMetricSchema as v, DependabotRecordEcosystemVersionsSchema as w, DependabotMetricSchema as x, DependabotJobErrorSchema as y, mapVersionStrategyToRequirementsUpdateStrategy as z };
|
|
703
|
-
//# sourceMappingURL=dependabot-
|
|
703
|
+
//# sourceMappingURL=dependabot-DbKUmEV3.mjs.map
|