lilybird
Version:
A bun-first discord api wrapper written in TS
44 lines • 1.53 kB
TypeScript
import type { AutoModerationActionType, AutoModerationEventType, AutoModerationKeywordPresetType, AutoModerationTriggerType } from "#enums";
export declare namespace AutoModeration {
interface RuleStructure {
id: string;
guild_id: string;
name: string;
creator_id: string;
event_type: AutoModerationEventType;
trigger_type: AutoModerationTriggerType;
trigger_metadata: TriggerMetadata;
actions: Array<ActionStructure>;
enabled: true;
exempt_roles: Array<string>;
exempt_channels: Array<string>;
}
interface TriggerMetadata {
keyword_filter?: Array<string>;
regex_patterns?: Array<string>;
presets?: Array<AutoModerationKeywordPresetType>;
allow_list?: Array<string>;
mention_total_limit?: number;
mention_raid_protection_enabled?: boolean;
}
interface ActionStructure {
type: AutoModerationActionType;
metadata?: {
channel_id: string;
duration_seconds: number;
custom_message?: string;
};
}
interface CreateJSONParams {
name: string;
event_type: AutoModerationEventType;
trigger_type: AutoModerationTriggerType;
trigger_metadata?: TriggerMetadata;
actions: Array<ActionStructure>;
enabled?: boolean;
exempt_roles?: Array<string>;
exempt_channels?: Array<string>;
reason?: string;
}
}
//# sourceMappingURL=auto-moderation.d.ts.map