Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
298 changes: 2 additions & 296 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions packages/integration-sdk-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
"neo4j-driver": "^4.3.3",
"plop": "^3.1.2",
"runtypes": "5.1.0",
"upath": "^1.2.0",
"url-exists": "^1.0.3"
"upath": "^1.2.0"
},
"devDependencies": {
"@jupiterone/data-model": "^0.62.0",
Expand Down
1 change: 0 additions & 1 deletion packages/integration-sdk-cli/src/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export * from './validate-question-file';
export * from './neo4j';
export * from './visualize-dependencies';
export * from './generate-integration-graph-schema';
export * from './troubleshoot';
export * from './generate-ingestion-sources-config';
export * from './generate';
export * from './bocchi';
16 changes: 0 additions & 16 deletions packages/integration-sdk-cli/src/commands/troubleshoot.ts

This file was deleted.

2 changes: 0 additions & 2 deletions packages/integration-sdk-cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
visualizeDependencies,
generateIntegrationGraphSchemaCommand,
generateIngestionSourcesConfigCommand,
troubleshootLocalExecution,
generate,
bocchi,
} from './commands';
Expand All @@ -32,7 +31,6 @@ export function createCli() {
.addCommand(visualizeDependencies())
.addCommand(generateIntegrationGraphSchemaCommand())
.addCommand(generateIngestionSourcesConfigCommand())
.addCommand(troubleshootLocalExecution())
.addCommand(generate())
.addCommand(bocchi());
}
1 change: 0 additions & 1 deletion packages/integration-sdk-cli/src/troubleshoot/index.ts

This file was deleted.

34 changes: 0 additions & 34 deletions packages/integration-sdk-cli/src/troubleshoot/troubleshoot.ts

This file was deleted.

111 changes: 0 additions & 111 deletions packages/integration-sdk-cli/src/troubleshoot/utils.ts

This file was deleted.

8 changes: 8 additions & 0 deletions packages/integration-sdk-runtime/src/logger/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,10 @@ export class IntegrationLogger

stepFailure(step: StepMetadata, err: Error) {
const eventName = 'step_failure';
this._logger.info(
{ errconstructorname: err.constructor?.name },
'Error Constructorname',
);
const { errorId, description } = createErrorEventDescription(
err,
`Step "${step.name}" failed to complete due to error.`,
Expand Down Expand Up @@ -409,6 +413,10 @@ export class IntegrationLogger

validationFailure(err: Error) {
const eventName = 'validation_failure';
this._logger.info(
{ errconstructorname: err.constructor?.name },
'Error Constructorname',
);
const { errorId, description } = createErrorEventDescription(
err,
`Error occurred while validating integration configuration.`,
Expand Down