New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bravado-core

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bravado-core - npm Package Compare versions

Comparing version 0.8.8 to 0.9.0

7

lib/prepare-params.js

@@ -40,2 +40,9 @@ module.exports = function (event, context) {

break;
case 'formData':
case 'multipart':
if (param.type === 'file') {
params[param.name] = event.request.files[param.name];
} else {
params[param.name] = event.request.body[param.name];
}
}

@@ -42,0 +49,0 @@ if (param.type === 'array' && 'string' === typeof params[param.name]) {

2

package.json
{
"name": "bravado-core",
"version": "0.8.8",
"version": "0.9.0",
"description": "REST (Level 3/HATEOAS) API Framework",

@@ -5,0 +5,0 @@ "directories": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc