indexeddbshim 19.0.0 → 19.0.1

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.
@@ -1,4 +1,4 @@
1
- /*! indexeddbshim - v19.0.0 - 9/3/2026 */
1
+ /*! indexeddbshim - v19.0.1 - 9/3/2026 */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
@@ -8910,7 +8910,7 @@
8910
8910
  };
8911
8911
 
8912
8912
  /**
8913
- * @typedef {import('./Key.js').Value|IDBKeyRange} Query
8913
+ * @typedef {IDBValidKey|IDBKeyRange} Query
8914
8914
  */
8915
8915
 
8916
8916
  /**
@@ -9473,7 +9473,7 @@
9473
9473
  * error: (err: (Error & {code?: number})) => void
9474
9474
  * ) => void,
9475
9475
  * __get: (
9476
- * query: import('./Key.js').Value,
9476
+ * query: import('./IDBIndex.js').Query,
9477
9477
  * getKey?: boolean,
9478
9478
  * getAll?: boolean,
9479
9479
  * count?: Integer
@@ -10235,7 +10235,7 @@
10235
10235
 
10236
10236
  /**
10237
10237
  *
10238
- * @param {import('./Key.js').Value} query
10238
+ * @param {import('./IDBIndex.js').Query} query
10239
10239
  * @param {boolean} [getKey]
10240
10240
  * @this {IDBObjectStoreFull}
10241
10241
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -10287,7 +10287,7 @@
10287
10287
 
10288
10288
  /**
10289
10289
  *
10290
- * @param {import('./Key.js').Value} query
10290
+ * @param {import('./IDBIndex.js').Query} query
10291
10291
  * @throws {TypeError}
10292
10292
  * @this {IDBObjectStoreFull}
10293
10293
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -10301,7 +10301,7 @@
10301
10301
 
10302
10302
  /**
10303
10303
  *
10304
- * @param {import('./Key.js').Value} query
10304
+ * @param {import('./IDBIndex.js').Query} query
10305
10305
  * @this {IDBObjectStoreFull}
10306
10306
  * @returns {import('./IDBRequest.js').IDBRequestFull}
10307
10307
  */
@@ -10356,7 +10356,7 @@
10356
10356
 
10357
10357
  /**
10358
10358
  *
10359
- * @param {import('./Key.js').Value} query
10359
+ * @param {import('./IDBIndex.js').Query} query
10360
10360
  * @throws {TypeError}
10361
10361
  * @this {IDBObjectStoreFull}
10362
10362
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -13209,9 +13209,9 @@
13209
13209
  * The `{query, count, direction}` options shape shared by
13210
13210
  * `getAll`/`getAllKeys`/`getAllRecords`.
13211
13211
  * @typedef {{
13212
- * query?: import('./Key.js').Value,
13212
+ * query?: import('./IDBIndex.js').Query|null,
13213
13213
  * count?: Integer,
13214
- * direction?: string
13214
+ * direction?: IDBCursorDirection
13215
13215
  * }} GetAllOptions
13216
13216
  */
13217
13217
 
@@ -13384,7 +13384,7 @@
13384
13384
  * @param {unknown} options
13385
13385
  * @throws {TypeError}
13386
13386
  * @returns {{
13387
- * query: import('./Key.js').Value|undefined,
13387
+ * query: import('./IDBIndex.js').Query|null|undefined,
13388
13388
  * count: Integer|undefined,
13389
13389
  * direction: string
13390
13390
  * }}
@@ -13420,7 +13420,7 @@
13420
13420
  * @param {IArguments} args
13421
13421
  * @throws {TypeError}
13422
13422
  * @returns {{
13423
- * query: import('./Key.js').Value|undefined,
13423
+ * query: import('./IDBIndex.js').Query|null|undefined,
13424
13424
  * count: Integer|undefined,
13425
13425
  * direction: string
13426
13426
  * }}
@@ -13447,7 +13447,7 @@
13447
13447
  * @param {IArguments} args
13448
13448
  * @throws {TypeError}
13449
13449
  * @returns {{
13450
- * query: import('./Key.js').Value|undefined,
13450
+ * query: import('./IDBIndex.js').Query|null|undefined,
13451
13451
  * count: Integer|undefined,
13452
13452
  * direction: string
13453
13453
  * }}