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) :
@@ -8915,7 +8915,7 @@
8915
8915
  };
8916
8916
 
8917
8917
  /**
8918
- * @typedef {import('./Key.js').Value|IDBKeyRange} Query
8918
+ * @typedef {IDBValidKey|IDBKeyRange} Query
8919
8919
  */
8920
8920
 
8921
8921
  /**
@@ -9478,7 +9478,7 @@
9478
9478
  * error: (err: (Error & {code?: number})) => void
9479
9479
  * ) => void,
9480
9480
  * __get: (
9481
- * query: import('./Key.js').Value,
9481
+ * query: import('./IDBIndex.js').Query,
9482
9482
  * getKey?: boolean,
9483
9483
  * getAll?: boolean,
9484
9484
  * count?: Integer
@@ -10240,7 +10240,7 @@
10240
10240
 
10241
10241
  /**
10242
10242
  *
10243
- * @param {import('./Key.js').Value} query
10243
+ * @param {import('./IDBIndex.js').Query} query
10244
10244
  * @param {boolean} [getKey]
10245
10245
  * @this {IDBObjectStoreFull}
10246
10246
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -10292,7 +10292,7 @@
10292
10292
 
10293
10293
  /**
10294
10294
  *
10295
- * @param {import('./Key.js').Value} query
10295
+ * @param {import('./IDBIndex.js').Query} query
10296
10296
  * @throws {TypeError}
10297
10297
  * @this {IDBObjectStoreFull}
10298
10298
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -10306,7 +10306,7 @@
10306
10306
 
10307
10307
  /**
10308
10308
  *
10309
- * @param {import('./Key.js').Value} query
10309
+ * @param {import('./IDBIndex.js').Query} query
10310
10310
  * @this {IDBObjectStoreFull}
10311
10311
  * @returns {import('./IDBRequest.js').IDBRequestFull}
10312
10312
  */
@@ -10361,7 +10361,7 @@
10361
10361
 
10362
10362
  /**
10363
10363
  *
10364
- * @param {import('./Key.js').Value} query
10364
+ * @param {import('./IDBIndex.js').Query} query
10365
10365
  * @throws {TypeError}
10366
10366
  * @this {IDBObjectStoreFull}
10367
10367
  * @returns {import('./IDBRequest.js').IDBRequestFull}
@@ -13214,9 +13214,9 @@
13214
13214
  * The `{query, count, direction}` options shape shared by
13215
13215
  * `getAll`/`getAllKeys`/`getAllRecords`.
13216
13216
  * @typedef {{
13217
- * query?: import('./Key.js').Value,
13217
+ * query?: import('./IDBIndex.js').Query|null,
13218
13218
  * count?: Integer,
13219
- * direction?: string
13219
+ * direction?: IDBCursorDirection
13220
13220
  * }} GetAllOptions
13221
13221
  */
13222
13222
 
@@ -13389,7 +13389,7 @@
13389
13389
  * @param {unknown} options
13390
13390
  * @throws {TypeError}
13391
13391
  * @returns {{
13392
- * query: import('./Key.js').Value|undefined,
13392
+ * query: import('./IDBIndex.js').Query|null|undefined,
13393
13393
  * count: Integer|undefined,
13394
13394
  * direction: string
13395
13395
  * }}
@@ -13425,7 +13425,7 @@
13425
13425
  * @param {IArguments} args
13426
13426
  * @throws {TypeError}
13427
13427
  * @returns {{
13428
- * query: import('./Key.js').Value|undefined,
13428
+ * query: import('./IDBIndex.js').Query|null|undefined,
13429
13429
  * count: Integer|undefined,
13430
13430
  * direction: string
13431
13431
  * }}
@@ -13452,7 +13452,7 @@
13452
13452
  * @param {IArguments} args
13453
13453
  * @throws {TypeError}
13454
13454
  * @returns {{
13455
- * query: import('./Key.js').Value|undefined,
13455
+ * query: import('./IDBIndex.js').Query|null|undefined,
13456
13456
  * count: Integer|undefined,
13457
13457
  * direction: string
13458
13458
  * }}