Skip to content
Permalink
6d062305d3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
36 lines (30 sloc) 640 Bytes
import {Credential, JobDetails} from './api-client'
export type FetchedFiles = {
base_commit_sha: string
dependency_files: any[]
base64_dependency_files: any[]
}
export type FileFetcherInput = {
job: JobDetails
}
export type DependencyFile = {
name: string
content: any
directory: string
type: string
support_file: boolean
content_encoding: string
deleted: boolean
operation: string
}
export type FileUpdaterInput = FetchedFiles & {
job: JobDetails
}
export type CertificateAuthority = {
cert: string
key: string
}
export type ProxyConfig = {
all_credentials: Credential[]
ca: CertificateAuthority
}