@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/dist/src/commands/visualize-types.d.ts +1 -1
- package/dist/src/utils/generateVisHTML.d.ts +1 -1
- package/dist/src/visualization/createMappedRelationshipNodesAndEdges.d.ts +1 -1
- package/dist/tsconfig.dist.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/commands/visualize-types.ts +1 -1
- package/src/utils/generateVisHTML.ts +1 -1
- package/src/visualization/__tests__/generateVisHTML.test.ts +1 -1
- package/src/visualization/createMappedRelationshipNodesAndEdges.ts +1 -1
- package/src/visualization/generateDependencyVisualization.ts +1 -1
- package/src/visualization/generateVisualization.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Edge, Node } from 'vis';
|
|
1
|
+
import type { Edge, Node } from 'vis';
|
|
2
2
|
import { StepGraphObjectMetadataProperties } from '@jupiterone/integration-sdk-core';
|
|
3
3
|
export declare const PLACEHOLDER_ENTITY_OPTIONS: Partial<Node>;
|
|
4
4
|
export declare const MAPPED_RELATIONSHIP_OPTIONS: Partial<Edge>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Node, Edge } from 'vis';
|
|
1
|
+
import type { Node, Edge } from 'vis';
|
|
2
2
|
import { Entity, MappedRelationship, RelationshipDirection, RelationshipMapping, TargetEntityProperties } from '@jupiterone/integration-sdk-core';
|
|
3
3
|
import { NodeEntity } from './utils';
|
|
4
4
|
interface MappedRelationshipNodesAndEdges {
|