nexabase-console 2.1.1 → 2.1.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.
@@ -382,6 +382,8 @@ class NexaApp {
382
382
  this._closeFirestoreSSEIfIdle();
383
383
  }
384
384
  _notifySnapshotCallbacks(path, actionType, payload) {
385
+ if (!path || typeof path !== 'string')
386
+ return;
385
387
  Object.keys(this._snapshotCallbacks).forEach((cbKey) => {
386
388
  const parts = cbKey.split('_');
387
389
  const targetPath = parts.slice(2).join('_');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexabase-console",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "SDK Client resmi untuk NexaBase: Platform Sinkronisasi NoSQL, Realtime, File Storage, & Autentikasi Offline-First.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",