* feat(openapi): Fix parseDocument return type
* feat(openapi): Add support for apiKey and http security
Add support for apiKey and http security in OpenAPI 3 parser
* feat(openapi): Add env variables for OpenAPI security
* feat(openapi): Restore fixture tests, add skip option for failing test
* feat(openapi): Add/adapt test fixtures
* feat(openapi): Improve Cookie formatting
* Empty commit; trigger CI
* feat(openapi): Add type basic to auth
* feat(curl): parse parameters from url string
* feat(curl): Remove trailing slash after import
* feat(curl): Add exception for failing test
* feat(curl): Parse params from url in curl importer
* Added swagger3 placeholder asset
* Added jest as project dependency, tests are running
* Empty test, but it's green now
* swagger3 -> openapi3
* Updated swagger-parser, tests still green
* Refactor: extract unthrowableParseJson to utils
* All of the parsers should be running, duh
* Oh, duh, that's how we update major versions in npm
* Our first openapi3 test is green
* Two green tests
* Three green tests
* Snapshotting a (mostly) green tree, minus some necessary change from swagger2
* Green tests!
* fixed#1172
Collection variable added to folder environment
* modified code implementation #1172
* refactored code
* feature implemented #754
Code implemented to show the sorce of variable
* #1155 fixed
* code restructuring
* fixed#773
Added hotkey alt+u which swaps variable name with value and vice versa.
Add support for importing 5 new authentication types from both
Postman v2.0 and v2.1 import formats.
- Basic Auth (Fixes#1235)
- Bearer Tokens (Fixes#1236)
- Digest Auth username and password (Fixes#1237)
- AWS IAMv4 Authentication (Fixes#1241)
- Oauth 1.0 and Oauth 2.0 (Fixes#1240)
Note: For Oauth2.0 this means setting authorization to Oauth2 but
generating a disabled config, since postman does not export anything we
can use to fill our config values.
The regex was greedily matching any character which causes problems with
multiple path parameters in a route and it was only replacing once:
input: `/api/v1/{channel}/items/{id}`
output: `/api/v1/{{ channel}/items/{id }}`
* Added support for async importers
* Swagger importer v0.1 - supports import of workspace, environment and endpoints from swagger 2.0 specifications. Supports query params, headers and body. Mocks body of application/json endpoitns
* Refactor: added comments, removed function-in-function declarations
* Fixed import of yaml files. Added tests for both .json and .yaml