@memnexus-ai/sdk 1.59.4 → 1.59.5

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.cjs CHANGED
@@ -1353,7 +1353,12 @@ var Memories = class {
1353
1353
  *
1354
1354
  * Same as POST /api/memories/digest but uses Server-Sent Events (SSE) to stream
1355
1355
  * the response. Sends `: heartbeat` comments every 10 seconds during processing
1356
- * to prevent gateway read-timeout (default 60s) from killing long-running digests.
1356
+ * to keep long-running digests alive across gateway and client idle timeouts. The
1357
+ * effective dev gateway budget is the ingress proxy-read-timeout (600s in dev per
1358
+ * api-gateway/k8s/deploy/values-dev.yaml, which overrides the platform-infra 60s
1359
+ * default). kong.yaml declares a 60s read_timeout but it was empirically
1360
+ * non-binding in dev as of 2026-07-06 (a 104.8s digest returned 200). Heartbeats
1361
+ * remain useful for client-side/UX idle-timeout behavior regardless.
1357
1362
  *
1358
1363
  * **Event sequence:**
1359
1364
  * - `: heartbeat` — keep-alive comment, sent every 10s during processing
package/dist/index.d.cts CHANGED
@@ -2773,7 +2773,12 @@ declare class Memories {
2773
2773
  *
2774
2774
  * Same as POST /api/memories/digest but uses Server-Sent Events (SSE) to stream
2775
2775
  * the response. Sends `: heartbeat` comments every 10 seconds during processing
2776
- * to prevent gateway read-timeout (default 60s) from killing long-running digests.
2776
+ * to keep long-running digests alive across gateway and client idle timeouts. The
2777
+ * effective dev gateway budget is the ingress proxy-read-timeout (600s in dev per
2778
+ * api-gateway/k8s/deploy/values-dev.yaml, which overrides the platform-infra 60s
2779
+ * default). kong.yaml declares a 60s read_timeout but it was empirically
2780
+ * non-binding in dev as of 2026-07-06 (a 104.8s digest returned 200). Heartbeats
2781
+ * remain useful for client-side/UX idle-timeout behavior regardless.
2777
2782
  *
2778
2783
  * **Event sequence:**
2779
2784
  * - `: heartbeat` — keep-alive comment, sent every 10s during processing
package/dist/index.d.ts CHANGED
@@ -2773,7 +2773,12 @@ declare class Memories {
2773
2773
  *
2774
2774
  * Same as POST /api/memories/digest but uses Server-Sent Events (SSE) to stream
2775
2775
  * the response. Sends `: heartbeat` comments every 10 seconds during processing
2776
- * to prevent gateway read-timeout (default 60s) from killing long-running digests.
2776
+ * to keep long-running digests alive across gateway and client idle timeouts. The
2777
+ * effective dev gateway budget is the ingress proxy-read-timeout (600s in dev per
2778
+ * api-gateway/k8s/deploy/values-dev.yaml, which overrides the platform-infra 60s
2779
+ * default). kong.yaml declares a 60s read_timeout but it was empirically
2780
+ * non-binding in dev as of 2026-07-06 (a 104.8s digest returned 200). Heartbeats
2781
+ * remain useful for client-side/UX idle-timeout behavior regardless.
2777
2782
  *
2778
2783
  * **Event sequence:**
2779
2784
  * - `: heartbeat` — keep-alive comment, sent every 10s during processing
package/dist/index.js CHANGED
@@ -1326,7 +1326,12 @@ var Memories = class {
1326
1326
  *
1327
1327
  * Same as POST /api/memories/digest but uses Server-Sent Events (SSE) to stream
1328
1328
  * the response. Sends `: heartbeat` comments every 10 seconds during processing
1329
- * to prevent gateway read-timeout (default 60s) from killing long-running digests.
1329
+ * to keep long-running digests alive across gateway and client idle timeouts. The
1330
+ * effective dev gateway budget is the ingress proxy-read-timeout (600s in dev per
1331
+ * api-gateway/k8s/deploy/values-dev.yaml, which overrides the platform-infra 60s
1332
+ * default). kong.yaml declares a 60s read_timeout but it was empirically
1333
+ * non-binding in dev as of 2026-07-06 (a 104.8s digest returned 200). Heartbeats
1334
+ * remain useful for client-side/UX idle-timeout behavior regardless.
1330
1335
  *
1331
1336
  * **Event sequence:**
1332
1337
  * - `: heartbeat` — keep-alive comment, sent every 10s during processing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memnexus-ai/sdk",
3
- "version": "1.59.4",
3
+ "version": "1.59.5",
4
4
  "description": "Official Node.js SDK for the MemNexus API",
5
5
  "license": "Proprietary",
6
6
  "type": "module",