@wppconnect/server 2.6.0 → 2.8.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 +8 -0
- package/dist/controller/catalogController.js +1 -2
- package/dist/controller/deviceController.js +11 -3
- package/dist/controller/messageController.js +8 -3
- package/dist/controller/sessionController.js +10 -3
- package/dist/middleware/statusConnection.js +4 -2
- package/dist/swagger.json +28 -3
- package/dist/util/createSessionUtil.js +5 -1
- package/dist/util/functions.js +7 -2
- package/package.json +36 -35
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wppconnect/server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"description": "Projeto feito para autenticar a automomacao do WhatsappWeb com multi-clientes de forma dinamica. Backend feito em Nodejs(express, socketio), FrontEnd (ReactJS)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "kingaspx",
|
|
@@ -28,70 +28,71 @@
|
|
|
28
28
|
"test": "jest"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@aws-sdk/client-s3": "^3.
|
|
32
|
-
"@wppconnect-team/wppconnect": "^1.
|
|
31
|
+
"@aws-sdk/client-s3": "^3.675.0",
|
|
32
|
+
"@wppconnect-team/wppconnect": "^1.34.2",
|
|
33
33
|
"archiver": "^7.0.1",
|
|
34
|
-
"axios": "^1.7.
|
|
34
|
+
"axios": "^1.7.7",
|
|
35
35
|
"bcrypt": "^5.1.1",
|
|
36
36
|
"buffer-to-stream": "1.0.0",
|
|
37
37
|
"cors": "^2.8.5",
|
|
38
38
|
"cross-env": "^7.0.3",
|
|
39
39
|
"dotenv": "^16.4.5",
|
|
40
|
-
"express": "^4.
|
|
40
|
+
"express": "^4.21.1",
|
|
41
41
|
"express-query-boolean": "^2.0.0",
|
|
42
|
-
"form-data": "^4.0.
|
|
42
|
+
"form-data": "^4.0.1",
|
|
43
43
|
"json-mapper-json": "^1.3.3",
|
|
44
44
|
"merge-deep": "^3.0.3",
|
|
45
45
|
"moment": "^2.30.1",
|
|
46
46
|
"multer": "^1.4.5-lts.1",
|
|
47
47
|
"qrcode": "^1.5.4",
|
|
48
|
-
"socket.io": "^4.
|
|
48
|
+
"socket.io": "^4.8.1",
|
|
49
49
|
"swagger-autogen": "^2.23.7",
|
|
50
50
|
"swagger-ui-express": "^5.0.1",
|
|
51
51
|
"unzipper": "^0.12.3",
|
|
52
|
-
"winston": "^3.
|
|
52
|
+
"winston": "^3.15.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@babel/cli": "^7.
|
|
56
|
-
"@babel/core": "^7.25.
|
|
57
|
-
"@babel/eslint-parser": "^7.25.
|
|
58
|
-
"@babel/eslint-plugin": "^7.25.
|
|
59
|
-
"@babel/node": "^7.25.
|
|
60
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
61
|
-
"@babel/preset-env": "^7.25.
|
|
62
|
-
"@babel/preset-typescript": "^7.
|
|
63
|
-
"@commitlint/cli": "^19.
|
|
64
|
-
"@commitlint/config-conventional": "^19.
|
|
65
|
-
"@commitlint/cz-commitlint": "^19.
|
|
66
|
-
"@types/archiver": "^6.0.
|
|
55
|
+
"@babel/cli": "^7.25.9",
|
|
56
|
+
"@babel/core": "^7.25.9",
|
|
57
|
+
"@babel/eslint-parser": "^7.25.9",
|
|
58
|
+
"@babel/eslint-plugin": "^7.25.9",
|
|
59
|
+
"@babel/node": "^7.25.9",
|
|
60
|
+
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
61
|
+
"@babel/preset-env": "^7.25.9",
|
|
62
|
+
"@babel/preset-typescript": "^7.25.9",
|
|
63
|
+
"@commitlint/cli": "^19.5.0",
|
|
64
|
+
"@commitlint/config-conventional": "^19.5.0",
|
|
65
|
+
"@commitlint/cz-commitlint": "^19.5.0",
|
|
66
|
+
"@types/archiver": "^6.0.3",
|
|
67
67
|
"@types/bcrypt": "^5.0.2",
|
|
68
68
|
"@types/cors": "^2.8.17",
|
|
69
69
|
"@types/express": "^4.17.21",
|
|
70
|
-
"@types/jest": "^29.5.
|
|
70
|
+
"@types/jest": "^29.5.14",
|
|
71
71
|
"@types/merge-deep": "^3.0.3",
|
|
72
72
|
"@types/mime-types": "^2.1.4",
|
|
73
|
-
"@types/multer": "^1.4.
|
|
74
|
-
"@types/node": "^20.
|
|
73
|
+
"@types/multer": "^1.4.12",
|
|
74
|
+
"@types/node": "^20.16.13",
|
|
75
75
|
"@types/qrcode": "^1.5.5",
|
|
76
76
|
"@types/swagger-ui-express": "^4.1.6",
|
|
77
|
-
"@types/unzipper": "^0.10.
|
|
77
|
+
"@types/unzipper": "^0.10.10",
|
|
78
78
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
79
|
-
"
|
|
79
|
+
"@typescript-eslint/parser": "^8.12.2",
|
|
80
|
+
"commitizen": "^4.3.1",
|
|
80
81
|
"conventional-changelog-cli": "^5.0.0",
|
|
81
82
|
"crypto-js": "^4.2.0",
|
|
82
|
-
"eslint": "^8.57.
|
|
83
|
-
"eslint-config-prettier": "^9.1.0",
|
|
83
|
+
"eslint": "^8.57.1",
|
|
84
84
|
"eslint-config-love": "^53.0.0",
|
|
85
|
-
"eslint-
|
|
86
|
-
"eslint-plugin-
|
|
85
|
+
"eslint-config-prettier": "^9.1.0",
|
|
86
|
+
"eslint-plugin-import": "^2.31.0",
|
|
87
|
+
"eslint-plugin-n": "^17.10.3",
|
|
87
88
|
"eslint-plugin-prettier": "^4.2.1",
|
|
88
89
|
"eslint-plugin-promise": "^6.6.0",
|
|
89
90
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
90
|
-
"husky": "^9.1.
|
|
91
|
+
"husky": "^9.1.6",
|
|
91
92
|
"jest": "^29.7.0",
|
|
92
93
|
"license-check-and-add": "^4.0.5",
|
|
93
|
-
"mongoose": "^8.
|
|
94
|
-
"nodemon": "^3.1.
|
|
94
|
+
"mongoose": "^8.7.3",
|
|
95
|
+
"nodemon": "^3.1.7",
|
|
95
96
|
"prettier": "^2.8.8",
|
|
96
97
|
"pretty-quick": "^4.0.0",
|
|
97
98
|
"prom-client": "^14.2.0",
|
|
@@ -100,15 +101,15 @@
|
|
|
100
101
|
"rimraf": "^5.0.10",
|
|
101
102
|
"shx": "^0.3.4",
|
|
102
103
|
"swagger-ui-dist": "^5.17.14",
|
|
103
|
-
"ts-jest": "^29.
|
|
104
|
+
"ts-jest": "^29.2.5",
|
|
104
105
|
"ts-loader": "^9.5.1",
|
|
105
|
-
"tsx": "^4.
|
|
106
|
+
"tsx": "^4.17.0",
|
|
106
107
|
"typescript": "^5.5.4",
|
|
107
108
|
"webpack-cli": "^5.1.4"
|
|
108
109
|
},
|
|
109
110
|
"peerDependencies": {
|
|
110
111
|
"crypto-js": "^4.2.0",
|
|
111
|
-
"mongoose": "^8.
|
|
112
|
+
"mongoose": "^8.7.3",
|
|
112
113
|
"redis": "^4.7.0"
|
|
113
114
|
}
|
|
114
115
|
}
|