@redocly/openapi-core
Advanced tools
Comparing version 1.0.0-beta.23 to 1.0.0-beta.24
@@ -48,3 +48,3 @@ import outdent from 'outdent'; | ||
expect(problems).toHaveLength(0); | ||
expect(bundle).toEqual(origCopy); | ||
expect(bundle.parsed).toEqual(origCopy); | ||
}); | ||
@@ -58,3 +58,3 @@ | ||
expect(problems).toHaveLength(0); | ||
expect(res).toMatchSnapshot(); | ||
expect(res.parsed).toMatchSnapshot(); | ||
}); | ||
@@ -71,4 +71,4 @@ | ||
); | ||
expect(res).toMatchSnapshot(); | ||
expect(res.parsed).toMatchSnapshot(); | ||
}); | ||
}); |
@@ -12,3 +12,3 @@ import { BaseResolver, Document } from './resolve'; | ||
}): Promise<{ | ||
bundle: any; | ||
bundle: Document; | ||
problems: import("./walk").NormalizedProblem[]; | ||
@@ -24,5 +24,5 @@ fileDependencies: Set<string>; | ||
}): Promise<{ | ||
bundle: any; | ||
bundle: Document; | ||
problems: import("./walk").NormalizedProblem[]; | ||
fileDependencies: Set<string>; | ||
}>; |
@@ -73,3 +73,3 @@ "use strict"; | ||
return { | ||
bundle: document.parsed, | ||
bundle: document, | ||
problems: ctx.problems.map((problem) => config.addProblemToIgnore(problem)), | ||
@@ -76,0 +76,0 @@ fileDependencies: externalRefResolver.getFiles(), |
{ | ||
"name": "@redocly/openapi-core", | ||
"version": "1.0.0-beta.23", | ||
"version": "1.0.0-beta.24", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -97,3 +97,3 @@ import isEqual = require('lodash.isequal'); | ||
return { | ||
bundle: document.parsed, | ||
bundle: document, | ||
problems: ctx.problems.map((problem) => config.addProblemToIgnore(problem)), | ||
@@ -100,0 +100,0 @@ fileDependencies: externalRefResolver.getFiles(), |
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
1860749