Add logs for cache version on miss

This commit is contained in:
Sampark Sharma
2022-11-14 06:31:26 +00:00
committed by GitHub
parent b36e70495f
commit a735d9bcd4
2 changed files with 23 additions and 1 deletions
+6
View File
@@ -9,10 +9,16 @@ export interface ITypedResponseWithError<T> extends TypedResponse<T> {
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
}