add service-types and cargo-types CRUD modules with pagination, filtering

This commit is contained in:
marshal
2026-05-28 11:52:29 +03:00
parent 429459ef29
commit e1d05d5475
8 changed files with 7 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
import { PartialType } from "@nestjs/swagger";
import { PartialType } from "@nestjs/mapped-types";
import { CreateBookingDto } from "./create-booking.dto";

View File

@@ -1,5 +1,5 @@
// src/modules/customers/dto/update-customer.dto.ts
import { PartialType } from '@nestjs/swagger';
import { PartialType } from '@nestjs/mapped-types';
import { CreateCustomerDto } from './create-customer.dto';
export class UpdateCustomerDto extends PartialType(CreateCustomerDto) {

View File

@@ -1,4 +1,4 @@
import { PartialType } from "@nestjs/swagger";
import { PartialType } from "@nestjs/mapped-types";
import { CreateCustomerDto } from "./create-customer.dto";

View File

@@ -1,4 +1,4 @@
import { PartialType } from "@nestjs/swagger";
import { PartialType } from "@nestjs/mapped-types";
import { CreateDropdownOptionDto } from "./create-dropdown-option.dto";

View File

@@ -1,4 +1,4 @@
import { OmitType, PartialType } from "@nestjs/swagger";
import { OmitType, PartialType } from "@nestjs/mapped-types";
import { CreateDropdownSettingDto } from "./create-dropdown-setting.dto";

View File

@@ -1,4 +1,4 @@
import { PartialType } from "@nestjs/swagger";
import { PartialType } from "@nestjs/mapped-types";
import { CreateFileUploadFieldDto } from "./create-file-upload-field.dto";

View File

@@ -1,4 +1,4 @@
import { OmitType, PartialType } from "@nestjs/swagger";
import { OmitType, PartialType } from "@nestjs/mapped-types";
import { CreateFileUploadSettingDto } from "./create-file-upload-setting.dto";