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 (factory) {
4
4
  typeof define === 'function' && define.amd ? define(factory) :
@@ -8902,7 +8902,7 @@
8902
8902
  };
8903
8903
 
8904
8904
  /**
8905
- * @typedef {import('./Key.js').Value|IDBKeyRange} Query
8905
+ * @typedef {IDBValidKey|IDBKeyRange} Query
8906
8906
  */
8907
8907
 
8908
8908
  /**
@@ -9465,7 +9465,7 @@
9465
9465
  * error: (err: (Error & {code?: number})) => void
9466
9466
  * ) => void,
9467
9467
  * __get: (
9468
- * query: import('./Key.js').Value,
9468
+ * query: import('./IDBIndex.js').Query,
9469
9469
  * getKey?: boolean,
9470
9470
  * getAll?: boolean,
9471
9471
  * count?: Integer
@@ -10227,7 +10227,7 @@
10227
10227
 
10228
10228
  /**
10229
10229
  *
10230
- * @param {import('./Key.js').Value} query
10230
+ * @param {import('./IDBIndex.js').Query} query
10231
10231
  * @param {boolean} [getKey]
10232
10232
  * @this {IDBObjectStoreFull}
10233
10233
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -10279,7 +10279,7 @@
10279
10279
 
10280
10280
  /**
10281
10281
  *
10282
- * @param {import('./Key.js').Value} query
10282
+ * @param {import('./IDBIndex.js').Query} query
10283
10283
  * @throws {TypeError}
10284
10284
  * @this {IDBObjectStoreFull}
10285
10285
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -10293,7 +10293,7 @@
10293
10293
 
10294
10294
  /**
10295
10295
  *
10296
- * @param {import('./Key.js').Value} query
10296
+ * @param {import('./IDBIndex.js').Query} query
10297
10297
  * @this {IDBObjectStoreFull}
10298
10298
  * @returns {import('./IDBRequest.js').IDBRequestFull}
10299
10299
  */
@@ -10348,7 +10348,7 @@
10348
10348
 
10349
10349
  /**
10350
10350
  *
10351
- * @param {import('./Key.js').Value} query
10351
+ * @param {import('./IDBIndex.js').Query} query
10352
10352
  * @throws {TypeError}
10353
10353
  * @this {IDBObjectStoreFull}
10354
10354
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -13201,9 +13201,9 @@
13201
13201
  * The `{query, count, direction}` options shape shared by
13202
13202
  * `getAll`/`getAllKeys`/`getAllRecords`.
13203
13203
  * @typedef {{
13204
- * query?: import('./Key.js').Value,
13204
+ * query?: import('./IDBIndex.js').Query|null,
13205
13205
  * count?: Integer,
13206
- * direction?: string
13206
+ * direction?: IDBCursorDirection
13207
13207
  * }} GetAllOptions
13208
13208
  */
13209
13209
 
@@ -13376,7 +13376,7 @@
13376
13376
  * @param {unknown} options
13377
13377
  * @throws {TypeError}
13378
13378
  * @returns {{
13379
- * query: import('./Key.js').Value|undefined,
13379
+ * query: import('./IDBIndex.js').Query|null|undefined,
13380
13380
  * count: Integer|undefined,
13381
13381
  * direction: string
13382
13382
  * }}
@@ -13412,7 +13412,7 @@
13412
13412
  * @param {IArguments} args
13413
13413
  * @throws {TypeError}
13414
13414
  * @returns {{
13415
- * query: import('./Key.js').Value|undefined,
13415
+ * query: import('./IDBIndex.js').Query|null|undefined,
13416
13416
  * count: Integer|undefined,
13417
13417
  * direction: string
13418
13418
  * }}
@@ -13439,7 +13439,7 @@
13439
13439
  * @param {IArguments} args
13440
13440
  * @throws {TypeError}
13441
13441
  * @returns {{
13442
- * query: import('./Key.js').Value|undefined,
13442
+ * query: import('./IDBIndex.js').Query|null|undefined,
13443
13443
  * count: Integer|undefined,
13444
13444
  * direction: string
13445
13445
  * }}