@fortemi/core 2026.6.8 → 2026.6.9

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +23 -23
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2364,19 +2364,19 @@ declare const CaptureKnowledgeInputSchema: z.ZodObject<{
2364
2364
  }, {
2365
2365
  content: string;
2366
2366
  title?: string | undefined;
2367
- tags?: string[] | undefined;
2368
2367
  format?: "markdown" | "plain" | "html" | undefined;
2368
+ tags?: string[] | undefined;
2369
2369
  }>, "many">>;
2370
2370
  template: z.ZodOptional<z.ZodString>;
2371
2371
  variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2372
2372
  }, "strip", z.ZodTypeAny, {
2373
2373
  source: string;
2374
2374
  format: "markdown" | "plain" | "html";
2375
- visibility: "private" | "public" | "shared";
2375
+ visibility: "private" | "shared" | "public";
2376
2376
  action: "create" | "bulk_create" | "from_template";
2377
2377
  title?: string | undefined;
2378
- tags?: string[] | undefined;
2379
2378
  archive_id?: string | undefined;
2379
+ tags?: string[] | undefined;
2380
2380
  content?: string | undefined;
2381
2381
  notes?: {
2382
2382
  format: "markdown" | "plain" | "html";
@@ -2390,16 +2390,16 @@ declare const CaptureKnowledgeInputSchema: z.ZodObject<{
2390
2390
  action: "create" | "bulk_create" | "from_template";
2391
2391
  source?: string | undefined;
2392
2392
  title?: string | undefined;
2393
- tags?: string[] | undefined;
2394
2393
  archive_id?: string | undefined;
2395
2394
  format?: "markdown" | "plain" | "html" | undefined;
2396
- visibility?: "private" | "public" | "shared" | undefined;
2395
+ visibility?: "private" | "shared" | "public" | undefined;
2396
+ tags?: string[] | undefined;
2397
2397
  content?: string | undefined;
2398
2398
  notes?: {
2399
2399
  content: string;
2400
2400
  title?: string | undefined;
2401
- tags?: string[] | undefined;
2402
2401
  format?: "markdown" | "plain" | "html" | undefined;
2402
+ tags?: string[] | undefined;
2403
2403
  }[] | undefined;
2404
2404
  template?: string | undefined;
2405
2405
  variables?: Record<string, string> | undefined;
@@ -2444,30 +2444,30 @@ declare const SearchInputSchema: z.ZodObject<{
2444
2444
  visibility: z.ZodOptional<z.ZodEnum<["private", "shared", "public"]>>;
2445
2445
  include_facets: z.ZodDefault<z.ZodBoolean>;
2446
2446
  }, "strip", z.ZodTypeAny, {
2447
- query: string;
2448
- offset: number;
2449
2447
  limit: number;
2448
+ offset: number;
2450
2449
  include_facets: boolean;
2451
2450
  mode: "text" | "semantic" | "hybrid";
2451
+ query: string;
2452
2452
  source?: string | undefined;
2453
- tags?: string[] | undefined;
2454
2453
  format?: "markdown" | "plain" | "html" | undefined;
2455
- visibility?: "private" | "public" | "shared" | undefined;
2454
+ visibility?: "private" | "shared" | "public" | undefined;
2456
2455
  is_starred?: boolean | undefined;
2457
2456
  is_archived?: boolean | undefined;
2457
+ tags?: string[] | undefined;
2458
2458
  collection_id?: string | undefined;
2459
2459
  date_from?: Date | undefined;
2460
2460
  date_to?: Date | undefined;
2461
2461
  }, {
2462
2462
  query: string;
2463
2463
  source?: string | undefined;
2464
- tags?: string[] | undefined;
2465
- offset?: number | undefined;
2466
2464
  format?: "markdown" | "plain" | "html" | undefined;
2467
- visibility?: "private" | "public" | "shared" | undefined;
2465
+ visibility?: "private" | "shared" | "public" | undefined;
2468
2466
  is_starred?: boolean | undefined;
2469
2467
  is_archived?: boolean | undefined;
2468
+ tags?: string[] | undefined;
2470
2469
  limit?: number | undefined;
2470
+ offset?: number | undefined;
2471
2471
  collection_id?: string | undefined;
2472
2472
  date_from?: Date | undefined;
2473
2473
  date_to?: Date | undefined;
@@ -2550,22 +2550,22 @@ declare const ListNotesInputSchema: z.ZodObject<{
2550
2550
  collection_id: z.ZodOptional<z.ZodString>;
2551
2551
  include_deleted: z.ZodOptional<z.ZodBoolean>;
2552
2552
  }, "strip", z.ZodTypeAny, {
2553
- sort: "title" | "updated_at" | "created_at";
2554
- offset: number;
2553
+ sort: "created_at" | "updated_at" | "title";
2555
2554
  limit: number;
2555
+ offset: number;
2556
2556
  order: "asc" | "desc";
2557
- tags?: string[] | undefined;
2558
2557
  is_starred?: boolean | undefined;
2559
2558
  is_archived?: boolean | undefined;
2559
+ tags?: string[] | undefined;
2560
2560
  include_deleted?: boolean | undefined;
2561
2561
  collection_id?: string | undefined;
2562
2562
  }, {
2563
- tags?: string[] | undefined;
2564
- sort?: "title" | "updated_at" | "created_at" | undefined;
2565
- offset?: number | undefined;
2563
+ sort?: "created_at" | "updated_at" | "title" | undefined;
2566
2564
  is_starred?: boolean | undefined;
2567
2565
  is_archived?: boolean | undefined;
2566
+ tags?: string[] | undefined;
2568
2567
  limit?: number | undefined;
2568
+ offset?: number | undefined;
2569
2569
  order?: "asc" | "desc" | undefined;
2570
2570
  include_deleted?: boolean | undefined;
2571
2571
  collection_id?: string | undefined;
@@ -2579,12 +2579,12 @@ declare const ManageTagsInputSchema: z.ZodObject<{
2579
2579
  tag: z.ZodOptional<z.ZodString>;
2580
2580
  }, "strip", z.ZodTypeAny, {
2581
2581
  action: "add" | "remove" | "list_for_note" | "list_all";
2582
- tag?: string | undefined;
2583
2582
  note_id?: string | undefined;
2583
+ tag?: string | undefined;
2584
2584
  }, {
2585
2585
  action: "add" | "remove" | "list_for_note" | "list_all";
2586
- tag?: string | undefined;
2587
2586
  note_id?: string | undefined;
2587
+ tag?: string | undefined;
2588
2588
  }>;
2589
2589
  type ManageTagsInput = z.infer<typeof ManageTagsInputSchema>;
2590
2590
  interface ManageTagsResult {
@@ -2606,16 +2606,16 @@ declare const ManageCollectionsInputSchema: z.ZodObject<{
2606
2606
  note_id: z.ZodOptional<z.ZodString>;
2607
2607
  }, "strip", z.ZodTypeAny, {
2608
2608
  action: "create" | "delete" | "list" | "assign" | "unassign" | "list_tree";
2609
- name?: string | undefined;
2610
2609
  collection_id?: string | undefined;
2611
2610
  note_id?: string | undefined;
2611
+ name?: string | undefined;
2612
2612
  description?: string | undefined;
2613
2613
  parent_id?: string | undefined;
2614
2614
  }, {
2615
2615
  action: "create" | "delete" | "list" | "assign" | "unassign" | "list_tree";
2616
- name?: string | undefined;
2617
2616
  collection_id?: string | undefined;
2618
2617
  note_id?: string | undefined;
2618
+ name?: string | undefined;
2619
2619
  description?: string | undefined;
2620
2620
  parent_id?: string | undefined;
2621
2621
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fortemi/core",
3
- "version": "2026.6.8",
3
+ "version": "2026.6.9",
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",