@bernierllc/chat-suite 1.0.1 → 1.2.0
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/CHANGELOG.md +52 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 1.2.0 (2025-12-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ci:** add lerna version step before publish ([3d20300](https://github.com/bernierllc/tools/commit/3d203002143bf353fffafe4f8a78a99009567347))
|
|
12
|
+
* **ci:** correct jest testEnvironment paths for CI ([c47144c](https://github.com/bernierllc/tools/commit/c47144c3d78aec2be1e1454066c235c2227823fd))
|
|
13
|
+
* **jest:** resolve Node.js v25+ localStorage SecurityError ([8ffc512](https://github.com/bernierllc/tools/commit/8ffc512805519bc5ba523bdbcd1c457e84998c9e))
|
|
14
|
+
* resolve TypeScript build errors across multiple packages ([651ea0e](https://github.com/bernierllc/tools/commit/651ea0ed9ef58bd94e385a6037d83f1bcd558058))
|
|
15
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* Implement complete chat suite with core packages ([74b04b9](https://github.com/bernierllc/tools/commit/74b04b92a16736be53a83b2faf4ba9de24ecd98c))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# 1.1.0 (2025-12-25)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* **ci:** correct jest testEnvironment paths for CI ([c47144c](https://github.com/bernierllc/tools/commit/c47144c3d78aec2be1e1454066c235c2227823fd))
|
|
32
|
+
* **jest:** resolve Node.js v25+ localStorage SecurityError ([8ffc512](https://github.com/bernierllc/tools/commit/8ffc512805519bc5ba523bdbcd1c457e84998c9e))
|
|
33
|
+
* resolve TypeScript build errors across multiple packages ([651ea0e](https://github.com/bernierllc/tools/commit/651ea0ed9ef58bd94e385a6037d83f1bcd558058))
|
|
34
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
* Implement complete chat suite with core packages ([74b04b9](https://github.com/bernierllc/tools/commit/74b04b92a16736be53a83b2faf4ba9de24ecd98c))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
1
45
|
# @bernierllc/chat-suite
|
|
2
46
|
|
|
47
|
+
## 1.0.2
|
|
48
|
+
|
|
49
|
+
### Patch Changes
|
|
50
|
+
|
|
51
|
+
- Updated dependencies []:
|
|
52
|
+
- @bernierllc/chat-ai-router@1.0.2
|
|
53
|
+
- @bernierllc/chatkit-adapter@1.0.2
|
|
54
|
+
|
|
3
55
|
## 1.0.1
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/chat-suite",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Comprehensive chat orchestration suite with AI-powered routing",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"test": "jest --watch",
|
|
10
|
+
"test:run": "jest --passWithNoTests",
|
|
11
|
+
"test:coverage": "jest --coverage --passWithNoTests",
|
|
12
|
+
"lint": "eslint src/**/*.ts",
|
|
13
|
+
"clean": "rm -rf dist"
|
|
14
|
+
},
|
|
7
15
|
"keywords": [
|
|
8
16
|
"chat",
|
|
9
17
|
"suite",
|
|
@@ -18,13 +26,12 @@
|
|
|
18
26
|
"author": "Bernier LLC",
|
|
19
27
|
"license": "SEE LICENSE IN LICENSE",
|
|
20
28
|
"dependencies": {
|
|
21
|
-
"
|
|
22
|
-
"@bernierllc/
|
|
23
|
-
"@bernierllc/chatkit-adapter": "1.0
|
|
24
|
-
"@bernierllc/
|
|
25
|
-
"
|
|
29
|
+
"@bernierllc/chat-ai-router": "1.2.0",
|
|
30
|
+
"@bernierllc/chat-analytics": "1.2.0",
|
|
31
|
+
"@bernierllc/chatkit-adapter": "1.2.0",
|
|
32
|
+
"@bernierllc/neverhub-adapter": "0.1.4",
|
|
33
|
+
"zod": "^3.22.0"
|
|
26
34
|
},
|
|
27
|
-
"peerDependencies": {},
|
|
28
35
|
"peerDependenciesMeta": {
|
|
29
36
|
"@bernierllc/chat-integration-slack": {
|
|
30
37
|
"optional": true
|
|
@@ -56,12 +63,5 @@
|
|
|
56
63
|
"access": "public",
|
|
57
64
|
"registry": "https://registry.npmjs.org/"
|
|
58
65
|
},
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
"test": "jest --watch",
|
|
62
|
-
"test:run": "jest --passWithNoTests",
|
|
63
|
-
"test:coverage": "jest --coverage --passWithNoTests",
|
|
64
|
-
"lint": "eslint src/**/*.ts",
|
|
65
|
-
"clean": "rm -rf dist"
|
|
66
|
-
}
|
|
67
|
-
}
|
|
66
|
+
"gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
|
|
67
|
+
}
|