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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
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 {
|