X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/dcbc5a6fce31857b47ef82274d7ca637ece04e78..f06094d87f1c1b1bb8e886dd723bcdf17f0b727d:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index c0dbc1dcab..ca2b4b36d6 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -17,6 +17,10 @@ export interface CollectionResource extends TrashableResource { storageClassesDesired: string[]; storageClassesConfirmed: string[]; storageClassesConfirmedAt: string; + currentVersionUuid: string; + version: number; + preserveVersion: boolean; + unsignedManifestText?: string; } export const getCollectionUrl = (uuid: string) => { @@ -24,6 +28,7 @@ export const getCollectionUrl = (uuid: string) => { }; export enum CollectionType { + GENERAL = 'nil', OUTPUT = 'output', LOG = 'log', }