@pnlight/sdk-react-native 0.1.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.
Files changed (28) hide show
  1. package/PNLight.xcframework/Info.plist +44 -0
  2. package/PNLight.xcframework/ios-arm64/PNLight.framework/Headers/PNLight-Swift.h +341 -0
  3. package/PNLight.xcframework/ios-arm64/PNLight.framework/Modules/PNLight.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  4. package/PNLight.xcframework/ios-arm64/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios.abi.json +625 -0
  5. package/PNLight.xcframework/ios-arm64/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios.private.swiftinterface +39 -0
  6. package/PNLight.xcframework/ios-arm64/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  7. package/PNLight.xcframework/ios-arm64/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios.swiftinterface +39 -0
  8. package/PNLight.xcframework/ios-arm64/PNLight.framework/Modules/module.modulemap +4 -0
  9. package/PNLight.xcframework/ios-arm64/PNLight.framework/PNLight +0 -0
  10. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Headers/PNLight-Swift.h +678 -0
  11. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  12. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  13. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios-simulator.abi.json +625 -0
  14. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +39 -0
  15. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  16. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/arm64-apple-ios-simulator.swiftinterface +39 -0
  17. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/x86_64-apple-ios-simulator.abi.json +625 -0
  18. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +39 -0
  19. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  20. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/PNLight.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +39 -0
  21. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/Modules/module.modulemap +4 -0
  22. package/PNLight.xcframework/ios-arm64_x86_64-simulator/PNLight.framework/PNLight +0 -0
  23. package/PNLightSDK.podspec +20 -0
  24. package/index.d.ts +3 -0
  25. package/index.js +14 -0
  26. package/ios/PNLightSDK.m +10 -0
  27. package/ios/PNLightSDK.swift +19 -0
  28. package/package.json +28 -0
@@ -0,0 +1,39 @@
1
+ // swift-interface-format-version: 1.0
2
+ // swift-compiler-version: Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
3
+ // swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name PNLight
4
+ // swift-module-flags-ignorable: -no-verify-emitted-module-interface
5
+ import AdSupport
6
+ import AppTrackingTransparency
7
+ import CoreMotion
8
+ import Foundation
9
+ import Security
10
+ import StoreKit
11
+ import Swift
12
+ import UIKit
13
+ import _Concurrency
14
+ import _StringProcessing
15
+ import _SwiftConcurrencyShims
16
+ import os
17
+ extension PNLight.PNLightSDK {
18
+ final public func logEvent(_ eventName: Swift.String, eventArgs: [Swift.String : Any]? = nil) async
19
+ }
20
+ extension PNLight.PNLightSDK {
21
+ final public func getIdfa() -> Swift.String?
22
+ }
23
+ extension PNLight.PNLightSDK {
24
+ final public func onPurchased() async
25
+ }
26
+ extension PNLight.PNLightSDK {
27
+ final public func validatePurchase() async -> Swift.Bool
28
+ }
29
+ extension PNLight.PNLightSDK {
30
+ final public func getOrCreateUserId() -> (id: Swift.String, isNew: Swift.Bool)
31
+ }
32
+ @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers final public class PNLightSDK : ObjectiveC.NSObject {
33
+ public static let shared: PNLight.PNLightSDK
34
+ final public func initialize(apiKey: Swift.String) async
35
+ @objc deinit
36
+ }
37
+ extension PNLight.PNLightSDK : StoreKit.SKPaymentTransactionObserver {
38
+ @objc final public func paymentQueue(_ queue: StoreKit.SKPaymentQueue, updatedTransactions transactions: [StoreKit.SKPaymentTransaction])
39
+ }
@@ -0,0 +1,4 @@
1
+ framework module PNLight {
2
+ header "PNLight-Swift.h"
3
+ requires objc
4
+ }