diff --git a/CHANGELOG.md b/CHANGELOG.md index 0547445..8247513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The changes documented here do not include those from the original repository. ## [Unreleased] +### Chores +- Update the iOS framework. This adds the Privacy Manifest file (https://outsystemsrd.atlassian.net/browse/RMET-3283). +- Update cordova hooks with new OutSystems specific errors. (https://outsystemsrd.atlassian.net/browse/RMET-3311) + +## [Version 1.1.2] + +### 21-12-2023 +- Fix: [Android] Updates dependency to OSCore and OSCordova (https://outsystemsrd.atlassian.net/browse/RMET-2993). + +## [Version 1.1.1] + +### 03-10-2023 +- Fix: [iOS] Fixes path, removing duplicate string (https://outsystemsrd.atlassian.net/browse/RMET-2855). + +### 13-07-2023 +- Feat: Update hook to consider new resources paths (https://outsystemsrd.atlassian.net/browse/RMET-2477). ## [Version 1.1.0] diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..749f9e2 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,2 @@ +# O11/ODC +* @OutSystems/rd-mobile-ecosystem \ No newline at end of file diff --git a/hooks/android/androidCopyPreferences.js b/hooks/android/androidCopyPreferences.js index 1547ef8..4da4f18 100644 --- a/hooks/android/androidCopyPreferences.js +++ b/hooks/android/androidCopyPreferences.js @@ -5,43 +5,49 @@ const fs = require('fs'); module.exports = function (context) { const ServiceEnum = Object.freeze({"ApplePay":"1", "GooglePay":"2"}) - const configFileName = 'www/json-config/PaymentsPluginConfiguration.json'; - - var hasGooglePay = false; - - var merchant_name = ""; - var merchant_country_code = ""; - var payment_allowed_networks = []; - var payment_supported_capabilities = []; - var payment_supported_card_countries = []; - var shipping_supported_contacts = []; - var shipping_country_codes = []; - var billing_supported_contacts = []; - var gateway = ""; - var backend_url = ""; + const configFileName = 'json-config/PaymentsPluginConfiguration.json'; + let projectRoot = context.opts.cordova.project ? context.opts.cordova.project.root : context.opts.projectRoot; + + let hasGooglePay = false; + + let merchant_name = ""; + let merchant_country_code = ""; + let payment_allowed_networks = []; + let payment_supported_capabilities = []; + let payment_supported_card_countries = []; + let shipping_supported_contacts = []; + let shipping_country_codes = []; + let billing_supported_contacts = []; + let gateway = ""; + let backend_url = ""; //only for PSPs other than Stripe - var gateway_merchant_id = ""; + let gateway_merchant_id = ""; //only for stripe - var stripe_version = ""; - var stripe_pub_key = ""; - - - var projectRoot = context.opts.cordova.project ? context.opts.cordova.project.root : context.opts.projectRoot; + let stripe_version = ""; + let stripe_pub_key = ""; + + let wwwFolder = "www"; + let platformPath = path.join(projectRoot, `platforms/android/www`); + + if(!fs.existsSync(platformPath)){ + platformPath = path.join(projectRoot, wwwFolder); + } - var jsonConfig = ""; + let jsonConfig = ""; + let jsonParsed; try { - jsonConfig = path.join(projectRoot, configFileName); - var jsonConfigFile = fs.readFileSync(jsonConfig).toString(); - var jsonParsed = JSON.parse(jsonConfigFile); + jsonConfig = path.join(platformPath, configFileName); + let jsonConfigFile = fs.readFileSync(jsonConfig).toString(); + jsonParsed = JSON.parse(jsonConfigFile); } catch { - throw new Error("Missing configuration file or error trying to obtain the configuration."); + throw new Error("OUTSYSTEMS_PLUGIN_ERROR: Missing configuration file or error trying to obtain the configuration."); } - jsonParsed.app_configurations.forEach(function(configItem) { + jsonParsed.app_configurations.forEach((configItem) => { if (configItem.service_id == ServiceEnum.GooglePay) { hasGooglePay = true; - var error_list = []; + let error_list = []; if(configItem.merchant_name && configItem.merchant_name !== ""){ merchant_name = configItem.merchant_name; @@ -103,83 +109,83 @@ module.exports = function (context) { } if (error_list.length > 0) { - throw new Error("The following fields are either missing or empty in the configuration: " + error_list); + console.error("Missing fields: " + error_list); + throw new Error("OUTSYSTEMS_PLUGIN_ERROR: Payments configuration is missing some fields. Please check build logs to know more."); } - return; } }); if(hasGooglePay){ - var stringsXmlPath = path.join(projectRoot, 'platforms/android/app/src/main/res/values/strings.xml'); - var stringsXmlContents = fs.readFileSync(stringsXmlPath).toString(); - var etreeStrings = et.parse(stringsXmlContents); + let stringsXmlPath = path.join(projectRoot, 'platforms/android/app/src/main/res/values/strings.xml'); + let stringsXmlContents = fs.readFileSync(stringsXmlPath).toString(); + let etreeStrings = et.parse(stringsXmlContents); - var merchantNameTags = etreeStrings.findall('./string[@name="merchant_name"]'); - for (var i = 0; i < merchantNameTags.length; i++) { + let merchantNameTags = etreeStrings.findall('./string[@name="merchant_name"]'); + for (let i = 0; i < merchantNameTags.length; i++) { merchantNameTags[i].text = merchant_name; } - var merchantCountryTags = etreeStrings.findall('./string[@name="merchant_country_code"]'); - for (var i = 0; i < merchantCountryTags.length; i++) { + let merchantCountryTags = etreeStrings.findall('./string[@name="merchant_country_code"]'); + for (let i = 0; i < merchantCountryTags.length; i++) { merchantCountryTags[i].text = merchant_country_code; } - var allowedNetworksTags = etreeStrings.findall('./string[@name="payment_allowed_networks"]'); - for (var i = 0; i < allowedNetworksTags.length; i++) { + let allowedNetworksTags = etreeStrings.findall('./string[@name="payment_allowed_networks"]'); + for (let i = 0; i < allowedNetworksTags.length; i++) { allowedNetworksTags[i].text = payment_allowed_networks; } - var supportedCapabilitiesTags = etreeStrings.findall('./string[@name="payment_supported_capabilities"]'); - for (var i = 0; i < supportedCapabilitiesTags.length; i++) { + let supportedCapabilitiesTags = etreeStrings.findall('./string[@name="payment_supported_capabilities"]'); + for (let i = 0; i < supportedCapabilitiesTags.length; i++) { supportedCapabilitiesTags[i].text = payment_supported_capabilities; } - var supportedCardCountriesTags = etreeStrings.findall('./string[@name="payment_supported_card_countries"]'); - for (var i = 0; i < supportedCardCountriesTags.length; i++) { + let supportedCardCountriesTags = etreeStrings.findall('./string[@name="payment_supported_card_countries"]'); + for (let i = 0; i < supportedCardCountriesTags.length; i++) { supportedCardCountriesTags[i].text = payment_supported_card_countries; } - var shippingContactsTags = etreeStrings.findall('./string[@name="shipping_supported_contacts"]'); - for (var i = 0; i < shippingContactsTags.length; i++) { + let shippingContactsTags = etreeStrings.findall('./string[@name="shipping_supported_contacts"]'); + for (let i = 0; i < shippingContactsTags.length; i++) { shippingContactsTags[i].text = shipping_supported_contacts; } - var shippingCountriesTags = etreeStrings.findall('./string[@name="shipping_country_codes"]'); - for (var i = 0; i < shippingCountriesTags.length; i++) { + let shippingCountriesTags = etreeStrings.findall('./string[@name="shipping_country_codes"]'); + for (let i = 0; i < shippingCountriesTags.length; i++) { shippingCountriesTags[i].text = shipping_country_codes; } - var billingContactsTags = etreeStrings.findall('./string[@name="billing_supported_contacts"]'); - for (var i = 0; i < billingContactsTags.length; i++) { + let billingContactsTags = etreeStrings.findall('./string[@name="billing_supported_contacts"]'); + for (let i = 0; i < billingContactsTags.length; i++) { billingContactsTags[i].text = billing_supported_contacts; } - var gatewayTags = etreeStrings.findall('./string[@name="gateway"]'); - for (var i = 0; i < gatewayTags.length; i++) { + let gatewayTags = etreeStrings.findall('./string[@name="gateway"]'); + for (let i = 0; i < gatewayTags.length; i++) { gatewayTags[i].text = gateway; } - var backendUrlTags = etreeStrings.findall('./string[@name="backend_url"]'); - for (var i = 0; i < backendUrlTags.length; i++) { + let backendUrlTags = etreeStrings.findall('./string[@name="backend_url"]'); + for (let i = 0; i < backendUrlTags.length; i++) { backendUrlTags[i].text = backend_url; } - var gatewayMerchantIdTags = etreeStrings.findall('./string[@name="gateway_merchant_id"]'); - for (var i = 0; i < gatewayMerchantIdTags.length; i++) { + let gatewayMerchantIdTags = etreeStrings.findall('./string[@name="gateway_merchant_id"]'); + for (let i = 0; i < gatewayMerchantIdTags.length; i++) { gatewayMerchantIdTags[i].text = gateway_merchant_id; } - var stripeVersionTags = etreeStrings.findall('./string[@name="stripe_version"]'); - for (var i = 0; i < stripeVersionTags.length; i++) { + let stripeVersionTags = etreeStrings.findall('./string[@name="stripe_version"]'); + for (let i = 0; i < stripeVersionTags.length; i++) { stripeVersionTags[i].text = stripe_version; } - var stripePubKeyTags = etreeStrings.findall('./string[@name="stripe_pub_key"]'); - for (var i = 0; i < stripePubKeyTags.length; i++) { + let stripePubKeyTags = etreeStrings.findall('./string[@name="stripe_pub_key"]'); + for (let i = 0; i < stripePubKeyTags.length; i++) { stripePubKeyTags[i].text = stripe_pub_key; } - var resultXmlStrings = etreeStrings.write(); + let resultXmlStrings = etreeStrings.write(); fs.writeFileSync(stringsXmlPath, resultXmlStrings); } diff --git a/hooks/ios/iOSCopyPreferences.js b/hooks/ios/iOSCopyPreferences.js index 8818983..1363612 100644 --- a/hooks/ios/iOSCopyPreferences.js +++ b/hooks/ios/iOSCopyPreferences.js @@ -2,46 +2,49 @@ const et = require('elementtree'); const path = require('path'); const fs = require('fs'); const plist = require('plist'); -const child_process = require('child_process'); const { ConfigParser } = require('cordova-common'); -const { Console } = require('console'); module.exports = function (context) { const ServiceEnum = Object.freeze({"ApplePay":"1", "GooglePay":"2"}) - var projectRoot = context.opts.cordova.project ? context.opts.cordova.project.root : context.opts.projectRoot; - - var merchant_id = ""; - var merchant_name = ""; - var merchant_country_code = ""; - var payment_allowed_networks = []; - var payment_supported_capabilities = []; - var payment_supported_card_countries = []; - var shipping_supported_contacts = []; - var billing_supported_contacts = []; - var payment_gateway = ""; - var payment_request_url = ""; - var stripe_publishable_key = ""; - - var appNamePath = path.join(projectRoot, 'config.xml'); - var appNameParser = new ConfigParser(appNamePath); - var appName = appNameParser.name(); + let projectRoot = context.opts.cordova.project ? context.opts.cordova.project.root : context.opts.projectRoot; + + let merchant_id = ""; + let merchant_name = ""; + let merchant_country_code = ""; + let payment_allowed_networks = []; + let payment_supported_capabilities = []; + let payment_supported_card_countries = []; + let shipping_supported_contacts = []; + let billing_supported_contacts = []; + let payment_gateway = ""; + let payment_request_url = ""; + let stripe_publishable_key = ""; + + let appNamePath = path.join(projectRoot, 'config.xml'); + let appNameParser = new ConfigParser(appNamePath); + let appName = appNameParser.name(); let platformPath = path.join(projectRoot, 'platforms/ios'); + let resourcesPath = path.join(projectRoot, `platforms/ios/${appName}/Resources/www`); + if(!fs.existsSync(resourcesPath)){ + resourcesPath = platformPath + "/www"; + } //read json config file - var jsonConfig = ""; + let jsonConfig = ""; + let jsonParsed; try { - jsonConfig = path.join(platformPath, 'www/json-config/PaymentsPluginConfiguration.json'); - var jsonConfigFile = fs.readFileSync(jsonConfig, 'utf8'); - var jsonParsed = JSON.parse(jsonConfigFile); + jsonConfig = path.join(resourcesPath, 'json-config/PaymentsPluginConfiguration.json'); + let jsonConfigFile = fs.readFileSync(jsonConfig, 'utf8'); + jsonParsed = JSON.parse(jsonConfigFile); } catch { - throw new Error("Missing configuration file or error trying to obtain the configuration."); + throw new Error("OUTSYSTEMS_PLUGIN_ERROR: Missing configuration file or error trying to obtain the configuration."); } - jsonParsed.app_configurations.forEach(function(configItem) { + jsonParsed.app_configurations.forEach((configItem) => { if (configItem.service_id == ServiceEnum.ApplePay) { - var error_list = []; + let error_list = []; if (configItem.merchant_id != null && configItem.merchant_id !== "") { merchant_id = configItem.merchant_id; @@ -98,18 +101,17 @@ module.exports = function (context) { } if (error_list.length > 0) { - throw new Error("Configuration is missing the following fields: " + error_list); + console.error("Missing fields: " + error_list); + throw new Error("OUTSYSTEMS_PLUGIN_ERROR: Payments configuration is missing some fields. Please check build logs to know more."); } - - return; } }); //Change info.plist - var infoPlistPath = path.join(platformPath, appName + '/'+ appName +'-info.plist'); - var infoPlistFile = fs.readFileSync(infoPlistPath, 'utf8'); - var infoPlist = plist.parse(infoPlistFile); + let infoPlistPath = path.join(platformPath, appName + '/'+ appName +'-info.plist'); + let infoPlistFile = fs.readFileSync(infoPlistPath, 'utf8'); + let infoPlist = plist.parse(infoPlistFile); infoPlist['ApplePayMerchantID'] = merchant_id; infoPlist['ApplePayMerchantName'] = merchant_name; @@ -136,17 +138,17 @@ module.exports = function (context) { fs.writeFileSync(infoPlistPath, plist.build(infoPlist, { indent: '\t' })); // Change Entitlements files - var debugEntitlementsPath = path.join(platformPath, appName + '/'+ 'Entitlements-Debug.plist'); - var debugEntitlementsFile = fs.readFileSync(debugEntitlementsPath, 'utf8'); - var debugEntitlements = plist.parse(debugEntitlementsFile); + let debugEntitlementsPath = path.join(platformPath, appName + '/'+ 'Entitlements-Debug.plist'); + let debugEntitlementsFile = fs.readFileSync(debugEntitlementsPath, 'utf8'); + let debugEntitlements = plist.parse(debugEntitlementsFile); debugEntitlements['com.apple.developer.in-app-payments'] = [merchant_id]; fs.writeFileSync(debugEntitlementsPath, plist.build(debugEntitlements, { indent: '\t' })); - var releaseEntitlementsPath = path.join(platformPath, appName + '/' + 'Entitlements-Release.plist'); - var releaseEntitlementsFile = fs.readFileSync(releaseEntitlementsPath, 'utf8'); - var releaseEntitlements = plist.parse(releaseEntitlementsFile); + let releaseEntitlementsPath = path.join(platformPath, appName + '/' + 'Entitlements-Release.plist'); + let releaseEntitlementsFile = fs.readFileSync(releaseEntitlementsPath, 'utf8'); + let releaseEntitlements = plist.parse(releaseEntitlementsFile); releaseEntitlements['com.apple.developer.in-app-payments'] = [merchant_id]; diff --git a/package.json b/package.json index 8688a86..49bb0b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.payments", - "version": "1.1.0", + "version": "1.1.2", "description": "OutSystems-owned plugin for mobile payments", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index 949af52..d9756aa 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + OSPayments OutSystems-owned plugin for mobile payments OutSystems Inc diff --git a/src/android/com/outsystems/payments/OSPayments.kt b/src/android/com/outsystems/payments/OSPayments.kt index a4a812d..bb83904 100644 --- a/src/android/com/outsystems/payments/OSPayments.kt +++ b/src/android/com/outsystems/payments/OSPayments.kt @@ -107,15 +107,17 @@ class OSPayments : CordovaImplementation() { } } - override fun onActivityResult(requestCode: Int, resultCode: Int, intent: Intent) { + override fun onActivityResult(requestCode: Int, resultCode: Int, intent: Intent?) { super.onActivityResult(requestCode, resultCode, intent) - paymentsController.handleActivityResult(requestCode, resultCode, intent, - { paymentResponse -> - sendPluginResult(paymentResponse, null) - }, - { error -> - sendPluginResult(null, Pair(formatErrorCode(error.code), error.description)) - }) + if (intent != null) { + paymentsController.handleActivityResult(requestCode, resultCode, intent, + { paymentResponse -> + sendPluginResult(paymentResponse, null) + }, + { error -> + sendPluginResult(null, Pair(formatErrorCode(error.code), error.description)) + }) + } } override fun onRequestPermissionResult(requestCode: Int, diff --git a/src/android/com/outsystems/payments/build.gradle b/src/android/com/outsystems/payments/build.gradle index 38316d4..d0d6d85 100644 --- a/src/android/com/outsystems/payments/build.gradle +++ b/src/android/com/outsystems/payments/build.gradle @@ -27,8 +27,8 @@ repositories{ apply plugin: 'kotlin-kapt' dependencies { - implementation("com.github.outsystems:oscore-android:1.1.0@aar") - implementation("com.github.outsystems:oscordova-android:1.1.0@aar") + implementation("com.github.outsystems:oscore-android:1.2.0@aar") + implementation("com.github.outsystems:oscordova-android:2.0.0@aar") implementation("com.github.outsystems:ospayments-android:1.1.0@aar") implementation 'com.stripe:stripe-android:20.5.0' diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/Info.plist b/src/ios/frameworks/OSPaymentsLib.xcframework/Info.plist index 6562167..d2e9b2f 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/Info.plist +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/Info.plist @@ -5,6 +5,8 @@ AvailableLibraries + BinaryPath + OSPaymentsLib.framework/OSPaymentsLib LibraryIdentifier ios-arm64 LibraryPath @@ -17,6 +19,8 @@ ios + BinaryPath + OSPaymentsLib.framework/OSPaymentsLib LibraryIdentifier ios-arm64_x86_64-simulator LibraryPath diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeDirectory b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..15acdb4 Binary files /dev/null and b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeDirectory differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeRequirements b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..6658208 Binary files /dev/null and b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeRequirements differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeRequirements-1 b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 0000000..fb9bdce Binary files /dev/null and b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeRequirements-1 differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeResources b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeResources new file mode 100644 index 0000000..737a0f4 --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeResources @@ -0,0 +1,443 @@ + + + + + files + + ios-arm64/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h + + hRZHOCX/MuJsrNA99bZHsuc971U= + + ios-arm64/OSPaymentsLib.framework/Info.plist + + QHUeFiql4dXTf2MmFTg6/H+HvYk= + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.abi.json + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.private.swiftinterface + + Jj2S0Mm0/vTR6IhQWsKud9fnjdY= + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc + + intsWXcua/SwvX7FzeFuQ2GLcro= + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface + + Jj2S0Mm0/vTR6IhQWsKud9fnjdY= + + ios-arm64/OSPaymentsLib.framework/Modules/module.modulemap + + ZCSjgjfVp9V+KS7M0ouCKiZyycw= + + ios-arm64/OSPaymentsLib.framework/OSPaymentsLib + + da3bM7cLwSKkpNP6h+tAvD0M2OA= + + ios-arm64/OSPaymentsLib.framework/PrivacyInfo.xcprivacy + + eyCgUbZiOgXeKRb+5fZ14Msnu7Y= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h + + ligywF0+LVe2GblpG1VwBBLV8uI= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Info.plist + + IrUfwRkHbCqBit+suRopEJPu7mc= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + 9Cm/dPw6xMyuOd8iDLvuePMf2tE= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + 4b7MrfEDfx1orB1ellIZTvZJtDk= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + 9Cm/dPw6xMyuOd8iDLvuePMf2tE= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + 78BENsBG6faOD/JPn/q0N6t873M= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + JJD9CMinsqbdTEDMOu/Ncjshujk= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + 78BENsBG6faOD/JPn/q0N6t873M= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/module.modulemap + + ZCSjgjfVp9V+KS7M0ouCKiZyycw= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/OSPaymentsLib + + Q28BteDGwk0WTpl1y9HjAWTlA4k= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/PrivacyInfo.xcprivacy + + eyCgUbZiOgXeKRb+5fZ14Msnu7Y= + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/_CodeSignature/CodeResources + + i7IfqSkb2Vb1PGEVKsJ+h1I4YFI= + + + files2 + + ios-arm64/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h + + hash + + hRZHOCX/MuJsrNA99bZHsuc971U= + + hash2 + + f+yehUlugQoK4gwrBSCwWkPnayAmf1KUSibJMGBwPoc= + + + ios-arm64/OSPaymentsLib.framework/Info.plist + + hash + + QHUeFiql4dXTf2MmFTg6/H+HvYk= + + hash2 + + jihRd1XLe8f1H5d+WanAJl3Iu9XGkjqUUjWu+pQQuqs= + + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.abi.json + + hash + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + hash2 + + skPcNx6YW6v8t+gQR5t/cCqUW2WwnZKeXVjnfdTDL5o= + + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.private.swiftinterface + + hash + + Jj2S0Mm0/vTR6IhQWsKud9fnjdY= + + hash2 + + MSlw5qc4KOQs1K7bzxoPFONgQpQUwXM8Riium6YOvaI= + + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc + + hash + + intsWXcua/SwvX7FzeFuQ2GLcro= + + hash2 + + cVHAt/qQqlCIfQovJfYCWCYW8G8u98JIVdKoHxZky4A= + + + ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface + + hash + + Jj2S0Mm0/vTR6IhQWsKud9fnjdY= + + hash2 + + MSlw5qc4KOQs1K7bzxoPFONgQpQUwXM8Riium6YOvaI= + + + ios-arm64/OSPaymentsLib.framework/Modules/module.modulemap + + hash + + ZCSjgjfVp9V+KS7M0ouCKiZyycw= + + hash2 + + TODxZ8eIPENf7N2BTVKIqwNphGFqbYmXyZCEggJ3p3c= + + + ios-arm64/OSPaymentsLib.framework/OSPaymentsLib + + hash + + da3bM7cLwSKkpNP6h+tAvD0M2OA= + + hash2 + + oFZXfAnSEuXMllSls8eAwfwVNtQIyjs/78DAKSMHBKs= + + + ios-arm64/OSPaymentsLib.framework/PrivacyInfo.xcprivacy + + hash + + eyCgUbZiOgXeKRb+5fZ14Msnu7Y= + + hash2 + + 7hP3zAw3IO2TsJ/v4HrglwEEnnIPIzqSzVVgLfVUzdY= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h + + hash + + ligywF0+LVe2GblpG1VwBBLV8uI= + + hash2 + + vlum/jsVwNiQ4mYMKlQeV3IdPq5PrpFmYwNKIVzIUi8= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Info.plist + + hash + + IrUfwRkHbCqBit+suRopEJPu7mc= + + hash2 + + H1u5U3sL0tP0pfU9IVRiTJw6/zqXtI0l7pkm0J8057U= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + hash2 + + skPcNx6YW6v8t+gQR5t/cCqUW2WwnZKeXVjnfdTDL5o= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + 9Cm/dPw6xMyuOd8iDLvuePMf2tE= + + hash2 + + s1S5jdqAFekgdmebPc1i1/QJ/IdVwz/cIUtvmLq0HbA= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + hash + + 4b7MrfEDfx1orB1ellIZTvZJtDk= + + hash2 + + oNc9od+IsS7lf1Yv/Kp/+8LVjjbuVaHBHeCT/tX34sI= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + hash + + 9Cm/dPw6xMyuOd8iDLvuePMf2tE= + + hash2 + + s1S5jdqAFekgdmebPc1i1/QJ/IdVwz/cIUtvmLq0HbA= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + hash2 + + skPcNx6YW6v8t+gQR5t/cCqUW2WwnZKeXVjnfdTDL5o= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + 78BENsBG6faOD/JPn/q0N6t873M= + + hash2 + + Cg4C0J8n9aOU0FfG+YSTAVjila0ZCkS++z5+PJ/mFBo= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + hash + + JJD9CMinsqbdTEDMOu/Ncjshujk= + + hash2 + + qN/idxEujpj9wng+vOUxjWIHcP+z6wQfIL1c5QQ9FfI= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + hash + + 78BENsBG6faOD/JPn/q0N6t873M= + + hash2 + + Cg4C0J8n9aOU0FfG+YSTAVjila0ZCkS++z5+PJ/mFBo= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/module.modulemap + + hash + + ZCSjgjfVp9V+KS7M0ouCKiZyycw= + + hash2 + + TODxZ8eIPENf7N2BTVKIqwNphGFqbYmXyZCEggJ3p3c= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/OSPaymentsLib + + hash + + Q28BteDGwk0WTpl1y9HjAWTlA4k= + + hash2 + + xUjrBxlTyXdE9vpTtrkmviusgBWIQF/JVMYreI738vM= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/PrivacyInfo.xcprivacy + + hash + + eyCgUbZiOgXeKRb+5fZ14Msnu7Y= + + hash2 + + 7hP3zAw3IO2TsJ/v4HrglwEEnnIPIzqSzVVgLfVUzdY= + + + ios-arm64_x86_64-simulator/OSPaymentsLib.framework/_CodeSignature/CodeResources + + hash + + i7IfqSkb2Vb1PGEVKsJ+h1I4YFI= + + hash2 + + dHXL6+mYcQrJ7+vpFrn7FjWkYszTLrt7bxT+nj0ygOY= + + + + 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/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeSignature b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeSignature new file mode 100644 index 0000000..d4c2096 Binary files /dev/null and b/src/ios/frameworks/OSPaymentsLib.xcframework/_CodeSignature/CodeSignature differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h index bc7e716..9bc4aa4 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) #ifndef OSPAYMENTSLIB_SWIFT_H #define OSPAYMENTSLIB_SWIFT_H #pragma clang diagnostic push @@ -22,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -60,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -126,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -176,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -191,13 +235,52 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -205,6 +288,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -213,6 +297,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) /// Class that provides the bridge between the library and 3rd party consumers. SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") @@ -228,8 +313,15 @@ SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Info.plist b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Info.plist index 551d681..66bbd70 100644 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Info.plist and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Info.plist differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.abi.json b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..b523b2c --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,2370 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTError", + "printedName": "OSPMTError", + "children": [ + { + "kind": "Var", + "name": "invalidConfiguration", + "printedName": "invalidConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20invalidConfigurationyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20invalidConfigurationyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "walletNotAvailable", + "printedName": "walletNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO18walletNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO18walletNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentNotAvailable", + "printedName": "paymentNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO19paymentNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO19paymentNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "setupPaymentNotAvailable", + "printedName": "setupPaymentNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO24setupPaymentNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO24setupPaymentNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "invalidDecodeDetails", + "printedName": "invalidDecodeDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20invalidDecodeDetailsyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20invalidDecodeDetailsyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "invalidEncodeScope", + "printedName": "invalidEncodeScope", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO18invalidEncodeScopeyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO18invalidEncodeScopeyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentTriggerPresentationFailed", + "printedName": "paymentTriggerPresentationFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO32paymentTriggerPresentationFailedyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO32paymentTriggerPresentationFailedyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentCancelled", + "printedName": "paymentCancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16paymentCancelledyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16paymentCancelledyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "gatewaySetFailed", + "printedName": "gatewaySetFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16gatewaySetFailedyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16gatewaySetFailedyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "stripePaymentMethodCreation", + "printedName": "stripePaymentMethodCreation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO27stripePaymentMethodCreationyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO27stripePaymentMethodCreationyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentIssue", + "printedName": "paymentIssue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO12paymentIssueyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO12paymentIssueyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "gatewayNotConfigured", + "printedName": "gatewayNotConfigured", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20gatewayNotConfiguredyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20gatewayNotConfiguredyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "tokenIssue", + "printedName": "tokenIssue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO10tokenIssueyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO10tokenIssueyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvp", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvp", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvg", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvg", + "moduleName": "OSPaymentsLib", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSPaymentsLib.OSPMTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueACSgSi_tcfc", + "moduleName": "OSPaymentsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueSivp", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueSivp", + "moduleName": "OSPaymentsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueSivg", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueSivg", + "moduleName": "OSPaymentsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13OSPaymentsLib10OSPMTErrorO", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "StripePayments", + "printedName": "StripePayments", + "declKind": "Import", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "StripeCore", + "printedName": "StripeCore", + "declKind": "Import", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTCallbackDelegate", + "printedName": "OSPMTCallbackDelegate", + "children": [ + { + "kind": "Function", + "name": "callback", + "printedName": "callback(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSPaymentsLib.OSPMTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP8callback6result5errorySSSg_AA10OSPMTErrorOSgtF", + "mangledName": "$s13OSPaymentsLib21OSPMTCallbackDelegateP8callback6result5errorySSSg_AA10OSPMTErrorOSgtF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTCallbackDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP", + "mangledName": "$s13OSPaymentsLib21OSPMTCallbackDelegateP", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OSPMTActionDelegate", + "printedName": "OSPMTActionDelegate", + "children": [ + { + "kind": "Function", + "name": "setupConfiguration", + "printedName": "setupConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP18setupConfigurationyyF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP18setupConfigurationyyF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkWalletSetup", + "printedName": "checkWalletSetup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP16checkWalletSetupyyF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP16checkWalletSetupyyF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP3set_3andySS_SSSgtF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP3set_3andySS_SSSgtF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegatePAAE3setyySSF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegatePAAE3setyySSF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTPayments", + "printedName": "OSPMTPayments", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(applePayWithDelegate:andConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTPayments", + "printedName": "OSPaymentsLib.OSPMTPayments", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments" + }, + { + "kind": "TypeNominal", + "name": "OSPMTCallbackDelegate", + "printedName": "OSPaymentsLib.OSPMTCallbackDelegate", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC20applePayWithDelegate16andConfigurationAcA013OSPMTCallbackG0_p_SDySSypGtcfc", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC20applePayWithDelegate16andConfigurationAcA013OSPMTCallbackG0_p_SDySSypGtcfc", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTPayments", + "printedName": "OSPaymentsLib.OSPMTPayments", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments(im)init", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsCACycfc", + "moduleName": "OSPaymentsLib", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setupConfiguration", + "printedName": "setupConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC18setupConfigurationyyF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC18setupConfigurationyyF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkWalletSetup", + "printedName": "checkWalletSetup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC16checkWalletSetupyyF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC16checkWalletSetupyyF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC3set_3andySS_SSSgtF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC3set_3andySS_SSSgtF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "OSPMTActionDelegate", + "printedName": "OSPMTActionDelegate", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "STPAPIClient", + "printedName": "STPAPIClient", + "declKind": "Class", + "usr": "c:@M@StripeCore@objc(cs)STPAPIClient", + "mangledName": "$s10StripeCore12STPAPIClientC", + "moduleName": "StripeCore", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PKPassLibrary", + "printedName": "PKPassLibrary", + "declKind": "Class", + "usr": "c:objc(cs)PKPassLibrary", + "moduleName": "PassKit", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "PKPassLibrary", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PKPaymentAuthorizationController", + "printedName": "PKPaymentAuthorizationController", + "declKind": "Class", + "usr": "c:objc(cs)PKPaymentAuthorizationController", + "moduleName": "PassKit", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "PKPaymentAuthorizationController", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTAvailabilityDelegate.swift", + "kind": "BooleanLiteral", + "offset": 2505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTAvailabilityDelegate.swift", + "kind": "BooleanLiteral", + "offset": 2872, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 74, + "value": "\"Couldn't obtain the payment's informations from the configurations file.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 848, + "length": 47, + "value": "\"The Apple Pay is not available in the device.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 40, + "value": "\"There is no payment method configured.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1050, + "length": 82, + "value": "\"There are no valid payment cards for the supported networks and\/or capabilities.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1188, + "length": 38, + "value": "\"Couldn't decode the payment details.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 36, + "value": "\"Couldn't encode the payment scope.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1384, + "length": 40, + "value": "\"Couldn't present the Apple Pay screen.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1476, + "length": 36, + "value": "\"Payment was cancelled by the user.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1577, + "length": 40, + "value": "\"Couldn't set payment service provider.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 48, + "value": "\"Couldn't obtain the PaymentMethod from Stripe.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1776, + "length": 27, + "value": "\"Couldn't process payment.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1859, + "length": 93, + "value": "\"Couldn't trigger the payment. The requested payment service provider is not configured yet.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1998, + "length": 66, + "value": "\"Couldn’t trigger the payment. The access token is not defined.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 8, + "value": "\"Stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 8, + "value": "\"Stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 8, + "value": "\"stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 16, + "value": "\"payment_method\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 16, + "value": "\"payment_method\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "BooleanLiteral", + "offset": 800, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 125, + "length": 33, + "value": "\"OSPaymentsLib.OSPMTStripeRequestParametersModel\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 420, + "length": 7, + "value": "\"debit\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 478, + "length": 8, + "value": "\"credit\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 538, + "length": 5, + "value": "\"3ds\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 5, + "value": "\"emv\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 416, + "length": 13, + "value": "\"contactInfo\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 416, + "length": 13, + "value": "\"contactInfo\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1919, + "length": 18, + "value": "\"shippingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1968, + "length": 17, + "value": "\"billingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 5, + "value": "\"psp\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1919, + "length": 18, + "value": "\"shippingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1968, + "length": 17, + "value": "\"billingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 5, + "value": "\"psp\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 104, + "length": 9, + "value": "\"pending\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 133, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 8, + "value": "\"failed\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 104, + "length": 9, + "value": "\"pending\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 133, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 8, + "value": "\"failed\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 1971, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 3129, + "length": 11, + "value": "\"Apple Pay\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4345, + "length": 28, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4358, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4372, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 14, + "value": "\"tokenization\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 14, + "value": "\"tokenization\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5715, + "length": 20, + "value": "\"ApplePayMerchantID\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5770, + "length": 22, + "value": "\"ApplePayMerchantName\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5834, + "length": 29, + "value": "\"ApplePayMerchantCountryCode\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5917, + "length": 32, + "value": "\"ApplePayPaymentAllowedNetworks\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6000, + "length": 38, + "value": "\"ApplePayPaymentSupportedCapabilities\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6090, + "length": 39, + "value": "\"ApplePayPaymentSupportedCardCountries\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6186, + "length": 35, + "value": "\"ApplePayShippingSupportedContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6277, + "length": 34, + "value": "\"ApplePayBillingSupportedContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6357, + "length": 24, + "value": "\"ApplePayPaymentGateway\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6422, + "length": 28, + "value": "\"ApplePayPaymentGatewayName\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6490, + "length": 20, + "value": "\"ApplePayRequestURL\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6553, + "length": 30, + "value": "\"ApplePayStripePublishableKey\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 9729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 9832, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 10339, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "Array", + "offset": 10896, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTRequestDelegate.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 29, + "value": "\"OSPaymentsLib.OSPMTApplePayRequestBehaviour\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTRequestDelegate.swift", + "kind": "Array", + "offset": 8746, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeWrapper.swift", + "kind": "IntegerLiteral", + "offset": 1898, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentAuthorizationController+Adapter.swift", + "kind": "BooleanLiteral", + "offset": 923, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/OSPMTApplePayHandler.swift", + "kind": "StringLiteral", + "offset": 147, + "length": 20, + "value": "\"OSPaymentsLib.OSPMTApplePayHandler\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 6, + "value": "\"amex\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 443, + "length": 10, + "value": "\"discover\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 6, + "value": "\"visa\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 543, + "length": 12, + "value": "\"mastercard\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTCallbackDelegate.swift", + "kind": "StringLiteral", + "offset": 780, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1403, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1648, + "length": 16, + "value": "\"Payments-Token\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "IntegerLiteral", + "offset": 1953, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 464, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 510, + "length": 7, + "value": "\"phone\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 16, + "value": "\"postal_address\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/OSPMTPayments.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 13, + "value": "\"OSPaymentsLib.OSPMTPayments\"" + } + ] +} \ No newline at end of file diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.private.swiftinterface b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 0000000..7675dac --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,57 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +import PassKit +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public enum OSPMTError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { + case invalidConfiguration + case walletNotAvailable + case paymentNotAvailable + case setupPaymentNotAvailable + case invalidDecodeDetails + case invalidEncodeScope + case paymentTriggerPresentationFailed + case paymentCancelled + case gatewaySetFailed + case stripePaymentMethodCreation + case paymentIssue + case gatewayNotConfigured + case tokenIssue + public var errorDescription: Swift.String? { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public typealias OSPMTConfiguration = [Swift.String : Any] +public protocol OSPMTCallbackDelegate : AnyObject { + func callback(result: Swift.String?, error: OSPaymentsLib.OSPMTError?) +} +public protocol OSPMTActionDelegate : AnyObject { + func setupConfiguration() + func checkWalletSetup() + func set(_ details: Swift.String, and accessToken: Swift.String?) +} +extension OSPaymentsLib.OSPMTActionDelegate { + public func set(_ details: Swift.String) +} +@objc @_hasMissingDesignatedInitializers public class OSPMTPayments : ObjectiveC.NSObject { + convenience public init(applePayWithDelegate delegate: any OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) + @objc deinit +} +extension OSPaymentsLib.OSPMTPayments : OSPaymentsLib.OSPMTActionDelegate { + public func setupConfiguration() + public func checkWalletSetup() + public func set(_ details: Swift.String, and accessToken: Swift.String?) +} +extension OSPaymentsLib.OSPMTError : Swift.Equatable {} +extension OSPaymentsLib.OSPMTError : Swift.Hashable {} +extension OSPaymentsLib.OSPMTError : Swift.RawRepresentable {} diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc index 697a5f8..a0a0ae8 100644 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface index 96e3d18..7675dac 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,10 +1,13 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation import PassKit import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public enum OSPMTError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { case invalidConfiguration case walletNotAvailable @@ -41,7 +44,7 @@ extension OSPaymentsLib.OSPMTActionDelegate { public func set(_ details: Swift.String) } @objc @_hasMissingDesignatedInitializers public class OSPMTPayments : ObjectiveC.NSObject { - convenience public init(applePayWithDelegate delegate: OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) + convenience public init(applePayWithDelegate delegate: any OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) @objc deinit } extension OSPaymentsLib.OSPMTPayments : OSPaymentsLib.OSPMTActionDelegate { diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/OSPaymentsLib b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/OSPaymentsLib index ce040db..04017b5 100755 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/OSPaymentsLib and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/OSPaymentsLib differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/PrivacyInfo.xcprivacy b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..960504a --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/PrivacyInfo.xcprivacy @@ -0,0 +1,97 @@ + + + + + NSPrivacyTracking + + + NSPrivacyTrackingDomains + + + NSPrivacyCollectedDataTypes + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeName + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeEmailAddress + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePhoneNumber + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePhysicalAddress + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePaymentInfo + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyAccessedAPITypes + + + diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/_CodeSignature/CodeResources b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/_CodeSignature/CodeResources deleted file mode 100644 index a8543a3..0000000 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64/OSPaymentsLib.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,157 +0,0 @@ - - - - - files - - Headers/OSPaymentsLib-Swift.h - - 1/E317SnMrCKCSAcnW7jLwd9xh4= - - Info.plist - - 8RFF726tLoShbFtPtT8p75RYD+Y= - - Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc - - 2PYKW0VrMy9VA8nuHwGWdLYaSUE= - - Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface - - dPxua70RCjZKLIValLYAUOyAA/4= - - Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftmodule - - x8ytkWk9P2oogJ/t63sob1GiHcc= - - Modules/module.modulemap - - ZCSjgjfVp9V+KS7M0ouCKiZyycw= - - - files2 - - Headers/OSPaymentsLib-Swift.h - - hash2 - - NgTCqYSUwsLDqoLQ+jIGnVBLbKQ2bO9Oeb4KDVd6ctY= - - - Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftdoc - - hash2 - - gDYGh4xprahu+ae44JOVc8mczSq+NDtPzt9ow+IkwJU= - - - Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftinterface - - hash2 - - iEKWN090SYhM9ZvX5n5bx4RDqnwHOJj8V0VyKm2rhYk= - - - Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios.swiftmodule - - hash2 - - ioYiXNrBlJEVi+gAsnADDXWoYOAw3+L1iJxzi2QARX0= - - - Modules/module.modulemap - - hash2 - - TODxZ8eIPENf7N2BTVKIqwNphGFqbYmXyZCEggJ3p3c= - - - - 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/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h index 5e487bf..5330091 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Headers/OSPaymentsLib-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) #ifndef OSPAYMENTSLIB_SWIFT_H #define OSPAYMENTSLIB_SWIFT_H #pragma clang diagnostic push @@ -24,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -62,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -128,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -178,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -193,13 +235,52 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -207,6 +288,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -215,6 +297,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) /// Class that provides the bridge between the library and 3rd party consumers. SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") @@ -230,14 +313,17 @@ SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) #ifndef OSPAYMENTSLIB_SWIFT_H #define OSPAYMENTSLIB_SWIFT_H #pragma clang diagnostic push @@ -261,10 +347,38 @@ SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") #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 @@ -299,53 +413,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# define SWIFT_CLASS_PROPERTY(...) # endif #endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -365,28 +492,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) # endif #endif - #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA #endif - #if !defined(SWIFT_EXTENSION) # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) #endif - #if !defined(OBJC_DESIGNATED_INITIALIZER) # if __has_attribute(objc_designated_initializer) # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) # else -# define OBJC_DESIGNATED_INITIALIZER +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -415,13 +539,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_DEPRECATED_MSG) # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) #endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#if !defined(SWIFT_DEPRECATED_OBJC) +# if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +# else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +# endif #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -430,13 +558,52 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -444,6 +611,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -452,6 +620,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) /// Class that provides the bridge between the library and 3rd party consumers. SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") @@ -467,10 +636,15 @@ SWIFT_CLASS("_TtC13OSPaymentsLib13OSPMTPayments") +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Info.plist b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Info.plist index f3876e4..9b55033 100644 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Info.plist and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Info.plist differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..b523b2c --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,2370 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTError", + "printedName": "OSPMTError", + "children": [ + { + "kind": "Var", + "name": "invalidConfiguration", + "printedName": "invalidConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20invalidConfigurationyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20invalidConfigurationyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "walletNotAvailable", + "printedName": "walletNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO18walletNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO18walletNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentNotAvailable", + "printedName": "paymentNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO19paymentNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO19paymentNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "setupPaymentNotAvailable", + "printedName": "setupPaymentNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO24setupPaymentNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO24setupPaymentNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "invalidDecodeDetails", + "printedName": "invalidDecodeDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20invalidDecodeDetailsyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20invalidDecodeDetailsyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "invalidEncodeScope", + "printedName": "invalidEncodeScope", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO18invalidEncodeScopeyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO18invalidEncodeScopeyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentTriggerPresentationFailed", + "printedName": "paymentTriggerPresentationFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO32paymentTriggerPresentationFailedyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO32paymentTriggerPresentationFailedyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentCancelled", + "printedName": "paymentCancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16paymentCancelledyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16paymentCancelledyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "gatewaySetFailed", + "printedName": "gatewaySetFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16gatewaySetFailedyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16gatewaySetFailedyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "stripePaymentMethodCreation", + "printedName": "stripePaymentMethodCreation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO27stripePaymentMethodCreationyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO27stripePaymentMethodCreationyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentIssue", + "printedName": "paymentIssue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO12paymentIssueyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO12paymentIssueyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "gatewayNotConfigured", + "printedName": "gatewayNotConfigured", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20gatewayNotConfiguredyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20gatewayNotConfiguredyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "tokenIssue", + "printedName": "tokenIssue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO10tokenIssueyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO10tokenIssueyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvp", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvp", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvg", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvg", + "moduleName": "OSPaymentsLib", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSPaymentsLib.OSPMTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueACSgSi_tcfc", + "moduleName": "OSPaymentsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueSivp", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueSivp", + "moduleName": "OSPaymentsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueSivg", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueSivg", + "moduleName": "OSPaymentsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13OSPaymentsLib10OSPMTErrorO", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "StripePayments", + "printedName": "StripePayments", + "declKind": "Import", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "StripeCore", + "printedName": "StripeCore", + "declKind": "Import", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTCallbackDelegate", + "printedName": "OSPMTCallbackDelegate", + "children": [ + { + "kind": "Function", + "name": "callback", + "printedName": "callback(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSPaymentsLib.OSPMTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP8callback6result5errorySSSg_AA10OSPMTErrorOSgtF", + "mangledName": "$s13OSPaymentsLib21OSPMTCallbackDelegateP8callback6result5errorySSSg_AA10OSPMTErrorOSgtF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTCallbackDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP", + "mangledName": "$s13OSPaymentsLib21OSPMTCallbackDelegateP", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OSPMTActionDelegate", + "printedName": "OSPMTActionDelegate", + "children": [ + { + "kind": "Function", + "name": "setupConfiguration", + "printedName": "setupConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP18setupConfigurationyyF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP18setupConfigurationyyF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkWalletSetup", + "printedName": "checkWalletSetup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP16checkWalletSetupyyF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP16checkWalletSetupyyF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP3set_3andySS_SSSgtF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP3set_3andySS_SSSgtF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegatePAAE3setyySSF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegatePAAE3setyySSF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTPayments", + "printedName": "OSPMTPayments", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(applePayWithDelegate:andConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTPayments", + "printedName": "OSPaymentsLib.OSPMTPayments", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments" + }, + { + "kind": "TypeNominal", + "name": "OSPMTCallbackDelegate", + "printedName": "OSPaymentsLib.OSPMTCallbackDelegate", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC20applePayWithDelegate16andConfigurationAcA013OSPMTCallbackG0_p_SDySSypGtcfc", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC20applePayWithDelegate16andConfigurationAcA013OSPMTCallbackG0_p_SDySSypGtcfc", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTPayments", + "printedName": "OSPaymentsLib.OSPMTPayments", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments(im)init", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsCACycfc", + "moduleName": "OSPaymentsLib", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setupConfiguration", + "printedName": "setupConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC18setupConfigurationyyF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC18setupConfigurationyyF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkWalletSetup", + "printedName": "checkWalletSetup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC16checkWalletSetupyyF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC16checkWalletSetupyyF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC3set_3andySS_SSSgtF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC3set_3andySS_SSSgtF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "OSPMTActionDelegate", + "printedName": "OSPMTActionDelegate", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "STPAPIClient", + "printedName": "STPAPIClient", + "declKind": "Class", + "usr": "c:@M@StripeCore@objc(cs)STPAPIClient", + "mangledName": "$s10StripeCore12STPAPIClientC", + "moduleName": "StripeCore", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PKPassLibrary", + "printedName": "PKPassLibrary", + "declKind": "Class", + "usr": "c:objc(cs)PKPassLibrary", + "moduleName": "PassKit", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "PKPassLibrary", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PKPaymentAuthorizationController", + "printedName": "PKPaymentAuthorizationController", + "declKind": "Class", + "usr": "c:objc(cs)PKPaymentAuthorizationController", + "moduleName": "PassKit", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "PKPaymentAuthorizationController", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTAvailabilityDelegate.swift", + "kind": "BooleanLiteral", + "offset": 2505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTAvailabilityDelegate.swift", + "kind": "BooleanLiteral", + "offset": 2872, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 74, + "value": "\"Couldn't obtain the payment's informations from the configurations file.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 848, + "length": 47, + "value": "\"The Apple Pay is not available in the device.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 40, + "value": "\"There is no payment method configured.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1050, + "length": 82, + "value": "\"There are no valid payment cards for the supported networks and\/or capabilities.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1188, + "length": 38, + "value": "\"Couldn't decode the payment details.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 36, + "value": "\"Couldn't encode the payment scope.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1384, + "length": 40, + "value": "\"Couldn't present the Apple Pay screen.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1476, + "length": 36, + "value": "\"Payment was cancelled by the user.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1577, + "length": 40, + "value": "\"Couldn't set payment service provider.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 48, + "value": "\"Couldn't obtain the PaymentMethod from Stripe.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1776, + "length": 27, + "value": "\"Couldn't process payment.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1859, + "length": 93, + "value": "\"Couldn't trigger the payment. The requested payment service provider is not configured yet.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1998, + "length": 66, + "value": "\"Couldn’t trigger the payment. The access token is not defined.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 8, + "value": "\"Stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 8, + "value": "\"Stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 8, + "value": "\"stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 16, + "value": "\"payment_method\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 16, + "value": "\"payment_method\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "BooleanLiteral", + "offset": 800, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 125, + "length": 33, + "value": "\"OSPaymentsLib.OSPMTStripeRequestParametersModel\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 420, + "length": 7, + "value": "\"debit\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 478, + "length": 8, + "value": "\"credit\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 538, + "length": 5, + "value": "\"3ds\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 5, + "value": "\"emv\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 416, + "length": 13, + "value": "\"contactInfo\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 416, + "length": 13, + "value": "\"contactInfo\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1919, + "length": 18, + "value": "\"shippingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1968, + "length": 17, + "value": "\"billingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 5, + "value": "\"psp\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1919, + "length": 18, + "value": "\"shippingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1968, + "length": 17, + "value": "\"billingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 5, + "value": "\"psp\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 104, + "length": 9, + "value": "\"pending\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 133, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 8, + "value": "\"failed\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 104, + "length": 9, + "value": "\"pending\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 133, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 8, + "value": "\"failed\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 1971, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 3129, + "length": 11, + "value": "\"Apple Pay\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4345, + "length": 28, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4358, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4372, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 14, + "value": "\"tokenization\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 14, + "value": "\"tokenization\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5715, + "length": 20, + "value": "\"ApplePayMerchantID\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5770, + "length": 22, + "value": "\"ApplePayMerchantName\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5834, + "length": 29, + "value": "\"ApplePayMerchantCountryCode\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5917, + "length": 32, + "value": "\"ApplePayPaymentAllowedNetworks\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6000, + "length": 38, + "value": "\"ApplePayPaymentSupportedCapabilities\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6090, + "length": 39, + "value": "\"ApplePayPaymentSupportedCardCountries\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6186, + "length": 35, + "value": "\"ApplePayShippingSupportedContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6277, + "length": 34, + "value": "\"ApplePayBillingSupportedContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6357, + "length": 24, + "value": "\"ApplePayPaymentGateway\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6422, + "length": 28, + "value": "\"ApplePayPaymentGatewayName\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6490, + "length": 20, + "value": "\"ApplePayRequestURL\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6553, + "length": 30, + "value": "\"ApplePayStripePublishableKey\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 9729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 9832, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 10339, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "Array", + "offset": 10896, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTRequestDelegate.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 29, + "value": "\"OSPaymentsLib.OSPMTApplePayRequestBehaviour\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTRequestDelegate.swift", + "kind": "Array", + "offset": 8746, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeWrapper.swift", + "kind": "IntegerLiteral", + "offset": 1898, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentAuthorizationController+Adapter.swift", + "kind": "BooleanLiteral", + "offset": 923, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/OSPMTApplePayHandler.swift", + "kind": "StringLiteral", + "offset": 147, + "length": 20, + "value": "\"OSPaymentsLib.OSPMTApplePayHandler\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 6, + "value": "\"amex\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 443, + "length": 10, + "value": "\"discover\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 6, + "value": "\"visa\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 543, + "length": 12, + "value": "\"mastercard\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTCallbackDelegate.swift", + "kind": "StringLiteral", + "offset": 780, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1403, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1648, + "length": 16, + "value": "\"Payments-Token\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "IntegerLiteral", + "offset": 1953, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 464, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 510, + "length": 7, + "value": "\"phone\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 16, + "value": "\"postal_address\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/OSPMTPayments.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 13, + "value": "\"OSPaymentsLib.OSPMTPayments\"" + } + ] +} \ No newline at end of file diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..ca83fd0 --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,57 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +import PassKit +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public enum OSPMTError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { + case invalidConfiguration + case walletNotAvailable + case paymentNotAvailable + case setupPaymentNotAvailable + case invalidDecodeDetails + case invalidEncodeScope + case paymentTriggerPresentationFailed + case paymentCancelled + case gatewaySetFailed + case stripePaymentMethodCreation + case paymentIssue + case gatewayNotConfigured + case tokenIssue + public var errorDescription: Swift.String? { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public typealias OSPMTConfiguration = [Swift.String : Any] +public protocol OSPMTCallbackDelegate : AnyObject { + func callback(result: Swift.String?, error: OSPaymentsLib.OSPMTError?) +} +public protocol OSPMTActionDelegate : AnyObject { + func setupConfiguration() + func checkWalletSetup() + func set(_ details: Swift.String, and accessToken: Swift.String?) +} +extension OSPaymentsLib.OSPMTActionDelegate { + public func set(_ details: Swift.String) +} +@objc @_hasMissingDesignatedInitializers public class OSPMTPayments : ObjectiveC.NSObject { + convenience public init(applePayWithDelegate delegate: any OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) + @objc deinit +} +extension OSPaymentsLib.OSPMTPayments : OSPaymentsLib.OSPMTActionDelegate { + public func setupConfiguration() + public func checkWalletSetup() + public func set(_ details: Swift.String, and accessToken: Swift.String?) +} +extension OSPaymentsLib.OSPMTError : Swift.Equatable {} +extension OSPaymentsLib.OSPMTError : Swift.Hashable {} +extension OSPaymentsLib.OSPMTError : Swift.RawRepresentable {} diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 41f24af..898d8c1 100644 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 97d1b6e..ca83fd0 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,10 +1,13 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation import PassKit import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public enum OSPMTError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { case invalidConfiguration case walletNotAvailable @@ -41,7 +44,7 @@ extension OSPaymentsLib.OSPMTActionDelegate { public func set(_ details: Swift.String) } @objc @_hasMissingDesignatedInitializers public class OSPMTPayments : ObjectiveC.NSObject { - convenience public init(applePayWithDelegate delegate: OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) + convenience public init(applePayWithDelegate delegate: any OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) @objc deinit } extension OSPaymentsLib.OSPMTPayments : OSPaymentsLib.OSPMTActionDelegate { diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..b523b2c --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,2370 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTError", + "printedName": "OSPMTError", + "children": [ + { + "kind": "Var", + "name": "invalidConfiguration", + "printedName": "invalidConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20invalidConfigurationyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20invalidConfigurationyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "walletNotAvailable", + "printedName": "walletNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO18walletNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO18walletNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentNotAvailable", + "printedName": "paymentNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO19paymentNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO19paymentNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "setupPaymentNotAvailable", + "printedName": "setupPaymentNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO24setupPaymentNotAvailableyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO24setupPaymentNotAvailableyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "invalidDecodeDetails", + "printedName": "invalidDecodeDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20invalidDecodeDetailsyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20invalidDecodeDetailsyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "invalidEncodeScope", + "printedName": "invalidEncodeScope", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO18invalidEncodeScopeyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO18invalidEncodeScopeyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentTriggerPresentationFailed", + "printedName": "paymentTriggerPresentationFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO32paymentTriggerPresentationFailedyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO32paymentTriggerPresentationFailedyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentCancelled", + "printedName": "paymentCancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16paymentCancelledyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16paymentCancelledyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "gatewaySetFailed", + "printedName": "gatewaySetFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16gatewaySetFailedyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16gatewaySetFailedyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "stripePaymentMethodCreation", + "printedName": "stripePaymentMethodCreation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO27stripePaymentMethodCreationyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO27stripePaymentMethodCreationyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "paymentIssue", + "printedName": "paymentIssue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO12paymentIssueyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO12paymentIssueyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "gatewayNotConfigured", + "printedName": "gatewayNotConfigured", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO20gatewayNotConfiguredyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO20gatewayNotConfiguredyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "tokenIssue", + "printedName": "tokenIssue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(OSPaymentsLib.OSPMTError.Type) -> OSPaymentsLib.OSPMTError", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "OSPaymentsLib.OSPMTError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13OSPaymentsLib10OSPMTErrorO10tokenIssueyA2CmF", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO10tokenIssueyA2CmF", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvp", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvp", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvg", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO16errorDescriptionSSSgvg", + "moduleName": "OSPaymentsLib", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSPaymentsLib.OSPMTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueACSgSi_tcfc", + "moduleName": "OSPaymentsLib", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueSivp", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueSivp", + "moduleName": "OSPaymentsLib", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13OSPaymentsLib10OSPMTErrorO8rawValueSivg", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO8rawValueSivg", + "moduleName": "OSPaymentsLib", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13OSPaymentsLib10OSPMTErrorO", + "mangledName": "$s13OSPaymentsLib10OSPMTErrorO", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "StripePayments", + "printedName": "StripePayments", + "declKind": "Import", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "StripeCore", + "printedName": "StripeCore", + "declKind": "Import", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "ImplementationOnly" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTCallbackDelegate", + "printedName": "OSPMTCallbackDelegate", + "children": [ + { + "kind": "Function", + "name": "callback", + "printedName": "callback(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "OSPaymentsLib.OSPMTError?", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTError", + "printedName": "OSPaymentsLib.OSPMTError", + "usr": "s:13OSPaymentsLib10OSPMTErrorO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP8callback6result5errorySSSg_AA10OSPMTErrorOSgtF", + "mangledName": "$s13OSPaymentsLib21OSPMTCallbackDelegateP8callback6result5errorySSSg_AA10OSPMTErrorOSgtF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTCallbackDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP", + "mangledName": "$s13OSPaymentsLib21OSPMTCallbackDelegateP", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OSPMTActionDelegate", + "printedName": "OSPMTActionDelegate", + "children": [ + { + "kind": "Function", + "name": "setupConfiguration", + "printedName": "setupConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP18setupConfigurationyyF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP18setupConfigurationyyF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkWalletSetup", + "printedName": "checkWalletSetup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP16checkWalletSetupyyF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP16checkWalletSetupyyF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP3set_3andySS_SSSgtF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP3set_3andySS_SSSgtF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegatePAAE3setyySSF", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegatePAAE3setyySSF", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 where τ_0_0 : OSPaymentsLib.OSPMTActionDelegate>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP", + "moduleName": "OSPaymentsLib", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "PassKit", + "printedName": "PassKit", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "OSPaymentsLib" + }, + { + "kind": "TypeDecl", + "name": "OSPMTPayments", + "printedName": "OSPMTPayments", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(applePayWithDelegate:andConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTPayments", + "printedName": "OSPaymentsLib.OSPMTPayments", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments" + }, + { + "kind": "TypeNominal", + "name": "OSPMTCallbackDelegate", + "printedName": "OSPaymentsLib.OSPMTCallbackDelegate", + "usr": "s:13OSPaymentsLib21OSPMTCallbackDelegateP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC20applePayWithDelegate16andConfigurationAcA013OSPMTCallbackG0_p_SDySSypGtcfc", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC20applePayWithDelegate16andConfigurationAcA013OSPMTCallbackG0_p_SDySSypGtcfc", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OSPMTPayments", + "printedName": "OSPaymentsLib.OSPMTPayments", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments(im)init", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsCACycfc", + "moduleName": "OSPaymentsLib", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setupConfiguration", + "printedName": "setupConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC18setupConfigurationyyF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC18setupConfigurationyyF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkWalletSetup", + "printedName": "checkWalletSetup()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC16checkWalletSetupyyF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC16checkWalletSetupyyF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:and:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13OSPaymentsLib13OSPMTPaymentsC3set_3andySS_SSSgtF", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC3set_3andySS_SSSgtF", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@OSPaymentsLib@objc(cs)OSPMTPayments", + "mangledName": "$s13OSPaymentsLib13OSPMTPaymentsC", + "moduleName": "OSPaymentsLib", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "OSPMTActionDelegate", + "printedName": "OSPMTActionDelegate", + "usr": "s:13OSPaymentsLib19OSPMTActionDelegateP", + "mangledName": "$s13OSPaymentsLib19OSPMTActionDelegateP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "STPAPIClient", + "printedName": "STPAPIClient", + "declKind": "Class", + "usr": "c:@M@StripeCore@objc(cs)STPAPIClient", + "mangledName": "$s10StripeCore12STPAPIClientC", + "moduleName": "StripeCore", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PKPassLibrary", + "printedName": "PKPassLibrary", + "declKind": "Class", + "usr": "c:objc(cs)PKPassLibrary", + "moduleName": "PassKit", + "isOpen": true, + "intro_iOS": "6.0", + "objc_name": "PKPassLibrary", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PKPaymentAuthorizationController", + "printedName": "PKPaymentAuthorizationController", + "declKind": "Class", + "usr": "c:objc(cs)PKPaymentAuthorizationController", + "moduleName": "PassKit", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "PKPaymentAuthorizationController", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTAvailabilityDelegate.swift", + "kind": "BooleanLiteral", + "offset": 2505, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTAvailabilityDelegate.swift", + "kind": "BooleanLiteral", + "offset": 2872, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 74, + "value": "\"Couldn't obtain the payment's informations from the configurations file.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 848, + "length": 47, + "value": "\"The Apple Pay is not available in the device.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 40, + "value": "\"There is no payment method configured.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1050, + "length": 82, + "value": "\"There are no valid payment cards for the supported networks and\/or capabilities.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1188, + "length": 38, + "value": "\"Couldn't decode the payment details.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 36, + "value": "\"Couldn't encode the payment scope.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1384, + "length": 40, + "value": "\"Couldn't present the Apple Pay screen.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1476, + "length": 36, + "value": "\"Payment was cancelled by the user.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1577, + "length": 40, + "value": "\"Couldn't set payment service provider.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 48, + "value": "\"Couldn't obtain the PaymentMethod from Stripe.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1776, + "length": 27, + "value": "\"Couldn't process payment.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1859, + "length": 93, + "value": "\"Couldn't trigger the payment. The requested payment service provider is not configured yet.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "StringLiteral", + "offset": 1998, + "length": 66, + "value": "\"Couldn’t trigger the payment. The access token is not defined.\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 153, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 185, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 218, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 322, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 368, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 504, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 539, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Error\/OSPMTError.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 8, + "value": "\"Stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 87, + "length": 8, + "value": "\"Stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/OSPMTGateway.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 8, + "value": "\"stripe\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 16, + "value": "\"payment_method\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 371, + "length": 16, + "value": "\"payment_method\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "BooleanLiteral", + "offset": 800, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeRequestParametersModel.swift", + "kind": "StringLiteral", + "offset": 125, + "length": 33, + "value": "\"OSPaymentsLib.OSPMTStripeRequestParametersModel\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 420, + "length": 7, + "value": "\"debit\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 478, + "length": 8, + "value": "\"credit\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 538, + "length": 5, + "value": "\"3ds\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKMerchantCapability+Adapter.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 5, + "value": "\"emv\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 416, + "length": 13, + "value": "\"contactInfo\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 416, + "length": 13, + "value": "\"contactInfo\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1919, + "length": 18, + "value": "\"shippingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1968, + "length": 17, + "value": "\"billingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 5, + "value": "\"psp\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1919, + "length": 18, + "value": "\"shippingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 1968, + "length": 17, + "value": "\"billingContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTDetailsModel.swift", + "kind": "StringLiteral", + "offset": 2009, + "length": 5, + "value": "\"psp\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 104, + "length": 9, + "value": "\"pending\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 133, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 8, + "value": "\"failed\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 104, + "length": 9, + "value": "\"pending\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 133, + "length": 11, + "value": "\"succeeded\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTServiceProviderInfoModel.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 8, + "value": "\"failed\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 1971, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 3129, + "length": 11, + "value": "\"Apple Pay\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4345, + "length": 28, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4358, + "length": 1, + "value": "\" \"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPayment+Adapter.swift", + "kind": "StringLiteral", + "offset": 4372, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 14, + "value": "\"tokenization\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 14, + "value": "\"tokenization\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5715, + "length": 20, + "value": "\"ApplePayMerchantID\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5770, + "length": 22, + "value": "\"ApplePayMerchantName\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5834, + "length": 29, + "value": "\"ApplePayMerchantCountryCode\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 5917, + "length": 32, + "value": "\"ApplePayPaymentAllowedNetworks\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6000, + "length": 38, + "value": "\"ApplePayPaymentSupportedCapabilities\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6090, + "length": 39, + "value": "\"ApplePayPaymentSupportedCardCountries\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6186, + "length": 35, + "value": "\"ApplePayShippingSupportedContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6277, + "length": 34, + "value": "\"ApplePayBillingSupportedContacts\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6357, + "length": 24, + "value": "\"ApplePayPaymentGateway\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6422, + "length": 28, + "value": "\"ApplePayPaymentGatewayName\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6490, + "length": 20, + "value": "\"ApplePayRequestURL\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "StringLiteral", + "offset": 6553, + "length": 30, + "value": "\"ApplePayStripePublishableKey\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 9729, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 9832, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "BooleanLiteral", + "offset": 10339, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Models\/OSPMTConfigurationModel.swift", + "kind": "Array", + "offset": 10896, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTRequestDelegate.swift", + "kind": "StringLiteral", + "offset": 2566, + "length": 29, + "value": "\"OSPaymentsLib.OSPMTApplePayRequestBehaviour\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTRequestDelegate.swift", + "kind": "Array", + "offset": 8746, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Gateways\/Stripe\/OSPMTStripeWrapper.swift", + "kind": "IntegerLiteral", + "offset": 1898, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentAuthorizationController+Adapter.swift", + "kind": "BooleanLiteral", + "offset": 923, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/OSPMTApplePayHandler.swift", + "kind": "StringLiteral", + "offset": 147, + "length": 20, + "value": "\"OSPaymentsLib.OSPMTApplePayHandler\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 6, + "value": "\"amex\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 443, + "length": 10, + "value": "\"discover\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 6, + "value": "\"visa\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKPaymentNetwork+Adapter.swift", + "kind": "StringLiteral", + "offset": 543, + "length": 12, + "value": "\"mastercard\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTCallbackDelegate.swift", + "kind": "StringLiteral", + "offset": 780, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1403, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1443, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "StringLiteral", + "offset": 1648, + "length": 16, + "value": "\"Payments-Token\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Protocols\/OSPMTGatewayDelegate.swift", + "kind": "IntegerLiteral", + "offset": 1953, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 464, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 510, + "length": 7, + "value": "\"phone\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/Extensions\/PKContactField+Adapter.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 16, + "value": "\"postal_address\"" + }, + { + "filePath": "\/Users\/rcj\/Documents\/Projects\/OSPaymentsLib-iOS\/OSPaymentsLib\/OSPMTPayments.swift", + "kind": "StringLiteral", + "offset": 112, + "length": 13, + "value": "\"OSPaymentsLib.OSPMTPayments\"" + } + ] +} \ No newline at end of file diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..de029ab --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,57 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex +import Foundation +import PassKit +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +public enum OSPMTError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { + case invalidConfiguration + case walletNotAvailable + case paymentNotAvailable + case setupPaymentNotAvailable + case invalidDecodeDetails + case invalidEncodeScope + case paymentTriggerPresentationFailed + case paymentCancelled + case gatewaySetFailed + case stripePaymentMethodCreation + case paymentIssue + case gatewayNotConfigured + case tokenIssue + public var errorDescription: Swift.String? { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public typealias OSPMTConfiguration = [Swift.String : Any] +public protocol OSPMTCallbackDelegate : AnyObject { + func callback(result: Swift.String?, error: OSPaymentsLib.OSPMTError?) +} +public protocol OSPMTActionDelegate : AnyObject { + func setupConfiguration() + func checkWalletSetup() + func set(_ details: Swift.String, and accessToken: Swift.String?) +} +extension OSPaymentsLib.OSPMTActionDelegate { + public func set(_ details: Swift.String) +} +@objc @_hasMissingDesignatedInitializers public class OSPMTPayments : ObjectiveC.NSObject { + convenience public init(applePayWithDelegate delegate: any OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) + @objc deinit +} +extension OSPaymentsLib.OSPMTPayments : OSPaymentsLib.OSPMTActionDelegate { + public func setupConfiguration() + public func checkWalletSetup() + public func set(_ details: Swift.String, and accessToken: Swift.String?) +} +extension OSPaymentsLib.OSPMTError : Swift.Equatable {} +extension OSPaymentsLib.OSPMTError : Swift.Hashable {} +extension OSPaymentsLib.OSPMTError : Swift.RawRepresentable {} diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index c18c60e..fa2dcd6 100644 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 2c8d088..de029ab 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,10 +1,13 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name OSPaymentsLib +// swift-module-flags-ignorable: -enable-bare-slash-regex import Foundation import PassKit import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims public enum OSPMTError : Swift.Int, Foundation.CustomNSError, Foundation.LocalizedError { case invalidConfiguration case walletNotAvailable @@ -41,7 +44,7 @@ extension OSPaymentsLib.OSPMTActionDelegate { public func set(_ details: Swift.String) } @objc @_hasMissingDesignatedInitializers public class OSPMTPayments : ObjectiveC.NSObject { - convenience public init(applePayWithDelegate delegate: OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) + convenience public init(applePayWithDelegate delegate: any OSPaymentsLib.OSPMTCallbackDelegate, andConfiguration configurationSource: OSPaymentsLib.OSPMTConfiguration = Bundle.main.infoDictionary!) @objc deinit } extension OSPaymentsLib.OSPMTPayments : OSPaymentsLib.OSPMTActionDelegate { diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/OSPaymentsLib b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/OSPaymentsLib index 484d5c2..06c5a83 100755 Binary files a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/OSPaymentsLib and b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/OSPaymentsLib differ diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/PrivacyInfo.xcprivacy b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..960504a --- /dev/null +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/PrivacyInfo.xcprivacy @@ -0,0 +1,97 @@ + + + + + NSPrivacyTracking + + + NSPrivacyTrackingDomains + + + NSPrivacyCollectedDataTypes + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeName + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeEmailAddress + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePhoneNumber + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePhysicalAddress + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypePaymentInfo + + NSPrivacyCollectedDataTypeLinked + + + NSPrivacyCollectedDataTypeTracking + + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + + NSPrivacyAccessedAPITypes + + + diff --git a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/_CodeSignature/CodeResources b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/_CodeSignature/CodeResources index b9d7ca0..d216fb9 100644 --- a/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/_CodeSignature/CodeResources +++ b/src/ios/frameworks/OSPaymentsLib.xcframework/ios-arm64_x86_64-simulator/OSPaymentsLib.framework/_CodeSignature/CodeResources @@ -6,40 +6,60 @@ Headers/OSPaymentsLib-Swift.h - LrwJlFRNLS+rZyF0YCgpkAoSsS8= + ligywF0+LVe2GblpG1VwBBLV8uI= Info.plist - hoLGYwrNauh8GmTkevFWDTbn0hA= + IrUfwRkHbCqBit+suRopEJPu7mc= + + Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + 9Cm/dPw6xMyuOd8iDLvuePMf2tE= Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc - G5b4BzHyW/YMmpewNYc1is3Njwc= + 4b7MrfEDfx1orB1ellIZTvZJtDk= Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface - cw3erTA/VIc52vKeLQ1JHmrOE/w= + 9Cm/dPw6xMyuOd8iDLvuePMf2tE= Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule - uGPn414HDwYUytzYU2Ehlfrg8NM= + YMqvMmf3hRyDkJ1ZnCh1a06lld4= + + Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json + + 3RAC6m0vtLly1jmDlyDuucPk2rM= + + Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + 78BENsBG6faOD/JPn/q0N6t873M= Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - QtOhm8R6Ih4Wfv71vebhmoptAfE= + JJD9CMinsqbdTEDMOu/Ncjshujk= Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - 00xZ1xp6dw6vSg2Kk9B5a5Du/As= + 78BENsBG6faOD/JPn/q0N6t873M= Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - MpK2tn5/T4H+vrOrrONbgIh8bbw= + I2mhRAbhC47xNwcssDP+6R6HYvU= Modules/module.modulemap ZCSjgjfVp9V+KS7M0ouCKiZyycw= + PrivacyInfo.xcprivacy + + eyCgUbZiOgXeKRb+5fZ14Msnu7Y= + files2 @@ -47,49 +67,77 @@ hash2 - iNj8WZwj/Eestx74w5ErEIx102YlHnl7k3PSQZSUa4c= + vlum/jsVwNiQ4mYMKlQeV3IdPq5PrpFmYwNKIVzIUi8= + + + Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash2 + + skPcNx6YW6v8t+gQR5t/cCqUW2WwnZKeXVjnfdTDL5o= + + + Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash2 + + s1S5jdqAFekgdmebPc1i1/QJ/IdVwz/cIUtvmLq0HbA= Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - DNh3FH5aOWnjS88I7lgsRo1wzBSHZTltw7hKQPaXbEs= + oNc9od+IsS7lf1Yv/Kp/+8LVjjbuVaHBHeCT/tX34sI= Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - kgO6XzGCa1/VagZqCWchgAwtb8zmlh53mwzQUrwa8x0= + s1S5jdqAFekgdmebPc1i1/QJ/IdVwz/cIUtvmLq0HbA= Modules/OSPaymentsLib.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - TqNnbMfDvzCl8bWqbWpfhILPOnnwEC/EPlLcf24MqRg= + lvPsARIUMeQo8mitK362BD7b6Z99aShRJ+B0jrxS6yI= + + + Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash2 + + skPcNx6YW6v8t+gQR5t/cCqUW2WwnZKeXVjnfdTDL5o= + + + Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash2 + + Cg4C0J8n9aOU0FfG+YSTAVjila0ZCkS++z5+PJ/mFBo= Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - Jo3YhHZIzbjb8faWRFloCLnGeMO9jTEyZnpV7/CSM5E= + qN/idxEujpj9wng+vOUxjWIHcP+z6wQfIL1c5QQ9FfI= Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - ihuMxNcD7jeM4ArNOx2PfWRLb6N5IxO/c3B8z28pXgU= + Cg4C0J8n9aOU0FfG+YSTAVjila0ZCkS++z5+PJ/mFBo= Modules/OSPaymentsLib.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - IcOicWPqELxhwG+3HvEWZnqHGC6/P2NqA6KqTmYiAf8= + WRrHJAMQkTGrQomeD+VfcMfpou+tg7bhOW5ex+HjvZQ= Modules/module.modulemap @@ -99,6 +147,13 @@ TODxZ8eIPENf7N2BTVKIqwNphGFqbYmXyZCEggJ3p3c= + PrivacyInfo.xcprivacy + + hash2 + + 7hP3zAw3IO2TsJ/v4HrglwEEnnIPIzqSzVVgLfVUzdY= + + rules