Skip to content

Commit

Permalink
typescript-axios: Fix baseoptions (#3866)
Browse files Browse the repository at this point in the history
* Fixed missing baseOptions of typescript-axios.

The typescript-axios template was missing the baseOptions setting when building an API Configuration. Set it.

* update sample.

* re-generate typescript axios samples
  • Loading branch information
7474 authored and macjohnny committed Sep 10, 2019
1 parent e18f361 commit d46bff9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@ export class Configuration {
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.baseOptions = param.baseOptions;
}
}

0 comments on commit d46bff9

Please sign in to comment.