From 249d11780ece2a17d7d9004d05470f00f2786171 Mon Sep 17 00:00:00 2001 From: Finley Ge Date: Fri, 5 Dec 2025 10:30:27 +0800 Subject: [PATCH] feat: custom Domain type define --- packages/global/common/system/types/index.d.ts | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages/global/common/system/types/index.d.ts b/packages/global/common/system/types/index.d.ts index 828e87564..fadef3252 100644 --- a/packages/global/common/system/types/index.d.ts +++ b/packages/global/common/system/types/index.d.ts @@ -146,7 +146,20 @@ export type SystemEnvType = { chatApiKey?: string; customPdfParse?: customPdfParseType; - fileUrlWhitelist?: string[]; + customDomain?: customDomainType; +}; + +export type customDomainType = { + kc: { + aliyun?: string; + tencent?: string; + volcengine?: string; + }; + domain: { + aliyun?: string; + tencent?: string; + volcengine?: string; + }; }; export type customPdfParseType = {