@shoru/kitten 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -141,14 +141,19 @@ export default {
141
141
  browser: Browsers.ubuntu('Chrome'),
142
142
  markOnlineOnConnect: false,
143
143
  syncFullHistory: false,
144
- generateHighQualityLinkPreview: true,
144
+ generateHighQualityLinkPreview: false,
145
+ shouldIgnoreJid: () => false,
146
+ shouldSyncHistoryMessage: () => false,
145
147
  logger: pino({ level: 'silent' })
146
148
  },
147
149
 
148
150
  db: {
149
151
  path: './db',
150
152
  compression: true,
151
- mapSize: 2 * 1024 * 1024 * 1024 // 2GB
153
+ mapSize: 2 * 1024 * 1024 * 1024, // 2 GB
154
+ maxReaders: 126,
155
+ noSync: true,
156
+ noMetaSync: true
152
157
  },
153
158
 
154
159
  plugins: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shoru/kitten",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "description": "A powerful Node.js framework to simplify making WhatsApp Bots",
6
6
  "main": "src/index.js",
7
7
  "repository": {