@queenanya/baileys 8.2.6 → 8.2.7-beta

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.
@@ -156,6 +156,7 @@ const makeMessagesSocket = (config) => {
156
156
  userDevicesCache.set(key, deviceMap[key]);
157
157
  }
158
158
  }
159
+ logger.debug(deviceResults);
159
160
  return deviceResults;
160
161
  };
161
162
  const assertSessions = async (jids, force) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@queenanya/baileys",
3
- "version": "8.2.6",
3
+ "version": "8.2.7-beta",
4
4
  "description": "Custom Baileys WhatsApp API",
5
5
  "keywords": [
6
6
  "baileys",
@@ -29,6 +29,23 @@
29
29
  "WASignalGroup/*.js",
30
30
  "engine-requirements.js"
31
31
  ],
32
+ "scripts": {
33
+ "build:all": "tsc && typedoc",
34
+ "build:docs": "typedoc",
35
+ "build:tsc": "tsc",
36
+ "changelog:last": "conventional-changelog -p angular -r 2",
37
+ "changelog:preview": "conventional-changelog -p angular -u",
38
+ "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
39
+ "example": "node --inspect -r ts-node/register Example/example.ts",
40
+ "gen:protobuf": "sh WAProto/GenerateStatics.sh",
41
+ "lint": "eslint src --ext .js,.ts",
42
+ "lint:fix": "yarn lint --fix",
43
+ "prepack": "tsc",
44
+ "prepare": "tsc",
45
+ "preinstall": "node ./engine-requirements.js",
46
+ "release": "release-it",
47
+ "test": "jest"
48
+ },
32
49
  "dependencies": {
33
50
  "@adiwajshing/keyed-db": "^0.2.4",
34
51
  "@cacheable/node-cache": "^1.4.0",
@@ -87,20 +104,5 @@
87
104
  "sharp": {
88
105
  "optional": true
89
106
  }
90
- },
91
- "scripts": {
92
- "build:all": "tsc && typedoc",
93
- "build:docs": "typedoc",
94
- "build:tsc": "tsc",
95
- "changelog:last": "conventional-changelog -p angular -r 2",
96
- "changelog:preview": "conventional-changelog -p angular -u",
97
- "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
98
- "example": "node --inspect -r ts-node/register Example/example.ts",
99
- "gen:protobuf": "sh WAProto/GenerateStatics.sh",
100
- "lint": "eslint src --ext .js,.ts",
101
- "lint:fix": "yarn lint --fix",
102
- "preinstall": "node ./engine-requirements.js",
103
- "release": "release-it",
104
- "test": "jest"
105
107
  }
106
- }
108
+ }