[PR #64] [MERGED] Feat/store #67

Closed
opened 2026-02-27 10:25:48 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mimamch/wa-multi-session/pull/64
Author: @mimamch
Created: 12/14/2025
Status: Merged
Merged: 12/14/2025
Merged by: @mimamch

Base: masterHead: feat/store


📝 Commits (10+)

  • 58693b8 fix(store): refactor session management to use SQLiteStore and improve session handling
  • e98c2b7 fix: update session handling to use sock for message and presence updates
  • 7aecb5e feat(whatsapp): create new flow of whatsapp initialization
  • 0796293 4.1.3-beta.0
  • 9e3b501 fix: update repository URL format in package.json
  • 998fdcd feat(whatsapp): add isExist method to check if user or group exists
  • 37b928d 4.1.3-beta.1
  • 650ce8f feat(message): add support for @lid target
  • bd8cc62 chore: upgrading version into 4.1.3
  • e6dc556 feat(readme): update examples and initialization for improved clarity and functionality

📊 Changes

24 files changed (+995 additions, -2202 deletions)

View changed files

📝 package-lock.json (+2 -2)
📝 package.json (+2 -2)
pnpm-lock.yaml (+0 -2067)
📝 readme.md (+82 -85)
src/Adapter/Adapter.ts (+29 -0)
src/Adapter/SqliteAdapter.ts (+105 -0)
src/Adapter/index.ts (+2 -0)
📝 src/Defaults/index.ts (+8 -2)
📝 src/Messaging/index.ts (+9 -9)
📝 src/Profile/index.ts (+2 -2)
📝 src/Socket/index.ts (+28 -29)
📝 src/Store/Sqlite.ts (+86 -0)
src/Store/Store.ts (+7 -0)
src/Store/index.ts (+2 -0)
src/Types/Store.ts (+13 -0)
src/Types/Whatsapp.ts (+19 -0)
📝 src/Types/index.ts (+7 -0)
📝 src/Utils/index.ts (+1 -0)
📝 src/Utils/is-exist.ts (+4 -2)
src/Utils/json-parser.ts (+17 -0)

...and 4 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mimamch/wa-multi-session/pull/64 **Author:** [@mimamch](https://github.com/mimamch) **Created:** 12/14/2025 **Status:** ✅ Merged **Merged:** 12/14/2025 **Merged by:** [@mimamch](https://github.com/mimamch) **Base:** `master` ← **Head:** `feat/store` --- ### 📝 Commits (10+) - [`58693b8`](https://github.com/mimamch/wa-multi-session/commit/58693b816d52ef7ed2839a597f5818da2d890cbc) fix(store): refactor session management to use SQLiteStore and improve session handling - [`e98c2b7`](https://github.com/mimamch/wa-multi-session/commit/e98c2b7f8fed947c5b7da5bf81103acefc5c401f) fix: update session handling to use sock for message and presence updates - [`7aecb5e`](https://github.com/mimamch/wa-multi-session/commit/7aecb5e9fb095e4f48552c00f803c92820a77762) feat(whatsapp): create new flow of whatsapp initialization - [`0796293`](https://github.com/mimamch/wa-multi-session/commit/0796293fb415bd40a6c57b60ec83f26a31d234ff) 4.1.3-beta.0 - [`9e3b501`](https://github.com/mimamch/wa-multi-session/commit/9e3b501947be50c48a877aa65f3dfcb2695f4959) fix: update repository URL format in package.json - [`998fdcd`](https://github.com/mimamch/wa-multi-session/commit/998fdcd4e0266c0ba1182aa12a2d91ea59ae2145) feat(whatsapp): add isExist method to check if user or group exists - [`37b928d`](https://github.com/mimamch/wa-multi-session/commit/37b928d7b81329a56b13ad8a24fcd3e05db8d104) 4.1.3-beta.1 - [`650ce8f`](https://github.com/mimamch/wa-multi-session/commit/650ce8f4ba058226d3130fa6e80fa0ff9a2b1bca) feat(message): add support for @lid target - [`bd8cc62`](https://github.com/mimamch/wa-multi-session/commit/bd8cc62122ee069b7db380b7227de2e74f8f5ecb) chore: upgrading version into 4.1.3 - [`e6dc556`](https://github.com/mimamch/wa-multi-session/commit/e6dc5564b069162c18d1855ad170a2439cecffdf) feat(readme): update examples and initialization for improved clarity and functionality ### 📊 Changes **24 files changed** (+995 additions, -2202 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+2 -2) ➖ `pnpm-lock.yaml` (+0 -2067) 📝 `readme.md` (+82 -85) ➕ `src/Adapter/Adapter.ts` (+29 -0) ➕ `src/Adapter/SqliteAdapter.ts` (+105 -0) ➕ `src/Adapter/index.ts` (+2 -0) 📝 `src/Defaults/index.ts` (+8 -2) 📝 `src/Messaging/index.ts` (+9 -9) 📝 `src/Profile/index.ts` (+2 -2) 📝 `src/Socket/index.ts` (+28 -29) 📝 `src/Store/Sqlite.ts` (+86 -0) ➕ `src/Store/Store.ts` (+7 -0) ➕ `src/Store/index.ts` (+2 -0) ➕ `src/Types/Store.ts` (+13 -0) ➕ `src/Types/Whatsapp.ts` (+19 -0) 📝 `src/Types/index.ts` (+7 -0) 📝 `src/Utils/index.ts` (+1 -0) 📝 `src/Utils/is-exist.ts` (+4 -2) ➕ `src/Utils/json-parser.ts` (+17 -0) _...and 4 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 10:25:48 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/wa-multi-session-mimamch#67
No description provided.