gd-sprest 9.8.5 → 9.8.6
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/build/rest.js +1 -1
- package/build/utils/request.js +5 -0
- package/dist/gd-sprest.js +1 -1
- package/dist/gd-sprest.min.js +1 -1
- package/package.json +1 -1
package/build/rest.js
CHANGED
package/build/utils/request.js
CHANGED
|
@@ -670,6 +670,11 @@ export const Request = {
|
|
|
670
670
|
if (isBatchRequest) {
|
|
671
671
|
// Process the callbacks
|
|
672
672
|
Batch.processCallbacks(base.base.batchRequests[batchIdx]);
|
|
673
|
+
// See if the callback for odata query exists
|
|
674
|
+
if (base.targetInfo.callbackQuery) {
|
|
675
|
+
// Call the method
|
|
676
|
+
base.targetInfo.callbackQuery(base.base.batchRequests[batchIdx]);
|
|
677
|
+
}
|
|
673
678
|
}
|
|
674
679
|
}
|
|
675
680
|
},
|