mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-27 07:34:54 +00:00
updated space product model allocation
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
export * from './update-subspace.interface';
|
||||
export * from './modify-subspace.interface';
|
||||
export * from './single-subspace.interface';
|
||||
export * from './space-product-allocation.interface';
|
||||
|
||||
@ -0,0 +1,10 @@
|
||||
import { SpaceModelProductAllocationEntity } from '@app/common/modules/space-model';
|
||||
import { NewTagEntity } from '@app/common/modules/tag';
|
||||
|
||||
export type IUpdatedSpaceAllocations = {
|
||||
allocation?: SpaceModelProductAllocationEntity;
|
||||
tagsRemoved?: NewTagEntity[];
|
||||
tagsAdded?: NewTagEntity[];
|
||||
newAllocation?: SpaceModelProductAllocationEntity;
|
||||
deletedAllocation?: SpaceModelProductAllocationEntity;
|
||||
};
|
||||
Reference in New Issue
Block a user