openapi-to-postman-complete 0.0.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Command-line tool for converting OpenAPI specs to production-ready Postman collections
|
|
5
5
|
*/
|
|
6
6
|
import { readFileSync, writeFileSync } from 'fs';
|
|
7
|
-
import { enrichCollection } from '@
|
|
7
|
+
import { enrichCollection } from '@postman-enricher/core';
|
|
8
8
|
// @ts-expect-error - openapi-to-postmanv2 doesn't have types
|
|
9
9
|
import Converter from 'openapi-to-postmanv2';
|
|
10
10
|
function showHelp() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openapi-to-postman-complete",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Complete OpenAPI to Postman converter with filtering, descriptions, examples, variables, and auto-generated tests",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openapi",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"api",
|
|
10
10
|
"converter",
|
|
11
11
|
"collection",
|
|
12
|
-
"
|
|
12
|
+
"enricher",
|
|
13
13
|
"production-ready",
|
|
14
14
|
"testing",
|
|
15
15
|
"examples",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"openapi-to-postmanv2": "^5.5.0",
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
31
|
+
"@postman-enricher/core": "1.0.0",
|
|
32
|
+
"@postman-enricher/shared": "1.0.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@anolilab/semantic-release-pnpm": "^3.0.0",
|