@revenuecat/purchases-capacitor 9.0.1 → 9.0.3

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.
package/README.md CHANGED
@@ -1563,7 +1563,7 @@ Listener used to receive log messages from the SDK.
1563
1563
  | ---------------- | ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1564
1564
  | **`STOREKIT_1`** | <code>"STOREKIT_1"</code> | Always use StoreKit 1. |
1565
1565
  | **`STOREKIT_2`** | <code>"STOREKIT_2"</code> | Always use StoreKit 2 (StoreKit 1 will be used if StoreKit 2 is not available in the current device.) - Warning: Make sure you have an In-App Purchase Key configured in your app. Please see https://rev.cat/in-app-purchase-key-configuration for more info. |
1566
- | **`DEFAULT`** | <code>"DEFAULT"</code> | Let RevenueCat use the most appropiate version of StoreKit |
1566
+ | **`DEFAULT`** | <code>"DEFAULT"</code> | Let RevenueCat use the most appropriate version of StoreKit |
1567
1567
 
1568
1568
 
1569
1569
  #### ENTITLEMENT_VERIFICATION_MODE
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
13
13
  s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
14
14
  s.ios.deployment_target = '13.0'
15
15
  s.dependency 'Capacitor'
16
- s.dependency 'PurchasesHybridCommon', '13.0.1'
16
+ s.dependency 'PurchasesHybridCommon', '13.3.0'
17
17
  s.swift_version = '5.1'
18
18
  end
@@ -53,7 +53,7 @@ dependencies {
53
53
  implementation fileTree(dir: 'libs', include: ['*.jar'])
54
54
  implementation project(':capacitor-android')
55
55
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
56
- implementation 'com.revenuecat.purchases:purchases-hybrid-common:13.0.1'
56
+ implementation 'com.revenuecat.purchases:purchases-hybrid-common:13.3.0'
57
57
  testImplementation "junit:junit:$junitVersion"
58
58
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
59
59
  androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
@@ -77,7 +77,7 @@ class PurchasesPlugin : Plugin() {
77
77
 
78
78
  companion object {
79
79
  private const val PLATFORM_NAME = "capacitor"
80
- private const val PLUGIN_VERSION = "9.0.1"
80
+ private const val PLUGIN_VERSION = "9.0.3"
81
81
 
82
82
  private const val CUSTOMER_INFO_KEY = "customerInfo"
83
83
  }
package/dist/docs.json CHANGED
@@ -3063,7 +3063,7 @@
3063
3063
  "name": "DEFAULT",
3064
3064
  "value": "\"DEFAULT\"",
3065
3065
  "tags": [],
3066
- "docs": "Let RevenueCat use the most appropiate version of StoreKit"
3066
+ "docs": "Let RevenueCat use the most appropriate version of StoreKit"
3067
3067
  }
3068
3068
  ]
3069
3069
  },
@@ -12,7 +12,7 @@ import RevenueCat
12
12
  @objc(PurchasesPlugin)
13
13
  public class PurchasesPlugin: CAPPlugin, PurchasesDelegate {
14
14
  private let platformFlavor = "capacitor"
15
- private let platformVersion = "9.0.1"
15
+ private let platformVersion = "9.0.3"
16
16
 
17
17
  private let customerInfoKey = "customerInfo"
18
18
  private let transactionKey = "transaction"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revenuecat/purchases-capacitor",
3
- "version": "9.0.1",
3
+ "version": "9.0.3",
4
4
  "description": "Capacitor in-app purchases and subscriptions made easy. Support for iOS and Android.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -72,6 +72,6 @@
72
72
  }
73
73
  },
74
74
  "dependencies": {
75
- "@revenuecat/purchases-typescript-internal-esm": "13.0.1"
75
+ "@revenuecat/purchases-typescript-internal-esm": "13.3.0"
76
76
  }
77
77
  }