diff --git a/src/config/dangerous-name-matching.ts b/src/config/dangerous-name-matching.ts index da98aba3f2d..330259fd1f6 100644 --- a/src/config/dangerous-name-matching.ts +++ b/src/config/dangerous-name-matching.ts @@ -1,17 +1,17 @@ import type { OpenClawConfig } from "./config.js"; -export type DangerousNameMatchingConfig = { +type DangerousNameMatchingConfig = { dangerouslyAllowNameMatching?: boolean; }; -export type ProviderDangerousNameMatchingScope = { +type ProviderDangerousNameMatchingScope = { prefix: string; account: Record; dangerousNameMatchingEnabled: boolean; dangerousFlagPath: string; }; -export type DangerousNameMatchingResolverInput = { +type DangerousNameMatchingResolverInput = { providerConfig?: DangerousNameMatchingConfig | null | undefined; accountConfig?: DangerousNameMatchingConfig | null | undefined; };