Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@readme/oas-to-har
Advanced tools
Utility to transform an OAS operation into a HAR representation
npm install --save @readme/oas-to-har
import Oas from 'oas';
import oasToHar from '@readme/oas-to-har';
import petstore from './petstore.json';
const spec = new Oas(petstore);
console.log(oasToHar(spec, spec.operation('/pets', 'post')));
{
"log": {
"entries": [
{
"request": {
"cookies": [],
"headers": [],
"headersSize": 0,
"queryString": [],
"bodySize": 0,
"method": "POST",
"url": "http://petstore.swagger.io/v2/pets",
"httpVersion": "HTTP/1.1"
}
}
]
}
}
oasToHar(oas, operationSchema, values, auth, opts) => Object
oas
{Oas}: Instance of our oas/tooling class.operationSchema
{Object|Operation}: Can either be an object with path
and method
properties (that exist in the supplied OAS), or an instance of our Operation
class from oas/tooling - accessed through new Oas(spec).operation(path, method)
.values
{Object}: A object of payload data, with key-value data therein, that should be used to construct the request. Available data you can define here:
path
query
body
cookie
formData
header
server
— If the supplied OAS has multiple severs or server variables you can use this to set which server and variables to use. Shape of it should be: { selected: Integer, variables: { ...key-values }}
. selected
should coorespond to index of the servers
array in your OAS.auth
{Object}: Authentication information for the request.opts.proxyUrl
{Boolean}: Boolean to toggle if composed HAR objects should have their url
be sent through our CORS-friendly proxy. Defaults to false
.FAQs
Utility to transform an OAS operation into a HAR representation
The npm package @readme/oas-to-har receives a total of 46,913 weekly downloads. As such, @readme/oas-to-har popularity was classified as popular.
We found that @readme/oas-to-har demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.