@pnp/queryable 3.7.0-v3nightly.20220921 → 3.7.0-v3nightly.20220922

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/queryable.js +2 -2
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@pnp/queryable",
3
- "version": "3.7.0-v3nightly.20220921",
3
+ "version": "3.7.0-v3nightly.20220922",
4
4
  "description": "pnp - provides shared odata functionality and base classes",
5
5
  "main": "./index.js",
6
6
  "typings": "./index",
7
7
  "dependencies": {
8
8
  "tslib": "2.4.0",
9
- "@pnp/core": "3.7.0-v3nightly.20220921"
9
+ "@pnp/core": "3.7.0-v3nightly.20220922"
10
10
  },
11
11
  "funding": {
12
12
  "type": "individual",
package/queryable.js CHANGED
@@ -91,7 +91,7 @@ let Queryable = class Queryable extends Timeline {
91
91
  this.log(`[${requestId}] ${msg}`, level);
92
92
  };
93
93
  try {
94
- log("Beginning request", 1);
94
+ log("Beginning request", 0);
95
95
  // include the request id in the headers to assist with debugging against logs
96
96
  const initSeed = {
97
97
  ...userInit,
@@ -131,7 +131,7 @@ let Queryable = class Queryable extends Timeline {
131
131
  log("Emitted error", 3);
132
132
  }
133
133
  finally {
134
- log("Finished request", 1);
134
+ log("Finished request", 0);
135
135
  }
136
136
  }, 0);
137
137
  // this is the promise that the calling code will recieve and await