mirror of
https://github.com/actions/toolkit.git
synced 2026-08-22 00:00:21 +02:00
34 lines
565 B
TypeScript
34 lines
565 B
TypeScript
export interface ArtifactResponse {
|
|||
|
|
containerId: string
|
||
|
|
size: number
|
||
|
|
signedContent: string
|
||
|
|
fileContainerResourceUrl: string
|
||
|
|
type: string
|
||
|
|
name: string
|
||
|
|
url: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface CreateArtifactParameters {
|
||
|
|
Type: string
|
||
|
|
Name: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface PatchArtifactSize {
|
||
|
|
Size: number
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface PatchArtifactSizeSuccessResponse {
|
||
|
|
containerId: number
|
||
|
|
size: number
|
||
|
|
signedContent: string
|
||
|
|
type: string
|
||
|
|
name: string
|
||
|
|
url: string
|
||
|
|
uploadUrl: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface UploadResults {
|
||
|
|
size: number
|
||
|
|
failedItems: string[]
|
||
|
|
}
|