Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch paapi5-nodejs-sdk@1.1.0 for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/paapi5-nodejs-sdk/src/model/Item.js b/node_modules/paapi5-nodejs-sdk/src/model/Item.js
index 7f3b4b6..9aacdeb 100644
--- a/node_modules/paapi5-nodejs-sdk/src/model/Item.js
+++ b/node_modules/paapi5-nodejs-sdk/src/model/Item.js
@@ -94,6 +94,9 @@
if (data.hasOwnProperty('Offers')) {
obj['Offers'] = Offers.constructFromObject(data['Offers']);
}
+ if (data.hasOwnProperty('OffersV2')) {
+ obj['OffersV2'] = data['OffersV2'];
+ }
if (data.hasOwnProperty('ParentASIN')) {
obj['ParentASIN'] = ApiClient.convertToType(data['ParentASIN'], 'String');
}
This issue body was partially generated by patch-package.
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
paapi5-nodejs-sdk@1.1.0for the project I'm working on.Here is the diff that solved my problem:
This issue body was partially generated by patch-package.