mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 21:04:53 +00:00
updated subspace models update/delete
This commit is contained in:
@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user