updated space product model allocation

This commit is contained in:
hannathkadher
2025-03-12 23:08:18 +04:00
parent 537f20f8de
commit 8cbbb3a8ba
10 changed files with 222 additions and 25 deletions

View File

@ -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';

View File

@ -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;
};