@td-design/pont-engine
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -284,3 +284,3 @@ "use strict"; | ||
const standardInterfaces = modInterfaces | ||
.filter(item => item.interfaceType === interfaceType) | ||
.filter(item => (item.interfaceType || '') === interfaceType) | ||
.map(inter => { | ||
@@ -363,3 +363,3 @@ return SwaggerInterface.transformSwaggerV3Interface2Standard(inter, usingOperationId, samePath, defNames); | ||
const standardInterfaces = modInterfaces | ||
.filter(item => item.interfaceType === interfaceType) | ||
.filter(item => (item.interfaceType || '') === interfaceType) | ||
.map(inter => { | ||
@@ -366,0 +366,0 @@ return SwaggerInterface.transformSwaggerInterface2Standard(inter, usingOperationId, samePath, defNames, compileTempateKeyword); |
{ | ||
"name": "@td-design/pont-engine", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "pont swagger typescript API", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -462,3 +462,3 @@ import { StandardDataSource, Interface, Mod, BaseClass, Property, StandardDataType } from '../standard'; | ||
const standardInterfaces = modInterfaces | ||
.filter(item => item.interfaceType === interfaceType) | ||
.filter(item => (item.interfaceType || '') === interfaceType) | ||
.map(inter => { | ||
@@ -570,3 +570,3 @@ return SwaggerInterface.transformSwaggerV3Interface2Standard(inter, usingOperationId, samePath, defNames); | ||
const standardInterfaces = modInterfaces | ||
.filter(item => item.interfaceType === interfaceType) | ||
.filter(item => (item.interfaceType || '') === interfaceType) | ||
.map(inter => { | ||
@@ -573,0 +573,0 @@ return SwaggerInterface.transformSwaggerInterface2Standard( |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
421594