We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23a7c2a commit ef75193Copy full SHA for ef75193
src/generator/serviceGenarator.ts
@@ -1043,6 +1043,8 @@ export default class ServiceGenerator {
1043
}
1044
1045
responseSchema.type = `${this.config.namespace}.${this.getType(schema, this.config.namespace)}`;
1046
+
1047
+ return responseSchema;
1048
1049
1050
if (isSchemaObject(schema)) {
@@ -1051,9 +1053,10 @@ export default class ServiceGenerator {
1051
1053
schema.required?.includes(fieldName) ?? false;
1052
1054
});
1055
responseSchema.isAnonymous = true;
- responseSchema.type = this.getType(schema, this.config.namespace);
1056
1057
1058
+ responseSchema.type = this.getType(schema, this.config.namespace);
1059
1060
return responseSchema;
1061
1062
0 commit comments