zapo-js 0.1.0 → 0.1.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/README.md +4 -7
- package/package.json +2 -5
- package/proto/index.d.ts +1090 -1048
- package/proto/index.js +1 -1
- package/scripts/check-node-version.cjs +0 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center">zapo</h1>
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<strong>High-performance TypeScript implementation of the WhatsApp Web protocol.</strong><br />
|
|
@@ -6,10 +6,8 @@
|
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
8
|
<p align="center">
|
|
9
|
-
<a href="https://www.npmjs.com/package/zapo-js">
|
|
10
|
-
|
|
11
|
-
</a>
|
|
12
|
-
<img alt="npm package size" src="https://img.shields.io/npm/unpacked-size/zapo-js?label=package%20size&color=2F855A" />
|
|
9
|
+
<a href="https://www.npmjs.com/package/zapo-js"><img alt="npm version" src="https://img.shields.io/npm/v/zapo-js?color=CB3837" /></a>
|
|
10
|
+
<a href="https://www.npmjs.com/package/zapo-js"><img alt="npm package size" src="https://img.shields.io/npm/unpacked-size/zapo-js?label=package%20size&color=2F855A" /></a>
|
|
13
11
|
<img alt="node version" src="https://img.shields.io/badge/node-%3E%3D20.9.0-339933" />
|
|
14
12
|
<img alt="language" src="https://img.shields.io/badge/language-TypeScript-3178C6" />
|
|
15
13
|
<img alt="focus" src="https://img.shields.io/badge/focus-high--scale%20%2B%20multi--session-0A7EA4" />
|
|
@@ -82,7 +80,7 @@ These principles drive implementation decisions:
|
|
|
82
80
|
|
|
83
81
|
Runtime dependencies:
|
|
84
82
|
|
|
85
|
-
- Mandatory:
|
|
83
|
+
- Mandatory: none
|
|
86
84
|
|
|
87
85
|
Optional peer dependencies:
|
|
88
86
|
|
|
@@ -232,4 +230,3 @@ Before opening a PR:
|
|
|
232
230
|
|
|
233
231
|
This project is an independent implementation for engineering and interoperability research.
|
|
234
232
|
It is not affiliated with or endorsed by WhatsApp.
|
|
235
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zapo-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "High-performance WhatsApp Web TypeScript library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -110,9 +110,7 @@
|
|
|
110
110
|
"format": "prettier . --write",
|
|
111
111
|
"format:check": "prettier . --check"
|
|
112
112
|
},
|
|
113
|
-
"dependencies": {
|
|
114
|
-
"protobufjs": "^7.5.4"
|
|
115
|
-
},
|
|
113
|
+
"dependencies": {},
|
|
116
114
|
"peerDependencies": {
|
|
117
115
|
"better-sqlite3": "^11.9.1",
|
|
118
116
|
"pino": "^9.0.0",
|
|
@@ -147,4 +145,3 @@
|
|
|
147
145
|
"typescript-eslint": "^8.56.1"
|
|
148
146
|
}
|
|
149
147
|
}
|
|
150
|
-
|