We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f2562 commit 45ff6aeCopy full SHA for 45ff6ae
1 file changed
src/index.js
@@ -65,11 +65,10 @@ const guid = uuidv4();
65
66
const postmanOutputPath = path.resolve(`/tmp/openapi_schema_postman_${guid}.json`);
67
68
-console.log("Executing step 1.");
+console.log("Parsing Schema File.");
69
OpenAPIHelper.convertOpenAPIToPostman(resolvedOpenAPIPath, postmanOutputPath);
70
-console.log("Executing step 2.");
+console.log("Generating sample codes for your code routes.");
71
OpenAPIHelper.generateSampleCode(postmanOutputPath, language, variant);
72
-console.log("Executing step 3.");
+console.log("Stiching the new Schema.");
73
OpenAPIHelper.addSampleCodeToOpenAPI(resolvedOpenAPIPath, outputAPIPath);
74
-
75
-console.log('Process completed successfully.');
+console.log('Successfully udpated the schema.');
0 commit comments