Socket
Socket
Sign inDemoInstall

@jupiterone/integration-sdk-runtime

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-runtime - npm Package Compare versions

Comparing version 6.6.0 to 6.7.0

2

dist/src/storage/memory.d.ts

@@ -40,3 +40,3 @@ import { Entity, GraphObjectFilter, GraphObjectIteratee, GraphObjectStore, Relationship } from '@jupiterone/integration-sdk-core';

addRelationships(stepId: string, newRelationships: Relationship[]): Promise<void>;
findEntity(_key: string): Promise<Entity | undefined>;
findEntity(_key: string | undefined): Promise<Entity | undefined>;
/**

@@ -43,0 +43,0 @@ * @notImplemented

@@ -74,3 +74,6 @@ "use strict";

var _a;
return Promise.resolve((_a = this.entityKeyToEntityMap.get(_key)) === null || _a === void 0 ? void 0 : _a.entity);
const entity = _key
? (_a = this.entityKeyToEntityMap.get(_key)) === null || _a === void 0 ? void 0 : _a.entity
: undefined;
return Promise.resolve(entity);
}

@@ -77,0 +80,0 @@ /**

{
"name": "@jupiterone/integration-sdk-runtime",
"version": "6.6.0",
"version": "6.7.0",
"description": "The SDK for developing JupiterOne integrations",

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

"dependencies": {
"@jupiterone/integration-sdk-core": "^6.6.0",
"@jupiterone/integration-sdk-core": "^6.7.0",
"@lifeomic/alpha": "^1.4.0",

@@ -47,3 +47,3 @@ "@lifeomic/attempt": "^3.0.0",

"devDependencies": {
"@jupiterone/integration-sdk-private-test-utils": "^6.6.0",
"@jupiterone/integration-sdk-private-test-utils": "^6.7.0",
"@types/uuid": "^7.0.2",

@@ -55,3 +55,3 @@ "get-port": "^5.1.1",

},
"gitHead": "d8abc84930c90ea5a59c9d93fd57cd195e8905cf"
"gitHead": "3c9bfa5c4eebe3fb8f01a5ad2a77a45f2b2a8052"
}

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