We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb591e7 commit ef7e61fCopy full SHA for ef7e61f
src/commands/agent/generate/template.ts
@@ -35,7 +35,10 @@ export type BotTemplateExt = {
35
};
36
37
type BotExt = {
38
- Bot: Bot;
+ Bot: Bot & {
39
+ agentDSLEnabled?: boolean;
40
+ botSource?: string;
41
+ };
42
43
44
type BotVersionExt = {
@@ -155,6 +158,8 @@ const convertBotToBotTemplate = (
155
158
delete bot.Bot.botUser;
156
159
delete bot.Bot.logPrivateConversationData;
157
160
delete bot.Bot.sessionTimeout;
161
+ delete bot.Bot.agentDSLEnabled;
162
+ delete bot.Bot.botSource;
163
164
const botTemplate: BotTemplateExt = {
165
'?xml': { '@_version': '1.0', '@_encoding': 'UTF-8' },
0 commit comments