Socket
Socket
Sign inDemoInstall

@samchon/openapi

Package Overview
Dependencies
Maintainers
0
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@samchon/openapi - npm Package Compare versions

Comparing version 0.1.23 to 0.1.24

5

lib/internal/MigrateRouteAccessor.js

@@ -68,5 +68,6 @@ "use strict";

const getName = (op) => {
const method = op.method === "delete" ? "erase" : op.method;
if (op.parameters.length === 0)
return op.method;
return (op.method +
return method;
return (method +
"By" +

@@ -73,0 +74,0 @@ op.parameters.map((p) => StringUtil_1.StringUtil.capitalize(p.key)).join("And"));

2

package.json
{
"name": "@samchon/openapi",
"version": "0.1.23",
"version": "0.1.24",
"description": "OpenAPI definitions and converters for 'typia' and 'nestia'.",

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

@@ -79,5 +79,6 @@ import { IMigrateRoute } from "../IMigrateRoute";

const getName = (op: IMigrateRoute): string => {
if (op.parameters.length === 0) return op.method;
const method = op.method === "delete" ? "erase" : op.method;
if (op.parameters.length === 0) return method;
return (
op.method +
method +
"By" +

@@ -84,0 +85,0 @@ op.parameters.map((p) => StringUtil.capitalize(p.key)).join("And")

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