@oh-my-pi/pi-mnemopi 17.3.0 → 17.3.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-mnemopi",
4
- "version": "17.3.0",
4
+ "version": "17.3.2",
5
5
  "description": "Local SQLite memory engine for Oh My Pi agents",
6
6
  "homepage": "https://omp.sh",
7
7
  "author": "Can Boluk",
@@ -39,10 +39,10 @@
39
39
  "fmt": "biome format --write ."
40
40
  },
41
41
  "dependencies": {
42
- "@oh-my-pi/pi-ai": "17.3.0",
43
- "@oh-my-pi/pi-catalog": "17.3.0",
44
- "@oh-my-pi/pi-natives": "17.3.0",
45
- "@oh-my-pi/pi-utils": "17.3.0"
42
+ "@oh-my-pi/pi-ai": "17.3.2",
43
+ "@oh-my-pi/pi-catalog": "17.3.2",
44
+ "@oh-my-pi/pi-natives": "17.3.2",
45
+ "@oh-my-pi/pi-utils": "17.3.2"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "fastembed": "2.1.0",
@@ -396,6 +396,7 @@ export class Mnemopi {
396
396
  constructor(options: MnemopiOptions = {}) {
397
397
  this.sessionId = options.sessionId ?? options.session_id ?? "default";
398
398
  this.bank = options.bank ?? "default";
399
+
399
400
  this.authorId = options.authorId ?? options.author_id ?? null;
400
401
  this.authorType = options.authorType ?? options.author_type ?? null;
401
402
  this.channelId = options.channelId ?? options.channel_id ?? this.sessionId;