react-native-nami-sdk 3.3.0-1 → 3.3.0-3
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/dist/src/version.d.ts +1 -1
- package/ios/Nami.swift +0 -2
- package/ios/NamiCampaignManagerBridge.swift +0 -2
- package/ios/NamiCustomerManager.swift +0 -2
- package/ios/NamiEntitlementManagerBridge.swift +0 -1
- package/ios/NamiFlowManagerBridge.swift +4 -0
- package/ios/NamiPaywallManagerBridge.swift +4 -0
- package/ios/NamiPurchaseManagerBridge.swift +0 -1
- package/package.json +1 -1
- package/react-native-nami-sdk.podspec +1 -1
- package/src/version.ts +1 -1
package/dist/src/version.d.ts
CHANGED
package/ios/Nami.swift
CHANGED
|
@@ -9,6 +9,10 @@ import Foundation
|
|
|
9
9
|
import NamiApple
|
|
10
10
|
import React
|
|
11
11
|
|
|
12
|
+
#if RCT_NEW_ARCH_ENABLED
|
|
13
|
+
extension RNNamiFlowManager: RCTTurboModule {}
|
|
14
|
+
#endif
|
|
15
|
+
|
|
12
16
|
@objc(RNNamiFlowManager)
|
|
13
17
|
class RNNamiFlowManager: RCTEventEmitter {
|
|
14
18
|
public static var shared: RNNamiFlowManager?
|
|
@@ -9,6 +9,10 @@ import Foundation
|
|
|
9
9
|
import NamiApple
|
|
10
10
|
import React
|
|
11
11
|
|
|
12
|
+
#if RCT_NEW_ARCH_ENABLED
|
|
13
|
+
extension RNNamiPaywallManager: RCTTurboModule {}
|
|
14
|
+
#endif
|
|
15
|
+
|
|
12
16
|
@objc(RNNamiPaywallManager)
|
|
13
17
|
class RNNamiPaywallManager: RCTEventEmitter {
|
|
14
18
|
public static var shared: RNNamiPaywallManager?
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-nami-sdk",
|
|
3
|
-
"version": "3.3.0-
|
|
3
|
+
"version": "3.3.0-3",
|
|
4
4
|
"description": "React Native Module for Nami - Easy subscriptions & in-app purchases, with powerful built-in paywalls and A/B testing.",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
package/src/version.ts
CHANGED