@kb-labs/mind-entry 2.77.0 → 2.78.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/dist/index.d.ts +14 -14
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -237,15 +237,15 @@ declare const InitInputSchema: z.ZodObject<{
|
|
|
237
237
|
verbose: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
238
238
|
quiet: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
239
239
|
}, "strip", z.ZodTypeAny, {
|
|
240
|
-
force: boolean;
|
|
241
240
|
json: boolean;
|
|
241
|
+
force: boolean;
|
|
242
242
|
verbose: boolean;
|
|
243
243
|
quiet: boolean;
|
|
244
244
|
cwd?: string | undefined;
|
|
245
245
|
}, {
|
|
246
|
+
json?: boolean | undefined;
|
|
246
247
|
cwd?: string | undefined;
|
|
247
248
|
force?: boolean | undefined;
|
|
248
|
-
json?: boolean | undefined;
|
|
249
249
|
verbose?: boolean | undefined;
|
|
250
250
|
quiet?: boolean | undefined;
|
|
251
251
|
}>;
|
|
@@ -255,13 +255,13 @@ declare const InitOutputSchema: z.ZodObject<{
|
|
|
255
255
|
mindDir: z.ZodString;
|
|
256
256
|
cwd: z.ZodString;
|
|
257
257
|
}, "strip", z.ZodTypeAny, {
|
|
258
|
+
ok: boolean;
|
|
258
259
|
cwd: string;
|
|
259
260
|
mindDir: string;
|
|
260
|
-
ok: boolean;
|
|
261
261
|
}, {
|
|
262
|
+
ok: boolean;
|
|
262
263
|
cwd: string;
|
|
263
264
|
mindDir: string;
|
|
264
|
-
ok: boolean;
|
|
265
265
|
}>;
|
|
266
266
|
type InitOutput = z.infer<typeof InitOutputSchema>;
|
|
267
267
|
declare const UpdateInputSchema: z.ZodObject<{
|
|
@@ -279,8 +279,8 @@ declare const UpdateInputSchema: z.ZodObject<{
|
|
|
279
279
|
since?: string | undefined;
|
|
280
280
|
timeBudget?: number | undefined;
|
|
281
281
|
}, {
|
|
282
|
-
cwd?: string | undefined;
|
|
283
282
|
json?: boolean | undefined;
|
|
283
|
+
cwd?: string | undefined;
|
|
284
284
|
verbose?: boolean | undefined;
|
|
285
285
|
quiet?: boolean | undefined;
|
|
286
286
|
since?: string | undefined;
|
|
@@ -315,9 +315,9 @@ declare const PackInputSchema: z.ZodObject<{
|
|
|
315
315
|
quiet: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
316
316
|
}, "strip", z.ZodTypeAny, {
|
|
317
317
|
json: boolean;
|
|
318
|
+
intent: string;
|
|
318
319
|
verbose: boolean;
|
|
319
320
|
quiet: boolean;
|
|
320
|
-
intent: string;
|
|
321
321
|
withBundle: boolean;
|
|
322
322
|
cwd?: string | undefined;
|
|
323
323
|
product?: string | undefined;
|
|
@@ -327,8 +327,8 @@ declare const PackInputSchema: z.ZodObject<{
|
|
|
327
327
|
seed?: number | undefined;
|
|
328
328
|
}, {
|
|
329
329
|
intent: string;
|
|
330
|
-
cwd?: string | undefined;
|
|
331
330
|
json?: boolean | undefined;
|
|
331
|
+
cwd?: string | undefined;
|
|
332
332
|
verbose?: boolean | undefined;
|
|
333
333
|
quiet?: boolean | undefined;
|
|
334
334
|
product?: string | undefined;
|
|
@@ -374,23 +374,23 @@ declare const FeedInputSchema: z.ZodObject<{
|
|
|
374
374
|
quiet: boolean;
|
|
375
375
|
withBundle: boolean;
|
|
376
376
|
noUpdate: boolean;
|
|
377
|
+
intent?: string | undefined;
|
|
377
378
|
cwd?: string | undefined;
|
|
378
379
|
since?: string | undefined;
|
|
379
380
|
timeBudget?: number | undefined;
|
|
380
|
-
intent?: string | undefined;
|
|
381
381
|
product?: string | undefined;
|
|
382
382
|
preset?: string | undefined;
|
|
383
383
|
budget?: number | undefined;
|
|
384
384
|
out?: string | undefined;
|
|
385
385
|
seed?: number | undefined;
|
|
386
386
|
}, {
|
|
387
|
-
cwd?: string | undefined;
|
|
388
387
|
json?: boolean | undefined;
|
|
388
|
+
intent?: string | undefined;
|
|
389
|
+
cwd?: string | undefined;
|
|
389
390
|
verbose?: boolean | undefined;
|
|
390
391
|
quiet?: boolean | undefined;
|
|
391
392
|
since?: string | undefined;
|
|
392
393
|
timeBudget?: number | undefined;
|
|
393
|
-
intent?: string | undefined;
|
|
394
394
|
product?: string | undefined;
|
|
395
395
|
preset?: string | undefined;
|
|
396
396
|
budget?: number | undefined;
|
|
@@ -453,8 +453,8 @@ declare const QueryInputSchema: z.ZodObject<{
|
|
|
453
453
|
toon: boolean;
|
|
454
454
|
toonSidecar: boolean;
|
|
455
455
|
compact: boolean;
|
|
456
|
-
cwd?: string | undefined;
|
|
457
456
|
scope?: string | undefined;
|
|
457
|
+
cwd?: string | undefined;
|
|
458
458
|
path?: string | undefined;
|
|
459
459
|
type?: string | undefined;
|
|
460
460
|
filter?: string | undefined;
|
|
@@ -463,9 +463,9 @@ declare const QueryInputSchema: z.ZodObject<{
|
|
|
463
463
|
tag?: string | undefined;
|
|
464
464
|
}, {
|
|
465
465
|
query: "scope" | "meta" | "impact" | "exports" | "externals" | "chain" | "docs";
|
|
466
|
-
cwd?: string | undefined;
|
|
467
|
-
scope?: string | undefined;
|
|
468
466
|
json?: boolean | undefined;
|
|
467
|
+
scope?: string | undefined;
|
|
468
|
+
cwd?: string | undefined;
|
|
469
469
|
quiet?: boolean | undefined;
|
|
470
470
|
path?: string | undefined;
|
|
471
471
|
type?: string | undefined;
|
|
@@ -511,8 +511,8 @@ declare const VerifyInputSchema: z.ZodObject<{
|
|
|
511
511
|
quiet: boolean;
|
|
512
512
|
cwd?: string | undefined;
|
|
513
513
|
}, {
|
|
514
|
-
cwd?: string | undefined;
|
|
515
514
|
json?: boolean | undefined;
|
|
515
|
+
cwd?: string | undefined;
|
|
516
516
|
quiet?: boolean | undefined;
|
|
517
517
|
}>;
|
|
518
518
|
type VerifyInput = z.infer<typeof VerifyInputSchema>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/mind-entry",
|
|
3
3
|
"description": "CLI commands for KB Labs Mind",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.78.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"react": "^19.0.0",
|
|
23
23
|
"zod": "^3.25.76",
|
|
24
|
-
"@kb-labs/mind-
|
|
25
|
-
"@kb-labs/mind-
|
|
26
|
-
"@kb-labs/mind-
|
|
27
|
-
"@kb-labs/
|
|
28
|
-
"@kb-labs/
|
|
29
|
-
"@kb-labs/mind-core": "2.77.0",
|
|
24
|
+
"@kb-labs/mind-core": "2.78.0",
|
|
25
|
+
"@kb-labs/mind-engine": "2.78.0",
|
|
26
|
+
"@kb-labs/mind-indexer": "2.78.0",
|
|
27
|
+
"@kb-labs/mind-types": "2.78.0",
|
|
28
|
+
"@kb-labs/plugin-contracts": "2.78.0",
|
|
30
29
|
"@kb-labs/sdk": "2.21.2",
|
|
31
|
-
"@kb-labs/mind-
|
|
30
|
+
"@kb-labs/mind-contracts": "2.78.0",
|
|
31
|
+
"@kb-labs/mind-orchestrator": "2.78.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^24.3.3",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsup": "^8.5.0",
|
|
38
38
|
"typescript": "^5.6.3",
|
|
39
39
|
"vitest": "^3.2.4",
|
|
40
|
-
"@kb-labs/devkit": "2.
|
|
40
|
+
"@kb-labs/devkit": "2.78.0"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=20.0.0",
|