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
  'use strict';
4
4
 
@@ -8120,7 +8120,7 @@ IDBIndex.__updateIndexList = function (store, tx, success, failure) {
8120
8120
  };
8121
8121
 
8122
8122
  /**
8123
- * @typedef {import('./Key.js').Value|IDBKeyRange} Query
8123
+ * @typedef {IDBValidKey|IDBKeyRange} Query
8124
8124
  */
8125
8125
 
8126
8126
  /**
@@ -8666,7 +8666,7 @@ const IDBObjectStoreAlias = IDBObjectStore;
8666
8666
  * error: (err: (Error & {code?: number})) => void
8667
8667
  * ) => void,
8668
8668
  * __get: (
8669
- * query: import('./Key.js').Value,
8669
+ * query: import('./IDBIndex.js').Query,
8670
8670
  * getKey?: boolean,
8671
8671
  * getAll?: boolean,
8672
8672
  * count?: Integer
@@ -9421,7 +9421,7 @@ IDBObjectStore.__storingRecordObjectStore = function (request, store, invalidate
9421
9421
 
9422
9422
  /**
9423
9423
  *
9424
- * @param {import('./Key.js').Value} query
9424
+ * @param {import('./IDBIndex.js').Query} query
9425
9425
  * @param {boolean} [getKey]
9426
9426
  * @this {IDBObjectStoreFull}
9427
9427
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -9473,7 +9473,7 @@ IDBObjectStore.prototype.__get = function (query, getKey) {
9473
9473
 
9474
9474
  /**
9475
9475
  *
9476
- * @param {import('./Key.js').Value} query
9476
+ * @param {import('./IDBIndex.js').Query} query
9477
9477
  * @throws {TypeError}
9478
9478
  * @this {IDBObjectStoreFull}
9479
9479
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -9487,7 +9487,7 @@ IDBObjectStore.prototype.get = function (query) {
9487
9487
 
9488
9488
  /**
9489
9489
  *
9490
- * @param {import('./Key.js').Value} query
9490
+ * @param {import('./IDBIndex.js').Query} query
9491
9491
  * @this {IDBObjectStoreFull}
9492
9492
  * @returns {import('./IDBRequest.js').IDBRequestFull}
9493
9493
  */
@@ -9545,7 +9545,7 @@ IDBObjectStore.prototype.getAllRecords = function /* options */
9545
9545
 
9546
9546
  /**
9547
9547
  *
9548
- * @param {import('./Key.js').Value} query
9548
+ * @param {import('./IDBIndex.js').Query} query
9549
9549
  * @throws {TypeError}
9550
9550
  * @this {IDBObjectStoreFull}
9551
9551
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -12376,9 +12376,9 @@ IDBCursor.prototype.advance = function (count) {
12376
12376
  * The `{query, count, direction}` options shape shared by
12377
12377
  * `getAll`/`getAllKeys`/`getAllRecords`.
12378
12378
  * @typedef {{
12379
- * query?: import('./Key.js').Value,
12379
+ * query?: import('./IDBIndex.js').Query|null,
12380
12380
  * count?: Integer,
12381
- * direction?: string
12381
+ * direction?: IDBCursorDirection
12382
12382
  * }} GetAllOptions
12383
12383
  */
12384
12384
 
@@ -12548,7 +12548,7 @@ Object.defineProperty(IDBCursorWithValue, 'prototype', {
12548
12548
  * @param {unknown} options
12549
12549
  * @throws {TypeError}
12550
12550
  * @returns {{
12551
- * query: import('./Key.js').Value|undefined,
12551
+ * query: import('./IDBIndex.js').Query|null|undefined,
12552
12552
  * count: Integer|undefined,
12553
12553
  * direction: string
12554
12554
  * }}
@@ -12584,7 +12584,7 @@ function normalizeGetAllOptions(options) {
12584
12584
  * @param {IArguments} args
12585
12585
  * @throws {TypeError}
12586
12586
  * @returns {{
12587
- * query: import('./Key.js').Value|undefined,
12587
+ * query: import('./IDBIndex.js').Query|null|undefined,
12588
12588
  * count: Integer|undefined,
12589
12589
  * direction: string
12590
12590
  * }}
@@ -12609,7 +12609,7 @@ function parseGetAllArgs(args) {
12609
12609
  * @param {IArguments} args
12610
12610
  * @throws {TypeError}
12611
12611
  * @returns {{
12612
- * query: import('./Key.js').Value|undefined,
12612
+ * query: import('./IDBIndex.js').Query|null|undefined,
12613
12613
  * count: Integer|undefined,
12614
12614
  * direction: string
12615
12615
  * }}