diff --git a/src/Converters/Postman20/Postman20Converter.php b/src/Converters/Postman20/Postman20Converter.php index 2730d7f..76adfc4 100644 --- a/src/Converters/Postman20/Postman20Converter.php +++ b/src/Converters/Postman20/Postman20Converter.php @@ -5,6 +5,7 @@ declare(strict_types=1); namespace PmConverter\Converters\Postman20; use PmConverter\Collection; +use PmConverter\CollectionVersion; use PmConverter\Converters\{ Abstract\AbstractConverter, ConverterContract}; @@ -33,12 +34,16 @@ class Postman20Converter extends AbstractConverter implements ConverterContract public function convert(Collection $collection, string $outputPath): void { $this->collection = $collection; - $this->collection->info->schema = str_replace('/v2.1.', '/v2.0.', $this->collection->info->schema); - $this->prepareOutputDir($outputPath); - $this->convertAuth($this->collection->raw()); - foreach ($this->collection->item as $item) { - $this->convertItem($item); + // if data was exported from API, here is already valid json to + // just flush it in file, otherwise we need to convert it deeper + if ($this->collection->version() === CollectionVersion::Version21) { + $this->collection->info->schema = str_replace('/v2.1.', '/v2.0.', $this->collection->info->schema); + $this->convertAuth($this->collection->raw()); + foreach ($this->collection->item as $item) { + $this->convertItem($item); + } } + $this->prepareOutputDir($outputPath); $this->writeCollection(); } diff --git a/src/Converters/Postman21/Postman21Converter.php b/src/Converters/Postman21/Postman21Converter.php index 317812a..948de30 100644 --- a/src/Converters/Postman21/Postman21Converter.php +++ b/src/Converters/Postman21/Postman21Converter.php @@ -5,6 +5,7 @@ declare(strict_types=1); namespace PmConverter\Converters\Postman21; use PmConverter\Collection; +use PmConverter\CollectionVersion; use PmConverter\Converters\{ Abstract\AbstractConverter, ConverterContract}; @@ -33,12 +34,16 @@ class Postman21Converter extends AbstractConverter implements ConverterContract public function convert(Collection $collection, string $outputPath): void { $this->collection = $collection; - $this->collection->info->schema = str_replace('/v2.0.', '/v2.1.', $this->collection->info->schema); - $this->prepareOutputDir($outputPath); - $this->convertAuth($this->collection->raw()); - foreach ($this->collection->item as $item) { - $this->convertItem($item); + // if data was exported from API, here is already valid json to + // just flush it in file, otherwise we need to convert it deeper + if ($this->collection->version() === CollectionVersion::Version20) { + $this->collection->info->schema = str_replace('/v2.0.', '/v2.1.', $this->collection->info->schema); + $this->convertAuth($this->collection->raw()); + foreach ($this->collection->item as $item) { + $this->convertItem($item); + } } + $this->prepareOutputDir($outputPath); $this->writeCollection(); }