@fortemi/core 2026.6.5 → 2026.6.6
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 +23 -23
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2274,19 +2274,19 @@ declare const CaptureKnowledgeInputSchema: z.ZodObject<{
|
|
|
2274
2274
|
}, {
|
|
2275
2275
|
content: string;
|
|
2276
2276
|
title?: string | undefined;
|
|
2277
|
-
format?: "markdown" | "plain" | "html" | undefined;
|
|
2278
2277
|
tags?: string[] | undefined;
|
|
2278
|
+
format?: "markdown" | "plain" | "html" | undefined;
|
|
2279
2279
|
}>, "many">>;
|
|
2280
2280
|
template: z.ZodOptional<z.ZodString>;
|
|
2281
2281
|
variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2282
2282
|
}, "strip", z.ZodTypeAny, {
|
|
2283
2283
|
source: string;
|
|
2284
2284
|
format: "markdown" | "plain" | "html";
|
|
2285
|
-
visibility: "private" | "
|
|
2285
|
+
visibility: "private" | "public" | "shared";
|
|
2286
2286
|
action: "create" | "bulk_create" | "from_template";
|
|
2287
2287
|
title?: string | undefined;
|
|
2288
|
-
archive_id?: string | undefined;
|
|
2289
2288
|
tags?: string[] | undefined;
|
|
2289
|
+
archive_id?: string | undefined;
|
|
2290
2290
|
content?: string | undefined;
|
|
2291
2291
|
notes?: {
|
|
2292
2292
|
format: "markdown" | "plain" | "html";
|
|
@@ -2300,16 +2300,16 @@ declare const CaptureKnowledgeInputSchema: z.ZodObject<{
|
|
|
2300
2300
|
action: "create" | "bulk_create" | "from_template";
|
|
2301
2301
|
source?: string | undefined;
|
|
2302
2302
|
title?: string | undefined;
|
|
2303
|
+
tags?: string[] | undefined;
|
|
2303
2304
|
archive_id?: string | undefined;
|
|
2304
2305
|
format?: "markdown" | "plain" | "html" | undefined;
|
|
2305
|
-
visibility?: "private" | "
|
|
2306
|
-
tags?: string[] | undefined;
|
|
2306
|
+
visibility?: "private" | "public" | "shared" | undefined;
|
|
2307
2307
|
content?: string | undefined;
|
|
2308
2308
|
notes?: {
|
|
2309
2309
|
content: string;
|
|
2310
2310
|
title?: string | undefined;
|
|
2311
|
-
format?: "markdown" | "plain" | "html" | undefined;
|
|
2312
2311
|
tags?: string[] | undefined;
|
|
2312
|
+
format?: "markdown" | "plain" | "html" | undefined;
|
|
2313
2313
|
}[] | undefined;
|
|
2314
2314
|
template?: string | undefined;
|
|
2315
2315
|
variables?: Record<string, string> | undefined;
|
|
@@ -2354,30 +2354,30 @@ declare const SearchInputSchema: z.ZodObject<{
|
|
|
2354
2354
|
visibility: z.ZodOptional<z.ZodEnum<["private", "shared", "public"]>>;
|
|
2355
2355
|
include_facets: z.ZodDefault<z.ZodBoolean>;
|
|
2356
2356
|
}, "strip", z.ZodTypeAny, {
|
|
2357
|
-
|
|
2357
|
+
query: string;
|
|
2358
2358
|
offset: number;
|
|
2359
|
+
limit: number;
|
|
2359
2360
|
include_facets: boolean;
|
|
2360
2361
|
mode: "text" | "semantic" | "hybrid";
|
|
2361
|
-
query: string;
|
|
2362
2362
|
source?: string | undefined;
|
|
2363
|
+
tags?: string[] | undefined;
|
|
2363
2364
|
format?: "markdown" | "plain" | "html" | undefined;
|
|
2364
|
-
visibility?: "private" | "
|
|
2365
|
+
visibility?: "private" | "public" | "shared" | undefined;
|
|
2365
2366
|
is_starred?: boolean | undefined;
|
|
2366
2367
|
is_archived?: boolean | undefined;
|
|
2367
|
-
tags?: string[] | undefined;
|
|
2368
2368
|
collection_id?: string | undefined;
|
|
2369
2369
|
date_from?: Date | undefined;
|
|
2370
2370
|
date_to?: Date | undefined;
|
|
2371
2371
|
}, {
|
|
2372
2372
|
query: string;
|
|
2373
2373
|
source?: string | undefined;
|
|
2374
|
+
tags?: string[] | undefined;
|
|
2375
|
+
offset?: number | undefined;
|
|
2374
2376
|
format?: "markdown" | "plain" | "html" | undefined;
|
|
2375
|
-
visibility?: "private" | "
|
|
2377
|
+
visibility?: "private" | "public" | "shared" | undefined;
|
|
2376
2378
|
is_starred?: boolean | undefined;
|
|
2377
2379
|
is_archived?: boolean | undefined;
|
|
2378
|
-
tags?: string[] | undefined;
|
|
2379
2380
|
limit?: number | undefined;
|
|
2380
|
-
offset?: number | undefined;
|
|
2381
2381
|
collection_id?: string | undefined;
|
|
2382
2382
|
date_from?: Date | undefined;
|
|
2383
2383
|
date_to?: Date | undefined;
|
|
@@ -2460,22 +2460,22 @@ declare const ListNotesInputSchema: z.ZodObject<{
|
|
|
2460
2460
|
collection_id: z.ZodOptional<z.ZodString>;
|
|
2461
2461
|
include_deleted: z.ZodOptional<z.ZodBoolean>;
|
|
2462
2462
|
}, "strip", z.ZodTypeAny, {
|
|
2463
|
-
sort: "
|
|
2464
|
-
limit: number;
|
|
2463
|
+
sort: "title" | "updated_at" | "created_at";
|
|
2465
2464
|
offset: number;
|
|
2465
|
+
limit: number;
|
|
2466
2466
|
order: "asc" | "desc";
|
|
2467
|
+
tags?: string[] | undefined;
|
|
2467
2468
|
is_starred?: boolean | undefined;
|
|
2468
2469
|
is_archived?: boolean | undefined;
|
|
2469
|
-
tags?: string[] | undefined;
|
|
2470
2470
|
include_deleted?: boolean | undefined;
|
|
2471
2471
|
collection_id?: string | undefined;
|
|
2472
2472
|
}, {
|
|
2473
|
-
|
|
2473
|
+
tags?: string[] | undefined;
|
|
2474
|
+
sort?: "title" | "updated_at" | "created_at" | undefined;
|
|
2475
|
+
offset?: number | undefined;
|
|
2474
2476
|
is_starred?: boolean | undefined;
|
|
2475
2477
|
is_archived?: boolean | undefined;
|
|
2476
|
-
tags?: string[] | undefined;
|
|
2477
2478
|
limit?: number | undefined;
|
|
2478
|
-
offset?: number | undefined;
|
|
2479
2479
|
order?: "asc" | "desc" | undefined;
|
|
2480
2480
|
include_deleted?: boolean | undefined;
|
|
2481
2481
|
collection_id?: string | undefined;
|
|
@@ -2489,12 +2489,12 @@ declare const ManageTagsInputSchema: z.ZodObject<{
|
|
|
2489
2489
|
tag: z.ZodOptional<z.ZodString>;
|
|
2490
2490
|
}, "strip", z.ZodTypeAny, {
|
|
2491
2491
|
action: "add" | "remove" | "list_for_note" | "list_all";
|
|
2492
|
-
note_id?: string | undefined;
|
|
2493
2492
|
tag?: string | undefined;
|
|
2493
|
+
note_id?: string | undefined;
|
|
2494
2494
|
}, {
|
|
2495
2495
|
action: "add" | "remove" | "list_for_note" | "list_all";
|
|
2496
|
-
note_id?: string | undefined;
|
|
2497
2496
|
tag?: string | undefined;
|
|
2497
|
+
note_id?: string | undefined;
|
|
2498
2498
|
}>;
|
|
2499
2499
|
type ManageTagsInput = z.infer<typeof ManageTagsInputSchema>;
|
|
2500
2500
|
interface ManageTagsResult {
|
|
@@ -2516,16 +2516,16 @@ declare const ManageCollectionsInputSchema: z.ZodObject<{
|
|
|
2516
2516
|
note_id: z.ZodOptional<z.ZodString>;
|
|
2517
2517
|
}, "strip", z.ZodTypeAny, {
|
|
2518
2518
|
action: "create" | "delete" | "list" | "assign" | "unassign" | "list_tree";
|
|
2519
|
+
name?: string | undefined;
|
|
2519
2520
|
collection_id?: string | undefined;
|
|
2520
2521
|
note_id?: string | undefined;
|
|
2521
|
-
name?: string | undefined;
|
|
2522
2522
|
description?: string | undefined;
|
|
2523
2523
|
parent_id?: string | undefined;
|
|
2524
2524
|
}, {
|
|
2525
2525
|
action: "create" | "delete" | "list" | "assign" | "unassign" | "list_tree";
|
|
2526
|
+
name?: string | undefined;
|
|
2526
2527
|
collection_id?: string | undefined;
|
|
2527
2528
|
note_id?: string | undefined;
|
|
2528
|
-
name?: string | undefined;
|
|
2529
2529
|
description?: string | undefined;
|
|
2530
2530
|
parent_id?: string | undefined;
|
|
2531
2531
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fortemi/core",
|
|
3
|
-
"version": "2026.6.
|
|
3
|
+
"version": "2026.6.6",
|
|
4
4
|
"description": "Browser-only knowledge management core: PGlite (PostgreSQL WASM) data layer, single-writer worker, MCP tools, job queue, capability system, SKOS taxonomy, hybrid search. 100% JSON format parity with the fortemi Rust server.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fortemi",
|