├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ ├── codeql-analysis.yml │ └── node.js.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bin └── cli.js ├── changelog.config.js ├── docs ├── _config.yml ├── _layouts │ └── default.html ├── assets │ ├── css │ │ └── style.scss │ └── img │ │ ├── demo.gif │ │ ├── favicon.ico │ │ ├── formDataOptions.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logoBanner.png │ │ ├── logoBanner.svg │ │ └── variables.png └── index.md ├── lib ├── index.js ├── md-utils.js └── var-replacer.js ├── package.json ├── test ├── cli.spec.js ├── index.spec.js ├── md-utils.spec.js ├── resources │ ├── console │ │ └── help.txt │ ├── input │ │ ├── NoOptionsInBody.json │ │ ├── NullHeaders.json │ │ ├── invalidOptions.txt │ │ ├── issue175.json │ │ ├── options.json │ │ ├── v2 │ │ │ ├── AuthBasic.json │ │ │ ├── AuthBearer.json │ │ │ ├── AuthMultiple.json │ │ │ ├── AuthRequest.json │ │ │ ├── BasepathVar.json │ │ │ ├── CollectionWrapper.json │ │ │ ├── DeleteOperation.json │ │ │ ├── DepthPathParams.json │ │ │ ├── DisabledParams.json │ │ │ ├── EmptyUrl.json │ │ │ ├── ExternalDocs.json │ │ │ ├── FolderCollection.json │ │ │ ├── FormData.json │ │ │ ├── FormUrlencoded.json │ │ │ ├── GetMethods.json │ │ │ ├── Headers.json │ │ │ ├── JsonComments.json │ │ │ ├── LicenseContact.json │ │ │ ├── MultipleServers.json │ │ │ ├── NoPath.json │ │ │ ├── NoVersion.json │ │ │ ├── OperationIds.json │ │ │ ├── ParseStatusCode.json │ │ │ ├── PathParams.json │ │ │ ├── PostmantoOpenAPI.json │ │ │ ├── RawBody.json │ │ │ ├── Responses.json │ │ │ ├── ResponsesEmpty.json │ │ │ ├── ResponsesJsonError.json │ │ │ ├── ResponsesMultiLang.json │ │ │ ├── SimplePost.json │ │ │ ├── UrlWithPort.json │ │ │ ├── Variables.json │ │ │ └── XLogo.json │ │ └── v21 │ │ │ ├── AuthBasic.json │ │ │ ├── AuthBearer.json │ │ │ ├── AuthMultiple.json │ │ │ ├── AuthRequest.json │ │ │ ├── BasepathVar.json │ │ │ ├── CollectionWrapper.json │ │ │ ├── DeleteOperation.json │ │ │ ├── DepthPathParams.json │ │ │ ├── DisabledParams.json │ │ │ ├── EmptyUrl.json │ │ │ ├── ExternalDocs.json │ │ │ ├── FolderCollection.json │ │ │ ├── FormData.json │ │ │ ├── FormUrlencoded.json │ │ │ ├── GetMethods.json │ │ │ ├── Headers.json │ │ │ ├── JsonComments.json │ │ │ ├── LicenseContact.json │ │ │ ├── MultipleServers.json │ │ │ ├── NoPath.json │ │ │ ├── NoVersion.json │ │ │ ├── OperationIds.json │ │ │ ├── ParseStatusCode.json │ │ │ ├── PathParams.json │ │ │ ├── PostmantoOpenAPI.json │ │ │ ├── RawBody.json │ │ │ ├── Responses.json │ │ │ ├── ResponsesEmpty.json │ │ │ ├── ResponsesJsonError.json │ │ │ ├── ResponsesMultiLang.json │ │ │ ├── SimplePost.json │ │ │ ├── UrlWithPort.json │ │ │ ├── Variables.json │ │ │ └── XLogo.json │ ├── options │ │ └── info.json │ ├── output │ │ ├── AuthBasic.yml │ │ ├── AuthBearer.yml │ │ ├── AuthMultiple.yml │ │ ├── AuthOptions.yml │ │ ├── AuthRequest.yml │ │ ├── BasepathVar.yml │ │ ├── Basic.json │ │ ├── Basic.yml │ │ ├── BasicNoOptions.yml │ │ ├── BasicWithAuth.yml │ │ ├── CollectionWrapper.yml │ │ ├── CustomTag.yml │ │ ├── DeleteOperation.yml │ │ ├── DepthPathParams.yml │ │ ├── DisabledParamsAll.yml │ │ ├── DisabledParamsDefault.yml │ │ ├── DisabledParamsHeader.yml │ │ ├── DisabledParamsQuery.yml │ │ ├── EmptyUrl.yml │ │ ├── ExternalDocs.yml │ │ ├── ExternalDocsOpts.yml │ │ ├── ExternalDocsOptsPartial.yml │ │ ├── Folders.yml │ │ ├── FoldersNoConcat.yml │ │ ├── FoldersSeparator.yml │ │ ├── FormData.yml │ │ ├── FormUrlencoded.yml │ │ ├── GetMethods.yml │ │ ├── Headers.yml │ │ ├── InfoOpts.yml │ │ ├── JsonComments.yml │ │ ├── LicenseContact.yml │ │ ├── LicenseContactOpts.yml │ │ ├── LicenseContactPartial.yml │ │ ├── LicenseContactPartial2.yml │ │ ├── MultipleServers.yml │ │ ├── NoPath.yml │ │ ├── NoServers.yml │ │ ├── NoVersion.yml │ │ ├── NullHeader.yml │ │ ├── OperationIds.yml │ │ ├── OperationIdsAuto.yml │ │ ├── OperationIdsBrackets.yml │ │ ├── ParseStatus.yml │ │ ├── PathParams.yml │ │ ├── RawBody.yml │ │ ├── Responses.yml │ │ ├── ResponsesEmpty.yml │ │ ├── ResponsesMultiLang.yml │ │ ├── ResponsesNoHeaders.yml │ │ ├── ServersOpts.yml │ │ ├── UrlWithPort.yml │ │ ├── Variables.yml │ │ ├── VariablesAdditional.yml │ │ ├── XLogo.yml │ │ └── XLogoVar.yml │ └── var-replace │ │ ├── VariablesReplacedV2.json │ │ ├── VariablesReplacedV21.json │ │ ├── VariablesReplacedV21additional.json │ │ └── VariablesReplacedV2additional.json └── var-replacer.spec.js └── types ├── index.d.ts ├── tsconfig.json └── typescript-test.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm test 5 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/bin/cli.js -------------------------------------------------------------------------------- /changelog.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/changelog.config.js -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/assets/img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/demo.gif -------------------------------------------------------------------------------- /docs/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/favicon.ico -------------------------------------------------------------------------------- /docs/assets/img/formDataOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/formDataOptions.png -------------------------------------------------------------------------------- /docs/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/logo.png -------------------------------------------------------------------------------- /docs/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/logo.svg -------------------------------------------------------------------------------- /docs/assets/img/logoBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/logoBanner.png -------------------------------------------------------------------------------- /docs/assets/img/logoBanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/logoBanner.svg -------------------------------------------------------------------------------- /docs/assets/img/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/assets/img/variables.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/docs/index.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/md-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/lib/md-utils.js -------------------------------------------------------------------------------- /lib/var-replacer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/lib/var-replacer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/package.json -------------------------------------------------------------------------------- /test/cli.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/cli.spec.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/md-utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/md-utils.spec.js -------------------------------------------------------------------------------- /test/resources/console/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/console/help.txt -------------------------------------------------------------------------------- /test/resources/input/NoOptionsInBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/NoOptionsInBody.json -------------------------------------------------------------------------------- /test/resources/input/NullHeaders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/NullHeaders.json -------------------------------------------------------------------------------- /test/resources/input/invalidOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/invalidOptions.txt -------------------------------------------------------------------------------- /test/resources/input/issue175.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/issue175.json -------------------------------------------------------------------------------- /test/resources/input/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/options.json -------------------------------------------------------------------------------- /test/resources/input/v2/AuthBasic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/AuthBasic.json -------------------------------------------------------------------------------- /test/resources/input/v2/AuthBearer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/AuthBearer.json -------------------------------------------------------------------------------- /test/resources/input/v2/AuthMultiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/AuthMultiple.json -------------------------------------------------------------------------------- /test/resources/input/v2/AuthRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/AuthRequest.json -------------------------------------------------------------------------------- /test/resources/input/v2/BasepathVar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/BasepathVar.json -------------------------------------------------------------------------------- /test/resources/input/v2/CollectionWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/CollectionWrapper.json -------------------------------------------------------------------------------- /test/resources/input/v2/DeleteOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/DeleteOperation.json -------------------------------------------------------------------------------- /test/resources/input/v2/DepthPathParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/DepthPathParams.json -------------------------------------------------------------------------------- /test/resources/input/v2/DisabledParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/DisabledParams.json -------------------------------------------------------------------------------- /test/resources/input/v2/EmptyUrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/EmptyUrl.json -------------------------------------------------------------------------------- /test/resources/input/v2/ExternalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/ExternalDocs.json -------------------------------------------------------------------------------- /test/resources/input/v2/FolderCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/FolderCollection.json -------------------------------------------------------------------------------- /test/resources/input/v2/FormData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/FormData.json -------------------------------------------------------------------------------- /test/resources/input/v2/FormUrlencoded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/FormUrlencoded.json -------------------------------------------------------------------------------- /test/resources/input/v2/GetMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/GetMethods.json -------------------------------------------------------------------------------- /test/resources/input/v2/Headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/Headers.json -------------------------------------------------------------------------------- /test/resources/input/v2/JsonComments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/JsonComments.json -------------------------------------------------------------------------------- /test/resources/input/v2/LicenseContact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/LicenseContact.json -------------------------------------------------------------------------------- /test/resources/input/v2/MultipleServers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/MultipleServers.json -------------------------------------------------------------------------------- /test/resources/input/v2/NoPath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/NoPath.json -------------------------------------------------------------------------------- /test/resources/input/v2/NoVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/NoVersion.json -------------------------------------------------------------------------------- /test/resources/input/v2/OperationIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/OperationIds.json -------------------------------------------------------------------------------- /test/resources/input/v2/ParseStatusCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/ParseStatusCode.json -------------------------------------------------------------------------------- /test/resources/input/v2/PathParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/PathParams.json -------------------------------------------------------------------------------- /test/resources/input/v2/PostmantoOpenAPI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/PostmantoOpenAPI.json -------------------------------------------------------------------------------- /test/resources/input/v2/RawBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/RawBody.json -------------------------------------------------------------------------------- /test/resources/input/v2/Responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/Responses.json -------------------------------------------------------------------------------- /test/resources/input/v2/ResponsesEmpty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/ResponsesEmpty.json -------------------------------------------------------------------------------- /test/resources/input/v2/ResponsesJsonError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/ResponsesJsonError.json -------------------------------------------------------------------------------- /test/resources/input/v2/ResponsesMultiLang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/ResponsesMultiLang.json -------------------------------------------------------------------------------- /test/resources/input/v2/SimplePost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/SimplePost.json -------------------------------------------------------------------------------- /test/resources/input/v2/UrlWithPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/UrlWithPort.json -------------------------------------------------------------------------------- /test/resources/input/v2/Variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/Variables.json -------------------------------------------------------------------------------- /test/resources/input/v2/XLogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v2/XLogo.json -------------------------------------------------------------------------------- /test/resources/input/v21/AuthBasic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/AuthBasic.json -------------------------------------------------------------------------------- /test/resources/input/v21/AuthBearer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/AuthBearer.json -------------------------------------------------------------------------------- /test/resources/input/v21/AuthMultiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/AuthMultiple.json -------------------------------------------------------------------------------- /test/resources/input/v21/AuthRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/AuthRequest.json -------------------------------------------------------------------------------- /test/resources/input/v21/BasepathVar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/BasepathVar.json -------------------------------------------------------------------------------- /test/resources/input/v21/CollectionWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/CollectionWrapper.json -------------------------------------------------------------------------------- /test/resources/input/v21/DeleteOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/DeleteOperation.json -------------------------------------------------------------------------------- /test/resources/input/v21/DepthPathParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/DepthPathParams.json -------------------------------------------------------------------------------- /test/resources/input/v21/DisabledParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/DisabledParams.json -------------------------------------------------------------------------------- /test/resources/input/v21/EmptyUrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/EmptyUrl.json -------------------------------------------------------------------------------- /test/resources/input/v21/ExternalDocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/ExternalDocs.json -------------------------------------------------------------------------------- /test/resources/input/v21/FolderCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/FolderCollection.json -------------------------------------------------------------------------------- /test/resources/input/v21/FormData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/FormData.json -------------------------------------------------------------------------------- /test/resources/input/v21/FormUrlencoded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/FormUrlencoded.json -------------------------------------------------------------------------------- /test/resources/input/v21/GetMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/GetMethods.json -------------------------------------------------------------------------------- /test/resources/input/v21/Headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/Headers.json -------------------------------------------------------------------------------- /test/resources/input/v21/JsonComments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/JsonComments.json -------------------------------------------------------------------------------- /test/resources/input/v21/LicenseContact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/LicenseContact.json -------------------------------------------------------------------------------- /test/resources/input/v21/MultipleServers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/MultipleServers.json -------------------------------------------------------------------------------- /test/resources/input/v21/NoPath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/NoPath.json -------------------------------------------------------------------------------- /test/resources/input/v21/NoVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/NoVersion.json -------------------------------------------------------------------------------- /test/resources/input/v21/OperationIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/OperationIds.json -------------------------------------------------------------------------------- /test/resources/input/v21/ParseStatusCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/ParseStatusCode.json -------------------------------------------------------------------------------- /test/resources/input/v21/PathParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/PathParams.json -------------------------------------------------------------------------------- /test/resources/input/v21/PostmantoOpenAPI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/PostmantoOpenAPI.json -------------------------------------------------------------------------------- /test/resources/input/v21/RawBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/RawBody.json -------------------------------------------------------------------------------- /test/resources/input/v21/Responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/Responses.json -------------------------------------------------------------------------------- /test/resources/input/v21/ResponsesEmpty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/ResponsesEmpty.json -------------------------------------------------------------------------------- /test/resources/input/v21/ResponsesJsonError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/ResponsesJsonError.json -------------------------------------------------------------------------------- /test/resources/input/v21/ResponsesMultiLang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/ResponsesMultiLang.json -------------------------------------------------------------------------------- /test/resources/input/v21/SimplePost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/SimplePost.json -------------------------------------------------------------------------------- /test/resources/input/v21/UrlWithPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/UrlWithPort.json -------------------------------------------------------------------------------- /test/resources/input/v21/Variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/Variables.json -------------------------------------------------------------------------------- /test/resources/input/v21/XLogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/input/v21/XLogo.json -------------------------------------------------------------------------------- /test/resources/options/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/options/info.json -------------------------------------------------------------------------------- /test/resources/output/AuthBasic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/AuthBasic.yml -------------------------------------------------------------------------------- /test/resources/output/AuthBearer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/AuthBearer.yml -------------------------------------------------------------------------------- /test/resources/output/AuthMultiple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/AuthMultiple.yml -------------------------------------------------------------------------------- /test/resources/output/AuthOptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/AuthOptions.yml -------------------------------------------------------------------------------- /test/resources/output/AuthRequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/AuthRequest.yml -------------------------------------------------------------------------------- /test/resources/output/BasepathVar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/BasepathVar.yml -------------------------------------------------------------------------------- /test/resources/output/Basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/Basic.json -------------------------------------------------------------------------------- /test/resources/output/Basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/Basic.yml -------------------------------------------------------------------------------- /test/resources/output/BasicNoOptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/BasicNoOptions.yml -------------------------------------------------------------------------------- /test/resources/output/BasicWithAuth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/BasicWithAuth.yml -------------------------------------------------------------------------------- /test/resources/output/CollectionWrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/CollectionWrapper.yml -------------------------------------------------------------------------------- /test/resources/output/CustomTag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/CustomTag.yml -------------------------------------------------------------------------------- /test/resources/output/DeleteOperation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/DeleteOperation.yml -------------------------------------------------------------------------------- /test/resources/output/DepthPathParams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/DepthPathParams.yml -------------------------------------------------------------------------------- /test/resources/output/DisabledParamsAll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/DisabledParamsAll.yml -------------------------------------------------------------------------------- /test/resources/output/DisabledParamsDefault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/DisabledParamsDefault.yml -------------------------------------------------------------------------------- /test/resources/output/DisabledParamsHeader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/DisabledParamsHeader.yml -------------------------------------------------------------------------------- /test/resources/output/DisabledParamsQuery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/DisabledParamsQuery.yml -------------------------------------------------------------------------------- /test/resources/output/EmptyUrl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/EmptyUrl.yml -------------------------------------------------------------------------------- /test/resources/output/ExternalDocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ExternalDocs.yml -------------------------------------------------------------------------------- /test/resources/output/ExternalDocsOpts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ExternalDocsOpts.yml -------------------------------------------------------------------------------- /test/resources/output/ExternalDocsOptsPartial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ExternalDocsOptsPartial.yml -------------------------------------------------------------------------------- /test/resources/output/Folders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/Folders.yml -------------------------------------------------------------------------------- /test/resources/output/FoldersNoConcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/FoldersNoConcat.yml -------------------------------------------------------------------------------- /test/resources/output/FoldersSeparator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/FoldersSeparator.yml -------------------------------------------------------------------------------- /test/resources/output/FormData.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/FormData.yml -------------------------------------------------------------------------------- /test/resources/output/FormUrlencoded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/FormUrlencoded.yml -------------------------------------------------------------------------------- /test/resources/output/GetMethods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/GetMethods.yml -------------------------------------------------------------------------------- /test/resources/output/Headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/Headers.yml -------------------------------------------------------------------------------- /test/resources/output/InfoOpts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/InfoOpts.yml -------------------------------------------------------------------------------- /test/resources/output/JsonComments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/JsonComments.yml -------------------------------------------------------------------------------- /test/resources/output/LicenseContact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/LicenseContact.yml -------------------------------------------------------------------------------- /test/resources/output/LicenseContactOpts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/LicenseContactOpts.yml -------------------------------------------------------------------------------- /test/resources/output/LicenseContactPartial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/LicenseContactPartial.yml -------------------------------------------------------------------------------- /test/resources/output/LicenseContactPartial2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/LicenseContactPartial2.yml -------------------------------------------------------------------------------- /test/resources/output/MultipleServers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/MultipleServers.yml -------------------------------------------------------------------------------- /test/resources/output/NoPath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/NoPath.yml -------------------------------------------------------------------------------- /test/resources/output/NoServers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/NoServers.yml -------------------------------------------------------------------------------- /test/resources/output/NoVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/NoVersion.yml -------------------------------------------------------------------------------- /test/resources/output/NullHeader.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/NullHeader.yml -------------------------------------------------------------------------------- /test/resources/output/OperationIds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/OperationIds.yml -------------------------------------------------------------------------------- /test/resources/output/OperationIdsAuto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/OperationIdsAuto.yml -------------------------------------------------------------------------------- /test/resources/output/OperationIdsBrackets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/OperationIdsBrackets.yml -------------------------------------------------------------------------------- /test/resources/output/ParseStatus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ParseStatus.yml -------------------------------------------------------------------------------- /test/resources/output/PathParams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/PathParams.yml -------------------------------------------------------------------------------- /test/resources/output/RawBody.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/RawBody.yml -------------------------------------------------------------------------------- /test/resources/output/Responses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/Responses.yml -------------------------------------------------------------------------------- /test/resources/output/ResponsesEmpty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ResponsesEmpty.yml -------------------------------------------------------------------------------- /test/resources/output/ResponsesMultiLang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ResponsesMultiLang.yml -------------------------------------------------------------------------------- /test/resources/output/ResponsesNoHeaders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ResponsesNoHeaders.yml -------------------------------------------------------------------------------- /test/resources/output/ServersOpts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/ServersOpts.yml -------------------------------------------------------------------------------- /test/resources/output/UrlWithPort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/UrlWithPort.yml -------------------------------------------------------------------------------- /test/resources/output/Variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/Variables.yml -------------------------------------------------------------------------------- /test/resources/output/VariablesAdditional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/VariablesAdditional.yml -------------------------------------------------------------------------------- /test/resources/output/XLogo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/XLogo.yml -------------------------------------------------------------------------------- /test/resources/output/XLogoVar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/output/XLogoVar.yml -------------------------------------------------------------------------------- /test/resources/var-replace/VariablesReplacedV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/var-replace/VariablesReplacedV2.json -------------------------------------------------------------------------------- /test/resources/var-replace/VariablesReplacedV21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/var-replace/VariablesReplacedV21.json -------------------------------------------------------------------------------- /test/resources/var-replace/VariablesReplacedV21additional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/var-replace/VariablesReplacedV21additional.json -------------------------------------------------------------------------------- /test/resources/var-replace/VariablesReplacedV2additional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/resources/var-replace/VariablesReplacedV2additional.json -------------------------------------------------------------------------------- /test/var-replacer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/test/var-replacer.spec.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/types/tsconfig.json -------------------------------------------------------------------------------- /types/typescript-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joolfe/postman-to-openapi/HEAD/types/typescript-test.ts --------------------------------------------------------------------------------