X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/90781150a1b0a32c8d0f2f519f5c485542058744..383d46d2b62a75fa4f7038dc6babf7d0b92656ca:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index a25afeb1..baa25c7a 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -14,12 +14,23 @@ export interface CollectionResource extends TrashableResource { replicationDesired: number; replicationConfirmed: number; replicationConfirmedAt: string; - fileNames: string; storageClassesDesired: string[]; storageClassesConfirmed: string[]; storageClassesConfirmedAt: string; + currentVersionUuid: string; + version: number; + preserveVersion: boolean; + unsignedManifestText?: string; + fileCount: number; + fileSizeTotal: number; } export const getCollectionUrl = (uuid: string) => { return `/collections/${uuid}`; }; + +export enum CollectionType { + GENERAL = 'nil', + OUTPUT = 'output', + LOG = 'log', +}