@umituz/react-native-subscription 2.31.14 → 2.31.16

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +18 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-subscription",
3
- "version": "2.31.14",
3
+ "version": "2.31.16",
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",
package/src/index.ts CHANGED
@@ -68,6 +68,13 @@ export * from "./domains/subscription/presentation/components/details/PremiumSta
68
68
  export * from "./domains/subscription/presentation/components/sections/SubscriptionSection";
69
69
  export * from "./domains/subscription/presentation/components/feedback/PaywallFeedbackModal";
70
70
  export * from "./domains/subscription/presentation/screens/SubscriptionDetailScreen";
71
+ export type {
72
+ SubscriptionDetailConfig,
73
+ SubscriptionDetailTranslations,
74
+ SubscriptionDisplayFlags,
75
+ UpgradePromptConfig,
76
+ CreditInfo,
77
+ } from "./domains/subscription/presentation/screens/SubscriptionDetailScreen.types";
71
78
  export * from "./domains/paywall/components/PaywallContainer";
72
79
 
73
80
  export type {
@@ -91,6 +98,17 @@ export * from "./utils/dateUtils";
91
98
  export * from "./utils/appUtils";
92
99
  export * from "./shared/utils/dateConverter";
93
100
 
101
+ // Credits Query Keys
102
+ export { creditsQueryKeys } from "./domains/credits/presentation/creditsQueryKeys";
103
+
104
+ // Paywall Types
105
+ export type { PaywallTranslations, PaywallLegalUrls } from "./domains/paywall/entities/types";
106
+ export type { TrialConfig } from "./domains/paywall/components/PaywallContainer.types";
107
+
108
+ // Purchase Loading Overlay
109
+ export { PurchaseLoadingOverlay } from "./domains/subscription/presentation/components/overlay/PurchaseLoadingOverlay";
110
+ export type { PurchaseLoadingOverlayProps } from "./domains/subscription/presentation/components/overlay/PurchaseLoadingOverlay";
111
+
94
112
  // Init Module Factory
95
113
  export {
96
114
  createSubscriptionInitModule,