gd-sprest 7.7.2 → 7.7.3

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.
@@ -84,7 +84,7 @@ exports.Search.postQuery = function (props) {
84
84
  // Compute the total # of requests that we need to make
85
85
  var totalPages = Math.ceil(results.TotalRows / rowCount);
86
86
  // Loop for the total # of requests
87
- for (var i = 0; i < totalPages; i++) {
87
+ for (var i = 1; i < totalPages; i++) {
88
88
  // Set the start row
89
89
  queryProps.StartRow = i * rowCount;
90
90
  // See if we are making a batch request
package/build/rest.js CHANGED
@@ -8,7 +8,7 @@ var sptypes_1 = require("./sptypes");
8
8
  * SharePoint REST Library
9
9
  */
10
10
  exports.$REST = {
11
- __ver: 7.72,
11
+ __ver: 7.73,
12
12
  AppContext: function (siteUrl) { return Lib.Site.getAppContext(siteUrl); },
13
13
  Apps: Lib.Apps,
14
14
  ContextInfo: Lib.ContextInfo,