@aiden-voice/widget 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/LICENSE.md +17 -0
- package/README.md +5 -0
- package/dist/version.d.ts +1 -1
- package/package.json +4 -3
package/LICENSE.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Aiden Widget License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Whoo. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This package ("the Widget") is provided solely for embedding the Aiden service in
|
|
6
|
+
websites and applications operated by, or on behalf of, customers of the Aiden service
|
|
7
|
+
under the applicable Aiden terms of service.
|
|
8
|
+
|
|
9
|
+
Permitted: installing the Widget from npm or loading it from the Aiden CDN, and
|
|
10
|
+
integrating it into such websites and applications.
|
|
11
|
+
|
|
12
|
+
Not permitted without prior written consent from Whoo: redistributing, sublicensing,
|
|
13
|
+
selling or hosting the Widget separately from the Aiden service; modifying, decompiling
|
|
14
|
+
or otherwise deriving works from it; removing this notice.
|
|
15
|
+
|
|
16
|
+
The Widget is provided "as is", without warranty of any kind, express or implied. Whoo
|
|
17
|
+
is not liable for any damages arising from its use, to the extent permitted by law.
|
package/README.md
CHANGED
|
@@ -281,6 +281,11 @@ The widget distinguishes two deliberately different error tiers:
|
|
|
281
281
|
the chat panel itself (e.g. "Something went wrong, please try again"),
|
|
282
282
|
leaving any partial response already rendered in place above it.
|
|
283
283
|
|
|
284
|
+
## License
|
|
285
|
+
|
|
286
|
+
Proprietary. This package is licensed only for embedding the Aiden service under
|
|
287
|
+
the applicable Aiden terms of service — see [`LICENSE.md`](./LICENSE.md).
|
|
288
|
+
|
|
284
289
|
## Local development
|
|
285
290
|
|
|
286
291
|
This repo uses [pnpm](https://pnpm.io) and [Biome](https://biomejs.dev)
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const WIDGET_VERSION = "0.1.
|
|
1
|
+
export declare const WIDGET_VERSION = "0.1.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiden-voice/widget",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"packageManager": "pnpm@11.9.0",
|
|
5
5
|
"description": "Embeddable chat widget for whoo-aiden",
|
|
6
6
|
"repository": {
|
|
@@ -9,13 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"private": false,
|
|
12
|
-
"license": "
|
|
12
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
13
13
|
"main": "./dist/widget.js",
|
|
14
14
|
"module": "./dist/widget.js",
|
|
15
15
|
"types": "./dist/index.d.ts",
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"files": [
|
|
18
|
-
"dist"
|
|
18
|
+
"dist",
|
|
19
|
+
"LICENSE.md"
|
|
19
20
|
],
|
|
20
21
|
"keywords": [],
|
|
21
22
|
"author": "",
|