Socket
Socket
Sign inDemoInstall

@jupiterone/integration-sdk-core

Package Overview
Dependencies
Maintainers
1
Versions
268
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupiterone/integration-sdk-core - npm Package Compare versions

Comparing version 3.5.0 to 3.5.1

8

dist/src/data/createIntegrationEntity.js

@@ -50,3 +50,9 @@ "use strict";

if (entity.active === undefined && source.status) {
entity.active = source.status === 'Online' || source.status === 'Active';
const isActive = new RegExp('(?<!in)active|enabled|online', 'i').test(source.status);
const isInactive = new RegExp('inactive|disabled|offline', 'i').test(source.status);
entity.active = isActive
? true // if
: isInactive
? false // else if
: undefined; // else
}

@@ -53,0 +59,0 @@ // Remove transferred `source.tags` property from the entity. `tags` is in the

6

package.json
{
"name": "@jupiterone/integration-sdk-core",
"version": "3.5.0",
"version": "3.5.1",
"description": "The SDK for developing JupiterOne integrations",

@@ -26,3 +26,3 @@ "main": "dist/src/index.js",

"dependencies": {
"@jupiterone/data-model": "^0.13.0",
"@jupiterone/data-model": "^0.14.0",
"lodash": "^4.17.15",

@@ -34,3 +34,3 @@ "uuid": "^7.0.3"

},
"gitHead": "3f8924c5c3f68d56b8a1f09425dd7e45dee8884b"
"gitHead": "f5a63f604ed3825dcc9b236b233bf228743217d9"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc