appsprint-react-native 1.0.3 → 1.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.
- package/README.md +3 -3
- package/android/libs/appsprint-sdk.aar +0 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/kotlin/com/appsprint/AppSprintBridgeModule.kt +30 -0
- package/appsprint-react-native.podspec +6 -1
- package/ios/AppSprintBridge.swift +26 -0
- package/ios/AppSprintSDK.xcframework/Info.plist +5 -5
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/AppSprintSDK +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.abi.json +2147 -159
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.package.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/AppSprintSDK +0 -0
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +2147 -159
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.package.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +2147 -159
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.package.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +28 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +28 -1
- package/lib/typescript/types.d.ts +26 -0
- package/package.json +1 -1
- package/plugin/build/index.js +1 -0
- package/plugin/src/index.ts +1 -0
- package/src/types.ts +26 -0
|
@@ -10,6 +10,7 @@ import Foundation
|
|
|
10
10
|
import Foundation/*.Bundle*/
|
|
11
11
|
import Foundation/*.ProcessInfo*/
|
|
12
12
|
import Foundation/*.URL*/
|
|
13
|
+
import Metal
|
|
13
14
|
import Swift
|
|
14
15
|
import UIKit
|
|
15
16
|
import _Concurrency
|
|
@@ -181,6 +182,32 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
181
182
|
public let deviceModel: Swift.String?
|
|
182
183
|
public let screenWidth: Swift.Int?
|
|
183
184
|
public let screenHeight: Swift.Int?
|
|
185
|
+
public let nativeScreenWidth: Swift.Int?
|
|
186
|
+
public let nativeScreenHeight: Swift.Int?
|
|
187
|
+
public let screenScale: Swift.Double?
|
|
188
|
+
public let hardwareConcurrency: Swift.Int?
|
|
189
|
+
public let processorCount: Swift.Int?
|
|
190
|
+
public let maxTouchPoints: Swift.Int?
|
|
191
|
+
public let memoryGb: Swift.Int?
|
|
192
|
+
public let lowPowerMode: Swift.Bool?
|
|
193
|
+
public let batteryState: Swift.String?
|
|
194
|
+
public let batteryLevelBucket: Swift.String?
|
|
195
|
+
public let preferredLanguages: [Swift.String]?
|
|
196
|
+
public let timezoneOffsetMinutes: Swift.Int?
|
|
197
|
+
public let deviceManufacturer: Swift.String?
|
|
198
|
+
public let deviceBrand: Swift.String?
|
|
199
|
+
public let deviceProduct: Swift.String?
|
|
200
|
+
public let deviceHardware: Swift.String?
|
|
201
|
+
public let gpuVendor: Swift.String?
|
|
202
|
+
public let gpuRenderer: Swift.String?
|
|
203
|
+
public let connectionType: Swift.String?
|
|
204
|
+
public let networkType: Swift.String?
|
|
205
|
+
public let carrierName: Swift.String?
|
|
206
|
+
public let carrierCountryCode: Swift.String?
|
|
207
|
+
public let mobileCountryCode: Swift.String?
|
|
208
|
+
public let mobileNetworkCode: Swift.String?
|
|
209
|
+
public let sdkPlatform: Swift.String?
|
|
210
|
+
public let sdkVersion: Swift.String?
|
|
184
211
|
public let locale: Swift.String?
|
|
185
212
|
public let timezone: Swift.String?
|
|
186
213
|
public let osVersion: Swift.String?
|
|
@@ -189,7 +216,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
189
216
|
public let idfa: Swift.String?
|
|
190
217
|
public let adServicesToken: Swift.String?
|
|
191
218
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
192
|
-
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
219
|
+
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, nativeScreenWidth: Swift.Int? = nil, nativeScreenHeight: Swift.Int? = nil, screenScale: Swift.Double? = nil, hardwareConcurrency: Swift.Int? = nil, processorCount: Swift.Int? = nil, maxTouchPoints: Swift.Int? = nil, memoryGb: Swift.Int? = nil, lowPowerMode: Swift.Bool? = nil, batteryState: Swift.String? = nil, batteryLevelBucket: Swift.String? = nil, preferredLanguages: [Swift.String]? = nil, timezoneOffsetMinutes: Swift.Int? = nil, deviceManufacturer: Swift.String? = nil, deviceBrand: Swift.String? = nil, deviceProduct: Swift.String? = nil, deviceHardware: Swift.String? = nil, gpuVendor: Swift.String? = nil, gpuRenderer: Swift.String? = nil, connectionType: Swift.String? = nil, networkType: Swift.String? = nil, carrierName: Swift.String? = nil, carrierCountryCode: Swift.String? = nil, mobileCountryCode: Swift.String? = nil, mobileNetworkCode: Swift.String? = nil, sdkPlatform: Swift.String? = nil, sdkVersion: Swift.String? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
193
220
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
194
221
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
195
222
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -10,6 +10,7 @@ import Foundation
|
|
|
10
10
|
import Foundation/*.Bundle*/
|
|
11
11
|
import Foundation/*.ProcessInfo*/
|
|
12
12
|
import Foundation/*.URL*/
|
|
13
|
+
import Metal
|
|
13
14
|
import Swift
|
|
14
15
|
import UIKit
|
|
15
16
|
import _Concurrency
|
|
@@ -181,6 +182,32 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
181
182
|
public let deviceModel: Swift.String?
|
|
182
183
|
public let screenWidth: Swift.Int?
|
|
183
184
|
public let screenHeight: Swift.Int?
|
|
185
|
+
public let nativeScreenWidth: Swift.Int?
|
|
186
|
+
public let nativeScreenHeight: Swift.Int?
|
|
187
|
+
public let screenScale: Swift.Double?
|
|
188
|
+
public let hardwareConcurrency: Swift.Int?
|
|
189
|
+
public let processorCount: Swift.Int?
|
|
190
|
+
public let maxTouchPoints: Swift.Int?
|
|
191
|
+
public let memoryGb: Swift.Int?
|
|
192
|
+
public let lowPowerMode: Swift.Bool?
|
|
193
|
+
public let batteryState: Swift.String?
|
|
194
|
+
public let batteryLevelBucket: Swift.String?
|
|
195
|
+
public let preferredLanguages: [Swift.String]?
|
|
196
|
+
public let timezoneOffsetMinutes: Swift.Int?
|
|
197
|
+
public let deviceManufacturer: Swift.String?
|
|
198
|
+
public let deviceBrand: Swift.String?
|
|
199
|
+
public let deviceProduct: Swift.String?
|
|
200
|
+
public let deviceHardware: Swift.String?
|
|
201
|
+
public let gpuVendor: Swift.String?
|
|
202
|
+
public let gpuRenderer: Swift.String?
|
|
203
|
+
public let connectionType: Swift.String?
|
|
204
|
+
public let networkType: Swift.String?
|
|
205
|
+
public let carrierName: Swift.String?
|
|
206
|
+
public let carrierCountryCode: Swift.String?
|
|
207
|
+
public let mobileCountryCode: Swift.String?
|
|
208
|
+
public let mobileNetworkCode: Swift.String?
|
|
209
|
+
public let sdkPlatform: Swift.String?
|
|
210
|
+
public let sdkVersion: Swift.String?
|
|
184
211
|
public let locale: Swift.String?
|
|
185
212
|
public let timezone: Swift.String?
|
|
186
213
|
public let osVersion: Swift.String?
|
|
@@ -189,7 +216,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
189
216
|
public let idfa: Swift.String?
|
|
190
217
|
public let adServicesToken: Swift.String?
|
|
191
218
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
192
|
-
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
219
|
+
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, nativeScreenWidth: Swift.Int? = nil, nativeScreenHeight: Swift.Int? = nil, screenScale: Swift.Double? = nil, hardwareConcurrency: Swift.Int? = nil, processorCount: Swift.Int? = nil, maxTouchPoints: Swift.Int? = nil, memoryGb: Swift.Int? = nil, lowPowerMode: Swift.Bool? = nil, batteryState: Swift.String? = nil, batteryLevelBucket: Swift.String? = nil, preferredLanguages: [Swift.String]? = nil, timezoneOffsetMinutes: Swift.Int? = nil, deviceManufacturer: Swift.String? = nil, deviceBrand: Swift.String? = nil, deviceProduct: Swift.String? = nil, deviceHardware: Swift.String? = nil, gpuVendor: Swift.String? = nil, gpuRenderer: Swift.String? = nil, connectionType: Swift.String? = nil, networkType: Swift.String? = nil, carrierName: Swift.String? = nil, carrierCountryCode: Swift.String? = nil, mobileCountryCode: Swift.String? = nil, mobileNetworkCode: Swift.String? = nil, sdkPlatform: Swift.String? = nil, sdkVersion: Swift.String? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
193
220
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
194
221
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
195
222
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -10,6 +10,7 @@ import Foundation
|
|
|
10
10
|
import Foundation/*.Bundle*/
|
|
11
11
|
import Foundation/*.ProcessInfo*/
|
|
12
12
|
import Foundation/*.URL*/
|
|
13
|
+
import Metal
|
|
13
14
|
import Swift
|
|
14
15
|
import UIKit
|
|
15
16
|
import _Concurrency
|
|
@@ -181,6 +182,32 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
181
182
|
public let deviceModel: Swift.String?
|
|
182
183
|
public let screenWidth: Swift.Int?
|
|
183
184
|
public let screenHeight: Swift.Int?
|
|
185
|
+
public let nativeScreenWidth: Swift.Int?
|
|
186
|
+
public let nativeScreenHeight: Swift.Int?
|
|
187
|
+
public let screenScale: Swift.Double?
|
|
188
|
+
public let hardwareConcurrency: Swift.Int?
|
|
189
|
+
public let processorCount: Swift.Int?
|
|
190
|
+
public let maxTouchPoints: Swift.Int?
|
|
191
|
+
public let memoryGb: Swift.Int?
|
|
192
|
+
public let lowPowerMode: Swift.Bool?
|
|
193
|
+
public let batteryState: Swift.String?
|
|
194
|
+
public let batteryLevelBucket: Swift.String?
|
|
195
|
+
public let preferredLanguages: [Swift.String]?
|
|
196
|
+
public let timezoneOffsetMinutes: Swift.Int?
|
|
197
|
+
public let deviceManufacturer: Swift.String?
|
|
198
|
+
public let deviceBrand: Swift.String?
|
|
199
|
+
public let deviceProduct: Swift.String?
|
|
200
|
+
public let deviceHardware: Swift.String?
|
|
201
|
+
public let gpuVendor: Swift.String?
|
|
202
|
+
public let gpuRenderer: Swift.String?
|
|
203
|
+
public let connectionType: Swift.String?
|
|
204
|
+
public let networkType: Swift.String?
|
|
205
|
+
public let carrierName: Swift.String?
|
|
206
|
+
public let carrierCountryCode: Swift.String?
|
|
207
|
+
public let mobileCountryCode: Swift.String?
|
|
208
|
+
public let mobileNetworkCode: Swift.String?
|
|
209
|
+
public let sdkPlatform: Swift.String?
|
|
210
|
+
public let sdkVersion: Swift.String?
|
|
184
211
|
public let locale: Swift.String?
|
|
185
212
|
public let timezone: Swift.String?
|
|
186
213
|
public let osVersion: Swift.String?
|
|
@@ -189,7 +216,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
189
216
|
public let idfa: Swift.String?
|
|
190
217
|
public let adServicesToken: Swift.String?
|
|
191
218
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
192
|
-
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
219
|
+
public init(deviceModel: Swift.String? = nil, screenWidth: Swift.Int? = nil, screenHeight: Swift.Int? = nil, nativeScreenWidth: Swift.Int? = nil, nativeScreenHeight: Swift.Int? = nil, screenScale: Swift.Double? = nil, hardwareConcurrency: Swift.Int? = nil, processorCount: Swift.Int? = nil, maxTouchPoints: Swift.Int? = nil, memoryGb: Swift.Int? = nil, lowPowerMode: Swift.Bool? = nil, batteryState: Swift.String? = nil, batteryLevelBucket: Swift.String? = nil, preferredLanguages: [Swift.String]? = nil, timezoneOffsetMinutes: Swift.Int? = nil, deviceManufacturer: Swift.String? = nil, deviceBrand: Swift.String? = nil, deviceProduct: Swift.String? = nil, deviceHardware: Swift.String? = nil, gpuVendor: Swift.String? = nil, gpuRenderer: Swift.String? = nil, connectionType: Swift.String? = nil, networkType: Swift.String? = nil, carrierName: Swift.String? = nil, carrierCountryCode: Swift.String? = nil, mobileCountryCode: Swift.String? = nil, mobileNetworkCode: Swift.String? = nil, sdkPlatform: Swift.String? = nil, sdkVersion: Swift.String? = nil, locale: Swift.String? = nil, timezone: Swift.String? = nil, osVersion: Swift.String? = nil, appVersion: Swift.String? = nil, idfv: Swift.String? = nil, idfa: Swift.String? = nil, adServicesToken: Swift.String? = nil, attStatus: AppSprintSDK.AppSprintAttStatus? = nil)
|
|
193
220
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
194
221
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
195
222
|
public init(from decoder: any Swift.Decoder) throws
|