@vinaystwt/xmpp-types 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 +36 -0
- package/package.json +6 -3
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @vinaystwt/xmpp-types
|
|
2
|
+
|
|
3
|
+
xMPP Types is the shared type package for the xMPP package family.
|
|
4
|
+
|
|
5
|
+
It contains the TypeScript shapes used across the gateway, router, wallet, MCP server, SDK, receipts, and operator state.
|
|
6
|
+
|
|
7
|
+
## Position In The Package Family
|
|
8
|
+
|
|
9
|
+
Most builders should start with:
|
|
10
|
+
|
|
11
|
+
- `@vinaystwt/xmpp-core`
|
|
12
|
+
- `@vinaystwt/xmpp-mcp`
|
|
13
|
+
|
|
14
|
+
Use `@vinaystwt/xmpp-types` directly only if you are building custom TypeScript integrations around xMPP APIs or events.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install @vinaystwt/xmpp-types
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Best For
|
|
23
|
+
|
|
24
|
+
- shared request and response types
|
|
25
|
+
- receipt and operator-state typing
|
|
26
|
+
- SDK or gateway extensions
|
|
27
|
+
|
|
28
|
+
## Related Packages
|
|
29
|
+
|
|
30
|
+
- `@vinaystwt/xmpp-core`
|
|
31
|
+
- `@vinaystwt/xmpp-router`
|
|
32
|
+
|
|
33
|
+
## Docs
|
|
34
|
+
|
|
35
|
+
- repo:
|
|
36
|
+
- https://github.com/Vinaystwt/xMPP
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vinaystwt/xmpp-types",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Shared
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Shared type package for xMPP gateways, SDKs, MCP tools, receipts, and operator state.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
+
"README.md",
|
|
11
12
|
"LICENSE"
|
|
12
13
|
],
|
|
13
14
|
"sideEffects": false,
|
|
@@ -24,7 +25,9 @@
|
|
|
24
25
|
"xmpp",
|
|
25
26
|
"types",
|
|
26
27
|
"stellar",
|
|
27
|
-
"agents"
|
|
28
|
+
"agents",
|
|
29
|
+
"mcp",
|
|
30
|
+
"receipts"
|
|
28
31
|
],
|
|
29
32
|
"exports": {
|
|
30
33
|
".": {
|