X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ef3b2c15f10a3fea50170bc346105d909145a98f..227ffcbd2efe8cccd4a9025344b09632630cff14:/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', +}