@wppconnect/wa-js 2.25.0 → 2.26.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.
- package/CHANGELOG.md +1 -6
- package/dist/chat/functions/index.d.ts +1 -0
- package/dist/chat/functions/sendFileMessage.d.ts +22 -1
- package/dist/chat/functions/sendOrderMessage.d.ts +57 -0
- package/dist/eventEmitter/eventTypes.d.ts +3 -1
- package/dist/eventEmitter/index.d.ts +41 -41
- package/dist/index.d.ts +1 -0
- package/dist/order/events/eventTypes.d.ts +34 -0
- package/dist/order/events/index.d.ts +16 -0
- package/dist/order/events/registerUpdateOrderEvent.d.ts +16 -0
- package/dist/order/functions/get.d.ts +27 -0
- package/dist/order/functions/index.d.ts +16 -0
- package/dist/order/index.d.ts +17 -0
- package/dist/util/generateOrderUniqueId.d.ts +16 -0
- package/dist/util/index.d.ts +1 -0
- package/dist/whatsapp/collections/OrderCollection.d.ts +1 -0
- package/dist/whatsapp/enums/OUTWARD_TYPES.d.ts +1 -0
- package/dist/whatsapp/functions/addAndSendMessageEdit.d.ts +20 -0
- package/dist/whatsapp/functions/currencyForCountryShortcode.d.ts +19 -0
- package/dist/whatsapp/functions/getCountryShortcodeByPhone.d.ts +19 -0
- package/dist/whatsapp/functions/getOrderInfo.d.ts +20 -0
- package/dist/whatsapp/functions/index.d.ts +6 -0
- package/dist/whatsapp/functions/processRawAudioVideo.d.ts +28 -0
- package/dist/whatsapp/functions/processRawMedia.d.ts +26 -0
- package/dist/whatsapp/functions/products.d.ts +1 -1
- package/dist/whatsapp/functions/updateDBForGroupAction.d.ts +2 -0
- package/dist/whatsapp/models/MsgModel.d.ts +2 -0
- package/dist/whatsapp/models/OrderItemModel.d.ts +3 -0
- package/dist/wppconnect-wa.js +1 -1
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wppconnect/wa-js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.26.1",
|
|
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,20 +44,21 @@
|
|
|
44
44
|
"@commitlint/prompt-cli": "^17.7.1",
|
|
45
45
|
"@playwright/test": "^1.37.1",
|
|
46
46
|
"@types/debug": "^4.1.8",
|
|
47
|
-
"@types/node": "^16.18.
|
|
47
|
+
"@types/node": "^16.18.50",
|
|
48
48
|
"@types/node-fetch": "^2.6.4",
|
|
49
49
|
"@types/parse-data-url": "^3.0.0",
|
|
50
50
|
"@types/prettier": "^2.7.3",
|
|
51
51
|
"@types/shelljs": "^0.8.12",
|
|
52
52
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
53
53
|
"@typescript-eslint/parser": "^5.62.0",
|
|
54
|
-
"@wppconnect/wa-version": "^1.2.
|
|
54
|
+
"@wppconnect/wa-version": "^1.2.90",
|
|
55
55
|
"buffer": "^6.0.3",
|
|
56
56
|
"compare-versions": "^6.1.0",
|
|
57
57
|
"compressorjs": "^1.2.1",
|
|
58
|
-
"conventional-changelog-
|
|
58
|
+
"conventional-changelog-angular": "^7.0.0",
|
|
59
|
+
"conventional-changelog-cli": "^4.1.0",
|
|
59
60
|
"debug": "^4.3.4",
|
|
60
|
-
"eslint": "^8.
|
|
61
|
+
"eslint": "^8.49.0",
|
|
61
62
|
"eslint-config-prettier": "^9.0.0",
|
|
62
63
|
"eslint-plugin-header": "^3.1.1",
|
|
63
64
|
"eslint-plugin-import": "^2.28.1",
|
|
@@ -70,13 +71,13 @@
|
|
|
70
71
|
"node-fetch": "^2.7.0",
|
|
71
72
|
"parse-data-url": "^6.0.0",
|
|
72
73
|
"playwright-chromium": "^1.37.1",
|
|
73
|
-
"prettier": "^3.0.
|
|
74
|
+
"prettier": "^3.0.3",
|
|
74
75
|
"release-it": "^16.1.5",
|
|
75
76
|
"shx": "^0.3.4",
|
|
76
77
|
"ts-loader": "^9.4.4",
|
|
77
78
|
"ts-morph": "^19.0.0",
|
|
78
79
|
"ts-node": "^10.9.1",
|
|
79
|
-
"typedoc": "^0.25.
|
|
80
|
+
"typedoc": "^0.25.1",
|
|
80
81
|
"typedoc-plugin-mdn-links": "^3.1.0",
|
|
81
82
|
"typedoc-plugin-missing-exports": "^2.1.0",
|
|
82
83
|
"typescript": "^5.2.2",
|