/* app */ export enum SystemInputEnum { 'welcomeText' = 'welcomeText', 'variables' = 'variables', 'switch' = 'switch', // a trigger switch 'history' = 'history', 'userChatInput' = 'userChatInput' } export enum VariableInputEnum { input = 'input', select = 'select' } export enum AppTypeEnum { basic = 'basic', advanced = 'advanced' }