updated subspace models update/delete

This commit is contained in:
hannathkadher
2024-12-22 13:26:03 +04:00
parent 9245c47ef5
commit 1df462712b
5 changed files with 290 additions and 87 deletions

View File

@ -30,12 +30,20 @@ export interface IModifiedProductItemsModelsInterface {
export interface IUpdateSubspaceModelInterface {
subspaceName?: string;
uuid: string;
productModels?: IModifiedProductItemsModelsInterface[];
}
export interface IDeletedSubsaceModelInterface {
uuid: string;
}
export interface IUpdatedProductModelInterface {
productModelUuid: string;
productModifiedItemModel: IModifiedProductItemsModelsInterface;
}
export interface IModifiedProductModelsInterface {
add?: ProductModelInterface[];
update?: IUpdatedProductModelInterface[];
delete?: string[];
}