@umituz/react-native-subscription 2.31.18 → 2.31.20

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.31.18",
3
+ "version": "2.31.20",
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",
@@ -6,7 +6,7 @@
6
6
  /** Trial constants */
7
7
  export const TRIAL_CONFIG = {
8
8
  DURATION_DAYS: 3,
9
- CREDITS: 0,
9
+ CREDITS: 5,
10
10
  } as const;
11
11
 
12
12
  /** Device trial record in Firestore */
package/src/index.ts CHANGED
@@ -114,3 +114,10 @@ export {
114
114
  createSubscriptionInitModule,
115
115
  type SubscriptionInitModuleConfig,
116
116
  } from './init';
117
+
118
+ // Wallet Domain
119
+ export {
120
+ WalletScreen as WalletScreenContainer,
121
+ type WalletScreenProps,
122
+ type WalletScreenTranslations,
123
+ } from './domains/wallet';