lucid-extension-sdk
Advanced tools
Comparing version 0.0.231 to 0.0.232
@@ -5,2 +5,3 @@ "use strict"; | ||
const checks_1 = require("../core/checks"); | ||
const validators_1 = require("../core/validators/validators"); | ||
const action_1 = require("./actions/action"); | ||
@@ -139,4 +140,5 @@ const dataconnectoractionkeys_1 = require("./actions/dataconnectoractionkeys"); | ||
// instanceof DataConnectorRunError will not work in some environments | ||
function isDataConnectorRunError(e) { | ||
return (0, checks_1.isObjectUnsafe)(e) && (0, checks_1.isNumber)(e.status) && e.hasOwnProperty('body'); | ||
} | ||
const isDataConnectorRunError = (0, validators_1.objectValidator)({ | ||
status: checks_1.isNumber, | ||
body: checks_1.isUnknown, | ||
}); |
{ | ||
"name": "lucid-extension-sdk", | ||
"version": "0.0.231", | ||
"version": "0.0.232", | ||
"description": "Utility classes for writing Lucid Software editor extensions", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
720152
16717