@majikah/majik-message 0.3.8 → 0.3.9

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.
@@ -2,7 +2,7 @@ import { MajikMessageChatJSON } from "../../database/chat/types";
2
2
  import { SQLiteDatabase } from "../sql-db-manager";
3
3
  import { StorageSource } from "../storage-adapter";
4
4
  import { MajikMessageChatStorageAdapter } from "./_types";
5
- export declare class SQLiteInvoiceAdapter implements MajikMessageChatStorageAdapter {
5
+ export declare class SQLiteMessageChatsAdapter implements MajikMessageChatStorageAdapter {
6
6
  private db;
7
7
  constructor(db: SQLiteDatabase);
8
8
  save(message: MajikMessageChatJSON, source?: StorageSource): Promise<void>;
@@ -1,5 +1,5 @@
1
1
  import { MAJIKAH_SQL_TABLES } from "../sql-schema";
2
- export class SQLiteInvoiceAdapter {
2
+ export class SQLiteMessageChatsAdapter {
3
3
  db;
4
4
  constructor(db) {
5
5
  this.db = db;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@majikah/majik-message",
3
3
  "type": "module",
4
4
  "description": "Post-quantum end-to-end encryption with ML-KEM-768. Seed phrase–based accounts. Auto-expiring messages. Offline-ready. Exportable encrypted messages. Tamper-proof threads with blockchain-like integrity. Quantum-resistant messaging.",
5
- "version": "0.3.8",
5
+ "version": "0.3.9",
6
6
  "license": "Apache-2.0",
7
7
  "author": "Zelijah",
8
8
  "main": "./dist/index.js",