@auto-engineer/narrative 0.17.1 → 0.18.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +13 -1
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @auto-engineer/flow
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add middleware support
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies []:
|
|
12
|
+
- @auto-engineer/message-bus@0.18.0
|
|
13
|
+
- @auto-engineer/file-store@0.18.0
|
|
14
|
+
- @auto-engineer/id@0.18.0
|
|
15
|
+
|
|
3
16
|
## 0.17.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -894,7 +907,6 @@
|
|
|
894
907
|
### Patch Changes
|
|
895
908
|
|
|
896
909
|
- [`988ab04`](https://github.com/SamHatoum/auto-engineer/commit/988ab04530d41e116df9196434c0e57ff2ee11a8) Thanks [@SamHatoum](https://github.com/SamHatoum)! - Fix export:schema command and add comprehensive debug logging
|
|
897
|
-
|
|
898
910
|
- Fixed export-schema command to use npx tsx for TypeScript support
|
|
899
911
|
- Added proper JSON extraction from stdout to handle integration logs
|
|
900
912
|
- Resolved issue where export:schema produced empty schemas despite valid flow definitions
|
package/package.json
CHANGED
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"typescript": "^5.9.2",
|
|
24
24
|
"zod": "^3.22.4",
|
|
25
25
|
"zod-to-json-schema": "^3.22.3",
|
|
26
|
-
"@auto-engineer/file-store": "0.
|
|
27
|
-
"@auto-engineer/
|
|
28
|
-
"@auto-engineer/
|
|
26
|
+
"@auto-engineer/file-store": "0.18.0",
|
|
27
|
+
"@auto-engineer/id": "0.18.0",
|
|
28
|
+
"@auto-engineer/message-bus": "0.18.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^20.0.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"version": "0.
|
|
38
|
+
"version": "0.18.0",
|
|
39
39
|
"scripts": {
|
|
40
40
|
"build": "tsx scripts/build.ts",
|
|
41
41
|
"test": "vitest run --reporter=dot",
|