jitz-sharepoint-utilities 2.0.10 → 2.0.11

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.
@@ -149,7 +149,7 @@ export default class List<T extends IModel> implements IList<T> {
149
149
  filter = `(Id gt ${this.lowerId} and Id le ${this.upperId})`;
150
150
  if (this.filters != undefined && this.filters.length > 0)
151
151
  filter = `${filter} and ${this.filters}`;
152
- console.log(filter);
152
+ // console.log(filter);
153
153
  var results = await this.getData(filter);
154
154
  return results;
155
155
  } else return [];
@@ -478,7 +478,6 @@ var List = /** @class */ (function () {
478
478
  filter = "(Id gt ".concat(this.lowerId, " and Id le ").concat(this.upperId, ")");
479
479
  if (this.filters != undefined && this.filters.length > 0)
480
480
  filter = "".concat(filter, " and ").concat(this.filters);
481
- console.log(filter);
482
481
  return [4 /*yield*/, this.getData(filter)];
483
482
  case 3:
484
483
  results = _a.sent();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jitz-sharepoint-utilities",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "Essential SharePoint utilities for SharePoint Add-in and SPFx development",
5
5
  "author": "Jithendra Mani",
6
6
  "license": "ISC",