From 67b1b7d7ff9461183d34dd84ce97793d16d33a71 Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Wed, 26 Feb 2025 16:31:41 +0100 Subject: [PATCH] fix(api): align ids type with value --- api/src/chat/controllers/block.controller.ts | 4 ++-- api/src/chat/controllers/category.controller.ts | 6 +++--- api/src/chat/controllers/context-var.controller.ts | 6 +++--- api/src/chat/controllers/label.controller.ts | 6 +++--- api/src/nlp/controllers/nlp-entity.controller.ts | 6 +++--- api/src/nlp/controllers/nlp-sample.controller.ts | 6 +++--- api/src/nlp/controllers/nlp-value.controller.ts | 6 +++--- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/api/src/chat/controllers/block.controller.ts b/api/src/chat/controllers/block.controller.ts index 65535702..f09de5dc 100644 --- a/api/src/chat/controllers/block.controller.ts +++ b/api/src/chat/controllers/block.controller.ts @@ -325,8 +325,8 @@ export class BlockController extends BaseController< @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.blockService.deleteMany({ diff --git a/api/src/chat/controllers/category.controller.ts b/api/src/chat/controllers/category.controller.ts index c071b108..3f3a49b6 100644 --- a/api/src/chat/controllers/category.controller.ts +++ b/api/src/chat/controllers/category.controller.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2024 Hexastack. All rights reserved. + * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. @@ -142,8 +142,8 @@ export class CategoryController extends BaseController { @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.categoryService.deleteMany({ diff --git a/api/src/chat/controllers/context-var.controller.ts b/api/src/chat/controllers/context-var.controller.ts index d07fe8c2..1d16f92c 100644 --- a/api/src/chat/controllers/context-var.controller.ts +++ b/api/src/chat/controllers/context-var.controller.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2024 Hexastack. All rights reserved. + * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. @@ -149,8 +149,8 @@ export class ContextVarController extends BaseController { @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.contextVarService.deleteMany({ diff --git a/api/src/chat/controllers/label.controller.ts b/api/src/chat/controllers/label.controller.ts index b02d796c..976d9c0c 100644 --- a/api/src/chat/controllers/label.controller.ts +++ b/api/src/chat/controllers/label.controller.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2024 Hexastack. All rights reserved. + * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. @@ -136,8 +136,8 @@ export class LabelController extends BaseController< @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.labelService.deleteMany({ diff --git a/api/src/nlp/controllers/nlp-entity.controller.ts b/api/src/nlp/controllers/nlp-entity.controller.ts index fbb4889f..4f7ce1a1 100644 --- a/api/src/nlp/controllers/nlp-entity.controller.ts +++ b/api/src/nlp/controllers/nlp-entity.controller.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2024 Hexastack. All rights reserved. + * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. @@ -212,8 +212,8 @@ export class NlpEntityController extends BaseController< @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.nlpEntityService.deleteMany({ diff --git a/api/src/nlp/controllers/nlp-sample.controller.ts b/api/src/nlp/controllers/nlp-sample.controller.ts index 22dfa263..2f594427 100644 --- a/api/src/nlp/controllers/nlp-sample.controller.ts +++ b/api/src/nlp/controllers/nlp-sample.controller.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2024 Hexastack. All rights reserved. + * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. @@ -347,8 +347,8 @@ export class NlpSampleController extends BaseController< @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.nlpSampleService.deleteMany({ diff --git a/api/src/nlp/controllers/nlp-value.controller.ts b/api/src/nlp/controllers/nlp-value.controller.ts index 083bc46f..74a17d48 100644 --- a/api/src/nlp/controllers/nlp-value.controller.ts +++ b/api/src/nlp/controllers/nlp-value.controller.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2024 Hexastack. All rights reserved. + * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. @@ -200,8 +200,8 @@ export class NlpValueController extends BaseController< @CsrfCheck(true) @Delete('') @HttpCode(204) - async deleteMany(@Body('ids') ids: string[]): Promise { - if (!ids || ids.length === 0) { + async deleteMany(@Body('ids') ids?: string[]): Promise { + if (!ids?.length) { throw new BadRequestException('No IDs provided for deletion.'); } const deleteResult = await this.nlpValueService.deleteMany({