@xliic/cicd-core-node
Advanced tools
Comparing version 5.14.0 to 5.15.0
@@ -245,11 +245,12 @@ export declare type Result<R, E> = [R, undefined] | [undefined, E]; | ||
export interface JsonReportItemSuccess { | ||
success: true; | ||
audited: true; | ||
apiId: string; | ||
mode: AuditModes; | ||
score: number; | ||
failures: string[]; | ||
} | ||
export interface JsonReportItemFailure { | ||
success: false; | ||
audited: false; | ||
error: string; | ||
} | ||
export {}; |
@@ -155,11 +155,12 @@ "use strict"; | ||
? { | ||
success: false, | ||
audited: false, | ||
error: getErrorMessage(result.errors), | ||
} | ||
: { | ||
success: true, | ||
audited: true, | ||
apiId: result.id, | ||
mode: mode, | ||
score: result.score, | ||
failures: result.failures | ||
}; | ||
} |
{ | ||
"name": "@xliic/cicd-core-node", | ||
"version": "5.14.0", | ||
"version": "5.15.0", | ||
"description": "Performs API contract security audit to get a detailed analysis of the possible vulnerabilities and other issues in the API contract.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
114439
2627