react-native-purchases 7.21.1 → 7.23.0

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.
@@ -25,6 +25,6 @@ Pod::Spec.new do |spec|
25
25
  ]
26
26
 
27
27
  spec.dependency "React-Core"
28
- spec.dependency "PurchasesHybridCommon", '9.7.2'
28
+ spec.dependency "PurchasesHybridCommon", '9.9.0'
29
29
  spec.swift_version = '5.7'
30
30
  end
@@ -29,7 +29,7 @@ android {
29
29
  minSdkVersion getExtOrIntegerDefault('minSdkVersion')
30
30
  targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
31
31
  versionCode 1
32
- versionName '7.21.1'
32
+ versionName '7.23.0'
33
33
  }
34
34
 
35
35
  buildTypes {
@@ -121,6 +121,6 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
121
121
  dependencies {
122
122
  //noinspection GradleDynamicVersion
123
123
  api 'com.facebook.react:react-native:+'
124
- implementation 'com.revenuecat.purchases:purchases-hybrid-common:9.7.2'
124
+ implementation 'com.revenuecat.purchases:purchases-hybrid-common:9.9.0'
125
125
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
126
126
  }
@@ -45,7 +45,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
45
45
  private static final String CUSTOMER_INFO_UPDATED = "Purchases-CustomerInfoUpdated";
46
46
  private static final String LOG_HANDLER_EVENT = "Purchases-LogHandlerEvent";
47
47
  public static final String PLATFORM_NAME = "react-native";
48
- public static final String PLUGIN_VERSION = "7.21.1";
48
+ public static final String PLUGIN_VERSION = "7.23.0";
49
49
 
50
50
  private final ReactApplicationContext reactContext;
51
51
 
package/ios/RNPurchases.m CHANGED
@@ -472,7 +472,7 @@ readyForPromotedProduct:(RCStoreProduct *)product
472
472
  }
473
473
 
474
474
  - (NSString *)platformFlavorVersion {
475
- return @"7.21.1";
475
+ return @"7.23.0";
476
476
  }
477
477
 
478
478
  @end
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-purchases",
3
3
  "title": "React Native Purchases",
4
- "version": "7.21.1",
4
+ "version": "7.23.0",
5
5
  "description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -44,6 +44,7 @@
44
44
  "examples/purchaseTesterTypescript",
45
45
  "react-native-purchases-ui"
46
46
  ],
47
+ "packageManager": "yarn@3.6.1",
47
48
  "repository": {
48
49
  "type": "git",
49
50
  "url": "git+https://github.com/revenuecat/react-native-purchases.git",
@@ -66,24 +67,24 @@
66
67
  "react-native": ">= 0.58.2"
67
68
  },
68
69
  "devDependencies": {
69
- "@types/jest": "^28.1.2",
70
- "@types/react": "~18.2.0",
70
+ "@types/jest": "^29.5.12",
71
+ "@types/react": "^18.2.44",
71
72
  "@types/react-dom": "~18.2.0",
72
- "jest": "^28.1.1",
73
+ "jest": "^29.7.0",
73
74
  "jest-react-native": "^18.0.0",
74
75
  "pod-install": "^0.1.0",
75
76
  "prettier": "^2.0.5",
76
77
  "react": "18.2.0",
77
- "react-native": "0.73.1",
78
- "ts-jest": "^24.1.0",
78
+ "react-native": "0.73.5",
79
+ "ts-jest": "^29.1.2",
79
80
  "tslint": "^5.20.0",
80
81
  "tslint-config-prettier": "^1.18.0",
81
- "typedoc": "^0.23.21",
82
- "typescript": "^4.9.3"
82
+ "typedoc": "^0.25.11",
83
+ "typescript": "^5.2.2"
83
84
  },
84
85
  "resolutions": {
85
- "@types/react": "18.2.0",
86
- "@types/react-native": "0.73.1",
86
+ "@types/react": "^18.2.44",
87
+ "@types/react-native": "0.73.5",
87
88
  "@types/react-dom": "18.2.0"
88
89
  },
89
90
  "jest": {
@@ -99,6 +100,6 @@
99
100
  ]
100
101
  },
101
102
  "dependencies": {
102
- "@revenuecat/purchases-typescript-internal": "9.7.2"
103
+ "@revenuecat/purchases-typescript-internal": "9.9.0"
103
104
  }
104
105
  }