Skip to content

Commit 9f79112

Browse files
CHANGE: Parser base will set "any" again to "non schema" elements
1 parent 073b6cb commit 9f79112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/parsers/open-api-v3/parser-base.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export abstract class ParserBaseService {
125125
console.warn('WARNING: No schema defined! Any will be use instead');
126126
console.warn('TIP: Don\'t fill "content" for responses if void');
127127
const instance = new ModelAttributessModel(null);
128-
instance.typeURI = 'void';
128+
instance.typeURI = 'any';
129129
return instance;
130130
}
131131
if (this.isRefObject(schema)) {

0 commit comments

Comments
 (0)