UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

54 lines (53 loc) 1.29 kB
import type { Result } from '../../../util/result'; import type { ReleaseResult } from '../types'; export interface MetadataResults { tags?: Record<string, string>; versions?: string[]; } export interface MavenDependency { display: string; group?: string; name?: string; dependencyUrl: string; } export type DependencyInfo = Pick<ReleaseResult, 'homepage' | 'sourceUrl' | 'packageScope' | 'replacementName' | 'replacementVersion' | 'deprecationMessage'>; export interface MavenFetchSuccess<T = string> { isCacheable?: boolean; lastModified?: string; data: T; } export type MavenFetchError = { type: 'invalid-url'; } | { type: 'host-disabled'; } | { type: 'not-found'; } | { type: 'host-error'; } | { type: 'permission-issue'; } | { type: 'temporary-error'; } | { type: 'maven-central-temporary-error'; err: Error; } | { type: 'connection-error'; } | { type: 'unsupported-host'; } | { type: 'unsupported-format'; } | { type: 'unsupported-protocol'; } | { type: 'credentials-error'; } | { type: 'missing-aws-region'; } | { type: 'xml-parse-error'; err: Error; } | { type: 'unknown'; err: Error; }; export type MavenFetchResult<T = string> = Result<MavenFetchSuccess<T>, MavenFetchError>;