@pi-r/azure 0.12.4 → 0.12.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 +4 -1
- package/package.json +4 -4
package/client/index.js
CHANGED
|
@@ -281,7 +281,10 @@ async function executeBatchQuery(credential, batch, sessionKey) {
|
|
|
281
281
|
if (limit > 0) {
|
|
282
282
|
options.maxItemCount = limit;
|
|
283
283
|
}
|
|
284
|
-
if (
|
|
284
|
+
if (options.enableQueryControl && options.continuationToken) {
|
|
285
|
+
queryString = '';
|
|
286
|
+
}
|
|
287
|
+
else if (queryString) {
|
|
285
288
|
queryString += (query ? Cloud.asString(query, true) : '') + Cloud.asString(options, true);
|
|
286
289
|
if (!update && (rows = this.getCacheResult(service, credential, queryString, cacheValue, ignoreCache))) {
|
|
287
290
|
result[i] = rows;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/azure",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.5",
|
|
4
4
|
"description": "Azure cloud functions for E-mc.",
|
|
5
5
|
"main": "client/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@e-mc/cloud": "^0.14.
|
|
20
|
-
"@e-mc/module": "^0.14.
|
|
21
|
-
"@e-mc/types": "^0.14.
|
|
19
|
+
"@e-mc/cloud": "^0.14.6",
|
|
20
|
+
"@e-mc/module": "^0.14.6",
|
|
21
|
+
"@e-mc/types": "^0.14.6",
|
|
22
22
|
"@azure/cosmos": "^4.10.0",
|
|
23
23
|
"@azure/identity": "*",
|
|
24
24
|
"@azure/storage-blob": "^12.33.0"
|