Add structured_data_schema to MemoryOptions interface (#3125)

This commit is contained in:
Saket Aryan
2025-07-08 22:37:44 +05:30
committed by GitHub
parent 0f5612b96d
commit ec9b0688d8
4 changed files with 8 additions and 2 deletions

View File

@@ -31,6 +31,7 @@ export interface MemoryOptions {
async_mode?: boolean;
filter_memories?: boolean;
immutable?: boolean;
structured_data_schema?: Record<string, any>;
}
export interface ProjectOptions {

View File

@@ -1,7 +1,7 @@
// @ts-nocheck
import type { TelemetryClient, TelemetryOptions } from "./telemetry.types";
let version = "2.1.35";
let version = "2.1.36";
// Safely check for process.env in different environments
let MEM0_TELEMETRY = true;