@umituz/react-native-subscription 2.6.0 → 2.6.1

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.6.0",
3
+ "version": "2.6.1",
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",
@@ -10,7 +10,8 @@ import type { IRevenueCatService } from "../../application/ports/IRevenueCatServ
10
10
  import { initializeRevenueCatService, getRevenueCatService } from "../services/RevenueCatService";
11
11
  import { UserIdProvider } from "../utils/UserIdProvider";
12
12
  import { InitializationCache } from "../utils/InitializationCache";
13
- import { PackageHandler, type PremiumStatus } from "../handlers/PackageHandler";
13
+ import { PackageHandler } from "../handlers/PackageHandler";
14
+ import type { PremiumStatus } from "../handlers/PackageHandler";
14
15
  import {
15
16
  trackPackageError,
16
17
  addPackageBreadcrumb,
@@ -151,3 +152,6 @@ class SubscriptionManagerImpl {
151
152
  }
152
153
 
153
154
  export const SubscriptionManager = new SubscriptionManagerImpl();
155
+
156
+ // Re-export types
157
+ export type { PremiumStatus };