mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-19 11:52:20 -06:00
- Added Wavoip integration to support voice calls within the application. - Introduced `wavoipToken` in various DTOs and models to manage authentication. - Updated `ChannelStartupService` to handle Wavoip settings and events. - Enhanced `BaileysStartupService` to utilize Wavoip for call signaling. - Updated CHANGELOG.md to version 1.8.7.
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
export class SettingsDto {
|
|
reject_call?: boolean;
|
|
msg_call?: string;
|
|
groups_ignore?: boolean;
|
|
always_online?: boolean;
|
|
read_messages?: boolean;
|
|
read_status?: boolean;
|
|
sync_full_history?: boolean;
|
|
wavoipToken?: string;
|
|
}
|