@pyxmate/memory 1.1.1 → 1.1.2

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.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  MemoryClient
3
- } from "./chunk-U3U4MHWS.mjs";
3
+ } from "./chunk-3SDKJ5TB.mjs";
4
4
 
5
5
  // ../dashboard/src/aggregations/consolidation-analytics.ts
6
6
  function analyzeConsolidationLog(entries) {
@@ -412,7 +412,7 @@ var MemoryClient = class {
412
412
  ),
413
413
  signal
414
414
  );
415
- descriptions.push(...batchResults);
415
+ descriptions.push(...batchResults.filter((d) => d.description.trim().length > 0));
416
416
  yield {
417
417
  schemaVersion: 1,
418
418
  type: "progress",
@@ -611,7 +611,7 @@ function createProxyServer(client, version) {
611
611
  return server;
612
612
  }
613
613
  async function runMcpProxyServer(opts) {
614
- const version = opts.version ?? (true ? "1.1.1" : "0.0.0-dev");
614
+ const version = opts.version ?? (true ? "1.1.2" : "0.0.0-dev");
615
615
  const read = await opts.readCredentials();
616
616
  if (!read.ok) {
617
617
  const text = read.result.content.map((c) => c.type === "text" ? c.text : "").join(" ").trim();
@@ -1459,7 +1459,7 @@ var ALL_TOOL_NAMES = ALL_TOOLS.map((t) => t.name);
1459
1459
  // src/mcp/server.ts
1460
1460
  async function runMcpServer(opts) {
1461
1461
  const fetchImpl = opts.fetchImpl ?? fetch;
1462
- const version = opts.version ?? (true ? "1.1.1" : "0.0.0-dev");
1462
+ const version = opts.version ?? (true ? "1.1.2" : "0.0.0-dev");
1463
1463
  const server = new McpServer(
1464
1464
  { name: "pyx-memory", version },
1465
1465
  { instructions: PYX_MEMORY_INSTRUCTIONS, capabilities: { tools: {}, prompts: {} } }
@@ -11,8 +11,8 @@ import {
11
11
  toGraphologyFormat,
12
12
  transformGraphData,
13
13
  unreachableHealth
14
- } from "./chunk-ZILXBWWH.mjs";
15
- import "./chunk-U3U4MHWS.mjs";
14
+ } from "./chunk-3PBLTOBR.mjs";
15
+ import "./chunk-3SDKJ5TB.mjs";
16
16
  import "./chunk-X6AYWXW7.mjs";
17
17
  export {
18
18
  DashboardClient,
package/dist/index.mjs CHANGED
@@ -2,7 +2,7 @@ import {
2
2
  DisabledMemory,
3
3
  MemoryClient,
4
4
  MemoryServerError
5
- } from "./chunk-U3U4MHWS.mjs";
5
+ } from "./chunk-3SDKJ5TB.mjs";
6
6
  import {
7
7
  DEFAULTS,
8
8
  DEPRECATED_RAG_STRATEGIES,
package/dist/react.mjs CHANGED
@@ -11,8 +11,8 @@ import {
11
11
  toGraphologyFormat,
12
12
  transformGraphData,
13
13
  unreachableHealth
14
- } from "./chunk-ZILXBWWH.mjs";
15
- import "./chunk-U3U4MHWS.mjs";
14
+ } from "./chunk-3PBLTOBR.mjs";
15
+ import "./chunk-3SDKJ5TB.mjs";
16
16
  import "./chunk-X6AYWXW7.mjs";
17
17
 
18
18
  // ../dashboard/src/hooks/use-consolidation-log.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyxmate/memory",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "description": "SDK for pyx-memory — Memory as a Service for AI agents",
6
6
  "license": "MIT",