/** * The SDK provides a type system and execution environment for JupiterOne * managed integrations. * * Integrations are intended to always load SDK types and functions one way: * * `import { ... } from '@jupiterone/jupiter-managed-integration-sdk'` * * This provides necessary types, some test helpers, and a few functions for * local execution outside the deployment environment maintained by the * JupiterOne engineering team. */ import executeIntegrationDev from './integration/execution/executeIntegrationDev'; import executeIntegrationLocal from './integration/execution/executeIntegrationLocal'; export * from './common'; export * from './test'; export { executeIntegrationDev, executeIntegrationLocal };