13 lines
376 B
TypeScript
13 lines
376 B
TypeScript
/** Shared config-schema primitives for channel plugins with DM/group policy knobs. */
|
|
export {
|
|
AllowFromListSchema,
|
|
buildChannelConfigSchema,
|
|
buildCatchallMultiAccountChannelSchema,
|
|
buildNestedDmConfigSchema,
|
|
} from "../channels/plugins/config-schema.js";
|
|
export {
|
|
DmPolicySchema,
|
|
GroupPolicySchema,
|
|
MarkdownConfigSchema,
|
|
} from "../config/zod-schema.core.js";
|