@ihoomanai/chat-widget 3.0.15 → 3.0.17
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/cdn/SRI_HASHES.md +8 -8
- package/cdn/health.json +2 -2
- package/cdn/latest/chat.js +374 -86
- package/cdn/latest/chat.js.map +1 -1
- package/cdn/latest/chat.min.js +1 -1
- package/cdn/latest/chat.min.js.map +1 -1
- package/cdn/manifest.json +9 -9
- package/cdn/v3/chat.js +374 -86
- package/cdn/v3/chat.js.map +1 -1
- package/cdn/v3/chat.min.js +1 -1
- package/cdn/v3/chat.min.js.map +1 -1
- package/cdn/{v3.0.6 → v3.0.16}/chat.js +374 -86
- package/cdn/v3.0.16/chat.js.map +1 -0
- package/cdn/v3.0.16/chat.min.js +2 -0
- package/cdn/v3.0.16/chat.min.js.map +1 -0
- package/dist/index.cjs.js +40 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +40 -10
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/index.umd.js +40 -10
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/dist/widget.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/widget.ts +44 -8
- package/cdn/v3.0.6/chat.js.map +0 -1
- package/cdn/v3.0.6/chat.min.js +0 -2
- package/cdn/v3.0.6/chat.min.js.map +0 -1
package/cdn/SRI_HASHES.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# SRI Hashes for @ihooman/chat-widget
|
|
2
2
|
|
|
3
|
-
## Version: 3.0.
|
|
3
|
+
## Version: 3.0.16
|
|
4
4
|
|
|
5
|
-
Build Date: 2026-02-
|
|
5
|
+
Build Date: 2026-02-22T07:03:47.371Z
|
|
6
6
|
|
|
7
7
|
## Subresource Integrity (SRI) Hashes
|
|
8
8
|
|
|
@@ -12,16 +12,16 @@ Use these hashes to ensure the integrity of the widget script when loading from
|
|
|
12
12
|
|
|
13
13
|
| Version | URL | SRI Hash |
|
|
14
14
|
|---------|-----|----------|
|
|
15
|
-
| Major (v3) | `https://cdn.ihooman.ai/widget/v3/chat.min.js` | `sha384-
|
|
16
|
-
| Full (v3.0.
|
|
15
|
+
| Major (v3) | `https://cdn.ihooman.ai/widget/v3/chat.min.js` | `sha384-j7ZPl0Tp4j0gYPYDUm1/KFotbivm9LJd8hrkuTxpnsPXZG/TfBpOdLbz5TNs5+UH` |
|
|
16
|
+
| Full (v3.0.16) | `https://cdn.ihooman.ai/widget/v3.0.16/chat.min.js` | `sha384-j7ZPl0Tp4j0gYPYDUm1/KFotbivm9LJd8hrkuTxpnsPXZG/TfBpOdLbz5TNs5+UH` |
|
|
17
17
|
| Latest | `https://cdn.ihooman.ai/widget/latest/chat.min.js` | *(SRI not recommended for latest)* |
|
|
18
18
|
|
|
19
19
|
### Unminified Bundle (For Development/Debugging)
|
|
20
20
|
|
|
21
21
|
| Version | URL | SRI Hash |
|
|
22
22
|
|---------|-----|----------|
|
|
23
|
-
| Major (v3) | `https://cdn.ihooman.ai/widget/v3/chat.js` | `sha384-
|
|
24
|
-
| Full (v3.0.
|
|
23
|
+
| Major (v3) | `https://cdn.ihooman.ai/widget/v3/chat.js` | `sha384-WPDOX95XW6Wgfw0qWJ6kgjeCbHYBBXABw1czvf4Lar/GoWCf2kqO5IZWGL47d6dz` |
|
|
24
|
+
| Full (v3.0.16) | `https://cdn.ihooman.ai/widget/v3.0.16/chat.js` | `sha384-WPDOX95XW6Wgfw0qWJ6kgjeCbHYBBXABw1czvf4Lar/GoWCf2kqO5IZWGL47d6dz` |
|
|
25
25
|
| Latest | `https://cdn.ihooman.ai/widget/latest/chat.js` | *(SRI not recommended for latest)* |
|
|
26
26
|
|
|
27
27
|
## Usage Examples
|
|
@@ -29,8 +29,8 @@ Use these hashes to ensure the integrity of the widget script when loading from
|
|
|
29
29
|
### With SRI (Recommended for versioned URLs)
|
|
30
30
|
|
|
31
31
|
```html
|
|
32
|
-
<script src="https://cdn.ihooman.ai/widget/v3.0.
|
|
33
|
-
integrity="sha384-
|
|
32
|
+
<script src="https://cdn.ihooman.ai/widget/v3.0.16/chat.min.js"
|
|
33
|
+
integrity="sha384-j7ZPl0Tp4j0gYPYDUm1/KFotbivm9LJd8hrkuTxpnsPXZG/TfBpOdLbz5TNs5+UH"
|
|
34
34
|
crossorigin="anonymous"></script>
|
|
35
35
|
<script>
|
|
36
36
|
IhoomanChat.init({
|
package/cdn/health.json
CHANGED