openapi-gen-typescript
Advanced tools
Comparing version 0.4.6 to 0.4.7
@@ -20,2 +20,3 @@ "use strict"; | ||
const hasRefRegex = /.+\??\:\s+schemas\..+;/; | ||
const hasRefRegex2 = /extends\s+schemas\./; | ||
const writeFileFromIFileCode = (props) => __awaiter(void 0, void 0, void 0, function* () { | ||
@@ -40,3 +41,3 @@ const { outputDir, fileCodeList, fetchModuleFile, schemasClassCode, schemasTypesCode, pathsCode, } = props; | ||
.join('/'), | ||
schemasClassCode.length > 0 && hasRefRegex.test(el.code) | ||
schemasClassCode.length > 0 && (hasRefRegex.test(el.code) || hasRefRegex2.test(el.code)) | ||
? `import * as schemas from '../schemas';\n` | ||
@@ -43,0 +44,0 @@ : '\n', |
{ | ||
"name": "openapi-gen-typescript", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"main": "dist/index.js", | ||
@@ -33,2 +33,2 @@ "types": "dist/index.d.ts", | ||
} | ||
} | ||
} |
@@ -19,2 +19,3 @@ // @ts-ignore | ||
const hasRefRegex = /.+\??\:\s+schemas\..+;/; | ||
const hasRefRegex2 = /extends\s+schemas\./; | ||
@@ -49,3 +50,3 @@ export const writeFileFromIFileCode = async (props: IProps) => { | ||
.join('/'), | ||
schemasClassCode.length > 0 && hasRefRegex.test(el.code) | ||
schemasClassCode.length > 0 && (hasRefRegex.test(el.code) || hasRefRegex2.test(el.code)) | ||
? `import * as schemas from '../schemas';\n` | ||
@@ -52,0 +53,0 @@ : '\n', |
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
92702
2173