@vinikjkkj/wa-wam 0.1.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/README.md +359 -0
- package/index.d.ts +30177 -0
- package/index.js +28358 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vinikjkkj/wa-wam",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "WhatsApp Web WAM (analytics/metrics) event schemas — event IDs, field IDs, types, enums, globals (daily-extracted).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"whatsapp",
|
|
7
|
+
"whatsapp-web",
|
|
8
|
+
"wam",
|
|
9
|
+
"analytics",
|
|
10
|
+
"metrics",
|
|
11
|
+
"telemetry",
|
|
12
|
+
"wa-spec"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "vinikjkkj",
|
|
17
|
+
"url": "https://github.com/vinikjkkj"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/vinikjkkj/wa-spec/tree/main/packages/wam#readme",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/vinikjkkj/wa-spec/issues"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/vinikjkkj/wa-spec.git",
|
|
26
|
+
"directory": "packages/wam"
|
|
27
|
+
},
|
|
28
|
+
"funding": [
|
|
29
|
+
{
|
|
30
|
+
"type": "github",
|
|
31
|
+
"url": "https://github.com/sponsors/vinikjkkj"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"main": "index.js",
|
|
35
|
+
"types": "index.d.ts",
|
|
36
|
+
"sideEffects": false,
|
|
37
|
+
"files": [
|
|
38
|
+
"index.js",
|
|
39
|
+
"index.d.ts",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"apply": "node ./scripts/apply.cjs"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=20.9.0"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
}
|
|
51
|
+
}
|