Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

openapi-to-postmanv2

postmanlabs460.2kApache-2.05.0.1TypeScript support: definitely-typed

Convert a given OpenAPI specification to Postman Collection v2.0

openapi, postman, api, schema, swagger, oas

readme

The Postman Logo

Supercharge your API workflow. Modern software is built on APIs. Postman helps you develop APIs faster.

OpenAPI 3.0, 3.1 and Swagger 2.0 to Postman Collection

Build Status

npm npm

Contents

  1. Getting Started
  2. Command Line Interface
    1. Options
    2. Usage
  3. Using the converter as a NodeJS module
    1. Convert Function
    2. Options
    3. ConversionResult
    4. Sample usage
    5. Validate function
  4. Conversion Schema


🚀 We now also support OpenAPI 3.1 and Swagger 2.0 along with OpenAPI 3.0.



💭 Getting Started

To use the converter as a Node module, you need to have a copy of the NodeJS runtime. The easiest way to do this is through npm. If you have NodeJS installed you have npm installed as well.

$ npm install openapi-to-postmanv2

If you want to use the converter in the CLI, install it globally with NPM:

$ npm i -g openapi-to-postmanv2

📖 Command Line Interface

The converter can be used as a CLI tool as well. The following command line options are available.

openapi2postmanv2 [options]

Options

  • -s <source>, --spec <source> Used to specify the OpenAPI specification (file path) which is to be converted

  • -o <destination>, --output <destination> Used to specify the destination file in which the collection is to be written

  • -p, --pretty Used to pretty print the collection object while writing to a file

  • -i, --interface-version Specifies the interface version of the converter to be used. Value can be 'v2' or 'v1'. Default is 'v2'.

  • -O, --options Used to supply options to the converter, for complete options details see here

  • -c, --options-config Used to supply options to the converter through config file, for complete options details see here

  • -t, --test Used to test the collection with an in-built sample specification

  • -v, --version Specifies the version of the converter

  • -h, --help Specifies all the options along with a few usage examples on the terminal

Usage

  • Takes a specification (spec.yaml) as an input and writes to a file (collection.json) with pretty printing and using provided options

    $ openapi2postmanv2 -s spec.yaml -o collection.json -p -O folderStrategy=Tags,includeAuthInfoInExample=false
  • Takes a specification (spec.yaml) as an input and writes to a file (collection.json) with pretty printing and using provided options via config file

    $ openapi2postmanv2 -s spec.yaml -o collection.json -p  -c ./examples/cli-options-config.json
  • Takes a specification (spec.yaml) as an input and writes to a file (collection.json) with pretty printing and using provided options (Also avoids any "<Error: Too many levels of nesting to fake this schema>" kind of errors present in converted collection)

    $ openapi2postmanv2 -s spec.yaml -o collection.json -p -O folderStrategy=Tags,requestParametersResolution=Example,optimizeConversion=false,stackLimit=50
  • Testing the converter

    $ openapi2postmanv2 --test

🛠 Using the converter as a NodeJS module

In order to use the convert in your node application, you need to import the package using require.

var Converter = require('openapi-to-postmanv2')

The converter provides the following functions:

Convert

The convert function takes in your OpenAPI 3.0, 3.1 and Swagger 2.0 specification ( YAML / JSON ) and converts it to a Postman collection.

Signature: convert (data, options, callback);

data:

{ type: 'file', data: 'filepath' }
OR
{ type: 'string', data: '<entire OpenAPI string - JSON or YAML>' }
OR
{ type: 'json', data: OpenAPI-JS-object }

options:

{
  schemaFaker: true,
  requestNameSource: 'fallback',
  indentCharacter: ' '
}
/*
All three properties are optional. Check the options section below for possible values for each option.
*/

Note: All possible values of options and their usage can be found over here: OPTIONS.md

callback:

function (err, result) {
  /*
  result = {
    result: true,
    output: [
      {
        type: 'collection',
        data: {..collection object..}
      }
    ]
  }
  */
}

Options

Check out complete list of options and their usage at OPTIONS.md

ConversionResult

  • result - Flag responsible for providing a status whether the conversion was successful or not.

  • reason - Provides the reason for an unsuccessful conversion, defined only if result if false.

  • output - Contains an array of Postman objects, each one with a type and data. The only type currently supported is collection.

Sample Usage

const fs = require('fs'),
  Converter = require('openapi-to-postmanv2'),
  openapiData = fs.readFileSync('sample-spec.yaml', {encoding: 'UTF8'});

Converter.convert({ type: 'string', data: openapiData },
  {}, (err, conversionResult) => {
    if (!conversionResult.result) {
      console.log('Could not convert', conversionResult.reason);
    }
    else {
      console.log('The collection object is: ', conversionResult.output[0].data);
    }
  }
);

Validate Function

The validate function is meant to ensure that the data that is being passed to the convert function is a valid JSON object or a valid (YAML/JSON) string.

The validate function is synchronous and returns a status object which conforms to the following schema

Validation object schema

{
  type: 'object',
  properties: {
    result: { type: 'boolean'},
    reason: { type: 'string' }
  },
  required: ['result']
}
Validation object explanation
  • result - true if the data looks like OpenAPI and can be passed to the convert function

  • reason - Provides a reason for an unsuccessful validation of the specification

🧭 Conversion Schema

postman openapi related options
collectionName info.title -
description info.description + info.contact -
collectionVariables server.variables + pathVariables -
folderName paths.path / tags.name folderStrategy
requestName operationItem(method).summary / operationItem(method).operationId / url requestNameSource
request.method path.method -
request.headers parameter (in = header) -
request.body operationItem(method).requestBody requestParametersResolution, exampleParametersResolution
request.url.raw server.url (path level server >> openapi server) + path -
request.url.variables parameter (in = path) -
request.url.params parameter (in = query) -
api_key in (query or header) components.securitySchemes.api_key includeAuthInfoInExample

changelog

OpenAPI-Postman Changelog

Unreleased

v5.0.1 - 2025-07-22

v5.0.0 - 2025-03-07

Breaking Changes

  • Drop support for node < v18.

v4.25.0 - 2025-01-15

v4.24.0 - 2024-08-13

Added

  • #98 12255 Added support for readOnly and writeOnly properties to be correctly present in generated collection.

Chore

  • Replaced traverse with neotraverse.

v4.23.1 - 2024-07-22

Added

  • Conversion - Added option to set preferred request body content-type and use the first mentioned content-type as request body.

Fixed

  • Fixed issue with getOptions() API where default module version was still v1.
  • Fix to convert "format:binary" to "type:file" for requests with formdata body.

v4.22.0 - 2024-07-10

Chore

  • Updated postman-collection to v4.4.0.

v4.21.0 - 2024-05-17

Added

  • Added support for simplified request and response body matching in case of multiple examples.

v4.20.1 - 2024-03-27

Fixed

  • Fixed an issue where schemas under allOf keyword having additionalProperties set to false were not generating bodies correctly.

v4.20.0 - 2024-02-15

Added

  • Added support for reporting UserErrors in case when OpenAPI definition to converted is invalid.

v4.19.0 - 2024-01-18

v4.18.0 - 2023-09-28

  • #425 8413 Added support for multiple request and response examples.

v4.17.0 - 2023-09-12

v4.16.0 - 2023-08-18

Added

  • Added support for remote $ref resolution in bundle() API.

v4.15.0 - 2023-06-27

Added

  • Added support for usage of XML examples of type string.

Fixed

  • Fixed issue where generated collection contained request and folder in incorrect order for v2 interface.
  • Fixed issue where collection generation took very large time.

Changed

  • Reduced collection size by keeping maximum generated elements for array as 1 for definitions with larger schemas.

v4.14.0 - 2023-06-07

Added

  • Added support for consumption of schema level examples while generating data from XML schemas.

Fixed

  • Fixed the default value of auth in the generated request when it is not resolved.
  • Fixed issue where collection name was empty in cases where definition title was defined as empty string.

v4.13.0 - 2023-05-24

Added

  • Added support for generating request and response bodies in correct XML format from mentioned examples.
  • Added support for validation of specifications in case of errors to report User input errors correctly.

Fixed

  • Fixed issue where conversion was stuck for certain schemas with pattern.
  • Fixed an issue where definition validation was not considering multiple white space characters.
  • Fixed issue #708 where if string is defined for required field, conversion was failing.
  • Fixed issue where for certain path segments, collection generation failed.
  • Fixed TypeError occurring while checking typeof bodyContent in getXmlVersionContent.

v4.12.0 - 2023-05-04

Added

  • Fixed issue #31 Added support for enableOptionalParameters option in v2 interface.

Fixed

  • Fixed issue #11835 where Accept header was not present in Example request.
  • Fixed issue where conversion was failing with RangeError in case of non-schema circular refs.
  • Fixed issue where conversion was failing with TypeError by safer lodash functions usage.
  • Fixed issue where TypeErrors were happening for null/undefined params.

v4.11.0 - 2021-04-14

Added

  • Fixed issue #11680 Added support for contentType field for Formdata request bodies.
  • Fixed issue #10928 Added support for usage of interface version in CLI conversions with v2 as default.

Fixed

  • Fixed various known type errors related issues that were causing conversion errors.
  • Fixed an issue where default response was not considered correctly while validating collection request response.

Previous Releases

Newer releases follow the Keep a Changelog format.

v4.10.2 (March 13, 2023)

  • Fixed issue where Accept header was generated correctly in convertV2() interface.

v4.10.1 (March 09, 2023)

  • Fixed issue where request name generated were not validated correctly.
  • Fixed test where getOptions() was not using criteria correctly.
  • Fixed issue where deprecated params were reported missing even for includeDeprecated=false

v4.10.0 (March 08, 2023)

  • Added support for convertV2() interface which has more stacklimit for schema resolution.
  • Added support for validateTransactionV2() interface uses same v2 interface for resolving schema.
  • Fixed multiple issues for urlencoded body with anyOf and oneOf schemas where valid data was reported as mismatches.

v4.9.0 (February 06, 2023)

  • Fixed issue #660 where for certain XML request bodies, conversion was failing with TypeError.
  • Fixed issue where for some definitions having non-string URLs were failing conversion with TypeErrors.
  • Fixed issue where a test in-consistently kept failing due to uncertainity of jsf library.

v4.8.0 (January 24, 2023)

  • Added specifictionVersion field to validate result.

v4.7.0 (January 16, 2023)

  • Fixed an issue where same schema was being validated against examples multiple times during a conversion - using local cache here.
  • Added a way to return analytics along with the result for better observability into the kind of schemas we get for conversion.
  • Refactored the resolveRefs and resolveAll to take in an options object as an argument.

v4.6.0 (December 30, 2022)

  • Fixed issue where bundling of multi-file definition was not working correctly for more than 10 params correctly.
  • Fixed issue where request name was not using operation description if available.

v4.5.0 (December 23, 2022)

  • Fixed issue #11519 Collection generated from imported OpenAPI were missing certain properties.
  • Fixed issue #11227 Collection generated produces incorrect XML requests and responses from Open API 3.0 and Swagger 2.0 API definitions.
  • Fixed issue #11527 where generated collection contained empty body when / was used as content-type.
  • Fixed issue #626 - Add a new option (includeDeprecated) to handle deprecated properties (operations, parameters, or schema properties).
  • Fixed issue #643 Generated value for corresponding authorization should be an environment value.
  • Removed travis workflows as GitHub actions are present now.
  • Updated README.md to include Swagger 2.0 and OpenAPI 3.1 support.
  • Updated README.md to include new postman logo.

v4.4.0 (November 29, 2022)

  • Fixed issue where collection folder name for paths were having extra spaces.
  • Fixed issue where pipelines were failing for certain node version.

v4.3.0 (October 17, 2022)

  • Fixed issue with nullable keywords getting validated incorrectly.

v4.2.0 (August 10, 2022)

  • Improved the way to detect a circular reference by adding a new condition
  • A schema that comes from an allOf parent then we now return the same schema instead of defaulting to a schema with type as object, and no other properties
  • The method resolveAllOf is executed when the current node is an allOf element.
  • Avoiding to set type as object when property's schema is an empty object.
  • Added OAuth2 flows and configuration support.
  • OAuth2 values now default to variables instead of hardcoded strings.

v4.1.1 (July 29, 2022)

  • Replaced Object.hasOwnProperty usages with loadsh _.has for safe access.

v4.1.0 (July 20, 2022)

  • Fixed issue where conversion was failing for definitions with info object as null.
  • Fixed issue where generated collection did not have correct examples value from XML type of content.
  • Fixed issue #518 where generated collection were having NaN as value for integer query params with enum values.
  • Fixed issue #496 where validateTransactions() was returning missing endpoints even though corresponding requests are present in collection.
  • Fixed issue #478 where updation of path parameter in collection resulted in MISSING_IN_REQUEST error.
  • Fixed issue #559 where parameter description was undefined for formdata type of content even if defined.
  • Fixed issue where bundle() API didn't handle circular references correctly.
  • Added non-required files to be published as npm module in .npmignore
  • Fixed issue where disableBodyPruning option was not set for requests with no request body.

v4.0.0 (July 12, 2022)

  • Added support for new multi-file API detectRootFiles() for OpenAPI 3 and Swagger 2 formats to support detection of root files among multiple files.
  • Added support for new multi-file API detectRelatedFiles() for OpenAPI 3 and Swagger 2 formats to support detection of related files for a provided root file amongst multiple files.
  • Added support for new multi-file API bundle() for OpenAPI 3 and Swagger 2 formats to support bundling of root files from provided multiple files.

v3.2.0 (May 02, 2022)

  • Fixed some of critical and high level severity vulnerabilities.
  • Fixed issue #10752 where deepObject style parameters were not generated correctly.
  • Fixed issue #485 where validateTransaction() returns result where mismatch path for transaction are incorrect.
  • Fixed issue #485 where validateTransaction() returns result where mismatch path for transaction are incorrect.

v3.1.0 (March 04, 2022)

  • Removed usage of schema resolution cache to avoid incorrect resolution.
  • Fixed issue where newly converted collection had mismatches from validateTransaction() API.
  • Fixed issue where falsy example were not getting converted correctly in generated collection.
  • Fixed issue where readOnly and writeOnly properties were not removed from required in resolved schema.
  • Fixed issue where if schema had pattern as property, conversion failed with error.

v3.0.0 (Feb 11, 2022)

v2.14.0 (January 31, 2022)

  • Fixed issue where for certain collection requests validateTransactions() provided missing path varaible in request even though it was present.
  • Fixed issue where we threw TypeError for undefined parameters.
  • Fixed issue where $ref in additionalProperties created issue with validation.
  • Fixed issue where content-type with wild characters resulted in mismatches for valid collection headers.

v2.13.0 (December 08, 2021)

  • Fixed issue where validation agaist collection failed for collection with larger request name.
  • Added support for composite schema during validation flow.

v2.12.0 (October 14, 2021)

  • Fixed issue where conversion failed with type error if header example was null.
  • Fixed issue where validation was giving INVALID_TYPE instead of MISSING_IN_REQUEST if path variable is not present in transaction.
  • Fix issue where json and xml lanugages were not detected from the example request body content type
  • Set param type in request to file if schema type is string and format is binary in binary body type.
  • Handle the case when request body is of type string and format binary in form-data body type.
  • Fixed path variable conversion in collection's examples.

v2.11.0 (September 28, 2021)

  • Fixed issue where generated collection contained response code as null.
  • Added option to manage implicit headers.
  • Bumped up few dependency versions.

v2.10.1 (August 18, 2021)

  • Added new internal option "stackLimit" to define nesting level till which schema gets resolved.

v2.10.0 (August 06, 2021)

  • Fixed issue where invalid cached schemas were being used for resolution.
  • Fixed issue where example values with pm variable syntax were not picked up in conversion.
  • Fixed the value format for apiKey security scheme.
  • Fixed issue where description was missing from suggested fix from mismatches.
  • Updated vulnerable dependencies.
  • Added support for release script to automate the task.

v2.9.0 (July 16, 2021)

  • Fixed issue where params with style deepObject were converted to only one level of key-value pair.

v2.8.0 (June 29, 2021)

  • Add a new argument in input object 'origin' to handle browser specific changes.
  • Added handling for type errors encountered on sentry.

v2.7.0 (May 14, 2021)

  • Added support for no-auth as auth in collection when empty object is specified in OAS.
  • Bumped up dependencies and dev-dependencies.

v2.6.0 (May 05, 2021)

  • Fixed issue where nested objects present in parameters caused validation mismatches.
  • Fixed issue in schema faker where schema with property named deafult was faked incorrectly.

v2.5.1 (March 19, 2021)

  • Fixed wrongly defined maxLength and minLength options for schemaFaker.

v2.5.0 (March 18, 2021)

  • Fix for #337 - Fixed issue where non-required params were not disbled for urlencoded body.
  • Fix for #338 - Fixed issue where examples which had non-truthy value were not present in converted collection.
  • Fixed issue where resolved schema contain conflicting info regarding pattern and format resulting in validation mismatches.
  • Fixed issue where definition for path variable in path caused no matched request for certain paths in validation.

v2.4.0 (March 08, 2021)

  • Fix for #9396 - Fixed validation issue where result contained matched endpoints in incorrect order.
  • Fix for #328 - Fixed incorrect usage of id field in sdk.variable and used key.
  • Fix for issue where implicit headers generation and validation.
  • Fix for #329 - Fixed issue where --test was failing for cli.

v2.3.0 (February 19, 2021)

  • Fixed issue where content type header was reported missing in validation even if present.
  • Feature request #9046 - Added support for validation of request body of type urlencoded.

v2.2.0 (January 28, 2021)

  • Fixed issue with import folder flow on respective platform.
  • Fixed issue where collection did not contain name for specification with empty string as title.
  • Updated description of option to disable optional parameters.

v2.1.0 (January 27, 2021)

  • Fix for #9404 - Fixed issue where incorrect mismatches were reported for valid path variables.
  • Fixed issue where validation result contained incorrect path variable indices.
  • Fix for #9344 - Fixed issue where for type array examples with more than 2 elements were not used.
  • Fix for #9080 - Fixed issue where parameter examples were not used in faked data.
  • Fix for #315 - Fixed issue where ConfigFile options are overwritten by CLI options.
  • Fix for #69 - Fixed incorrect handling for explodable parameters for resolution schema.
  • Added support for disabling optional parameters via option.

v2.0.0 (October 15, 2020)

  • Updated minimum supported node version to v8.
  • Fixed issue where schemas in allOf were not resolved correctly.
  • Added support for options in CLI converter.
  • Bumped up few dev-dependency versions.

v1.2.7 (September 9, 2020)

  • Fixed issue where schema type object with no properties reolved to string.
  • Fix for #8474 - Unable to validate primitive data types in req/res body.
  • Added support for handling correct media types which were throwing mismatches for validation.
  • Added support for internal $ref resolution in validation flows.
  • Fixed issue where parameter resolution was "schema" when "example" was specified.
  • Add supported formats for schema resolution (deref).
  • Fix for #7643, #7914, #9004 - Added support for Auth params in response/example.
  • Bumped up multiple dependecies and dev-dependencies versions to keep them up-to-date.
  • Updated code coverage tool from deprecated istanbul to nyc.

v1.2.6 (August 10, 2020)

  • Fixed TypeError happening when null parameter value provided.
  • Fixed an issue where suggested value for mismatch did not fix corresponding mismatch upon applying.
  • Fixed issue where root path was not matched during validation.
  • Fixed an issue where transaction was not matching if path had segment with fix and variable parts during valiadtion.
  • Fixed issue where URL did not contain baseUrl as host when base url variables are present.
  • Fixed issue where collection variable generated for path variables had empty values.
  • Fixed issue where invalid deserialisation was happening for param style matrix.
  • Added validation tests to improve code coverage.

v1.2.5 (July 21, 2020)

  • Fixed incorrect variable name in schemapack.js.

v1.2.4 (July 15, 2020)

  • Introducing a new option Optimize conversion for improving performance of conversion for larger schemas.

v1.2.3 (July 14, 2020)

  • Added support for parameter serialisation in conversion and deserialisation in validation.
  • Skipped validation for headers/query-params added by security scheme.
  • Fixed incorrect Url and collection variable when path level server is present.
  • Fixed issue where empty description property caused mismatch.
  • Fixed issue where mismatch was happening even when correct path variable is present.
  • Fixed dataPath handling for root property when dataPath is empty string.
  • Fixed collection variable ignoring when pattern property is present.
  • Added support for collection variables for local servers in suggested request for validation.
  • Fixed TypeError happening when empty parameter is provided.
  • Fixed invalid transaction json path for headers.

v1.2.2 (June 29, 2020)

  • Added support for collection request as suggested value for missing endpoints.
  • Use forked version of oas-resolver to make folder imports work in browser.
  • Fixed issues with collection conforimg to JSON schema validation as per v2.1.0 schema.

v1.2.1 (June 18, 2020)

  • Added support for validating content-type header.

v1.2.0 (June 14, 2020)

  • Added support for stricter request matching via option for validation.
  • Added missing endpoints from collection info in result of validation.
  • Suggest fixes in collection for violated properties in validation.
  • Introduced option to validate metadata for validation.
  • Use faked value instead of fallback to schema for parameter resolution when set to example.
  • Use faked value instead of invalid schema defined example.
  • Introduced option to ignore unresolved postman variable mismatches.
  • Fixed invalid generated collection for body type formdata.

v1.1.19 (June 12, 2020)

  • Fix for #232 - Changes default auth of requests to null conforming to the JSON schema.

v1.1.18 (June 1, 2020)

  • Fix for #86 - Now global security schemes will be added at the collection level.

v1.1.17 (May 15, 2020)

  • Fix for #3 #57 - Introduced a new option folderStrategy, can choose between Tags or Path while creating folders in Postman Collection.
  • Fixed an issue where undefined was returned as error message while trying to import invalid format.
  • Use minItems and maxItems values if available in schema with type array.

v1.1.16 (May 4, 2020)

  • Change Url to URL in Naming Request option.

v1.1.15 (April 29, 2020)

  • Add missing yaml dependency.

v1.1.14 (April 28, 2020)

  • Added a new function to get meta data from a schema.
  • Fix for #169 - Removed unused folderStrategy option.

v1.1.13 (April 21, 2020)

  • Added support for detailed validation body mismatches with option detailedBlobValidation.
  • Fix for #8098 - Unable to validate schema with type array.
  • Fixed URIError for invalid URI in transaction.
  • Fix for #152 - Path references not resolved due to improver handling of special characters.
  • Fix for #160 - Added handling for variables in local servers not a part of a URL segment. All path servers to be added as collection variables.
  • Unresolved refs will not be stored in schemaResolutionCache.

v1.1.12 (Mar 26, 2020)

v1.1.11 (Mar 14, 2020)

  • Safely handling invalid reference schemas/properties

v1.1.10 (Mar 4, 2020)

  • Safely handling malformed URIs and schemas

v1.1.9 (Feb 17, 2020)

  • Support for multi-file schemas. Added a new input method 'folder'.

v1.1.8 (Feb 15, 2020)

v1.1.7 (Feb 05, 2020)

v1.1.6 (Jan 13, 2020)

  • Not throwing errors for missing schema path entries

v1.1.5 (Jan 10, 2020)

  • Not throwing errors for invalid schema references
  • Not throwing errors for invalid schema.path entries
  • Not throwing errors for unknown schema types

v1.1.4 (Jan 07, 2020)

  • More updated copy for mismatch reasons
  • Added missing dependency for async.js

v1.1.2/v1.1.3 (Jan 03, 2020)

  • Updated copy for mismatch reasons
  • Returning errors instead of exceptions for invalid schemas
  • Fix for duplicate mismatches

v1.1.1 (Jan 03, 2020)

  • Correct validation against JSON request/response bodies
  • Correct JSON paths in response mismatches

v1.1.0 (Jan 02, 2020)

  • Handling cases where API definition parameters have no schema
  • Validating input transaction schema before starting validation
  • Forcing path variable descriptions to be strings instead of objects

v1.0.2 (Jan 01, 2020)

  • Exposing option to hide MISSING_IN_SCHEMA mismatches, hiding them by default
  • Consistent response formats, more resilient against invalid schemas

v1.0.1 (Jan 01, 2020)

  • Deleting 'info.version' from generated collection JSON - it's not required and was causing versioning problems
  • Scope-related bugfixes in schema validation flows

v1.0.0 (Dec 31, 2019)

v0.2.0 (Nov 22, 2019)

  • Handled cases where the URL query has no description property
  • Fix for https://github.com/postmanlabs/openapi-to-postman/issues/117 - Maintaining descriptions for form-urlencoded body params
  • Added various options for converting OpenAPI specs into Postman Collections, including controlling how examples are generated
  • Request parameters now default to a schema-based value generation, response parameters default to example-based value generation.

v0.1.0 (Oct 1, 2019)

v0.0.17/v0.0.18 (Sep 3, 2019)

v0.0.16 (July 22, 2019)

v0.0.14 / v0.0.15 (June 5, 2019)

v0.0.13 (May 29, 2019)

v0.0.12 (Apr 17, 2019)

v0.0.11 (Apr 17, 2019)

v0.0.10 (Jan 31, 2019)

  • Safe property access to empty content/authHelper objects
  • Setting postman_previewLanguage while setting responses
  • Not overriding non-string variable types during schema faking
  • Not doubly-stringifying string headers

v0.0.9 (December 17, 2018)

v0.0.8 (December 12, 2018)

  • Refactoring, restucturing tests
  • Adding support for xml chemas
  • Enabling travis CI
  • Updating README, adding a license, moving to Github

v0.0.7 (December 7, 2018)

  • Converting all console.error to console.warn

v0.0.6 (December 5, 2018)

  • Handling schema.enum when no other schema is specified
  • Resolving parameter schemas while creating requests
  • Correctly setting path variable descriptions
  • Using a browserified json-schema-faker

v0.0.5 (November 30, 2018)

  • Populating the original request in generated example responses
  • Infer the response content-type header from the response body
  • Generating more human-readable folder/request names from snake_case/camelCase

v0.0.4 (November 29, 2018)

  • Handling nested schemas, correct handling for oneOf/anyOf

v0.0.3 (November 29, 2018)

  • Prefer examples to schemas while generating example response body
  • Correct handling for scheme variables in the URL
  • Ignoring schema errors for invalid references
  • Blocking schema nesting of >20 levels
  • Correctly handling empty security sets for requests
  • Removing the insecure node-uuid dependency

v0.0.2 (November 19, 2018)

  • Adding default URLs if "server" is absent
  • Better indication of lack-of-support for allOf schemas

v0.0.1 (October 23, 2018)

  • Base release