X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ef3b2c15f10a3fea50170bc346105d909145a98f..fdbec885a5e37bd22c5e839bc4c6c0f6c7f3b76a:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index a25afeb128..ca2b4b36d6 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -14,12 +14,21 @@ 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; } export const getCollectionUrl = (uuid: string) => { return `/collections/${uuid}`; }; + +export enum CollectionType { + GENERAL = 'nil', + OUTPUT = 'output', + LOG = 'log', +}