@capgo/native-purchases 0.0.34 → 0.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -406,7 +406,7 @@ public class NativePurchasesPlugin extends Plugin {
406
406
  for (ProductDetails productDetails : productDetailsList) {
407
407
  JSObject product = new JSObject();
408
408
  product.put("identifier", productDetails.getProductId());
409
- product.put("title", productDetails.getTitle());
409
+ product.put("title", productDetails.getName());
410
410
  product.put("description", productDetails.getDescription());
411
411
  if (productType.equals("inapp")) {
412
412
  product.put(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-purchases",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "In-app Subscriptions Made Easy",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",