@bernierllc/chat-suite 1.2.0 → 1.2.3

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/CHANGELOG.md +24 -0
  2. package/package.json +15 -16
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.2.3](https://github.com/bernierllc/tools/compare/@bernierllc/chat-suite@1.2.2...@bernierllc/chat-suite@1.2.3) (2026-03-30)
7
+
8
+ **Note:** Version bump only for package @bernierllc/chat-suite
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.2.2](https://github.com/bernierllc/tools/compare/@bernierllc/chat-suite@1.2.1...@bernierllc/chat-suite@1.2.2) (2026-03-09)
15
+
16
+ **Note:** Version bump only for package @bernierllc/chat-suite
17
+
18
+
19
+
20
+
21
+
22
+ ## [1.2.1](https://github.com/bernierllc/tools/compare/@bernierllc/chat-suite@1.2.0...@bernierllc/chat-suite@1.2.1) (2026-03-03)
23
+
24
+ **Note:** Version bump only for package @bernierllc/chat-suite
25
+
26
+
27
+
28
+
29
+
6
30
  # 1.2.0 (2025-12-25)
7
31
 
8
32
 
package/package.json CHANGED
@@ -1,17 +1,9 @@
1
1
  {
2
2
  "name": "@bernierllc/chat-suite",
3
- "version": "1.2.0",
3
+ "version": "1.2.3",
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
- },
15
7
  "keywords": [
16
8
  "chat",
17
9
  "suite",
@@ -26,11 +18,11 @@
26
18
  "author": "Bernier LLC",
27
19
  "license": "SEE LICENSE IN LICENSE",
28
20
  "dependencies": {
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"
21
+ "zod": "^3.22.0",
22
+ "@bernierllc/chat-ai-router": "1.2.3",
23
+ "@bernierllc/chat-analytics": "1.2.2",
24
+ "@bernierllc/chatkit-adapter": "1.2.3",
25
+ "@bernierllc/neverhub-adapter": "0.1.6"
34
26
  },
35
27
  "peerDependenciesMeta": {
36
28
  "@bernierllc/chat-integration-slack": {
@@ -63,5 +55,12 @@
63
55
  "access": "public",
64
56
  "registry": "https://registry.npmjs.org/"
65
57
  },
66
- "gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
67
- }
58
+ "scripts": {
59
+ "build": "tsc",
60
+ "test": "jest --watch",
61
+ "test:run": "jest --passWithNoTests",
62
+ "test:coverage": "jest --coverage --passWithNoTests",
63
+ "lint": "eslint src/**/*.ts",
64
+ "clean": "rm -rf dist"
65
+ }
66
+ }