@revenuecat/purchases-capacitor 10.3.0 → 10.3.2
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 +1 -1
- package/RevenuecatPurchasesCapacitor.podspec +1 -1
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/revenuecat/purchases/capacitor/PurchasesPlugin.kt +1 -1
- package/dist/docs.json +4 -0
- package/ios/Plugin/PurchasesPlugin.swift +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1751,7 +1751,7 @@ The result of a redemption attempt.
|
|
|
1751
1751
|
|
|
1752
1752
|
The supported stores for purchases.
|
|
1753
1753
|
|
|
1754
|
-
<code>"PLAY_STORE" | "APP_STORE" | "STRIPE" | "MAC_APP_STORE" | "PROMOTIONAL" | "AMAZON" | "RC_BILLING" | "EXTERNAL" | "UNKNOWN_STORE"</code>
|
|
1754
|
+
<code>"PLAY_STORE" | "APP_STORE" | "STRIPE" | "MAC_APP_STORE" | "PROMOTIONAL" | "AMAZON" | "RC_BILLING" | "EXTERNAL" | "PADDLE" | "UNKNOWN_STORE"</code>
|
|
1755
1755
|
|
|
1756
1756
|
|
|
1757
1757
|
#### OwnershipType
|
|
@@ -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 = '14.0'
|
|
15
15
|
s.dependency 'Capacitor'
|
|
16
|
-
s.dependency 'PurchasesHybridCommon', '13.
|
|
16
|
+
s.dependency 'PurchasesHybridCommon', '13.33.0'
|
|
17
17
|
s.swift_version = '5.1'
|
|
18
18
|
end
|
package/android/build.gradle
CHANGED
|
@@ -56,7 +56,7 @@ dependencies {
|
|
|
56
56
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
57
57
|
implementation project(':capacitor-android')
|
|
58
58
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
59
|
-
implementation 'com.revenuecat.purchases:purchases-hybrid-common:13.
|
|
59
|
+
implementation 'com.revenuecat.purchases:purchases-hybrid-common:13.33.0'
|
|
60
60
|
testImplementation "junit:junit:$junitVersion"
|
|
61
61
|
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
|
62
62
|
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
|
@@ -80,7 +80,7 @@ class PurchasesPlugin : Plugin() {
|
|
|
80
80
|
|
|
81
81
|
companion object {
|
|
82
82
|
private const val PLATFORM_NAME = "capacitor"
|
|
83
|
-
private const val PLUGIN_VERSION = "10.3.
|
|
83
|
+
private const val PLUGIN_VERSION = "10.3.2"
|
|
84
84
|
|
|
85
85
|
private const val CUSTOMER_INFO_KEY = "customerInfo"
|
|
86
86
|
}
|
package/dist/docs.json
CHANGED
|
@@ -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 = "10.3.
|
|
15
|
+
private let platformVersion = "10.3.2"
|
|
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": "10.3.
|
|
3
|
+
"version": "10.3.2",
|
|
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",
|
|
@@ -73,6 +73,6 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@revenuecat/purchases-typescript-internal-esm": "13.
|
|
76
|
+
"@revenuecat/purchases-typescript-internal-esm": "13.33.0"
|
|
77
77
|
}
|
|
78
78
|
}
|