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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! indexeddbshim - v19.0.
|
|
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 {
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
13212
|
+
* query?: import('./IDBIndex.js').Query|null,
|
|
13213
13213
|
* count?: Integer,
|
|
13214
|
-
* direction?:
|
|
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('./
|
|
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('./
|
|
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('./
|
|
13450
|
+
* query: import('./IDBIndex.js').Query|null|undefined,
|
|
13451
13451
|
* count: Integer|undefined,
|
|
13452
13452
|
* direction: string
|
|
13453
13453
|
* }}
|