mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
add service-types and cargo-types CRUD modules with pagination, filtering
This commit is contained in:
@@ -20,7 +20,6 @@ import { DropdownSettingsModule } from "./modules/dropdown-settings/dropdown-set
|
||||
import { OtpModule } from './modules/otp/otp.module';
|
||||
import { ServiceTypesModule } from "./modules/service-types/service-types.module";
|
||||
import { CargoTypesModule } from "./modules/cargo-types/cargo-types.module";
|
||||
import { DropdownSettingsService } from "./modules/dropdown-settings/dropdown-settings.service";
|
||||
import { BackofficeModule } from "./modules/backoffice/backoffice.module";
|
||||
import { EdrOrgSeeder } from "./seed/edr-org.seeder";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PartialType } from "@nestjs/swagger";
|
||||
import { PartialType } from "@nestjs/mapped-types";
|
||||
|
||||
import { CreateBookingDto } from "./create-booking.dto";
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PartialType } from "@nestjs/swagger";
|
||||
import { PartialType } from "@nestjs/mapped-types";
|
||||
|
||||
import { CreateCustomerDto } from "./create-customer.dto";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PartialType } from "@nestjs/swagger";
|
||||
import { PartialType } from "@nestjs/mapped-types";
|
||||
|
||||
import { CreateDropdownOptionDto } from "./create-dropdown-option.dto";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { OmitType, PartialType } from "@nestjs/swagger";
|
||||
import { OmitType, PartialType } from "@nestjs/mapped-types";
|
||||
|
||||
import { CreateDropdownSettingDto } from "./create-dropdown-setting.dto";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PartialType } from "@nestjs/swagger";
|
||||
import { PartialType } from "@nestjs/mapped-types";
|
||||
|
||||
import { CreateFileUploadFieldDto } from "./create-file-upload-field.dto";
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user