Socket
Socket
Sign inDemoInstall

qcobjects-cli

Package Overview
Dependencies
Maintainers
1
Versions
197
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qcobjects-cli - npm Package Compare versions

Comparing version 0.1.53 to 0.1.54

26

backend/org.quickcorp.backend.openapi.js

@@ -69,4 +69,19 @@ /**

var openapipath = {
"get" : {
var openapipath = {};
if (route.supported_methods){
route.supported_methods.map(function (supportedmethod){
openapipath[supportedmethod] = {
"summary" : route.name,
"description" : route.description,
"parameters" : openapiparams,
"responses" : {
"200" : {
"description" : "OK"
}
},
"security" : [ "read", "write" ]
};
});
} else {
openapipath["get"] = {
"summary" : route.name,

@@ -80,5 +95,6 @@ "description" : route.description,

},
"security" : [ ]
}
};
"security" : [ "read", "write" ]
};
}
openapipaths[openapipathname] = openapipath;

@@ -85,0 +101,0 @@ }

2

package.json
{
"name": "qcobjects-cli",
"version": "0.1.53",
"version": "0.1.54",
"description": "qcobjects cli command line tool",

@@ -5,0 +5,0 @@ "main": "qcobjects-cli.js",

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