Added Typebot integration

This commit is contained in:
Davidson Gomes
2023-08-18 12:24:05 -03:00
parent 0d16a7aab0
commit dd2caf720c
4 changed files with 82 additions and 2 deletions

View File

@@ -38,4 +38,9 @@ export class TypebotController {
logger.verbose('requested changeStatus from ' + instance.instanceName + ' instance');
return this.typebotService.changeStatus(instance, data);
}
public async startTypebot(instance: InstanceDto, data: any) {
logger.verbose('requested startTypebot from ' + instance.instanceName + ' instance');
return this.typebotService.startTypebot(instance, data);
}
}