File tree Expand file tree Collapse file tree
packages/openapi-code-generator/src/typescript/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export abstract class TypescriptClientBuilder implements ICompilable {
1818 public readonly exportName : string ,
1919 protected readonly input : Input ,
2020 protected readonly imports : ImportBuilder ,
21- protected readonly models : TypeBuilder ,
21+ protected readonly types : TypeBuilder ,
2222 protected readonly schemaBuilder : SchemaBuilder ,
2323 protected readonly config : {
2424 enableRuntimeResponseValidation : boolean
@@ -43,7 +43,7 @@ export abstract class TypescriptClientBuilder implements ICompilable {
4343 add ( operation : IROperation ) : void {
4444 const builder = new ClientOperationBuilder (
4545 operation ,
46- this . models ,
46+ this . types ,
4747 this . schemaBuilder ,
4848 )
4949 this . clientServersBuilder . addOperation ( operation )
You can’t perform that action at this time.
0 commit comments