@snyk/snyk-docker-pull
Advanced tools
Comparing version 3.5.0 to 3.6.0
export declare class InvalidManifestSchemaVersionError extends Error { | ||
code: number; | ||
constructor(version: number); | ||
} |
@@ -7,2 +7,3 @@ "use strict"; | ||
super(`Invalid manifest schema version ${version}`); | ||
this.code = 422; | ||
} | ||
@@ -9,0 +10,0 @@ } |
@@ -47,3 +47,3 @@ { | ||
}, | ||
"version": "3.5.0" | ||
"version": "3.6.0" | ||
} |
export class InvalidManifestSchemaVersionError extends Error { | ||
public code: number; | ||
constructor(version: number) { | ||
super(`Invalid manifest schema version ${version}`); | ||
this.code = 422; | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
49446
981