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 (factory) {
|
|
4
4
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
@@ -8915,7 +8915,7 @@
|
|
|
8915
8915
|
};
|
|
8916
8916
|
|
|
8917
8917
|
/**
|
|
8918
|
-
* @typedef {
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
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('./
|
|
13217
|
+
* query?: import('./IDBIndex.js').Query|null,
|
|
13218
13218
|
* count?: Integer,
|
|
13219
|
-
* direction?:
|
|
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('./
|
|
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('./
|
|
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('./
|
|
13455
|
+
* query: import('./IDBIndex.js').Query|null|undefined,
|
|
13456
13456
|
* count: Integer|undefined,
|
|
13457
13457
|
* direction: string
|
|
13458
13458
|
* }}
|