jitz-sharepoint-utilities 2.0.17 → 2.0.18

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.
@@ -304,6 +304,7 @@ export default class Repository<T extends IModel> implements IRepository<T> {
304
304
  })
305
305
  .then((response: any): Promise<T> => {
306
306
  if (response.status >= 200 && response.status < 300) {
307
+ console.log(response);
307
308
  var json = response.data.d;
308
309
  return json;
309
310
  } else {
@@ -339,6 +339,7 @@ var Repository = /** @class */ (function () {
339
339
  })
340
340
  .then(function (response) {
341
341
  if (response.status >= 200 && response.status < 300) {
342
+ console.log(response);
342
343
  var json = response.data.d;
343
344
  return json;
344
345
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jitz-sharepoint-utilities",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "description": "Essential SharePoint utilities for SharePoint Add-in and SPFx development",
5
5
  "author": "Jithendra Mani",
6
6
  "license": "ISC",