mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-27 13:14:55 +00:00
fixed delete subspace model propagation
This commit is contained in:
@ -6,13 +6,13 @@ import { ModifyTagModelDto } from '../dtos';
|
||||
import { ModifyAction } from '@app/common/constants/modify-action.enum';
|
||||
import { NewTagEntity } from '@app/common/modules/tag';
|
||||
|
||||
export interface IRelocatedAllocation {
|
||||
allocation: SpaceModelProductAllocationEntity;
|
||||
tags?: NewTagEntity[];
|
||||
}
|
||||
export interface ISingleSubspaceModel {
|
||||
subspaceModel: SubspaceModelEntity;
|
||||
action: ModifyAction;
|
||||
tags: ModifyTagModelDto[];
|
||||
movedToNewSpaceAllocation?: SpaceModelProductAllocationEntity[];
|
||||
movedToAlreadyExistingSpaceAllocation?: {
|
||||
allocation: SpaceModelProductAllocationEntity;
|
||||
tags: NewTagEntity[];
|
||||
}[];
|
||||
tags?: ModifyTagModelDto[];
|
||||
relocatedAllocations?: IRelocatedAllocation[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user