Merge branch '15020-collection-with-the-same-content-adress'
[arvados-workbench2.git] / src / models / collection.ts
index c0dbc1dcab42c97c2a7d3bd8f3fc2ac51da580a6..ca2b4b36d6965e42cba58467bf7041f9beee85b4 100644 (file)
@@ -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',
 }