renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
192 lines (191 loc) • 6.67 kB
TypeScript
import { ConstraintName } from "../util/exec/types.js";
import { Timestamp } from "../util/timestamp.js";
import { Release } from "../modules/datasource/types.js";
import { FileChange } from "../util/git/types.js";
import { PlatformPrOptions } from "../modules/platform/types.js";
import { MergeConfidence } from "../util/merge-confidence/types.js";
import { ChangeLogRelease, ChangeLogResult } from "./repository/update/pr/changelog/types.js";
import { BranchStatus } from "../types/branch-status.js";
import { ArtifactError, ArtifactNotice, ExtractConfig, LookupUpdate, PackageDependency, PackageFile } from "../modules/manager/types.js";
import { GroupConfig, LegacyAdminConfig, RenovateConfig, RenovateSharedConfig, ValidationMessage } from "../config/types.js";
import { Merge } from "type-fest";
//#region lib/workers/types.d.ts
type ReleaseWithNotes = Release & Partial<ChangeLogRelease>;
interface BranchUpgradeConfig extends Merge<RenovateConfig, PackageDependency>, Partial<LookupUpdate>, RenovateSharedConfig {
artifactErrors?: ArtifactError[];
artifactNotices?: ArtifactNotice[];
autoReplaceStringTemplate?: string;
baseDeps?: PackageDependency[];
branchName: string;
commitBody?: string;
commitMessage?: string;
commitMessageExtra?: string;
currentDigest?: string;
currentDigestShort?: string;
currentValue?: string;
currentValueTemplate?: string;
dependencyDashboardCategory?: string;
depIndex?: number;
depNameLinked?: string;
depNameSanitized?: string;
depNameTemplate?: string;
depTypes?: string[];
displayFrom?: string;
displayPending?: string;
displayTo?: string;
excludeCommitPaths?: string[];
githubName?: string;
group?: GroupConfig;
groupName?: string;
groupSlug?: string;
isDigest?: boolean;
isGroup?: boolean;
isLockFileMaintenance?: boolean;
isMajor?: boolean;
isMinor?: boolean;
isPatch?: boolean;
isRemediation?: boolean;
manager: string;
newDigestShort?: string;
newNameLinked?: string;
packageFile?: string;
packageFileDir?: string;
parentDir?: string;
lockFile?: string;
lockFiles?: string[];
reuseExistingBranch?: boolean;
prHeader?: string;
prFooter?: string;
prBodyNotes?: string[];
prBodyTemplate?: string;
prPriority?: number;
prTitle?: string;
prTitleStrict?: boolean;
prettyNewMajor?: string;
prettyNewVersion?: string;
references?: string;
releases?: ReleaseWithNotes[];
releaseTimestamp?: Timestamp;
remediationNotPossible?: boolean;
repoName?: string;
minimumConfidence?: MergeConfidence | undefined;
sourceDirectory?: string;
sourceRepoSlug?: string;
toLowerCase?: boolean;
updatedPackageFiles?: FileChange[];
updatedArtifacts?: FileChange[];
logJSON?: ChangeLogResult | null;
hasReleaseNotes?: boolean;
homepage?: string;
changelogContent?: string;
changelogUrl?: string;
dependencyUrl?: string;
minimumGroupSize?: number;
releaseNotesSummaryTitle?: string;
sourceUrl?: string;
sourceRepo?: string;
sourceRepoOrg?: string;
sourceRepoName?: string;
constraints?: Partial<Record<ConstraintName, string>>;
}
type PrBlockedBy = 'BranchAutomerge' | 'NeedsApproval' | 'AwaitingTests' | 'RateLimited' | 'Error';
type BranchResult = 'already-existed' | 'automerged' | 'done' | 'error' | 'needs-approval' | 'needs-pr-approval' | 'not-scheduled' | 'no-work' | 'pending' | 'pr-created' | 'pr-edited' | 'pr-limit-reached' | 'commit-per-run-limit-reached' | 'commit-hourly-limit-reached' | 'branch-limit-reached' | 'rebase' | 'update-not-scheduled' | 'minimum-group-size-not-met';
type CacheFingerprintMatchResult = 'matched' | 'no-match' | 'no-fingerprint';
interface BranchConfig extends BranchUpgradeConfig, LegacyAdminConfig, PlatformPrOptions {
automergeComment?: string;
automergedPreviously?: boolean;
baseBranch: string;
branchAutomergeFailureMessage?: string;
/** ??? never set
* @deprecated never set
*/
committedFiles?: unknown;
confidenceStatus?: BranchStatus;
dependencyDashboardRebaseAllOpen?: boolean;
dependencyDashboardAllPending?: boolean;
dependencyDashboardAllRateLimited?: boolean;
dependencyDashboardAllAwaitingSchedule?: boolean;
errors?: ValidationMessage[];
forcePr?: boolean;
hasTypes?: boolean;
isModified?: boolean;
isScheduledNow?: boolean;
dependencyDashboardChecks?: Record<string, string>;
dependencyDashboardPrApproval?: boolean;
releaseTimestamp?: Timestamp;
forceCommit?: boolean;
rebaseRequested?: boolean;
result?: BranchResult;
upgrades: BranchUpgradeConfig[];
packageFiles?: Record<string, PackageFile[]>;
prBlockedBy?: PrBlockedBy;
prNo?: number;
stabilityStatus?: BranchStatus;
stopUpdating?: boolean;
isConflicted?: boolean;
commitFingerprint?: string;
cacheFingerprintMatch?: CacheFingerprintMatchResult;
prNotPendingHours?: number;
}
interface BranchMetadata {
branchName: string;
branchSha?: string | null;
baseBranch?: string;
baseBranchSha?: string | null;
automerge?: boolean;
isModified?: boolean;
isPristine?: boolean;
}
interface BaseBranchMetadata {
branchName: string;
sha: string;
}
interface BranchSummary {
baseBranches: BaseBranchMetadata[];
branches: BranchMetadata[];
cacheModified?: boolean;
defaultBranch?: string;
inactiveBranches: string[];
}
interface WorkerExtractConfig extends ExtractConfig {
manager: string;
fileList: string[];
managerFilePatterns?: string[];
includePaths?: string[];
ignorePaths?: string[];
enabled?: boolean;
}
interface DepWarnings {
warnings: string[];
warningFiles: string[];
}
interface SelectAllConfig extends RenovateConfig {
dependencyDashboardRebaseAllOpen?: boolean;
dependencyDashboardAllPending?: boolean;
dependencyDashboardAllRateLimited?: boolean;
dependencyDashboardAllAwaitingSchedule?: boolean;
}
interface UpgradeFingerprintConfig {
autoReplaceStringTemplate?: string;
currentDigest?: string;
currentValue?: string;
currentVersion?: string;
datasource?: string;
depName?: string;
lockFile?: string;
lockedVersion?: string;
manager?: string | null;
newName?: string;
newDigest?: string | null;
newValue?: string;
newVersion?: string;
packageFile?: string;
replaceString?: string;
}
interface ExtractResult {
extractionFingerprints: Record<string, string | undefined>;
packageFiles: Record<string, PackageFile[]>;
}
//#endregion
export { BaseBranchMetadata, BranchConfig, BranchMetadata, BranchResult, BranchSummary, BranchUpgradeConfig, CacheFingerprintMatchResult, DepWarnings, ExtractResult, PrBlockedBy, ReleaseWithNotes, SelectAllConfig, UpgradeFingerprintConfig, WorkerExtractConfig };
//# sourceMappingURL=types.d.ts.map