diff --git a/README.md b/README.md index f66c779..6be696a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# outsystems-geolocation +# capacitor-geolocation diff --git a/packages/capacitor-plugin/CapacitorGeolocation.podspec b/packages/capacitor-plugin/CapacitorGeolocation.podspec index 5ae45bf..5b18988 100644 --- a/packages/capacitor-plugin/CapacitorGeolocation.podspec +++ b/packages/capacitor-plugin/CapacitorGeolocation.podspec @@ -11,9 +11,8 @@ Pod::Spec.new do |s| s.author = package['author'] s.source = { :git => package['repository']['url'], :tag => s.version.to_s } s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}' - s.vendored_frameworks = 'ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework' s.ios.deployment_target = '14.0' s.dependency 'Capacitor' - #s.dependency 'OSGeolocationLib' + s.dependency 'IONGeolocationLib', spec='~> 1.0' s.swift_version = '5.1' end diff --git a/packages/capacitor-plugin/android/build.gradle b/packages/capacitor-plugin/android/build.gradle index 6f80838..41b25ee 100644 --- a/packages/capacitor-plugin/android/build.gradle +++ b/packages/capacitor-plugin/android/build.gradle @@ -58,7 +58,7 @@ repositories { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation("io.ionic.libs:osgeolocation-android:1.0.0") + implementation("io.ionic.libs:iongeolocation-android:1.0.0") implementation project(':capacitor-android') implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion" diff --git a/packages/capacitor-plugin/android/settings.gradle b/packages/capacitor-plugin/android/settings.gradle index b95960f..b6cd38d 100644 --- a/packages/capacitor-plugin/android/settings.gradle +++ b/packages/capacitor-plugin/android/settings.gradle @@ -1,5 +1,2 @@ include ':capacitor-android' project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') - -include ':osgeolocationlib' -project(':osgeolocationlib').projectDir = new File('../../android-lib') diff --git a/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationErrors.kt b/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationErrors.kt index 23532ab..32a9c09 100644 --- a/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationErrors.kt +++ b/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationErrors.kt @@ -6,7 +6,7 @@ package com.capacitorjs.plugins.geolocation object GeolocationErrors { private fun formatErrorCode(number: Int): String { - return "OS-PLUG-GLOC-" + number.toString().padStart(4, '0') + return "CAP-PLUGIN-GLOC-" + number.toString().padStart(4, '0') } data class ErrorInfo( diff --git a/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationPlugin.kt b/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationPlugin.kt index f0d7e73..b5b158a 100644 --- a/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationPlugin.kt +++ b/packages/capacitor-plugin/android/src/main/kotlin/com/capacitorjs/plugins/geolocation/GeolocationPlugin.kt @@ -12,10 +12,10 @@ import com.getcapacitor.annotation.CapacitorPlugin import com.getcapacitor.annotation.Permission import com.getcapacitor.annotation.PermissionCallback import com.google.android.gms.location.LocationServices -import io.ionic.libs.osgeolocationlib.controller.OSGLOCController -import io.ionic.libs.osgeolocationlib.model.OSGLOCException -import io.ionic.libs.osgeolocationlib.model.OSGLOCLocationOptions -import io.ionic.libs.osgeolocationlib.model.OSGLOCLocationResult +import io.ionic.libs.iongeolocationlib.controller.IONGLOCController +import io.ionic.libs.iongeolocationlib.model.IONGLOCException +import io.ionic.libs.iongeolocationlib.model.IONGLOCLocationOptions +import io.ionic.libs.iongeolocationlib.model.IONGLOCLocationResult import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.cancel @@ -33,7 +33,7 @@ import kotlinx.coroutines.launch ) class GeolocationPlugin : Plugin() { - private lateinit var controller: OSGLOCController + private lateinit var controller: IONGLOCController private lateinit var coroutineScope: CoroutineScope private val watchingCalls: MutableMap = mutableMapOf() @@ -54,7 +54,7 @@ class GeolocationPlugin : Plugin() { } } - this.controller = OSGLOCController( + this.controller = IONGLOCController( LocationServices.getFusedLocationProviderClient(context), activityLauncher ) @@ -246,11 +246,11 @@ class GeolocationPlugin : Plugin() { } /** - * Helper function to convert OSGLOCLocationResult object into the format accepted by the Capacitor bridge - * @param locationResult OSGLOCLocationResult object with the location to convert + * Helper function to convert IONGLOCLocationResult object into the format accepted by the Capacitor bridge + * @param locationResult IONGLOCLocationResult object with the location to convert * @return JSObject with converted JSON object */ - private fun getJSObjectForLocation(locationResult: OSGLOCLocationResult): JSObject { + private fun getJSObjectForLocation(locationResult: IONGLOCLocationResult): JSObject { val coords = JSObject().apply { put("latitude", locationResult.latitude) put("longitude", locationResult.longitude) @@ -273,23 +273,23 @@ class GeolocationPlugin : Plugin() { */ private fun onLocationError(exception: Throwable?, call: PluginCall) { when (exception) { - is OSGLOCException.OSGLOCRequestDeniedException -> { + is IONGLOCException.IONGLOCRequestDeniedException -> { call.sendError(GeolocationErrors.LOCATION_ENABLE_REQUEST_DENIED) } - is OSGLOCException.OSGLOCSettingsException -> { + is IONGLOCException.IONGLOCSettingsException -> { call.sendError(GeolocationErrors.LOCATION_SETTINGS_ERROR) } - is OSGLOCException.OSGLOCInvalidTimeoutException -> { + is IONGLOCException.IONGLOCInvalidTimeoutException -> { call.sendError(GeolocationErrors.INVALID_TIMEOUT) } - is OSGLOCException.OSGLOCGoogleServicesException -> { + is IONGLOCException.IONGLOCGoogleServicesException -> { if (exception.resolvable) { call.sendError(GeolocationErrors.GOOGLE_SERVICES_RESOLVABLE) } else { call.sendError(GeolocationErrors.GOOGLE_SERVICES_ERROR) } } - is OSGLOCException.OSGLOCLocationRetrievalTimeoutException -> { + is IONGLOCException.IONGLOCLocationRetrievalTimeoutException -> { call.sendError(GeolocationErrors.GET_LOCATION_TIMEOUT) } else -> { @@ -323,15 +323,15 @@ class GeolocationPlugin : Plugin() { /** * Creates the location options to pass to the native controller * @param call the plugin call - * @return OSGLOCLocationOptions object + * @return IONGLOCLocationOptions object */ - private fun createOptions(call: PluginCall): OSGLOCLocationOptions { + private fun createOptions(call: PluginCall): IONGLOCLocationOptions { val timeout = call.getLong("timeout", 10000) ?: 10000 val maximumAge = call.getLong("maximumAge", 0) ?: 0 val enableHighAccuracy = call.getBoolean("enableHighAccuracy", false) ?: false val minimumUpdateInterval = call.getLong("minimumUpdateInterval", 5000) ?: 5000 - val locationOptions = OSGLOCLocationOptions(timeout, maximumAge, enableHighAccuracy, minimumUpdateInterval) + val locationOptions = IONGLOCLocationOptions(timeout, maximumAge, enableHighAccuracy, minimumUpdateInterval) return locationOptions } diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationCallbackManager.swift b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationCallbackManager.swift index 88c7fde..435c2b4 100644 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationCallbackManager.swift +++ b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationCallbackManager.swift @@ -1,5 +1,5 @@ import Capacitor -import OSGeolocationLib +import IONGeolocationLib private enum GeolocationCallbackType { case location @@ -69,7 +69,7 @@ final class GeolocationCallbackManager { call.resolve(data) } - func sendSuccess(with position: OSGLOCPositionModel) { + func sendSuccess(with position: IONGLOCPositionModel) { createPluginResult(status: .success(position.toJSObject())) } diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationError.swift b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationError.swift index 4fa8023..be058e8 100644 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationError.swift +++ b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationError.swift @@ -1,4 +1,4 @@ -enum OSGeolocationMethod: String { +enum GeolocationMethod: String { case getCurrentPosition case watchPosition case clearWatch @@ -9,10 +9,10 @@ enum GeolocationError: Error { case permissionDenied case permissionRestricted case positionUnavailable - case inputArgumentsIssue(target: OSGeolocationMethod) + case inputArgumentsIssue(target: GeolocationMethod) func toCodeMessagePair() -> (String, String) { - ("OS-PLUG-GLOC-\(String(format: "%04d", code))", description) + ("CAP-PLUGIN-GLOC-\(String(format: "%04d", code))", description) } } diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationPlugin.swift b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationPlugin.swift index 3872ee3..e88429a 100644 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationPlugin.swift +++ b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/GeolocationPlugin.swift @@ -1,5 +1,5 @@ import Capacitor -import OSGeolocationLib +import IONGeolocationLib import Combine @@ -15,13 +15,13 @@ public class GeolocationPlugin: CAPPlugin, CAPBridgedPlugin { .init(name: "requestPermissions", returnType: CAPPluginReturnPromise) ] - private var locationService: (any OSGLOCService)? + private var locationService: (any IONGLOCService)? private var cancellables = Set() private var callbackManager: GeolocationCallbackManager? private var isInitialised: Bool = false public override func load() { - self.locationService = OSGLOCManagerWrapper() + self.locationService = IONGLOCManagerWrapper() self.callbackManager = .init(capacitorBridge: bridge) } @@ -118,7 +118,7 @@ private extension GeolocationPlugin { .store(in: &cancellables) } - func requestLocationAuthorisation(type requestType: OSGLOCAuthorisationRequestType) { + func requestLocationAuthorisation(type requestType: IONGLOCAuthorisationRequestType) { DispatchQueue.global(qos: .background).async { self.checkIfLocationServicesAreEnabled() self.locationService?.requestAuthorisation(withType: requestType) @@ -146,7 +146,7 @@ private extension GeolocationPlugin { } func handleLocationRequest(_ enableHighAccuracy: Bool, watchUUID: String? = nil, call: CAPPluginCall) { - let configurationModel = OSGLOCConfigurationModel(enableHighAccuracy: enableHighAccuracy) + let configurationModel = IONGLOCConfigurationModel(enableHighAccuracy: enableHighAccuracy) locationService?.updateConfiguration(configurationModel) if let watchUUID { diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGLOCPositionModel+JSONTransformer.swift b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/IONGLOCPositionModel+JSONTransformer.swift similarity index 91% rename from packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGLOCPositionModel+JSONTransformer.swift rename to packages/capacitor-plugin/ios/Sources/GeolocationPlugin/IONGLOCPositionModel+JSONTransformer.swift index b4cdc31..31ce9c8 100644 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGLOCPositionModel+JSONTransformer.swift +++ b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/IONGLOCPositionModel+JSONTransformer.swift @@ -1,7 +1,7 @@ import Capacitor -import OSGeolocationLib +import IONGeolocationLib -extension OSGLOCPositionModel { +extension IONGLOCPositionModel { func toJSObject() -> JSObject { [ Constants.Position.timestamp: timestamp, diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/Info.plist b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/Info.plist deleted file mode 100644 index 4600d15..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - OSGeolocationLib.framework/OSGeolocationLib - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64_x86_64-simulator - LibraryPath - OSGeolocationLib.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - simulator - - - BinaryPath - OSGeolocationLib.framework/OSGeolocationLib - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64 - LibraryPath - OSGeolocationLib.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Headers/OSGeolocationLib-Swift.h b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Headers/OSGeolocationLib-Swift.h deleted file mode 100644 index 0169630..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Headers/OSGeolocationLib-Swift.h +++ /dev/null @@ -1,331 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef OSGEOLOCATIONLIB_SWIFT_H -#define OSGEOLOCATIONLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#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 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#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 !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 !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 !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#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 !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 !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 -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# 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 -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#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 -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#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 -@import CoreLocation; -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#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") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="OSGeolocationLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - - -SWIFT_CLASS("_TtC16OSGeolocationLib20OSGLOCManagerWrapper") -@interface OSGLOCManagerWrapper : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class CLLocationManager; -@class CLLocation; - -@interface OSGLOCManagerWrapper (SWIFT_EXTENSION(OSGeolocationLib)) -- (void)locationManagerDidChangeAuthorization:(CLLocationManager * _Nonnull)manager; -- (void)locationManager:(CLLocationManager * _Nonnull)manager didUpdateLocations:(NSArray * _Nonnull)locations; -- (void)locationManager:(CLLocationManager * _Nonnull)manager didFailWithError:(NSError * _Nonnull)error; -@end - -#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/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Info.plist b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Info.plist deleted file mode 100644 index 0ddbf8f..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Info.plist and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.abi.json b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 059e32b..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,2646 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisation", - "printedName": "OSGLOCAuthorisation", - "children": [ - { - "kind": "Var", - "name": "notDetermined", - "printedName": "notDetermined", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO13notDeterminedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO13notDeterminedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "restricted", - "printedName": "restricted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO10restrictedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO10restrictedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "denied", - "printedName": "denied", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO6deniedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO6deniedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "authorisedAlways", - "printedName": "authorisedAlways", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO16authorisedAlwaysyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO16authorisedAlwaysyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "authorisedWhenInUse", - "printedName": "authorisedWhenInUse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO19authorisedWhenInUseyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO19authorisedWhenInUseyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivp", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF", - "moduleName": "OSGeolocationLib", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCPositionModel", - "printedName": "OSGLOCPositionModel", - "children": [ - { - "kind": "Var", - "name": "altitude", - "printedName": "altitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "course", - "printedName": "course", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6courseSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "horizontalAccuracy", - "printedName": "horizontalAccuracy", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "latitude", - "printedName": "latitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "longitude", - "printedName": "longitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "speed", - "printedName": "speed", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV5speedSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "verticalAccuracy", - "printedName": "verticalAccuracy", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "create", - "printedName": "create(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "CLLocation", - "printedName": "CoreLocation.CLLocation", - "usr": "c:objc(cs)CLLocation" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "Var", - "name": "whenInUse", - "printedName": "whenInUse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisationRequestType.Type) -> OSGeolocationLib.OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9whenInUseyA2CmF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9whenInUseyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "always", - "printedName": "always", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisationRequestType.Type) -> OSGeolocationLib.OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO6alwaysyA2CmF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO6alwaysyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivp", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF", - "moduleName": "OSGeolocationLib", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCServicesValidator", - "printedName": "OSGLOCServicesValidator", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCServicesValidator", - "printedName": "OSGeolocationLib.OSGLOCServicesValidator", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorVACycfc", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorVACycfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGLOCManagerWrapper", - "children": [ - { - "kind": "Var", - "name": "authorisationStatus", - "printedName": "authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "ProjectedValueProperty", - "AccessControl", - "Custom" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "$authorisationStatus", - "printedName": "$authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "authorisationStatusPublisher", - "printedName": "authorisationStatusPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg", - "moduleName": "OSGeolocationLib", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentLocation", - "printedName": "currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "ProjectedValueProperty", - "AccessControl", - "Custom" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "$currentLocation", - "printedName": "$currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentLocationPublisher", - "printedName": "currentLocationPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg", - "moduleName": "OSGeolocationLib", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(locationManager:servicesChecker:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGeolocationLib.OSGLOCManagerWrapper", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "hasDefaultArg": true, - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCServicesChecker", - "printedName": "OSGeolocationLib.OSGLOCServicesChecker", - "hasDefaultArg": true, - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "requestAuthorisation", - "printedName": "requestAuthorisation(withType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startMonitoringLocation", - "printedName": "startMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopMonitoringLocation", - "printedName": "stopMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "requestSingleLocation", - "printedName": "requestSingleLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateConfiguration", - "printedName": "updateConfiguration(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGeolocationLib.OSGLOCManagerWrapper", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)init", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfc", - "moduleName": "OSGeolocationLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "locationManagerDidChangeAuthorization", - "printedName": "locationManagerDidChangeAuthorization(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManagerDidChangeAuthorization:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManagerDidChangeAuthorization:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "locationManager", - "printedName": "locationManager(_:didUpdateLocations:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreLocation.CLLocation]", - "children": [ - { - "kind": "TypeNominal", - "name": "CLLocation", - "printedName": "CoreLocation.CLLocation", - "usr": "c:objc(cs)CLLocation" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManager:didUpdateLocations:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManager:didUpdateLocations:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "locationManager", - "printedName": "locationManager(_:didFailWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManager:didFailWithError:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManager:didFailWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCAuthorisationHandler", - "printedName": "OSGLOCAuthorisationHandler", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCSingleLocationHandler", - "printedName": "OSGLOCSingleLocationHandler", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCMonitorLocationHandler", - "printedName": "OSGLOCMonitorLocationHandler", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP" - }, - { - "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": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "children": [ - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCServicesChecker>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisationHandler", - "printedName": "OSGLOCAuthorisationHandler", - "children": [ - { - "kind": "Var", - "name": "authorisationStatus", - "printedName": "authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovp", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovg", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "authorisationStatusPublisher", - "printedName": "authorisationStatusPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvp", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvg", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "requestAuthorisation", - "printedName": "requestAuthorisation(withType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP20requestAuthorisation8withTypeyAA0c7RequestH0O_tF", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP20requestAuthorisation8withTypeyAA0c7RequestH0O_tF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCLocationError", - "printedName": "OSGLOCLocationError", - "children": [ - { - "kind": "Var", - "name": "locationUnavailable", - "printedName": "locationUnavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCLocationError.Type) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCLocationError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO19locationUnavailableyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO19locationUnavailableyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "other", - "printedName": "other", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCLocationError.Type) -> (Swift.Error) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Error) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCLocationError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO5otheryACs0D0_pcACmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO5otheryACs0D0_pcACmF", - "moduleName": "OSGeolocationLib" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "children": [ - { - "kind": "Var", - "name": "currentLocation", - "printedName": "currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvp", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvg", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentLocationPublisher", - "printedName": "currentLocationPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvp", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvg", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "updateConfiguration", - "printedName": "updateConfiguration(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCSingleLocationHandler", - "printedName": "OSGLOCSingleLocationHandler", - "children": [ - { - "kind": "Function", - "name": "requestSingleLocation", - "printedName": "requestSingleLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP013requestSingleD0yyF", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP013requestSingleD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCSingleLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCMonitorLocationHandler", - "printedName": "OSGLOCMonitorLocationHandler", - "children": [ - { - "kind": "Function", - "name": "startMonitoringLocation", - "printedName": "startMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP015startMonitoringD0yyF", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP015startMonitoringD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCMonitorLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopMonitoringLocation", - "printedName": "stopMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP014stopMonitoringD0yyF", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP014stopMonitoringD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCMonitorLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGLOCConfigurationModel", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(enableHighAccuracy:minimumUpdateDistanceInMeters:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfc", - "mangledName": "$s16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV", - "mangledName": "$s16OSGeolocationLib24OSGLOCConfigurationModelV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/outsystems-geolocation\/packages\/ios-lib\/OSGeolocationLib\/OSGLOCPositionModel.swift", - "kind": "IntegerLiteral", - "offset": 1581, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/outsystems-geolocation\/packages\/ios-lib\/OSGeolocationLib\/Publishers\/OSGLOCManagerWrapper.swift", - "kind": "StringLiteral", - "offset": 396, - "length": 20, - "value": "\"OSGeolocationLib.OSGLOCManagerWrapper\"" - } - ] -} \ No newline at end of file diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.private.swiftinterface deleted file mode 100644 index ff47161..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.private.swiftinterface +++ /dev/null @@ -1,142 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSGeolocationLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Combine -import CoreLocation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public enum OSGLOCAuthorisation { - case notDetermined - case restricted - case denied - case authorisedAlways - case authorisedWhenInUse - public static func == (a: OSGeolocationLib.OSGLOCAuthorisation, b: OSGeolocationLib.OSGLOCAuthorisation) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public struct OSGLOCPositionModel : Swift.Equatable { - public var altitude: Swift.Double { - get - } - public var course: Swift.Double { - get - } - public var horizontalAccuracy: Swift.Double { - get - } - public var latitude: Swift.Double { - get - } - public var longitude: Swift.Double { - get - } - public var speed: Swift.Double { - get - } - public var timestamp: Swift.Double { - get - } - public var verticalAccuracy: Swift.Double { - get - } - public static func == (a: OSGeolocationLib.OSGLOCPositionModel, b: OSGeolocationLib.OSGLOCPositionModel) -> Swift.Bool -} -extension OSGeolocationLib.OSGLOCPositionModel { - public static func create(from location: CoreLocation.CLLocation) -> OSGeolocationLib.OSGLOCPositionModel -} -public enum OSGLOCAuthorisationRequestType { - case whenInUse - case always - public static func == (a: OSGeolocationLib.OSGLOCAuthorisationRequestType, b: OSGeolocationLib.OSGLOCAuthorisationRequestType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public typealias OSGLOCService = OSGeolocationLib.OSGLOCAuthorisationHandler & OSGeolocationLib.OSGLOCMonitorLocationHandler & OSGeolocationLib.OSGLOCServicesChecker & OSGeolocationLib.OSGLOCSingleLocationHandler -public struct OSGLOCServicesValidator : OSGeolocationLib.OSGLOCServicesChecker { - public init() - public func areLocationServicesEnabled() -> Swift.Bool -} -@objc public class OSGLOCManagerWrapper : ObjectiveC.NSObject, OSGeolocationLib.OSGLOCService { - @Combine.Published @_projectedValueProperty($authorisationStatus) public var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $authorisationStatus: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var authorisationStatusPublisher: Combine.Published.Publisher { - get - } - @Combine.Published @_projectedValueProperty($currentLocation) public var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $currentLocation: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var currentLocationPublisher: Combine.AnyPublisher { - get - } - public init(locationManager: CoreLocation.CLLocationManager = .init(), servicesChecker: any OSGeolocationLib.OSGLOCServicesChecker = OSGLOCServicesValidator()) - public func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) - public func startMonitoringLocation() - public func stopMonitoringLocation() - public func requestSingleLocation() - public func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) - public func areLocationServicesEnabled() -> Swift.Bool - @objc deinit -} -extension OSGeolocationLib.OSGLOCManagerWrapper : CoreLocation.CLLocationManagerDelegate { - @objc dynamic public func locationManagerDidChangeAuthorization(_ manager: CoreLocation.CLLocationManager) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didUpdateLocations locations: [CoreLocation.CLLocation]) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: any Swift.Error) -} -public protocol OSGLOCServicesChecker { - func areLocationServicesEnabled() -> Swift.Bool -} -public protocol OSGLOCAuthorisationHandler { - var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { get } - var authorisationStatusPublisher: Combine.Published.Publisher { get } - func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) -} -public enum OSGLOCLocationError : Swift.Error { - case locationUnavailable - case other(_: any Swift.Error) -} -public protocol OSGLOCLocationHandler { - var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { get } - var currentLocationPublisher: Combine.AnyPublisher { get } - func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) -} -public protocol OSGLOCSingleLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func requestSingleLocation() -} -public protocol OSGLOCMonitorLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func startMonitoringLocation() - func stopMonitoringLocation() -} -public struct OSGLOCConfigurationModel { - public init(enableHighAccuracy: Swift.Bool, minimumUpdateDistanceInMeters: Swift.Double? = nil) -} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Hashable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Hashable {} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.swiftdoc b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index 15dffeb..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.swiftinterface b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.swiftinterface deleted file mode 100644 index ff47161..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios.swiftinterface +++ /dev/null @@ -1,142 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSGeolocationLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Combine -import CoreLocation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public enum OSGLOCAuthorisation { - case notDetermined - case restricted - case denied - case authorisedAlways - case authorisedWhenInUse - public static func == (a: OSGeolocationLib.OSGLOCAuthorisation, b: OSGeolocationLib.OSGLOCAuthorisation) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public struct OSGLOCPositionModel : Swift.Equatable { - public var altitude: Swift.Double { - get - } - public var course: Swift.Double { - get - } - public var horizontalAccuracy: Swift.Double { - get - } - public var latitude: Swift.Double { - get - } - public var longitude: Swift.Double { - get - } - public var speed: Swift.Double { - get - } - public var timestamp: Swift.Double { - get - } - public var verticalAccuracy: Swift.Double { - get - } - public static func == (a: OSGeolocationLib.OSGLOCPositionModel, b: OSGeolocationLib.OSGLOCPositionModel) -> Swift.Bool -} -extension OSGeolocationLib.OSGLOCPositionModel { - public static func create(from location: CoreLocation.CLLocation) -> OSGeolocationLib.OSGLOCPositionModel -} -public enum OSGLOCAuthorisationRequestType { - case whenInUse - case always - public static func == (a: OSGeolocationLib.OSGLOCAuthorisationRequestType, b: OSGeolocationLib.OSGLOCAuthorisationRequestType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public typealias OSGLOCService = OSGeolocationLib.OSGLOCAuthorisationHandler & OSGeolocationLib.OSGLOCMonitorLocationHandler & OSGeolocationLib.OSGLOCServicesChecker & OSGeolocationLib.OSGLOCSingleLocationHandler -public struct OSGLOCServicesValidator : OSGeolocationLib.OSGLOCServicesChecker { - public init() - public func areLocationServicesEnabled() -> Swift.Bool -} -@objc public class OSGLOCManagerWrapper : ObjectiveC.NSObject, OSGeolocationLib.OSGLOCService { - @Combine.Published @_projectedValueProperty($authorisationStatus) public var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $authorisationStatus: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var authorisationStatusPublisher: Combine.Published.Publisher { - get - } - @Combine.Published @_projectedValueProperty($currentLocation) public var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $currentLocation: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var currentLocationPublisher: Combine.AnyPublisher { - get - } - public init(locationManager: CoreLocation.CLLocationManager = .init(), servicesChecker: any OSGeolocationLib.OSGLOCServicesChecker = OSGLOCServicesValidator()) - public func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) - public func startMonitoringLocation() - public func stopMonitoringLocation() - public func requestSingleLocation() - public func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) - public func areLocationServicesEnabled() -> Swift.Bool - @objc deinit -} -extension OSGeolocationLib.OSGLOCManagerWrapper : CoreLocation.CLLocationManagerDelegate { - @objc dynamic public func locationManagerDidChangeAuthorization(_ manager: CoreLocation.CLLocationManager) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didUpdateLocations locations: [CoreLocation.CLLocation]) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: any Swift.Error) -} -public protocol OSGLOCServicesChecker { - func areLocationServicesEnabled() -> Swift.Bool -} -public protocol OSGLOCAuthorisationHandler { - var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { get } - var authorisationStatusPublisher: Combine.Published.Publisher { get } - func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) -} -public enum OSGLOCLocationError : Swift.Error { - case locationUnavailable - case other(_: any Swift.Error) -} -public protocol OSGLOCLocationHandler { - var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { get } - var currentLocationPublisher: Combine.AnyPublisher { get } - func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) -} -public protocol OSGLOCSingleLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func requestSingleLocation() -} -public protocol OSGLOCMonitorLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func startMonitoringLocation() - func stopMonitoringLocation() -} -public struct OSGLOCConfigurationModel { - public init(enableHighAccuracy: Swift.Bool, minimumUpdateDistanceInMeters: Swift.Double? = nil) -} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Hashable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Hashable {} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/module.modulemap b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/module.modulemap deleted file mode 100644 index 18e5938..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,4 +0,0 @@ -framework module OSGeolocationLib { - header "OSGeolocationLib-Swift.h" - requires objc -} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/OSGeolocationLib b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/OSGeolocationLib deleted file mode 100755 index a666802..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/OSGeolocationLib.framework/OSGeolocationLib and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Info.plist b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a8c15a5..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.outsystems.rd.geolocation.GeolocationLib - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0.0 - CFBundleVersion - 1 - - diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/DWARF/OSGeolocationLib b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/DWARF/OSGeolocationLib deleted file mode 100644 index 83c695a..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/DWARF/OSGeolocationLib and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSGeolocationLib.yml b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSGeolocationLib.yml deleted file mode 100644 index 7e82a93..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSGeolocationLib.yml +++ /dev/null @@ -1,150 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/rcj/Library/Developer/Xcode/DerivedData/OSGeolocationLib-fluwbyhqwgjxjxdrwiflfluzracc/Build/Intermediates.noindex/ArchiveIntermediates/OSGeolocationLib/InstallationBuildProductsLocation/Library/Frameworks/OSGeolocationLib.framework/OSGeolocationLib' -relocations: - - { offsetInCU: 0x34, offset: 0x2F06A, size: 0x8, addend: 0x0, symName: _OSGeolocationLibVersionString, symObjAddr: 0x0, symBinAddr: 0x8320, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x2F09F, size: 0x8, addend: 0x0, symName: _OSGeolocationLibVersionNumber, symObjAddr: 0x40, symBinAddr: 0x8360, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0x2F0DC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x2F100, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x14 } - - { offsetInCU: 0x7E, offset: 0x2F133, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF', symObjAddr: 0x14, symBinAddr: 0x4014, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x2F1C9, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg', symObjAddr: 0x3C, symBinAddr: 0x403C, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x2F2C3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x80, symBinAddr: 0x4080, symSize: 0x14 } - - { offsetInCU: 0x22E, offset: 0x2F2E3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x80, symBinAddr: 0x4080, symSize: 0x14 } - - { offsetInCU: 0x26E, offset: 0x2F323, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH9hashValueSivgTW', symObjAddr: 0x94, symBinAddr: 0x4094, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x2F406, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xD8, symBinAddr: 0x40D8, symSize: 0x28 } - - { offsetInCU: 0x3DA, offset: 0x2F48F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASQWb', symObjAddr: 0x140, symBinAddr: 0x4140, symSize: 0x4 } - - { offsetInCU: 0x3EE, offset: 0x2F4A3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOACSQAAWl', symObjAddr: 0x144, symBinAddr: 0x4144, symSize: 0x44 } - - { offsetInCU: 0x402, offset: 0x2F4B7, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x188, symBinAddr: 0x4188, symSize: 0xC } - - { offsetInCU: 0x416, offset: 0x2F4CB, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x194, symBinAddr: 0x4194, symSize: 0x4 } - - { offsetInCU: 0x42A, offset: 0x2F4DF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwet', symObjAddr: 0x198, symBinAddr: 0x4198, symSize: 0x90 } - - { offsetInCU: 0x43E, offset: 0x2F4F3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwst', symObjAddr: 0x228, symBinAddr: 0x4228, symSize: 0xBC } - - { offsetInCU: 0x452, offset: 0x2F507, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwug', symObjAddr: 0x2E4, symBinAddr: 0x42E4, symSize: 0x8 } - - { offsetInCU: 0x466, offset: 0x2F51B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwup', symObjAddr: 0x2EC, symBinAddr: 0x42EC, symSize: 0x4 } - - { offsetInCU: 0x47A, offset: 0x2F52F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwui', symObjAddr: 0x2F0, symBinAddr: 0x42F0, symSize: 0x8 } - - { offsetInCU: 0x48E, offset: 0x2F543, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOMa', symObjAddr: 0x2F8, symBinAddr: 0x42F8, symSize: 0x10 } - - { offsetInCU: 0x508, offset: 0x2F5BD, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x100, symBinAddr: 0x4100, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x2F6FF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg', symObjAddr: 0x0, symBinAddr: 0x4308, symSize: 0x8 } - - { offsetInCU: 0x4A, offset: 0x2F71E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg', symObjAddr: 0x0, symBinAddr: 0x4308, symSize: 0x8 } - - { offsetInCU: 0x68, offset: 0x2F73C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg', symObjAddr: 0x8, symBinAddr: 0x4310, symSize: 0x8 } - - { offsetInCU: 0x86, offset: 0x2F75A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg', symObjAddr: 0x10, symBinAddr: 0x4318, symSize: 0x8 } - - { offsetInCU: 0xA4, offset: 0x2F778, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg', symObjAddr: 0x18, symBinAddr: 0x4320, symSize: 0x8 } - - { offsetInCU: 0xC2, offset: 0x2F796, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg', symObjAddr: 0x20, symBinAddr: 0x4328, symSize: 0x8 } - - { offsetInCU: 0xE0, offset: 0x2F7B4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg', symObjAddr: 0x28, symBinAddr: 0x4330, symSize: 0x8 } - - { offsetInCU: 0xFE, offset: 0x2F7D2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg', symObjAddr: 0x30, symBinAddr: 0x4338, symSize: 0x8 } - - { offsetInCU: 0x11C, offset: 0x2F7F0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg', symObjAddr: 0x38, symBinAddr: 0x4340, symSize: 0x8 } - - { offsetInCU: 0x13A, offset: 0x2F80E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ', symObjAddr: 0x40, symBinAddr: 0x4348, symSize: 0x4 } - - { offsetInCU: 0x15D, offset: 0x2F831, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x44, symBinAddr: 0x434C, symSize: 0x4 } - - { offsetInCU: 0x17D, offset: 0x2F851, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x44, symBinAddr: 0x434C, symSize: 0x4 } - - { offsetInCU: 0x18E, offset: 0x2F862, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZTf4nnd_n', symObjAddr: 0x1B8, symBinAddr: 0x44C0, symSize: 0x9C } - - { offsetInCU: 0x1C9, offset: 0x2F89D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ', symObjAddr: 0x48, symBinAddr: 0x4350, symSize: 0x170 } - - { offsetInCU: 0x227, offset: 0x2F8FB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwCP', symObjAddr: 0x254, symBinAddr: 0x455C, symSize: 0x30 } - - { offsetInCU: 0x23B, offset: 0x2F90F, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x288, symBinAddr: 0x458C, symSize: 0x14 } - - { offsetInCU: 0x24F, offset: 0x2F923, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwet', symObjAddr: 0x29C, symBinAddr: 0x45A0, symSize: 0x20 } - - { offsetInCU: 0x263, offset: 0x2F937, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwst', symObjAddr: 0x2BC, symBinAddr: 0x45C0, symSize: 0x3C } - - { offsetInCU: 0x277, offset: 0x2F94B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVMa', symObjAddr: 0x2F8, symBinAddr: 0x45FC, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x2FA2A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_', symObjAddr: 0x0, symBinAddr: 0x460C, symSize: 0xC } - - { offsetInCU: 0x4B, offset: 0x2FA4E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_', symObjAddr: 0x0, symBinAddr: 0x460C, symSize: 0xC } - - { offsetInCU: 0x72, offset: 0x2FA75, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu1_yycfu2_', symObjAddr: 0xC, symBinAddr: 0x4618, symSize: 0xC } - - { offsetInCU: 0x99, offset: 0x2FA9C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x18, symBinAddr: 0x4624, symSize: 0x18 } - - { offsetInCU: 0xCC, offset: 0x2FACF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x30, symBinAddr: 0x463C, symSize: 0x28 } - - { offsetInCU: 0x162, offset: 0x2FB65, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg', symObjAddr: 0x58, symBinAddr: 0x4664, symSize: 0x44 } - - { offsetInCU: 0x25C, offset: 0x2FC5F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x9C, symBinAddr: 0x46A8, symSize: 0x18 } - - { offsetInCU: 0x27C, offset: 0x2FC7F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x9C, symBinAddr: 0x46A8, symSize: 0x18 } - - { offsetInCU: 0x2BC, offset: 0x2FCBF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH9hashValueSivgTW', symObjAddr: 0xB4, symBinAddr: 0x46C0, symSize: 0x44 } - - { offsetInCU: 0x39F, offset: 0x2FDA2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xF8, symBinAddr: 0x4704, symSize: 0x28 } - - { offsetInCU: 0x428, offset: 0x2FE2B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASQWb', symObjAddr: 0x160, symBinAddr: 0x476C, symSize: 0x4 } - - { offsetInCU: 0x43C, offset: 0x2FE3F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOACSQAAWl', symObjAddr: 0x164, symBinAddr: 0x4770, symSize: 0x44 } - - { offsetInCU: 0x450, offset: 0x2FE53, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwet', symObjAddr: 0x1B8, symBinAddr: 0x47B4, symSize: 0x90 } - - { offsetInCU: 0x464, offset: 0x2FE67, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwst', symObjAddr: 0x248, symBinAddr: 0x4844, symSize: 0xBC } - - { offsetInCU: 0x478, offset: 0x2FE7B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwug', symObjAddr: 0x304, symBinAddr: 0x4900, symSize: 0x8 } - - { offsetInCU: 0x48C, offset: 0x2FE8F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwup', symObjAddr: 0x30C, symBinAddr: 0x4908, symSize: 0x4 } - - { offsetInCU: 0x4A0, offset: 0x2FEA3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwui', symObjAddr: 0x310, symBinAddr: 0x490C, symSize: 0xC } - - { offsetInCU: 0x4B4, offset: 0x2FEB7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOMa', symObjAddr: 0x31C, symBinAddr: 0x4918, symSize: 0x10 } - - { offsetInCU: 0x512, offset: 0x2FF15, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x120, symBinAddr: 0x472C, symSize: 0x40 } - - { offsetInCU: 0x4A, offset: 0x30071, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVACycfC', symObjAddr: 0x0, symBinAddr: 0x4928, symSize: 0x4 } - - { offsetInCU: 0x68, offset: 0x3008F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF', symObjAddr: 0x4, symBinAddr: 0x492C, symSize: 0x28 } - - { offsetInCU: 0x8D, offset: 0x300B4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVAA0C7CheckerA2aDP26areLocationServicesEnabledSbyFTW', symObjAddr: 0x2C, symBinAddr: 0x4954, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x3013B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg', symObjAddr: 0x140, symBinAddr: 0x4A68, symSize: 0x64 } - - { offsetInCU: 0x133, offset: 0x3015A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs', symObjAddr: 0x1AC, symBinAddr: 0x4AD4, symSize: 0x6C } - - { offsetInCU: 0x15C, offset: 0x30183, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM', symObjAddr: 0x218, symBinAddr: 0x4B40, symSize: 0x78 } - - { offsetInCU: 0x1D3, offset: 0x301FA, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM', symObjAddr: 0x304, symBinAddr: 0x4C2C, symSize: 0xC8 } - - { offsetInCU: 0x22D, offset: 0x30254, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg', symObjAddr: 0x3D0, symBinAddr: 0x4CF8, symSize: 0x60 } - - { offsetInCU: 0x2B4, offset: 0x302DB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg', symObjAddr: 0x568, symBinAddr: 0x4E90, symSize: 0x64 } - - { offsetInCU: 0x2D3, offset: 0x302FA, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs', symObjAddr: 0x5D4, symBinAddr: 0x4EFC, symSize: 0xA8 } - - { offsetInCU: 0x2FC, offset: 0x30323, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM', symObjAddr: 0x67C, symBinAddr: 0x4FA4, symSize: 0x78 } - - { offsetInCU: 0x373, offset: 0x3039A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM', symObjAddr: 0xA34, symBinAddr: 0x535C, symSize: 0xC8 } - - { offsetInCU: 0x3CD, offset: 0x303F4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg', symObjAddr: 0xC2C, symBinAddr: 0x5554, symSize: 0x2C0 } - - { offsetInCU: 0x41B, offset: 0x30442, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvgA2ISgKcfU_', symObjAddr: 0xF30, symBinAddr: 0x5858, symSize: 0x68 } - - { offsetInCU: 0x45F, offset: 0x30486, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvgAKs0M0_pcfU0_', symObjAddr: 0xF98, symBinAddr: 0x58C0, symSize: 0x78 } - - { offsetInCU: 0x48B, offset: 0x304B2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfC', symObjAddr: 0x1094, symBinAddr: 0x59BC, symSize: 0x40 } - - { offsetInCU: 0x4A9, offset: 0x304D0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc', symObjAddr: 0x10D4, symBinAddr: 0x59FC, symSize: 0x1C4 } - - { offsetInCU: 0x594, offset: 0x305BB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF', symObjAddr: 0x1338, symBinAddr: 0x5C60, symSize: 0x80 } - - { offsetInCU: 0x5F4, offset: 0x3061B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF', symObjAddr: 0x13EC, symBinAddr: 0x5D14, symSize: 0x18 } - - { offsetInCU: 0x611, offset: 0x30638, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF', symObjAddr: 0x1404, symBinAddr: 0x5D2C, symSize: 0x18 } - - { offsetInCU: 0x62E, offset: 0x30655, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF', symObjAddr: 0x141C, symBinAddr: 0x5D44, symSize: 0x18 } - - { offsetInCU: 0x64B, offset: 0x30672, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF', symObjAddr: 0x1434, symBinAddr: 0x5D5C, symSize: 0xAC } - - { offsetInCU: 0x6D1, offset: 0x306F8, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF', symObjAddr: 0x14E0, symBinAddr: 0x5E08, symSize: 0x50 } - - { offsetInCU: 0x6F0, offset: 0x30717, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfC', symObjAddr: 0x1554, symBinAddr: 0x5E7C, symSize: 0x20 } - - { offsetInCU: 0x70E, offset: 0x30735, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfc', symObjAddr: 0x1574, symBinAddr: 0x5E9C, symSize: 0x2C } - - { offsetInCU: 0x771, offset: 0x30798, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfcTo', symObjAddr: 0x15A0, symBinAddr: 0x5EC8, symSize: 0x2C } - - { offsetInCU: 0x7D8, offset: 0x307FF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCfD', symObjAddr: 0x15CC, symBinAddr: 0x5EF4, symSize: 0x34 } - - { offsetInCU: 0x823, offset: 0x3084A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCServicesCheckerA2aDP26areLocationServicesEnabledSbyFTW', symObjAddr: 0x1690, symBinAddr: 0x5FB8, symSize: 0x54 } - - { offsetInCU: 0x855, offset: 0x3087C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP19authorisationStatusAA0E0OvgTW', symObjAddr: 0x16E4, symBinAddr: 0x600C, symSize: 0x68 } - - { offsetInCU: 0x8A5, offset: 0x308CC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP28authorisationStatusPublisher7Combine9PublishedV0I0VyAA0E0O_GvgTW', symObjAddr: 0x174C, symBinAddr: 0x6074, symSize: 0x64 } - - { offsetInCU: 0x917, offset: 0x3093E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP20requestAuthorisation8withTypeyAA0e7RequestJ0O_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x60D8, symSize: 0x84 } - - { offsetInCU: 0x9A9, offset: 0x309D0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA27OSGLOCSingleLocationHandlerA2aDP013requestSingleF0yyFTW', symObjAddr: 0x1834, symBinAddr: 0x615C, symSize: 0x1C } - - { offsetInCU: 0x9F9, offset: 0x30A20, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA28OSGLOCMonitorLocationHandlerA2aDP015startMonitoringF0yyFTW', symObjAddr: 0x1850, symBinAddr: 0x6178, symSize: 0x1C } - - { offsetInCU: 0xA49, offset: 0x30A70, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA28OSGLOCMonitorLocationHandlerA2aDP014stopMonitoringF0yyFTW', symObjAddr: 0x186C, symBinAddr: 0x6194, symSize: 0x1C } - - { offsetInCU: 0xA7B, offset: 0x30AA2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP15currentLocationAA19OSGLOCPositionModelVSgvgTW', symObjAddr: 0x1888, symBinAddr: 0x61B0, symSize: 0x68 } - - { offsetInCU: 0xAAD, offset: 0x30AD4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP24currentLocationPublisher7Combine03AnyI0VyAA19OSGLOCPositionModelVAA0E5ErrorOGvgTW', symObjAddr: 0x18F0, symBinAddr: 0x6218, symSize: 0x20 } - - { offsetInCU: 0xAE7, offset: 0x30B0E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP19updateConfigurationyyAA24OSGLOCConfigurationModelVFTW', symObjAddr: 0x1910, symBinAddr: 0x6238, symSize: 0xB0 } - - { offsetInCU: 0xB6F, offset: 0x30B96, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvpACTK', symObjAddr: 0x54, symBinAddr: 0x497C, symSize: 0x7C } - - { offsetInCU: 0xB9C, offset: 0x30BC3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvpACTk', symObjAddr: 0xD0, symBinAddr: 0x49F8, symSize: 0x70 } - - { offsetInCU: 0xBDA, offset: 0x30C01, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x2A8, symBinAddr: 0x4BD0, symSize: 0x40 } - - { offsetInCU: 0xBEE, offset: 0x30C15, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvpACTK', symObjAddr: 0x430, symBinAddr: 0x4D58, symSize: 0x8C } - - { offsetInCU: 0xC27, offset: 0x30C4E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvpACTk', symObjAddr: 0x4BC, symBinAddr: 0x4DE4, symSize: 0xAC } - - { offsetInCU: 0xC67, offset: 0x30C8E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0xEEC, symBinAddr: 0x5814, symSize: 0x44 } - - { offsetInCU: 0xC7B, offset: 0x30CA2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOACs0D0AAWl', symObjAddr: 0x1010, symBinAddr: 0x5938, symSize: 0x44 } - - { offsetInCU: 0xCE5, offset: 0x30D0C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib21OSGLOCServicesChecker_pWOc', symObjAddr: 0x1298, symBinAddr: 0x5BC0, symSize: 0x44 } - - { offsetInCU: 0xCF9, offset: 0x30D20, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMa', symObjAddr: 0x12DC, symBinAddr: 0x5C04, symSize: 0x3C } - - { offsetInCU: 0xD0D, offset: 0x30D34, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x1318, symBinAddr: 0x5C40, symSize: 0x20 } - - { offsetInCU: 0xD76, offset: 0x30D9D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu1_yycfu2_TA', symObjAddr: 0x13DC, symBinAddr: 0x5D04, symSize: 0x8 } - - { offsetInCU: 0xD8A, offset: 0x30DB1, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_TA', symObjAddr: 0x13E4, symBinAddr: 0x5D0C, symSize: 0x8 } - - { offsetInCU: 0xD9E, offset: 0x30DC5, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x1530, symBinAddr: 0x5E58, symSize: 0x24 } - - { offsetInCU: 0xDC8, offset: 0x30DEF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCfETo', symObjAddr: 0x1600, symBinAddr: 0x5F28, symSize: 0x90 } - - { offsetInCU: 0xDF7, offset: 0x30E1E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CF', symObjAddr: 0x19C0, symBinAddr: 0x62E8, symSize: 0x7C } - - { offsetInCU: 0xE9A, offset: 0x30EC1, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CFTo', symObjAddr: 0x1A3C, symBinAddr: 0x6364, symSize: 0x50 } - - { offsetInCU: 0xEB6, offset: 0x30EDD, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtF', symObjAddr: 0x1A8C, symBinAddr: 0x63B4, symSize: 0x8 } - - { offsetInCU: 0xED9, offset: 0x30F00, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtFTo', symObjAddr: 0x1A94, symBinAddr: 0x63BC, symSize: 0x84 } - - { offsetInCU: 0xF0B, offset: 0x30F32, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptF', symObjAddr: 0x1B18, symBinAddr: 0x6440, symSize: 0x78 } - - { offsetInCU: 0xF94, offset: 0x30FBB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptFTo', symObjAddr: 0x1B90, symBinAddr: 0x64B8, symSize: 0x7C } - - { offsetInCU: 0x10FF, offset: 0x31126, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtFTf4dnn_n', symObjAddr: 0x1E0C, symBinAddr: 0x6734, symSize: 0x2B0 } - - { offsetInCU: 0x132C, offset: 0x31353, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVMa', symObjAddr: 0x215C, symBinAddr: 0x6A84, symSize: 0x10 } - - { offsetInCU: 0x1340, offset: 0x31367, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMU', symObjAddr: 0x216C, symBinAddr: 0x6A94, symSize: 0x8 } - - { offsetInCU: 0x1354, offset: 0x3137B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMr', symObjAddr: 0x2174, symBinAddr: 0x6A9C, symSize: 0xA0 } - - { offsetInCU: 0x1368, offset: 0x3138F, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy16OSGeolocationLib19OSGLOCAuthorisationOGMa', symObjAddr: 0x2458, symBinAddr: 0x6D80, symSize: 0x54 } - - { offsetInCU: 0x137C, offset: 0x313A3, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy16OSGeolocationLib19OSGLOCPositionModelVSgGMa', symObjAddr: 0x24AC, symBinAddr: 0x6DD4, symSize: 0x58 } - - { offsetInCU: 0x1390, offset: 0x313B7, size: 0x8, addend: 0x0, symName: '_$sSo10CLLocationCMa', symObjAddr: 0x2504, symBinAddr: 0x6E2C, symSize: 0x3C } - - { offsetInCU: 0x143F, offset: 0x31466, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo10CLLocationC_Tg5', symObjAddr: 0x1C0C, symBinAddr: 0x6534, symSize: 0x200 } - - { offsetInCU: 0x4A, offset: 0x316A7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfC', symObjAddr: 0x10, symBinAddr: 0x6E84, symSize: 0x14 } - - { offsetInCU: 0x86, offset: 0x316E3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwCP', symObjAddr: 0x44, symBinAddr: 0x6EB8, symSize: 0x30 } - - { offsetInCU: 0x9A, offset: 0x316F7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwxx', symObjAddr: 0x74, symBinAddr: 0x6EE8, symSize: 0x8 } - - { offsetInCU: 0xAE, offset: 0x3170B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwcp', symObjAddr: 0x7C, symBinAddr: 0x6EF0, symSize: 0x30 } - - { offsetInCU: 0xC2, offset: 0x3171F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwca', symObjAddr: 0xAC, symBinAddr: 0x6F20, symSize: 0x38 } - - { offsetInCU: 0xD6, offset: 0x31733, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0xE4, symBinAddr: 0x6F58, symSize: 0xC } - - { offsetInCU: 0xEA, offset: 0x31747, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwta', symObjAddr: 0xF0, symBinAddr: 0x6F64, symSize: 0x30 } - - { offsetInCU: 0xFE, offset: 0x3175B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwet', symObjAddr: 0x120, symBinAddr: 0x6F94, symSize: 0x50 } - - { offsetInCU: 0x112, offset: 0x3176F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwst', symObjAddr: 0x170, symBinAddr: 0x6FE4, symSize: 0x54 } - - { offsetInCU: 0x126, offset: 0x31783, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwug', symObjAddr: 0x1C4, symBinAddr: 0x7038, symSize: 0x18 } - - { offsetInCU: 0x13A, offset: 0x31797, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwup', symObjAddr: 0x1DC, symBinAddr: 0x7050, symSize: 0x4 } - - { offsetInCU: 0x14E, offset: 0x317AB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwui', symObjAddr: 0x1E0, symBinAddr: 0x7054, symSize: 0x20 } - - { offsetInCU: 0x162, offset: 0x317BF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOMa', symObjAddr: 0x200, symBinAddr: 0x7074, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x317D3, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x238, symBinAddr: 0x70AC, symSize: 0x14 } - - { offsetInCU: 0x18A, offset: 0x317E7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVwet', symObjAddr: 0x250, symBinAddr: 0x70C0, symSize: 0x54 } - - { offsetInCU: 0x19E, offset: 0x317FB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVwst', symObjAddr: 0x2A4, symBinAddr: 0x7114, symSize: 0x44 } - - { offsetInCU: 0x1B2, offset: 0x3180F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVMa', symObjAddr: 0x2E8, symBinAddr: 0x7158, symSize: 0x10 } - - { offsetInCU: 0x1D7, offset: 0x31834, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x6E74, symSize: 0x4 } - - { offsetInCU: 0x1F3, offset: 0x31850, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x6E78, symSize: 0x4 } - - { offsetInCU: 0x20F, offset: 0x3186C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x6E7C, symSize: 0x4 } - - { offsetInCU: 0x22B, offset: 0x31888, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x6E80, symSize: 0x4 } -... diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Headers/OSGeolocationLib-Swift.h b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Headers/OSGeolocationLib-Swift.h deleted file mode 100644 index 6a06c55..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Headers/OSGeolocationLib-Swift.h +++ /dev/null @@ -1,658 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef OSGEOLOCATIONLIB_SWIFT_H -#define OSGEOLOCATIONLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#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 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#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 !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 !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 !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#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 !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 !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 -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# 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 -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#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 -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#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 -@import CoreLocation; -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#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") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="OSGeolocationLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - - -SWIFT_CLASS("_TtC16OSGeolocationLib20OSGLOCManagerWrapper") -@interface OSGLOCManagerWrapper : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class CLLocationManager; -@class CLLocation; - -@interface OSGLOCManagerWrapper (SWIFT_EXTENSION(OSGeolocationLib)) -- (void)locationManagerDidChangeAuthorization:(CLLocationManager * _Nonnull)manager; -- (void)locationManager:(CLLocationManager * _Nonnull)manager didUpdateLocations:(NSArray * _Nonnull)locations; -- (void)locationManager:(CLLocationManager * _Nonnull)manager didFailWithError:(NSError * _Nonnull)error; -@end - -#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.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -#ifndef OSGEOLOCATIONLIB_SWIFT_H -#define OSGEOLOCATIONLIB_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#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 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#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 !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 !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 !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#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 !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 !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 -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# 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 -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#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 -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#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 -@import CoreLocation; -@import Foundation; -@import ObjectiveC; -#endif - -#endif -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#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") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="OSGeolocationLib",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - - -SWIFT_CLASS("_TtC16OSGeolocationLib20OSGLOCManagerWrapper") -@interface OSGLOCManagerWrapper : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class CLLocationManager; -@class CLLocation; - -@interface OSGLOCManagerWrapper (SWIFT_EXTENSION(OSGeolocationLib)) -- (void)locationManagerDidChangeAuthorization:(CLLocationManager * _Nonnull)manager; -- (void)locationManager:(CLLocationManager * _Nonnull)manager didUpdateLocations:(NSArray * _Nonnull)locations; -- (void)locationManager:(CLLocationManager * _Nonnull)manager didFailWithError:(NSError * _Nonnull)error; -@end - -#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/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Info.plist b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Info.plist deleted file mode 100644 index d5c4add..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Info.plist and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 059e32b..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,2646 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisation", - "printedName": "OSGLOCAuthorisation", - "children": [ - { - "kind": "Var", - "name": "notDetermined", - "printedName": "notDetermined", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO13notDeterminedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO13notDeterminedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "restricted", - "printedName": "restricted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO10restrictedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO10restrictedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "denied", - "printedName": "denied", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO6deniedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO6deniedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "authorisedAlways", - "printedName": "authorisedAlways", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO16authorisedAlwaysyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO16authorisedAlwaysyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "authorisedWhenInUse", - "printedName": "authorisedWhenInUse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO19authorisedWhenInUseyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO19authorisedWhenInUseyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivp", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF", - "moduleName": "OSGeolocationLib", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCPositionModel", - "printedName": "OSGLOCPositionModel", - "children": [ - { - "kind": "Var", - "name": "altitude", - "printedName": "altitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "course", - "printedName": "course", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6courseSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "horizontalAccuracy", - "printedName": "horizontalAccuracy", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "latitude", - "printedName": "latitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "longitude", - "printedName": "longitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "speed", - "printedName": "speed", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV5speedSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "verticalAccuracy", - "printedName": "verticalAccuracy", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "create", - "printedName": "create(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "CLLocation", - "printedName": "CoreLocation.CLLocation", - "usr": "c:objc(cs)CLLocation" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "Var", - "name": "whenInUse", - "printedName": "whenInUse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisationRequestType.Type) -> OSGeolocationLib.OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9whenInUseyA2CmF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9whenInUseyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "always", - "printedName": "always", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisationRequestType.Type) -> OSGeolocationLib.OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO6alwaysyA2CmF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO6alwaysyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivp", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF", - "moduleName": "OSGeolocationLib", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCServicesValidator", - "printedName": "OSGLOCServicesValidator", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCServicesValidator", - "printedName": "OSGeolocationLib.OSGLOCServicesValidator", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorVACycfc", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorVACycfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGLOCManagerWrapper", - "children": [ - { - "kind": "Var", - "name": "authorisationStatus", - "printedName": "authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "ProjectedValueProperty", - "AccessControl", - "Custom" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "$authorisationStatus", - "printedName": "$authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "authorisationStatusPublisher", - "printedName": "authorisationStatusPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg", - "moduleName": "OSGeolocationLib", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentLocation", - "printedName": "currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "ProjectedValueProperty", - "AccessControl", - "Custom" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "$currentLocation", - "printedName": "$currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentLocationPublisher", - "printedName": "currentLocationPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg", - "moduleName": "OSGeolocationLib", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(locationManager:servicesChecker:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGeolocationLib.OSGLOCManagerWrapper", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "hasDefaultArg": true, - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCServicesChecker", - "printedName": "OSGeolocationLib.OSGLOCServicesChecker", - "hasDefaultArg": true, - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "requestAuthorisation", - "printedName": "requestAuthorisation(withType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startMonitoringLocation", - "printedName": "startMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopMonitoringLocation", - "printedName": "stopMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "requestSingleLocation", - "printedName": "requestSingleLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateConfiguration", - "printedName": "updateConfiguration(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGeolocationLib.OSGLOCManagerWrapper", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)init", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfc", - "moduleName": "OSGeolocationLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "locationManagerDidChangeAuthorization", - "printedName": "locationManagerDidChangeAuthorization(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManagerDidChangeAuthorization:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManagerDidChangeAuthorization:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "locationManager", - "printedName": "locationManager(_:didUpdateLocations:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreLocation.CLLocation]", - "children": [ - { - "kind": "TypeNominal", - "name": "CLLocation", - "printedName": "CoreLocation.CLLocation", - "usr": "c:objc(cs)CLLocation" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManager:didUpdateLocations:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManager:didUpdateLocations:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "locationManager", - "printedName": "locationManager(_:didFailWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManager:didFailWithError:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManager:didFailWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCAuthorisationHandler", - "printedName": "OSGLOCAuthorisationHandler", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCSingleLocationHandler", - "printedName": "OSGLOCSingleLocationHandler", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCMonitorLocationHandler", - "printedName": "OSGLOCMonitorLocationHandler", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP" - }, - { - "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": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "children": [ - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCServicesChecker>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisationHandler", - "printedName": "OSGLOCAuthorisationHandler", - "children": [ - { - "kind": "Var", - "name": "authorisationStatus", - "printedName": "authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovp", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovg", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "authorisationStatusPublisher", - "printedName": "authorisationStatusPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvp", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvg", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "requestAuthorisation", - "printedName": "requestAuthorisation(withType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP20requestAuthorisation8withTypeyAA0c7RequestH0O_tF", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP20requestAuthorisation8withTypeyAA0c7RequestH0O_tF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCLocationError", - "printedName": "OSGLOCLocationError", - "children": [ - { - "kind": "Var", - "name": "locationUnavailable", - "printedName": "locationUnavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCLocationError.Type) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCLocationError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO19locationUnavailableyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO19locationUnavailableyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "other", - "printedName": "other", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCLocationError.Type) -> (Swift.Error) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Error) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCLocationError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO5otheryACs0D0_pcACmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO5otheryACs0D0_pcACmF", - "moduleName": "OSGeolocationLib" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "children": [ - { - "kind": "Var", - "name": "currentLocation", - "printedName": "currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvp", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvg", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentLocationPublisher", - "printedName": "currentLocationPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvp", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvg", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "updateConfiguration", - "printedName": "updateConfiguration(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCSingleLocationHandler", - "printedName": "OSGLOCSingleLocationHandler", - "children": [ - { - "kind": "Function", - "name": "requestSingleLocation", - "printedName": "requestSingleLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP013requestSingleD0yyF", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP013requestSingleD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCSingleLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCMonitorLocationHandler", - "printedName": "OSGLOCMonitorLocationHandler", - "children": [ - { - "kind": "Function", - "name": "startMonitoringLocation", - "printedName": "startMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP015startMonitoringD0yyF", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP015startMonitoringD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCMonitorLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopMonitoringLocation", - "printedName": "stopMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP014stopMonitoringD0yyF", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP014stopMonitoringD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCMonitorLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGLOCConfigurationModel", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(enableHighAccuracy:minimumUpdateDistanceInMeters:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfc", - "mangledName": "$s16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV", - "mangledName": "$s16OSGeolocationLib24OSGLOCConfigurationModelV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/outsystems-geolocation\/packages\/ios-lib\/OSGeolocationLib\/OSGLOCPositionModel.swift", - "kind": "IntegerLiteral", - "offset": 1581, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/outsystems-geolocation\/packages\/ios-lib\/OSGeolocationLib\/Publishers\/OSGLOCManagerWrapper.swift", - "kind": "StringLiteral", - "offset": 396, - "length": 20, - "value": "\"OSGeolocationLib.OSGLOCManagerWrapper\"" - } - ] -} \ No newline at end of file diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index 90158eb..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,142 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSGeolocationLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Combine -import CoreLocation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public enum OSGLOCAuthorisation { - case notDetermined - case restricted - case denied - case authorisedAlways - case authorisedWhenInUse - public static func == (a: OSGeolocationLib.OSGLOCAuthorisation, b: OSGeolocationLib.OSGLOCAuthorisation) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public struct OSGLOCPositionModel : Swift.Equatable { - public var altitude: Swift.Double { - get - } - public var course: Swift.Double { - get - } - public var horizontalAccuracy: Swift.Double { - get - } - public var latitude: Swift.Double { - get - } - public var longitude: Swift.Double { - get - } - public var speed: Swift.Double { - get - } - public var timestamp: Swift.Double { - get - } - public var verticalAccuracy: Swift.Double { - get - } - public static func == (a: OSGeolocationLib.OSGLOCPositionModel, b: OSGeolocationLib.OSGLOCPositionModel) -> Swift.Bool -} -extension OSGeolocationLib.OSGLOCPositionModel { - public static func create(from location: CoreLocation.CLLocation) -> OSGeolocationLib.OSGLOCPositionModel -} -public enum OSGLOCAuthorisationRequestType { - case whenInUse - case always - public static func == (a: OSGeolocationLib.OSGLOCAuthorisationRequestType, b: OSGeolocationLib.OSGLOCAuthorisationRequestType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public typealias OSGLOCService = OSGeolocationLib.OSGLOCAuthorisationHandler & OSGeolocationLib.OSGLOCMonitorLocationHandler & OSGeolocationLib.OSGLOCServicesChecker & OSGeolocationLib.OSGLOCSingleLocationHandler -public struct OSGLOCServicesValidator : OSGeolocationLib.OSGLOCServicesChecker { - public init() - public func areLocationServicesEnabled() -> Swift.Bool -} -@objc public class OSGLOCManagerWrapper : ObjectiveC.NSObject, OSGeolocationLib.OSGLOCService { - @Combine.Published @_projectedValueProperty($authorisationStatus) public var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $authorisationStatus: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var authorisationStatusPublisher: Combine.Published.Publisher { - get - } - @Combine.Published @_projectedValueProperty($currentLocation) public var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $currentLocation: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var currentLocationPublisher: Combine.AnyPublisher { - get - } - public init(locationManager: CoreLocation.CLLocationManager = .init(), servicesChecker: any OSGeolocationLib.OSGLOCServicesChecker = OSGLOCServicesValidator()) - public func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) - public func startMonitoringLocation() - public func stopMonitoringLocation() - public func requestSingleLocation() - public func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) - public func areLocationServicesEnabled() -> Swift.Bool - @objc deinit -} -extension OSGeolocationLib.OSGLOCManagerWrapper : CoreLocation.CLLocationManagerDelegate { - @objc dynamic public func locationManagerDidChangeAuthorization(_ manager: CoreLocation.CLLocationManager) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didUpdateLocations locations: [CoreLocation.CLLocation]) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: any Swift.Error) -} -public protocol OSGLOCServicesChecker { - func areLocationServicesEnabled() -> Swift.Bool -} -public protocol OSGLOCAuthorisationHandler { - var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { get } - var authorisationStatusPublisher: Combine.Published.Publisher { get } - func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) -} -public enum OSGLOCLocationError : Swift.Error { - case locationUnavailable - case other(_: any Swift.Error) -} -public protocol OSGLOCLocationHandler { - var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { get } - var currentLocationPublisher: Combine.AnyPublisher { get } - func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) -} -public protocol OSGLOCSingleLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func requestSingleLocation() -} -public protocol OSGLOCMonitorLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func startMonitoringLocation() - func stopMonitoringLocation() -} -public struct OSGLOCConfigurationModel { - public init(enableHighAccuracy: Swift.Bool, minimumUpdateDistanceInMeters: Swift.Double? = nil) -} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Hashable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Hashable {} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index b644b5a..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface deleted file mode 100644 index 90158eb..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,142 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSGeolocationLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Combine -import CoreLocation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public enum OSGLOCAuthorisation { - case notDetermined - case restricted - case denied - case authorisedAlways - case authorisedWhenInUse - public static func == (a: OSGeolocationLib.OSGLOCAuthorisation, b: OSGeolocationLib.OSGLOCAuthorisation) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public struct OSGLOCPositionModel : Swift.Equatable { - public var altitude: Swift.Double { - get - } - public var course: Swift.Double { - get - } - public var horizontalAccuracy: Swift.Double { - get - } - public var latitude: Swift.Double { - get - } - public var longitude: Swift.Double { - get - } - public var speed: Swift.Double { - get - } - public var timestamp: Swift.Double { - get - } - public var verticalAccuracy: Swift.Double { - get - } - public static func == (a: OSGeolocationLib.OSGLOCPositionModel, b: OSGeolocationLib.OSGLOCPositionModel) -> Swift.Bool -} -extension OSGeolocationLib.OSGLOCPositionModel { - public static func create(from location: CoreLocation.CLLocation) -> OSGeolocationLib.OSGLOCPositionModel -} -public enum OSGLOCAuthorisationRequestType { - case whenInUse - case always - public static func == (a: OSGeolocationLib.OSGLOCAuthorisationRequestType, b: OSGeolocationLib.OSGLOCAuthorisationRequestType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public typealias OSGLOCService = OSGeolocationLib.OSGLOCAuthorisationHandler & OSGeolocationLib.OSGLOCMonitorLocationHandler & OSGeolocationLib.OSGLOCServicesChecker & OSGeolocationLib.OSGLOCSingleLocationHandler -public struct OSGLOCServicesValidator : OSGeolocationLib.OSGLOCServicesChecker { - public init() - public func areLocationServicesEnabled() -> Swift.Bool -} -@objc public class OSGLOCManagerWrapper : ObjectiveC.NSObject, OSGeolocationLib.OSGLOCService { - @Combine.Published @_projectedValueProperty($authorisationStatus) public var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $authorisationStatus: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var authorisationStatusPublisher: Combine.Published.Publisher { - get - } - @Combine.Published @_projectedValueProperty($currentLocation) public var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $currentLocation: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var currentLocationPublisher: Combine.AnyPublisher { - get - } - public init(locationManager: CoreLocation.CLLocationManager = .init(), servicesChecker: any OSGeolocationLib.OSGLOCServicesChecker = OSGLOCServicesValidator()) - public func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) - public func startMonitoringLocation() - public func stopMonitoringLocation() - public func requestSingleLocation() - public func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) - public func areLocationServicesEnabled() -> Swift.Bool - @objc deinit -} -extension OSGeolocationLib.OSGLOCManagerWrapper : CoreLocation.CLLocationManagerDelegate { - @objc dynamic public func locationManagerDidChangeAuthorization(_ manager: CoreLocation.CLLocationManager) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didUpdateLocations locations: [CoreLocation.CLLocation]) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: any Swift.Error) -} -public protocol OSGLOCServicesChecker { - func areLocationServicesEnabled() -> Swift.Bool -} -public protocol OSGLOCAuthorisationHandler { - var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { get } - var authorisationStatusPublisher: Combine.Published.Publisher { get } - func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) -} -public enum OSGLOCLocationError : Swift.Error { - case locationUnavailable - case other(_: any Swift.Error) -} -public protocol OSGLOCLocationHandler { - var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { get } - var currentLocationPublisher: Combine.AnyPublisher { get } - func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) -} -public protocol OSGLOCSingleLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func requestSingleLocation() -} -public protocol OSGLOCMonitorLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func startMonitoringLocation() - func stopMonitoringLocation() -} -public struct OSGLOCConfigurationModel { - public init(enableHighAccuracy: Swift.Bool, minimumUpdateDistanceInMeters: Swift.Double? = nil) -} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Hashable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Hashable {} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 059e32b..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,2646 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisation", - "printedName": "OSGLOCAuthorisation", - "children": [ - { - "kind": "Var", - "name": "notDetermined", - "printedName": "notDetermined", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO13notDeterminedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO13notDeterminedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "restricted", - "printedName": "restricted", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO10restrictedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO10restrictedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "denied", - "printedName": "denied", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO6deniedyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO6deniedyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "authorisedAlways", - "printedName": "authorisedAlways", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO16authorisedAlwaysyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO16authorisedAlwaysyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "authorisedWhenInUse", - "printedName": "authorisedWhenInUse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisation.Type) -> OSGeolocationLib.OSGLOCAuthorisation", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO19authorisedWhenInUseyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO19authorisedWhenInUseyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivp", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF", - "moduleName": "OSGeolocationLib", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO", - "mangledName": "$s16OSGeolocationLib19OSGLOCAuthorisationO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCPositionModel", - "printedName": "OSGLOCPositionModel", - "children": [ - { - "kind": "Var", - "name": "altitude", - "printedName": "altitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "course", - "printedName": "course", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6courseSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "horizontalAccuracy", - "printedName": "horizontalAccuracy", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "latitude", - "printedName": "latitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "longitude", - "printedName": "longitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "speed", - "printedName": "speed", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV5speedSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "timestamp", - "printedName": "timestamp", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "verticalAccuracy", - "printedName": "verticalAccuracy", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvp", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "HasStorage", - "AccessControl", - "SetterAccess" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "create", - "printedName": "create(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "CLLocation", - "printedName": "CoreLocation.CLLocation", - "usr": "c:objc(cs)CLLocation" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV", - "mangledName": "$s16OSGeolocationLib19OSGLOCPositionModelV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "Var", - "name": "whenInUse", - "printedName": "whenInUse", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisationRequestType.Type) -> OSGeolocationLib.OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9whenInUseyA2CmF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9whenInUseyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "always", - "printedName": "always", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCAuthorisationRequestType.Type) -> OSGeolocationLib.OSGLOCAuthorisationRequestType", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO6alwaysyA2CmF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO6alwaysyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ", - "moduleName": "OSGeolocationLib", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivp", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF", - "moduleName": "OSGeolocationLib", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO", - "mangledName": "$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Import", - "name": "CoreLocation", - "printedName": "CoreLocation", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCServicesValidator", - "printedName": "OSGLOCServicesValidator", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCServicesValidator", - "printedName": "OSGeolocationLib.OSGLOCServicesValidator", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorVACycfc", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorVACycfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib23OSGLOCServicesValidatorV", - "mangledName": "$s16OSGeolocationLib23OSGLOCServicesValidatorV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGLOCManagerWrapper", - "children": [ - { - "kind": "Var", - "name": "authorisationStatus", - "printedName": "authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "ProjectedValueProperty", - "AccessControl", - "Custom" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "$authorisationStatus", - "printedName": "$authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_Gvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "authorisationStatusPublisher", - "printedName": "authorisationStatusPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg", - "moduleName": "OSGeolocationLib", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentLocation", - "printedName": "currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "ProjectedValueProperty", - "AccessControl", - "Custom" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "10.15", - "intro_iOS": "13.0", - "intro_tvOS": "13.0", - "intro_watchOS": "6.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "$currentLocation", - "printedName": "$currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvp", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvg", - "moduleName": "OSGeolocationLib", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published>.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvs", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_Gvs", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM", - "moduleName": "OSGeolocationLib", - "implicit": true, - "intro_Macosx": "11.0", - "intro_iOS": "14.0", - "intro_tvOS": "14.0", - "intro_watchOS": "7.0", - "declAttributes": [ - "Available", - "Available", - "Available", - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentLocationPublisher", - "printedName": "currentLocationPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvp", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvp", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg", - "moduleName": "OSGeolocationLib", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(locationManager:servicesChecker:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGeolocationLib.OSGLOCManagerWrapper", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "hasDefaultArg": true, - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCServicesChecker", - "printedName": "OSGeolocationLib.OSGLOCServicesChecker", - "hasDefaultArg": true, - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "requestAuthorisation", - "printedName": "requestAuthorisation(withType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "startMonitoringLocation", - "printedName": "startMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopMonitoringLocation", - "printedName": "stopMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "requestSingleLocation", - "printedName": "requestSingleLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateConfiguration", - "printedName": "updateConfiguration(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCManagerWrapper", - "printedName": "OSGeolocationLib.OSGLOCManagerWrapper", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper" - } - ], - "declKind": "Constructor", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)init", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfc", - "moduleName": "OSGeolocationLib", - "overriding": true, - "implicit": true, - "objc_name": "init", - "declAttributes": [ - "Dynamic", - "ObjC", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Function", - "name": "locationManagerDidChangeAuthorization", - "printedName": "locationManagerDidChangeAuthorization(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManagerDidChangeAuthorization:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManagerDidChangeAuthorization:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "locationManager", - "printedName": "locationManager(_:didUpdateLocations:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[CoreLocation.CLLocation]", - "children": [ - { - "kind": "TypeNominal", - "name": "CLLocation", - "printedName": "CoreLocation.CLLocation", - "usr": "c:objc(cs)CLLocation" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManager:didUpdateLocations:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManager:didUpdateLocations:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "locationManager", - "printedName": "locationManager(_:didFailWithError:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CLLocationManager", - "printedName": "CoreLocation.CLLocationManager", - "usr": "c:objc(cs)CLLocationManager" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@CM@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper(im)locationManager:didFailWithError:", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptF", - "moduleName": "OSGeolocationLib", - "objc_name": "locationManager:didFailWithError:", - "declAttributes": [ - "Dynamic", - "ObjC", - "AccessControl" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "c:@M@OSGeolocationLib@objc(cs)OSGLOCManagerWrapper", - "mangledName": "$s16OSGeolocationLib20OSGLOCManagerWrapperC", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCAuthorisationHandler", - "printedName": "OSGLOCAuthorisationHandler", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCSingleLocationHandler", - "printedName": "OSGLOCSingleLocationHandler", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP" - }, - { - "kind": "Conformance", - "name": "OSGLOCMonitorLocationHandler", - "printedName": "OSGLOCMonitorLocationHandler", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP" - }, - { - "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": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "Import", - "name": "Combine", - "printedName": "Combine", - "declKind": "Import", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "TypeDecl", - "name": "OSGLOCServicesChecker", - "printedName": "OSGLOCServicesChecker", - "children": [ - { - "kind": "Function", - "name": "areLocationServicesEnabled", - "printedName": "areLocationServicesEnabled()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP26areLocationServicesEnabledSbyF", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP26areLocationServicesEnabledSbyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCServicesChecker>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib21OSGLOCServicesCheckerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCServicesCheckerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCAuthorisationHandler", - "printedName": "OSGLOCAuthorisationHandler", - "children": [ - { - "kind": "Var", - "name": "authorisationStatus", - "printedName": "authorisationStatus", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovp", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisation", - "printedName": "OSGeolocationLib.OSGLOCAuthorisation", - "usr": "s:16OSGeolocationLib19OSGLOCAuthorisationO" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovg", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP19authorisationStatusAA0C0Ovg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "authorisationStatusPublisher", - "printedName": "authorisationStatusPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvp", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Publisher", - "printedName": "Combine.Published.Publisher", - "usr": "s:7Combine9PublishedV9PublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvg", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP28authorisationStatusPublisher7Combine9PublishedV0G0VyAA0C0O_Gvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "requestAuthorisation", - "printedName": "requestAuthorisation(withType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCAuthorisationRequestType", - "printedName": "OSGeolocationLib.OSGLOCAuthorisationRequestType", - "usr": "s:16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP20requestAuthorisation8withTypeyAA0c7RequestH0O_tF", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP20requestAuthorisation8withTypeyAA0c7RequestH0O_tF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCAuthorisationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "mangledName": "$s16OSGeolocationLib26OSGLOCAuthorisationHandlerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCLocationError", - "printedName": "OSGLOCLocationError", - "children": [ - { - "kind": "Var", - "name": "locationUnavailable", - "printedName": "locationUnavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCLocationError.Type) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCLocationError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO19locationUnavailableyA2CmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO19locationUnavailableyA2CmF", - "moduleName": "OSGeolocationLib" - }, - { - "kind": "Var", - "name": "other", - "printedName": "other", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(OSGeolocationLib.OSGLOCLocationError.Type) -> (Swift.Error) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Error) -> OSGeolocationLib.OSGLOCLocationError", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "Swift.Error", - "usr": "s:s5ErrorP" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "OSGeolocationLib.OSGLOCLocationError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO5otheryACs0D0_pcACmF", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO5otheryACs0D0_pcACmF", - "moduleName": "OSGeolocationLib" - } - ], - "declKind": "Enum", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO", - "mangledName": "$s16OSGeolocationLib19OSGLOCLocationErrorO", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "children": [ - { - "kind": "Var", - "name": "currentLocation", - "printedName": "currentLocation", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvp", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "OSGeolocationLib.OSGLOCPositionModel?", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvg", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP15currentLocationAA19OSGLOCPositionModelVSgvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "currentLocationPublisher", - "printedName": "currentLocationPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Var", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvp", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvp", - "moduleName": "OSGeolocationLib", - "protocolReq": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyPublisher", - "printedName": "Combine.AnyPublisher", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCPositionModel", - "printedName": "OSGeolocationLib.OSGLOCPositionModel", - "usr": "s:16OSGeolocationLib19OSGLOCPositionModelV" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCLocationError", - "printedName": "OSGeolocationLib.OSGLOCLocationError", - "usr": "s:16OSGeolocationLib19OSGLOCLocationErrorO" - } - ], - "usr": "s:7Combine12AnyPublisherV" - } - ], - "declKind": "Accessor", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvg", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA0C5ErrorOGvg", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "updateConfiguration", - "printedName": "updateConfiguration(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP19updateConfigurationyyAA24OSGLOCConfigurationModelVF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCSingleLocationHandler", - "printedName": "OSGLOCSingleLocationHandler", - "children": [ - { - "kind": "Function", - "name": "requestSingleLocation", - "printedName": "requestSingleLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP013requestSingleD0yyF", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP013requestSingleD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCSingleLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "mangledName": "$s16OSGeolocationLib27OSGLOCSingleLocationHandlerP", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCMonitorLocationHandler", - "printedName": "OSGLOCMonitorLocationHandler", - "children": [ - { - "kind": "Function", - "name": "startMonitoringLocation", - "printedName": "startMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP015startMonitoringD0yyF", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP015startMonitoringD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCMonitorLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopMonitoringLocation", - "printedName": "stopMonitoringLocation()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP014stopMonitoringD0yyF", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP014stopMonitoringD0yyF", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 where τ_0_0 : OSGeolocationLib.OSGLOCMonitorLocationHandler>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "s:16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "mangledName": "$s16OSGeolocationLib28OSGLOCMonitorLocationHandlerP", - "moduleName": "OSGeolocationLib", - "genericSig": "<τ_0_0 : OSGeolocationLib.OSGLOCLocationHandler>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "OSGLOCLocationHandler", - "printedName": "OSGLOCLocationHandler", - "usr": "s:16OSGeolocationLib21OSGLOCLocationHandlerP", - "mangledName": "$s16OSGeolocationLib21OSGLOCLocationHandlerP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGLOCConfigurationModel", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(enableHighAccuracy:minimumUpdateDistanceInMeters:)", - "children": [ - { - "kind": "TypeNominal", - "name": "OSGLOCConfigurationModel", - "printedName": "OSGeolocationLib.OSGLOCConfigurationModel", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.Double?", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfc", - "mangledName": "$s16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfc", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:16OSGeolocationLib24OSGLOCConfigurationModelV", - "mangledName": "$s16OSGeolocationLib24OSGLOCConfigurationModelV", - "moduleName": "OSGeolocationLib", - "declAttributes": [ - "AccessControl" - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/outsystems-geolocation\/packages\/ios-lib\/OSGeolocationLib\/OSGLOCPositionModel.swift", - "kind": "IntegerLiteral", - "offset": 1581, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/rcj\/Documents\/Projects\/outsystems-geolocation\/packages\/ios-lib\/OSGeolocationLib\/Publishers\/OSGLOCManagerWrapper.swift", - "kind": "StringLiteral", - "offset": 396, - "length": 20, - "value": "\"OSGeolocationLib.OSGLOCManagerWrapper\"" - } - ] -} \ No newline at end of file diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface deleted file mode 100644 index 3f33190..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ /dev/null @@ -1,142 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// 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 OSGeolocationLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Combine -import CoreLocation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public enum OSGLOCAuthorisation { - case notDetermined - case restricted - case denied - case authorisedAlways - case authorisedWhenInUse - public static func == (a: OSGeolocationLib.OSGLOCAuthorisation, b: OSGeolocationLib.OSGLOCAuthorisation) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public struct OSGLOCPositionModel : Swift.Equatable { - public var altitude: Swift.Double { - get - } - public var course: Swift.Double { - get - } - public var horizontalAccuracy: Swift.Double { - get - } - public var latitude: Swift.Double { - get - } - public var longitude: Swift.Double { - get - } - public var speed: Swift.Double { - get - } - public var timestamp: Swift.Double { - get - } - public var verticalAccuracy: Swift.Double { - get - } - public static func == (a: OSGeolocationLib.OSGLOCPositionModel, b: OSGeolocationLib.OSGLOCPositionModel) -> Swift.Bool -} -extension OSGeolocationLib.OSGLOCPositionModel { - public static func create(from location: CoreLocation.CLLocation) -> OSGeolocationLib.OSGLOCPositionModel -} -public enum OSGLOCAuthorisationRequestType { - case whenInUse - case always - public static func == (a: OSGeolocationLib.OSGLOCAuthorisationRequestType, b: OSGeolocationLib.OSGLOCAuthorisationRequestType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public typealias OSGLOCService = OSGeolocationLib.OSGLOCAuthorisationHandler & OSGeolocationLib.OSGLOCMonitorLocationHandler & OSGeolocationLib.OSGLOCServicesChecker & OSGeolocationLib.OSGLOCSingleLocationHandler -public struct OSGLOCServicesValidator : OSGeolocationLib.OSGLOCServicesChecker { - public init() - public func areLocationServicesEnabled() -> Swift.Bool -} -@objc public class OSGLOCManagerWrapper : ObjectiveC.NSObject, OSGeolocationLib.OSGLOCService { - @Combine.Published @_projectedValueProperty($authorisationStatus) public var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $authorisationStatus: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var authorisationStatusPublisher: Combine.Published.Publisher { - get - } - @Combine.Published @_projectedValueProperty($currentLocation) public var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $currentLocation: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var currentLocationPublisher: Combine.AnyPublisher { - get - } - public init(locationManager: CoreLocation.CLLocationManager = .init(), servicesChecker: any OSGeolocationLib.OSGLOCServicesChecker = OSGLOCServicesValidator()) - public func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) - public func startMonitoringLocation() - public func stopMonitoringLocation() - public func requestSingleLocation() - public func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) - public func areLocationServicesEnabled() -> Swift.Bool - @objc deinit -} -extension OSGeolocationLib.OSGLOCManagerWrapper : CoreLocation.CLLocationManagerDelegate { - @objc dynamic public func locationManagerDidChangeAuthorization(_ manager: CoreLocation.CLLocationManager) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didUpdateLocations locations: [CoreLocation.CLLocation]) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: any Swift.Error) -} -public protocol OSGLOCServicesChecker { - func areLocationServicesEnabled() -> Swift.Bool -} -public protocol OSGLOCAuthorisationHandler { - var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { get } - var authorisationStatusPublisher: Combine.Published.Publisher { get } - func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) -} -public enum OSGLOCLocationError : Swift.Error { - case locationUnavailable - case other(_: any Swift.Error) -} -public protocol OSGLOCLocationHandler { - var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { get } - var currentLocationPublisher: Combine.AnyPublisher { get } - func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) -} -public protocol OSGLOCSingleLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func requestSingleLocation() -} -public protocol OSGLOCMonitorLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func startMonitoringLocation() - func stopMonitoringLocation() -} -public struct OSGLOCConfigurationModel { - public init(enableHighAccuracy: Swift.Bool, minimumUpdateDistanceInMeters: Swift.Double? = nil) -} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Hashable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Hashable {} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 028541a..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface deleted file mode 100644 index 3f33190..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,142 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) -// 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 OSGeolocationLib -// swift-module-flags-ignorable: -enable-bare-slash-regex -import Combine -import CoreLocation -import Swift -import _Concurrency -import _StringProcessing -import _SwiftConcurrencyShims -public enum OSGLOCAuthorisation { - case notDetermined - case restricted - case denied - case authorisedAlways - case authorisedWhenInUse - public static func == (a: OSGeolocationLib.OSGLOCAuthorisation, b: OSGeolocationLib.OSGLOCAuthorisation) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public struct OSGLOCPositionModel : Swift.Equatable { - public var altitude: Swift.Double { - get - } - public var course: Swift.Double { - get - } - public var horizontalAccuracy: Swift.Double { - get - } - public var latitude: Swift.Double { - get - } - public var longitude: Swift.Double { - get - } - public var speed: Swift.Double { - get - } - public var timestamp: Swift.Double { - get - } - public var verticalAccuracy: Swift.Double { - get - } - public static func == (a: OSGeolocationLib.OSGLOCPositionModel, b: OSGeolocationLib.OSGLOCPositionModel) -> Swift.Bool -} -extension OSGeolocationLib.OSGLOCPositionModel { - public static func create(from location: CoreLocation.CLLocation) -> OSGeolocationLib.OSGLOCPositionModel -} -public enum OSGLOCAuthorisationRequestType { - case whenInUse - case always - public static func == (a: OSGeolocationLib.OSGLOCAuthorisationRequestType, b: OSGeolocationLib.OSGLOCAuthorisationRequestType) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -public typealias OSGLOCService = OSGeolocationLib.OSGLOCAuthorisationHandler & OSGeolocationLib.OSGLOCMonitorLocationHandler & OSGeolocationLib.OSGLOCServicesChecker & OSGeolocationLib.OSGLOCSingleLocationHandler -public struct OSGLOCServicesValidator : OSGeolocationLib.OSGLOCServicesChecker { - public init() - public func areLocationServicesEnabled() -> Swift.Bool -} -@objc public class OSGLOCManagerWrapper : ObjectiveC.NSObject, OSGeolocationLib.OSGLOCService { - @Combine.Published @_projectedValueProperty($authorisationStatus) public var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $authorisationStatus: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var authorisationStatusPublisher: Combine.Published.Publisher { - get - } - @Combine.Published @_projectedValueProperty($currentLocation) public var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { - get - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - set - @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) - _modify - } - public var $currentLocation: Combine.Published.Publisher { - get - @available(iOS 14.0, tvOS 14.0, watchOS 7.0, macOS 11.0, *) - set - } - public var currentLocationPublisher: Combine.AnyPublisher { - get - } - public init(locationManager: CoreLocation.CLLocationManager = .init(), servicesChecker: any OSGeolocationLib.OSGLOCServicesChecker = OSGLOCServicesValidator()) - public func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) - public func startMonitoringLocation() - public func stopMonitoringLocation() - public func requestSingleLocation() - public func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) - public func areLocationServicesEnabled() -> Swift.Bool - @objc deinit -} -extension OSGeolocationLib.OSGLOCManagerWrapper : CoreLocation.CLLocationManagerDelegate { - @objc dynamic public func locationManagerDidChangeAuthorization(_ manager: CoreLocation.CLLocationManager) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didUpdateLocations locations: [CoreLocation.CLLocation]) - @objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didFailWithError error: any Swift.Error) -} -public protocol OSGLOCServicesChecker { - func areLocationServicesEnabled() -> Swift.Bool -} -public protocol OSGLOCAuthorisationHandler { - var authorisationStatus: OSGeolocationLib.OSGLOCAuthorisation { get } - var authorisationStatusPublisher: Combine.Published.Publisher { get } - func requestAuthorisation(withType authorisationType: OSGeolocationLib.OSGLOCAuthorisationRequestType) -} -public enum OSGLOCLocationError : Swift.Error { - case locationUnavailable - case other(_: any Swift.Error) -} -public protocol OSGLOCLocationHandler { - var currentLocation: OSGeolocationLib.OSGLOCPositionModel? { get } - var currentLocationPublisher: Combine.AnyPublisher { get } - func updateConfiguration(_ configuration: OSGeolocationLib.OSGLOCConfigurationModel) -} -public protocol OSGLOCSingleLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func requestSingleLocation() -} -public protocol OSGLOCMonitorLocationHandler : OSGeolocationLib.OSGLOCLocationHandler { - func startMonitoringLocation() - func stopMonitoringLocation() -} -public struct OSGLOCConfigurationModel { - public init(enableHighAccuracy: Swift.Bool, minimumUpdateDistanceInMeters: Swift.Double? = nil) -} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisation : Swift.Hashable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Equatable {} -extension OSGeolocationLib.OSGLOCAuthorisationRequestType : Swift.Hashable {} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/module.modulemap b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/module.modulemap deleted file mode 100644 index 18e5938..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/Modules/module.modulemap +++ /dev/null @@ -1,4 +0,0 @@ -framework module OSGeolocationLib { - header "OSGeolocationLib-Swift.h" - requires objc -} diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/OSGeolocationLib b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/OSGeolocationLib deleted file mode 100755 index a6e9d05..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/OSGeolocationLib and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/_CodeSignature/CodeResources b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index 27ed432..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/OSGeolocationLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,234 +0,0 @@ - - - - - files - - Headers/OSGeolocationLib-Swift.h - - cGNTrw6f9+DjoTLMvaC6loAGfKM= - - Info.plist - - oEkhVgj7jJMEhl5E3jpH1VaqH5Y= - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - 9p1RAJdhALCDooi/ypdijDUAhQw= - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - FheTnVJNHOVtFe2Zw7Q9DqsOorM= - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - kQGj2Yg0I6zpCKtRBulsWlXUplQ= - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - FheTnVJNHOVtFe2Zw7Q9DqsOorM= - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - PaFCz0m3mkDeWBOWuBtbfJjGfuc= - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - 9p1RAJdhALCDooi/ypdijDUAhQw= - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - UDLpRvMcNr5FFey76/6/NBci8jI= - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - JBzkFV3lxZ3MdX2vGY8UZFDLMMQ= - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - UDLpRvMcNr5FFey76/6/NBci8jI= - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - 7AnBHAHB9F3Br3dq68FjifHUojk= - - Modules/module.modulemap - - Sopxtgo2/glLvhKgFq4fSp24Mp0= - - - files2 - - Headers/OSGeolocationLib-Swift.h - - hash2 - - OZb2Z420Tsymt91rNFm1yfQTnvG3SYCZJGdnxK1wR8A= - - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.abi.json - - hash2 - - tsm5CE5mrKzZCQzeVfPyO0MqkIrj+LBECevGfSG/aVQ= - - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - - hash2 - - OT/zLUWiCGCCqlXmtSPsfvpn3J3UILoDawYbfODC6mo= - - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - - hash2 - - 6HHIWxEB9ptDQ4+rqFLbYZethWnOaTH5A+OJ/jaHBbk= - - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - - hash2 - - OT/zLUWiCGCCqlXmtSPsfvpn3J3UILoDawYbfODC6mo= - - - Modules/OSGeolocationLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - - hash2 - - pomrE2tOkciwvAqciFygjipyXwBEzLprR/3esKj1OUE= - - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.abi.json - - hash2 - - tsm5CE5mrKzZCQzeVfPyO0MqkIrj+LBECevGfSG/aVQ= - - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - - hash2 - - 54ZTD3IQFwH9p3H7IR4Kaz5Z4dv8iNQ5xsL8blGv7Lo= - - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - - hash2 - - EkED0ihnDbjM9IPRI8lx2AXWNEyuiiRL4jYuuuRYpNw= - - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - - hash2 - - 54ZTD3IQFwH9p3H7IR4Kaz5Z4dv8iNQ5xsL8blGv7Lo= - - - Modules/OSGeolocationLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - - hash2 - - G9eLOxtIo05S1u9/fjmjGywrfyLBm7yXSZ+lJvYNMrU= - - - Modules/module.modulemap - - hash2 - - 15n3SU8+rfGN0mcmbT9X6E7bhOeIjvqKpB8GLrXS2J0= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Info.plist b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a8c15a5..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.outsystems.rd.geolocation.GeolocationLib - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0.0 - CFBundleVersion - 1 - - diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/DWARF/OSGeolocationLib b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/DWARF/OSGeolocationLib deleted file mode 100644 index 4d09950..0000000 Binary files a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/DWARF/OSGeolocationLib and /dev/null differ diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSGeolocationLib.yml b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSGeolocationLib.yml deleted file mode 100644 index e1b3c7a..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/aarch64/OSGeolocationLib.yml +++ /dev/null @@ -1,150 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/rcj/Library/Developer/Xcode/DerivedData/OSGeolocationLib-fluwbyhqwgjxjxdrwiflfluzracc/Build/Intermediates.noindex/ArchiveIntermediates/OSGeolocationLib/InstallationBuildProductsLocation/Library/Frameworks/OSGeolocationLib.framework/OSGeolocationLib' -relocations: - - { offsetInCU: 0x34, offset: 0x2F77B, size: 0x8, addend: 0x0, symName: _OSGeolocationLibVersionString, symObjAddr: 0x0, symBinAddr: 0x62C0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x2F7B0, size: 0x8, addend: 0x0, symName: _OSGeolocationLibVersionNumber, symObjAddr: 0x40, symBinAddr: 0x6300, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0x2F7ED, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1D3C, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x2F811, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1D3C, symSize: 0x14 } - - { offsetInCU: 0x7E, offset: 0x2F844, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF', symObjAddr: 0x14, symBinAddr: 0x1D50, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x2F8DA, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg', symObjAddr: 0x3C, symBinAddr: 0x1D78, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x2F9D4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x80, symBinAddr: 0x1DBC, symSize: 0x14 } - - { offsetInCU: 0x22E, offset: 0x2F9F4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x80, symBinAddr: 0x1DBC, symSize: 0x14 } - - { offsetInCU: 0x26E, offset: 0x2FA34, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH9hashValueSivgTW', symObjAddr: 0x94, symBinAddr: 0x1DD0, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x2FB17, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xD8, symBinAddr: 0x1E14, symSize: 0x28 } - - { offsetInCU: 0x3DA, offset: 0x2FBA0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASQWb', symObjAddr: 0x140, symBinAddr: 0x1E7C, symSize: 0x4 } - - { offsetInCU: 0x3EE, offset: 0x2FBB4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOACSQAAWl', symObjAddr: 0x144, symBinAddr: 0x1E80, symSize: 0x44 } - - { offsetInCU: 0x402, offset: 0x2FBC8, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x188, symBinAddr: 0x1EC4, symSize: 0xC } - - { offsetInCU: 0x416, offset: 0x2FBDC, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x194, symBinAddr: 0x1ED0, symSize: 0x4 } - - { offsetInCU: 0x42A, offset: 0x2FBF0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwet', symObjAddr: 0x198, symBinAddr: 0x1ED4, symSize: 0x90 } - - { offsetInCU: 0x43E, offset: 0x2FC04, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwst', symObjAddr: 0x228, symBinAddr: 0x1F64, symSize: 0xBC } - - { offsetInCU: 0x452, offset: 0x2FC18, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwug', symObjAddr: 0x2E4, symBinAddr: 0x2020, symSize: 0x8 } - - { offsetInCU: 0x466, offset: 0x2FC2C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwup', symObjAddr: 0x2EC, symBinAddr: 0x2028, symSize: 0x4 } - - { offsetInCU: 0x47A, offset: 0x2FC40, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwui', symObjAddr: 0x2F0, symBinAddr: 0x202C, symSize: 0x8 } - - { offsetInCU: 0x48E, offset: 0x2FC54, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOMa', symObjAddr: 0x2F8, symBinAddr: 0x2034, symSize: 0x10 } - - { offsetInCU: 0x508, offset: 0x2FCCE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x100, symBinAddr: 0x1E3C, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x2FE10, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg', symObjAddr: 0x0, symBinAddr: 0x2044, symSize: 0x8 } - - { offsetInCU: 0x4A, offset: 0x2FE2F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg', symObjAddr: 0x0, symBinAddr: 0x2044, symSize: 0x8 } - - { offsetInCU: 0x68, offset: 0x2FE4D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg', symObjAddr: 0x8, symBinAddr: 0x204C, symSize: 0x8 } - - { offsetInCU: 0x86, offset: 0x2FE6B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg', symObjAddr: 0x10, symBinAddr: 0x2054, symSize: 0x8 } - - { offsetInCU: 0xA4, offset: 0x2FE89, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg', symObjAddr: 0x18, symBinAddr: 0x205C, symSize: 0x8 } - - { offsetInCU: 0xC2, offset: 0x2FEA7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg', symObjAddr: 0x20, symBinAddr: 0x2064, symSize: 0x8 } - - { offsetInCU: 0xE0, offset: 0x2FEC5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg', symObjAddr: 0x28, symBinAddr: 0x206C, symSize: 0x8 } - - { offsetInCU: 0xFE, offset: 0x2FEE3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg', symObjAddr: 0x30, symBinAddr: 0x2074, symSize: 0x8 } - - { offsetInCU: 0x11C, offset: 0x2FF01, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg', symObjAddr: 0x38, symBinAddr: 0x207C, symSize: 0x8 } - - { offsetInCU: 0x13A, offset: 0x2FF1F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ', symObjAddr: 0x40, symBinAddr: 0x2084, symSize: 0x4 } - - { offsetInCU: 0x15D, offset: 0x2FF42, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x44, symBinAddr: 0x2088, symSize: 0x4 } - - { offsetInCU: 0x17D, offset: 0x2FF62, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x44, symBinAddr: 0x2088, symSize: 0x4 } - - { offsetInCU: 0x18E, offset: 0x2FF73, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZTf4nnd_n', symObjAddr: 0x1B8, symBinAddr: 0x21FC, symSize: 0x9C } - - { offsetInCU: 0x1C9, offset: 0x2FFAE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ', symObjAddr: 0x48, symBinAddr: 0x208C, symSize: 0x170 } - - { offsetInCU: 0x227, offset: 0x3000C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwCP', symObjAddr: 0x254, symBinAddr: 0x2298, symSize: 0x30 } - - { offsetInCU: 0x23B, offset: 0x30020, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x288, symBinAddr: 0x22C8, symSize: 0x14 } - - { offsetInCU: 0x24F, offset: 0x30034, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwet', symObjAddr: 0x29C, symBinAddr: 0x22DC, symSize: 0x20 } - - { offsetInCU: 0x263, offset: 0x30048, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwst', symObjAddr: 0x2BC, symBinAddr: 0x22FC, symSize: 0x3C } - - { offsetInCU: 0x277, offset: 0x3005C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVMa', symObjAddr: 0x2F8, symBinAddr: 0x2338, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x3013B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_', symObjAddr: 0x0, symBinAddr: 0x2348, symSize: 0xC } - - { offsetInCU: 0x4B, offset: 0x3015F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_', symObjAddr: 0x0, symBinAddr: 0x2348, symSize: 0xC } - - { offsetInCU: 0x72, offset: 0x30186, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu1_yycfu2_', symObjAddr: 0xC, symBinAddr: 0x2354, symSize: 0xC } - - { offsetInCU: 0x99, offset: 0x301AD, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x18, symBinAddr: 0x2360, symSize: 0x18 } - - { offsetInCU: 0xCC, offset: 0x301E0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x30, symBinAddr: 0x2378, symSize: 0x28 } - - { offsetInCU: 0x162, offset: 0x30276, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg', symObjAddr: 0x58, symBinAddr: 0x23A0, symSize: 0x44 } - - { offsetInCU: 0x25C, offset: 0x30370, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x9C, symBinAddr: 0x23E4, symSize: 0x18 } - - { offsetInCU: 0x27C, offset: 0x30390, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x9C, symBinAddr: 0x23E4, symSize: 0x18 } - - { offsetInCU: 0x2BC, offset: 0x303D0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH9hashValueSivgTW', symObjAddr: 0xB4, symBinAddr: 0x23FC, symSize: 0x44 } - - { offsetInCU: 0x39F, offset: 0x304B3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xF8, symBinAddr: 0x2440, symSize: 0x28 } - - { offsetInCU: 0x428, offset: 0x3053C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASQWb', symObjAddr: 0x160, symBinAddr: 0x24A8, symSize: 0x4 } - - { offsetInCU: 0x43C, offset: 0x30550, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOACSQAAWl', symObjAddr: 0x164, symBinAddr: 0x24AC, symSize: 0x44 } - - { offsetInCU: 0x450, offset: 0x30564, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwet', symObjAddr: 0x1B8, symBinAddr: 0x24F0, symSize: 0x90 } - - { offsetInCU: 0x464, offset: 0x30578, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwst', symObjAddr: 0x248, symBinAddr: 0x2580, symSize: 0xBC } - - { offsetInCU: 0x478, offset: 0x3058C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwug', symObjAddr: 0x304, symBinAddr: 0x263C, symSize: 0x8 } - - { offsetInCU: 0x48C, offset: 0x305A0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwup', symObjAddr: 0x30C, symBinAddr: 0x2644, symSize: 0x4 } - - { offsetInCU: 0x4A0, offset: 0x305B4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwui', symObjAddr: 0x310, symBinAddr: 0x2648, symSize: 0xC } - - { offsetInCU: 0x4B4, offset: 0x305C8, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOMa', symObjAddr: 0x31C, symBinAddr: 0x2654, symSize: 0x10 } - - { offsetInCU: 0x512, offset: 0x30626, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x120, symBinAddr: 0x2468, symSize: 0x40 } - - { offsetInCU: 0x4A, offset: 0x30782, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVACycfC', symObjAddr: 0x0, symBinAddr: 0x2664, symSize: 0x4 } - - { offsetInCU: 0x68, offset: 0x307A0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF', symObjAddr: 0x4, symBinAddr: 0x2668, symSize: 0x28 } - - { offsetInCU: 0x8D, offset: 0x307C5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVAA0C7CheckerA2aDP26areLocationServicesEnabledSbyFTW', symObjAddr: 0x2C, symBinAddr: 0x2690, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x3084C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg', symObjAddr: 0x140, symBinAddr: 0x27A4, symSize: 0x64 } - - { offsetInCU: 0x133, offset: 0x3086B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs', symObjAddr: 0x1AC, symBinAddr: 0x2810, symSize: 0x6C } - - { offsetInCU: 0x15C, offset: 0x30894, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM', symObjAddr: 0x218, symBinAddr: 0x287C, symSize: 0x78 } - - { offsetInCU: 0x1D3, offset: 0x3090B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM', symObjAddr: 0x304, symBinAddr: 0x2968, symSize: 0xC8 } - - { offsetInCU: 0x22D, offset: 0x30965, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg', symObjAddr: 0x3D0, symBinAddr: 0x2A34, symSize: 0x60 } - - { offsetInCU: 0x2B4, offset: 0x309EC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg', symObjAddr: 0x568, symBinAddr: 0x2BCC, symSize: 0x64 } - - { offsetInCU: 0x2D3, offset: 0x30A0B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs', symObjAddr: 0x5D4, symBinAddr: 0x2C38, symSize: 0xA8 } - - { offsetInCU: 0x2FC, offset: 0x30A34, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM', symObjAddr: 0x67C, symBinAddr: 0x2CE0, symSize: 0x78 } - - { offsetInCU: 0x373, offset: 0x30AAB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM', symObjAddr: 0xA04, symBinAddr: 0x3068, symSize: 0xC8 } - - { offsetInCU: 0x3CD, offset: 0x30B05, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg', symObjAddr: 0xBFC, symBinAddr: 0x3260, symSize: 0x280 } - - { offsetInCU: 0x41B, offset: 0x30B53, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvgA2ISgKcfU_', symObjAddr: 0xEC0, symBinAddr: 0x3524, symSize: 0x68 } - - { offsetInCU: 0x45F, offset: 0x30B97, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvgAKs0M0_pcfU0_', symObjAddr: 0xF28, symBinAddr: 0x358C, symSize: 0x78 } - - { offsetInCU: 0x48B, offset: 0x30BC3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfC', symObjAddr: 0x1024, symBinAddr: 0x3688, symSize: 0x40 } - - { offsetInCU: 0x4A9, offset: 0x30BE1, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc', symObjAddr: 0x1064, symBinAddr: 0x36C8, symSize: 0x1B4 } - - { offsetInCU: 0x594, offset: 0x30CCC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF', symObjAddr: 0x12B8, symBinAddr: 0x391C, symSize: 0x80 } - - { offsetInCU: 0x5F4, offset: 0x30D2C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF', symObjAddr: 0x136C, symBinAddr: 0x39D0, symSize: 0x18 } - - { offsetInCU: 0x611, offset: 0x30D49, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF', symObjAddr: 0x1384, symBinAddr: 0x39E8, symSize: 0x18 } - - { offsetInCU: 0x62E, offset: 0x30D66, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF', symObjAddr: 0x139C, symBinAddr: 0x3A00, symSize: 0x18 } - - { offsetInCU: 0x64B, offset: 0x30D83, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF', symObjAddr: 0x13B4, symBinAddr: 0x3A18, symSize: 0xAC } - - { offsetInCU: 0x6D1, offset: 0x30E09, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF', symObjAddr: 0x1460, symBinAddr: 0x3AC4, symSize: 0x50 } - - { offsetInCU: 0x6F0, offset: 0x30E28, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfC', symObjAddr: 0x14D4, symBinAddr: 0x3B38, symSize: 0x20 } - - { offsetInCU: 0x70E, offset: 0x30E46, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfc', symObjAddr: 0x14F4, symBinAddr: 0x3B58, symSize: 0x2C } - - { offsetInCU: 0x771, offset: 0x30EA9, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfcTo', symObjAddr: 0x1520, symBinAddr: 0x3B84, symSize: 0x2C } - - { offsetInCU: 0x7D8, offset: 0x30F10, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCfD', symObjAddr: 0x154C, symBinAddr: 0x3BB0, symSize: 0x34 } - - { offsetInCU: 0x823, offset: 0x30F5B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCServicesCheckerA2aDP26areLocationServicesEnabledSbyFTW', symObjAddr: 0x1610, symBinAddr: 0x3C74, symSize: 0x54 } - - { offsetInCU: 0x855, offset: 0x30F8D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP19authorisationStatusAA0E0OvgTW', symObjAddr: 0x1664, symBinAddr: 0x3CC8, symSize: 0x68 } - - { offsetInCU: 0x8A5, offset: 0x30FDD, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP28authorisationStatusPublisher7Combine9PublishedV0I0VyAA0E0O_GvgTW', symObjAddr: 0x16CC, symBinAddr: 0x3D30, symSize: 0x64 } - - { offsetInCU: 0x917, offset: 0x3104F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP20requestAuthorisation8withTypeyAA0e7RequestJ0O_tFTW', symObjAddr: 0x1730, symBinAddr: 0x3D94, symSize: 0x84 } - - { offsetInCU: 0x9A9, offset: 0x310E1, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA27OSGLOCSingleLocationHandlerA2aDP013requestSingleF0yyFTW', symObjAddr: 0x17B4, symBinAddr: 0x3E18, symSize: 0x1C } - - { offsetInCU: 0x9F9, offset: 0x31131, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA28OSGLOCMonitorLocationHandlerA2aDP015startMonitoringF0yyFTW', symObjAddr: 0x17D0, symBinAddr: 0x3E34, symSize: 0x1C } - - { offsetInCU: 0xA49, offset: 0x31181, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA28OSGLOCMonitorLocationHandlerA2aDP014stopMonitoringF0yyFTW', symObjAddr: 0x17EC, symBinAddr: 0x3E50, symSize: 0x1C } - - { offsetInCU: 0xA7B, offset: 0x311B3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP15currentLocationAA19OSGLOCPositionModelVSgvgTW', symObjAddr: 0x1808, symBinAddr: 0x3E6C, symSize: 0x68 } - - { offsetInCU: 0xAAD, offset: 0x311E5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP24currentLocationPublisher7Combine03AnyI0VyAA19OSGLOCPositionModelVAA0E5ErrorOGvgTW', symObjAddr: 0x1870, symBinAddr: 0x3ED4, symSize: 0x20 } - - { offsetInCU: 0xAE7, offset: 0x3121F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP19updateConfigurationyyAA24OSGLOCConfigurationModelVFTW', symObjAddr: 0x1890, symBinAddr: 0x3EF4, symSize: 0xB0 } - - { offsetInCU: 0xB6F, offset: 0x312A7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvpACTK', symObjAddr: 0x54, symBinAddr: 0x26B8, symSize: 0x7C } - - { offsetInCU: 0xB9C, offset: 0x312D4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvpACTk', symObjAddr: 0xD0, symBinAddr: 0x2734, symSize: 0x70 } - - { offsetInCU: 0xBDA, offset: 0x31312, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x2A8, symBinAddr: 0x290C, symSize: 0x40 } - - { offsetInCU: 0xBEE, offset: 0x31326, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvpACTK', symObjAddr: 0x430, symBinAddr: 0x2A94, symSize: 0x8C } - - { offsetInCU: 0xC27, offset: 0x3135F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvpACTk', symObjAddr: 0x4BC, symBinAddr: 0x2B20, symSize: 0xAC } - - { offsetInCU: 0xC67, offset: 0x3139F, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0xE7C, symBinAddr: 0x34E0, symSize: 0x44 } - - { offsetInCU: 0xC7B, offset: 0x313B3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOACs0D0AAWl', symObjAddr: 0xFA0, symBinAddr: 0x3604, symSize: 0x44 } - - { offsetInCU: 0xCE5, offset: 0x3141D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib21OSGLOCServicesChecker_pWOc', symObjAddr: 0x1218, symBinAddr: 0x387C, symSize: 0x44 } - - { offsetInCU: 0xCF9, offset: 0x31431, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMa', symObjAddr: 0x125C, symBinAddr: 0x38C0, symSize: 0x3C } - - { offsetInCU: 0xD0D, offset: 0x31445, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x1298, symBinAddr: 0x38FC, symSize: 0x20 } - - { offsetInCU: 0xD76, offset: 0x314AE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu1_yycfu2_TA', symObjAddr: 0x135C, symBinAddr: 0x39C0, symSize: 0x8 } - - { offsetInCU: 0xD8A, offset: 0x314C2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_TA', symObjAddr: 0x1364, symBinAddr: 0x39C8, symSize: 0x8 } - - { offsetInCU: 0xD9E, offset: 0x314D6, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x14B0, symBinAddr: 0x3B14, symSize: 0x24 } - - { offsetInCU: 0xDC8, offset: 0x31500, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCfETo', symObjAddr: 0x1580, symBinAddr: 0x3BE4, symSize: 0x90 } - - { offsetInCU: 0xDF7, offset: 0x3152F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CF', symObjAddr: 0x1940, symBinAddr: 0x3FA4, symSize: 0x7C } - - { offsetInCU: 0xE9A, offset: 0x315D2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CFTo', symObjAddr: 0x19BC, symBinAddr: 0x4020, symSize: 0x50 } - - { offsetInCU: 0xEB6, offset: 0x315EE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtF', symObjAddr: 0x1A0C, symBinAddr: 0x4070, symSize: 0x8 } - - { offsetInCU: 0xED9, offset: 0x31611, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtFTo', symObjAddr: 0x1A14, symBinAddr: 0x4078, symSize: 0x84 } - - { offsetInCU: 0xF0B, offset: 0x31643, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptF', symObjAddr: 0x1A98, symBinAddr: 0x40FC, symSize: 0x78 } - - { offsetInCU: 0xF94, offset: 0x316CC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptFTo', symObjAddr: 0x1B10, symBinAddr: 0x4174, symSize: 0x7C } - - { offsetInCU: 0x10FF, offset: 0x31837, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtFTf4dnn_n', symObjAddr: 0x1D8C, symBinAddr: 0x43F0, symSize: 0x2A0 } - - { offsetInCU: 0x132C, offset: 0x31A64, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVMa', symObjAddr: 0x20CC, symBinAddr: 0x4730, symSize: 0x10 } - - { offsetInCU: 0x1340, offset: 0x31A78, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMU', symObjAddr: 0x20DC, symBinAddr: 0x4740, symSize: 0x8 } - - { offsetInCU: 0x1354, offset: 0x31A8C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMr', symObjAddr: 0x20E4, symBinAddr: 0x4748, symSize: 0xA0 } - - { offsetInCU: 0x1368, offset: 0x31AA0, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy16OSGeolocationLib19OSGLOCAuthorisationOGMa', symObjAddr: 0x23C8, symBinAddr: 0x4A2C, symSize: 0x54 } - - { offsetInCU: 0x137C, offset: 0x31AB4, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy16OSGeolocationLib19OSGLOCPositionModelVSgGMa', symObjAddr: 0x241C, symBinAddr: 0x4A80, symSize: 0x58 } - - { offsetInCU: 0x1390, offset: 0x31AC8, size: 0x8, addend: 0x0, symName: '_$sSo10CLLocationCMa', symObjAddr: 0x2474, symBinAddr: 0x4AD8, symSize: 0x3C } - - { offsetInCU: 0x143F, offset: 0x31B77, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo10CLLocationC_Tg5', symObjAddr: 0x1B8C, symBinAddr: 0x41F0, symSize: 0x200 } - - { offsetInCU: 0x4A, offset: 0x31DB8, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfC', symObjAddr: 0x10, symBinAddr: 0x4B30, symSize: 0x14 } - - { offsetInCU: 0x86, offset: 0x31DF4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwCP', symObjAddr: 0x44, symBinAddr: 0x4B64, symSize: 0x30 } - - { offsetInCU: 0x9A, offset: 0x31E08, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwxx', symObjAddr: 0x74, symBinAddr: 0x4B94, symSize: 0x8 } - - { offsetInCU: 0xAE, offset: 0x31E1C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwcp', symObjAddr: 0x7C, symBinAddr: 0x4B9C, symSize: 0x30 } - - { offsetInCU: 0xC2, offset: 0x31E30, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwca', symObjAddr: 0xAC, symBinAddr: 0x4BCC, symSize: 0x38 } - - { offsetInCU: 0xD6, offset: 0x31E44, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0xE4, symBinAddr: 0x4C04, symSize: 0xC } - - { offsetInCU: 0xEA, offset: 0x31E58, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwta', symObjAddr: 0xF0, symBinAddr: 0x4C10, symSize: 0x30 } - - { offsetInCU: 0xFE, offset: 0x31E6C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwet', symObjAddr: 0x120, symBinAddr: 0x4C40, symSize: 0x50 } - - { offsetInCU: 0x112, offset: 0x31E80, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwst', symObjAddr: 0x170, symBinAddr: 0x4C90, symSize: 0x54 } - - { offsetInCU: 0x126, offset: 0x31E94, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwug', symObjAddr: 0x1C4, symBinAddr: 0x4CE4, symSize: 0x18 } - - { offsetInCU: 0x13A, offset: 0x31EA8, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwup', symObjAddr: 0x1DC, symBinAddr: 0x4CFC, symSize: 0x4 } - - { offsetInCU: 0x14E, offset: 0x31EBC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwui', symObjAddr: 0x1E0, symBinAddr: 0x4D00, symSize: 0x20 } - - { offsetInCU: 0x162, offset: 0x31ED0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOMa', symObjAddr: 0x200, symBinAddr: 0x4D20, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x31EE4, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x238, symBinAddr: 0x4D58, symSize: 0x14 } - - { offsetInCU: 0x18A, offset: 0x31EF8, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVwet', symObjAddr: 0x250, symBinAddr: 0x4D6C, symSize: 0x54 } - - { offsetInCU: 0x19E, offset: 0x31F0C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVwst', symObjAddr: 0x2A4, symBinAddr: 0x4DC0, symSize: 0x44 } - - { offsetInCU: 0x1B2, offset: 0x31F20, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVMa', symObjAddr: 0x2E8, symBinAddr: 0x4E04, symSize: 0x10 } - - { offsetInCU: 0x1D7, offset: 0x31F45, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x4B20, symSize: 0x4 } - - { offsetInCU: 0x1F3, offset: 0x31F61, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x4B24, symSize: 0x4 } - - { offsetInCU: 0x20F, offset: 0x31F7D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x4B28, symSize: 0x4 } - - { offsetInCU: 0x22B, offset: 0x31F99, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x4B2C, symSize: 0x4 } -... diff --git a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/x86_64/OSGeolocationLib.yml b/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/x86_64/OSGeolocationLib.yml deleted file mode 100644 index 4690b86..0000000 --- a/packages/capacitor-plugin/ios/Sources/GeolocationPlugin/OSGeolocationLib.xcframework/ios-arm64_x86_64-simulator/dSYMs/OSGeolocationLib.framework.dSYM/Contents/Resources/Relocations/x86_64/OSGeolocationLib.yml +++ /dev/null @@ -1,147 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/rcj/Library/Developer/Xcode/DerivedData/OSGeolocationLib-fluwbyhqwgjxjxdrwiflfluzracc/Build/Intermediates.noindex/ArchiveIntermediates/OSGeolocationLib/InstallationBuildProductsLocation/Library/Frameworks/OSGeolocationLib.framework/OSGeolocationLib' -relocations: - - { offsetInCU: 0x34, offset: 0x30A78, size: 0x8, addend: 0x0, symName: _OSGeolocationLibVersionString, symObjAddr: 0x0, symBinAddr: 0x61B0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x30AAD, size: 0x8, addend: 0x0, symName: _OSGeolocationLibVersionNumber, symObjAddr: 0x40, symBinAddr: 0x61F0, symSize: 0x0 } - - { offsetInCU: 0x27, offset: 0x30AEA, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1D50, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x30B0E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1D50, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x30B3D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO4hash4intoys6HasherVz_tF', symObjAddr: 0x10, symBinAddr: 0x1D60, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x30BD3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationO9hashValueSivg', symObjAddr: 0x30, symBinAddr: 0x1D80, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x30CCE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x70, symBinAddr: 0x1DC0, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x30D24, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH9hashValueSivgTW', symObjAddr: 0x80, symBinAddr: 0x1DD0, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x30E08, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x1E10, symSize: 0x20 } - - { offsetInCU: 0x3CE, offset: 0x30E91, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASQWb', symObjAddr: 0x120, symBinAddr: 0x1E70, symSize: 0x10 } - - { offsetInCU: 0x3E2, offset: 0x30EA5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOACSQAAWl', symObjAddr: 0x130, symBinAddr: 0x1E80, symSize: 0x30 } - - { offsetInCU: 0x3F6, offset: 0x30EB9, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x160, symBinAddr: 0x1EB0, symSize: 0x10 } - - { offsetInCU: 0x40A, offset: 0x30ECD, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x170, symBinAddr: 0x1EC0, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x30EE1, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwet', symObjAddr: 0x180, symBinAddr: 0x1ED0, symSize: 0x80 } - - { offsetInCU: 0x432, offset: 0x30EF5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwst', symObjAddr: 0x200, symBinAddr: 0x1F50, symSize: 0xD0 } - - { offsetInCU: 0x446, offset: 0x30F09, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwug', symObjAddr: 0x2D0, symBinAddr: 0x2020, symSize: 0x10 } - - { offsetInCU: 0x45A, offset: 0x30F1D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwup', symObjAddr: 0x2E0, symBinAddr: 0x2030, symSize: 0x10 } - - { offsetInCU: 0x46E, offset: 0x30F31, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOwui', symObjAddr: 0x2F0, symBinAddr: 0x2040, symSize: 0x10 } - - { offsetInCU: 0x482, offset: 0x30F45, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOMa', symObjAddr: 0x300, symBinAddr: 0x2050, symSize: 0xA } - - { offsetInCU: 0x4FC, offset: 0x30FBF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCAuthorisationOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xE0, symBinAddr: 0x1E30, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x31102, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg', symObjAddr: 0x0, symBinAddr: 0x2060, symSize: 0x10 } - - { offsetInCU: 0x4A, offset: 0x31121, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8altitudeSdvg', symObjAddr: 0x0, symBinAddr: 0x2060, symSize: 0x10 } - - { offsetInCU: 0x68, offset: 0x3113F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV6courseSdvg', symObjAddr: 0x10, symBinAddr: 0x2070, symSize: 0x10 } - - { offsetInCU: 0x86, offset: 0x3115D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV18horizontalAccuracySdvg', symObjAddr: 0x20, symBinAddr: 0x2080, symSize: 0x10 } - - { offsetInCU: 0xA4, offset: 0x3117B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV8latitudeSdvg', symObjAddr: 0x30, symBinAddr: 0x2090, symSize: 0x10 } - - { offsetInCU: 0xC2, offset: 0x31199, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV9longitudeSdvg', symObjAddr: 0x40, symBinAddr: 0x20A0, symSize: 0x10 } - - { offsetInCU: 0xE0, offset: 0x311B7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV5speedSdvg', symObjAddr: 0x50, symBinAddr: 0x20B0, symSize: 0x10 } - - { offsetInCU: 0xFE, offset: 0x311D5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV9timestampSdvg', symObjAddr: 0x60, symBinAddr: 0x20C0, symSize: 0x10 } - - { offsetInCU: 0x11C, offset: 0x311F3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV16verticalAccuracySdvg', symObjAddr: 0x70, symBinAddr: 0x20D0, symSize: 0x10 } - - { offsetInCU: 0x13A, offset: 0x31211, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZ', symObjAddr: 0x80, symBinAddr: 0x20E0, symSize: 0x10 } - - { offsetInCU: 0x15D, offset: 0x31234, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x90, symBinAddr: 0x20F0, symSize: 0x10 } - - { offsetInCU: 0x18E, offset: 0x31265, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV2eeoiySbAC_ACtFZTf4nnd_n', symObjAddr: 0x210, symBinAddr: 0x2270, symSize: 0x90 } - - { offsetInCU: 0x1C9, offset: 0x312A0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelV6create4fromACSo10CLLocationC_tFZ', symObjAddr: 0xA0, symBinAddr: 0x2100, symSize: 0x170 } - - { offsetInCU: 0x227, offset: 0x312FE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwCP', symObjAddr: 0x2A0, symBinAddr: 0x2300, symSize: 0x30 } - - { offsetInCU: 0x23B, offset: 0x31312, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x2E0, symBinAddr: 0x2330, symSize: 0x30 } - - { offsetInCU: 0x24F, offset: 0x31326, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwet', symObjAddr: 0x310, symBinAddr: 0x2360, symSize: 0x20 } - - { offsetInCU: 0x263, offset: 0x3133A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVwst', symObjAddr: 0x330, symBinAddr: 0x2380, symSize: 0x40 } - - { offsetInCU: 0x277, offset: 0x3134E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCPositionModelVMa', symObjAddr: 0x370, symBinAddr: 0x23C0, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x3142D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_', symObjAddr: 0x0, symBinAddr: 0x23D0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x31451, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_', symObjAddr: 0x0, symBinAddr: 0x23D0, symSize: 0x20 } - - { offsetInCU: 0x72, offset: 0x31478, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu1_yycfu2_', symObjAddr: 0x20, symBinAddr: 0x23F0, symSize: 0x20 } - - { offsetInCU: 0x99, offset: 0x3149F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x40, symBinAddr: 0x2410, symSize: 0x10 } - - { offsetInCU: 0xC8, offset: 0x314CE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x50, symBinAddr: 0x2420, symSize: 0x20 } - - { offsetInCU: 0x15E, offset: 0x31564, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO9hashValueSivg', symObjAddr: 0x70, symBinAddr: 0x2440, symSize: 0x40 } - - { offsetInCU: 0x259, offset: 0x3165F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB0, symBinAddr: 0x2480, symSize: 0x10 } - - { offsetInCU: 0x2AF, offset: 0x316B5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH9hashValueSivgTW', symObjAddr: 0xC0, symBinAddr: 0x2490, symSize: 0x40 } - - { offsetInCU: 0x393, offset: 0x31799, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x100, symBinAddr: 0x24D0, symSize: 0x20 } - - { offsetInCU: 0x41C, offset: 0x31822, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASQWb', symObjAddr: 0x160, symBinAddr: 0x2530, symSize: 0x10 } - - { offsetInCU: 0x430, offset: 0x31836, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOACSQAAWl', symObjAddr: 0x170, symBinAddr: 0x2540, symSize: 0x30 } - - { offsetInCU: 0x444, offset: 0x3184A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwet', symObjAddr: 0x1C0, symBinAddr: 0x2570, symSize: 0x80 } - - { offsetInCU: 0x458, offset: 0x3185E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwst', symObjAddr: 0x240, symBinAddr: 0x25F0, symSize: 0xD0 } - - { offsetInCU: 0x46C, offset: 0x31872, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwug', symObjAddr: 0x310, symBinAddr: 0x26C0, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x31886, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwup', symObjAddr: 0x320, symBinAddr: 0x26D0, symSize: 0x10 } - - { offsetInCU: 0x494, offset: 0x3189A, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOwui', symObjAddr: 0x330, symBinAddr: 0x26E0, symSize: 0x10 } - - { offsetInCU: 0x4A8, offset: 0x318AE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOMa', symObjAddr: 0x340, symBinAddr: 0x26F0, symSize: 0xA } - - { offsetInCU: 0x506, offset: 0x3190C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x120, symBinAddr: 0x24F0, symSize: 0x40 } - - { offsetInCU: 0x4A, offset: 0x31A69, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVACycfC', symObjAddr: 0x0, symBinAddr: 0x2700, symSize: 0x10 } - - { offsetInCU: 0x68, offset: 0x31A87, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorV26areLocationServicesEnabledSbyF', symObjAddr: 0x10, symBinAddr: 0x2710, symSize: 0x30 } - - { offsetInCU: 0x8D, offset: 0x31AAC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVAA0C7CheckerA2aDP26areLocationServicesEnabledSbyFTW', symObjAddr: 0x40, symBinAddr: 0x2740, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x31B33, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvg', symObjAddr: 0x140, symBinAddr: 0x2840, symSize: 0x60 } - - { offsetInCU: 0x131, offset: 0x31B50, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvs', symObjAddr: 0x1C0, symBinAddr: 0x28C0, symSize: 0x60 } - - { offsetInCU: 0x158, offset: 0x31B77, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvM', symObjAddr: 0x220, symBinAddr: 0x2920, symSize: 0x60 } - - { offsetInCU: 0x1CD, offset: 0x31BEC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC20$authorisationStatus7Combine9PublishedV9PublisherVyAA19OSGLOCAuthorisationO_GvM', symObjAddr: 0x310, symBinAddr: 0x2A10, symSize: 0xC0 } - - { offsetInCU: 0x22F, offset: 0x31C4E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC28authorisationStatusPublisher7Combine9PublishedV0G0VyAA19OSGLOCAuthorisationO_Gvg', symObjAddr: 0x3E0, symBinAddr: 0x2AE0, symSize: 0x60 } - - { offsetInCU: 0x2B6, offset: 0x31CD5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvg', symObjAddr: 0x560, symBinAddr: 0x2C60, symSize: 0x60 } - - { offsetInCU: 0x2D3, offset: 0x31CF2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvs', symObjAddr: 0x5E0, symBinAddr: 0x2CE0, symSize: 0x80 } - - { offsetInCU: 0x2FA, offset: 0x31D19, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvM', symObjAddr: 0x660, symBinAddr: 0x2D60, symSize: 0x60 } - - { offsetInCU: 0x36F, offset: 0x31D8E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC16$currentLocation7Combine9PublishedV9PublisherVyAA19OSGLOCPositionModelVSg_GvM', symObjAddr: 0x980, symBinAddr: 0x3080, symSize: 0xC0 } - - { offsetInCU: 0x3D1, offset: 0x31DF0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvg', symObjAddr: 0xB90, symBinAddr: 0x3290, symSize: 0x240 } - - { offsetInCU: 0x41F, offset: 0x31E3E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvgA2ISgKcfU_', symObjAddr: 0xE10, symBinAddr: 0x3510, symSize: 0x70 } - - { offsetInCU: 0x45F, offset: 0x31E7E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC24currentLocationPublisher7Combine03AnyG0VyAA19OSGLOCPositionModelVAA19OSGLOCLocationErrorOGvgAKs0M0_pcfU0_', symObjAddr: 0xE80, symBinAddr: 0x3580, symSize: 0x70 } - - { offsetInCU: 0x48B, offset: 0x31EAA, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfC', symObjAddr: 0xF50, symBinAddr: 0x3650, symSize: 0x40 } - - { offsetInCU: 0x4A9, offset: 0x31EC8, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager15servicesCheckerACSo010CLLocationF0C_AA014OSGLOCServicesH0_ptcfc', symObjAddr: 0xF90, symBinAddr: 0x3690, symSize: 0x1B0 } - - { offsetInCU: 0x597, offset: 0x31FB6, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC20requestAuthorisation8withTypeyAA026OSGLOCAuthorisationRequestH0O_tF', symObjAddr: 0x11D0, symBinAddr: 0x38D0, symSize: 0x80 } - - { offsetInCU: 0x5F3, offset: 0x32012, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC23startMonitoringLocationyyF', symObjAddr: 0x12A0, symBinAddr: 0x39A0, symSize: 0x20 } - - { offsetInCU: 0x610, offset: 0x3202F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC22stopMonitoringLocationyyF', symObjAddr: 0x12C0, symBinAddr: 0x39C0, symSize: 0x20 } - - { offsetInCU: 0x62D, offset: 0x3204C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC21requestSingleLocationyyF', symObjAddr: 0x12E0, symBinAddr: 0x39E0, symSize: 0x20 } - - { offsetInCU: 0x64A, offset: 0x32069, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19updateConfigurationyyAA24OSGLOCConfigurationModelVF', symObjAddr: 0x1300, symBinAddr: 0x3A00, symSize: 0xA0 } - - { offsetInCU: 0x6CF, offset: 0x320EE, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC26areLocationServicesEnabledSbyF', symObjAddr: 0x13A0, symBinAddr: 0x3AA0, symSize: 0x40 } - - { offsetInCU: 0x6EE, offset: 0x3210D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfC', symObjAddr: 0x1410, symBinAddr: 0x3B10, symSize: 0x20 } - - { offsetInCU: 0x70C, offset: 0x3212B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfc', symObjAddr: 0x1430, symBinAddr: 0x3B30, symSize: 0x30 } - - { offsetInCU: 0x76F, offset: 0x3218E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCACycfcTo', symObjAddr: 0x1460, symBinAddr: 0x3B60, symSize: 0x30 } - - { offsetInCU: 0x7D6, offset: 0x321F5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCfD', symObjAddr: 0x1490, symBinAddr: 0x3B90, symSize: 0x30 } - - { offsetInCU: 0x821, offset: 0x32240, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCServicesCheckerA2aDP26areLocationServicesEnabledSbyFTW', symObjAddr: 0x1540, symBinAddr: 0x3C40, symSize: 0x50 } - - { offsetInCU: 0x853, offset: 0x32272, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP19authorisationStatusAA0E0OvgTW', symObjAddr: 0x1590, symBinAddr: 0x3C90, symSize: 0x60 } - - { offsetInCU: 0x8A3, offset: 0x322C2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP28authorisationStatusPublisher7Combine9PublishedV0I0VyAA0E0O_GvgTW', symObjAddr: 0x15F0, symBinAddr: 0x3CF0, symSize: 0x60 } - - { offsetInCU: 0x915, offset: 0x32334, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA26OSGLOCAuthorisationHandlerA2aDP20requestAuthorisation8withTypeyAA0e7RequestJ0O_tFTW', symObjAddr: 0x1650, symBinAddr: 0x3D50, symSize: 0x80 } - - { offsetInCU: 0x99D, offset: 0x323BC, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA27OSGLOCSingleLocationHandlerA2aDP013requestSingleF0yyFTW', symObjAddr: 0x16D0, symBinAddr: 0x3DD0, symSize: 0x20 } - - { offsetInCU: 0x9ED, offset: 0x3240C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA28OSGLOCMonitorLocationHandlerA2aDP015startMonitoringF0yyFTW', symObjAddr: 0x16F0, symBinAddr: 0x3DF0, symSize: 0x20 } - - { offsetInCU: 0xA3D, offset: 0x3245C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA28OSGLOCMonitorLocationHandlerA2aDP014stopMonitoringF0yyFTW', symObjAddr: 0x1710, symBinAddr: 0x3E10, symSize: 0x20 } - - { offsetInCU: 0xA6F, offset: 0x3248E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP15currentLocationAA19OSGLOCPositionModelVSgvgTW', symObjAddr: 0x1730, symBinAddr: 0x3E30, symSize: 0x60 } - - { offsetInCU: 0xAA1, offset: 0x324C0, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP24currentLocationPublisher7Combine03AnyI0VyAA19OSGLOCPositionModelVAA0E5ErrorOGvgTW', symObjAddr: 0x1790, symBinAddr: 0x3E90, symSize: 0x20 } - - { offsetInCU: 0xADB, offset: 0x324FA, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCAA21OSGLOCLocationHandlerA2aDP19updateConfigurationyyAA24OSGLOCConfigurationModelVFTW', symObjAddr: 0x17B0, symBinAddr: 0x3EB0, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x32585, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvpACTK', symObjAddr: 0x70, symBinAddr: 0x2770, symSize: 0x70 } - - { offsetInCU: 0xB93, offset: 0x325B2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC19authorisationStatusAA19OSGLOCAuthorisationOvpACTk', symObjAddr: 0xE0, symBinAddr: 0x27E0, symSize: 0x60 } - - { offsetInCU: 0xBD1, offset: 0x325F0, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x2B0, symBinAddr: 0x29B0, symSize: 0x40 } - - { offsetInCU: 0xBE5, offset: 0x32604, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x2B40, symSize: 0x90 } - - { offsetInCU: 0xC1E, offset: 0x3263D, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15currentLocationAA19OSGLOCPositionModelVSgvpACTk', symObjAddr: 0x4D0, symBinAddr: 0x2BD0, symSize: 0x90 } - - { offsetInCU: 0xC56, offset: 0x32675, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0xDD0, symBinAddr: 0x34D0, symSize: 0x40 } - - { offsetInCU: 0xC6A, offset: 0x32689, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOACs0D0AAWl', symObjAddr: 0xEF0, symBinAddr: 0x35F0, symSize: 0x30 } - - { offsetInCU: 0xCD4, offset: 0x326F3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib21OSGLOCServicesChecker_pWOc', symObjAddr: 0x1140, symBinAddr: 0x3840, symSize: 0x30 } - - { offsetInCU: 0xCE8, offset: 0x32707, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMa', symObjAddr: 0x1170, symBinAddr: 0x3870, symSize: 0x30 } - - { offsetInCU: 0xCFC, offset: 0x3271B, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x11A0, symBinAddr: 0x38A0, symSize: 0x30 } - - { offsetInCU: 0xD65, offset: 0x32784, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu1_yycfu2_TA', symObjAddr: 0x1280, symBinAddr: 0x3980, symSize: 0x10 } - - { offsetInCU: 0xD79, offset: 0x32798, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib30OSGLOCAuthorisationRequestTypeO20requestAuthorization5usingySo17CLLocationManagerC_tFyycAGcfu_yycfu0_TA', symObjAddr: 0x1290, symBinAddr: 0x3990, symSize: 0x10 } - - { offsetInCU: 0xD8D, offset: 0x327AC, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x13E0, symBinAddr: 0x3AE0, symSize: 0x30 } - - { offsetInCU: 0xDB7, offset: 0x327D6, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCfETo', symObjAddr: 0x14C0, symBinAddr: 0x3BC0, symSize: 0x80 } - - { offsetInCU: 0xDE6, offset: 0x32805, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CF', symObjAddr: 0x1850, symBinAddr: 0x3F50, symSize: 0x70 } - - { offsetInCU: 0xE87, offset: 0x328A6, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC37locationManagerDidChangeAuthorizationyySo010CLLocationF0CFTo', symObjAddr: 0x18C0, symBinAddr: 0x3FC0, symSize: 0x50 } - - { offsetInCU: 0xEA3, offset: 0x328C2, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtF', symObjAddr: 0x1910, symBinAddr: 0x4010, symSize: 0x10 } - - { offsetInCU: 0xEC6, offset: 0x328E5, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtFTo', symObjAddr: 0x1920, symBinAddr: 0x4020, symSize: 0x80 } - - { offsetInCU: 0xEF8, offset: 0x32917, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptF', symObjAddr: 0x19A0, symBinAddr: 0x40A0, symSize: 0x70 } - - { offsetInCU: 0xF7F, offset: 0x3299E, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_16didFailWithErrorySo010CLLocationF0C_s0J0_ptFTo', symObjAddr: 0x1A10, symBinAddr: 0x4110, symSize: 0x70 } - - { offsetInCU: 0x10F5, offset: 0x32B14, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperC15locationManager_18didUpdateLocationsySo010CLLocationF0C_SaySo0J0CGtFTf4dnn_n', symObjAddr: 0x1CA0, symBinAddr: 0x43A0, symSize: 0x310 } - - { offsetInCU: 0x1338, offset: 0x32D57, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib23OSGLOCServicesValidatorVMa', symObjAddr: 0x2030, symBinAddr: 0x4730, symSize: 0x10 } - - { offsetInCU: 0x134C, offset: 0x32D6B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMU', symObjAddr: 0x2040, symBinAddr: 0x4740, symSize: 0x10 } - - { offsetInCU: 0x1360, offset: 0x32D7F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib20OSGLOCManagerWrapperCMr', symObjAddr: 0x2050, symBinAddr: 0x4750, symSize: 0xA0 } - - { offsetInCU: 0x1374, offset: 0x32D93, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy16OSGeolocationLib19OSGLOCAuthorisationOGMa', symObjAddr: 0x23A0, symBinAddr: 0x4AA0, symSize: 0x30 } - - { offsetInCU: 0x1388, offset: 0x32DA7, size: 0x8, addend: 0x0, symName: '_$s7Combine9PublishedVy16OSGeolocationLib19OSGLOCPositionModelVSgGMa', symObjAddr: 0x23D0, symBinAddr: 0x4AD0, symSize: 0x50 } - - { offsetInCU: 0x139C, offset: 0x32DBB, size: 0x8, addend: 0x0, symName: '_$sSo10CLLocationCMa', symObjAddr: 0x2420, symBinAddr: 0x4B20, symSize: 0x30 } - - { offsetInCU: 0x144B, offset: 0x32E6A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo10CLLocationC_Tg5', symObjAddr: 0x1A80, symBinAddr: 0x4180, symSize: 0x220 } - - { offsetInCU: 0x4A, offset: 0x330BF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelV18enableHighAccuracy29minimumUpdateDistanceInMetersACSb_SdSgtcfC', symObjAddr: 0x40, symBinAddr: 0x4BC0, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x330FF, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwCP', symObjAddr: 0xA0, symBinAddr: 0x4C20, symSize: 0x20 } - - { offsetInCU: 0x9E, offset: 0x33113, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwxx', symObjAddr: 0xC0, symBinAddr: 0x4C40, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x33127, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwcp', symObjAddr: 0xD0, symBinAddr: 0x4C50, symSize: 0x20 } - - { offsetInCU: 0xC6, offset: 0x3313B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwca', symObjAddr: 0xF0, symBinAddr: 0x4C70, symSize: 0x30 } - - { offsetInCU: 0xDA, offset: 0x3314F, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x120, symBinAddr: 0x4CA0, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x33163, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwta', symObjAddr: 0x130, symBinAddr: 0x4CB0, symSize: 0x30 } - - { offsetInCU: 0x102, offset: 0x33177, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwet', symObjAddr: 0x160, symBinAddr: 0x4CE0, symSize: 0x40 } - - { offsetInCU: 0x116, offset: 0x3318B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwst', symObjAddr: 0x1A0, symBinAddr: 0x4D20, symSize: 0x40 } - - { offsetInCU: 0x12A, offset: 0x3319F, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwug', symObjAddr: 0x1E0, symBinAddr: 0x4D60, symSize: 0x20 } - - { offsetInCU: 0x13E, offset: 0x331B3, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwup', symObjAddr: 0x200, symBinAddr: 0x4D80, symSize: 0x10 } - - { offsetInCU: 0x152, offset: 0x331C7, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOwui', symObjAddr: 0x210, symBinAddr: 0x4D90, symSize: 0x20 } - - { offsetInCU: 0x166, offset: 0x331DB, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOMa', symObjAddr: 0x230, symBinAddr: 0x4DB0, symSize: 0x10 } - - { offsetInCU: 0x17A, offset: 0x331EF, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x290, symBinAddr: 0x4E10, symSize: 0x20 } - - { offsetInCU: 0x18E, offset: 0x33203, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVwet', symObjAddr: 0x2C0, symBinAddr: 0x4E30, symSize: 0x40 } - - { offsetInCU: 0x1A2, offset: 0x33217, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVwst', symObjAddr: 0x300, symBinAddr: 0x4E70, symSize: 0x50 } - - { offsetInCU: 0x1B6, offset: 0x3322B, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib24OSGLOCConfigurationModelVMa', symObjAddr: 0x350, symBinAddr: 0x4EC0, symSize: 0x10 } - - { offsetInCU: 0x1DB, offset: 0x33250, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x4B80, symSize: 0x10 } - - { offsetInCU: 0x1F7, offset: 0x3326C, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x4B90, symSize: 0x10 } - - { offsetInCU: 0x213, offset: 0x33288, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x4BA0, symSize: 0x10 } - - { offsetInCU: 0x22F, offset: 0x332A4, size: 0x8, addend: 0x0, symName: '_$s16OSGeolocationLib19OSGLOCLocationErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x4BB0, symSize: 0x10 } -... diff --git a/packages/capacitor-plugin/package.json b/packages/capacitor-plugin/package.json index a813d3e..1fe1495 100644 --- a/packages/capacitor-plugin/package.json +++ b/packages/capacitor-plugin/package.json @@ -19,10 +19,10 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/ionic-team/outsystems-geolocation.git" + "url": "https://github.com/ionic-team/capacitor-geolocation.git" }, "bugs": { - "url": "https://github.com/ionic-team/outsystems-geolocation/issues" + "url": "https://github.com/ionic-team/capacitor-geolocation/issues" }, "keywords": [ "capacitor", diff --git a/packages/example-app-capacitor/android/app/src/main/res/values/strings.xml b/packages/example-app-capacitor/android/app/src/main/res/values/strings.xml index 309b282..daa04e9 100644 --- a/packages/example-app-capacitor/android/app/src/main/res/values/strings.xml +++ b/packages/example-app-capacitor/android/app/src/main/res/values/strings.xml @@ -1,7 +1,7 @@ - OSGLOC Sample - OSGLOC Sample + CAP-GLOC Sample + CAP-GLOC Sample com.capacitorjs.exampleucapp.plugins.geolocation com.capacitorjs.exampleucapp.plugins.geolocation diff --git a/packages/example-app-capacitor/android/settings.gradle b/packages/example-app-capacitor/android/settings.gradle index f806891..3b4431d 100644 --- a/packages/example-app-capacitor/android/settings.gradle +++ b/packages/example-app-capacitor/android/settings.gradle @@ -2,7 +2,4 @@ include ':app' include ':capacitor-cordova-android-plugins' project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') -include ':osgeolocationlib' -project(':osgeolocationlib').projectDir = new File('../../android-lib') - apply from: 'capacitor.settings.gradle' \ No newline at end of file diff --git a/packages/example-app-capacitor/capacitor.config.json b/packages/example-app-capacitor/capacitor.config.json index e03c4d0..ccbd372 100644 --- a/packages/example-app-capacitor/capacitor.config.json +++ b/packages/example-app-capacitor/capacitor.config.json @@ -1,6 +1,6 @@ { "appId": "com.capacitorjs.exampleucapp.plugins.geolocation", - "appName": "OSGLOC Sample", + "appName": "CAP-GLOC Sample", "bundledWebRuntime": false, "webDir": "dist", "plugins": { diff --git a/packages/example-app-capacitor/ios/App/App/Info.plist b/packages/example-app-capacitor/ios/App/App/Info.plist index 9f28a6f..9f00bfb 100644 --- a/packages/example-app-capacitor/ios/App/App/Info.plist +++ b/packages/example-app-capacitor/ios/App/App/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion en CFBundleDisplayName - OSGLOC Sample + CAP-GLOC Sample CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier diff --git a/packages/example-app-capacitor/ios/App/Podfile b/packages/example-app-capacitor/ios/App/Podfile index 7e0fcc4..d40867b 100644 --- a/packages/example-app-capacitor/ios/App/Podfile +++ b/packages/example-app-capacitor/ios/App/Podfile @@ -17,7 +17,7 @@ def capacitor_pods end target 'App' do - #pod 'OSGeolocationLib', :path => '../../../ios-lib' + #pod 'IONGeolocationLib', :path => '../../../ios-lib' capacitor_pods # Add your Pods here end diff --git a/packages/example-app-capacitor/ios/App/Podfile.lock b/packages/example-app-capacitor/ios/App/Podfile.lock index 7a9398f..52c833e 100644 --- a/packages/example-app-capacitor/ios/App/Podfile.lock +++ b/packages/example-app-capacitor/ios/App/Podfile.lock @@ -6,8 +6,10 @@ PODS: - CapacitorCordova (7.0.0-rc.0) - CapacitorGeolocation (7.0.0-alpha.2): - Capacitor + - IONGeolocationLib (~> 1.0) - CapacitorSplashScreen (7.0.0-alpha.2): - Capacitor + - IONGeolocationLib (1.0.0) DEPENDENCIES: - "Capacitor (from `../../node_modules/@capacitor/ios`)" @@ -16,6 +18,10 @@ DEPENDENCIES: - CapacitorGeolocation (from `../../../capacitor-plugin`) - "CapacitorSplashScreen (from `../../node_modules/@capacitor/splash-screen`)" +SPEC REPOS: + trunk: + - IONGeolocationLib + EXTERNAL SOURCES: Capacitor: :path: "../../node_modules/@capacitor/ios" @@ -32,9 +38,10 @@ SPEC CHECKSUMS: Capacitor: e79eb426d47f13ee0e2fdaff9ef0e9990db34a48 CapacitorCamera: ad97105da555e693f9885aaab084d205f8d82366 CapacitorCordova: 8f4f6826f0b40f7b506eb13b832039b7140a88b4 - CapacitorGeolocation: 7db597d2d452b08483db93049e0785832245578f + CapacitorGeolocation: dde03dcfdc26a83c0c837eb56bf5852dac3bc04e CapacitorSplashScreen: f612f95daee8566768daf86646b97d4dcac01240 + IONGeolocationLib: 81f33f88d025846946de2cf63b0c7628e7c6bc9d -PODFILE CHECKSUM: 1f7193da1d33894fafd903ac2d93ba6415989a2b +PODFILE CHECKSUM: 6e3f0881e9bf33b13c7f481b07ee65b5c9321cb0 COCOAPODS: 1.16.2 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 43fb805..2964f13 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,17 +25,17 @@ importers: version: 1.0.1 devDependencies: '@capacitor/android': - specifier: ^6.0.0 - version: 6.2.0(@capacitor/core@6.2.0) + specifier: next + version: 7.0.0-rc.0(@capacitor/core@7.0.0-rc.0) '@capacitor/core': - specifier: ^6.0.0 - version: 6.2.0 + specifier: next + version: 7.0.0-rc.0 '@capacitor/docgen': specifier: ^0.2.2 version: 0.2.2 '@capacitor/ios': - specifier: ^6.0.0 - version: 6.2.0(@capacitor/core@6.2.0) + specifier: next + version: 7.0.0-rc.0(@capacitor/core@7.0.0-rc.0) '@ionic/eslint-config': specifier: ^0.4.0 version: 0.4.0(eslint@8.57.1)(typescript@5.4.5) @@ -70,182 +70,76 @@ importers: specifier: ~5.4.5 version: 5.4.5 - packages/cordova-plugin: - dependencies: - '@capacitor/synapse': - specifier: ^1.0.1 - version: 1.0.1 - devDependencies: - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.28.1)(tslib@2.8.1)(typescript@5.4.5) - '@types/cordova': - specifier: ^11.0.3 - version: 11.0.3 - '@types/node': - specifier: ^20.14.8 - version: 20.17.10 - cordova-common: - specifier: ^5.0.0 - version: 5.0.0 - eslint: - specifier: ^7.11.0 - version: 7.32.0 - prettier: - specifier: ~2.3.0 - version: 2.3.2 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - typescript: - specifier: ~5.4.5 - version: 5.4.5 - vite: - specifier: ^5.2.11 - version: 5.4.11(@types/node@20.17.10) - vite-plugin-dts: - specifier: ^3.9.1 - version: 3.9.1(@types/node@20.17.10)(rollup@4.28.1)(typescript@5.4.5)(vite@5.4.11(@types/node@20.17.10)) - packages/example-app-capacitor: dependencies: '@capacitor/android': - specifier: latest - version: 6.2.0(@capacitor/core@6.2.0) + specifier: next + version: 7.0.0-rc.0(@capacitor/core@7.0.0-rc.0) '@capacitor/camera': - specifier: latest - version: 6.1.2(@capacitor/core@6.2.0) + specifier: next + version: 7.0.0-rc.0(@capacitor/core@7.0.0-rc.0) '@capacitor/core': - specifier: latest - version: 6.2.0 - '@capacitor/ios': - specifier: latest - version: 6.2.0(@capacitor/core@6.2.0) - '@capacitor/splash-screen': - specifier: latest - version: 6.0.3(@capacitor/core@6.2.0) - geolocation-capacitor: + specifier: next + version: 7.0.0-rc.0 + '@capacitor/geolocation': specifier: file:../capacitor-plugin version: link:../capacitor-plugin + '@capacitor/ios': + specifier: next + version: 7.0.0-rc.0(@capacitor/core@7.0.0-rc.0) + '@capacitor/splash-screen': + specifier: next + version: 7.0.0-rc.0(@capacitor/core@7.0.0-rc.0) devDependencies: '@capacitor/cli': - specifier: latest - version: 6.2.0 + specifier: next + version: 7.0.0-rc.0 vite: specifier: ^5.0.0 version: 5.4.11(@types/node@20.17.10) - packages/example-app-cordova: - devDependencies: - com.outsystems.cordova.plugins.osgeolocation: - specifier: file:../cordova-plugin - version: link:../cordova-plugin - cordova-android: - specifier: ^13.0.0 - version: 13.0.0 - cordova-ios: - specifier: ^7.1.1 - version: 7.1.1 - - packages/outsystems-wrapper: - dependencies: - uuid: - specifier: ^11.0.3 - version: 11.0.3 - devDependencies: - '@rollup/plugin-typescript': - specifier: ^11.1.6 - version: 11.1.6(rollup@4.28.1)(tslib@2.8.1)(typescript@5.4.5) - '@types/cordova': - specifier: ^11.0.3 - version: 11.0.3 - '@types/node': - specifier: ^20.14.8 - version: 20.17.10 - cordova-common: - specifier: ^5.0.0 - version: 5.0.0 - eslint: - specifier: ^7.11.0 - version: 7.32.0 - prettier: - specifier: ~2.3.0 - version: 2.3.2 - rimraf: - specifier: ^3.0.2 - version: 3.0.2 - typescript: - specifier: ~5.4.5 - version: 5.4.5 - vite: - specifier: ^5.2.11 - version: 5.4.11(@types/node@20.17.10) - vite-plugin-dts: - specifier: ^4.4.0 - version: 4.4.0(@types/node@20.17.10)(rollup@4.28.1)(typescript@5.4.5)(vite@5.4.11(@types/node@20.17.10)) - packages: - '@babel/code-frame@7.12.11': - resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} - '@babel/code-frame@7.26.2': resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.9': - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.9': resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.9': - resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.26.3': - resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/types@7.26.3': - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} - engines: {node: '>=6.9.0'} - - '@capacitor/android@6.2.0': - resolution: {integrity: sha512-3YIDPylV0Q2adEQ/H568p496QdYG0jK/XGMdx7OGSqdBZen92ciAsYdyhLtyl91UVsN1lBhDi5H6j3T2KS6aJg==} + '@capacitor/android@7.0.0-rc.0': + resolution: {integrity: sha512-SlUIVb931ww6V8YsmLC5au5XhZcDdIBf7n+ciHHrqcXL3KGm27IvM72T1O106q8qL8i6rZWsfzeZn61Slqbd1g==} peerDependencies: - '@capacitor/core': ^6.2.0 + '@capacitor/core': ^7.0.0-rc.0 - '@capacitor/camera@6.1.2': - resolution: {integrity: sha512-UH5srvOHDzIM1o4yFkRZCsP7WfQQOvyn+aS7ycqHFbgofr/xBTqPQUdwN+COtwaZYCwnDunPFYIGQAwSdzq6jg==} + '@capacitor/camera@7.0.0-rc.0': + resolution: {integrity: sha512-W6bbJtvcRwy7Kbgspw36FUcV40V8eb/GPs2T1KCglr8FJfdyH7AU2lokuferdWBHv6XBt88pdAuGhhJfi3QsGA==} peerDependencies: - '@capacitor/core': ^6.0.0 + '@capacitor/core': '>=7.0.0-rc.0' - '@capacitor/cli@6.2.0': - resolution: {integrity: sha512-EWcXG39mZh35zrHhOqzN1ILeSyMRyEqWVtQDXqMGjCXYRH6b6p5TvyvLDN8ZNy26tbhI3i79gfrgirt+mNwuuw==} - engines: {node: '>=18.0.0'} + '@capacitor/cli@7.0.0-rc.0': + resolution: {integrity: sha512-gmcgxRle0lrPJuz9K2qPqx45vFP1Vr8pPvYG5nIn6KyUMFaO2ZMYgngUD1kffdsRIDp25P0/oPY6iYzYPNcYFw==} + engines: {node: '>=20.0.0'} hasBin: true - '@capacitor/core@6.2.0': - resolution: {integrity: sha512-B9IlJtDpUqhhYb+T8+cp2Db/3RETX36STgjeU2kQZBs/SLAcFiMama227o+msRjLeo3DO+7HJjWVA1+XlyyPEg==} + '@capacitor/core@7.0.0-rc.0': + resolution: {integrity: sha512-JvghTdvuB6AeQXJ2WAirbmHnwxVxqE3gGZSFmSwdhvwrMc2JNRmDkMVtHO/IpoT1zbB9pmTe8ATO2O6FbPVyYg==} '@capacitor/docgen@0.2.2': resolution: {integrity: sha512-617jB5DlKjUljxfoANORWeqffsHqHekckH48oslKWFGzfCHYIAEPfJfMa5M4mVSzn2ifSvWB5C3st4augwhl5w==} engines: {node: '>=14.5.0'} hasBin: true - '@capacitor/ios@6.2.0': - resolution: {integrity: sha512-gisvZBIrKT1siiumgpLPY63HmJe69Ed/dOmfQQ+U1MIJmOR5gWGWvfO7QSj/FMatVZS4Xt/8jCoUgzDD1U6kSw==} + '@capacitor/ios@7.0.0-rc.0': + resolution: {integrity: sha512-/lxD6vMYYIfu5+UFqscQEF+wkhWn0nMYQWUkWUImjc6mUP/N7t6jrvrm3YKVlJ3UFrdo+E0MZz2s/50dck3I5Q==} peerDependencies: - '@capacitor/core': ^6.2.0 + '@capacitor/core': ^7.0.0-rc.0 - '@capacitor/splash-screen@6.0.3': - resolution: {integrity: sha512-tpVljeNGSwVCIc8lMQkyiCQFokk2PwgYPdDtPnGjFthqmXW/WhIxW8QYl4MUqyLwwgwTEbp4u3Kcv2zqQu2L6Q==} + '@capacitor/splash-screen@7.0.0-rc.0': + resolution: {integrity: sha512-6GrHK5TJGYN1v0NCxzK+Myhu/WYY6lXFw94easplbCWjQwmvV9Q8LGgVlwou7Z0m6bZU7bs8JOthwmuuK3M/QA==} peerDependencies: - '@capacitor/core': ^6.0.0 + '@capacitor/core': '>=7.0.0-rc.0' '@capacitor/synapse@1.0.1': resolution: {integrity: sha512-eLSoIccv6dqJ9GQePlQfHizE91tn9+6Ysj9ZWTi4JwV4OX4As6y505CvEYuM99MiLkdpL+Vcx3jNp8AEeQG5VA==} @@ -422,10 +316,6 @@ packages: resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/eslintrc@0.4.3': - resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} - engines: {node: ^10.12.0 || >=12.0.0} - '@eslint/eslintrc@2.1.4': resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -439,19 +329,10 @@ packages: engines: {node: '>=10.10.0'} deprecated: Use @eslint/config-array instead - '@humanwhocodes/config-array@0.5.0': - resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead - '@humanwhocodes/module-importer@1.0.1': resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - '@humanwhocodes/object-schema@1.2.1': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - deprecated: Use @eslint/object-schema instead - '@humanwhocodes/object-schema@2.0.3': resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} deprecated: Use @eslint/object-schema instead @@ -477,58 +358,30 @@ packages: '@ionic/swiftlint-config@2.0.0': resolution: {integrity: sha512-TXy76ALSKhUZzBziHz7aoEtSQwHofBIDRNzM9x4sndtC7fefbZsBw3UgGwXFTOc7hoj72EAGyqZNUhj9LlhaNQ==} - '@ionic/utils-array@2.1.5': - resolution: {integrity: sha512-HD72a71IQVBmQckDwmA8RxNVMTbxnaLbgFOl+dO5tbvW9CkkSFCv41h6fUuNsSEVgngfkn0i98HDuZC8mk+lTA==} - engines: {node: '>=10.3.0'} - '@ionic/utils-array@2.1.6': resolution: {integrity: sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg==} engines: {node: '>=16.0.0'} - '@ionic/utils-fs@3.1.6': - resolution: {integrity: sha512-eikrNkK89CfGPmexjTfSWl4EYqsPSBh0Ka7by4F0PLc1hJZYtJxUZV3X4r5ecA8ikjicUmcbU7zJmAjmqutG/w==} - engines: {node: '>=10.3.0'} - '@ionic/utils-fs@3.1.7': resolution: {integrity: sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==} engines: {node: '>=16.0.0'} - '@ionic/utils-object@2.1.5': - resolution: {integrity: sha512-XnYNSwfewUqxq+yjER1hxTKggftpNjFLJH0s37jcrNDwbzmbpFTQTVAp4ikNK4rd9DOebX/jbeZb8jfD86IYxw==} - engines: {node: '>=10.3.0'} - '@ionic/utils-object@2.1.6': resolution: {integrity: sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==} engines: {node: '>=16.0.0'} - '@ionic/utils-process@2.1.10': - resolution: {integrity: sha512-mZ7JEowcuGQK+SKsJXi0liYTcXd2bNMR3nE0CyTROpMECUpJeAvvaBaPGZf5ERQUPeWBVuwqAqjUmIdxhz5bxw==} - engines: {node: '>=10.3.0'} - '@ionic/utils-process@2.1.12': resolution: {integrity: sha512-Jqkgyq7zBs/v/J3YvKtQQiIcxfJyplPgECMWgdO0E1fKrrH8EF0QGHNJ9mJCn6PYe2UtHNS8JJf5G21e09DfYg==} engines: {node: '>=16.0.0'} - '@ionic/utils-stream@3.1.5': - resolution: {integrity: sha512-hkm46uHvEC05X/8PHgdJi4l4zv9VQDELZTM+Kz69odtO9zZYfnt8DkfXHJqJ+PxmtiE5mk/ehJWLnn/XAczTUw==} - engines: {node: '>=10.3.0'} - '@ionic/utils-stream@3.1.7': resolution: {integrity: sha512-eSELBE7NWNFIHTbTC2jiMvh1ABKGIpGdUIvARsNPMNQhxJB3wpwdiVnoBoTYp+5a6UUIww4Kpg7v6S7iTctH1w==} engines: {node: '>=16.0.0'} - '@ionic/utils-subprocess@2.1.11': - resolution: {integrity: sha512-6zCDixNmZCbMCy5np8klSxOZF85kuDyzZSTTQKQP90ZtYNCcPYmuFSzaqDwApJT4r5L3MY3JrqK1gLkc6xiUPw==} - engines: {node: '>=10.3.0'} - '@ionic/utils-subprocess@3.0.1': resolution: {integrity: sha512-cT4te3AQQPeIM9WCwIg8ohroJ8TjsYaMb2G4ZEgv9YzeDqHZ4JpeIKqG2SoaA3GmVQ3sOfhPM6Ox9sxphV/d1A==} engines: {node: '>=16.0.0'} - '@ionic/utils-terminal@2.3.3': - resolution: {integrity: sha512-RnuSfNZ5fLEyX3R5mtcMY97cGD1A0NVBbarsSQ6yMMfRJ5YHU7hHVyUfvZeClbqkBC/pAqI/rYJuXKCT9YeMCQ==} - engines: {node: '>=10.3.0'} - '@ionic/utils-terminal@2.3.5': resolution: {integrity: sha512-3cKScz9Jx2/Pr9ijj1OzGlBDfcmx7OMVBt4+P1uRR0SSW4cm1/y3Mo4OY3lfkuaYifMNBW8Wz6lQHbs1bihr7A==} engines: {node: '>=16.0.0'} @@ -544,45 +397,13 @@ packages: resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - '@lerna/create@8.1.9': resolution: {integrity: sha512-DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==} engines: {node: '>=18.0.0'} - '@microsoft/api-extractor-model@7.28.13': - resolution: {integrity: sha512-39v/JyldX4MS9uzHcdfmjjfS6cYGAoXV+io8B5a338pkHiSt+gy2eXQ0Q7cGFJ7quSa1VqqlMdlPrB6sLR/cAw==} - - '@microsoft/api-extractor-model@7.30.1': - resolution: {integrity: sha512-CTS2PlASJHxVY8hqHORVb1HdECWOEMcMnM6/kDkPr0RZapAFSIHhg9D4jxuE8g+OWYHtPc10LCpmde5pylTRlA==} - - '@microsoft/api-extractor@7.43.0': - resolution: {integrity: sha512-GFhTcJpB+MI6FhvXEI9b2K0snulNLWHqC/BbcJtyNYcKUiw7l3Lgis5ApsYncJ0leALX7/of4XfmXk+maT111w==} - hasBin: true - - '@microsoft/api-extractor@7.48.1': - resolution: {integrity: sha512-HN9Osa1WxqLM66RaqB5nPAadx+nTIQmY/XtkFdaJvusjG8Tus++QqZtD7KPZDSkhEMGHsYeSyeU8qUzCDUXPjg==} - hasBin: true - - '@microsoft/tsdoc-config@0.16.2': - resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} - - '@microsoft/tsdoc-config@0.17.1': - resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==} - - '@microsoft/tsdoc@0.14.2': - resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} - - '@microsoft/tsdoc@0.15.1': - resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==} - '@napi-rs/wasm-runtime@0.2.4': resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} - '@netflix/nerror@1.1.3': - resolution: {integrity: sha512-b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==} - '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -782,28 +603,6 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@rollup/plugin-typescript@11.1.6': - resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true - - '@rollup/pluginutils@5.1.4': - resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/rollup-android-arm-eabi@4.28.1': resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==} cpu: [arm] @@ -902,50 +701,6 @@ packages: '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - '@rushstack/node-core-library@4.0.2': - resolution: {integrity: sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==} - peerDependencies: - '@types/node': '*' - peerDependenciesMeta: - '@types/node': - optional: true - - '@rushstack/node-core-library@5.10.1': - resolution: {integrity: sha512-BSb/KcyBHmUQwINrgtzo6jiH0HlGFmrUy33vO6unmceuVKTEyL2q+P0fQq2oB5hvXVWOEUhxB2QvlkZluvUEmg==} - peerDependencies: - '@types/node': '*' - peerDependenciesMeta: - '@types/node': - optional: true - - '@rushstack/rig-package@0.5.2': - resolution: {integrity: sha512-mUDecIJeH3yYGZs2a48k+pbhM6JYwWlgjs2Ca5f2n1G2/kgdgP9D/07oglEGf6mRyXEnazhEENeYTSNDRCwdqA==} - - '@rushstack/rig-package@0.5.3': - resolution: {integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==} - - '@rushstack/terminal@0.10.0': - resolution: {integrity: sha512-UbELbXnUdc7EKwfH2sb8ChqNgapUOdqcCIdQP4NGxBpTZV2sQyeekuK3zmfQSa/MN+/7b4kBogl2wq0vpkpYGw==} - peerDependencies: - '@types/node': '*' - peerDependenciesMeta: - '@types/node': - optional: true - - '@rushstack/terminal@0.14.4': - resolution: {integrity: sha512-NxACqERW0PHq8Rpq1V6v5iTHEwkRGxenjEW+VWqRYQ8T9puUzgmGHmEZUaUEDHAe9Qyvp0/Ew04sAiQw9XjhJg==} - peerDependencies: - '@types/node': '*' - peerDependenciesMeta: - '@types/node': - optional: true - - '@rushstack/ts-command-line@4.19.1': - resolution: {integrity: sha512-J7H768dgcpG60d7skZ5uSSwyCZs/S2HrWP1Ds8d1qYAyaaeJmpmmLr9BVw97RjFzmQPOYnoXcKA4GkqDCkduQg==} - - '@rushstack/ts-command-line@4.23.2': - resolution: {integrity: sha512-JJ7XZX5K3ThBBva38aomgsPv1L7FV6XmSOcR6HtM7HDFZJkepqT65imw26h9ggGqMjsY0R9jcl30tzKcVj9aOQ==} - '@sigstore/bundle@2.3.2': resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -984,12 +739,6 @@ packages: '@tybys/wasm-util@0.9.0': resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} - '@types/argparse@1.0.38': - resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} - - '@types/cordova@11.0.3': - resolution: {integrity: sha512-kyuRQ40/NWQVhqGIHq78Ehu2Bf9Mlg0LhmSmis6ZFJK7z933FRfYi8tHe/k/0fB+PGfCf95rJC6TO7dopaFvAg==} - '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} @@ -1084,52 +833,6 @@ packages: '@ungap/structured-clone@1.2.1': resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} - '@volar/language-core@1.11.1': - resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==} - - '@volar/language-core@2.4.11': - resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==} - - '@volar/source-map@1.11.1': - resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==} - - '@volar/source-map@2.4.11': - resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==} - - '@volar/typescript@1.11.1': - resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==} - - '@volar/typescript@2.4.11': - resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==} - - '@vue/compiler-core@3.5.13': - resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} - - '@vue/compiler-dom@3.5.13': - resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} - - '@vue/compiler-vue2@2.7.16': - resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} - - '@vue/language-core@1.8.27': - resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@vue/language-core@2.1.10': - resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@vue/shared@3.5.13': - resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} - '@xmldom/xmldom@0.8.10': resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} engines: {node: '>=10.0.0'} @@ -1149,9 +852,6 @@ packages: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true - abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - abbrev@2.0.0: resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -1161,11 +861,6 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.14.0: resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} engines: {node: '>=0.4.0'} @@ -1182,40 +877,9 @@ packages: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} - ajv-draft-04@1.0.0: - resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} - peerDependencies: - ajv: ^8.5.0 - peerDependenciesMeta: - ajv: - optional: true - - ajv-formats@3.0.1: - resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} - - ajv@8.13.0: - resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==} - - ajv@8.17.1: - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - - alien-signals@0.2.2: - resolution: {integrity: sha512-cZIRkbERILsBOXTQmMrxc9hgpxglstn69zm+F1ARf4aPAzdAFYd6sBq87ErO0Fj3DV94tglcyHG5kQz9nDC/8A==} - - android-versions@2.0.0: - resolution: {integrity: sha512-07fhKL8EjV+ORQggGHcKmhLECwxBlRFimfvsjhfUCYqNDAbcH4qaEaN0AO3DnWtgHqRNfWAxhnWOpx+ZpRMymw==} - ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -1232,10 +896,6 @@ packages: resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} engines: {node: '>=12'} - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} @@ -1248,9 +908,6 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - ansi@0.3.1: - resolution: {integrity: sha512-iFY7JCgHbepc0b82yLaw4IMortylNb6wG4kL+4R0C3iv6i+RHGHux/yUX5BTiRvSX/shMnngjR1YyNMnXEFh5A==} - aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} @@ -1303,10 +960,6 @@ packages: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} - assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} - astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} @@ -1348,16 +1001,6 @@ packages: bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - bplist-creator@0.1.0: - resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==} - - bplist-parser@0.0.6: - resolution: {integrity: sha512-fGeghPEH4Eytvf+Mi446aKcDqvkA/+eh6r7QGiZWMQG6TzqrnsToLP379XFfqRSZ41+676hhGIm++maNST1Apw==} - - bplist-parser@0.3.1: - resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==} - engines: {node: '>= 5.10.0'} - bplist-parser@0.3.2: resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==} engines: {node: '>= 5.10.0'} @@ -1413,10 +1056,6 @@ packages: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - chalk@4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} @@ -1487,16 +1126,10 @@ packages: resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} @@ -1515,9 +1148,9 @@ packages: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} - commander@9.5.0: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} - engines: {node: ^12.20.0 || >=14} + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} common-ancestor-path@1.0.1: resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} @@ -1525,12 +1158,6 @@ packages: compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} - compare-versions@6.1.1: - resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==} - - computeds@0.0.1: - resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==} - concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -1538,9 +1165,6 @@ packages: resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} engines: {'0': node >= 6.0} - confbox@0.1.8: - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} - console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} @@ -1575,18 +1199,6 @@ packages: engines: {node: '>=14'} hasBin: true - cordova-android@13.0.0: - resolution: {integrity: sha512-uQG+cSyrB1NMi2aIzihldIupHB9WGpZVvrMMMAAtnyc6tDlEk7gweSSaFsEONyGAnteRYpIvrzg/YwDW08PcUg==} - engines: {node: '>=16.13.0'} - - cordova-common@5.0.0: - resolution: {integrity: sha512-6Aa7o52/iEvsKx6K94ijzFel5acCULR49KL27OUVhEpJ4oS7Dc3y2eOP1Eu0P4Wmiw/eLEDQjGXGiAa2D5zFZA==} - engines: {node: '>=16.0.0'} - - cordova-ios@7.1.1: - resolution: {integrity: sha512-JwTyPxWcAZlbIOR5QO6TaJzkoSzfrp7jrlX01bWZ7Sxp0PYXejAJbA6J0W4u11M+atrQRNimNltZDyAlSBW2tw==} - engines: {node: '>=16.13.0'} - core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -1627,9 +1239,6 @@ packages: dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} - de-indent@1.0.2: - resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} - debug@3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: @@ -1655,9 +1264,6 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} - dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - dedent@1.5.3: resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} peerDependencies: @@ -1754,21 +1360,10 @@ packages: end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} - endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} - enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} - enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} - - entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} @@ -1876,38 +1471,16 @@ packages: resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} - - eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} - - eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - eslint-visitor-keys@3.4.3: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint@7.32.0: - resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} - engines: {node: ^10.12.0 || >=12.0.0} - deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. - hasBin: true - eslint@8.57.1: resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true - espree@7.3.1: - resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} - engines: {node: ^10.12.0 || >=12.0.0} - espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1933,9 +1506,6 @@ packages: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -1947,10 +1517,6 @@ packages: resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} engines: {node: '>=10'} - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - exponential-backoff@3.1.1: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} @@ -1958,10 +1524,6 @@ packages: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} - extsprintf@1.4.1: - resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==} - engines: {'0': node >=0.6.0} - fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -1969,18 +1531,12 @@ packages: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} - fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} - fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-uri@3.0.3: - resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} - fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} @@ -2055,10 +1611,6 @@ packages: resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} engines: {node: '>=14.14'} - fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -2086,9 +1638,6 @@ packages: resolution: {integrity: sha512-2g4x+HqTJKM9zcJqBSpjoRmdcPFtJM60J3xJisTQSXBWka5XqyBN/2tNUgma1mztTXyDuUsEtYe5qcs7xYzYQA==} engines: {node: '>= 0.4'} - functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} @@ -2113,10 +1662,6 @@ packages: resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} engines: {node: '>=10'} - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - get-symbol-description@1.0.2: resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} @@ -2206,10 +1751,6 @@ packages: has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} @@ -2236,10 +1777,6 @@ packages: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} - he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} @@ -2281,10 +1818,6 @@ packages: resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} - ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} @@ -2293,10 +1826,6 @@ packages: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} - import-lazy@4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} - import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} engines: {node: '>=8'} @@ -2336,15 +1865,6 @@ packages: resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} engines: {node: '>= 0.4'} - interpret@1.4.0: - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} - engines: {node: '>= 0.10'} - - ios-sim@8.0.2: - resolution: {integrity: sha512-P7nEG771bfd+JoMRjnis1gpZOkjTUUxu+4Ek1Z+eoaEEoT9byllU9pxfQ8Df7hL3gSkIQxNwTSLhos2I8tWUQA==} - engines: {node: '>=6'} - hasBin: true - ip-address@9.0.5: resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} engines: {node: '>= 12'} @@ -2475,10 +1995,6 @@ packages: resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} engines: {node: '>=8'} - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - is-string@1.1.1: resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} engines: {node: '>= 0.4'} @@ -2555,9 +2071,6 @@ packages: resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -2588,9 +2101,6 @@ packages: json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} @@ -2612,9 +2122,6 @@ packages: jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} - jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} @@ -2643,9 +2150,6 @@ packages: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} - kolorist@1.8.0: - resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} - lerna@8.1.9: resolution: {integrity: sha512-ZRFlRUBB2obm+GkbTR7EbgTMuAdni6iwtTQTMy7LIrQ4UInG44LyfRepljtgUxh4HA0ltzsvWfPkd5J1DKGCeQ==} engines: {node: '>=18.0.0'} @@ -2678,10 +2182,6 @@ packages: resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} engines: {node: '>=8'} - local-pkg@0.5.1: - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} - engines: {node: '>=14'} - locate-path@2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} @@ -2697,33 +2197,12 @@ packages: lodash-es@4.17.21: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - lodash.assign@4.2.0: - resolution: {integrity: sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==} - - lodash.get@4.4.2: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} - - lodash.isdate@4.0.1: - resolution: {integrity: sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==} - - lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - lodash.ismatch@4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} - lodash.isobject@3.0.2: - resolution: {integrity: sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==} - lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - - lodash.zip@4.2.0: - resolution: {integrity: sha512-C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg==} - lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} @@ -2742,9 +2221,6 @@ packages: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -2807,9 +2283,6 @@ packages: minimatch@3.0.5: resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} - minimatch@3.0.8: - resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -2881,9 +2354,6 @@ packages: engines: {node: '>=10'} hasBin: true - mlly@1.7.3: - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} - modify-values@1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} engines: {node: '>=0.10.0'} @@ -2891,12 +2361,6 @@ packages: ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - muggle-string@0.3.1: - resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==} - - muggle-string@0.4.1: - resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} - multimatch@5.0.0: resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} engines: {node: '>=10'} @@ -2948,10 +2412,6 @@ packages: node-machine-id@1.1.12: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} - nopt@1.0.9: - resolution: {integrity: sha512-CmUZ3rzN0/4kRHum5pGRiGkhmBMzgtEDxrZVHqRJDSv8qK6s+wzaig/xeyB22Due5aZQeTiEZg/nrmMH2tapDQ==} - hasBin: true - nopt@7.2.1: resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -3036,9 +2496,6 @@ packages: resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} engines: {node: '>= 0.4'} - objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -3160,9 +2617,6 @@ packages: parse-url@8.1.0: resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} - path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} @@ -3198,9 +2652,6 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} @@ -3211,10 +2662,6 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - picomatch@4.0.2: - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} - engines: {node: '>=12'} - pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -3235,9 +2682,6 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - pkg-types@1.3.0: - resolution: {integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==} - plist@3.1.0: resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==} engines: {node: '>=10.4.0'} @@ -3261,11 +2705,6 @@ packages: prettier-plugin-java@2.6.5: resolution: {integrity: sha512-2RkPNXyYpP5dRhr04pz45n+e5LXwYWTh1JXrztiCkZTGGokIGYrfwUuGa8csnDoGbP6CDPgVm8zZSIm/9I0SRQ==} - prettier@2.3.2: - resolution: {integrity: sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==} - engines: {node: '>=10.13.0'} - hasBin: true - prettier@3.2.5: resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} engines: {node: '>=14'} @@ -3291,10 +2730,6 @@ packages: resolution: {integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} - promise-all-reject-late@1.0.1: resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} @@ -3321,10 +2756,6 @@ packages: resolution: {integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - properties-parser@0.6.0: - resolution: {integrity: sha512-qvr2cSmoA0dln0MARAKwBzPkkXn7FqwX+RVVNpMdMJc7rt9mqO2cXwluxtux9fHrLhjnPFaQkS8BM0kFrTCnSw==} - engines: {node: '>= 0.3.1'} - protocols@2.0.1: resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} @@ -3335,13 +2766,6 @@ packages: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} - q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - deprecated: |- - You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) - queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -3352,10 +2776,6 @@ packages: react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - read-chunk@3.2.0: - resolution: {integrity: sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==} - engines: {node: '>=6'} - read-cmd-shim@4.0.0: resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -3391,10 +2811,6 @@ packages: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} - rechoir@0.6.2: - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} - engines: {node: '>= 0.10'} - redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -3407,18 +2823,10 @@ packages: resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} - regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - resolve-cwd@3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} engines: {node: '>=8'} @@ -3431,9 +2839,6 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - resolve@1.19.0: - resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} - resolve@1.22.9: resolution: {integrity: sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==} hasBin: true @@ -3511,11 +2916,6 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - semver@7.6.3: resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} @@ -3544,11 +2944,6 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - shelljs@0.8.5: - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} - engines: {node: '>=4'} - hasBin: true - side-channel-list@1.0.0: resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} engines: {node: '>= 0.4'} @@ -3576,12 +2971,6 @@ packages: resolution: {integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==} engines: {node: ^16.14.0 || >=18.0.0} - simctl@2.0.3: - resolution: {integrity: sha512-kKCak0yszxHae5eVWcmrjV3ouUGac3sjlhjdLWpyPu4eiQcWoHsCrqS34kkgzHN8Ystqkh/LFjzrldk/g3BYJg==} - - simple-plist@1.3.1: - resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==} - sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -3649,14 +3038,6 @@ packages: resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - stream-buffers@2.2.0: - resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==} - engines: {node: '>= 0.10.0'} - - string-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} - string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -3716,18 +3097,10 @@ packages: engines: {node: '>=4'} hasBin: true - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} - supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} @@ -3736,14 +3109,6 @@ packages: resolution: {integrity: sha512-MMVuyZ4/6WcIJlk0z6GM0pZjRuwnyUJqRPbJBFW3oACN/qjAvRbolCWEu+zE2MycF/cEgqfUpI+oLECNfjfOJA==} hasBin: true - table@6.9.0: - resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} - engines: {node: '>=10.0.0'} - - tail@0.4.0: - resolution: {integrity: sha512-i5rOhX0PwkFSbjID14mmuoqrLUIqpJeBwg0esugSbb+6Y+dzgN/O3YZXzzPL7dnQJGbQLs8cwM8Zsak5kFJGcA==} - engines: {node: '>= 0.4.0'} - tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} @@ -3874,19 +3239,11 @@ packages: engines: {node: '>=4.2.0'} hasBin: true - typescript@5.4.2: - resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} - engines: {node: '>=14.17'} - hasBin: true - typescript@5.4.5: resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} engines: {node: '>=14.17'} hasBin: true - ufo@1.5.4: - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} - uglify-js@3.19.3: resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} @@ -3910,10 +3267,6 @@ packages: universal-user-agent@6.0.1: resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} - universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - universalify@2.0.1: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} @@ -3936,17 +3289,6 @@ packages: resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} hasBin: true - uuid@11.0.3: - resolution: {integrity: sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==} - hasBin: true - - uuid@7.0.3: - resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==} - hasBin: true - - v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} - validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -3954,30 +3296,6 @@ packages: resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - validator@13.12.0: - resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==} - engines: {node: '>= 0.10'} - - vite-plugin-dts@3.9.1: - resolution: {integrity: sha512-rVp2KM9Ue22NGWB8dNtWEr+KekN3rIgz1tWD050QnRGlriUCmaDwa7qA5zDEjbXg5lAXhYMSBJtx3q3hQIJZSg==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - typescript: '*' - vite: '*' - peerDependenciesMeta: - vite: - optional: true - - vite-plugin-dts@4.4.0: - resolution: {integrity: sha512-CJ6phvnnPLF+aFk8Jz2ZcMBLleJ4gKJOXb9We5Kzmsp5bPuD+uMDeVefjFNYSXZ+wdcqnf+Yp2P7oA5hBKQTlQ==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - typescript: '*' - vite: '*' - peerDependenciesMeta: - vite: - optional: true - vite@5.4.11: resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} engines: {node: ^18.0.0 || >=20.0.0} @@ -4009,18 +3327,6 @@ packages: terser: optional: true - vscode-uri@3.0.8: - resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} - - vue-template-compiler@2.7.16: - resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} - - vue-tsc@1.8.27: - resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==} - hasBin: true - peerDependencies: - typescript: '*' - walk-up-path@3.0.1: resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==} @@ -4062,10 +3368,6 @@ packages: wide-align@1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - with-open-file@0.1.7: - resolution: {integrity: sha512-ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA==} - engines: {node: '>=6'} - word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} @@ -4103,15 +3405,8 @@ packages: resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} engines: {node: '>=8'} - xcode@3.0.1: - resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==} - engines: {node: '>=10.0.0'} - - xml-escape@1.1.0: - resolution: {integrity: sha512-B/T4sDK8Z6aUh/qNr7mjKAwwncIljFuUP+DO/D5hloYFj+90O88z8Wf7oSucZTHxBAsC1/CTP4rtx/x1Uf72Mg==} - - xml2js@0.5.0: - resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} + xml2js@0.6.2: + resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} engines: {node: '>=4.0.0'} xmlbuilder@11.0.1: @@ -4161,74 +3456,47 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - z-schema@5.0.5: - resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==} - engines: {node: '>=8.0.0'} - hasBin: true - snapshots: - '@babel/code-frame@7.12.11': - dependencies: - '@babel/highlight': 7.25.9 - '@babel/code-frame@7.26.2': dependencies: '@babel/helper-validator-identifier': 7.25.9 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/helper-string-parser@7.25.9': {} - '@babel/helper-validator-identifier@7.25.9': {} - '@babel/highlight@7.25.9': + '@capacitor/android@7.0.0-rc.0(@capacitor/core@7.0.0-rc.0)': dependencies: - '@babel/helper-validator-identifier': 7.25.9 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 + '@capacitor/core': 7.0.0-rc.0 - '@babel/parser@7.26.3': + '@capacitor/camera@7.0.0-rc.0(@capacitor/core@7.0.0-rc.0)': dependencies: - '@babel/types': 7.26.3 + '@capacitor/core': 7.0.0-rc.0 - '@babel/types@7.26.3': - dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - - '@capacitor/android@6.2.0(@capacitor/core@6.2.0)': - dependencies: - '@capacitor/core': 6.2.0 - - '@capacitor/camera@6.1.2(@capacitor/core@6.2.0)': - dependencies: - '@capacitor/core': 6.2.0 - - '@capacitor/cli@6.2.0': + '@capacitor/cli@7.0.0-rc.0': dependencies: '@ionic/cli-framework-output': 2.2.8 - '@ionic/utils-fs': 3.1.7 - '@ionic/utils-subprocess': 2.1.11 + '@ionic/utils-subprocess': 3.0.1 '@ionic/utils-terminal': 2.3.5 - commander: 9.5.0 + commander: 12.1.0 debug: 4.4.0 env-paths: 2.2.1 + fs-extra: 11.2.0 kleur: 4.1.5 native-run: 2.0.1 open: 8.4.2 plist: 3.1.0 prompts: 2.4.2 - rimraf: 4.4.1 + rimraf: 6.0.1 semver: 7.6.3 tar: 6.2.1 tslib: 2.8.1 - xml2js: 0.5.0 + xml2js: 0.6.2 transitivePeerDependencies: - supports-color - '@capacitor/core@6.2.0': + '@capacitor/core@7.0.0-rc.0': dependencies: tslib: 2.8.1 @@ -4240,13 +3508,13 @@ snapshots: minimist: 1.2.8 typescript: 4.2.4 - '@capacitor/ios@6.2.0(@capacitor/core@6.2.0)': + '@capacitor/ios@7.0.0-rc.0(@capacitor/core@7.0.0-rc.0)': dependencies: - '@capacitor/core': 6.2.0 + '@capacitor/core': 7.0.0-rc.0 - '@capacitor/splash-screen@6.0.3(@capacitor/core@6.2.0)': + '@capacitor/splash-screen@7.0.0-rc.0(@capacitor/core@7.0.0-rc.0)': dependencies: - '@capacitor/core': 6.2.0 + '@capacitor/core': 7.0.0-rc.0 '@capacitor/synapse@1.0.1': {} @@ -4356,20 +3624,6 @@ snapshots: '@eslint-community/regexpp@4.12.1': {} - '@eslint/eslintrc@0.4.3': - dependencies: - ajv: 6.12.6 - debug: 4.4.0 - espree: 7.3.1 - globals: 13.24.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - js-yaml: 3.14.1 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 @@ -4394,18 +3648,8 @@ snapshots: transitivePeerDependencies: - supports-color - '@humanwhocodes/config-array@0.5.0': - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.4.0 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/object-schema@1.2.1': {} - '@humanwhocodes/object-schema@2.0.3': {} '@hutson/parse-repository-url@3.0.2': {} @@ -4437,13 +3681,6 @@ snapshots: '@ionic/swiftlint-config@2.0.0': {} - '@ionic/utils-array@2.1.5': - dependencies: - debug: 4.4.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@ionic/utils-array@2.1.6': dependencies: debug: 4.4.0 @@ -4451,15 +3688,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@ionic/utils-fs@3.1.6': - dependencies: - '@types/fs-extra': 8.1.5 - debug: 4.4.0 - fs-extra: 9.1.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@ionic/utils-fs@3.1.7': dependencies: '@types/fs-extra': 8.1.5 @@ -4469,13 +3697,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@ionic/utils-object@2.1.5': - dependencies: - debug: 4.4.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@ionic/utils-object@2.1.6': dependencies: debug: 4.4.0 @@ -4483,17 +3704,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@ionic/utils-process@2.1.10': - dependencies: - '@ionic/utils-object': 2.1.5 - '@ionic/utils-terminal': 2.3.3 - debug: 4.4.0 - signal-exit: 3.0.7 - tree-kill: 1.2.2 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@ionic/utils-process@2.1.12': dependencies: '@ionic/utils-object': 2.1.6 @@ -4505,13 +3715,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@ionic/utils-stream@3.1.5': - dependencies: - debug: 4.4.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@ionic/utils-stream@3.1.7': dependencies: debug: 4.4.0 @@ -4519,19 +3722,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@ionic/utils-subprocess@2.1.11': - dependencies: - '@ionic/utils-array': 2.1.5 - '@ionic/utils-fs': 3.1.6 - '@ionic/utils-process': 2.1.10 - '@ionic/utils-stream': 3.1.5 - '@ionic/utils-terminal': 2.3.3 - cross-spawn: 7.0.6 - debug: 4.4.0 - tslib: 2.8.1 - transitivePeerDependencies: - - supports-color - '@ionic/utils-subprocess@3.0.1': dependencies: '@ionic/utils-array': 2.1.6 @@ -4545,20 +3735,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@ionic/utils-terminal@2.3.3': - dependencies: - '@types/slice-ansi': 4.0.0 - debug: 4.4.0 - signal-exit: 3.0.7 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - tslib: 2.8.1 - untildify: 4.0.0 - wrap-ansi: 7.0.0 - transitivePeerDependencies: - - supports-color - '@ionic/utils-terminal@2.3.5': dependencies: '@types/slice-ansi': 4.0.0 @@ -4588,8 +3764,6 @@ snapshots: dependencies: '@sinclair/typebox': 0.27.8 - '@jridgewell/sourcemap-codec@1.5.0': {} - '@lerna/create@8.1.9(encoding@0.1.13)(typescript@5.4.5)': dependencies: '@npmcli/arborist': 7.5.4 @@ -4673,88 +3847,12 @@ snapshots: - supports-color - typescript - '@microsoft/api-extractor-model@7.28.13(@types/node@20.17.10)': - dependencies: - '@microsoft/tsdoc': 0.14.2 - '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 4.0.2(@types/node@20.17.10) - transitivePeerDependencies: - - '@types/node' - - '@microsoft/api-extractor-model@7.30.1(@types/node@20.17.10)': - dependencies: - '@microsoft/tsdoc': 0.15.1 - '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.10.1(@types/node@20.17.10) - transitivePeerDependencies: - - '@types/node' - - '@microsoft/api-extractor@7.43.0(@types/node@20.17.10)': - dependencies: - '@microsoft/api-extractor-model': 7.28.13(@types/node@20.17.10) - '@microsoft/tsdoc': 0.14.2 - '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 4.0.2(@types/node@20.17.10) - '@rushstack/rig-package': 0.5.2 - '@rushstack/terminal': 0.10.0(@types/node@20.17.10) - '@rushstack/ts-command-line': 4.19.1(@types/node@20.17.10) - lodash: 4.17.21 - minimatch: 3.0.8 - resolve: 1.22.9 - semver: 7.5.4 - source-map: 0.6.1 - typescript: 5.4.2 - transitivePeerDependencies: - - '@types/node' - - '@microsoft/api-extractor@7.48.1(@types/node@20.17.10)': - dependencies: - '@microsoft/api-extractor-model': 7.30.1(@types/node@20.17.10) - '@microsoft/tsdoc': 0.15.1 - '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.10.1(@types/node@20.17.10) - '@rushstack/rig-package': 0.5.3 - '@rushstack/terminal': 0.14.4(@types/node@20.17.10) - '@rushstack/ts-command-line': 4.23.2(@types/node@20.17.10) - lodash: 4.17.21 - minimatch: 3.0.8 - resolve: 1.22.9 - semver: 7.5.4 - source-map: 0.6.1 - typescript: 5.4.2 - transitivePeerDependencies: - - '@types/node' - - '@microsoft/tsdoc-config@0.16.2': - dependencies: - '@microsoft/tsdoc': 0.14.2 - ajv: 6.12.6 - jju: 1.4.0 - resolve: 1.19.0 - - '@microsoft/tsdoc-config@0.17.1': - dependencies: - '@microsoft/tsdoc': 0.15.1 - ajv: 8.12.0 - jju: 1.4.0 - resolve: 1.22.9 - - '@microsoft/tsdoc@0.14.2': {} - - '@microsoft/tsdoc@0.15.1': {} - '@napi-rs/wasm-runtime@0.2.4': dependencies: '@emnapi/core': 1.3.1 '@emnapi/runtime': 1.3.1 '@tybys/wasm-util': 0.9.0 - '@netflix/nerror@1.1.3': - dependencies: - assert-plus: 1.0.0 - extsprintf: 1.4.1 - lodash: 4.17.21 - '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -5025,23 +4123,6 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@rollup/plugin-typescript@11.1.6(rollup@4.28.1)(tslib@2.8.1)(typescript@5.4.5)': - dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.28.1) - resolve: 1.22.9 - typescript: 5.4.5 - optionalDependencies: - rollup: 4.28.1 - tslib: 2.8.1 - - '@rollup/pluginutils@5.1.4(rollup@4.28.1)': - dependencies: - '@types/estree': 1.0.6 - estree-walker: 2.0.2 - picomatch: 4.0.2 - optionalDependencies: - rollup: 4.28.1 - '@rollup/rollup-android-arm-eabi@4.28.1': optional: true @@ -5101,72 +4182,6 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@rushstack/node-core-library@4.0.2(@types/node@20.17.10)': - dependencies: - fs-extra: 7.0.1 - import-lazy: 4.0.0 - jju: 1.4.0 - resolve: 1.22.9 - semver: 7.5.4 - z-schema: 5.0.5 - optionalDependencies: - '@types/node': 20.17.10 - - '@rushstack/node-core-library@5.10.1(@types/node@20.17.10)': - dependencies: - ajv: 8.13.0 - ajv-draft-04: 1.0.0(ajv@8.13.0) - ajv-formats: 3.0.1(ajv@8.13.0) - fs-extra: 7.0.1 - import-lazy: 4.0.0 - jju: 1.4.0 - resolve: 1.22.9 - semver: 7.5.4 - optionalDependencies: - '@types/node': 20.17.10 - - '@rushstack/rig-package@0.5.2': - dependencies: - resolve: 1.22.9 - strip-json-comments: 3.1.1 - - '@rushstack/rig-package@0.5.3': - dependencies: - resolve: 1.22.9 - strip-json-comments: 3.1.1 - - '@rushstack/terminal@0.10.0(@types/node@20.17.10)': - dependencies: - '@rushstack/node-core-library': 4.0.2(@types/node@20.17.10) - supports-color: 8.1.1 - optionalDependencies: - '@types/node': 20.17.10 - - '@rushstack/terminal@0.14.4(@types/node@20.17.10)': - dependencies: - '@rushstack/node-core-library': 5.10.1(@types/node@20.17.10) - supports-color: 8.1.1 - optionalDependencies: - '@types/node': 20.17.10 - - '@rushstack/ts-command-line@4.19.1(@types/node@20.17.10)': - dependencies: - '@rushstack/terminal': 0.10.0(@types/node@20.17.10) - '@types/argparse': 1.0.38 - argparse: 1.0.10 - string-argv: 0.3.2 - transitivePeerDependencies: - - '@types/node' - - '@rushstack/ts-command-line@4.23.2(@types/node@20.17.10)': - dependencies: - '@rushstack/terminal': 0.14.4(@types/node@20.17.10) - '@types/argparse': 1.0.38 - argparse: 1.0.10 - string-argv: 0.3.2 - transitivePeerDependencies: - - '@types/node' - '@sigstore/bundle@2.3.2': dependencies: '@sigstore/protobuf-specs': 0.3.2 @@ -5212,10 +4227,6 @@ snapshots: dependencies: tslib: 2.8.1 - '@types/argparse@1.0.38': {} - - '@types/cordova@11.0.3': {} - '@types/estree@1.0.6': {} '@types/fs-extra@8.1.5': @@ -5326,79 +4337,7 @@ snapshots: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - '@ungap/structured-clone@1.2.1': {} - - '@volar/language-core@1.11.1': - dependencies: - '@volar/source-map': 1.11.1 - - '@volar/language-core@2.4.11': - dependencies: - '@volar/source-map': 2.4.11 - - '@volar/source-map@1.11.1': - dependencies: - muggle-string: 0.3.1 - - '@volar/source-map@2.4.11': {} - - '@volar/typescript@1.11.1': - dependencies: - '@volar/language-core': 1.11.1 - path-browserify: 1.0.1 - - '@volar/typescript@2.4.11': - dependencies: - '@volar/language-core': 2.4.11 - path-browserify: 1.0.1 - vscode-uri: 3.0.8 - - '@vue/compiler-core@3.5.13': - dependencies: - '@babel/parser': 7.26.3 - '@vue/shared': 3.5.13 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.1 - - '@vue/compiler-dom@3.5.13': - dependencies: - '@vue/compiler-core': 3.5.13 - '@vue/shared': 3.5.13 - - '@vue/compiler-vue2@2.7.16': - dependencies: - de-indent: 1.0.2 - he: 1.2.0 - - '@vue/language-core@1.8.27(typescript@5.4.5)': - dependencies: - '@volar/language-core': 1.11.1 - '@volar/source-map': 1.11.1 - '@vue/compiler-dom': 3.5.13 - '@vue/shared': 3.5.13 - computeds: 0.0.1 - minimatch: 9.0.5 - muggle-string: 0.3.1 - path-browserify: 1.0.1 - vue-template-compiler: 2.7.16 - optionalDependencies: - typescript: 5.4.5 - - '@vue/language-core@2.1.10(typescript@5.4.5)': - dependencies: - '@volar/language-core': 2.4.11 - '@vue/compiler-dom': 3.5.13 - '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.5.13 - alien-signals: 0.2.2 - minimatch: 9.0.5 - muggle-string: 0.4.1 - path-browserify: 1.0.1 - optionalDependencies: - typescript: 5.4.5 - - '@vue/shared@3.5.13': {} + '@ungap/structured-clone@1.2.1': {} '@xmldom/xmldom@0.8.10': {} @@ -5418,20 +4357,12 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 - abbrev@1.1.1: {} - abbrev@2.0.0: {} - acorn-jsx@5.3.2(acorn@7.4.1): - dependencies: - acorn: 7.4.1 - acorn-jsx@5.3.2(acorn@8.14.0): dependencies: acorn: 8.14.0 - acorn@7.4.1: {} - acorn@8.14.0: {} add-stream@1.0.0: {} @@ -5443,14 +4374,6 @@ snapshots: clean-stack: 2.2.0 indent-string: 4.0.0 - ajv-draft-04@1.0.0(ajv@8.13.0): - optionalDependencies: - ajv: 8.13.0 - - ajv-formats@3.0.1(ajv@8.13.0): - optionalDependencies: - ajv: 8.13.0 - ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 @@ -5458,33 +4381,6 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.12.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - - ajv@8.13.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - - ajv@8.17.1: - dependencies: - fast-deep-equal: 3.1.3 - fast-uri: 3.0.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - - alien-signals@0.2.2: {} - - android-versions@2.0.0: - dependencies: - semver: 7.6.3 - ansi-colors@4.1.3: {} ansi-escapes@4.3.2: @@ -5495,10 +4391,6 @@ snapshots: ansi-regex@6.1.0: {} - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 @@ -5507,8 +4399,6 @@ snapshots: ansi-styles@6.2.1: {} - ansi@0.3.1: {} - aproba@2.0.0: {} argparse@1.0.10: @@ -5574,8 +4464,6 @@ snapshots: arrify@2.0.1: {} - assert-plus@1.0.0: {} - astral-regex@2.0.0: {} async@3.2.6: {} @@ -5617,16 +4505,6 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - bplist-creator@0.1.0: - dependencies: - stream-buffers: 2.2.0 - - bplist-parser@0.0.6: {} - - bplist-parser@0.3.1: - dependencies: - big-integer: 1.6.52 - bplist-parser@0.3.2: dependencies: big-integer: 1.6.52 @@ -5697,12 +4575,6 @@ snapshots: camelcase@5.3.1: {} - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - chalk@4.1.0: dependencies: ansi-styles: 4.3.0 @@ -5769,16 +4641,10 @@ snapshots: cmd-shim@6.0.3: {} - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - color-convert@2.0.1: dependencies: color-name: 1.1.4 - color-name@1.1.3: {} - color-name@1.1.4: {} color-support@1.1.3: {} @@ -5794,7 +4660,7 @@ snapshots: dependencies: delayed-stream: 1.0.0 - commander@9.5.0: {} + commander@12.1.0: {} common-ancestor-path@1.0.1: {} @@ -5803,10 +4669,6 @@ snapshots: array-ify: 1.0.0 dot-prop: 5.3.0 - compare-versions@6.1.1: {} - - computeds@0.0.1: {} - concat-map@0.0.1: {} concat-stream@2.0.0: @@ -5816,8 +4678,6 @@ snapshots: readable-stream: 3.6.2 typedarray: 0.0.6 - confbox@0.1.8: {} - console-control-strings@1.1.0: {} conventional-changelog-angular@7.0.0: @@ -5872,56 +4732,6 @@ snapshots: git-semver-tags: 5.0.1 meow: 8.1.2 - cordova-android@13.0.0: - dependencies: - android-versions: 2.0.0 - cordova-common: 5.0.0 - dedent: 1.5.3 - execa: 5.1.1 - fast-glob: 3.3.2 - fs-extra: 11.2.0 - is-path-inside: 3.0.3 - nopt: 7.2.1 - properties-parser: 0.6.0 - semver: 7.6.3 - string-argv: 0.3.2 - untildify: 4.0.0 - which: 4.0.0 - transitivePeerDependencies: - - babel-plugin-macros - - cordova-common@5.0.0: - dependencies: - '@netflix/nerror': 1.1.3 - ansi: 0.3.1 - bplist-parser: 0.3.2 - cross-spawn: 7.0.6 - elementtree: 0.1.7 - endent: 2.1.0 - fast-glob: 3.3.2 - fs-extra: 11.2.0 - glob: 7.2.3 - lodash.assign: 4.2.0 - lodash.isdate: 4.0.1 - lodash.isobject: 3.0.2 - lodash.zip: 4.2.0 - plist: 3.1.0 - q: 1.5.1 - read-chunk: 3.2.0 - strip-bom: 4.0.0 - - cordova-ios@7.1.1: - dependencies: - cordova-common: 5.0.0 - elementtree: 0.1.7 - execa: 5.1.1 - ios-sim: 8.0.2 - plist: 3.1.0 - semver: 7.6.3 - which: 4.0.0 - xcode: 3.0.1 - xml-escape: 1.1.0 - core-util-is@1.0.3: {} cosmiconfig@9.0.0(typescript@5.4.5): @@ -5963,8 +4773,6 @@ snapshots: dateformat@3.0.3: {} - de-indent@1.0.2: {} - debug@3.2.7: dependencies: ms: 2.1.3 @@ -5980,8 +4788,6 @@ snapshots: decamelize@1.2.0: {} - dedent@0.7.0: {} - dedent@1.5.3: {} deep-is@0.1.4: {} @@ -6065,23 +4871,10 @@ snapshots: dependencies: once: 1.4.0 - endent@2.1.0: - dependencies: - dedent: 0.7.0 - fast-json-parse: 1.0.3 - objectorarray: 1.0.5 - enquirer@2.3.6: dependencies: ansi-colors: 4.1.3 - enquirer@2.4.1: - dependencies: - ansi-colors: 4.1.3 - strip-ansi: 6.0.1 - - entities@4.5.0: {} - env-paths@2.2.1: {} envinfo@7.13.0: {} @@ -6260,61 +5053,8 @@ snapshots: esrecurse: 4.3.0 estraverse: 5.3.0 - eslint-utils@2.1.0: - dependencies: - eslint-visitor-keys: 1.3.0 - - eslint-visitor-keys@1.3.0: {} - - eslint-visitor-keys@2.1.0: {} - eslint-visitor-keys@3.4.3: {} - eslint@7.32.0: - dependencies: - '@babel/code-frame': 7.12.11 - '@eslint/eslintrc': 0.4.3 - '@humanwhocodes/config-array': 0.5.0 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.4.0 - doctrine: 3.0.0 - enquirer: 2.4.1 - escape-string-regexp: 4.0.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 2.1.0 - espree: 7.3.1 - esquery: 1.6.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - functional-red-black-tree: 1.0.1 - glob-parent: 5.1.2 - globals: 13.24.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - js-yaml: 3.14.1 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.4 - progress: 2.0.3 - regexpp: 3.2.0 - semver: 7.6.3 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - table: 6.9.0 - text-table: 0.2.0 - v8-compile-cache: 2.4.0 - transitivePeerDependencies: - - supports-color - eslint@8.57.1: dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) @@ -6358,12 +5098,6 @@ snapshots: transitivePeerDependencies: - supports-color - espree@7.3.1: - dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - eslint-visitor-keys: 1.3.0 - espree@9.6.1: dependencies: acorn: 8.14.0 @@ -6384,8 +5118,6 @@ snapshots: estraverse@5.3.0: {} - estree-walker@2.0.2: {} - esutils@2.0.3: {} eventemitter3@4.0.7: {} @@ -6402,18 +5134,6 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - execa@5.1.1: - dependencies: - cross-spawn: 7.0.6 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - exponential-backoff@3.1.1: {} external-editor@3.1.0: @@ -6422,8 +5142,6 @@ snapshots: iconv-lite: 0.4.24 tmp: 0.0.33 - extsprintf@1.4.1: {} - fast-deep-equal@3.1.3: {} fast-glob@3.3.2: @@ -6434,14 +5152,10 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.8 - fast-json-parse@1.0.3: {} - fast-json-stable-stringify@2.1.0: {} fast-levenshtein@2.0.6: {} - fast-uri@3.0.3: {} - fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -6519,12 +5233,6 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 - fs-extra@7.0.1: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 @@ -6555,8 +5263,6 @@ snapshots: hasown: 2.0.2 is-callable: 1.2.7 - functional-red-black-tree@1.0.1: {} - functions-have-names@1.2.3: {} get-caller-file@2.0.5: {} @@ -6585,8 +5291,6 @@ snapshots: get-stream@6.0.0: {} - get-stream@6.0.1: {} - get-symbol-description@1.0.2: dependencies: call-bind: 1.0.8 @@ -6703,8 +5407,6 @@ snapshots: has-bigints@1.0.2: {} - has-flag@3.0.0: {} - has-flag@4.0.0: {} has-property-descriptors@1.0.2: @@ -6727,8 +5429,6 @@ snapshots: dependencies: function-bind: 1.1.2 - he@1.2.0: {} - hosted-git-info@2.8.9: {} hosted-git-info@4.1.0: @@ -6772,8 +5472,6 @@ snapshots: dependencies: minimatch: 9.0.5 - ignore@4.0.6: {} - ignore@5.3.2: {} import-fresh@3.3.0: @@ -6781,8 +5479,6 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 - import-lazy@4.0.0: {} - import-local@3.1.0: dependencies: pkg-dir: 4.2.0 @@ -6839,15 +5535,6 @@ snapshots: hasown: 2.0.2 side-channel: 1.1.0 - interpret@1.4.0: {} - - ios-sim@8.0.2: - dependencies: - bplist-parser: 0.0.6 - nopt: 1.0.9 - plist: 3.1.0 - simctl: 2.0.3 - ip-address@9.0.5: dependencies: jsbn: 1.1.0 @@ -6958,8 +5645,6 @@ snapshots: is-stream@2.0.0: {} - is-stream@2.0.1: {} - is-string@1.1.1: dependencies: call-bound: 1.0.3 @@ -7038,8 +5723,6 @@ snapshots: jest-get-type@29.6.3: {} - jju@1.4.0: {} - js-tokens@4.0.0: {} js-yaml@3.14.1: @@ -7063,8 +5746,6 @@ snapshots: json-schema-traverse@0.4.1: {} - json-schema-traverse@1.0.0: {} - json-stable-stringify-without-jsonify@1.0.1: {} json-stringify-nice@1.1.4: {} @@ -7079,10 +5760,6 @@ snapshots: jsonc-parser@3.2.0: {} - jsonfile@4.0.0: - optionalDependencies: - graceful-fs: 4.2.11 - jsonfile@6.1.0: dependencies: universalify: 2.0.1 @@ -7105,8 +5782,6 @@ snapshots: kleur@4.1.5: {} - kolorist@1.8.0: {} - lerna@8.1.9(encoding@0.1.13): dependencies: '@lerna/create': 8.1.9(encoding@0.1.13)(typescript@5.4.5) @@ -7242,11 +5917,6 @@ snapshots: strip-bom: 4.0.0 type-fest: 0.6.0 - local-pkg@0.5.1: - dependencies: - mlly: 1.7.3 - pkg-types: 1.3.0 - locate-path@2.0.0: dependencies: p-locate: 2.0.0 @@ -7262,24 +5932,10 @@ snapshots: lodash-es@4.17.21: {} - lodash.assign@4.2.0: {} - - lodash.get@4.4.2: {} - - lodash.isdate@4.0.1: {} - - lodash.isequal@4.5.0: {} - lodash.ismatch@4.4.0: {} - lodash.isobject@3.0.2: {} - lodash.merge@4.6.2: {} - lodash.truncate@4.4.2: {} - - lodash.zip@4.2.0: {} - lodash@4.17.21: {} log-symbols@4.1.0: @@ -7295,10 +5951,6 @@ snapshots: dependencies: yallist: 4.0.0 - magic-string@0.30.17: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - make-dir@2.1.0: dependencies: pify: 4.0.1 @@ -7372,10 +6024,6 @@ snapshots: dependencies: brace-expansion: 1.1.11 - minimatch@3.0.8: - dependencies: - brace-expansion: 1.1.11 - minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -7445,21 +6093,10 @@ snapshots: mkdirp@1.0.4: {} - mlly@1.7.3: - dependencies: - acorn: 8.14.0 - pathe: 1.1.2 - pkg-types: 1.3.0 - ufo: 1.5.4 - modify-values@1.0.1: {} ms@2.1.3: {} - muggle-string@0.3.1: {} - - muggle-string@0.4.1: {} - multimatch@5.0.0: dependencies: '@types/minimatch': 3.0.5 @@ -7521,10 +6158,6 @@ snapshots: node-machine-id@1.1.12: {} - nopt@1.0.9: - dependencies: - abbrev: 1.1.1 - nopt@7.2.1: dependencies: abbrev: 2.0.0 @@ -7673,8 +6306,6 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.0.0 - objectorarray@1.0.5: {} - once@1.4.0: dependencies: wrappy: 1.0.2 @@ -7831,8 +6462,6 @@ snapshots: dependencies: parse-path: 7.0.0 - path-browserify@1.0.1: {} - path-exists@3.0.0: {} path-exists@4.0.0: {} @@ -7859,16 +6488,12 @@ snapshots: path-type@4.0.0: {} - pathe@1.1.2: {} - pend@1.2.0: {} picocolors@1.1.1: {} picomatch@2.3.1: {} - picomatch@4.0.2: {} - pify@2.3.0: {} pify@3.0.0: {} @@ -7881,12 +6506,6 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-types@1.3.0: - dependencies: - confbox: 0.1.8 - mlly: 1.7.3 - pathe: 1.1.2 - plist@3.1.0: dependencies: '@xmldom/xmldom': 0.8.10 @@ -7914,8 +6533,6 @@ snapshots: lodash: 4.17.21 prettier: 3.2.5 - prettier@2.3.2: {} - prettier@3.2.5: {} prettier@3.4.2: {} @@ -7932,8 +6549,6 @@ snapshots: proggy@2.0.0: {} - progress@2.0.3: {} - promise-all-reject-late@1.0.1: {} promise-call-limit@3.0.2: {} @@ -7954,27 +6569,18 @@ snapshots: dependencies: read: 3.0.1 - properties-parser@0.6.0: {} - protocols@2.0.1: {} proxy-from-env@1.1.0: {} punycode@2.3.1: {} - q@1.5.1: {} - queue-microtask@1.2.3: {} quick-lru@4.0.1: {} react-is@18.3.1: {} - read-chunk@3.2.0: - dependencies: - pify: 4.0.1 - with-open-file: 0.1.7 - read-cmd-shim@4.0.0: {} read-package-json-fast@3.0.2: @@ -8026,10 +6632,6 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 - rechoir@0.6.2: - dependencies: - resolve: 1.22.9 - redent@3.0.0: dependencies: indent-string: 4.0.0 @@ -8053,12 +6655,8 @@ snapshots: es-errors: 1.3.0 set-function-name: 2.0.2 - regexpp@3.2.0: {} - require-directory@2.1.1: {} - require-from-string@2.0.2: {} - resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 @@ -8067,11 +6665,6 @@ snapshots: resolve-from@5.0.0: {} - resolve@1.19.0: - dependencies: - is-core-module: 2.16.0 - path-parse: 1.0.7 - resolve@1.22.9: dependencies: is-core-module: 2.16.0 @@ -8163,10 +6756,6 @@ snapshots: semver@6.3.1: {} - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - semver@7.6.3: {} set-blocking@2.0.0: {} @@ -8197,12 +6786,6 @@ snapshots: shebang-regex@3.0.0: {} - shelljs@0.8.5: - dependencies: - glob: 7.2.3 - interpret: 1.4.0 - rechoir: 0.6.2 - side-channel-list@1.0.0: dependencies: es-errors: 1.3.0 @@ -8246,17 +6829,6 @@ snapshots: transitivePeerDependencies: - supports-color - simctl@2.0.3: - dependencies: - shelljs: 0.8.5 - tail: 0.4.0 - - simple-plist@1.3.1: - dependencies: - bplist-creator: 0.1.0 - bplist-parser: 0.3.1 - plist: 3.1.0 - sisteransi@1.0.5: {} slash@3.0.0: {} @@ -8322,10 +6894,6 @@ snapshots: dependencies: minipass: 7.1.2 - stream-buffers@2.2.0: {} - - string-argv@0.3.2: {} - string-width@4.2.3: dependencies: emoji-regex: 8.0.0 @@ -8395,18 +6963,10 @@ snapshots: minimist: 1.2.8 through: 2.3.8 - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - supports-color@7.2.0: dependencies: has-flag: 4.0.0 - supports-color@8.1.1: - dependencies: - has-flag: 4.0.0 - supports-preserve-symlinks-flag@1.0.0: {} swiftlint@2.0.0(typescript@5.4.5): @@ -8418,16 +6978,6 @@ snapshots: - supports-color - typescript - table@6.9.0: - dependencies: - ajv: 8.17.1 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - - tail@0.4.0: {} - tar-stream@2.2.0: dependencies: bl: 4.1.0 @@ -8563,12 +7113,8 @@ snapshots: typescript@4.2.4: {} - typescript@5.4.2: {} - typescript@5.4.5: {} - ufo@1.5.4: {} - uglify-js@3.19.3: optional: true @@ -8591,8 +7137,6 @@ snapshots: universal-user-agent@6.0.1: {} - universalify@0.1.2: {} - universalify@2.0.1: {} untildify@4.0.0: {} @@ -8607,12 +7151,6 @@ snapshots: uuid@10.0.0: {} - uuid@11.0.3: {} - - uuid@7.0.3: {} - - v8-compile-cache@2.4.0: {} - validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 @@ -8620,44 +7158,6 @@ snapshots: validate-npm-package-name@5.0.1: {} - validator@13.12.0: {} - - vite-plugin-dts@3.9.1(@types/node@20.17.10)(rollup@4.28.1)(typescript@5.4.5)(vite@5.4.11(@types/node@20.17.10)): - dependencies: - '@microsoft/api-extractor': 7.43.0(@types/node@20.17.10) - '@rollup/pluginutils': 5.1.4(rollup@4.28.1) - '@vue/language-core': 1.8.27(typescript@5.4.5) - debug: 4.4.0 - kolorist: 1.8.0 - magic-string: 0.30.17 - typescript: 5.4.5 - vue-tsc: 1.8.27(typescript@5.4.5) - optionalDependencies: - vite: 5.4.11(@types/node@20.17.10) - transitivePeerDependencies: - - '@types/node' - - rollup - - supports-color - - vite-plugin-dts@4.4.0(@types/node@20.17.10)(rollup@4.28.1)(typescript@5.4.5)(vite@5.4.11(@types/node@20.17.10)): - dependencies: - '@microsoft/api-extractor': 7.48.1(@types/node@20.17.10) - '@rollup/pluginutils': 5.1.4(rollup@4.28.1) - '@volar/typescript': 2.4.11 - '@vue/language-core': 2.1.10(typescript@5.4.5) - compare-versions: 6.1.1 - debug: 4.4.0 - kolorist: 1.8.0 - local-pkg: 0.5.1 - magic-string: 0.30.17 - typescript: 5.4.5 - optionalDependencies: - vite: 5.4.11(@types/node@20.17.10) - transitivePeerDependencies: - - '@types/node' - - rollup - - supports-color - vite@5.4.11(@types/node@20.17.10): dependencies: esbuild: 0.21.5 @@ -8667,20 +7167,6 @@ snapshots: '@types/node': 20.17.10 fsevents: 2.3.3 - vscode-uri@3.0.8: {} - - vue-template-compiler@2.7.16: - dependencies: - de-indent: 1.0.2 - he: 1.2.0 - - vue-tsc@1.8.27(typescript@5.4.5): - dependencies: - '@volar/typescript': 1.11.1 - '@vue/language-core': 1.8.27(typescript@5.4.5) - semver: 7.6.3 - typescript: 5.4.5 - walk-up-path@3.0.1: {} wcwidth@1.0.1: @@ -8745,12 +7231,6 @@ snapshots: dependencies: string-width: 4.2.3 - with-open-file@0.1.7: - dependencies: - p-finally: 1.0.0 - p-try: 2.2.0 - pify: 4.0.1 - word-wrap@1.2.5: {} wordwrap@1.0.0: {} @@ -8801,14 +7281,7 @@ snapshots: type-fest: 0.4.1 write-json-file: 3.2.0 - xcode@3.0.1: - dependencies: - simple-plist: 1.3.1 - uuid: 7.0.3 - - xml-escape@1.1.0: {} - - xml2js@0.5.0: + xml2js@0.6.2: dependencies: sax: 1.4.1 xmlbuilder: 11.0.1 @@ -8855,11 +7328,3 @@ snapshots: fd-slicer: 1.1.0 yocto-queue@0.1.0: {} - - z-schema@5.0.5: - dependencies: - lodash.get: 4.4.2 - lodash.isequal: 4.5.0 - validator: 13.12.0 - optionalDependencies: - commander: 9.5.0