talkyzap-wapp-api 1.0.5 → 1.0.7
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 -1
- 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/deleteMessage.d.ts +2 -8
- package/dist/chat/functions/getNotes.d.ts +26 -0
- package/dist/chat/functions/index.d.ts +3 -0
- package/dist/chat/functions/prepareMessageButtons.d.ts +4 -12
- 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/sendTextMessage.d.ts +2 -1
- 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/createFanoutMsgStanza.d.ts +8 -0
- package/dist/whatsapp/functions/genBotMsgSecretFromMsgSecret.d.ts +19 -0
- package/dist/whatsapp/functions/index.d.ts +4 -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 +1 -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 +21 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "talkyzap-wapp-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
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": {
|
|
@@ -9,7 +9,10 @@
|
|
|
9
9
|
"url": "https://github.com/edgardmessias"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
|
-
".":
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/wppconnect-wa.js"
|
|
15
|
+
}
|
|
13
16
|
},
|
|
14
17
|
"types": "dist/index.d.ts",
|
|
15
18
|
"scripts": {
|
|
@@ -39,51 +42,51 @@
|
|
|
39
42
|
"watch": "webpack watch --devtool inline-source-map --mode development"
|
|
40
43
|
},
|
|
41
44
|
"devDependencies": {
|
|
42
|
-
"@commitlint/cli": "^19.
|
|
43
|
-
"@commitlint/config-conventional": "^19.
|
|
44
|
-
"@commitlint/prompt-cli": "^19.
|
|
45
|
-
"@playwright/test": "^1.
|
|
45
|
+
"@commitlint/cli": "^19.5.0",
|
|
46
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
47
|
+
"@commitlint/prompt-cli": "^19.5.0",
|
|
48
|
+
"@playwright/test": "^1.48.2",
|
|
46
49
|
"@types/debug": "^4.1.12",
|
|
47
|
-
"@types/node": "^16.18.
|
|
50
|
+
"@types/node": "^16.18.117",
|
|
48
51
|
"@types/node-fetch": "^2.6.11",
|
|
49
52
|
"@types/parse-data-url": "^3.0.2",
|
|
50
53
|
"@types/prettier": "^3.0.0",
|
|
51
54
|
"@types/shelljs": "^0.8.15",
|
|
52
55
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
53
56
|
"@typescript-eslint/parser": "^7.18.0",
|
|
54
|
-
"@wppconnect/wa-version": "^1.5.
|
|
57
|
+
"@wppconnect/wa-version": "^1.5.590",
|
|
55
58
|
"buffer": "^6.0.3",
|
|
56
59
|
"compare-versions": "^6.1.1",
|
|
57
60
|
"compressorjs": "^1.2.1",
|
|
58
61
|
"conventional-changelog-angular": "^8.0.0",
|
|
59
62
|
"conventional-changelog-cli": "^5.0.0",
|
|
60
63
|
"debug": "^4.3.7",
|
|
61
|
-
"eslint": "^8.57.
|
|
64
|
+
"eslint": "^8.57.1",
|
|
62
65
|
"eslint-config-prettier": "^9.1.0",
|
|
63
66
|
"eslint-plugin-header": "^3.1.1",
|
|
64
|
-
"eslint-plugin-import": "^2.
|
|
67
|
+
"eslint-plugin-import": "^2.31.0",
|
|
65
68
|
"eslint-plugin-prettier": "^5.2.1",
|
|
66
69
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
67
70
|
"eventemitter2": "^6.4.9",
|
|
68
71
|
"file-type": "~16.5.4",
|
|
69
|
-
"husky": "^9.1.
|
|
72
|
+
"husky": "^9.1.6",
|
|
70
73
|
"lint-staged": "^15.2.10",
|
|
71
74
|
"node-fetch": "^2.7.0",
|
|
72
75
|
"parse-data-url": "^6.0.0",
|
|
73
|
-
"playwright-chromium": "^1.
|
|
76
|
+
"playwright-chromium": "^1.48.2",
|
|
74
77
|
"prettier": "^3.3.3",
|
|
75
|
-
"release-it": "^17.
|
|
78
|
+
"release-it": "^17.10.0",
|
|
76
79
|
"shx": "^0.3.4",
|
|
77
80
|
"terser-webpack-plugin": "^5.3.10",
|
|
78
81
|
"ts-loader": "^9.5.1",
|
|
79
|
-
"ts-morph": "^
|
|
82
|
+
"ts-morph": "^24.0.0",
|
|
80
83
|
"ts-node": "^10.9.2",
|
|
81
|
-
"typedoc": "^0.26.
|
|
82
|
-
"typedoc-plugin-mdn-links": "^3.
|
|
84
|
+
"typedoc": "^0.26.10",
|
|
85
|
+
"typedoc-plugin-mdn-links": "^3.3.5",
|
|
83
86
|
"typedoc-plugin-missing-exports": "^3.0.0",
|
|
84
|
-
"typescript": "^5.
|
|
87
|
+
"typescript": "^5.6.3",
|
|
85
88
|
"typescript-debounce-decorator": "^0.0.18",
|
|
86
|
-
"webpack": "^5.
|
|
89
|
+
"webpack": "^5.95.0",
|
|
87
90
|
"webpack-cli": "^5.1.4"
|
|
88
91
|
},
|
|
89
92
|
"engines": {
|