Add immutable param to add method and bump version (#3022)

This commit is contained in:
Saket Aryan
2025-06-24 05:03:35 +05:30
committed by GitHub
parent dc877fd3ba
commit b4b27f099e
4 changed files with 18 additions and 6 deletions

View File

@@ -25,6 +25,7 @@ export interface MemoryOptions {
output_format?: string | OutputFormat;
async_mode?: boolean;
filter_memories?: boolean;
immutable?: boolean;
}
export interface ProjectOptions {

View File

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