File tree Expand file tree Collapse file tree
packages/botonic-plugin-flow-builder/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ export default class BotonicPluginFlowBuilder implements Plugin {
7979 allowKeywords : options . inShadowing ?. allowKeywords || false ,
8080 allowSmartIntents : options . inShadowing ?. allowSmartIntents || false ,
8181 allowKnowledgeBases : options . inShadowing ?. allowKnowledgeBases || false ,
82+ allowAiAgents : options . inShadowing ?. allowAiAgents || false ,
8283 }
8384 this . contentFilters = options . contentFilters || [ ]
8485 this . customRatingMessageEnabled =
@@ -265,6 +266,10 @@ export default class BotonicPluginFlowBuilder implements Plugin {
265266 possibleValues,
266267 }
267268 }
269+
270+ setInShadowing ( inShadowing : InShadowingConfig ) : void {
271+ this . inShadowing = inShadowing
272+ }
268273}
269274
270275export * from './action'
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export interface InShadowingConfig {
1818 allowKeywords : boolean
1919 allowSmartIntents : boolean
2020 allowKnowledgeBases : boolean
21+ allowAiAgents : boolean
2122}
2223
2324export interface BotonicPluginFlowBuilderOptions <
You can’t perform that action at this time.
0 commit comments