From 1b788cc78f481e205f6ff3210c28373fe97433f0 Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Fri, 10 Jan 2025 09:11:54 +0100 Subject: [PATCH] fix: enhance enum naming --- api/src/utils/generics/base-repository.ts | 6 +++--- api/src/utils/generics/base-service.ts | 8 ++++---- api/src/utils/types/dto.types.ts | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/api/src/utils/generics/base-repository.ts b/api/src/utils/generics/base-repository.ts index 63a2b145..ce96100f 100644 --- a/api/src/utils/generics/base-repository.ts +++ b/api/src/utils/generics/base-repository.ts @@ -30,7 +30,7 @@ import { import { TFilterQuery } from '@/utils/types/filter.types'; import { PageQueryDto, QuerySortDto } from '../pagination/pagination-query.dto'; -import { DtoInfer, DtoOperations, DtoProps } from '../types/dto.types'; +import { DtoActions, DtoInfer, DtoProps } from '../types/dto.types'; import { BaseSchema } from './base-schema'; import { LifecycleHookManager } from './lifecycle-hook-manager'; @@ -456,7 +456,7 @@ export abstract class BaseRepository< return await this.model.countDocuments(criteria).exec(); } - async create(dto: DtoInfer): Promise { + async create(dto: DtoInfer): Promise { const doc = await this.model.create(dto); return plainToClass( @@ -467,7 +467,7 @@ export abstract class BaseRepository< } async createMany( - dtoArray: DtoInfer[], + dtoArray: DtoInfer[], ): Promise { const docs = await this.model.create(dtoArray); diff --git a/api/src/utils/generics/base-service.ts b/api/src/utils/generics/base-service.ts index 0b1389c0..bcf3045c 100644 --- a/api/src/utils/generics/base-service.ts +++ b/api/src/utils/generics/base-service.ts @@ -14,7 +14,7 @@ import { ProjectionType, QueryOptions } from 'mongoose'; import { TFilterQuery } from '@/utils/types/filter.types'; import { PageQueryDto, QuerySortDto } from '../pagination/pagination-query.dto'; -import { DtoInfer, DtoOperations, DtoProps } from '../types/dto.types'; +import { DtoActions, DtoInfer, DtoProps } from '../types/dto.types'; import { BaseRepository } from './base-repository'; import { BaseSchema } from './base-schema'; @@ -145,7 +145,7 @@ export abstract class BaseService< } async create>( - dto: DtoInfer, + dto: DtoInfer, ): Promise { try { return await this.repository.create(dto); @@ -161,7 +161,7 @@ export abstract class BaseService< async findOneOrCreate>( criteria: string | TFilterQuery, - dto: DtoInfer, + dto: DtoInfer, ): Promise { const result = await this.findOne(criteria); if (!result) { @@ -171,7 +171,7 @@ export abstract class BaseService< } async createMany>( - dtoArray: DtoInfer[], + dtoArray: DtoInfer[], ): Promise { return await this.repository.createMany(dtoArray); } diff --git a/api/src/utils/types/dto.types.ts b/api/src/utils/types/dto.types.ts index 6edd682f..34bfe0d5 100644 --- a/api/src/utils/types/dto.types.ts +++ b/api/src/utils/types/dto.types.ts @@ -6,17 +6,17 @@ * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). */ -export enum DtoOperations { +export enum DtoActions { Create = 'create', Read = 'read', Update = 'update', Delete = 'delete', } -export type DtoConfig>> = T; +export type DtoConfig>> = T; export type DtoProps> = { - [K in DtoOperations]?: T[K]; + [K in DtoActions]?: T[K]; }; export type DtoInfer = DTO[K] extends object