@pyxmate/memory 0.29.1 → 0.31.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.
@@ -11,9 +11,9 @@ import {
11
11
  toGraphologyFormat,
12
12
  transformGraphData,
13
13
  unreachableHealth
14
- } from "./chunk-XPZ4DUON.mjs";
15
- import "./chunk-C5HKNVI5.mjs";
16
- import "./chunk-SSUYQJUI.mjs";
14
+ } from "./chunk-HXF7EXXP.mjs";
15
+ import "./chunk-27RJJTZH.mjs";
16
+ import "./chunk-I45LGUJR.mjs";
17
17
  export {
18
18
  DashboardClient,
19
19
  Poller,
package/dist/index.d.ts CHANGED
@@ -345,6 +345,14 @@ declare class MemoryClient implements ExtendedMemoryInterface {
345
345
  clearGraph(): Promise<number>;
346
346
  repairGraph(): Promise<GraphRepairResult$1>;
347
347
  deleteBySource(source: string): Promise<number>;
348
+ setFolder(from: string, to: string, options?: {
349
+ dryRun?: boolean;
350
+ }): Promise<{
351
+ from: string;
352
+ to: string;
353
+ updated: number;
354
+ dryRun: boolean;
355
+ }>;
348
356
  queryAsOf(asOfDate: string, filters?: TemporalQueryFilters): Promise<MemoryEntry$1[]>;
349
357
  log(filters?: MemoryLogFilters): Promise<MemoryEntry$1[]>;
350
358
  queryByEventTime(startTime: string, endTime: string, filters?: TemporalQueryFilters): Promise<MemoryEntry$1[]>;
@@ -973,6 +981,16 @@ interface IngestProgressEvent {
973
981
  filename?: string;
974
982
  chunksStored?: number;
975
983
  totalCharacters?: number;
984
+ /**
985
+ * Enrichment-stage denominator + numerator for the image-describe phase.
986
+ * The SDK knows the total image count before fanning out describeImage, so
987
+ * unlike `chunksStored` (a streamed count with no in-flight total) these let a
988
+ * consumer render a REAL percentage for the slowest stage ("image 7/8").
989
+ * Present only on enrichment-stage events emitted during/after image describe;
990
+ * absent for storing/parsing (whose totals are not known mid-stream).
991
+ */
992
+ imagesTotal?: number;
993
+ imagesDescribed?: number;
976
994
  message?: string;
977
995
  }
978
996
  /** Keepalive emitted while a stage is doing slow work (LLM, graph batch, etc). */
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  MemoryClient,
3
3
  MemoryServerError
4
- } from "./chunk-C5HKNVI5.mjs";
4
+ } from "./chunk-27RJJTZH.mjs";
5
5
  import {
6
6
  DEFAULTS,
7
7
  DEPRECATED_RAG_STRATEGIES,
@@ -15,7 +15,7 @@ import {
15
15
  StoreTarget,
16
16
  VectorProvider,
17
17
  mergeExtractedEntities
18
- } from "./chunk-SSUYQJUI.mjs";
18
+ } from "./chunk-I45LGUJR.mjs";
19
19
  export {
20
20
  DEFAULTS,
21
21
  DEPRECATED_RAG_STRATEGIES,
package/dist/react.mjs CHANGED
@@ -11,9 +11,9 @@ import {
11
11
  toGraphologyFormat,
12
12
  transformGraphData,
13
13
  unreachableHealth
14
- } from "./chunk-XPZ4DUON.mjs";
15
- import "./chunk-C5HKNVI5.mjs";
16
- import "./chunk-SSUYQJUI.mjs";
14
+ } from "./chunk-HXF7EXXP.mjs";
15
+ import "./chunk-27RJJTZH.mjs";
16
+ import "./chunk-I45LGUJR.mjs";
17
17
 
18
18
  // ../dashboard/src/hooks/use-consolidation-log.ts
19
19
  import { useCallback as useCallback2, useMemo } from "react";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyxmate/memory",
3
- "version": "0.29.1",
3
+ "version": "0.31.0",
4
4
  "type": "module",
5
5
  "description": "SDK for pyx-memory — Memory as a Service for AI agents",
6
6
  "license": "MIT",
@@ -57,7 +57,8 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@modelcontextprotocol/sdk": "^1.29.0",
60
- "@napi-rs/keyring": "^1.3.0"
60
+ "@napi-rs/keyring": "^1.3.0",
61
+ "zod": "4.3.6"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@pyx-memory/shared": "workspace:*",