@wppconnect/wa-js 2.16.3 → 2.18.0
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.
- package/CHANGELOG.md +1 -5
- package/dist/chat/events/eventTypes.d.ts +10 -0
- package/dist/chat/events/index.d.ts +1 -0
- package/dist/chat/events/registerPollEvent.d.ts +16 -0
- package/dist/chat/functions/getReactions.d.ts +48 -0
- package/dist/chat/functions/getVotes.d.ts +33 -0
- package/dist/chat/functions/index.d.ts +2 -0
- package/dist/conn/events/eventTypes.d.ts +11 -0
- package/dist/conn/events/index.d.ts +1 -0
- package/dist/conn/events/registerMainInit.d.ts +16 -0
- package/dist/conn/functions/getHistorySyncProgress.d.ts +32 -0
- package/dist/conn/functions/index.d.ts +2 -0
- package/dist/conn/functions/isMainInit.d.ts +24 -0
- package/dist/group/functions/addParticipants.d.ts +17 -1
- package/dist/group/functions/canAdd.d.ts +11 -0
- package/dist/group/functions/canDemote.d.ts +11 -0
- package/dist/group/functions/canPromote.d.ts +11 -0
- package/dist/group/functions/canRemove.d.ts +11 -0
- package/dist/group/functions/create.d.ts +35 -4
- package/dist/whatsapp/functions/getHistorySyncProgress.d.ts +2 -1
- package/dist/whatsapp/functions/getReactions.d.ts +37 -0
- package/dist/whatsapp/functions/getVotes.d.ts +22 -0
- package/dist/whatsapp/functions/index.d.ts +3 -0
- package/dist/whatsapp/functions/sendCreateGroup.d.ts +10 -4
- package/dist/whatsapp/functions/sendGroupParticipants.d.ts +7 -2
- package/dist/whatsapp/functions/upsertVotes.d.ts +29 -0
- package/dist/whatsapp/models/MsgModel.d.ts +7 -0
- package/dist/wppconnect-wa.js +1 -1
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wppconnect/wa-js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.18.0",
|
|
4
4
|
"description": "WPPConnect/WA-JS is an open-source project with the aim of exporting functions from WhatsApp Web",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -44,18 +44,18 @@
|
|
|
44
44
|
"@commitlint/prompt-cli": "^17.3.0",
|
|
45
45
|
"@playwright/test": "^1.28.1",
|
|
46
46
|
"@types/debug": "^4.1.7",
|
|
47
|
-
"@types/node": "^16.18.
|
|
47
|
+
"@types/node": "^16.18.9",
|
|
48
48
|
"@types/parse-data-url": "^3.0.0",
|
|
49
49
|
"@types/prettier": "^2.7.1",
|
|
50
50
|
"@types/shelljs": "^0.8.11",
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
52
|
-
"@typescript-eslint/parser": "^5.
|
|
53
|
-
"@wppconnect/wa-version": "^1.1.
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
52
|
+
"@typescript-eslint/parser": "^5.46.1",
|
|
53
|
+
"@wppconnect/wa-version": "^1.1.213",
|
|
54
54
|
"buffer": "^6.0.3",
|
|
55
55
|
"compressorjs": "^1.1.1",
|
|
56
56
|
"conventional-changelog-cli": "^2.2.2",
|
|
57
57
|
"debug": "^4.3.4",
|
|
58
|
-
"eslint": "^8.
|
|
58
|
+
"eslint": "^8.29.0",
|
|
59
59
|
"eslint-config-prettier": "^8.5.0",
|
|
60
60
|
"eslint-plugin-header": "^3.1.1",
|
|
61
61
|
"eslint-plugin-import": "^2.26.0",
|
|
@@ -66,20 +66,20 @@
|
|
|
66
66
|
"husky": "^8.0.2",
|
|
67
67
|
"parse-data-url": "^4.0.1",
|
|
68
68
|
"playwright-chromium": "^1.28.1",
|
|
69
|
-
"prettier": "^2.8.
|
|
69
|
+
"prettier": "^2.8.1",
|
|
70
70
|
"pretty-quick": "^3.1.3",
|
|
71
|
-
"release-it": "^15.5.
|
|
71
|
+
"release-it": "^15.5.1",
|
|
72
72
|
"shx": "^0.3.4",
|
|
73
|
-
"ts-loader": "^9.4.
|
|
74
|
-
"ts-morph": "^
|
|
73
|
+
"ts-loader": "^9.4.2",
|
|
74
|
+
"ts-morph": "^17.0.1",
|
|
75
75
|
"ts-node": "^10.9.1",
|
|
76
|
-
"typedoc": "^0.23.
|
|
76
|
+
"typedoc": "^0.23.22",
|
|
77
77
|
"typedoc-plugin-mdn-links": "^2.0.0",
|
|
78
78
|
"typedoc-plugin-missing-exports": "^1.0.0",
|
|
79
|
-
"typescript": "^4.9.
|
|
79
|
+
"typescript": "^4.9.4",
|
|
80
80
|
"typescript-debounce-decorator": "^0.0.18",
|
|
81
81
|
"webpack": "^5.75.0",
|
|
82
|
-
"webpack-cli": "^
|
|
82
|
+
"webpack-cli": "^5.0.1"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
85
|
"whatsapp-web": ">=2.2230.9-beta"
|