Skip to content

Commit

Permalink
Merge pull request #534 from SavinduDimal/api-prod-version-download
Browse files Browse the repository at this point in the history
Fix an API product download issue
  • Loading branch information
SavinduDimal authored Feb 7, 2024
2 parents e5ee56d + 19ec402 commit 0697def
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ import Resource from './Resource';
* An abstract representation of an API Product
*/
class APIProduct extends Resource {
constructor(name, context, kwargs) {
constructor(name, version, context, kwargs) {
super();
let properties = kwargs;
if (name instanceof Object) {
properties = name;
} else {
this.name = name;
this.version = '1.0.0';
this.version = version;
this.context = context;
this.isDefaultVersion = false;
this.transport = ['http', 'https'];
Expand Down Expand Up @@ -628,7 +628,7 @@ class APIProduct extends Resource {
const apiZip = this.client.then((client) => {
return client.apis['Import Export'].exportAPIProduct({
name: this.name,
version: '1.0.0'
version: this.version
}, this._requestMetaData({
'accept': 'application/zip'
})
Expand Down

0 comments on commit 0697def

Please sign in to comment.