@jupiterone/integration-sdk-cli 11.0.2 → 11.0.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupiterone/integration-sdk-cli",
3
- "version": "11.0.2",
3
+ "version": "11.0.3",
4
4
  "description": "The SDK for developing JupiterOne integrations",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -25,8 +25,8 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@jupiterone/data-model": "^0.54.0",
28
- "@jupiterone/integration-sdk-core": "^11.0.2",
29
- "@jupiterone/integration-sdk-runtime": "^11.0.2",
28
+ "@jupiterone/integration-sdk-core": "^11.0.3",
29
+ "@jupiterone/integration-sdk-runtime": "^11.0.3",
30
30
  "chalk": "^4",
31
31
  "commander": "^9.4.0",
32
32
  "fs-extra": "^10.1.0",
@@ -40,11 +40,10 @@
40
40
  "plop": "^3.1.2",
41
41
  "runtypes": "5.1.0",
42
42
  "upath": "^1.2.0",
43
- "url-exists": "^1.0.3",
44
- "vis": "^4.21.0-EOL"
43
+ "url-exists": "^1.0.3"
45
44
  },
46
45
  "devDependencies": {
47
- "@jupiterone/integration-sdk-private-test-utils": "^11.0.2",
46
+ "@jupiterone/integration-sdk-private-test-utils": "^11.0.3",
48
47
  "@pollyjs/adapter-node-http": "^6.0.5",
49
48
  "@pollyjs/core": "^6.0.5",
50
49
  "@pollyjs/persister-fs": "^6.0.5",
@@ -54,7 +53,8 @@
54
53
  "@types/lodash": "^4.14.158",
55
54
  "@types/vis": "^4.21.20",
56
55
  "memfs": "^3.2.0",
57
- "neo-forgery": "^2.0.0"
56
+ "neo-forgery": "^2.0.0",
57
+ "vis": "^4.21.0-EOL"
58
58
  },
59
- "gitHead": "73d005410944da3889d5b41812deb3a48ae5ba89"
59
+ "gitHead": "56969b96de598bbf0cc0299aec264f488d14d4b1"
60
60
  }
@@ -1,7 +1,7 @@
1
1
  import { createCommand } from 'commander';
2
2
  import { promises as fs } from 'fs';
3
3
  import * as path from 'path';
4
- import { Edge, Node, Options } from 'vis';
4
+ import type { Edge, Node, Options } from 'vis';
5
5
 
6
6
  import {
7
7
  RelationshipDirection,
@@ -1,5 +1,5 @@
1
1
  import { defaultsDeep } from 'lodash';
2
- import { Node, Edge, Options } from 'vis';
2
+ import type { Node, Edge, Options } from 'vis';
3
3
 
4
4
  export const nothingToDisplayMessage = 'There was no data found to visualize.';
5
5
 
@@ -1,4 +1,4 @@
1
- import { Edge, Node } from 'vis';
1
+ import type { Edge, Node } from 'vis';
2
2
 
3
3
  import {
4
4
  generateVisHTML,
@@ -1,4 +1,4 @@
1
- import { Node, Edge, NodeOptions } from 'vis';
1
+ import type { Node, Edge, NodeOptions } from 'vis';
2
2
  import {
3
3
  Entity,
4
4
  MappedRelationship,
@@ -5,7 +5,7 @@ import * as path from 'path';
5
5
 
6
6
  import { generateVisHTML } from '../utils/generateVisHTML';
7
7
 
8
- import { Node, Edge } from 'vis';
8
+ import type { Node, Edge } from 'vis';
9
9
 
10
10
  // Color list to denote which steps have more direct dependencies.
11
11
  // Starting from cooler colors to warmer colors.
@@ -1,6 +1,6 @@
1
1
  import globby from 'globby';
2
2
  import upath from 'upath';
3
- import { Edge } from 'vis';
3
+ import type { Edge } from 'vis';
4
4
 
5
5
  import { writeFileToPath } from '@jupiterone/integration-sdk-runtime';
6
6