appsprint-react-native 1.1.2 → 1.1.4
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/android/libs/appsprint-sdk.aar +0 -0
- package/android/src/main/kotlin/com/appsprint/AppSprintBridgeModule.kt +1 -0
- package/ios/AppSprintBridge.swift +1 -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 +86 -11
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.package.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios.swiftinterface +2 -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 +86 -11
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.package.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +86 -11
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.package.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +2 -1
- package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/Modules/AppSprintSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +2 -1
- package/lib/typescript/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/types.ts +1 -0
|
Binary file
|
|
@@ -276,6 +276,7 @@ class AppSprintBridgeModule(reactContext: ReactApplicationContext) : ReactContex
|
|
|
276
276
|
deviceInfo.gpuRenderer?.let { info.putString("gpuRenderer", it) }
|
|
277
277
|
deviceInfo.connectionType?.let { info.putString("connectionType", it) }
|
|
278
278
|
deviceInfo.networkType?.let { info.putString("networkType", it) }
|
|
279
|
+
deviceInfo.colorScheme?.let { info.putString("colorScheme", it) }
|
|
279
280
|
deviceInfo.carrierName?.let { info.putString("carrierName", it) }
|
|
280
281
|
deviceInfo.carrierCountryCode?.let { info.putString("carrierCountryCode", it) }
|
|
281
282
|
deviceInfo.mobileCountryCode?.let { info.putString("mobileCountryCode", it) }
|
|
@@ -222,6 +222,7 @@ class AppSprintBridge: NSObject {
|
|
|
222
222
|
if let value = info.gpuRenderer { dict["gpuRenderer"] = value }
|
|
223
223
|
if let value = info.connectionType { dict["connectionType"] = value }
|
|
224
224
|
if let value = info.networkType { dict["networkType"] = value }
|
|
225
|
+
if let value = info.colorScheme { dict["colorScheme"] = value }
|
|
225
226
|
if let value = info.carrierName { dict["carrierName"] = value }
|
|
226
227
|
if let value = info.carrierCountryCode { dict["carrierCountryCode"] = value }
|
|
227
228
|
if let value = info.mobileCountryCode { dict["mobileCountryCode"] = value }
|
|
@@ -8,32 +8,32 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>AppSprintSDK.framework/AppSprintSDK</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>AppSprintSDK.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
16
|
<string>arm64</string>
|
|
17
|
+
<string>x86_64</string>
|
|
17
18
|
</array>
|
|
18
19
|
<key>SupportedPlatform</key>
|
|
19
20
|
<string>ios</string>
|
|
21
|
+
<key>SupportedPlatformVariant</key>
|
|
22
|
+
<string>simulator</string>
|
|
20
23
|
</dict>
|
|
21
24
|
<dict>
|
|
22
25
|
<key>BinaryPath</key>
|
|
23
26
|
<string>AppSprintSDK.framework/AppSprintSDK</string>
|
|
24
27
|
<key>LibraryIdentifier</key>
|
|
25
|
-
<string>ios-
|
|
28
|
+
<string>ios-arm64</string>
|
|
26
29
|
<key>LibraryPath</key>
|
|
27
30
|
<string>AppSprintSDK.framework</string>
|
|
28
31
|
<key>SupportedArchitectures</key>
|
|
29
32
|
<array>
|
|
30
33
|
<string>arm64</string>
|
|
31
|
-
<string>x86_64</string>
|
|
32
34
|
</array>
|
|
33
35
|
<key>SupportedPlatform</key>
|
|
34
36
|
<string>ios</string>
|
|
35
|
-
<key>SupportedPlatformVariant</key>
|
|
36
|
-
<string>simulator</string>
|
|
37
37
|
</dict>
|
|
38
38
|
</array>
|
|
39
39
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
@@ -7835,6 +7835,66 @@
|
|
|
7835
7835
|
}
|
|
7836
7836
|
]
|
|
7837
7837
|
},
|
|
7838
|
+
{
|
|
7839
|
+
"kind": "Var",
|
|
7840
|
+
"name": "colorScheme",
|
|
7841
|
+
"printedName": "colorScheme",
|
|
7842
|
+
"children": [
|
|
7843
|
+
{
|
|
7844
|
+
"kind": "TypeNominal",
|
|
7845
|
+
"name": "Optional",
|
|
7846
|
+
"printedName": "Swift.String?",
|
|
7847
|
+
"children": [
|
|
7848
|
+
{
|
|
7849
|
+
"kind": "TypeNominal",
|
|
7850
|
+
"name": "String",
|
|
7851
|
+
"printedName": "Swift.String",
|
|
7852
|
+
"usr": "s:SS"
|
|
7853
|
+
}
|
|
7854
|
+
],
|
|
7855
|
+
"usr": "s:Sq"
|
|
7856
|
+
}
|
|
7857
|
+
],
|
|
7858
|
+
"declKind": "Var",
|
|
7859
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvp",
|
|
7860
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvp",
|
|
7861
|
+
"moduleName": "AppSprintSDK",
|
|
7862
|
+
"declAttributes": [
|
|
7863
|
+
"HasStorage",
|
|
7864
|
+
"AccessControl"
|
|
7865
|
+
],
|
|
7866
|
+
"isLet": true,
|
|
7867
|
+
"hasStorage": true,
|
|
7868
|
+
"accessors": [
|
|
7869
|
+
{
|
|
7870
|
+
"kind": "Accessor",
|
|
7871
|
+
"name": "Get",
|
|
7872
|
+
"printedName": "Get()",
|
|
7873
|
+
"children": [
|
|
7874
|
+
{
|
|
7875
|
+
"kind": "TypeNominal",
|
|
7876
|
+
"name": "Optional",
|
|
7877
|
+
"printedName": "Swift.String?",
|
|
7878
|
+
"children": [
|
|
7879
|
+
{
|
|
7880
|
+
"kind": "TypeNominal",
|
|
7881
|
+
"name": "String",
|
|
7882
|
+
"printedName": "Swift.String",
|
|
7883
|
+
"usr": "s:SS"
|
|
7884
|
+
}
|
|
7885
|
+
],
|
|
7886
|
+
"usr": "s:Sq"
|
|
7887
|
+
}
|
|
7888
|
+
],
|
|
7889
|
+
"declKind": "Accessor",
|
|
7890
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvg",
|
|
7891
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvg",
|
|
7892
|
+
"moduleName": "AppSprintSDK",
|
|
7893
|
+
"implicit": true,
|
|
7894
|
+
"accessorKind": "get"
|
|
7895
|
+
}
|
|
7896
|
+
]
|
|
7897
|
+
},
|
|
7838
7898
|
{
|
|
7839
7899
|
"kind": "Var",
|
|
7840
7900
|
"name": "carrierName",
|
|
@@ -8678,7 +8738,7 @@
|
|
|
8678
8738
|
{
|
|
8679
8739
|
"kind": "Constructor",
|
|
8680
8740
|
"name": "init",
|
|
8681
|
-
"printedName": "init(deviceModel:screenWidth:screenHeight:nativeScreenWidth:nativeScreenHeight:screenScale:hardwareConcurrency:processorCount:maxTouchPoints:memoryGb:lowPowerMode:batteryState:batteryLevelBucket:preferredLanguages:timezoneOffsetMinutes:deviceManufacturer:deviceBrand:deviceProduct:deviceHardware:gpuVendor:gpuRenderer:connectionType:networkType:carrierName:carrierCountryCode:mobileCountryCode:mobileNetworkCode:sdkPlatform:sdkVersion:locale:timezone:osVersion:appVersion:idfv:idfa:adServicesToken:attStatus:)",
|
|
8741
|
+
"printedName": "init(deviceModel:screenWidth:screenHeight:nativeScreenWidth:nativeScreenHeight:screenScale:hardwareConcurrency:processorCount:maxTouchPoints:memoryGb:lowPowerMode:batteryState:batteryLevelBucket:preferredLanguages:timezoneOffsetMinutes:deviceManufacturer:deviceBrand:deviceProduct:deviceHardware:gpuVendor:gpuRenderer:connectionType:networkType:colorScheme:carrierName:carrierCountryCode:mobileCountryCode:mobileNetworkCode:sdkPlatform:sdkVersion:locale:timezone:osVersion:appVersion:idfv:idfa:adServicesToken:attStatus:)",
|
|
8682
8742
|
"children": [
|
|
8683
8743
|
{
|
|
8684
8744
|
"kind": "TypeNominal",
|
|
@@ -9234,6 +9294,21 @@
|
|
|
9234
9294
|
"hasDefaultArg": true,
|
|
9235
9295
|
"usr": "s:Sq"
|
|
9236
9296
|
},
|
|
9297
|
+
{
|
|
9298
|
+
"kind": "TypeNominal",
|
|
9299
|
+
"name": "Optional",
|
|
9300
|
+
"printedName": "Swift.String?",
|
|
9301
|
+
"children": [
|
|
9302
|
+
{
|
|
9303
|
+
"kind": "TypeNominal",
|
|
9304
|
+
"name": "String",
|
|
9305
|
+
"printedName": "Swift.String",
|
|
9306
|
+
"usr": "s:SS"
|
|
9307
|
+
}
|
|
9308
|
+
],
|
|
9309
|
+
"hasDefaultArg": true,
|
|
9310
|
+
"usr": "s:Sq"
|
|
9311
|
+
},
|
|
9237
9312
|
{
|
|
9238
9313
|
"kind": "TypeNominal",
|
|
9239
9314
|
"name": "Optional",
|
|
@@ -9251,8 +9326,8 @@
|
|
|
9251
9326
|
}
|
|
9252
9327
|
],
|
|
9253
9328
|
"declKind": "Constructor",
|
|
9254
|
-
"usr": "s:
|
|
9255
|
-
"mangledName": "$
|
|
9329
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11deviceModel11screenWidth0H6Height012nativeScreenI00klJ00H5Scale19hardwareConcurrency14processorCount14maxTouchPoints8memoryGb12lowPowerMode12batteryState0Z11LevelBucket18preferredLanguages21timezoneOffsetMinutes0F12Manufacturer0F5Brand0F7Product0F8Hardware9gpuVendor11gpuRenderer14connectionType11networkType11colorScheme11carrierName18carrierCountryCode17mobileCountryCode17mobileNetworkCode11sdkPlatform10sdkVersion6locale8timezone9osVersion10appVersion4idfv4idfa15adServicesToken9attStatusACSSSg_SiSgA15_A15_A15_SdSgA15_A15_A15_A15_SbSgA14_A14_SaySSGSgA15_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_AA0aB9AttStatusOSgtcfc",
|
|
9330
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11deviceModel11screenWidth0H6Height012nativeScreenI00klJ00H5Scale19hardwareConcurrency14processorCount14maxTouchPoints8memoryGb12lowPowerMode12batteryState0Z11LevelBucket18preferredLanguages21timezoneOffsetMinutes0F12Manufacturer0F5Brand0F7Product0F8Hardware9gpuVendor11gpuRenderer14connectionType11networkType11colorScheme11carrierName18carrierCountryCode17mobileCountryCode17mobileNetworkCode11sdkPlatform10sdkVersion6locale8timezone9osVersion10appVersion4idfv4idfa15adServicesToken9attStatusACSSSg_SiSgA15_A15_A15_SdSgA15_A15_A15_A15_SbSgA14_A14_SaySSGSgA15_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_AA0aB9AttStatusOSgtcfc",
|
|
9256
9331
|
"moduleName": "AppSprintSDK",
|
|
9257
9332
|
"declAttributes": [
|
|
9258
9333
|
"AccessControl"
|
|
@@ -10536,7 +10611,7 @@
|
|
|
10536
10611
|
"kind": "StringLiteral",
|
|
10537
10612
|
"offset": 523,
|
|
10538
10613
|
"length": 7,
|
|
10539
|
-
"value": "\"1.1.
|
|
10614
|
+
"value": "\"1.1.2\""
|
|
10540
10615
|
},
|
|
10541
10616
|
{
|
|
10542
10617
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
@@ -10555,28 +10630,28 @@
|
|
|
10555
10630
|
{
|
|
10556
10631
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10557
10632
|
"kind": "BooleanLiteral",
|
|
10558
|
-
"offset":
|
|
10633
|
+
"offset": 13049,
|
|
10559
10634
|
"length": 5,
|
|
10560
10635
|
"value": "false"
|
|
10561
10636
|
},
|
|
10562
10637
|
{
|
|
10563
10638
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10564
10639
|
"kind": "StringLiteral",
|
|
10565
|
-
"offset":
|
|
10640
|
+
"offset": 16014,
|
|
10566
10641
|
"length": 32,
|
|
10567
10642
|
"value": "\"app.appsprint.sdk.network-path\""
|
|
10568
10643
|
},
|
|
10569
10644
|
{
|
|
10570
10645
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10571
10646
|
"kind": "BooleanLiteral",
|
|
10572
|
-
"offset":
|
|
10647
|
+
"offset": 16106,
|
|
10573
10648
|
"length": 5,
|
|
10574
10649
|
"value": "false"
|
|
10575
10650
|
},
|
|
10576
10651
|
{
|
|
10577
10652
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10578
10653
|
"kind": "FloatLiteral",
|
|
10579
|
-
"offset":
|
|
10654
|
+
"offset": 16271,
|
|
10580
10655
|
"length": 4,
|
|
10581
10656
|
"value": "0.12"
|
|
10582
10657
|
},
|
|
@@ -10758,21 +10833,21 @@
|
|
|
10758
10833
|
{
|
|
10759
10834
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10760
10835
|
"kind": "StringLiteral",
|
|
10761
|
-
"offset":
|
|
10836
|
+
"offset": 10442,
|
|
10762
10837
|
"length": 9,
|
|
10763
10838
|
"value": "\"GRANTED\""
|
|
10764
10839
|
},
|
|
10765
10840
|
{
|
|
10766
10841
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10767
10842
|
"kind": "StringLiteral",
|
|
10768
|
-
"offset":
|
|
10843
|
+
"offset": 10470,
|
|
10769
10844
|
"length": 8,
|
|
10770
10845
|
"value": "\"DENIED\""
|
|
10771
10846
|
},
|
|
10772
10847
|
{
|
|
10773
10848
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10774
10849
|
"kind": "StringLiteral",
|
|
10775
|
-
"offset":
|
|
10850
|
+
"offset": 10502,
|
|
10776
10851
|
"length": 13,
|
|
10777
10852
|
"value": "\"UNSPECIFIED\""
|
|
10778
10853
|
}
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
package/ios/AppSprintSDK.xcframework/ios-arm64_x86_64-simulator/AppSprintSDK.framework/AppSprintSDK
CHANGED
|
Binary file
|
|
@@ -7835,6 +7835,66 @@
|
|
|
7835
7835
|
}
|
|
7836
7836
|
]
|
|
7837
7837
|
},
|
|
7838
|
+
{
|
|
7839
|
+
"kind": "Var",
|
|
7840
|
+
"name": "colorScheme",
|
|
7841
|
+
"printedName": "colorScheme",
|
|
7842
|
+
"children": [
|
|
7843
|
+
{
|
|
7844
|
+
"kind": "TypeNominal",
|
|
7845
|
+
"name": "Optional",
|
|
7846
|
+
"printedName": "Swift.String?",
|
|
7847
|
+
"children": [
|
|
7848
|
+
{
|
|
7849
|
+
"kind": "TypeNominal",
|
|
7850
|
+
"name": "String",
|
|
7851
|
+
"printedName": "Swift.String",
|
|
7852
|
+
"usr": "s:SS"
|
|
7853
|
+
}
|
|
7854
|
+
],
|
|
7855
|
+
"usr": "s:Sq"
|
|
7856
|
+
}
|
|
7857
|
+
],
|
|
7858
|
+
"declKind": "Var",
|
|
7859
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvp",
|
|
7860
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvp",
|
|
7861
|
+
"moduleName": "AppSprintSDK",
|
|
7862
|
+
"declAttributes": [
|
|
7863
|
+
"HasStorage",
|
|
7864
|
+
"AccessControl"
|
|
7865
|
+
],
|
|
7866
|
+
"isLet": true,
|
|
7867
|
+
"hasStorage": true,
|
|
7868
|
+
"accessors": [
|
|
7869
|
+
{
|
|
7870
|
+
"kind": "Accessor",
|
|
7871
|
+
"name": "Get",
|
|
7872
|
+
"printedName": "Get()",
|
|
7873
|
+
"children": [
|
|
7874
|
+
{
|
|
7875
|
+
"kind": "TypeNominal",
|
|
7876
|
+
"name": "Optional",
|
|
7877
|
+
"printedName": "Swift.String?",
|
|
7878
|
+
"children": [
|
|
7879
|
+
{
|
|
7880
|
+
"kind": "TypeNominal",
|
|
7881
|
+
"name": "String",
|
|
7882
|
+
"printedName": "Swift.String",
|
|
7883
|
+
"usr": "s:SS"
|
|
7884
|
+
}
|
|
7885
|
+
],
|
|
7886
|
+
"usr": "s:Sq"
|
|
7887
|
+
}
|
|
7888
|
+
],
|
|
7889
|
+
"declKind": "Accessor",
|
|
7890
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvg",
|
|
7891
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvg",
|
|
7892
|
+
"moduleName": "AppSprintSDK",
|
|
7893
|
+
"implicit": true,
|
|
7894
|
+
"accessorKind": "get"
|
|
7895
|
+
}
|
|
7896
|
+
]
|
|
7897
|
+
},
|
|
7838
7898
|
{
|
|
7839
7899
|
"kind": "Var",
|
|
7840
7900
|
"name": "carrierName",
|
|
@@ -8678,7 +8738,7 @@
|
|
|
8678
8738
|
{
|
|
8679
8739
|
"kind": "Constructor",
|
|
8680
8740
|
"name": "init",
|
|
8681
|
-
"printedName": "init(deviceModel:screenWidth:screenHeight:nativeScreenWidth:nativeScreenHeight:screenScale:hardwareConcurrency:processorCount:maxTouchPoints:memoryGb:lowPowerMode:batteryState:batteryLevelBucket:preferredLanguages:timezoneOffsetMinutes:deviceManufacturer:deviceBrand:deviceProduct:deviceHardware:gpuVendor:gpuRenderer:connectionType:networkType:carrierName:carrierCountryCode:mobileCountryCode:mobileNetworkCode:sdkPlatform:sdkVersion:locale:timezone:osVersion:appVersion:idfv:idfa:adServicesToken:attStatus:)",
|
|
8741
|
+
"printedName": "init(deviceModel:screenWidth:screenHeight:nativeScreenWidth:nativeScreenHeight:screenScale:hardwareConcurrency:processorCount:maxTouchPoints:memoryGb:lowPowerMode:batteryState:batteryLevelBucket:preferredLanguages:timezoneOffsetMinutes:deviceManufacturer:deviceBrand:deviceProduct:deviceHardware:gpuVendor:gpuRenderer:connectionType:networkType:colorScheme:carrierName:carrierCountryCode:mobileCountryCode:mobileNetworkCode:sdkPlatform:sdkVersion:locale:timezone:osVersion:appVersion:idfv:idfa:adServicesToken:attStatus:)",
|
|
8682
8742
|
"children": [
|
|
8683
8743
|
{
|
|
8684
8744
|
"kind": "TypeNominal",
|
|
@@ -9234,6 +9294,21 @@
|
|
|
9234
9294
|
"hasDefaultArg": true,
|
|
9235
9295
|
"usr": "s:Sq"
|
|
9236
9296
|
},
|
|
9297
|
+
{
|
|
9298
|
+
"kind": "TypeNominal",
|
|
9299
|
+
"name": "Optional",
|
|
9300
|
+
"printedName": "Swift.String?",
|
|
9301
|
+
"children": [
|
|
9302
|
+
{
|
|
9303
|
+
"kind": "TypeNominal",
|
|
9304
|
+
"name": "String",
|
|
9305
|
+
"printedName": "Swift.String",
|
|
9306
|
+
"usr": "s:SS"
|
|
9307
|
+
}
|
|
9308
|
+
],
|
|
9309
|
+
"hasDefaultArg": true,
|
|
9310
|
+
"usr": "s:Sq"
|
|
9311
|
+
},
|
|
9237
9312
|
{
|
|
9238
9313
|
"kind": "TypeNominal",
|
|
9239
9314
|
"name": "Optional",
|
|
@@ -9251,8 +9326,8 @@
|
|
|
9251
9326
|
}
|
|
9252
9327
|
],
|
|
9253
9328
|
"declKind": "Constructor",
|
|
9254
|
-
"usr": "s:
|
|
9255
|
-
"mangledName": "$
|
|
9329
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11deviceModel11screenWidth0H6Height012nativeScreenI00klJ00H5Scale19hardwareConcurrency14processorCount14maxTouchPoints8memoryGb12lowPowerMode12batteryState0Z11LevelBucket18preferredLanguages21timezoneOffsetMinutes0F12Manufacturer0F5Brand0F7Product0F8Hardware9gpuVendor11gpuRenderer14connectionType11networkType11colorScheme11carrierName18carrierCountryCode17mobileCountryCode17mobileNetworkCode11sdkPlatform10sdkVersion6locale8timezone9osVersion10appVersion4idfv4idfa15adServicesToken9attStatusACSSSg_SiSgA15_A15_A15_SdSgA15_A15_A15_A15_SbSgA14_A14_SaySSGSgA15_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_AA0aB9AttStatusOSgtcfc",
|
|
9330
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11deviceModel11screenWidth0H6Height012nativeScreenI00klJ00H5Scale19hardwareConcurrency14processorCount14maxTouchPoints8memoryGb12lowPowerMode12batteryState0Z11LevelBucket18preferredLanguages21timezoneOffsetMinutes0F12Manufacturer0F5Brand0F7Product0F8Hardware9gpuVendor11gpuRenderer14connectionType11networkType11colorScheme11carrierName18carrierCountryCode17mobileCountryCode17mobileNetworkCode11sdkPlatform10sdkVersion6locale8timezone9osVersion10appVersion4idfv4idfa15adServicesToken9attStatusACSSSg_SiSgA15_A15_A15_SdSgA15_A15_A15_A15_SbSgA14_A14_SaySSGSgA15_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_AA0aB9AttStatusOSgtcfc",
|
|
9256
9331
|
"moduleName": "AppSprintSDK",
|
|
9257
9332
|
"declAttributes": [
|
|
9258
9333
|
"AccessControl"
|
|
@@ -10536,7 +10611,7 @@
|
|
|
10536
10611
|
"kind": "StringLiteral",
|
|
10537
10612
|
"offset": 523,
|
|
10538
10613
|
"length": 7,
|
|
10539
|
-
"value": "\"1.1.
|
|
10614
|
+
"value": "\"1.1.2\""
|
|
10540
10615
|
},
|
|
10541
10616
|
{
|
|
10542
10617
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
@@ -10555,28 +10630,28 @@
|
|
|
10555
10630
|
{
|
|
10556
10631
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10557
10632
|
"kind": "BooleanLiteral",
|
|
10558
|
-
"offset":
|
|
10633
|
+
"offset": 13049,
|
|
10559
10634
|
"length": 5,
|
|
10560
10635
|
"value": "false"
|
|
10561
10636
|
},
|
|
10562
10637
|
{
|
|
10563
10638
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10564
10639
|
"kind": "StringLiteral",
|
|
10565
|
-
"offset":
|
|
10640
|
+
"offset": 16014,
|
|
10566
10641
|
"length": 32,
|
|
10567
10642
|
"value": "\"app.appsprint.sdk.network-path\""
|
|
10568
10643
|
},
|
|
10569
10644
|
{
|
|
10570
10645
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10571
10646
|
"kind": "BooleanLiteral",
|
|
10572
|
-
"offset":
|
|
10647
|
+
"offset": 16106,
|
|
10573
10648
|
"length": 5,
|
|
10574
10649
|
"value": "false"
|
|
10575
10650
|
},
|
|
10576
10651
|
{
|
|
10577
10652
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10578
10653
|
"kind": "FloatLiteral",
|
|
10579
|
-
"offset":
|
|
10654
|
+
"offset": 16271,
|
|
10580
10655
|
"length": 4,
|
|
10581
10656
|
"value": "0.12"
|
|
10582
10657
|
},
|
|
@@ -10758,21 +10833,21 @@
|
|
|
10758
10833
|
{
|
|
10759
10834
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10760
10835
|
"kind": "StringLiteral",
|
|
10761
|
-
"offset":
|
|
10836
|
+
"offset": 10442,
|
|
10762
10837
|
"length": 9,
|
|
10763
10838
|
"value": "\"GRANTED\""
|
|
10764
10839
|
},
|
|
10765
10840
|
{
|
|
10766
10841
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10767
10842
|
"kind": "StringLiteral",
|
|
10768
|
-
"offset":
|
|
10843
|
+
"offset": 10470,
|
|
10769
10844
|
"length": 8,
|
|
10770
10845
|
"value": "\"DENIED\""
|
|
10771
10846
|
},
|
|
10772
10847
|
{
|
|
10773
10848
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10774
10849
|
"kind": "StringLiteral",
|
|
10775
|
-
"offset":
|
|
10850
|
+
"offset": 10502,
|
|
10776
10851
|
"length": 13,
|
|
10777
10852
|
"value": "\"UNSPECIFIED\""
|
|
10778
10853
|
}
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -7835,6 +7835,66 @@
|
|
|
7835
7835
|
}
|
|
7836
7836
|
]
|
|
7837
7837
|
},
|
|
7838
|
+
{
|
|
7839
|
+
"kind": "Var",
|
|
7840
|
+
"name": "colorScheme",
|
|
7841
|
+
"printedName": "colorScheme",
|
|
7842
|
+
"children": [
|
|
7843
|
+
{
|
|
7844
|
+
"kind": "TypeNominal",
|
|
7845
|
+
"name": "Optional",
|
|
7846
|
+
"printedName": "Swift.String?",
|
|
7847
|
+
"children": [
|
|
7848
|
+
{
|
|
7849
|
+
"kind": "TypeNominal",
|
|
7850
|
+
"name": "String",
|
|
7851
|
+
"printedName": "Swift.String",
|
|
7852
|
+
"usr": "s:SS"
|
|
7853
|
+
}
|
|
7854
|
+
],
|
|
7855
|
+
"usr": "s:Sq"
|
|
7856
|
+
}
|
|
7857
|
+
],
|
|
7858
|
+
"declKind": "Var",
|
|
7859
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvp",
|
|
7860
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvp",
|
|
7861
|
+
"moduleName": "AppSprintSDK",
|
|
7862
|
+
"declAttributes": [
|
|
7863
|
+
"HasStorage",
|
|
7864
|
+
"AccessControl"
|
|
7865
|
+
],
|
|
7866
|
+
"isLet": true,
|
|
7867
|
+
"hasStorage": true,
|
|
7868
|
+
"accessors": [
|
|
7869
|
+
{
|
|
7870
|
+
"kind": "Accessor",
|
|
7871
|
+
"name": "Get",
|
|
7872
|
+
"printedName": "Get()",
|
|
7873
|
+
"children": [
|
|
7874
|
+
{
|
|
7875
|
+
"kind": "TypeNominal",
|
|
7876
|
+
"name": "Optional",
|
|
7877
|
+
"printedName": "Swift.String?",
|
|
7878
|
+
"children": [
|
|
7879
|
+
{
|
|
7880
|
+
"kind": "TypeNominal",
|
|
7881
|
+
"name": "String",
|
|
7882
|
+
"printedName": "Swift.String",
|
|
7883
|
+
"usr": "s:SS"
|
|
7884
|
+
}
|
|
7885
|
+
],
|
|
7886
|
+
"usr": "s:Sq"
|
|
7887
|
+
}
|
|
7888
|
+
],
|
|
7889
|
+
"declKind": "Accessor",
|
|
7890
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvg",
|
|
7891
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11colorSchemeSSSgvg",
|
|
7892
|
+
"moduleName": "AppSprintSDK",
|
|
7893
|
+
"implicit": true,
|
|
7894
|
+
"accessorKind": "get"
|
|
7895
|
+
}
|
|
7896
|
+
]
|
|
7897
|
+
},
|
|
7838
7898
|
{
|
|
7839
7899
|
"kind": "Var",
|
|
7840
7900
|
"name": "carrierName",
|
|
@@ -8678,7 +8738,7 @@
|
|
|
8678
8738
|
{
|
|
8679
8739
|
"kind": "Constructor",
|
|
8680
8740
|
"name": "init",
|
|
8681
|
-
"printedName": "init(deviceModel:screenWidth:screenHeight:nativeScreenWidth:nativeScreenHeight:screenScale:hardwareConcurrency:processorCount:maxTouchPoints:memoryGb:lowPowerMode:batteryState:batteryLevelBucket:preferredLanguages:timezoneOffsetMinutes:deviceManufacturer:deviceBrand:deviceProduct:deviceHardware:gpuVendor:gpuRenderer:connectionType:networkType:carrierName:carrierCountryCode:mobileCountryCode:mobileNetworkCode:sdkPlatform:sdkVersion:locale:timezone:osVersion:appVersion:idfv:idfa:adServicesToken:attStatus:)",
|
|
8741
|
+
"printedName": "init(deviceModel:screenWidth:screenHeight:nativeScreenWidth:nativeScreenHeight:screenScale:hardwareConcurrency:processorCount:maxTouchPoints:memoryGb:lowPowerMode:batteryState:batteryLevelBucket:preferredLanguages:timezoneOffsetMinutes:deviceManufacturer:deviceBrand:deviceProduct:deviceHardware:gpuVendor:gpuRenderer:connectionType:networkType:colorScheme:carrierName:carrierCountryCode:mobileCountryCode:mobileNetworkCode:sdkPlatform:sdkVersion:locale:timezone:osVersion:appVersion:idfv:idfa:adServicesToken:attStatus:)",
|
|
8682
8742
|
"children": [
|
|
8683
8743
|
{
|
|
8684
8744
|
"kind": "TypeNominal",
|
|
@@ -9234,6 +9294,21 @@
|
|
|
9234
9294
|
"hasDefaultArg": true,
|
|
9235
9295
|
"usr": "s:Sq"
|
|
9236
9296
|
},
|
|
9297
|
+
{
|
|
9298
|
+
"kind": "TypeNominal",
|
|
9299
|
+
"name": "Optional",
|
|
9300
|
+
"printedName": "Swift.String?",
|
|
9301
|
+
"children": [
|
|
9302
|
+
{
|
|
9303
|
+
"kind": "TypeNominal",
|
|
9304
|
+
"name": "String",
|
|
9305
|
+
"printedName": "Swift.String",
|
|
9306
|
+
"usr": "s:SS"
|
|
9307
|
+
}
|
|
9308
|
+
],
|
|
9309
|
+
"hasDefaultArg": true,
|
|
9310
|
+
"usr": "s:Sq"
|
|
9311
|
+
},
|
|
9237
9312
|
{
|
|
9238
9313
|
"kind": "TypeNominal",
|
|
9239
9314
|
"name": "Optional",
|
|
@@ -9251,8 +9326,8 @@
|
|
|
9251
9326
|
}
|
|
9252
9327
|
],
|
|
9253
9328
|
"declKind": "Constructor",
|
|
9254
|
-
"usr": "s:
|
|
9255
|
-
"mangledName": "$
|
|
9329
|
+
"usr": "s:12AppSprintSDK10DeviceInfoV11deviceModel11screenWidth0H6Height012nativeScreenI00klJ00H5Scale19hardwareConcurrency14processorCount14maxTouchPoints8memoryGb12lowPowerMode12batteryState0Z11LevelBucket18preferredLanguages21timezoneOffsetMinutes0F12Manufacturer0F5Brand0F7Product0F8Hardware9gpuVendor11gpuRenderer14connectionType11networkType11colorScheme11carrierName18carrierCountryCode17mobileCountryCode17mobileNetworkCode11sdkPlatform10sdkVersion6locale8timezone9osVersion10appVersion4idfv4idfa15adServicesToken9attStatusACSSSg_SiSgA15_A15_A15_SdSgA15_A15_A15_A15_SbSgA14_A14_SaySSGSgA15_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_AA0aB9AttStatusOSgtcfc",
|
|
9330
|
+
"mangledName": "$s12AppSprintSDK10DeviceInfoV11deviceModel11screenWidth0H6Height012nativeScreenI00klJ00H5Scale19hardwareConcurrency14processorCount14maxTouchPoints8memoryGb12lowPowerMode12batteryState0Z11LevelBucket18preferredLanguages21timezoneOffsetMinutes0F12Manufacturer0F5Brand0F7Product0F8Hardware9gpuVendor11gpuRenderer14connectionType11networkType11colorScheme11carrierName18carrierCountryCode17mobileCountryCode17mobileNetworkCode11sdkPlatform10sdkVersion6locale8timezone9osVersion10appVersion4idfv4idfa15adServicesToken9attStatusACSSSg_SiSgA15_A15_A15_SdSgA15_A15_A15_A15_SbSgA14_A14_SaySSGSgA15_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_A14_AA0aB9AttStatusOSgtcfc",
|
|
9256
9331
|
"moduleName": "AppSprintSDK",
|
|
9257
9332
|
"declAttributes": [
|
|
9258
9333
|
"AccessControl"
|
|
@@ -10536,7 +10611,7 @@
|
|
|
10536
10611
|
"kind": "StringLiteral",
|
|
10537
10612
|
"offset": 523,
|
|
10538
10613
|
"length": 7,
|
|
10539
|
-
"value": "\"1.1.
|
|
10614
|
+
"value": "\"1.1.2\""
|
|
10540
10615
|
},
|
|
10541
10616
|
{
|
|
10542
10617
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
@@ -10555,28 +10630,28 @@
|
|
|
10555
10630
|
{
|
|
10556
10631
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10557
10632
|
"kind": "BooleanLiteral",
|
|
10558
|
-
"offset":
|
|
10633
|
+
"offset": 13049,
|
|
10559
10634
|
"length": 5,
|
|
10560
10635
|
"value": "false"
|
|
10561
10636
|
},
|
|
10562
10637
|
{
|
|
10563
10638
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10564
10639
|
"kind": "StringLiteral",
|
|
10565
|
-
"offset":
|
|
10640
|
+
"offset": 16014,
|
|
10566
10641
|
"length": 32,
|
|
10567
10642
|
"value": "\"app.appsprint.sdk.network-path\""
|
|
10568
10643
|
},
|
|
10569
10644
|
{
|
|
10570
10645
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10571
10646
|
"kind": "BooleanLiteral",
|
|
10572
|
-
"offset":
|
|
10647
|
+
"offset": 16106,
|
|
10573
10648
|
"length": 5,
|
|
10574
10649
|
"value": "false"
|
|
10575
10650
|
},
|
|
10576
10651
|
{
|
|
10577
10652
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintNative.swift",
|
|
10578
10653
|
"kind": "FloatLiteral",
|
|
10579
|
-
"offset":
|
|
10654
|
+
"offset": 16271,
|
|
10580
10655
|
"length": 4,
|
|
10581
10656
|
"value": "0.12"
|
|
10582
10657
|
},
|
|
@@ -10758,21 +10833,21 @@
|
|
|
10758
10833
|
{
|
|
10759
10834
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10760
10835
|
"kind": "StringLiteral",
|
|
10761
|
-
"offset":
|
|
10836
|
+
"offset": 10442,
|
|
10762
10837
|
"length": 9,
|
|
10763
10838
|
"value": "\"GRANTED\""
|
|
10764
10839
|
},
|
|
10765
10840
|
{
|
|
10766
10841
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10767
10842
|
"kind": "StringLiteral",
|
|
10768
|
-
"offset":
|
|
10843
|
+
"offset": 10470,
|
|
10769
10844
|
"length": 8,
|
|
10770
10845
|
"value": "\"DENIED\""
|
|
10771
10846
|
},
|
|
10772
10847
|
{
|
|
10773
10848
|
"filePath": "\/Users\/arthur\/Dev\/app-sprint\/SDKs\/appsprint-ios\/Sources\/AppSprintSDK\/AppSprintTypes.swift",
|
|
10774
10849
|
"kind": "StringLiteral",
|
|
10775
|
-
"offset":
|
|
10850
|
+
"offset": 10502,
|
|
10776
10851
|
"length": 13,
|
|
10777
10852
|
"value": "\"UNSPECIFIED\""
|
|
10778
10853
|
}
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
|
@@ -204,6 +204,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
204
204
|
public let gpuRenderer: Swift.String?
|
|
205
205
|
public let connectionType: Swift.String?
|
|
206
206
|
public let networkType: Swift.String?
|
|
207
|
+
public let colorScheme: Swift.String?
|
|
207
208
|
public let carrierName: Swift.String?
|
|
208
209
|
public let carrierCountryCode: Swift.String?
|
|
209
210
|
public let mobileCountryCode: Swift.String?
|
|
@@ -218,7 +219,7 @@ public struct DeviceInfo : Swift.Codable, Swift.Equatable, Swift.Sendable {
|
|
|
218
219
|
public let idfa: Swift.String?
|
|
219
220
|
public let adServicesToken: Swift.String?
|
|
220
221
|
public let attStatus: AppSprintSDK.AppSprintAttStatus?
|
|
221
|
-
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)
|
|
222
|
+
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, colorScheme: 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)
|
|
222
223
|
public static func == (a: AppSprintSDK.DeviceInfo, b: AppSprintSDK.DeviceInfo) -> Swift.Bool
|
|
223
224
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
224
225
|
public init(from decoder: any Swift.Decoder) throws
|
package/package.json
CHANGED
package/src/types.ts
CHANGED