| 4 | import { json_parse, unbase64 } from '../../common/utils.js'; |
| 5 | |
| 6 | const transformJsonToSchema = json => { |
| 7 | json = json || {}; |
| 8 | let jsonData = json_parse(json); |
| 9 | |
| 10 | jsonData = GenerateSchema(jsonData); |
| 11 | |
| 12 | let schemaData = JSON.stringify(jsonData); |
| 13 | |
| 14 | return schemaData; |
| 15 | }; |
| 16 | |
| 17 | function postman(importDataModule) { |
| 18 | function parseUrl(url) { |
no test coverage detected