gd-sprest 8.2.4 → 8.2.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/.github/workflows/build.yml +1 -1
- package/build/rest.js +1 -1
- package/build/utils/request.js +4 -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
|
@@ -550,10 +550,14 @@ exports.Request = {
|
|
|
550
550
|
helper_1.Helper.updateDataCollection(obj, objData["results"]);
|
|
551
551
|
// Update the expanded properties
|
|
552
552
|
helper_1.Helper.updateExpandedProperties(obj);
|
|
553
|
+
// Update the search results
|
|
554
|
+
helper_1.Helper.updateSearchResults(obj);
|
|
553
555
|
}
|
|
554
556
|
else {
|
|
555
557
|
// Update the object
|
|
556
558
|
obj = __assign(__assign({}, obj), objData);
|
|
559
|
+
// Update the search results
|
|
560
|
+
helper_1.Helper.updateSearchResults(obj);
|
|
557
561
|
}
|
|
558
562
|
}
|
|
559
563
|
// Else, see if the data properties exists
|