From 24ebf182e9f1405a5cbd42ebff982782507c9baf Mon Sep 17 00:00:00 2001 From: almog8k Date: Sun, 4 Jan 2026 11:36:16 +0200 Subject: [PATCH] refactor: remove polygonPartsEntityName from baseAdditionalParamsSchema --- src/schemas/ingestion/additionalParams.schema.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/schemas/ingestion/additionalParams.schema.ts b/src/schemas/ingestion/additionalParams.schema.ts index 8aa9be5..84b7d98 100644 --- a/src/schemas/ingestion/additionalParams.schema.ts +++ b/src/schemas/ingestion/additionalParams.schema.ts @@ -1,11 +1,9 @@ import { z } from 'zod'; import { CORE_VALIDATIONS, TileOutputFormat } from '../../constants/core/constants'; -import { polygonPartsEntityPatternSchema } from './layerNameFormats.schema'; export const baseAdditionalParamsSchema = z .object({ jobTrackerServiceURL: z.string().regex(new RegExp(CORE_VALIDATIONS.url.pattern), { message: 'URL must start with http:// or https://' }), - polygonPartsEntityName: polygonPartsEntityPatternSchema.optional(), }) .describe('baseAdditionalParamsSchema');