From f736a375805b917223fd2831afc4be197f27be88 Mon Sep 17 00:00:00 2001 From: GalT <39020298+tatarco@users.noreply.github.com> Date: Sun, 27 Oct 2024 02:32:14 +0200 Subject: [PATCH] feat(api): cleaned up code and added back the validation with render reuse --- packages/shared/src/dto/step-schemas/json-schema-dto.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/shared/src/dto/step-schemas/json-schema-dto.ts b/packages/shared/src/dto/step-schemas/json-schema-dto.ts index 9721181c708..b92311149f7 100644 --- a/packages/shared/src/dto/step-schemas/json-schema-dto.ts +++ b/packages/shared/src/dto/step-schemas/json-schema-dto.ts @@ -71,11 +71,4 @@ export interface JSONSchemaDto { readOnly?: boolean | undefined; writeOnly?: boolean | undefined; examples?: JSONSchemaType | undefined; - - // Custom extensions property - extensions?: - | { - [key: string]: unknown; // Allows for any additional properties - } - | undefined; }