From 97a4005a97488db19196bb42d1f68c7d4d114dbc Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Sun, 1 Jun 2025 09:49:33 +0100 Subject: [PATCH] fix(api): add textarea & secret missed types to the settings type --- api/src/setting/schemas/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/setting/schemas/types.ts b/api/src/setting/schemas/types.ts index f53aa8d8..2a22b72d 100644 --- a/api/src/setting/schemas/types.ts +++ b/api/src/setting/schemas/types.ts @@ -129,6 +129,8 @@ export type SettingByType = T extends SettingType.text export type AnySetting = | TextSetting + | TextareaSetting + | SecretSetting | MultiTextSetting | CheckboxSetting | SelectSetting