![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/swagger-api/swagger-ui/src/core/plugins/oas31/ |
/** * @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