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.
- package/dist/IDBCursor.d.ts +8 -8
- package/dist/IDBCursor.d.ts.map +1 -1
- package/dist/IDBIndex.d.ts +2 -2
- package/dist/IDBIndex.d.ts.map +1 -1
- package/dist/IDBObjectStore.d.ts +10 -10
- package/dist/IDBObjectStore.d.ts.map +1 -1
- package/dist/indexeddbshim-Key.js +1 -1
- package/dist/indexeddbshim-Key.min.js +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers-node.cjs +12 -12
- package/dist/indexeddbshim-UnicodeIdentifiers-node.cjs.map +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.js +12 -12
- package/dist/indexeddbshim-UnicodeIdentifiers.js.map +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.min.js +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.min.js.map +1 -1
- package/dist/indexeddbshim-node.cjs +12 -12
- package/dist/indexeddbshim-node.cjs.map +1 -1
- package/dist/indexeddbshim-noninvasive.js +12 -12
- package/dist/indexeddbshim-noninvasive.js.map +1 -1
- package/dist/indexeddbshim-noninvasive.min.js +1 -1
- package/dist/indexeddbshim-noninvasive.min.js.map +1 -1
- package/dist/indexeddbshim.js +12 -12
- package/dist/indexeddbshim.js.map +1 -1
- package/dist/indexeddbshim.min.js +1 -1
- package/dist/indexeddbshim.min.js.map +1 -1
- package/package.json +1 -1
- package/src/IDBCursor.js +5 -5
- package/src/IDBIndex.js +1 -1
- package/src/IDBObjectStore.js +5 -5
package/dist/indexeddbshim.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! indexeddbshim - v19.0.
|
|
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 {
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
13204
|
+
* query?: import('./IDBIndex.js').Query|null,
|
|
13205
13205
|
* count?: Integer,
|
|
13206
|
-
* direction?:
|
|
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('./
|
|
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('./
|
|
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('./
|
|
13442
|
+
* query: import('./IDBIndex.js').Query|null|undefined,
|
|
13443
13443
|
* count: Integer|undefined,
|
|
13444
13444
|
* direction: string
|
|
13445
13445
|
* }}
|