@umituz/react-native-subscription 2.37.72 → 2.37.73
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-subscription",
|
|
3
|
-
"version": "2.37.
|
|
3
|
+
"version": "2.37.73",
|
|
4
4
|
"description": "Complete subscription management with RevenueCat, paywall UI, and credits system for React Native apps",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -112,6 +112,9 @@ export class SubscriptionSyncProcessor {
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
if (!isPremium && !productId) {
|
|
115
|
+
// Cancellation: RevenueCat removed entitlement, no productId available.
|
|
116
|
+
// Must still update Firestore to reflect expired/canceled status.
|
|
117
|
+
await handleExpiredSubscription(creditsUserId);
|
|
115
118
|
return;
|
|
116
119
|
}
|
|
117
120
|
|