@umituz/react-native-subscription 2.31.14 → 2.31.15

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 +11 -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.15",
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
@@ -91,6 +91,17 @@ export * from "./utils/dateUtils";
91
91
  export * from "./utils/appUtils";
92
92
  export * from "./shared/utils/dateConverter";
93
93
 
94
+ // Credits Query Keys
95
+ export { creditsQueryKeys } from "./domains/credits/presentation/creditsQueryKeys";
96
+
97
+ // Paywall Types
98
+ export type { PaywallTranslations, PaywallLegalUrls } from "./domains/paywall/entities/types";
99
+ export type { TrialConfig } from "./domains/paywall/components/PaywallContainer.types";
100
+
101
+ // Purchase Loading Overlay
102
+ export { PurchaseLoadingOverlay } from "./domains/subscription/presentation/components/overlay/PurchaseLoadingOverlay";
103
+ export type { PurchaseLoadingOverlayProps } from "./domains/subscription/presentation/components/overlay/PurchaseLoadingOverlay";
104
+
94
105
  // Init Module Factory
95
106
  export {
96
107
  createSubscriptionInitModule,