bluera-knowledge 0.22.9 → 0.23.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 +15 -0
- package/dist/{chunk-SWKTPUDN.js → chunk-2Y4MVWYI.js} +7 -2
- package/dist/chunk-2Y4MVWYI.js.map +1 -0
- package/dist/{chunk-CCRKTT7E.js → chunk-KNEYWLB7.js} +22 -4
- package/dist/chunk-KNEYWLB7.js.map +1 -0
- package/dist/{chunk-S5D7DLRM.js → chunk-PQJTGGJI.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/mcp/server.js +2 -2
- package/dist/workers/background-worker-cli.js +15 -5
- package/dist/workers/background-worker-cli.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-CCRKTT7E.js.map +0 -1
- package/dist/chunk-SWKTPUDN.js.map +0 -1
- /package/dist/{chunk-S5D7DLRM.js.map → chunk-PQJTGGJI.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.23.0](https://github.com/blueraai/bluera-knowledge/compare/v0.22.4...v0.23.0) (2026-02-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **jobs:** add phase tracking with step numbers ([b8a7058](https://github.com/blueraai/bluera-knowledge/commit/b8a7058c879da2a29435459260892eb245f784b2))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** make tree-sitter optional for Node.js v24 compatibility ([acd6618](https://github.com/blueraai/bluera-knowledge/commit/acd66185813b4841a4c0abdd2edce10db9e08fef))
|
|
16
|
+
* **mcp:** use latest cached version instead of first found ([7943c05](https://github.com/blueraai/bluera-knowledge/commit/7943c0529fb8f36bea00f73233017eee17c733cb))
|
|
17
|
+
* **setup:** add --legacy-peer-deps to resolve tree-sitter peer conflict ([9b0b101](https://github.com/blueraai/bluera-knowledge/commit/9b0b1014e9ec0cec90c63a6a4cfdd81533248b2b))
|
|
18
|
+
* **store:** reload registry when modified by external process ([b08a668](https://github.com/blueraai/bluera-knowledge/commit/b08a6680d2fcffc0309ea38e1f9938f9f654c801))
|
|
19
|
+
|
|
5
20
|
## [0.22.9](https://github.com/blueraai/bluera-knowledge/compare/v0.22.4...v0.22.9) (2026-02-01)
|
|
6
21
|
|
|
7
22
|
|
|
@@ -341,6 +341,7 @@ import path from "path";
|
|
|
341
341
|
import { z } from "zod";
|
|
342
342
|
var JobTypeSchema = z.enum(["clone", "index", "crawl"]);
|
|
343
343
|
var JobStatusSchema = z.enum(["pending", "running", "completed", "failed", "cancelled"]);
|
|
344
|
+
var JobPhaseSchema = z.enum(["cloning", "crawling", "indexing"]);
|
|
344
345
|
var JobDetailsSchema = z.object({
|
|
345
346
|
storeName: z.string().optional(),
|
|
346
347
|
storeId: z.string().optional(),
|
|
@@ -358,7 +359,11 @@ var JobDetailsSchema = z.object({
|
|
|
358
359
|
maxPages: z.number().optional(),
|
|
359
360
|
simple: z.boolean().optional(),
|
|
360
361
|
useHeadless: z.boolean().optional(),
|
|
361
|
-
pagesCrawled: z.number().optional()
|
|
362
|
+
pagesCrawled: z.number().optional(),
|
|
363
|
+
// Phase tracking
|
|
364
|
+
phase: JobPhaseSchema.optional(),
|
|
365
|
+
phaseStep: z.number().min(1).max(2).optional(),
|
|
366
|
+
phaseTotalSteps: z.number().min(1).max(2).optional()
|
|
362
367
|
});
|
|
363
368
|
var JobSchema = z.object({
|
|
364
369
|
id: z.string(),
|
|
@@ -6243,4 +6248,4 @@ export {
|
|
|
6243
6248
|
createServices,
|
|
6244
6249
|
destroyServices
|
|
6245
6250
|
};
|
|
6246
|
-
//# sourceMappingURL=chunk-
|
|
6251
|
+
//# sourceMappingURL=chunk-2Y4MVWYI.js.map
|