From 7606b4ab786fb945a0d4fb0c789fe365efdb4ae3 Mon Sep 17 00:00:00 2001 From: Ella Nan <38847123+ellanan@users.noreply.github.com> Date: Fri, 30 Jan 2026 15:48:10 -0500 Subject: [PATCH] =?UTF-8?q?feat:=20add=20=E2=80=9Cany=E2=80=9D=20type=20in?= =?UTF-8?q?=20the=20CustomFieldValidation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/custom-apis.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/types/custom-apis.ts b/src/types/custom-apis.ts index 73f945c..66b91a3 100644 --- a/src/types/custom-apis.ts +++ b/src/types/custom-apis.ts @@ -55,10 +55,15 @@ export type CustomFieldValidation = immutable?: boolean } } - | { boolean: { - allow_null_values?: boolean, - immutable?: boolean - } + | { boolean: { + allow_null_values?: boolean, + immutable?: boolean + } + } + | { any: { + allow_null_values?: boolean, + immutable?: boolean + } } export interface CustomApiFieldBase {