├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── openapi-to-har.js ├── package.json └── test ├── blogger_swagger.json ├── form_data_example.json ├── form_urlencoded_example.json ├── github_swagger.json ├── ibm_watson_alchemy_data_news_api.json ├── instagram_swagger.json ├── multiple_request_content.json ├── parameter_example_swagger.json ├── parameter_schema_reference.json ├── parameter_variations_swagger.json ├── petstore_oas.json ├── petstore_swagger.json ├── test.js └── watson_alchemy_language_swagger.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.yml 3 | *.md 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/index.js -------------------------------------------------------------------------------- /openapi-to-har.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/openapi-to-har.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/package.json -------------------------------------------------------------------------------- /test/blogger_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/blogger_swagger.json -------------------------------------------------------------------------------- /test/form_data_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/form_data_example.json -------------------------------------------------------------------------------- /test/form_urlencoded_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/form_urlencoded_example.json -------------------------------------------------------------------------------- /test/github_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/github_swagger.json -------------------------------------------------------------------------------- /test/ibm_watson_alchemy_data_news_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/ibm_watson_alchemy_data_news_api.json -------------------------------------------------------------------------------- /test/instagram_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/instagram_swagger.json -------------------------------------------------------------------------------- /test/multiple_request_content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/multiple_request_content.json -------------------------------------------------------------------------------- /test/parameter_example_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/parameter_example_swagger.json -------------------------------------------------------------------------------- /test/parameter_schema_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/parameter_schema_reference.json -------------------------------------------------------------------------------- /test/parameter_variations_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/parameter_variations_swagger.json -------------------------------------------------------------------------------- /test/petstore_oas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/petstore_oas.json -------------------------------------------------------------------------------- /test/petstore_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/petstore_swagger.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/test.js -------------------------------------------------------------------------------- /test/watson_alchemy_language_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikWittern/openapi-snippet/HEAD/test/watson_alchemy_language_swagger.json --------------------------------------------------------------------------------