@useago/sdk 0.1.0 → 0.1.2
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 +17 -0
- package/package.json +2 -5
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @useago/sdk
|
|
2
|
+
|
|
3
|
+
Official JavaScript/TypeScript SDK for [AGO](https://useago.com) AI agent 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
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useago/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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
|
-
"
|
|
80
|
-
"type": "git",
|
|
81
|
-
"url": "https://github.com/useago/sdk.git"
|
|
82
|
-
}
|
|
79
|
+
"homepage": "https://docs.useago.com"
|
|
83
80
|
}
|