Merge branch 'EvolutionAPI:main' into main

This commit is contained in:
Unilógica
2023-08-18 18:02:53 -03:00
committed by GitHub
8 changed files with 162 additions and 27 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);
}
}