We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building for Postman, docs for query parameters are not included, though docs for path variables are.
I have this in my input:
"args" : [ { "argName" : "walletAddress", "type" : { "type" : "primitive", "primitive" : "STRING" }, "paramType" : { "type" : "path", "path" : { } }, "docs" : "The requested wallet address. Passing in an `ENS`, `RNS`, `Lens Handle`, or an `Unstoppable Domain` resolves automatically.", "markers" : [ ], "tags" : [ ] }, { "argName" : "testnets", "type" : { "type" : "primitive", "primitive" : "BOOLEAN" }, "paramType" : { "type" : "query", "query" : { "paramId" : "testnets" } }, "docs" : "Set to true to include testnets with activity in the response. By default, it's set to `false` and only returns mainnet activity.", "markers" : [ ], "tags" : [ ] } ]
Note the "docs" field is populated for both parameter types above. However, the description field for query is not created, like it is for variable:
description
query
variable
"variable":[{ "key": "walletAddress", "description": "The requested wallet address. Passing in an `ENS`, `RNS`, `Lens Handle`, or an `Unstoppable Domain` resolves automatically." }], "query":[{ "key": "testnets", "value": "", "disabled": false }]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When building for Postman, docs for query parameters are not included, though docs for path variables are.
I have this in my input:
Note the "docs" field is populated for both parameter types above. However, the
description
field forquery
is not created, like it is forvariable
:The text was updated successfully, but these errors were encountered: