File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -409,6 +409,11 @@ mode: "wide"
409
409
410
410
<Tab title = " TypeScript" >
411
411
412
+ <Update label = " 2025-06-20" description = " v2.1.32" >
413
+ ** Improvement :**
414
+ - ** Client:** Made ` api_version ` V2 as default.
415
+ </Update >
416
+
412
417
<Update label = " 2025-06-17" description = " v2.1.31" >
413
418
** Improvement :**
414
419
- ** Client:** Added param ` filter_memories ` .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mem0ai" ,
3
- "version" : " 2.1.31 " ,
3
+ "version" : " 2.1.32 " ,
4
4
"description" : " The Memory Layer For Your AI Apps" ,
5
5
"main" : " ./dist/index.js" ,
6
6
"module" : " ./dist/index.mjs" ,
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ export default class MemoryClient {
229
229
}
230
230
231
231
if ( options . api_version ) {
232
- options . version = options . api_version . toString ( ) ;
232
+ options . version = options . api_version . toString ( ) || "v2" ;
233
233
}
234
234
235
235
const payload = this . _preparePayload ( messages , options ) ;
Original file line number Diff line number Diff line change 1
1
// @ts -nocheck
2
2
import type { TelemetryClient , TelemetryOptions } from "./telemetry.types" ;
3
3
4
- let version = "2.1.26 " ;
4
+ let version = "2.1.32 " ;
5
5
6
6
// Safely check for process.env in different environments
7
7
let MEM0_TELEMETRY = true ;
You can’t perform that action at this time.
0 commit comments