mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-19 15:51:07 +08:00
* Cache package release for compression change in windows This reverts commit 86fe4abd8e89005bbd880c330af444ae4c7d3b15. * Add env variable to enable windows symlinks * Add cross os opt-in functionality for cache on windows * Fix test * Address review comments * Fix test * Fix tests * Fix tests * Fix tests * Address review comments * Address review comments * Fix tests * Fix tests * Add npm version * Add release details
46 lines
933 B
TypeScript
46 lines
933 B
TypeScript
import {CompressionMethod} from './constants'
|
|
import {TypedResponse} from '@actions/http-client/lib/interfaces'
|
|
import {HttpClientError} from '@actions/http-client'
|
|
|
|
export interface ITypedResponseWithError<T> extends TypedResponse<T> {
|
|
error?: HttpClientError
|
|
}
|
|
|
|
export interface ArtifactCacheEntry {
|
|
cacheKey?: string
|
|
scope?: string
|
|
cacheVersion?: string
|
|
creationTime?: string
|
|
archiveLocation?: string
|
|
}
|
|
|
|
export interface ArtifactCacheList {
|
|
totalCount: number
|
|
artifactCaches?: ArtifactCacheEntry[]
|
|
}
|
|
|
|
export interface CommitCacheRequest {
|
|
size: number
|
|
}
|
|
|
|
export interface ReserveCacheRequest {
|
|
key: string
|
|
version?: string
|
|
cacheSize?: number
|
|
}
|
|
|
|
export interface ReserveCacheResponse {
|
|
cacheId: number
|
|
}
|
|
|
|
export interface InternalCacheOptions {
|
|
compressionMethod?: CompressionMethod
|
|
enableCrossOsArchive?: boolean
|
|
cacheSize?: number
|
|
}
|
|
|
|
export interface ArchiveTool {
|
|
path: string
|
|
type: string
|
|
}
|