From 218e62e81190b1bda317af2af89c6a3fbbf45786 Mon Sep 17 00:00:00 2001 From: vitaligi <54726763+vitaligi@users.noreply.github.com> Date: Mon, 11 May 2026 17:30:52 +0300 Subject: [PATCH] fix: update productId pattern to allow a maximum of 36 characters --- src/constants/ingestion/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/ingestion/constants.ts b/src/constants/ingestion/constants.ts index e300677..16d550a 100644 --- a/src/constants/ingestion/constants.ts +++ b/src/constants/ingestion/constants.ts @@ -49,7 +49,7 @@ export const INGESTION_VALIDATIONS = { max: 4000, }, productId: { - pattern: '^[A-Za-z]{1}[A-Za-z0-9_]{0,37}$', + pattern: '^[A-Za-z]{1}[A-Za-z0-9_]{0,36}$', description: 'Product ID must start with a letter and contain only letters, numbers and underscores', }, productVersion: {