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

api-gensdk

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

api-gensdk - npm Package Compare versions

Comparing version

to
0.1.9

11

lib/gen.js

@@ -56,2 +56,13 @@ "use strict";

metadata[ClassName].push(route);
// 类型兼容
route.params.forEach(param => {
switch (param.type) {
case 'integer':
param.type = 'number';
break;
case 'array':
param.type = `any[]`;
break;
}
});
});

@@ -58,0 +69,0 @@ const fileTemplate = fs.readFileSync(templatePath, 'utf8');

2

package.json
{
"name": "api-gensdk",
"version": "0.1.8",
"version": "0.1.9",
"description": "",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

Sorry, the diff of this file is not supported yet