@pi-r/azure 0.10.3 → 0.10.5
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/client/index.js +1 -1
- package/package.json +4 -4
package/client/index.js
CHANGED
|
@@ -269,7 +269,7 @@ async function executeBatchQuery(credential, batch, sessionKey) {
|
|
|
269
269
|
}
|
|
270
270
|
if (query) {
|
|
271
271
|
const iter = items.query(query, attachSignal(options));
|
|
272
|
-
({ resources: rows } = await (options.maxItemCount ? iter.fetchNext() : iter.fetchAll()));
|
|
272
|
+
({ resources: rows } = await (options.enableQueryControl && options.maxItemCount ? iter.fetchNext() : iter.fetchAll()));
|
|
273
273
|
}
|
|
274
274
|
else {
|
|
275
275
|
({ resources: rows } = await items.readAll(attachSignal(options)).fetchAll());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/azure",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.5",
|
|
4
4
|
"description": "Azure cloud functions for E-mc.",
|
|
5
5
|
"main": "client/index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@e-mc/cloud": "^0.12.
|
|
23
|
-
"@e-mc/module": "^0.12.
|
|
24
|
-
"@e-mc/types": "^0.12.
|
|
22
|
+
"@e-mc/cloud": "^0.12.17",
|
|
23
|
+
"@e-mc/module": "^0.12.17",
|
|
24
|
+
"@e-mc/types": "^0.12.17",
|
|
25
25
|
"@azure/cosmos": "^4.5.1",
|
|
26
26
|
"@azure/identity": "*",
|
|
27
27
|
"@azure/storage-blob": "^12.28.0"
|