diff --git a/CHANGELOG.md b/CHANGELOG.md index cc04f40e..f8002c32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The changes documented here do not include those from the original repository. +## [Version 2.4.0] + +### Features +- (android) Subscribes and unsubscribes from `appGeneralTopic` - `appIdentifier-general-topic-android` when registering and unregistering the device. (https://outsystemsrd.atlassian.net/browse/RMET-2948). +- (ios) Subscribes and unsubscribes from `appGeneralTopic` - `appIdentifier-general-topic-ios` when registering and unregistering the device. (https://outsystemsrd.atlassian.net/browse/RMET-2947). +- (android) Handle icon and color parameters in setupNotificationBuilder for Android 12+ compatibility. + +### Fix +- (ios) `NotificationClickedV2` not being triggered when deep link property is not set (https://outsystemsrd.atlassian.net/browse/RMET-3695). + ## [Version 2.3.2] ### Features diff --git a/package.json b/package.json index e2bbe455..bedf3fc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.firebase.cloudmessaging", - "version": "2.3.2", + "version": "2.4.0", "description": "Outsystems plugin for Firebase Cloud Messaging", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index 48106beb..bab75bb6 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + OSFirebaseCloudMessaging Outsystems plugin for Firebase Cloud Messaging diff --git a/src/android/com/outsystems/firebase/cloudmessaging/OSFirebaseCloudMessaging.kt b/src/android/com/outsystems/firebase/cloudmessaging/OSFirebaseCloudMessaging.kt index 307d5fa9..ed343cd8 100755 --- a/src/android/com/outsystems/firebase/cloudmessaging/OSFirebaseCloudMessaging.kt +++ b/src/android/com/outsystems/firebase/cloudmessaging/OSFirebaseCloudMessaging.kt @@ -275,7 +275,7 @@ class OSFirebaseCloudMessaging : CordovaImplementation() { flow?.collect { if (it == OSFCMPermissionEvents.Granted) { - if (controller.registerDevice()) { + if (controller.registerDevice(this.getPackageAppName())) { sendSuccess(callbackContext) } else { sendError(callbackContext, FirebaseMessagingError.REGISTRATION_ERROR) @@ -287,7 +287,7 @@ class OSFirebaseCloudMessaging : CordovaImplementation() { } private suspend fun unregisterDevice(callbackContext: CallbackContext) { - if (controller.unregisterDevice()) { + if (controller.unregisterDevice(this.getPackageAppName())) { sendSuccess(callbackContext) } else { sendError(callbackContext, FirebaseMessagingError.UNREGISTRATION_ERROR) @@ -300,8 +300,20 @@ class OSFirebaseCloudMessaging : CordovaImplementation() { val text = args.get(2).toString() val channelName = args.get(3).toString() val channelDescription = args.get(4).toString() + val color = args.get(5).toString() + val icon = args.get(6).toString() + + val result = controller.sendLocalNotification( + number = badge, + title = title, + text = text, + image = null, + color = color, + icon = icon, + channelName = channelName, + channelDescription = channelDescription + ) - val result = controller.sendLocalNotification(badge, title, text, null, channelName, channelDescription) if (result.first) { sendSuccess(callbackContext) } else { diff --git a/src/android/com/outsystems/firebase/cloudmessaging/build.gradle b/src/android/com/outsystems/firebase/cloudmessaging/build.gradle index f6a64b4e..60e83c66 100644 --- a/src/android/com/outsystems/firebase/cloudmessaging/build.gradle +++ b/src/android/com/outsystems/firebase/cloudmessaging/build.gradle @@ -23,8 +23,8 @@ apply plugin: 'kotlin-kapt' dependencies { implementation("com.github.outsystems:oscore-android:1.2.0@aar") implementation("com.github.outsystems:oscordova-android:2.0.1@aar") - implementation("com.github.outsystems:osfirebasemessaging-android:1.2.2@aar") - implementation("com.github.outsystems:oslocalnotifications-android:1.0.0@aar") + implementation("com.github.outsystems:osfirebasemessaging-android:1.3.0@aar") + implementation("com.github.outsystems:oslocalnotifications-android:1.1.0@aar") implementation("com.google.code.gson:gson:2.8.9") diff --git a/src/ios/OSFirebaseCloudMessaging.swift b/src/ios/OSFirebaseCloudMessaging.swift index 232db6e7..8f924315 100644 --- a/src/ios/OSFirebaseCloudMessaging.swift +++ b/src/ios/OSFirebaseCloudMessaging.swift @@ -39,6 +39,7 @@ class OSFirebaseCloudMessaging: CDVPlugin { do { if try await self.plugin?.requestAuthorisation() == true { try await self.plugin?.subscribe(toTopic: .general) + try await self.plugin?.subscribe(toTopic: .appGeneral) self.sendSuccess(callbackId: command.callbackId) } else { self.send(error: .notificationsPermissionsDeniedError, callbackId: command.callbackId) @@ -92,6 +93,7 @@ class OSFirebaseCloudMessaging: CDVPlugin { do { try await self.plugin?.unsubscribe(fromTopic: .general) + try await self.plugin?.unsubscribe(fromTopic: .appGeneral) self.sendSuccess(callbackId: command.callbackId) } catch { self.send(error: .unregistrationError, callbackId: command.callbackId) diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeDirectory b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeDirectory index c8af5e7e..a182f62e 100644 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeDirectory and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeDirectory differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeRequirements-1 b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeRequirements-1 index a0c27e0e..b3de177d 100644 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeRequirements-1 and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeRequirements-1 differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeResources b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeResources index 00dfc182..158b7596 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeResources +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeResources @@ -10,15 +10,15 @@ ios-arm64/OSFirebaseMessagingLib.framework/Info.plist - sWwyshmz1mWW7d1lq1OqrBhF1ME= + +NPtEF00tkaiswcYfjxGkCEuj38= ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.abi.json - 2CWIvT7UAKkt/fSMphu8dy4QPM8= + Ok23OPHobqXCWwH4Bevs4+coIjw= ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.private.swiftinterface - hyn3DpEjlFQjd+g7P5Ui5CDjifo= + 6m6Bn6TpoTdjK0+TPp9SYdalpdY= ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftdoc @@ -26,7 +26,7 @@ ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftinterface - hyn3DpEjlFQjd+g7P5Ui5CDjifo= + 6m6Bn6TpoTdjK0+TPp9SYdalpdY= ios-arm64/OSFirebaseMessagingLib.framework/Modules/module.modulemap @@ -50,7 +50,7 @@ ios-arm64/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib - /YHG/wpZF+amBml9uPKr2fHTLko= + RWsUWzbltUii/0zfvYNUScJAAU4= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Headers/OSFirebaseMessagingLib-Swift.h @@ -58,15 +58,15 @@ ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Info.plist - IXr7wYcw9VP+61SmKVG4G0gveU8= + 6tuY1MnznM1CqgkQtTzOQ8xiFOw= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json - 4x/sBYZWTV2bEygjFvwjced1lYM= + U+R/eFnBTyTX0XeLs9VMZJxccZA= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - C2SUY+gQuOJLdEQx1965Y7pI22g= + BQ7WLTs+e0DroYGuORcHFNZohaI= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -74,15 +74,15 @@ ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - C2SUY+gQuOJLdEQx1965Y7pI22g= + BQ7WLTs+e0DroYGuORcHFNZohaI= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - 4x/sBYZWTV2bEygjFvwjced1lYM= + U+R/eFnBTyTX0XeLs9VMZJxccZA= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - W49YTdboAsTtkYNnXl95fk1jSTw= + gJWYlMdUVB09BYPXNAT/djKjRYE= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -90,7 +90,7 @@ ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - W49YTdboAsTtkYNnXl95fk1jSTw= + gJWYlMdUVB09BYPXNAT/djKjRYE= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/module.modulemap @@ -114,11 +114,11 @@ ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib - W467EZcKOy1qlPzeTA0U5K+4BOo= + MuEPCgBq5vqVwd3EhDlYeExLlO8= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/_CodeSignature/CodeResources - WXiuG1zs12HkGmZwpHi/mul6hfM= + /17Pcbl/PxWmr6O78qzu+hKW/sU= files2 @@ -138,33 +138,33 @@ hash - sWwyshmz1mWW7d1lq1OqrBhF1ME= + +NPtEF00tkaiswcYfjxGkCEuj38= hash2 - Zp0tsqMu1xtk206NPQloM4xlhZfGaedbmjOVQlBG3F8= + cRAIpb5Qk7TffT1p80HxAf3XOhWlJQSxBNYKr2/j1hs= ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.abi.json hash - 2CWIvT7UAKkt/fSMphu8dy4QPM8= + Ok23OPHobqXCWwH4Bevs4+coIjw= hash2 - Po9tSTGRxUSruOOeFsAaUkkqR4ptj0cucQUVuYpmAAQ= + yCgOh8kTMjxwW94Z4lryKOq0Fo8i8uTxNwV4HQR7XD4= ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.private.swiftinterface hash - hyn3DpEjlFQjd+g7P5Ui5CDjifo= + 6m6Bn6TpoTdjK0+TPp9SYdalpdY= hash2 - EVsqyEN3C7O6YuCk3nJNG4mY6GbJXT50P0HloHGXsg8= + CajSY0dIMGDUyzM5jwiBvi/jMsaDD+ENvDvVbK7n8bA= ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftdoc @@ -182,11 +182,11 @@ hash - hyn3DpEjlFQjd+g7P5Ui5CDjifo= + 6m6Bn6TpoTdjK0+TPp9SYdalpdY= hash2 - EVsqyEN3C7O6YuCk3nJNG4mY6GbJXT50P0HloHGXsg8= + CajSY0dIMGDUyzM5jwiBvi/jMsaDD+ENvDvVbK7n8bA= ios-arm64/OSFirebaseMessagingLib.framework/Modules/module.modulemap @@ -248,11 +248,11 @@ hash - /YHG/wpZF+amBml9uPKr2fHTLko= + RWsUWzbltUii/0zfvYNUScJAAU4= hash2 - JwXgQc1lh+CUVziyxTwblyX9n7uhPw9ze5m+/BXS+nE= + hzI73bZ/Wl1xLOT7m0dhvF2DcnKbSd2dgRoLaQ7Yqk0= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Headers/OSFirebaseMessagingLib-Swift.h @@ -270,33 +270,33 @@ hash - IXr7wYcw9VP+61SmKVG4G0gveU8= + 6tuY1MnznM1CqgkQtTzOQ8xiFOw= hash2 - +NBcKFrRNqlQSmG3Et0c/3Tv9Jr/2k2LuciTpLR3fzY= + 27KZ0fxFqc4nryww92nPLDLobDwwJ4LBsUJfvgLz7EU= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json hash - 4x/sBYZWTV2bEygjFvwjced1lYM= + U+R/eFnBTyTX0XeLs9VMZJxccZA= hash2 - HGjBodWRrfRUCbZiOkmF7SvQ6G1aS/3ph6oXO9wHAoc= + Ol4q47sHm94c8JQju3t1vE1td5MVX5uHhbPKR+XrB4E= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash - C2SUY+gQuOJLdEQx1965Y7pI22g= + BQ7WLTs+e0DroYGuORcHFNZohaI= hash2 - xRPA4W5UW904MUO3WbU7zsmV6dZ4k/xet1Gs155/EkQ= + Ak7izsD4xNeGH1mu3797qVuX7CWfD9tVmEIWlr1j0pI= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -314,33 +314,33 @@ hash - C2SUY+gQuOJLdEQx1965Y7pI22g= + BQ7WLTs+e0DroYGuORcHFNZohaI= hash2 - xRPA4W5UW904MUO3WbU7zsmV6dZ4k/xet1Gs155/EkQ= + Ak7izsD4xNeGH1mu3797qVuX7CWfD9tVmEIWlr1j0pI= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json hash - 4x/sBYZWTV2bEygjFvwjced1lYM= + U+R/eFnBTyTX0XeLs9VMZJxccZA= hash2 - HGjBodWRrfRUCbZiOkmF7SvQ6G1aS/3ph6oXO9wHAoc= + Ol4q47sHm94c8JQju3t1vE1td5MVX5uHhbPKR+XrB4E= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash - W49YTdboAsTtkYNnXl95fk1jSTw= + gJWYlMdUVB09BYPXNAT/djKjRYE= hash2 - j7W0WCHNXxNMIOVUU0NRNlAUxInPYbLhQmnhQ1CaENM= + gZZJpV91j8uIqN/B/7WMx3NMpQHhKB9913aMv9yIDxQ= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -358,11 +358,11 @@ hash - W49YTdboAsTtkYNnXl95fk1jSTw= + gJWYlMdUVB09BYPXNAT/djKjRYE= hash2 - j7W0WCHNXxNMIOVUU0NRNlAUxInPYbLhQmnhQ1CaENM= + gZZJpV91j8uIqN/B/7WMx3NMpQHhKB9913aMv9yIDxQ= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/module.modulemap @@ -424,22 +424,22 @@ hash - W467EZcKOy1qlPzeTA0U5K+4BOo= + MuEPCgBq5vqVwd3EhDlYeExLlO8= hash2 - TICbw/9f6tTKS5Ah6+MXEndn9bAASrj7Wi9IAuFGBs0= + YAB6fBH8vUVIt63ZssAF+peu/g2MMyG7s868p09SJy0= ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/_CodeSignature/CodeResources hash - WXiuG1zs12HkGmZwpHi/mul6hfM= + /17Pcbl/PxWmr6O78qzu+hKW/sU= hash2 - nzvU6hsqjuCyf9etznluLTdmhWzYQShLmkzN0hFuujw= + DlNGmDaal1ggmJtjyP7ySpCZSGLdFYCAsHgh5OiPPwE= diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeSignature b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeSignature index 740fd8b2..9a5b17cb 100644 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeSignature and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/_CodeSignature/CodeSignature differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Info.plist b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Info.plist index da8a8c8f..a1ee32aa 100644 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Info.plist and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Info.plist differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.abi.json b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.abi.json index 64ca71a1..e637930a 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.abi.json +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.abi.json @@ -586,6 +586,43 @@ "mangledName": "$s22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO7generalyA2CmF", "moduleName": "OSFirebaseMessagingLib" }, + { + "kind": "Var", + "name": "appGeneral", + "printedName": "appGeneral", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSFirebaseMessagingLib.OSFCMSubscriptionTopic.Type) -> OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "children": [ + { + "kind": "TypeNominal", + "name": "OSFCMSubscriptionTopic", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSFCMSubscriptionTopic", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO10appGeneralyA2CmF", + "mangledName": "$s22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO10appGeneralyA2CmF", + "moduleName": "OSFirebaseMessagingLib" + }, { "kind": "Var", "name": "specific", @@ -6168,870 +6205,933 @@ }, "ConstValues": [ { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMExtraData.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMExtraData.swift", "kind": "StringLiteral", "offset": 964, "length": 16, "value": "\"OSFCMExtraData\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", "kind": "StringLiteral", "offset": 1208, "length": 19, "value": "\"OSFCMNotification\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", "kind": "StringLiteral", "offset": 3335, "length": 22, "value": "\"managedObjectContext\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 992, "length": 32, "value": "\"Couldn't register your device.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1088, "length": 59, "value": "\"Couldn't register your device due to lack of permissions.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1202, "length": 34, "value": "\"Couldn't unregister your device.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1302, "length": 75, "value": "\"Couldn't unregister your device due to an error while deleting the token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1430, "length": 30, "value": "\"Couldn't subscribe to topic.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1515, "length": 34, "value": "\"Couldn't unsubscribe from topic.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1604, "length": 24, "value": "\"Couldn't obtain token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1682, "length": 24, "value": "\"Couldn't delete token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1765, "length": 28, "value": "\"Couldn't set badge number.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1864, "length": 52, "value": "\"Couldn't request permission to send notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1974, "length": 29, "value": "\"Couldn't send notification.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2063, "length": 31, "value": "\"Couldn't delete notification.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2160, "length": 38, "value": "\"Couldn't fetch silent notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2273, "length": 76, "value": "\"Couldn't set the value for exporting message delivery metrics to BigQuery.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2408, "length": 28, "value": "\"Couldn't get badge number.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2495, "length": 66, "value": "\"There was an error requesting permissions to send notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2789, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Date+Extension.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Date+Extension.swift", "kind": "FloatLiteral", "offset": 190, "length": 6, "value": "1000.0" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", "kind": "StringLiteral", "offset": 632, "length": 20, "value": "\"GoogleService-Info\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", "kind": "StringLiteral", "offset": 1008, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", "kind": "StringLiteral", "offset": 822, "length": 26, "value": "\"www\/\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", "kind": "StringLiteral", "offset": 847, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/PushDataMessages\/OSFCMPushDataMessageBehaviour.swift", + "kind": "StringLiteral", + "offset": 974, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", "offset": 3055, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 189, "length": 36, "value": "\"OSFirebaseMessagingLib.FirebaseMessagingApplicationDelegate\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "Array", "offset": 6327, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8422, "length": 54, "value": "\"FCM Token retrieved: \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8475, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8879, "length": 20, "value": "\"google.c.sender.id\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8934, "length": 16, "value": "\"gcm.message_id\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8983, "length": 14, "value": "\"google.c.fid\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9029, "length": 14, "value": "\"google.c.a.e\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9069, "length": 5, "value": "\"aps\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9102, "length": 7, "value": "\"alert\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9148, "length": 19, "value": "\"content-available\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9200, "length": 12, "value": "\"timeToLive\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9245, "length": 12, "value": "\"showDialog\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9285, "length": 7, "value": "\"title\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9319, "length": 6, "value": "\"body\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9356, "length": 10, "value": "\"deepLink\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9399, "length": 13, "value": "\"fcm_options\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9453, "length": 11, "value": "\"messageID\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9500, "length": 15, "value": "\"extraDataList\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9541, "length": 5, "value": "\"key\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9574, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9625, "length": 14, "value": "\"notification\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9681, "length": 12, "value": "\"screenName\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9729, "length": 15, "value": "\"parameterList\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 11821, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 12260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 12477, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 12466, + "offset": 12904, "length": 5, "value": "false" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 13196, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 13095, + "offset": 13512, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 14774, + "offset": 15187, "length": 5, "value": "false" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 15089, + "offset": 15502, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "IntegerLiteral", - "offset": 17410, + "offset": 17823, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", - "offset": 19118, + "offset": 19531, "length": 43, "value": "\"deliveryMetricsExportToBigQueryEnabledKey\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/MessagingManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/MessagingManager.swift", "kind": "StringLiteral", "offset": 1066, "length": 10, "value": "\"%02.2hhx\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Encodable+Extension.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Encodable+Extension.swift", "kind": "StringLiteral", "offset": 420, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 4429, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "StringLiteral", "offset": 1269, "length": 19, "value": "\"OSFirebaseMessagingLib.NotificationManager\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 5058, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 6050, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1168, + "offset": 1208, "length": 64, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1253, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1256, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1271, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1304, + "length": 54, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1213, + "offset": 1339, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1216, + "offset": 1342, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1231, + "offset": 1357, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1451, + "offset": 1577, "length": 20, "value": "\"-general-topic-ios\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", "offset": 95, "length": 27, "value": "\"OSFirebaseMessagingLib.FirebaseMessagingController\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 180, "length": 20, "value": "\"NotificationsModel\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 507, "length": 6, "value": "\"momd\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 545, "length": 24, "value": "\"Error initializing mom\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1027, "length": 46, "value": "\"Unresolved error \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1053, "length": 1, "value": "\", \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1072, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-gfyjcvvzdqpkbqdizmfurtfnupzl\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphoneos\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMExtraData+CoreDataProperties.swift", + "filePath": "\/Users\/alexandre.jacinto\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-bfimcqzfjibzyhbdjingkuxsfoty\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphoneos\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMExtraData+CoreDataProperties.swift", "kind": "StringLiteral", - "offset": 389, + "offset": 382, "length": 16, "value": "\"OSFCMExtraData\"" }, { - "filePath": "\/Users\/rcj\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-gfyjcvvzdqpkbqdizmfurtfnupzl\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphoneos\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMNotification+CoreDataProperties.swift", + "filePath": "\/Users\/alexandre.jacinto\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-bfimcqzfjibzyhbdjingkuxsfoty\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphoneos\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMNotification+CoreDataProperties.swift", "kind": "StringLiteral", - "offset": 401, + "offset": 394, "length": 19, "value": "\"OSFCMNotification\"" } diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.private.swiftinterface index 927dd6db..bcac3a85 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -20,6 +20,7 @@ import _SwiftConcurrencyShims } public enum OSFCMSubscriptionTopic { case general + case appGeneral case specific(name: Swift.String) } public enum OSFCMTokenType { diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftinterface b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftinterface index 927dd6db..bcac3a85 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftinterface +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios.swiftinterface @@ -20,6 +20,7 @@ import _SwiftConcurrencyShims } public enum OSFCMSubscriptionTopic { case general + case appGeneral case specific(name: Swift.String) } public enum OSFCMTokenType { diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib index c62519c1..4a454a58 100755 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Info.plist b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Info.plist index b4ba0dc3..b3044315 100644 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Info.plist and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Info.plist differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json index 8a0516d7..f3ea9459 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -586,6 +586,43 @@ "mangledName": "$s22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO7generalyA2CmF", "moduleName": "OSFirebaseMessagingLib" }, + { + "kind": "Var", + "name": "appGeneral", + "printedName": "appGeneral", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSFirebaseMessagingLib.OSFCMSubscriptionTopic.Type) -> OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "children": [ + { + "kind": "TypeNominal", + "name": "OSFCMSubscriptionTopic", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSFCMSubscriptionTopic", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO10appGeneralyA2CmF", + "mangledName": "$s22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO10appGeneralyA2CmF", + "moduleName": "OSFirebaseMessagingLib" + }, { "kind": "Var", "name": "specific", @@ -6168,870 +6205,933 @@ }, "ConstValues": [ { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMExtraData.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMExtraData.swift", "kind": "StringLiteral", "offset": 964, "length": 16, "value": "\"OSFCMExtraData\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", "kind": "StringLiteral", "offset": 1208, "length": 19, "value": "\"OSFCMNotification\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", "kind": "StringLiteral", "offset": 3335, "length": 22, "value": "\"managedObjectContext\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 992, "length": 32, "value": "\"Couldn't register your device.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1088, "length": 59, "value": "\"Couldn't register your device due to lack of permissions.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1202, "length": 34, "value": "\"Couldn't unregister your device.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1302, "length": 75, "value": "\"Couldn't unregister your device due to an error while deleting the token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1430, "length": 30, "value": "\"Couldn't subscribe to topic.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1515, "length": 34, "value": "\"Couldn't unsubscribe from topic.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1604, "length": 24, "value": "\"Couldn't obtain token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1682, "length": 24, "value": "\"Couldn't delete token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1765, "length": 28, "value": "\"Couldn't set badge number.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1864, "length": 52, "value": "\"Couldn't request permission to send notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1974, "length": 29, "value": "\"Couldn't send notification.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2063, "length": 31, "value": "\"Couldn't delete notification.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2160, "length": 38, "value": "\"Couldn't fetch silent notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2273, "length": 76, "value": "\"Couldn't set the value for exporting message delivery metrics to BigQuery.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2408, "length": 28, "value": "\"Couldn't get badge number.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2495, "length": 66, "value": "\"There was an error requesting permissions to send notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2789, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Date+Extension.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Date+Extension.swift", "kind": "FloatLiteral", "offset": 190, "length": 6, "value": "1000.0" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", "kind": "StringLiteral", "offset": 632, "length": 20, "value": "\"GoogleService-Info\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", "kind": "StringLiteral", "offset": 1008, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", "kind": "StringLiteral", "offset": 822, "length": 26, "value": "\"www\/\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", "kind": "StringLiteral", "offset": 847, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/PushDataMessages\/OSFCMPushDataMessageBehaviour.swift", + "kind": "StringLiteral", + "offset": 974, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", "offset": 3055, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 189, "length": 36, "value": "\"OSFirebaseMessagingLib.FirebaseMessagingApplicationDelegate\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "Array", "offset": 6327, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8422, "length": 54, "value": "\"FCM Token retrieved: \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8475, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8879, "length": 20, "value": "\"google.c.sender.id\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8934, "length": 16, "value": "\"gcm.message_id\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8983, "length": 14, "value": "\"google.c.fid\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9029, "length": 14, "value": "\"google.c.a.e\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9069, "length": 5, "value": "\"aps\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9102, "length": 7, "value": "\"alert\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9148, "length": 19, "value": "\"content-available\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9200, "length": 12, "value": "\"timeToLive\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9245, "length": 12, "value": "\"showDialog\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9285, "length": 7, "value": "\"title\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9319, "length": 6, "value": "\"body\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9356, "length": 10, "value": "\"deepLink\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9399, "length": 13, "value": "\"fcm_options\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9453, "length": 11, "value": "\"messageID\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9500, "length": 15, "value": "\"extraDataList\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9541, "length": 5, "value": "\"key\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9574, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9625, "length": 14, "value": "\"notification\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9681, "length": 12, "value": "\"screenName\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9729, "length": 15, "value": "\"parameterList\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 11821, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 12260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 12477, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 12466, + "offset": 12904, "length": 5, "value": "false" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 13196, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 13095, + "offset": 13512, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 14774, + "offset": 15187, "length": 5, "value": "false" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 15089, + "offset": 15502, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "IntegerLiteral", - "offset": 17410, + "offset": 17823, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", - "offset": 19118, + "offset": 19531, "length": 43, "value": "\"deliveryMetricsExportToBigQueryEnabledKey\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/MessagingManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/MessagingManager.swift", "kind": "StringLiteral", "offset": 1066, "length": 10, "value": "\"%02.2hhx\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Encodable+Extension.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Encodable+Extension.swift", "kind": "StringLiteral", "offset": 420, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 4429, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "StringLiteral", "offset": 1269, "length": 19, "value": "\"OSFirebaseMessagingLib.NotificationManager\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 5058, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 6050, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1168, + "offset": 1208, "length": 64, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1253, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1256, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1271, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1304, + "length": 54, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1213, + "offset": 1339, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1216, + "offset": 1342, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1231, + "offset": 1357, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1451, + "offset": 1577, "length": 20, "value": "\"-general-topic-ios\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", "offset": 95, "length": 27, "value": "\"OSFirebaseMessagingLib.FirebaseMessagingController\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 180, "length": 20, "value": "\"NotificationsModel\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 507, "length": 6, "value": "\"momd\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 545, "length": 24, "value": "\"Error initializing mom\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1027, "length": 46, "value": "\"Unresolved error \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1053, "length": 1, "value": "\", \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1072, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-gfyjcvvzdqpkbqdizmfurtfnupzl\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMExtraData+CoreDataProperties.swift", + "filePath": "\/Users\/alexandre.jacinto\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-bfimcqzfjibzyhbdjingkuxsfoty\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMExtraData+CoreDataProperties.swift", "kind": "StringLiteral", - "offset": 389, + "offset": 382, "length": 16, "value": "\"OSFCMExtraData\"" }, { - "filePath": "\/Users\/rcj\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-gfyjcvvzdqpkbqdizmfurtfnupzl\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMNotification+CoreDataProperties.swift", + "filePath": "\/Users\/alexandre.jacinto\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-bfimcqzfjibzyhbdjingkuxsfoty\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMNotification+CoreDataProperties.swift", "kind": "StringLiteral", - "offset": 401, + "offset": 394, "length": 19, "value": "\"OSFCMNotification\"" } diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 86bb07c2..69584f6e 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -20,6 +20,7 @@ import _SwiftConcurrencyShims } public enum OSFCMSubscriptionTopic { case general + case appGeneral case specific(name: Swift.String) } public enum OSFCMTokenType { diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 86bb07c2..69584f6e 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -20,6 +20,7 @@ import _SwiftConcurrencyShims } public enum OSFCMSubscriptionTopic { case general + case appGeneral case specific(name: Swift.String) } public enum OSFCMTokenType { diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json index 8a0516d7..f3ea9459 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -586,6 +586,43 @@ "mangledName": "$s22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO7generalyA2CmF", "moduleName": "OSFirebaseMessagingLib" }, + { + "kind": "Var", + "name": "appGeneral", + "printedName": "appGeneral", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSFirebaseMessagingLib.OSFCMSubscriptionTopic.Type) -> OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "children": [ + { + "kind": "TypeNominal", + "name": "OSFCMSubscriptionTopic", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSFCMSubscriptionTopic", + "printedName": "OSFirebaseMessagingLib.OSFCMSubscriptionTopic", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO10appGeneralyA2CmF", + "mangledName": "$s22OSFirebaseMessagingLib22OSFCMSubscriptionTopicO10appGeneralyA2CmF", + "moduleName": "OSFirebaseMessagingLib" + }, { "kind": "Var", "name": "specific", @@ -6168,870 +6205,933 @@ }, "ConstValues": [ { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMExtraData.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMExtraData.swift", "kind": "StringLiteral", "offset": 964, "length": 16, "value": "\"OSFCMExtraData\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", "kind": "StringLiteral", "offset": 1208, "length": 19, "value": "\"OSFCMNotification\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Model\/OSFCMNotification.swift", "kind": "StringLiteral", "offset": 3335, "length": 22, "value": "\"managedObjectContext\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 992, "length": 32, "value": "\"Couldn't register your device.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1088, "length": 59, "value": "\"Couldn't register your device due to lack of permissions.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1202, "length": 34, "value": "\"Couldn't unregister your device.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1302, "length": 75, "value": "\"Couldn't unregister your device due to an error while deleting the token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1430, "length": 30, "value": "\"Couldn't subscribe to topic.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1515, "length": 34, "value": "\"Couldn't unsubscribe from topic.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1604, "length": 24, "value": "\"Couldn't obtain token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1682, "length": 24, "value": "\"Couldn't delete token.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1765, "length": 28, "value": "\"Couldn't set badge number.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1864, "length": 52, "value": "\"Couldn't request permission to send notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 1974, "length": 29, "value": "\"Couldn't send notification.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2063, "length": 31, "value": "\"Couldn't delete notification.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2160, "length": 38, "value": "\"Couldn't fetch silent notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2273, "length": 76, "value": "\"Couldn't set the value for exporting message delivery metrics to BigQuery.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2408, "length": 28, "value": "\"Couldn't get badge number.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2495, "length": 66, "value": "\"There was an error requesting permissions to send notifications.\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "StringLiteral", "offset": 2789, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 202, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 244, "length": 1, "value": "2" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 277, "length": 1, "value": "3" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 321, "length": 1, "value": "4" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 352, "length": 1, "value": "5" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 385, "length": 1, "value": "6" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 418, "length": 1, "value": "7" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 450, "length": 1, "value": "8" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 487, "length": 1, "value": "9" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 536, "length": 2, "value": "12" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 573, "length": 2, "value": "14" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 612, "length": 2, "value": "15" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 657, "length": 2, "value": "16" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 711, "length": 2, "value": "17" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 749, "length": 2, "value": "23" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseMessagingErrors.swift", "kind": "IntegerLiteral", "offset": 806, "length": 23, "value": "24" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Date+Extension.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Date+Extension.swift", "kind": "FloatLiteral", "offset": 190, "length": 6, "value": "1000.0" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", "kind": "StringLiteral", "offset": 632, "length": 20, "value": "\"GoogleService-Info\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Utils\/FirebaseConfigurations.swift", "kind": "StringLiteral", "offset": 1008, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", "kind": "StringLiteral", "offset": 822, "length": 26, "value": "\"www\/\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/OSLCNOActionDelegate+Accelerators.swift", "kind": "StringLiteral", "offset": 847, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/PushDataMessages\/OSFCMPushDataMessageBehaviour.swift", + "kind": "StringLiteral", + "offset": 974, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", "offset": 3055, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 189, "length": 36, "value": "\"OSFirebaseMessagingLib.FirebaseMessagingApplicationDelegate\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "Array", "offset": 6327, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8422, "length": 54, "value": "\"FCM Token retrieved: \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8475, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8879, "length": 20, "value": "\"google.c.sender.id\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8934, "length": 16, "value": "\"gcm.message_id\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 8983, "length": 14, "value": "\"google.c.fid\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9029, "length": 14, "value": "\"google.c.a.e\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9069, "length": 5, "value": "\"aps\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9102, "length": 7, "value": "\"alert\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9148, "length": 19, "value": "\"content-available\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9200, "length": 12, "value": "\"timeToLive\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9245, "length": 12, "value": "\"showDialog\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9285, "length": 7, "value": "\"title\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9319, "length": 6, "value": "\"body\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9356, "length": 10, "value": "\"deepLink\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9399, "length": 13, "value": "\"fcm_options\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9453, "length": 11, "value": "\"messageID\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9500, "length": 15, "value": "\"extraDataList\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9541, "length": 5, "value": "\"key\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9574, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9625, "length": 14, "value": "\"notification\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9681, "length": 12, "value": "\"screenName\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", "offset": 9729, "length": 15, "value": "\"parameterList\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 11821, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 12260, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 12477, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 12466, + "offset": 12904, "length": 5, "value": "false" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 13196, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 13095, + "offset": 13512, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 14774, + "offset": 15187, "length": 5, "value": "false" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "BooleanLiteral", - "offset": 15089, + "offset": 15502, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "IntegerLiteral", - "offset": 17410, + "offset": 17823, "length": 1, "value": "1" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingApplicationDelegate.swift", "kind": "StringLiteral", - "offset": 19118, + "offset": 19531, "length": 43, "value": "\"deliveryMetricsExportToBigQueryEnabledKey\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/MessagingManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/MessagingManager.swift", "kind": "StringLiteral", "offset": 1066, "length": 10, "value": "\"%02.2hhx\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Encodable+Extension.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Extensions\/Encodable+Extension.swift", "kind": "StringLiteral", "offset": 420, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 4429, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "StringLiteral", "offset": 1269, "length": 19, "value": "\"OSFirebaseMessagingLib.NotificationManager\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 5058, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/Managers\/NotificationManager.swift", "kind": "BooleanLiteral", "offset": 6050, "length": 4, "value": "true" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1168, + "offset": 1208, "length": 64, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1253, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1256, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1271, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "kind": "StringLiteral", + "offset": 1304, + "length": 54, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1213, + "offset": 1339, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1216, + "offset": 1342, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1231, + "offset": 1357, "length": 1, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", - "offset": 1451, + "offset": 1577, "length": 20, "value": "\"-general-topic-ios\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/FirebaseMessagingController.swift", "kind": "StringLiteral", "offset": 95, "length": 27, "value": "\"OSFirebaseMessagingLib.FirebaseMessagingController\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 180, "length": 20, "value": "\"NotificationsModel\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 507, "length": 6, "value": "\"momd\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 545, "length": 24, "value": "\"Error initializing mom\"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1027, "length": 46, "value": "\"Unresolved error \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1053, "length": 1, "value": "\", \"" }, { - "filePath": "\/Users\/rcj\/Documents\/Projects\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSFirebaseMessagingLib-iOS\/OSFirebaseMessagingLib\/CoreDataManager\/CoreDataManager.swift", "kind": "StringLiteral", "offset": 1072, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/rcj\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-gfyjcvvzdqpkbqdizmfurtfnupzl\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMExtraData+CoreDataProperties.swift", + "filePath": "\/Users\/alexandre.jacinto\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-bfimcqzfjibzyhbdjingkuxsfoty\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMExtraData+CoreDataProperties.swift", "kind": "StringLiteral", - "offset": 389, + "offset": 382, "length": 16, "value": "\"OSFCMExtraData\"" }, { - "filePath": "\/Users\/rcj\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-gfyjcvvzdqpkbqdizmfurtfnupzl\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMNotification+CoreDataProperties.swift", + "filePath": "\/Users\/alexandre.jacinto\/Library\/Developer\/Xcode\/DerivedData\/OSFirebaseMessagingLib-bfimcqzfjibzyhbdjingkuxsfoty\/Build\/Intermediates.noindex\/ArchiveIntermediates\/OSFirebaseMessagingLib\/IntermediateBuildFilesPath\/OSFirebaseMessagingLib.build\/Release-iphonesimulator\/OSFirebaseMessagingLib.build\/DerivedSources\/CoreDataGenerated\/NotificationsModel\/OSFCMNotification+CoreDataProperties.swift", "kind": "StringLiteral", - "offset": 401, + "offset": 394, "length": 19, "value": "\"OSFCMNotification\"" } diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 861666ea..65664fbf 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -20,6 +20,7 @@ import _SwiftConcurrencyShims } public enum OSFCMSubscriptionTopic { case general + case appGeneral case specific(name: Swift.String) } public enum OSFCMTokenType { diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 861666ea..65664fbf 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -20,6 +20,7 @@ import _SwiftConcurrencyShims } public enum OSFCMSubscriptionTopic { case general + case appGeneral case specific(name: Swift.String) } public enum OSFCMTokenType { diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib index 46db752f..8f37f2e3 100755 Binary files a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib and b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/OSFirebaseMessagingLib differ diff --git a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/_CodeSignature/CodeResources b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/_CodeSignature/CodeResources index 2b345fe4..b4bc8086 100644 --- a/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/_CodeSignature/CodeResources +++ b/src/ios/frameworks/OSFirebaseMessagingLib.xcframework/ios-arm64_x86_64-simulator/OSFirebaseMessagingLib.framework/_CodeSignature/CodeResources @@ -10,15 +10,15 @@ Info.plist - IXr7wYcw9VP+61SmKVG4G0gveU8= + 6tuY1MnznM1CqgkQtTzOQ8xiFOw= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.abi.json - 4x/sBYZWTV2bEygjFvwjced1lYM= + U+R/eFnBTyTX0XeLs9VMZJxccZA= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - C2SUY+gQuOJLdEQx1965Y7pI22g= + BQ7WLTs+e0DroYGuORcHFNZohaI= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -26,19 +26,19 @@ Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - C2SUY+gQuOJLdEQx1965Y7pI22g= + BQ7WLTs+e0DroYGuORcHFNZohaI= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - A6nKWoK+PT5yMyHWNnq+eR4eqzc= + 6TtcxNRW/r22mKrbkWcy+Glh4Vk= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - 4x/sBYZWTV2bEygjFvwjced1lYM= + U+R/eFnBTyTX0XeLs9VMZJxccZA= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - W49YTdboAsTtkYNnXl95fk1jSTw= + gJWYlMdUVB09BYPXNAT/djKjRYE= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -46,11 +46,11 @@ Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - W49YTdboAsTtkYNnXl95fk1jSTw= + gJWYlMdUVB09BYPXNAT/djKjRYE= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - m8DOkBwzjfbssb7s07PvEq8DPwk= + sICiewTCiE/tV6nkYVyIPCz/g1A= Modules/module.modulemap @@ -86,14 +86,14 @@ hash2 - HGjBodWRrfRUCbZiOkmF7SvQ6G1aS/3ph6oXO9wHAoc= + Ol4q47sHm94c8JQju3t1vE1td5MVX5uHhbPKR+XrB4E= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - xRPA4W5UW904MUO3WbU7zsmV6dZ4k/xet1Gs155/EkQ= + Ak7izsD4xNeGH1mu3797qVuX7CWfD9tVmEIWlr1j0pI= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc @@ -107,28 +107,28 @@ hash2 - xRPA4W5UW904MUO3WbU7zsmV6dZ4k/xet1Gs155/EkQ= + Ak7izsD4xNeGH1mu3797qVuX7CWfD9tVmEIWlr1j0pI= Modules/OSFirebaseMessagingLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - 8Z3jcZKKk0hTZ8w4NWnKLceIk3wPaplH/L436bwhyfg= + 8fBfpybFIB/QvELpErTGZTyndKYXqJ2xdztSBFz6OaI= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - HGjBodWRrfRUCbZiOkmF7SvQ6G1aS/3ph6oXO9wHAoc= + Ol4q47sHm94c8JQju3t1vE1td5MVX5uHhbPKR+XrB4E= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - j7W0WCHNXxNMIOVUU0NRNlAUxInPYbLhQmnhQ1CaENM= + gZZJpV91j8uIqN/B/7WMx3NMpQHhKB9913aMv9yIDxQ= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc @@ -142,14 +142,14 @@ hash2 - j7W0WCHNXxNMIOVUU0NRNlAUxInPYbLhQmnhQ1CaENM= + gZZJpV91j8uIqN/B/7WMx3NMpQHhKB9913aMv9yIDxQ= Modules/OSFirebaseMessagingLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - msXO8XdTtdCNTVDMeGJNfgSqzEwDCVLdYjRXtGAPhOg= + 73fhwMn58bF2LTNEUFXwsMyLLS6/w85XR/xUGRAs0hw= Modules/module.modulemap diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/Info.plist b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/Info.plist index c8907570..ef7e160b 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/Info.plist +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/Info.plist @@ -5,31 +5,35 @@ AvailableLibraries + BinaryPath + OSLocalNotificationsLib.framework/OSLocalNotificationsLib LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath OSLocalNotificationsLib.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator + BinaryPath + OSLocalNotificationsLib.framework/OSLocalNotificationsLib LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath OSLocalNotificationsLib.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator CFBundlePackageType diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h index 12d4cb91..baac2c80 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) #ifndef OSLOCALNOTIFICATIONSLIB_SWIFT_H #define OSLOCALNOTIFICATIONSLIB_SWIFT_H #pragma clang diagnostic push @@ -22,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -60,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -126,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -176,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -191,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -204,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -212,12 +296,20 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Info.plist b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Info.plist index 500573f2..813a23f0 100644 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Info.plist and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Info.plist differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.abi.json b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 00000000..955b37bd --- /dev/null +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,2742 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOInternalEvent", + "printedName": "OSLCNOInternalEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "screenName", + "printedName": "screenName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type) -> OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO10screenNameyA2EmF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO10screenNameyA2EmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "parameterArray", + "printedName": "parameterArray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type) -> OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO14parameterArrayyA2EmF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO14parameterArrayyA2EmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(screenName:parameterArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[OSLocalNotificationsLib.OSLCNOParameter]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOParameter]", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10screenName14parameterArrayACSS_SayAA15OSLCNOParameterVGSgtcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10screenName14parameterArrayACSS_SayAA15OSLCNOParameterVGSgtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOError", + "printedName": "OSLCNOError", + "children": [ + { + "kind": "Var", + "name": "noTitle", + "printedName": "noTitle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOError.Type) -> OSLocalNotificationsLib.OSLCNOError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO7noTitleyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO7noTitleyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "triggerError", + "printedName": "triggerError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOError.Type) -> OSLocalNotificationsLib.OSLCNOError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO12triggerErroryA2CmF", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO12triggerErroryA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvp", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvp", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvg", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvg", + "moduleName": "OSLocalNotificationsLib", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueACSgSi_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivp", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivg", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOFactory", + "printedName": "OSLCNOFactory", + "children": [ + { + "kind": "Function", + "name": "createUNWrapper", + "printedName": "createUNWrapper()", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionDelegate", + "printedName": "OSLocalNotificationsLib.OSLCNOActionDelegate", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib13OSLCNOFactoryV15createUNWrapperAA20OSLCNOActionDelegate_pyFZ", + "mangledName": "$s23OSLocalNotificationsLib13OSLCNOFactoryV15createUNWrapperAA20OSLCNOActionDelegate_pyFZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib13OSLCNOFactoryV", + "mangledName": "$s23OSLocalNotificationsLib13OSLCNOFactoryV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionDelegate", + "printedName": "OSLCNOActionDelegate", + "children": [ + { + "kind": "Function", + "name": "triggerNotification", + "printedName": "triggerNotification(with:_:_:sound:actions:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[OSLocalNotificationsLib.OSLCNOAction]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOAction]", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP19triggerNotification4with__5sound7actions3andySS_SSSgSiSgAISayAA0D0VGSgAA19OSLCNOInternalEventVSgtYaKF", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP19triggerNotification4with__5sound7actions3andySS_SSSgSiSgAISayAA0D0VGSgAA19OSLCNOInternalEventVSgtYaKF", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSLocalNotificationsLib.OSLCNOActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearNotificationCategory", + "printedName": "clearNotificationCategory(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP25clearNotificationCategory4withySS_tYaF", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP25clearNotificationCategory4withySS_tYaF", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSLocalNotificationsLib.OSLCNOActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOParameter", + "printedName": "OSLCNOParameter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV3key5valueACSS_SStcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV3key5valueACSS_SStcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionEvent", + "printedName": "OSLCNOActionEvent", + "children": [ + { + "kind": "Var", + "name": "internalRoute", + "printedName": "internalRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO13internalRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO13internalRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "appRoute", + "printedName": "appRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8appRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8appRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "webRoute", + "printedName": "webRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8webRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8webRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueACSgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueACSgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNORouteData", + "printedName": "OSLCNORouteData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(deepLinkScheme:identifier:parameterData:fallbackUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV14deepLinkScheme10identifier09parameterE011fallbackUrlACSS_SSSgSDyS2SGSgAHtcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV14deepLinkScheme10identifier09parameterE011fallbackUrlACSS_SSSgSDyS2SGSgAHtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOAction", + "printedName": "OSLCNOAction", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:label:textField:type:event:routeData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV10identifier5label9textField4type5event9routeDataACSS_SSAA0d4TextH0VSgAA0D4TypeOAA0D5EventOAA011OSLCNORouteL0Vtcfc", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV10identifier5label9textField4type5event9routeDataACSS_SSAA0d4TextH0VSgAA0D4TypeOAA0D5EventOAA011OSLCNORouteL0Vtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameterData", + "printedName": "getParameterData(withUserText:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV16getParameterData12withUserTextSDyS2SGSgSSSg_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV16getParameterData12withUserTextSDyS2SGSgSSSg_tKF", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "internalScreenName", + "printedName": "internalScreenName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvp", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvp", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvg", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvg", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getRouteURL", + "printedName": "getRouteURL(withUserText:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11getRouteURL12withUserText10Foundation0G0VSgSSSg_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11getRouteURL12withUserText10Foundation0G0VSgSSSg_tKF", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fallbackURL", + "printedName": "fallbackURL", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvp", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvp", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvg", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvg", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionType", + "printedName": "OSLCNOActionType", + "children": [ + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionType.Type) -> OSLocalNotificationsLib.OSLCNOActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8standardyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8standardyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "destructive", + "printedName": "destructive", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionType.Type) -> OSLocalNotificationsLib.OSLCNOActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO11destructiveyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO11destructiveyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueACSgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionTextField", + "printedName": "OSLCNOActionTextField", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(placeholder:inputTextKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV11placeholder05inputE3KeyACSS_SStcfc", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV11placeholder05inputE3KeyACSS_SStcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UNMutableNotificationContent", + "printedName": "UNMutableNotificationContent", + "declKind": "Class", + "usr": "c:objc(cs)UNMutableNotificationContent", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNMutableNotificationContent", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UNNotificationContent", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UserNotifications.UNNotificationContent", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UNUserNotificationCenter", + "printedName": "UNUserNotificationCenter", + "declKind": "Class", + "usr": "c:objc(cs)UNUserNotificationCenter", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNUserNotificationCenter", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNMutableNotificationContent+Adapter.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNNotificationActionExtension.swift", + "kind": "StringLiteral", + "offset": 738, + "length": 6, + "value": "\"Send\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNNotificationActionExtension.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "StringLiteral", + "offset": 309, + "length": 39, + "value": "\"A notification must have a title set.\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 55, + "value": "\"There was an error while triggering the notification.\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 1891, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 2958, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 3050, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3113, + "length": 10, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3122, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3484, + "length": 37, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3517, + "length": 1, + "value": "\":\/\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 3821, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3858, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4045, + "length": 30, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4065, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4074, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 4154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4195, + "length": 3, + "value": "\"&\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 13, + "value": "\"OSLocalNotificationsLib.OSLCNOWrapper\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "StringLiteral", + "offset": 663, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/Extensions\/Encodable+UNUserNotificationCenter.swift", + "kind": "Dictionary", + "offset": 284, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/Extensions\/Encodable+UNUserNotificationCenter.swift", + "kind": "Array", + "offset": 610, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNUserNotificationCenter+Adapter.swift", + "kind": "Array", + "offset": 402, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNUserNotificationCenter+Adapter.swift", + "kind": "Array", + "offset": 1056, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 00000000..1bf05daa --- /dev/null +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,128 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +import Swift +import UserNotifications +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public struct OSLCNOInternalEvent : Swift.Codable { + public enum CodingKeys : Swift.String, Swift.CodingKey, Swift.CaseIterable { + case screenName, parameterArray + public init?(rawValue: Swift.String) + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) + public typealias AllCases = [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] + public typealias RawValue = Swift.String + public static var allCases: [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] { + get + } + public var intValue: Swift.Int? { + get + } + public var rawValue: Swift.String { + get + } + public var stringValue: Swift.String { + get + } + } + public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { + case noTitle + case triggerError + public var errorDescription: Swift.String? { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct OSLCNOFactory { + public static func createUNWrapper() -> any OSLocalNotificationsLib.OSLCNOActionDelegate +} +public typealias OSLCNOSound = Swift.String +public protocol OSLCNOActionDelegate : AnyObject { + #if compiler(>=5.3) && $AsyncAwait + func triggerNotification(with title: Swift.String, _ body: Swift.String?, _ badge: Swift.Int?, sound: OSLocalNotificationsLib.OSLCNOSound?, actions: [OSLocalNotificationsLib.OSLCNOAction]?, and internalEvent: OSLocalNotificationsLib.OSLCNOInternalEvent?) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + func clearNotificationCategory(with id: Swift.String) async + #endif +} +public struct OSLCNOParameter : Swift.Codable { + public init(key: Swift.String, value: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OSLCNOActionEvent : Swift.String, Swift.Codable { + case internalRoute + case appRoute + case webRoute + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OSLCNORouteData { + public init(deepLinkScheme: Swift.String, identifier: Swift.String? = nil, parameterData: [Swift.String : Swift.String]? = nil, fallbackUrl: Swift.String? = nil) +} +extension OSLocalNotificationsLib.OSLCNORouteData : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct OSLCNOAction : Swift.Codable { + public init(identifier: Swift.String, label: Swift.String, textField: OSLocalNotificationsLib.OSLCNOActionTextField? = nil, type: OSLocalNotificationsLib.OSLCNOActionType, event: OSLocalNotificationsLib.OSLCNOActionEvent, routeData: OSLocalNotificationsLib.OSLCNORouteData) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension OSLocalNotificationsLib.OSLCNOAction { + public func getParameterData(withUserText userText: Swift.String?) throws -> [Swift.String : Swift.String]? + #if compiler(>=5.3) && $EffectfulProp + public var internalScreenName: Swift.String { + get throws + } + #endif +} +extension OSLocalNotificationsLib.OSLCNOAction { + public func getRouteURL(withUserText userText: Swift.String?) throws -> Foundation.URL? + #if compiler(>=5.3) && $EffectfulProp + public var fallbackURL: Foundation.URL? { + get throws + } + #endif +} +public enum OSLCNOActionType : Swift.String, Swift.Codable { + case standard + case destructive + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OSLCNOActionTextField : Swift.Codable { + public init(placeholder: Swift.String, inputTextKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.RawRepresentable {} diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftdoc b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftdoc index 34ee7495..b9e9f93d 100644 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftdoc and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftinterface b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftinterface index 1b7686bd..1bf05daa 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftinterface +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,17 +1,24 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation import Swift import UserNotifications import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public struct OSLCNOInternalEvent : Swift.Codable { - public enum CodingKeys : Swift.String, Swift.CodingKey { + public enum CodingKeys : Swift.String, Swift.CodingKey, Swift.CaseIterable { case screenName, parameterArray public init?(rawValue: Swift.String) public init?(stringValue: Swift.String) public init?(intValue: Swift.Int) + public typealias AllCases = [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] public typealias RawValue = Swift.String + public static var allCases: [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] { + get + } public var intValue: Swift.Int? { get } @@ -22,9 +29,9 @@ public struct OSLCNOInternalEvent : Swift.Codable { get } } - public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]? = nil) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { case noTitle @@ -39,25 +46,21 @@ public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.Locali } } public struct OSLCNOFactory { - public static func createUNWrapper() -> OSLocalNotificationsLib.OSLCNOActionDelegate + public static func createUNWrapper() -> any OSLocalNotificationsLib.OSLCNOActionDelegate } public typealias OSLCNOSound = Swift.String public protocol OSLCNOActionDelegate : AnyObject { - #if compiler(>=5.3) && $AsyncAwait func triggerNotification(with title: Swift.String, _ body: Swift.String?, _ badge: Swift.Int?, sound: OSLocalNotificationsLib.OSLCNOSound?, actions: [OSLocalNotificationsLib.OSLCNOAction]?, and internalEvent: OSLocalNotificationsLib.OSLCNOInternalEvent?) async throws #endif - - #if compiler(>=5.3) && $AsyncAwait func clearNotificationCategory(with id: Swift.String) async #endif - } public struct OSLCNOParameter : Swift.Codable { public init(key: Swift.String, value: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } public enum OSLCNOActionEvent : Swift.String, Swift.Codable { case internalRoute @@ -73,33 +76,29 @@ public struct OSLCNORouteData { public init(deepLinkScheme: Swift.String, identifier: Swift.String? = nil, parameterData: [Swift.String : Swift.String]? = nil, fallbackUrl: Swift.String? = nil) } extension OSLocalNotificationsLib.OSLCNORouteData : Swift.Codable { - public init(from decoder: Swift.Decoder) throws - public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws } public struct OSLCNOAction : Swift.Codable { public init(identifier: Swift.String, label: Swift.String, textField: OSLocalNotificationsLib.OSLCNOActionTextField? = nil, type: OSLocalNotificationsLib.OSLCNOActionType, event: OSLocalNotificationsLib.OSLCNOActionEvent, routeData: OSLocalNotificationsLib.OSLCNORouteData) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension OSLocalNotificationsLib.OSLCNOAction { public func getParameterData(withUserText userText: Swift.String?) throws -> [Swift.String : Swift.String]? - #if compiler(>=5.3) && $EffectfulProp public var internalScreenName: Swift.String { get throws } #endif - } extension OSLocalNotificationsLib.OSLCNOAction { public func getRouteURL(withUserText userText: Swift.String?) throws -> Foundation.URL? - #if compiler(>=5.3) && $EffectfulProp public var fallbackURL: Foundation.URL? { get throws } #endif - } public enum OSLCNOActionType : Swift.String, Swift.Codable { case standard @@ -112,8 +111,8 @@ public enum OSLCNOActionType : Swift.String, Swift.Codable { } public struct OSLCNOActionTextField : Swift.Codable { public init(placeholder: Swift.String, inputTextKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Equatable {} extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Hashable {} diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/OSLocalNotificationsLib b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/OSLocalNotificationsLib index 45c8d0f8..a0fd5d9f 100755 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/OSLocalNotificationsLib and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64/OSLocalNotificationsLib.framework/OSLocalNotificationsLib differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h index 10947d8a..fbeb3e51 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Headers/OSLocalNotificationsLib-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) #ifndef OSLOCALNOTIFICATIONSLIB_SWIFT_H #define OSLOCALNOTIFICATIONSLIB_SWIFT_H #pragma clang diagnostic push @@ -24,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -62,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -128,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -178,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -193,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -206,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -214,18 +296,22 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) #ifndef OSLOCALNOTIFICATIONSLIB_SWIFT_H #define OSLOCALNOTIFICATIONSLIB_SWIFT_H #pragma clang diagnostic push @@ -249,10 +335,38 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -287,53 +401,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -353,28 +480,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -403,13 +527,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -418,12 +546,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -431,6 +598,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -439,14 +607,20 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Info.plist b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Info.plist index 7abb6bb5..aee5bb93 100644 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Info.plist and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Info.plist differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..955b37bd --- /dev/null +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,2742 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOInternalEvent", + "printedName": "OSLCNOInternalEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "screenName", + "printedName": "screenName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type) -> OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO10screenNameyA2EmF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO10screenNameyA2EmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "parameterArray", + "printedName": "parameterArray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type) -> OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO14parameterArrayyA2EmF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO14parameterArrayyA2EmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(screenName:parameterArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[OSLocalNotificationsLib.OSLCNOParameter]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOParameter]", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10screenName14parameterArrayACSS_SayAA15OSLCNOParameterVGSgtcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10screenName14parameterArrayACSS_SayAA15OSLCNOParameterVGSgtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOError", + "printedName": "OSLCNOError", + "children": [ + { + "kind": "Var", + "name": "noTitle", + "printedName": "noTitle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOError.Type) -> OSLocalNotificationsLib.OSLCNOError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO7noTitleyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO7noTitleyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "triggerError", + "printedName": "triggerError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOError.Type) -> OSLocalNotificationsLib.OSLCNOError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO12triggerErroryA2CmF", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO12triggerErroryA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvp", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvp", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvg", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvg", + "moduleName": "OSLocalNotificationsLib", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueACSgSi_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivp", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivg", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOFactory", + "printedName": "OSLCNOFactory", + "children": [ + { + "kind": "Function", + "name": "createUNWrapper", + "printedName": "createUNWrapper()", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionDelegate", + "printedName": "OSLocalNotificationsLib.OSLCNOActionDelegate", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib13OSLCNOFactoryV15createUNWrapperAA20OSLCNOActionDelegate_pyFZ", + "mangledName": "$s23OSLocalNotificationsLib13OSLCNOFactoryV15createUNWrapperAA20OSLCNOActionDelegate_pyFZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib13OSLCNOFactoryV", + "mangledName": "$s23OSLocalNotificationsLib13OSLCNOFactoryV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionDelegate", + "printedName": "OSLCNOActionDelegate", + "children": [ + { + "kind": "Function", + "name": "triggerNotification", + "printedName": "triggerNotification(with:_:_:sound:actions:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[OSLocalNotificationsLib.OSLCNOAction]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOAction]", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP19triggerNotification4with__5sound7actions3andySS_SSSgSiSgAISayAA0D0VGSgAA19OSLCNOInternalEventVSgtYaKF", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP19triggerNotification4with__5sound7actions3andySS_SSSgSiSgAISayAA0D0VGSgAA19OSLCNOInternalEventVSgtYaKF", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSLocalNotificationsLib.OSLCNOActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearNotificationCategory", + "printedName": "clearNotificationCategory(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP25clearNotificationCategory4withySS_tYaF", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP25clearNotificationCategory4withySS_tYaF", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSLocalNotificationsLib.OSLCNOActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOParameter", + "printedName": "OSLCNOParameter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV3key5valueACSS_SStcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV3key5valueACSS_SStcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionEvent", + "printedName": "OSLCNOActionEvent", + "children": [ + { + "kind": "Var", + "name": "internalRoute", + "printedName": "internalRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO13internalRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO13internalRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "appRoute", + "printedName": "appRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8appRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8appRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "webRoute", + "printedName": "webRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8webRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8webRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueACSgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueACSgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNORouteData", + "printedName": "OSLCNORouteData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(deepLinkScheme:identifier:parameterData:fallbackUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV14deepLinkScheme10identifier09parameterE011fallbackUrlACSS_SSSgSDyS2SGSgAHtcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV14deepLinkScheme10identifier09parameterE011fallbackUrlACSS_SSSgSDyS2SGSgAHtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOAction", + "printedName": "OSLCNOAction", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:label:textField:type:event:routeData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV10identifier5label9textField4type5event9routeDataACSS_SSAA0d4TextH0VSgAA0D4TypeOAA0D5EventOAA011OSLCNORouteL0Vtcfc", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV10identifier5label9textField4type5event9routeDataACSS_SSAA0d4TextH0VSgAA0D4TypeOAA0D5EventOAA011OSLCNORouteL0Vtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameterData", + "printedName": "getParameterData(withUserText:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV16getParameterData12withUserTextSDyS2SGSgSSSg_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV16getParameterData12withUserTextSDyS2SGSgSSSg_tKF", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "internalScreenName", + "printedName": "internalScreenName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvp", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvp", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvg", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvg", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getRouteURL", + "printedName": "getRouteURL(withUserText:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11getRouteURL12withUserText10Foundation0G0VSgSSSg_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11getRouteURL12withUserText10Foundation0G0VSgSSSg_tKF", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fallbackURL", + "printedName": "fallbackURL", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvp", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvp", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvg", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvg", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionType", + "printedName": "OSLCNOActionType", + "children": [ + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionType.Type) -> OSLocalNotificationsLib.OSLCNOActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8standardyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8standardyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "destructive", + "printedName": "destructive", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionType.Type) -> OSLocalNotificationsLib.OSLCNOActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO11destructiveyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO11destructiveyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueACSgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionTextField", + "printedName": "OSLCNOActionTextField", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(placeholder:inputTextKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV11placeholder05inputE3KeyACSS_SStcfc", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV11placeholder05inputE3KeyACSS_SStcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UNMutableNotificationContent", + "printedName": "UNMutableNotificationContent", + "declKind": "Class", + "usr": "c:objc(cs)UNMutableNotificationContent", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNMutableNotificationContent", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UNNotificationContent", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UserNotifications.UNNotificationContent", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UNUserNotificationCenter", + "printedName": "UNUserNotificationCenter", + "declKind": "Class", + "usr": "c:objc(cs)UNUserNotificationCenter", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNUserNotificationCenter", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNMutableNotificationContent+Adapter.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNNotificationActionExtension.swift", + "kind": "StringLiteral", + "offset": 738, + "length": 6, + "value": "\"Send\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNNotificationActionExtension.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "StringLiteral", + "offset": 309, + "length": 39, + "value": "\"A notification must have a title set.\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 55, + "value": "\"There was an error while triggering the notification.\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 1891, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 2958, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 3050, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3113, + "length": 10, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3122, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3484, + "length": 37, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3517, + "length": 1, + "value": "\":\/\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 3821, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3858, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4045, + "length": 30, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4065, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4074, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 4154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4195, + "length": 3, + "value": "\"&\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 13, + "value": "\"OSLocalNotificationsLib.OSLCNOWrapper\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "StringLiteral", + "offset": 663, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/Extensions\/Encodable+UNUserNotificationCenter.swift", + "kind": "Dictionary", + "offset": 284, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/Extensions\/Encodable+UNUserNotificationCenter.swift", + "kind": "Array", + "offset": 610, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNUserNotificationCenter+Adapter.swift", + "kind": "Array", + "offset": 402, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNUserNotificationCenter+Adapter.swift", + "kind": "Array", + "offset": 1056, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..c4601147 --- /dev/null +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,128 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +import Swift +import UserNotifications +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public struct OSLCNOInternalEvent : Swift.Codable { + public enum CodingKeys : Swift.String, Swift.CodingKey, Swift.CaseIterable { + case screenName, parameterArray + public init?(rawValue: Swift.String) + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) + public typealias AllCases = [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] + public typealias RawValue = Swift.String + public static var allCases: [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] { + get + } + public var intValue: Swift.Int? { + get + } + public var rawValue: Swift.String { + get + } + public var stringValue: Swift.String { + get + } + } + public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { + case noTitle + case triggerError + public var errorDescription: Swift.String? { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct OSLCNOFactory { + public static func createUNWrapper() -> any OSLocalNotificationsLib.OSLCNOActionDelegate +} +public typealias OSLCNOSound = Swift.String +public protocol OSLCNOActionDelegate : AnyObject { + #if compiler(>=5.3) && $AsyncAwait + func triggerNotification(with title: Swift.String, _ body: Swift.String?, _ badge: Swift.Int?, sound: OSLocalNotificationsLib.OSLCNOSound?, actions: [OSLocalNotificationsLib.OSLCNOAction]?, and internalEvent: OSLocalNotificationsLib.OSLCNOInternalEvent?) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + func clearNotificationCategory(with id: Swift.String) async + #endif +} +public struct OSLCNOParameter : Swift.Codable { + public init(key: Swift.String, value: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OSLCNOActionEvent : Swift.String, Swift.Codable { + case internalRoute + case appRoute + case webRoute + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OSLCNORouteData { + public init(deepLinkScheme: Swift.String, identifier: Swift.String? = nil, parameterData: [Swift.String : Swift.String]? = nil, fallbackUrl: Swift.String? = nil) +} +extension OSLocalNotificationsLib.OSLCNORouteData : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct OSLCNOAction : Swift.Codable { + public init(identifier: Swift.String, label: Swift.String, textField: OSLocalNotificationsLib.OSLCNOActionTextField? = nil, type: OSLocalNotificationsLib.OSLCNOActionType, event: OSLocalNotificationsLib.OSLCNOActionEvent, routeData: OSLocalNotificationsLib.OSLCNORouteData) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension OSLocalNotificationsLib.OSLCNOAction { + public func getParameterData(withUserText userText: Swift.String?) throws -> [Swift.String : Swift.String]? + #if compiler(>=5.3) && $EffectfulProp + public var internalScreenName: Swift.String { + get throws + } + #endif +} +extension OSLocalNotificationsLib.OSLCNOAction { + public func getRouteURL(withUserText userText: Swift.String?) throws -> Foundation.URL? + #if compiler(>=5.3) && $EffectfulProp + public var fallbackURL: Foundation.URL? { + get throws + } + #endif +} +public enum OSLCNOActionType : Swift.String, Swift.Codable { + case standard + case destructive + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OSLCNOActionTextField : Swift.Codable { + public init(placeholder: Swift.String, inputTextKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.RawRepresentable {} diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 6e2ec27d..f3abd2fe 100644 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 80f94cf7..c4601147 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,17 +1,24 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation import Swift import UserNotifications import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public struct OSLCNOInternalEvent : Swift.Codable { - public enum CodingKeys : Swift.String, Swift.CodingKey { + public enum CodingKeys : Swift.String, Swift.CodingKey, Swift.CaseIterable { case screenName, parameterArray public init?(rawValue: Swift.String) public init?(stringValue: Swift.String) public init?(intValue: Swift.Int) + public typealias AllCases = [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] public typealias RawValue = Swift.String + public static var allCases: [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] { + get + } public var intValue: Swift.Int? { get } @@ -22,9 +29,9 @@ public struct OSLCNOInternalEvent : Swift.Codable { get } } - public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]? = nil) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { case noTitle @@ -39,25 +46,21 @@ public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.Locali } } public struct OSLCNOFactory { - public static func createUNWrapper() -> OSLocalNotificationsLib.OSLCNOActionDelegate + public static func createUNWrapper() -> any OSLocalNotificationsLib.OSLCNOActionDelegate } public typealias OSLCNOSound = Swift.String public protocol OSLCNOActionDelegate : AnyObject { - #if compiler(>=5.3) && $AsyncAwait func triggerNotification(with title: Swift.String, _ body: Swift.String?, _ badge: Swift.Int?, sound: OSLocalNotificationsLib.OSLCNOSound?, actions: [OSLocalNotificationsLib.OSLCNOAction]?, and internalEvent: OSLocalNotificationsLib.OSLCNOInternalEvent?) async throws #endif - - #if compiler(>=5.3) && $AsyncAwait func clearNotificationCategory(with id: Swift.String) async #endif - } public struct OSLCNOParameter : Swift.Codable { public init(key: Swift.String, value: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } public enum OSLCNOActionEvent : Swift.String, Swift.Codable { case internalRoute @@ -73,33 +76,29 @@ public struct OSLCNORouteData { public init(deepLinkScheme: Swift.String, identifier: Swift.String? = nil, parameterData: [Swift.String : Swift.String]? = nil, fallbackUrl: Swift.String? = nil) } extension OSLocalNotificationsLib.OSLCNORouteData : Swift.Codable { - public init(from decoder: Swift.Decoder) throws - public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws } public struct OSLCNOAction : Swift.Codable { public init(identifier: Swift.String, label: Swift.String, textField: OSLocalNotificationsLib.OSLCNOActionTextField? = nil, type: OSLocalNotificationsLib.OSLCNOActionType, event: OSLocalNotificationsLib.OSLCNOActionEvent, routeData: OSLocalNotificationsLib.OSLCNORouteData) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension OSLocalNotificationsLib.OSLCNOAction { public func getParameterData(withUserText userText: Swift.String?) throws -> [Swift.String : Swift.String]? - #if compiler(>=5.3) && $EffectfulProp public var internalScreenName: Swift.String { get throws } #endif - } extension OSLocalNotificationsLib.OSLCNOAction { public func getRouteURL(withUserText userText: Swift.String?) throws -> Foundation.URL? - #if compiler(>=5.3) && $EffectfulProp public var fallbackURL: Foundation.URL? { get throws } #endif - } public enum OSLCNOActionType : Swift.String, Swift.Codable { case standard @@ -112,8 +111,8 @@ public enum OSLCNOActionType : Swift.String, Swift.Codable { } public struct OSLCNOActionTextField : Swift.Codable { public init(placeholder: Swift.String, inputTextKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Equatable {} extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Hashable {} diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..955b37bd --- /dev/null +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,2742 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOInternalEvent", + "printedName": "OSLCNOInternalEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "screenName", + "printedName": "screenName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type) -> OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO10screenNameyA2EmF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO10screenNameyA2EmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "parameterArray", + "printedName": "parameterArray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type) -> OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO14parameterArrayyA2EmF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO14parameterArrayyA2EmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueSiSgvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(screenName:parameterArray:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[OSLocalNotificationsLib.OSLCNOParameter]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOParameter]", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV10screenName14parameterArrayACSS_SayAA15OSLCNOParameterVGSgtcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV10screenName14parameterArrayACSS_SayAA15OSLCNOParameterVGSgtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV", + "mangledName": "$s23OSLocalNotificationsLib19OSLCNOInternalEventV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOError", + "printedName": "OSLCNOError", + "children": [ + { + "kind": "Var", + "name": "noTitle", + "printedName": "noTitle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOError.Type) -> OSLocalNotificationsLib.OSLCNOError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO7noTitleyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO7noTitleyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "triggerError", + "printedName": "triggerError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOError.Type) -> OSLocalNotificationsLib.OSLCNOError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO12triggerErroryA2CmF", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO12triggerErroryA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvp", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvp", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvg", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO16errorDescriptionSSSgvg", + "moduleName": "OSLocalNotificationsLib", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOError", + "printedName": "OSLocalNotificationsLib.OSLCNOError", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueACSgSi_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivp", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivg", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO8rawValueSivg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib11OSLCNOErrorO", + "mangledName": "$s23OSLocalNotificationsLib11OSLCNOErrorO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOFactory", + "printedName": "OSLCNOFactory", + "children": [ + { + "kind": "Function", + "name": "createUNWrapper", + "printedName": "createUNWrapper()", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionDelegate", + "printedName": "OSLocalNotificationsLib.OSLCNOActionDelegate", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib13OSLCNOFactoryV15createUNWrapperAA20OSLCNOActionDelegate_pyFZ", + "mangledName": "$s23OSLocalNotificationsLib13OSLCNOFactoryV15createUNWrapperAA20OSLCNOActionDelegate_pyFZ", + "moduleName": "OSLocalNotificationsLib", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib13OSLCNOFactoryV", + "mangledName": "$s23OSLocalNotificationsLib13OSLCNOFactoryV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionDelegate", + "printedName": "OSLCNOActionDelegate", + "children": [ + { + "kind": "Function", + "name": "triggerNotification", + "printedName": "triggerNotification(with:_:_:sound:actions:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[OSLocalNotificationsLib.OSLCNOAction]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[OSLocalNotificationsLib.OSLCNOAction]", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOInternalEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOInternalEvent", + "usr": "s:23OSLocalNotificationsLib19OSLCNOInternalEventV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP19triggerNotification4with__5sound7actions3andySS_SSSgSiSgAISayAA0D0VGSgAA19OSLCNOInternalEventVSgtYaKF", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP19triggerNotification4with__5sound7actions3andySS_SSSgSiSgAISayAA0D0VGSgAA19OSLCNOInternalEventVSgtYaKF", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSLocalNotificationsLib.OSLCNOActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearNotificationCategory", + "printedName": "clearNotificationCategory(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP25clearNotificationCategory4withySS_tYaF", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP25clearNotificationCategory4withySS_tYaF", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 where Ï„_0_0 : OSLocalNotificationsLib.OSLCNOActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:23OSLocalNotificationsLib20OSLCNOActionDelegateP", + "mangledName": "$s23OSLocalNotificationsLib20OSLCNOActionDelegateP", + "moduleName": "OSLocalNotificationsLib", + "genericSig": "<Ï„_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOParameter", + "printedName": "OSLCNOParameter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV3key5valueACSS_SStcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV3key5valueACSS_SStcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOParameter", + "printedName": "OSLocalNotificationsLib.OSLCNOParameter", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib15OSLCNOParameterV", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNOParameterV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionEvent", + "printedName": "OSLCNOActionEvent", + "children": [ + { + "kind": "Var", + "name": "internalRoute", + "printedName": "internalRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO13internalRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO13internalRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "appRoute", + "printedName": "appRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8appRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8appRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "webRoute", + "printedName": "webRoute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionEvent.Type) -> OSLocalNotificationsLib.OSLCNOActionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8webRouteyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8webRouteyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueACSgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueACSgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO", + "mangledName": "$s23OSLocalNotificationsLib17OSLCNOActionEventO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNORouteData", + "printedName": "OSLCNORouteData", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(deepLinkScheme:identifier:parameterData:fallbackUrl:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV14deepLinkScheme10identifier09parameterE011fallbackUrlACSS_SSSgSDyS2SGSgAHtcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV14deepLinkScheme10identifier09parameterE011fallbackUrlACSS_SSSgSDyS2SGSgAHtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV", + "mangledName": "$s23OSLocalNotificationsLib15OSLCNORouteDataV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOAction", + "printedName": "OSLCNOAction", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:label:textField:type:event:routeData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "OSLCNOActionEvent", + "printedName": "OSLocalNotificationsLib.OSLCNOActionEvent", + "usr": "s:23OSLocalNotificationsLib17OSLCNOActionEventO" + }, + { + "kind": "TypeNominal", + "name": "OSLCNORouteData", + "printedName": "OSLocalNotificationsLib.OSLCNORouteData", + "usr": "s:23OSLocalNotificationsLib15OSLCNORouteDataV" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV10identifier5label9textField4type5event9routeDataACSS_SSAA0d4TextH0VSgAA0D4TypeOAA0D5EventOAA011OSLCNORouteL0Vtcfc", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV10identifier5label9textField4type5event9routeDataACSS_SSAA0d4TextH0VSgAA0D4TypeOAA0D5EventOAA011OSLCNORouteL0Vtcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOAction", + "printedName": "OSLocalNotificationsLib.OSLCNOAction", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParameterData", + "printedName": "getParameterData(withUserText:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV16getParameterData12withUserTextSDyS2SGSgSSSg_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV16getParameterData12withUserTextSDyS2SGSgSSSg_tKF", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "internalScreenName", + "printedName": "internalScreenName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvp", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvp", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvg", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV18internalScreenNameSSvg", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getRouteURL", + "printedName": "getRouteURL(withUserText:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11getRouteURL12withUserText10Foundation0G0VSgSSSg_tKF", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11getRouteURL12withUserText10Foundation0G0VSgSSSg_tKF", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "fallbackURL", + "printedName": "fallbackURL", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvp", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvp", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvg", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV11fallbackURL10Foundation0F0VSgvg", + "moduleName": "OSLocalNotificationsLib", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib12OSLCNOActionV", + "mangledName": "$s23OSLocalNotificationsLib12OSLCNOActionV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionType", + "printedName": "OSLCNOActionType", + "children": [ + { + "kind": "Var", + "name": "standard", + "printedName": "standard", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionType.Type) -> OSLocalNotificationsLib.OSLCNOActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8standardyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8standardyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Var", + "name": "destructive", + "printedName": "destructive", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSLocalNotificationsLib.OSLCNOActionType.Type) -> OSLocalNotificationsLib.OSLCNOActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO11destructiveyA2CmF", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO11destructiveyA2CmF", + "moduleName": "OSLocalNotificationsLib" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionType", + "printedName": "OSLocalNotificationsLib.OSLCNOActionType", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueACSgSS_tcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvp", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvp", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvg", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO8rawValueSSvg", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:23OSLocalNotificationsLib16OSLCNOActionTypeO", + "mangledName": "$s23OSLocalNotificationsLib16OSLCNOActionTypeO", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OSLCNOActionTextField", + "printedName": "OSLCNOActionTextField", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(placeholder:inputTextKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV11placeholder05inputE3KeyACSS_SStcfc", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV11placeholder05inputE3KeyACSS_SStcfc", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSLCNOActionTextField", + "printedName": "OSLocalNotificationsLib.OSLCNOActionTextField", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV4fromACs7Decoder_p_tKcfc", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV6encode2toys7Encoder_p_tKF", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV6encode2toys7Encoder_p_tKF", + "moduleName": "OSLocalNotificationsLib", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:23OSLocalNotificationsLib21OSLCNOActionTextFieldV", + "mangledName": "$s23OSLocalNotificationsLib21OSLCNOActionTextFieldV", + "moduleName": "OSLocalNotificationsLib", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UNMutableNotificationContent", + "printedName": "UNMutableNotificationContent", + "declKind": "Class", + "usr": "c:objc(cs)UNMutableNotificationContent", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNMutableNotificationContent", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UNNotificationContent", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UserNotifications.UNNotificationContent", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UNUserNotificationCenter", + "printedName": "UNUserNotificationCenter", + "declKind": "Class", + "usr": "c:objc(cs)UNUserNotificationCenter", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNUserNotificationCenter", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNMutableNotificationContent+Adapter.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNNotificationActionExtension.swift", + "kind": "StringLiteral", + "offset": 738, + "length": 6, + "value": "\"Send\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNNotificationActionExtension.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "StringLiteral", + "offset": 309, + "length": 39, + "value": "\"A notification must have a title set.\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 55, + "value": "\"There was an error while triggering the notification.\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 141, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOError.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 1891, + "length": 3, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 2958, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 3050, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3113, + "length": 10, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3122, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3484, + "length": 37, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3517, + "length": 1, + "value": "\":\/\/\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 3821, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 3858, + "length": 3, + "value": "\"?\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4045, + "length": 30, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4065, + "length": 1, + "value": "\"=\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4074, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "IntegerLiteral", + "offset": 4154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/Models\/OSLCNOAction.swift", + "kind": "StringLiteral", + "offset": 4195, + "length": 3, + "value": "\"&\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "StringLiteral", + "offset": 31, + "length": 13, + "value": "\"OSLocalNotificationsLib.OSLCNOWrapper\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "StringLiteral", + "offset": 663, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/OSLCNOWrapper.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/Extensions\/Encodable+UNUserNotificationCenter.swift", + "kind": "Dictionary", + "offset": 284, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/Extensions\/Encodable+UNUserNotificationCenter.swift", + "kind": "Array", + "offset": 610, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNUserNotificationCenter+Adapter.swift", + "kind": "Array", + "offset": 402, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/alexandre.jacinto\/Documents\/Work\/OSRepos\/libraries\/OSLocalNotificationsLib-iOS\/OSLocalNotificationsLib\/UNExtensions\/UNUserNotificationCenter+Adapter.swift", + "kind": "Array", + "offset": 1056, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..97370386 --- /dev/null +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,128 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +import Swift +import UserNotifications +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public struct OSLCNOInternalEvent : Swift.Codable { + public enum CodingKeys : Swift.String, Swift.CodingKey, Swift.CaseIterable { + case screenName, parameterArray + public init?(rawValue: Swift.String) + public init?(stringValue: Swift.String) + public init?(intValue: Swift.Int) + public typealias AllCases = [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] + public typealias RawValue = Swift.String + public static var allCases: [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] { + get + } + public var intValue: Swift.Int? { + get + } + public var rawValue: Swift.String { + get + } + public var stringValue: Swift.String { + get + } + } + public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { + case noTitle + case triggerError + public var errorDescription: Swift.String? { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public struct OSLCNOFactory { + public static func createUNWrapper() -> any OSLocalNotificationsLib.OSLCNOActionDelegate +} +public typealias OSLCNOSound = Swift.String +public protocol OSLCNOActionDelegate : AnyObject { + #if compiler(>=5.3) && $AsyncAwait + func triggerNotification(with title: Swift.String, _ body: Swift.String?, _ badge: Swift.Int?, sound: OSLocalNotificationsLib.OSLCNOSound?, actions: [OSLocalNotificationsLib.OSLCNOAction]?, and internalEvent: OSLocalNotificationsLib.OSLCNOInternalEvent?) async throws + #endif + #if compiler(>=5.3) && $AsyncAwait + func clearNotificationCategory(with id: Swift.String) async + #endif +} +public struct OSLCNOParameter : Swift.Codable { + public init(key: Swift.String, value: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum OSLCNOActionEvent : Swift.String, Swift.Codable { + case internalRoute + case appRoute + case webRoute + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OSLCNORouteData { + public init(deepLinkScheme: Swift.String, identifier: Swift.String? = nil, parameterData: [Swift.String : Swift.String]? = nil, fallbackUrl: Swift.String? = nil) +} +extension OSLocalNotificationsLib.OSLCNORouteData : Swift.Codable { + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct OSLCNOAction : Swift.Codable { + public init(identifier: Swift.String, label: Swift.String, textField: OSLocalNotificationsLib.OSLCNOActionTextField? = nil, type: OSLocalNotificationsLib.OSLCNOActionType, event: OSLocalNotificationsLib.OSLCNOActionEvent, routeData: OSLocalNotificationsLib.OSLCNORouteData) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension OSLocalNotificationsLib.OSLCNOAction { + public func getParameterData(withUserText userText: Swift.String?) throws -> [Swift.String : Swift.String]? + #if compiler(>=5.3) && $EffectfulProp + public var internalScreenName: Swift.String { + get throws + } + #endif +} +extension OSLocalNotificationsLib.OSLCNOAction { + public func getRouteURL(withUserText userText: Swift.String?) throws -> Foundation.URL? + #if compiler(>=5.3) && $EffectfulProp + public var fallbackURL: Foundation.URL? { + get throws + } + #endif +} +public enum OSLCNOActionType : Swift.String, Swift.Codable { + case standard + case destructive + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public struct OSLCNOActionTextField : Swift.Codable { + public init(placeholder: Swift.String, inputTextKey: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOError : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOActionEvent : Swift.RawRepresentable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.Equatable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.Hashable {} +extension OSLocalNotificationsLib.OSLCNOActionType : Swift.RawRepresentable {} diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 18c0f5a5..2cd3421c 100644 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index e531e049..97370386 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,17 +1,24 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSLocalNotificationsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation import Swift import UserNotifications import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public struct OSLCNOInternalEvent : Swift.Codable { - public enum CodingKeys : Swift.String, Swift.CodingKey { + public enum CodingKeys : Swift.String, Swift.CodingKey, Swift.CaseIterable { case screenName, parameterArray public init?(rawValue: Swift.String) public init?(stringValue: Swift.String) public init?(intValue: Swift.Int) + public typealias AllCases = [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] public typealias RawValue = Swift.String + public static var allCases: [OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys] { + get + } public var intValue: Swift.Int? { get } @@ -22,9 +29,9 @@ public struct OSLCNOInternalEvent : Swift.Codable { get } } - public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]? = nil) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public init(screenName: Swift.String, parameterArray: [OSLocalNotificationsLib.OSLCNOParameter]?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { case noTitle @@ -39,25 +46,21 @@ public enum OSLCNOError : Swift.Int, Foundation.CustomNSError, Foundation.Locali } } public struct OSLCNOFactory { - public static func createUNWrapper() -> OSLocalNotificationsLib.OSLCNOActionDelegate + public static func createUNWrapper() -> any OSLocalNotificationsLib.OSLCNOActionDelegate } public typealias OSLCNOSound = Swift.String public protocol OSLCNOActionDelegate : AnyObject { - #if compiler(>=5.3) && $AsyncAwait func triggerNotification(with title: Swift.String, _ body: Swift.String?, _ badge: Swift.Int?, sound: OSLocalNotificationsLib.OSLCNOSound?, actions: [OSLocalNotificationsLib.OSLCNOAction]?, and internalEvent: OSLocalNotificationsLib.OSLCNOInternalEvent?) async throws #endif - - #if compiler(>=5.3) && $AsyncAwait func clearNotificationCategory(with id: Swift.String) async #endif - } public struct OSLCNOParameter : Swift.Codable { public init(key: Swift.String, value: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } public enum OSLCNOActionEvent : Swift.String, Swift.Codable { case internalRoute @@ -73,33 +76,29 @@ public struct OSLCNORouteData { public init(deepLinkScheme: Swift.String, identifier: Swift.String? = nil, parameterData: [Swift.String : Swift.String]? = nil, fallbackUrl: Swift.String? = nil) } extension OSLocalNotificationsLib.OSLCNORouteData : Swift.Codable { - public init(from decoder: Swift.Decoder) throws - public func encode(to encoder: Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws } public struct OSLCNOAction : Swift.Codable { public init(identifier: Swift.String, label: Swift.String, textField: OSLocalNotificationsLib.OSLCNOActionTextField? = nil, type: OSLocalNotificationsLib.OSLCNOActionType, event: OSLocalNotificationsLib.OSLCNOActionEvent, routeData: OSLocalNotificationsLib.OSLCNORouteData) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension OSLocalNotificationsLib.OSLCNOAction { public func getParameterData(withUserText userText: Swift.String?) throws -> [Swift.String : Swift.String]? - #if compiler(>=5.3) && $EffectfulProp public var internalScreenName: Swift.String { get throws } #endif - } extension OSLocalNotificationsLib.OSLCNOAction { public func getRouteURL(withUserText userText: Swift.String?) throws -> Foundation.URL? - #if compiler(>=5.3) && $EffectfulProp public var fallbackURL: Foundation.URL? { get throws } #endif - } public enum OSLCNOActionType : Swift.String, Swift.Codable { case standard @@ -112,8 +111,8 @@ public enum OSLCNOActionType : Swift.String, Swift.Codable { } public struct OSLCNOActionTextField : Swift.Codable { public init(placeholder: Swift.String, inputTextKey: Swift.String) - public func encode(to encoder: Swift.Encoder) throws - public init(from decoder: Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws } extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Equatable {} extension OSLocalNotificationsLib.OSLCNOInternalEvent.CodingKeys : Swift.Hashable {} diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/OSLocalNotificationsLib b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/OSLocalNotificationsLib index 4e1a509c..071b5c55 100755 Binary files a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/OSLocalNotificationsLib and b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/OSLocalNotificationsLib differ diff --git a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/_CodeSignature/CodeResources b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/_CodeSignature/CodeResources index 675767be..8d35a769 100644 --- a/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/_CodeSignature/CodeResources +++ b/src/ios/frameworks/OSLocalNotificationsLib.xcframework/ios-arm64_x86_64-simulator/OSLocalNotificationsLib.framework/_CodeSignature/CodeResources @@ -6,35 +6,51 @@ Headers/OSLocalNotificationsLib-Swift.h - DADqYBcQ/DX4Kha+NNGqd/ZefSc= + 3bQ74RZiCbIvtj9nsY8rSRVaM9Y= Info.plist - rzFj5KI6cMWfXet2n2a1/COV17c= + ABYwLKxHVnW1FiMjMAr0cKnBayk= + + Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.abi.json + + C9f9K9mvVwZrwBvGRkOQYKS2fXU= + + Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + qa0XNmakBj1yeUtGhVsIoTOyFtg= Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - VnqWPMYU7WvRzkkAAVVkeWcQzaA= + IlBRiDFZ7X7BSZQeGIf16ues7WE= Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - JfSurHQTmT997s/8osYiRCPlavU= + qa0XNmakBj1yeUtGhVsIoTOyFtg= Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - AhyI4iviSRhl5sylhVCxLlHvRPg= + gSXo/toh+zDSYRiRYcRoEwnYuf4= + + Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json + + C9f9K9mvVwZrwBvGRkOQYKS2fXU= + + Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + UvWKZmTL66H6kNEMD5U3ezNxmEM= Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - udTtfuI2FUP2LwCt0onu0BmoBLc= + 0jJdc3FN8+MkhEzuORixa8KIAAw= Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - J1psTrRCAtWprNeDf4HeB8KmMPk= + UvWKZmTL66H6kNEMD5U3ezNxmEM= Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - 1vy6VE25Ypc68vvRAp+8fvEJL1A= + h8q34ISkq0PGItNmmOmHQlcNTgs= Modules/module.modulemap @@ -47,49 +63,77 @@ hash2 - bTS08/Z+X8BrU/5OLYp/BYy8bCvpf3eq8ZqpGQG3p6c= + 7eUN0caxHRsl+oZFl1XloFtAm4XcjVjkfps8hndTq40= + + + Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash2 + + H7MK+IdXFRRdD7XIjfeEjueHn5z7KMn6O2C6x/N3uCw= + + + Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash2 + + NbX8Reoxrr5zADM8OzS6y5X2xVJrWlVPitXkI90g4is= Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - reL7W/xt/GM1J02GhKgxJcQeMphnlLqQXt8pcMdez/0= + +VDMV90GmKEaMLBPXefNdXM/6qHjug9s07CKkrZa0Ic= Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - daO8hGEWLn4QkfaP8pj1AsuGSBqKyp7AjA5arg8xsT0= + NbX8Reoxrr5zADM8OzS6y5X2xVJrWlVPitXkI90g4is= Modules/OSLocalNotificationsLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - Lt6oUk4fMhpMksCTCUqWF2vIlZ50TmN15jphEbeZ8K0= + lhGgsPs5F5yAOfnYJqhsXxVvKKBrBnMK/4ETk2rHBq0= + + + Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash2 + + H7MK+IdXFRRdD7XIjfeEjueHn5z7KMn6O2C6x/N3uCw= + + + Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash2 + + gkUQPBnzfNjt9viC2bIs+z5NbSmJAg93c2psc1vszsM= Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - NNZWA1sRzE3HmP7Ry8P1ZeqZ0QkQbmg3J8j4i8W44Dk= + lZomUtPP+RFnuwfmJBkat9h5rcrLaH5ZYq4Q0CkMfsg= Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - 1aygOHPaiJXkyPzloxb3zSNaE0saC/+sc8PiTnRfg/k= + gkUQPBnzfNjt9viC2bIs+z5NbSmJAg93c2psc1vszsM= Modules/OSLocalNotificationsLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - 5bVu6cv7wBOe/0tdizkT/XKkPJVVFJSg7GM//q5/+Qw= + 4FV+Jbo6QtaVbSb6WIubnjcC75Lxagg4urqPAnSs5pM= Modules/module.modulemap diff --git a/www/OSFirebaseCloudMessaging.js b/www/OSFirebaseCloudMessaging.js index 2167ac97..0254f971 100644 --- a/www/OSFirebaseCloudMessaging.js +++ b/www/OSFirebaseCloudMessaging.js @@ -28,8 +28,8 @@ exports.getBadge = function (success, error) { exec(success, error, 'OSFirebaseCloudMessaging', 'getBadge'); }; -exports.sendLocalNotification = function (badge, title, body, channelName, channelDescription, success, error) { - exec(success, error, 'OSFirebaseCloudMessaging', 'sendLocalNotification', [badge, title, body, channelName, channelDescription]); +exports.sendLocalNotification = function (badge, title, body, channelName, channelDescription, color, icon, success, error) { + exec(success, error, 'OSFirebaseCloudMessaging', 'sendLocalNotification', [badge, title, body, channelName, channelDescription, color, icon]); }; exports.registerDevice = function (success, error) {