Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix an API product download issue #534

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading