import { RepoInitConfig } from "../../../workers/repository/init/types.js"; import { PrBlockedBy } from "../../../workers/types.js"; import { ExtractResult } from "../../../workers/repository/process/extract-update.js"; import { PackageFile } from "../../../modules/manager/types.js"; import { RepositoryCacheConfig, RepositoryCacheType, UpdateType } from "../../../config/types.js"; //#region lib/util/cache/repository/types.d.ts interface BaseBranchCache { revision?: number; sha: string; configHash: string; extractionFingerprints: Record; packageFiles: Record; } interface BranchUpgradeCache { currentDigest?: string; currentValue?: string; datasource?: string; depName?: string; depType?: string; displayPending?: unknown; fixedVersion?: string; currentVersion?: string; packageName?: string; newDigest?: string | null; newValue?: string; newVersion?: string; sourceUrl?: string; packageFile?: string; remediationNotPossible?: unknown; updateType?: UpdateType; } interface OnboardingBranchCache { defaultBranchSha: string; onboardingBranchSha: string; isConflicted: boolean; isModified: boolean; configFileName?: string; configFileParsed?: string; } interface ReconfigureBranchCache { reconfigureBranchSha: string; isConfigValid: boolean; extractResult?: ExtractResult; } interface PrCache { /** * Fingerprint of the PR body */ fingerprint?: string; bodyFingerprint: string; /** * last PR modified ISO timestamp */ lastEdited: string; } interface BranchCache { /** * Whether this branch has automerge enabled */ automerge?: boolean; /** * Name of base branch */ baseBranch?: string; /** * The base branch's most recent commit SHA */ baseBranchSha?: string | null; /** * Hash of the manager fingerprints and the filtered update branch config */ branchFingerprint?: string; commitFingerprint?: string; /** * The branch's most recent commit timestamp (ISO string) * Used for commitHourlyLimit tracking */ commitTimestamp?: string; /** * Branch name */ branchName: string; /** * Whether the update branch is behind base branch */ isBehindBase?: boolean; /** * Whether the update branch is in conflict with base branch */ isConflicted?: boolean; /** * Whether a person not listed in gitIgnoredAuthors updated the branch. */ isModified?: boolean; /** * */ pristine?: boolean; /** * Pr number of PR created from this branch */ prNo: number | null; /** * The branch's most recent commit SHA */ sha?: string | null; /** * Details on the dependency upgrades that have been applied in this branch */ upgrades: BranchUpgradeCache[]; /** * Object that has PR info */ prCache?: PrCache | null; /** * Dependency dashboard information */ prBlockedBy?: PrBlockedBy; prTitle?: string; result?: string; } interface RepoCacheData { configFileName?: string; httpCache?: Record; httpCacheHead?: Record; semanticCommits?: 'enabled' | 'disabled'; branches?: BranchCache[]; init?: RepoInitConfig; scan?: Record; lastPlatformAutomergeFailure?: string; platform?: { forgejo?: { pullRequestsCache?: unknown; orgs?: Record; }; gitea?: { pullRequestsCache?: unknown; }; github?: { /** * To avoid circular dependency problem, we use `unknown` type here. */ pullRequestsCache?: unknown; graphqlPageCache?: unknown; issuesCache?: Record; }; bitbucket?: { pullRequestsCache?: unknown; }; gitlab?: { pullRequestsCache?: unknown; }; 'bitbucket-server'?: { pullRequestsCache?: unknown; }; }; prComments?: Record>; onboardingBranchCache?: OnboardingBranchCache; reconfigureBranchCache?: ReconfigureBranchCache; } interface RepoCache { load(): Promise; save(): Promise; getData(): RepoCacheData; isModified(): boolean | undefined; } interface RepoCacheConfig { repository?: string; repositoryCache?: RepositoryCacheConfig; repositoryCacheType?: RepositoryCacheType; repoFingerprint: string; } //#endregion export { BaseBranchCache, BranchCache, BranchUpgradeCache, OnboardingBranchCache, PrCache, ReconfigureBranchCache, RepoCache, RepoCacheConfig, RepoCacheData }; //# sourceMappingURL=types.d.ts.map