|
@@ -55,3 +55,9 @@ export interface IDelShare {
|
|
|
filter: { projectID?: string; compilationID?: string };
|
|
filter: { projectID?: string; compilationID?: string };
|
|
|
type: ShareType;
|
|
type: ShareType;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+export interface IBulkShare {
|
|
|
|
|
+ update?: IUpdateShare[];
|
|
|
|
|
+ create?: ICreatShare[];
|
|
|
|
|
+ remove?: IDelShare[];
|
|
|
|
|
+}
|