mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 09:50:42 +00:00
refactor: trim dangerous name matching types
This commit is contained in:
@@ -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<string, unknown>;
|
||||
dangerousNameMatchingEnabled: boolean;
|
||||
dangerousFlagPath: string;
|
||||
};
|
||||
|
||||
export type DangerousNameMatchingResolverInput = {
|
||||
type DangerousNameMatchingResolverInput = {
|
||||
providerConfig?: DangerousNameMatchingConfig | null | undefined;
|
||||
accountConfig?: DangerousNameMatchingConfig | null | undefined;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user