customer registration api integration

This commit is contained in:
yaschalew
2026-05-21 02:21:32 +03:00
parent fea308a6af
commit c7347b88d7
39 changed files with 2273 additions and 910 deletions

View File

@@ -0,0 +1,7 @@
import { OmitType, PartialType } from "@nestjs/swagger";
import { CreateDropdownSettingDto } from "./create-dropdown-setting.dto";
export class UpdateDropdownSettingDto extends PartialType(
OmitType(CreateDropdownSettingDto, ["children"] as const),
) {}