UNPKG

@whiskeysockets/baileys

Version:

A WebSockets library for interacting with WhatsApp Web

18 lines 693 B
import { DEFAULT_CONNECTION_CONFIG } from '../Defaults/index.js'; import { makeCommunitiesSocket } from './communities.js'; // export the last socket layer const makeWASocket = (config) => { const newConfig = { ...DEFAULT_CONNECTION_CONFIG, ...config }; // If the user hasn't provided their own history sync function, // let's create a default one that respects the syncFullHistory flag. // TODO: Change if (config.shouldSyncHistoryMessage === undefined) { newConfig.shouldSyncHistoryMessage = () => !!newConfig.syncFullHistory; } return makeCommunitiesSocket(newConfig); }; export default makeWASocket; //# sourceMappingURL=index.js.map