mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-11 07:38:49 +00:00
propagate
This commit is contained in:
@ -1,9 +1,18 @@
|
||||
import { SubspaceModelEntity } from '@app/common/modules/space-model';
|
||||
import {
|
||||
SpaceModelProductAllocationEntity,
|
||||
SubspaceModelEntity,
|
||||
} from '@app/common/modules/space-model';
|
||||
import { ModifyTagModelDto } from '../dtos';
|
||||
import { ModifyAction } from '@app/common/constants/modify-action.enum';
|
||||
import { NewTagEntity } from '@app/common/modules/tag';
|
||||
|
||||
export interface ISingleSubspaceModel {
|
||||
subspaceModel: SubspaceModelEntity;
|
||||
action: ModifyAction;
|
||||
tags: ModifyTagModelDto[];
|
||||
movedToNewSpaceAllocation?: SpaceModelProductAllocationEntity[];
|
||||
movedToAlreadyExistingSpaceAllocation?: {
|
||||
allocation: SpaceModelProductAllocationEntity;
|
||||
tags: NewTagEntity[];
|
||||
}[];
|
||||
}
|
||||
|
Reference in New Issue
Block a user