You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: issue #33 postman request descriptions are strings (#34)
* chore: consider postman description can be object/string/null
Content will be populated, with string value, if not expliclity set.
* chore: bump rel version to 0.6.1
varapiContent=newStringContent(JsonSerializer.Serialize(newApiRequest(){Name=cleanedAPIName,Type="REST",Description=$"imported from postman on {DateTime.UtcNow.ToShortDateString()}"}),Encoding.UTF8,"application/json");
183
+
varapiContent=newStringContent(JsonSerializer.Serialize(newApiRequest(){Name=cleanedAPIName,Type="REST",Description=$"{item.Request.Description?.Content+"\n" }imported from postman on {DateTime.UtcNow.ToShortDateString()}"}),Encoding.UTF8,"application/json");
0 commit comments