mem0ai 2.2.1 → 2.2.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.
package/dist/index.d.mts CHANGED
@@ -142,6 +142,13 @@ interface custom_categories {
142
142
  interface PromptUpdatePayload {
143
143
  custom_instructions?: string;
144
144
  custom_categories?: custom_categories[];
145
+ retrieval_criteria?: any[];
146
+ enable_graph?: boolean;
147
+ version?: string;
148
+ inclusion_prompt?: string;
149
+ exclusion_prompt?: string;
150
+ memory_depth?: string | null;
151
+ usecase_setting?: string | number;
145
152
  [key: string]: any;
146
153
  }
147
154
  declare enum WebhookEvent {
package/dist/index.d.ts CHANGED
@@ -142,6 +142,13 @@ interface custom_categories {
142
142
  interface PromptUpdatePayload {
143
143
  custom_instructions?: string;
144
144
  custom_categories?: custom_categories[];
145
+ retrieval_criteria?: any[];
146
+ enable_graph?: boolean;
147
+ version?: string;
148
+ inclusion_prompt?: string;
149
+ exclusion_prompt?: string;
150
+ memory_depth?: string | null;
151
+ usecase_setting?: string | number;
145
152
  [key: string]: any;
146
153
  }
147
154
  declare enum WebhookEvent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mem0ai",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "The Memory Layer For Your AI Apps",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",