added space delete

This commit is contained in:
hannathkadher
2024-12-24 14:51:06 +04:00
parent cb2778dce5
commit 2e46176fd5
9 changed files with 200 additions and 44 deletions

View File

@ -30,11 +30,13 @@ export class UpdateSpaceDto {
@ApiProperty({ description: 'X position on canvas', example: 120 })
@IsNumber()
x: number;
@IsOptional()
x?: number;
@ApiProperty({ description: 'Y position on canvas', example: 200 })
@IsNumber()
y: number;
@IsOptional()
y?: number;
@ApiPropertyOptional({
description: 'List of subspace modifications (add/update/delete)',