@botonic/core 2.23.0 → 2.23.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/CHANGELOG.md +5 -1
- package/README.md +17 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
## 2.23.
|
|
1
|
+
## 2.23.2 (2026-03-23)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for @botonic/core to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 2.23.1 (2026-03-23)
|
|
2
6
|
|
|
3
7
|
This was a version bump only for @botonic/core to align it with other projects, there were no code changes.
|
|
4
8
|
|
package/README.md
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
|
-
# core
|
|
1
|
+
# @botonic/core
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Runtime and APIs for Botonic bots: actions, context, messaging, and integration hooks used by the **current** framework line.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Source and versions
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Packages under `@botonic/*` come from **two** maintained **source lines**:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
| Line | npm | Source |
|
|
10
|
+
| ----------- | ---------------------------------------------------- | ---------------------------------------------------------------- |
|
|
11
|
+
| **Legacy** | `0.x` (pin a version or your team’s legacy dist-tag) | [github.com/hubtype/botonic](https://github.com/hubtype/botonic) |
|
|
12
|
+
| **Current** | `2.x` (this release train) | Hubtype internal monorepo (not public; packages publish to npm) |
|
|
10
13
|
|
|
11
|
-
|
|
14
|
+
Keep all `@botonic/*` dependencies on the **same major version** as your bot. See **Hubtype’s Botonic documentation** for guides on this line.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pnpm add @botonic/core
|
|
20
|
+
# or
|
|
21
|
+
npm install @botonic/core
|
|
22
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botonic/core",
|
|
3
|
-
"version": "2.23.
|
|
3
|
+
"version": "2.23.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"module": "./src/index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@botonic/shared": "2.23.
|
|
14
|
+
"@botonic/shared": "2.23.2",
|
|
15
15
|
"tslib": "^2.3.0"
|
|
16
16
|
},
|
|
17
17
|
"references": [
|