mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-27 04:47:03 -06:00
27 lines
837 B
TypeScript
27 lines
837 B
TypeScript
/**
|
|
* Shared config-schema primitives for channel plugins with DM/group policy knobs.
|
|
*
|
|
* Canonical config-schema module: internal/bundled code imports this subpath;
|
|
* the primitives/bundled/legacy facades are re-export shells over it.
|
|
*/
|
|
export {
|
|
AllowFromListSchema,
|
|
buildChannelConfigSchema,
|
|
buildCatchallMultiAccountChannelSchema,
|
|
buildJsonChannelConfigSchema,
|
|
buildNestedDmConfigSchema,
|
|
} from "../channels/plugins/config-schema.js";
|
|
export {
|
|
BlockStreamingCoalesceSchema,
|
|
ContextVisibilityModeSchema,
|
|
DmConfigSchema,
|
|
DmPolicySchema,
|
|
GroupPolicySchema,
|
|
MarkdownConfigSchema,
|
|
MentionPatternsPolicySchema,
|
|
ReplyRuntimeConfigSchemaShape,
|
|
requireAllowlistAllowFrom,
|
|
requireOpenAllowFrom,
|
|
} from "../config/zod-schema.core.js";
|
|
export { ToolPolicySchema } from "../config/zod-schema.agent-runtime.js";
|