@wppconnect/wa-js 2.18.3 → 2.19.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +4 -4
  3. package/dist/chat/events/eventTypes.d.ts +12 -1
  4. package/dist/chat/events/index.d.ts +2 -1
  5. package/dist/chat/events/registerActiveChatEvent.d.ts +16 -0
  6. package/dist/chat/functions/getActiveChat.d.ts +30 -0
  7. package/dist/chat/functions/index.d.ts +1 -0
  8. package/dist/community/functions/addSubgroups.d.ts +33 -0
  9. package/dist/community/functions/create.d.ts +27 -0
  10. package/dist/community/functions/deactivate.d.ts +27 -0
  11. package/dist/community/functions/demoteParticipants.d.ts +27 -0
  12. package/dist/community/functions/getParticipants.d.ts +27 -0
  13. package/dist/community/functions/index.d.ts +22 -0
  14. package/dist/community/functions/promoteParticipants.d.ts +27 -0
  15. package/dist/community/functions/removeSubgroups.d.ts +33 -0
  16. package/dist/community/index.d.ts +16 -0
  17. package/dist/conn/functions/getAuthCode.d.ts +6 -0
  18. package/dist/group/functions/demoteParticipants.d.ts +12 -0
  19. package/dist/group/functions/getAllGroups.d.ts +2 -0
  20. package/dist/group/functions/getGroupSizeLimit.d.ts +27 -0
  21. package/dist/group/functions/getInviteCode.d.ts +2 -0
  22. package/dist/group/functions/getParticipants.d.ts +2 -0
  23. package/dist/group/functions/index.d.ts +1 -0
  24. package/dist/group/functions/promoteParticipants.d.ts +14 -0
  25. package/dist/group/functions/removeParticipants.d.ts +14 -0
  26. package/dist/group/functions/setIcon.d.ts +2 -0
  27. package/dist/gtag/Tracker.d.ts +1 -0
  28. package/dist/index.d.ts +1 -0
  29. package/dist/whatsapp/functions/getCommunityParticipants.d.ts +20 -0
  30. package/dist/whatsapp/functions/getGroupSizeLimit.d.ts +19 -0
  31. package/dist/whatsapp/functions/groupParticipants.d.ts +6 -0
  32. package/dist/whatsapp/functions/index.d.ts +3 -0
  33. package/dist/whatsapp/functions/sendCreateCommunity.d.ts +44 -0
  34. package/dist/whatsapp/multidevice/adv.d.ts +1 -1
  35. package/dist/wppconnect-wa.js +1 -1
  36. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wppconnect/wa-js",
3
- "version": "2.18.3",
3
+ "version": "2.19.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": {
@@ -42,30 +42,30 @@
42
42
  "@commitlint/cli": "^17.4.2",
43
43
  "@commitlint/config-conventional": "^17.4.2",
44
44
  "@commitlint/prompt-cli": "^17.4.2",
45
- "@playwright/test": "^1.29.2",
45
+ "@playwright/test": "^1.30.0",
46
46
  "@types/debug": "^4.1.7",
47
47
  "@types/node": "^16.18.11",
48
48
  "@types/parse-data-url": "^3.0.0",
49
49
  "@types/prettier": "^2.7.2",
50
50
  "@types/shelljs": "^0.8.11",
51
- "@typescript-eslint/eslint-plugin": "^5.48.2",
52
- "@typescript-eslint/parser": "^5.48.2",
53
- "@wppconnect/wa-version": "^1.1.229",
51
+ "@typescript-eslint/eslint-plugin": "^5.49.0",
52
+ "@typescript-eslint/parser": "^5.49.0",
53
+ "@wppconnect/wa-version": "^1.1.240",
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.32.0",
58
+ "eslint": "^8.33.0",
59
59
  "eslint-config-prettier": "^8.6.0",
60
60
  "eslint-plugin-header": "^3.1.1",
61
61
  "eslint-plugin-import": "^2.27.5",
62
62
  "eslint-plugin-prettier": "^4.2.1",
63
- "eslint-plugin-simple-import-sort": "^8.0.0",
63
+ "eslint-plugin-simple-import-sort": "^10.0.0",
64
64
  "eventemitter2": "^6.4.9",
65
65
  "file-type": "~16.5.4",
66
66
  "husky": "^8.0.3",
67
- "parse-data-url": "^4.0.1",
68
- "playwright-chromium": "^1.29.2",
67
+ "parse-data-url": "^5.0.0",
68
+ "playwright-chromium": "^1.30.0",
69
69
  "prettier": "^2.8.3",
70
70
  "pretty-quick": "^3.1.3",
71
71
  "release-it": "^15.6.0",
@@ -76,12 +76,12 @@
76
76
  "typedoc": "^0.23.24",
77
77
  "typedoc-plugin-mdn-links": "^2.0.2",
78
78
  "typedoc-plugin-missing-exports": "^1.0.0",
79
- "typescript": "^4.9.4",
79
+ "typescript": "^4.9.5",
80
80
  "typescript-debounce-decorator": "^0.0.18",
81
81
  "webpack": "^5.75.0",
82
82
  "webpack-cli": "^5.0.1"
83
83
  },
84
84
  "engines": {
85
- "whatsapp-web": ">=2.2230.9-beta"
85
+ "whatsapp-web": ">=2.2245.8-beta"
86
86
  }
87
87
  }