import { DyNTS_Bot_Global_Settings } from '../_models/bot-global-settings.interface'; import { minute, week } from '@futdevpro/fsm-dynamo'; import { DyNTS_Bot_defaultCommands } from './bot-default-commands.const'; export const DyNTS_Bot_global_settings: DyNTS_Bot_Global_Settings = { debugLevel: 3, allowedUsers: 'all', messageSettings: { messageFetchTimeLimit: 3 * week, messageFetchCountLimit: 1000, messageSendDelay: minute / 3, skipFlags: [ '[BOT-SKIP]', '[SYSTEM|REFUSE|BOT]', ], }, channelSettings: { reportChannelName: 'bot-reports', defaultChannels: [ 'bot-help', ], allowedChannels: [], dmIsAllowed: false, }, commandSettings: { commandOperator: '', commands: DyNTS_Bot_defaultCommands, }, allowBotsInteractEachOther: false, };