Implement POST request to Evolution API to create a webhook after successful WhatsApp QR code connection, including correct endpoint, headers, and body formatting. Log request status.
11 lines
369 B
TypeScript
11 lines
369 B
TypeScript
|
|
// Re-export all functions from the service modules
|
|
export * from './instanceManagement';
|
|
export * from './instanceActions';
|
|
export * from './localStorage';
|
|
export * from './webhookService';
|
|
|
|
// Import and re-export the disconnect function specifically
|
|
export { disconnectInstance } from './instanceActions';
|
|
export { createEvolutionWebhook } from './webhookService';
|