Skip to content

Commit 8df3db7

Browse files
authored
Merge pull request #350 from qonversion/release/8.2.3
Release 8.2.3
2 parents a66106e + b565f86 commit 8df3db7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-qonversion",
33
"title": "React Native Qonversion",
4-
"version": "8.2.2",
4+
"version": "8.2.3",
55
"description": "Qonversion provides full in-app purchases infrastructure, so you do not need to build your own server for receipt validation. Implement in-app subscriptions, validate user receipts, check subscription status, and provide access to your app features and content using our StoreKit wrapper and Google Play Billing wrapper.",
66
"main": "build/index.js",
77
"types": "build/index.d.ts",

src/dto/RemoteConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import Experiment from "./Experiment";
22
import RemoteConfigurationSource from "./RemoteConfigurationSource";
33

44
class RemoteConfig {
5-
payload: Map<string, Object>;
5+
payload: Record<string, Object>;
66
experiment?: Experiment | null;
77
source: RemoteConfigurationSource;
88

9-
constructor(payload: Map<string, Object>, experiment: Experiment | null, source: RemoteConfigurationSource) {
9+
constructor(payload: Record<string, Object>, experiment: Experiment | null, source: RemoteConfigurationSource) {
1010
this.payload = payload;
1111
this.experiment = experiment;
1212
this.source = source;

src/internal/Mapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ type QUser = {
262262
};
263263

264264
type QRemoteConfig = {
265-
payload: Map<string, Object>;
265+
payload: Record<string, Object>;
266266
experiment?: QExperiment | null;
267267
source: QRemoteConfigurationSource;
268268
};

src/internal/QonversionInternal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import PromotionalOffer from '../dto/PromotionalOffer';
2323

2424
const {RNQonversion} = NativeModules;
2525

26-
const sdkVersion = "8.2.2";
26+
const sdkVersion = "8.2.3";
2727

2828
const EVENT_ENTITLEMENTS_UPDATED = "entitlements_updated";
2929
const EVENT_PROMO_PURCHASE_RECEIVED = "promo_purchase_received";

0 commit comments

Comments
 (0)