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 {
|