@botonic/plugin-flow-builder 2.23.0 → 2.23.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/CHANGELOG.md +1 -1
- package/README.md +15 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
# botonic
|
|
1
|
+
# @botonic/plugin-flow-builder
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Source and versions
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
| Line | npm | Source |
|
|
8
|
+
| ----------- | ----- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
9
|
+
| **Legacy** | `0.x` | [github.com/hubtype/botonic](https://github.com/hubtype/botonic) |
|
|
10
|
+
| **Current** | `2.x` | [github.com/hubtype/hubtype-product](https://github.com/hubtype/hubtype-product) · [`libs/botonic/plugin-flow-builder`](https://github.com/hubtype/hubtype-product/tree/main/libs/botonic/plugin-flow-builder) |
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
Use the **same major version** as `@botonic/core`. Configuration details are covered in the Botonic documentation shipped from hubtype-product (`nx serve botonic-docs`).
|
|
10
13
|
|
|
11
|
-
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pnpm add @botonic/plugin-flow-builder
|
|
18
|
+
# or
|
|
19
|
+
npm install @botonic/plugin-flow-builder
|
|
20
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botonic/plugin-flow-builder",
|
|
3
|
-
"version": "2.23.
|
|
3
|
+
"version": "2.23.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"tslib": "^2.3.0",
|
|
9
9
|
"uuid": "^11.1.0",
|
|
10
10
|
"vitest": "^4.0.15",
|
|
11
|
-
"@botonic/shared": "2.23.
|
|
12
|
-
"@botonic/core": "2.23.
|
|
11
|
+
"@botonic/shared": "2.23.1",
|
|
12
|
+
"@botonic/core": "2.23.1"
|
|
13
13
|
},
|
|
14
14
|
"references": [
|
|
15
15
|
{
|