-
Notifications
You must be signed in to change notification settings - Fork 9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(oas31): enable overrides for samples plugin (#8731)
These overrides are specific to OpenAPI 3.1.0 and JSON Schema 2020-12. Refs #8577
- Loading branch information
Showing
6 changed files
with
90 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
* @prettier | ||
*/ | ||
import { | ||
makeIsExpandable, | ||
getProperties, | ||
} from "./json-schema-2020-12-extensions/fn" | ||
import { wrapOAS31Fn } from "./fn" | ||
|
||
function afterLoad({ fn, getSystem }) { | ||
// overrides for fn.jsonSchema202012 | ||
if (fn.jsonSchema202012) { | ||
const isExpandable = makeIsExpandable( | ||
fn.jsonSchema202012.isExpandable, | ||
getSystem | ||
) | ||
|
||
Object.assign(this.fn.jsonSchema202012, { isExpandable, getProperties }) | ||
} | ||
|
||
// wraps schema generators from samples plugin and make them specific to OpenAPI 3.1 version | ||
if (typeof fn.sampleFromSchema === "function" && fn.jsonSchema202012) { | ||
const wrappedFns = wrapOAS31Fn( | ||
{ | ||
sampleFromSchema: fn.jsonSchema202012.sampleFromSchema, | ||
sampleFromSchemaGeneric: fn.jsonSchema202012.sampleFromSchemaGeneric, | ||
createXMLExample: fn.jsonSchema202012.createXMLExample, | ||
memoizedSampleFromSchema: fn.jsonSchema202012.memoizedSampleFromSchema, | ||
memoizedCreateXMLExample: fn.jsonSchema202012.memoizedCreateXMLExample, | ||
}, | ||
getSystem() | ||
) | ||
|
||
Object.assign(this.fn, wrappedFns) | ||
} | ||
} | ||
|
||
export default afterLoad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters