talkyzap-wapp-api 1.0.6 → 1.0.8
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/README.md +4 -4
- package/dist/assert/assertColor.d.ts +4 -4
- package/dist/chat/functions/buttonsParser.d.ts +24 -0
- package/dist/chat/functions/getNotes.d.ts +26 -0
- package/dist/chat/functions/index.d.ts +3 -0
- package/dist/chat/functions/sendEventMessage.d.ts +64 -0
- package/dist/chat/functions/sendFileMessage.d.ts +2 -1
- package/dist/chat/functions/sendScheduledCallMessage.d.ts +5 -8
- package/dist/chat/functions/setNotes.d.ts +26 -0
- package/dist/community/functions/getAnnouncementGroup.d.ts +28 -0
- package/dist/community/functions/getSubgroups.d.ts +28 -0
- package/dist/community/functions/index.d.ts +2 -0
- package/dist/contact/functions/getProfilePictureUrl.d.ts +1 -1
- package/dist/contact/functions/getStatus.d.ts +1 -1
- package/dist/contact/functions/index.d.ts +2 -0
- package/dist/contact/functions/queryExists.d.ts +1 -1
- package/dist/contact/functions/subscribePresence.d.ts +27 -0
- package/dist/contact/functions/unsubscribePresence.d.ts +27 -0
- package/dist/eventEmitter/index.d.ts +22 -22
- package/dist/group/functions/getGroupInfoFromInviteCode.d.ts +1 -1
- package/dist/profile/functions/getMyProfilePicture.d.ts +27 -0
- package/dist/profile/functions/index.d.ts +1 -0
- package/dist/whatsapp/collections/BotProfileCollection.d.ts +26 -0
- package/dist/whatsapp/collections/NoteCollection.d.ts +26 -0
- package/dist/whatsapp/collections/index.d.ts +2 -0
- package/dist/whatsapp/functions/addOrEditNoteAction.d.ts +27 -0
- package/dist/whatsapp/functions/createEventCallLink.d.ts +18 -0
- package/dist/whatsapp/functions/findOrCreateLatestChat.d.ts +20 -0
- package/dist/whatsapp/functions/genBotMsgSecretFromMsgSecret.d.ts +19 -0
- package/dist/whatsapp/functions/getShouldAppearInList.d.ts +24 -0
- package/dist/whatsapp/functions/index.d.ts +6 -0
- package/dist/whatsapp/functions/removeStatusMessage.d.ts +19 -0
- package/dist/whatsapp/functions/subscribePresence.d.ts +20 -0
- package/dist/whatsapp/misc/Wid.d.ts +1 -0
- package/dist/whatsapp/models/BotProfileModel.d.ts +51 -0
- package/dist/whatsapp/models/ChatModel.d.ts +29 -0
- package/dist/whatsapp/models/NoteModel.d.ts +40 -0
- package/dist/whatsapp/models/index.d.ts +2 -0
- package/dist/whatsapp/stores.d.ts +4 -0
- package/dist/wppconnect-wa.js +1 -1
- package/dist/wppconnect-wa.js.LICENSE.txt +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "talkyzap-wapp-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
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": {
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
"@commitlint/cli": "^19.5.0",
|
|
46
46
|
"@commitlint/config-conventional": "^19.5.0",
|
|
47
47
|
"@commitlint/prompt-cli": "^19.5.0",
|
|
48
|
-
"@playwright/test": "^1.
|
|
48
|
+
"@playwright/test": "^1.48.2",
|
|
49
49
|
"@types/debug": "^4.1.12",
|
|
50
|
-
"@types/node": "^16.18.
|
|
51
|
-
"@types/node-fetch": "^2.6.
|
|
50
|
+
"@types/node": "^16.18.119",
|
|
51
|
+
"@types/node-fetch": "^2.6.12",
|
|
52
52
|
"@types/parse-data-url": "^3.0.2",
|
|
53
53
|
"@types/prettier": "^3.0.0",
|
|
54
54
|
"@types/shelljs": "^0.8.15",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
56
56
|
"@typescript-eslint/parser": "^7.18.0",
|
|
57
|
-
"@wppconnect/wa-version": "^1.5.
|
|
57
|
+
"@wppconnect/wa-version": "^1.5.666",
|
|
58
58
|
"buffer": "^6.0.3",
|
|
59
59
|
"compare-versions": "^6.1.1",
|
|
60
60
|
"compressorjs": "^1.2.1",
|
|
@@ -73,20 +73,20 @@
|
|
|
73
73
|
"lint-staged": "^15.2.10",
|
|
74
74
|
"node-fetch": "^2.7.0",
|
|
75
75
|
"parse-data-url": "^6.0.0",
|
|
76
|
-
"playwright-chromium": "^1.
|
|
76
|
+
"playwright-chromium": "^1.48.2",
|
|
77
77
|
"prettier": "^3.3.3",
|
|
78
|
-
"release-it": "^17.
|
|
78
|
+
"release-it": "^17.10.0",
|
|
79
79
|
"shx": "^0.3.4",
|
|
80
80
|
"terser-webpack-plugin": "^5.3.10",
|
|
81
81
|
"ts-loader": "^9.5.1",
|
|
82
|
-
"ts-morph": "^
|
|
82
|
+
"ts-morph": "^24.0.0",
|
|
83
83
|
"ts-node": "^10.9.2",
|
|
84
|
-
"typedoc": "^0.26.
|
|
85
|
-
"typedoc-plugin-mdn-links": "^3.3.
|
|
84
|
+
"typedoc": "^0.26.11",
|
|
85
|
+
"typedoc-plugin-mdn-links": "^3.3.7",
|
|
86
86
|
"typedoc-plugin-missing-exports": "^3.0.0",
|
|
87
|
-
"typescript": "^5.6.
|
|
87
|
+
"typescript": "^5.6.3",
|
|
88
88
|
"typescript-debounce-decorator": "^0.0.18",
|
|
89
|
-
"webpack": "^5.
|
|
89
|
+
"webpack": "^5.96.1",
|
|
90
90
|
"webpack-cli": "^5.1.4"
|
|
91
91
|
},
|
|
92
92
|
"engines": {
|