@umituz/react-native-subscription 2.9.0 → 2.9.2

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.9.0",
3
+ "version": "2.9.2",
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",
@@ -32,7 +32,7 @@
32
32
  "peerDependencies": {
33
33
  "@tanstack/react-query": ">=5.0.0",
34
34
  "@umituz/react-native-design-system": "latest",
35
- "@umituz/react-native-firestore": "latest",
35
+ "@umituz/react-native-firebase": "latest",
36
36
  "@umituz/react-native-legal": "latest",
37
37
  "@umituz/react-native-localization": "latest",
38
38
  "@umituz/react-native-sentry": "latest",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@umituz/react-native-design-system": "latest",
48
- "@umituz/react-native-firestore": "latest",
48
+ "@umituz/react-native-firebase": "latest",
49
49
  "@umituz/react-native-legal": "latest",
50
50
  "@umituz/react-native-localization": "latest",
51
51
  "@umituz/react-native-sentry": "latest",
@@ -67,4 +67,4 @@
67
67
  "README.md",
68
68
  "LICENSE"
69
69
  ]
70
- }
70
+ }
@@ -2,7 +2,7 @@
2
2
  * Credits Repository
3
3
  *
4
4
  * Firestore operations for user credits management.
5
- * Extends BaseRepository from @umituz/react-native-firestore.
5
+ * Extends BaseRepository from @umituz/react-native-firebase.
6
6
  *
7
7
  * Generic and reusable - accepts config from main app.
8
8
  */
@@ -15,7 +15,7 @@ import {
15
15
  type FieldValue,
16
16
  type Firestore,
17
17
  } from "firebase/firestore";
18
- import { BaseRepository, getFirestore } from "@umituz/react-native-firestore";
18
+ import { BaseRepository, getFirestore } from "@umituz/react-native-firebase";
19
19
  import type {
20
20
  CreditType,
21
21
  CreditsConfig,