@useago/sdk 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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. package/package.json +2 -5
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @useago/sdk
2
+
3
+ Official JavaScript/TypeScript SDK for [AGO](https://useago.com) chat integration.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @useago/sdk
9
+ ```
10
+
11
+ ## Widget Types
12
+
13
+ For projects integrating the embeddable widget snippet, types are available separately:
14
+
15
+ ```ts
16
+ import type { AgoWidgetConfig } from "@useago/sdk/widget";
17
+ ```
18
+
19
+ ## Documentation
20
+
21
+ Full documentation at [docs.useago.com](https://docs.useago.com).
22
+
23
+ ## License
24
+
25
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@useago/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "JavaScript SDK for AGO Chat integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -76,8 +76,5 @@
76
76
  "chatbot"
77
77
  ],
78
78
  "license": "MIT",
79
- "repository": {
80
- "type": "git",
81
- "url": "https://github.com/useago/sdk.git"
82
- }
79
+ "homepage": "https://docs.useago.com"
83
80
  }