@pnp/queryable 3.8.0 → 3.9.0

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 +1 -1
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@pnp/queryable",
3
- "version": "3.8.0",
3
+ "version": "3.9.0",
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.8.0"
9
+ "@pnp/core": "3.9.0"
10
10
  },
11
11
  "funding": {
12
12
  "type": "individual",
package/queryable.js CHANGED
@@ -80,7 +80,7 @@ let Queryable = class Queryable extends Timeline {
80
80
  execute(userInit) {
81
81
  // if there are NO observers registered this is likely either a bug in the library or a user error, direct to docs
82
82
  if (Reflect.ownKeys(this.observers).length < 1) {
83
- throw Error("No observers registered for this request. (https://pnp.github.io/pnpjs/queryable/queryable#No-observers-registered-for-this-request)");
83
+ throw Error("No observers registered for this request. (https://pnp.github.io/pnpjs/queryable/queryable#no-observers-registered-for-this-request)");
84
84
  }
85
85
  // schedule the execution after we return the promise below in the next event loop
86
86
  setTimeout(async () => {