@pnp/odata
Advanced tools
Comparing version 2.8.0 to 2.9.0
@@ -16,4 +16,4 @@ import { __read, __spreadArray } from "tslib"; | ||
} | ||
return invoker.call.apply(invoker, __spreadArray([r], __read(ags))); | ||
}, new (constructor.bind.apply(constructor, __spreadArray([void 0], __read(as))))()); | ||
return invoker.call.apply(invoker, __spreadArray([r], __read(ags), false)); | ||
}, new (constructor.bind.apply(constructor, __spreadArray([void 0], __read(as), false)))()); | ||
Reflect.setPrototypeOf(r, constructor.prototype); | ||
@@ -20,0 +20,0 @@ return r; |
@@ -54,3 +54,3 @@ import { __read, __spreadArray } from "tslib"; | ||
if (Array.isArray(e)) { | ||
a.push.apply(a, __spreadArray([], __read(e))); | ||
a.push.apply(a, __spreadArray([], __read(e), false)); | ||
} | ||
@@ -104,6 +104,6 @@ else { | ||
if (Reflect.has(target, ObjExtensionsSym)) { | ||
extensions.push.apply(extensions, __spreadArray([], __read(Reflect.get(target, ObjExtensionsSym)))); | ||
extensions.push.apply(extensions, __spreadArray([], __read(Reflect.get(target, ObjExtensionsSym)), false)); | ||
} | ||
// second we need to process any global extensions | ||
extensions.push.apply(extensions, __spreadArray([], __read(globalExtensions))); | ||
extensions.push.apply(extensions, __spreadArray([], __read(globalExtensions), false)); | ||
for (var i = 0; i < extensions.length; i++) { | ||
@@ -114,3 +114,3 @@ var extension = extensions[i]; | ||
// this extension is a function which we call | ||
result = extension.apply(void 0, __spreadArray([op, target], __read(rest))); | ||
result = extension.apply(void 0, __spreadArray([op, target], __read(rest), false)); | ||
} | ||
@@ -123,3 +123,3 @@ else if (op === "get" && Reflect.has(extension, rest[0])) { | ||
// this extension is a ProxyHandler that has a handler defined for {op} so we pass control and see if we get a result | ||
result = Reflect.get(extension, op).apply(void 0, __spreadArray([target], __read(rest))); | ||
result = Reflect.get(extension, op).apply(void 0, __spreadArray([target], __read(rest), false)); | ||
} | ||
@@ -134,4 +134,4 @@ if (typeof result !== "undefined") { | ||
} | ||
return or.apply(void 0, __spreadArray([target], __read(rest))); | ||
return or.apply(void 0, __spreadArray([target], __read(rest), false)); | ||
} | ||
//# sourceMappingURL=invokable-extensions.js.map |
{ | ||
"name": "@pnp/odata", | ||
"version": "2.8.0", | ||
"version": "2.9.0", | ||
"description": "pnp - provides shared odata functionality and base classes", | ||
@@ -9,4 +9,4 @@ "main": "./index.js", | ||
"tslib": "2.3.0", | ||
"@pnp/logging": "2.8.0", | ||
"@pnp/common": "2.8.0" | ||
"@pnp/logging": "2.9.0", | ||
"@pnp/common": "2.9.0" | ||
}, | ||
@@ -13,0 +13,0 @@ "author": { |
@@ -15,3 +15,3 @@ import { __read, __spreadArray } from "tslib"; | ||
case "query": | ||
return JSON.stringify(__spreadArray([], __read(value))); | ||
return JSON.stringify(__spreadArray([], __read(value), false)); | ||
case "batch": | ||
@@ -18,0 +18,0 @@ case "batchDependency": |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
106870
+ Added@pnp/common@2.9.0(transitive)
+ Added@pnp/logging@2.9.0(transitive)
- Removed@pnp/common@2.8.0(transitive)
- Removed@pnp/logging@2.8.0(transitive)
Updated@pnp/common@2.9.0
Updated@pnp/logging@2.9.0