Initial pass at chunked upload apis

This commit is contained in:
Josh Gross
2019-12-13 15:19:25 -05:00
parent 4809f4ada4
commit bad827c28e
6 changed files with 158 additions and 50 deletions

13
src/contracts.d.ts vendored
View File

@ -4,3 +4,16 @@ export interface ArtifactCacheEntry {
creationTime?: string;
archiveLocation?: string;
}
export interface CommitCacheRequest {
size: number;
}
export interface ReserveCacheRequest {
key: string;
version?: string;
}
export interface ReserverCacheResponse {
cacheId: number;
}