rads-db 0.1.104 → 0.1.105

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.
@@ -210,7 +210,7 @@ function getDb(options) {
210
210
  entities: {},
211
211
  driverOptions: {
212
212
  dbName,
213
- dexieOptions: {},
213
+ dexieOptions: void 0,
214
214
  invalidateCounter: 0,
215
215
  ...options
216
216
  }
@@ -174,6 +174,6 @@ function getDb(options) {
174
174
  const dbName = options?.dbName || "db";
175
175
  if (dbs[dbName]?.db)
176
176
  dbs[dbName].db?.close();
177
- dbs[dbName] = { entities: {}, driverOptions: { dbName, dexieOptions: {}, invalidateCounter: 0, ...options } };
177
+ dbs[dbName] = { entities: {}, driverOptions: { dbName, dexieOptions: void 0, invalidateCounter: 0, ...options } };
178
178
  return dbs[dbName];
179
179
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rads-db",
3
- "version": "0.1.104",
3
+ "version": "0.1.105",
4
4
  "files": [
5
5
  "dist",
6
6
  "drivers",