@dereekb/firebase 12.1.8 → 12.1.9
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/index.cjs.js +3 -1
- package/index.esm.js +3 -1
- package/package.json +1 -1
- package/test/CHANGELOG.md +4 -0
- package/test/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -2247,7 +2247,9 @@ function getDocumentSnapshotDataPair(document) {
|
|
|
2247
2247
|
* @returns Promise that resolves to an array of document-snapshot-data triplets in the same order as the input documents
|
|
2248
2248
|
*/
|
|
2249
2249
|
function getDocumentSnapshotDataPairs(documents) {
|
|
2250
|
-
return util.runAsyncTasksForValues(documents, getDocumentSnapshotDataPair
|
|
2250
|
+
return util.runAsyncTasksForValues(documents, getDocumentSnapshotDataPair, {
|
|
2251
|
+
maxParallelTasks: 200 // load up to 200 documents at a time in parallel
|
|
2252
|
+
});
|
|
2251
2253
|
}
|
|
2252
2254
|
/**
|
|
2253
2255
|
* Creates document-snapshot-data triplets for an array of documents and filters out those without data.
|
package/index.esm.js
CHANGED
|
@@ -2245,7 +2245,9 @@ function getDocumentSnapshotDataPair(document) {
|
|
|
2245
2245
|
* @returns Promise that resolves to an array of document-snapshot-data triplets in the same order as the input documents
|
|
2246
2246
|
*/
|
|
2247
2247
|
function getDocumentSnapshotDataPairs(documents) {
|
|
2248
|
-
return runAsyncTasksForValues(documents, getDocumentSnapshotDataPair
|
|
2248
|
+
return runAsyncTasksForValues(documents, getDocumentSnapshotDataPair, {
|
|
2249
|
+
maxParallelTasks: 200 // load up to 200 documents at a time in parallel
|
|
2250
|
+
});
|
|
2249
2251
|
}
|
|
2250
2252
|
/**
|
|
2251
2253
|
* Creates document-snapshot-data triplets for an array of documents and filters out those without data.
|
package/package.json
CHANGED
package/test/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [12.1.9](https://github.com/dereekb/dbx-components/compare/v12.1.8...v12.1.9) (2025-06-09)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## [12.1.8](https://github.com/dereekb/dbx-components/compare/v12.1.7...v12.1.8) (2025-06-08)
|
|
6
10
|
|
|
7
11
|
|