diff --git a/CHANGELOG.md b/CHANGELOG.md index af23ec09c..9868c7a60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. #### 3.x Releases +## [3.5.1](https://github.com/checkout/frames-ios/releases/tag/3.5.1) + +Released on 2021-10-19. + +#### Fixed + +* `Localizable.strings` issue when used with Cocoapods as a static library. +* Compilation issue for simulator release builds with Swift Package Manager. + ## [3.5.0](https://github.com/checkout/frames-ios/releases/tag/3.5.0) Released on 2021-09-29. diff --git a/Frames.podspec b/Frames.podspec index 52a934f23..9a2a1cd80 100644 --- a/Frames.podspec +++ b/Frames.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Frames" - s.version = "3.5.0" + s.version = "3.5.1" s.summary = "Checkout API Client, Payment Form UI and Utilities in Swift" s.description = <<-DESC Checkout API Client and Payment Form Utilities in Swift. @@ -15,21 +15,17 @@ Pod::Spec.new do |s| s.source_files = 'Source/**/*.swift' s.exclude_files = "Classes/Exclude" - s.resources = 'Source/Resources/**/*' + s.resource_bundles = { + 'Frames' => ['Source/Resources/**/*'] + } - s.dependency 'PhoneNumberKit', '~> 3.3' - s.dependency 'CheckoutEventLoggerKit', '~> 1.0' + s.dependency 'PhoneNumberKit', '3.3.3' + s.dependency 'CheckoutEventLoggerKit', '1.1.1' s.test_spec do |t| t.source_files = 'Tests/**/*.swift' t.resources = 'Tests/Fixtures/*' t.requires_app_host = true + t.scheme = { :environment_variables => { 'COCOAPODS' => true }} end - - s.pod_target_xcconfig = { - 'VALID_ARCHS' => 'arm64 armv7 x86_64', - 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' - } - - s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } end diff --git a/Package.resolved b/Package.resolved index 975e52455..b9583b060 100644 --- a/Package.resolved +++ b/Package.resolved @@ -6,8 +6,8 @@ "repositoryURL": "https://github.com/checkout/checkout-event-logger-ios-framework.git", "state": { "branch": null, - "revision": "d3f87cede558cf229912ceaabe2f4ba3b8cb1e3d", - "version": "1.0.3" + "revision": "917efddacf253a09c17921d268c0aa817a5011d5", + "version": "1.1.1" } }, { diff --git a/Package.swift b/Package.swift index 8c66631de..c08909668 100644 --- a/Package.swift +++ b/Package.swift @@ -15,13 +15,24 @@ let package = Package( ) ], dependencies: [ - .package(url: "https://github.com/marmelroy/PhoneNumberKit.git", from: "3.3.0"), - .package(name: "CheckoutEventLoggerKit", url: "https://github.com/checkout/checkout-event-logger-ios-framework.git", from: "1.0.3") + .package( + name: "PhoneNumberKit", + url: "https://github.com/marmelroy/PhoneNumberKit.git", + from: "3.3.3" + ), + .package( + name: "CheckoutEventLoggerKit", + url: "https://github.com/checkout/checkout-event-logger-ios-framework.git", + from: "1.1.1" + ) ], targets: [ .target( name: "Frames", - dependencies: ["PhoneNumberKit", "CheckoutEventLoggerKit"], + dependencies: [ + "PhoneNumberKit", + "CheckoutEventLoggerKit" + ], path: "Source", exclude: ["Suppporting Files/Info.plist"], resources: [ diff --git a/README.md b/README.md index 7692e47fa..68afe4a57 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,6 @@ Then, run the following command: $ pod install ``` -We do not support i386 builds. Cocoapods should configure this for you, but if not, see [Architecture Support](#architecture-support) for setup. - ### Carthage [Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. @@ -90,8 +88,6 @@ github "checkout/frames-ios" ~> 3 Run `carthage update --use-xcframeworks` to build the framework and drag the built `Frames` into your Xcode project. -If you are planning to run release builds for simulator, make sure to exclude the i386 architecture from your builds. See [Architecture Support](#architecture-support) for setup. - ### Swift Package Manager [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the swift compiler. @@ -104,8 +100,6 @@ dependencies: [ ] ``` -If you are planning to run release builds for simulator, make sure to exclude the i386 architecture from your builds. See [Architecture Support](#architecture-support) for setup. - ## Usage Import the SDK: @@ -370,7 +364,7 @@ threeDSWebViewController.url = "http://example.com/3ds" threeDSWebViewController.delegate = self ``` -Handle the result by adding conformance to `CvvConfirmationViewControllerDelegate`. +Handle the result by adding conformance to `ThreedsWebViewControllerDelegate`. ```swift extension ViewController: ThreedsWebViewControllerDelegate { @@ -401,13 +395,6 @@ CheckoutTheme.chevronColor = .white CheckoutTheme.font = UIFont(name: "Chalkboard SE", size: 12)! ``` -## Architecture Support - -We support all available architectures in Xcode except i386. -Cocoapods should handle this for you, but if this is not working or if you're using SPM or Carthage you will need to configure your excluded architectures in your build settings as below: - -![excluded architectures](screenshots/excludedArchitectures.png) - ## License Frames iOS is released under the MIT license. [See LICENSE](https://github.com/checkout/frames-ios/blob/master/LICENSE) for details. diff --git a/Source/Core/Constants.swift b/Source/Core/Constants.swift index 6e93229c5..de56ed72f 100644 --- a/Source/Core/Constants.swift +++ b/Source/Core/Constants.swift @@ -1,7 +1,7 @@ struct Constants { static let productName = "frames-ios-sdk" - static let version = "3.5.0" + static let version = "3.5.1" static let userAgent = "checkout-sdk-frames-ios/\(version)" } diff --git a/Tests/Resources/ResourcesTests.swift b/Tests/Resources/ResourcesTests.swift new file mode 100644 index 000000000..d5b5aa4e7 --- /dev/null +++ b/Tests/Resources/ResourcesTests.swift @@ -0,0 +1,38 @@ +// +// ResourcesTests.swift +// Frames-Unit-Tests +// +// Created by Harry Brown on 12/10/2021. +// + +import XCTest +@testable import Frames + +final class ResourcesTests: XCTestCase { + + func test_findExpectedResources() { + + #if SWIFT_PACKAGE + let framesResourceBundlePath = "Frames_Frames" + #endif + + #if COCOAPODS + let framesResourceBundlePath = "Frames" + #endif + + let framesTopLevelBundle = Bundle(for: CheckoutAPIClient.self) + guard let framesResourceBundleURL = framesTopLevelBundle.url(forResource: framesResourceBundlePath, withExtension: "bundle") else { + XCTFail("could not find resource bundle url") + return + } + + guard let framesResourceBundle = Bundle(url: framesResourceBundleURL) else { + XCTFail("could not find internal bundle") + return + } + + XCTAssertEqual(framesResourceBundle.localizations.count, 6) + XCTAssertNotNil(framesResourceBundle.url(forResource: "icon-amex", withExtension: "png")) + } +} + diff --git a/docs/Classes.html b/docs/Classes.html index b50ecb9c0..3e9fba412 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -887,8 +887,8 @@

Declaration

diff --git a/docs/Classes/AddressView.html b/docs/Classes/AddressView.html index b15f71d4e..f28e04f83 100644 --- a/docs/Classes/AddressView.html +++ b/docs/Classes/AddressView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

AddressView

-

Initialization

+

Initialization

@@ -356,8 +356,8 @@

Declaration

diff --git a/docs/Classes/AddressViewController.html b/docs/Classes/AddressViewController.html index f66d97a1c..1a73deba8 100644 --- a/docs/Classes/AddressViewController.html +++ b/docs/Classes/AddressViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

AddressViewController

-

Properties

+

Properties

@@ -358,7 +358,7 @@

Declaration

-

Initialization

+

Initialization

@@ -462,7 +462,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -595,7 +595,7 @@

Declaration

-

Methods

+

Methods

@@ -638,7 +638,7 @@

Declaration

-

CountrySelectionViewControllerDelegate

+

CountrySelectionViewControllerDelegate

@@ -681,7 +681,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -754,8 +754,8 @@

Declaration

diff --git a/docs/Classes/CardListCell.html b/docs/Classes/CardListCell.html index 4e2a4950e..bf1679fa1 100644 --- a/docs/Classes/CardListCell.html +++ b/docs/Classes/CardListCell.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardListCell

-

Properties

+

Properties

@@ -386,7 +386,7 @@

Declaration

-

Initialization

+

Initialization

@@ -459,7 +459,7 @@

Declaration

-

Methods

+

Methods

@@ -551,8 +551,8 @@

Parameters

diff --git a/docs/Classes/CardListCellName.html b/docs/Classes/CardListCellName.html index 2592e36ab..bb2a76dd9 100644 --- a/docs/Classes/CardListCellName.html +++ b/docs/Classes/CardListCellName.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardListCellName

-

Properties

+

Properties

@@ -326,7 +326,7 @@

Declaration

-

Initialization

+

Initialization

@@ -399,8 +399,8 @@

Declaration

diff --git a/docs/Classes/CardNumberInputView.html b/docs/Classes/CardNumberInputView.html index 19499d3be..be2e0efbf 100644 --- a/docs/Classes/CardNumberInputView.html +++ b/docs/Classes/CardNumberInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

CardNumberInputView

-

Properties

+

Properties

@@ -328,7 +328,7 @@

Declaration

-

Initialization

+

Initialization

@@ -401,7 +401,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -536,8 +536,8 @@

Declaration

diff --git a/docs/Classes/CardUtils.html b/docs/Classes/CardUtils.html index d63129bd2..1c70e8f5f 100644 --- a/docs/Classes/CardUtils.html +++ b/docs/Classes/CardUtils.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardUtils

-

Initialization

+

Initialization

@@ -330,7 +330,7 @@

Return Value

-

Methods

+

Methods

@@ -924,8 +924,8 @@

Return Value

diff --git a/docs/Classes/CardView.html b/docs/Classes/CardView.html index 8b254e140..f5569c829 100644 --- a/docs/Classes/CardView.html +++ b/docs/Classes/CardView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardView

-

Properties

+

Properties

@@ -476,7 +476,7 @@

Declaration

-

Initialization

+

Initialization

@@ -549,8 +549,8 @@

Declaration

diff --git a/docs/Classes/CardViewController.html b/docs/Classes/CardViewController.html index afcaf23bf..1dc739dd5 100644 --- a/docs/Classes/CardViewController.html +++ b/docs/Classes/CardViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -287,7 +287,7 @@

CardViewController

-

Properties

+

Properties

@@ -347,7 +347,7 @@

Declaration

@@ -377,7 +377,7 @@

Declaration

@@ -407,7 +407,7 @@

Declaration

@@ -437,7 +437,7 @@

Declaration

@@ -540,7 +540,7 @@

Declaration

-

Initialization

+

Initialization

@@ -645,7 +645,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -808,7 +808,7 @@

Declaration

-

AddressViewControllerDelegate

+

AddressViewControllerDelegate

@@ -851,7 +851,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -924,7 +924,7 @@

Declaration

-

CardNumberInputViewDelegate

+

CardNumberInputViewDelegate

@@ -967,7 +967,7 @@

Declaration

-

CvvInputViewDelegate

+

CvvInputViewDelegate

@@ -1009,8 +1009,8 @@

Declaration

diff --git a/docs/Classes/CheckoutAPIClient.html b/docs/Classes/CheckoutAPIClient.html index 08be2260b..2c78b15c1 100644 --- a/docs/Classes/CheckoutAPIClient.html +++ b/docs/Classes/CheckoutAPIClient.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

CheckoutAPIClient

-

Init

+

Init

@@ -309,7 +309,7 @@

Init

Declaration

Swift

-
public convenience init(publicKey: String,
+                          
public convenience init(publicKey: String,
                         environment: Environment = .sandbox)
@@ -363,7 +363,7 @@

Return Value

-

Methods

+

Methods

@@ -451,7 +451,7 @@

Parameters

Declaration

Swift

-
@available(*, deprecated, message: "Use createCardToken with a Swift Result type for completion handler.")
+                          
@available(*, deprecated, message: "Use createCardToken with a Swift Result type for completion handler.")
 public func createCardToken(card: CkoCardTokenRequest,
                             successHandler: @escaping (CkoCardTokenResponse) -> Void,
                             errorHandler: @escaping (ErrorResponse) -> Void)
@@ -591,7 +591,7 @@

Parameters

Declaration

Swift

-
@available(*, deprecated, message: "Use createApplePayToken with a Swift Result type for completion handler.")
+                          
@available(*, deprecated, message: "Use createApplePayToken with a Swift Result type for completion handler.")
 public func createApplePayToken(paymentData: Data,
                                 successHandler: @escaping (CkoCardTokenResponse) -> Void,
                                 errorHandler: @escaping (ErrorResponse) -> Void)
@@ -719,8 +719,8 @@

Parameters

diff --git a/docs/Classes/CheckoutTheme.html b/docs/Classes/CheckoutTheme.html index fa22efad6..065e1f69c 100644 --- a/docs/Classes/CheckoutTheme.html +++ b/docs/Classes/CheckoutTheme.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -334,7 +334,7 @@

Declaration

@@ -557,8 +557,8 @@

Declaration

diff --git a/docs/Classes/CountrySelectionViewController.html b/docs/Classes/CountrySelectionViewController.html index 70aca631f..ced0ae018 100644 --- a/docs/Classes/CountrySelectionViewController.html +++ b/docs/Classes/CountrySelectionViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -286,7 +286,7 @@

CountrySelectionViewController

-

Properties

+

Properties

@@ -329,7 +329,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -372,7 +372,7 @@

Declaration

-

UITableViewDataSource

+

UITableViewDataSource

@@ -535,7 +535,7 @@

Declaration

-

UISearchBarDelegate

+

UISearchBarDelegate

@@ -638,8 +638,8 @@

Declaration

diff --git a/docs/Classes/CvvConfirmationViewController.html b/docs/Classes/CvvConfirmationViewController.html index a2ded0d9c..c6afd3e3f 100644 --- a/docs/Classes/CvvConfirmationViewController.html +++ b/docs/Classes/CvvConfirmationViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CvvConfirmationViewController

-

Properties

+

Properties

@@ -326,7 +326,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -369,7 +369,7 @@

Declaration

-

Methods

+

Methods

@@ -444,8 +444,8 @@

Declaration

diff --git a/docs/Classes/CvvInputView.html b/docs/Classes/CvvInputView.html index eed15a401..ba962cb10 100644 --- a/docs/Classes/CvvInputView.html +++ b/docs/Classes/CvvInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

CvvInputView

-

Properties

+

Properties

@@ -345,7 +345,7 @@

Declaration

@@ -358,7 +358,7 @@

Declaration

-

Initialization

+

Initialization

@@ -431,7 +431,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -536,8 +536,8 @@

Declaration

diff --git a/docs/Classes/DetailsInputView.html b/docs/Classes/DetailsInputView.html index 4c3838c83..1b889eb43 100644 --- a/docs/Classes/DetailsInputView.html +++ b/docs/Classes/DetailsInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

DetailsInputView

-

Properties

+

Properties

@@ -388,7 +388,7 @@

Declaration

-

Initialization

+

Initialization

@@ -461,8 +461,8 @@

Declaration

diff --git a/docs/Classes/ExpirationDateInputView.html b/docs/Classes/ExpirationDateInputView.html index 9b3520e24..bf72a1c16 100644 --- a/docs/Classes/ExpirationDateInputView.html +++ b/docs/Classes/ExpirationDateInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

ExpirationDateInputView

-

Initialization

+

Initialization

@@ -358,7 +358,7 @@

Declaration

-

ExpirationDatePickerDelegate

+

ExpirationDatePickerDelegate

@@ -400,8 +400,8 @@

Declaration

diff --git a/docs/Classes/ExpirationDatePicker.html b/docs/Classes/ExpirationDatePicker.html index e4e58ce41..6d4bf715f 100644 --- a/docs/Classes/ExpirationDatePicker.html +++ b/docs/Classes/ExpirationDatePicker.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

ExpirationDatePicker

-

Properties

+

Properties

@@ -327,7 +327,7 @@

Declaration

-

Initialization

+

Initialization

@@ -400,7 +400,7 @@

Declaration

-

Methods

+

Methods

@@ -474,7 +474,7 @@

Parameters

-

UIPickerViewDelegate

+

UIPickerViewDelegate

@@ -517,7 +517,7 @@

Declaration

-

UIPickerViewDataSource

+

UIPickerViewDataSource

@@ -620,8 +620,8 @@

Declaration

diff --git a/docs/Classes/PhoneNumberInputView.html b/docs/Classes/PhoneNumberInputView.html index 76e1ab1cc..635aed747 100644 --- a/docs/Classes/PhoneNumberInputView.html +++ b/docs/Classes/PhoneNumberInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

PhoneNumberInputView

-

Properties

+

Properties

@@ -387,7 +387,7 @@

Declaration

-

Initialization

+

Initialization

@@ -460,7 +460,7 @@

Declaration

-

Setup

+

Setup

@@ -504,8 +504,8 @@

Declaration

diff --git a/docs/Classes/SimpleLoadingViewController.html b/docs/Classes/SimpleLoadingViewController.html index 74d8d24e2..adbdce841 100644 --- a/docs/Classes/SimpleLoadingViewController.html +++ b/docs/Classes/SimpleLoadingViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

SimpleLoadingViewController

-

Properties

+

Properties

@@ -356,8 +356,8 @@

Declaration

diff --git a/docs/Classes/StandardInputView.html b/docs/Classes/StandardInputView.html index 6871f7673..b119b83a9 100644 --- a/docs/Classes/StandardInputView.html +++ b/docs/Classes/StandardInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

StandardInputView

-

Properties

+

Properties

@@ -387,7 +387,7 @@

Declaration

-

Initialization

+

Initialization

@@ -460,7 +460,7 @@

Declaration

-

Methods

+

Methods

@@ -552,8 +552,8 @@

Declaration

diff --git a/docs/Classes/ThreedsWebViewController.html b/docs/Classes/ThreedsWebViewController.html index 1ba942782..33706cfe7 100644 --- a/docs/Classes/ThreedsWebViewController.html +++ b/docs/Classes/ThreedsWebViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

ThreedsWebViewController

-

Properties

+

Properties

@@ -339,7 +339,7 @@

Declaration

Declaration

Swift

-
@available(*, deprecated, renamed: "authUrl")
+                          
@available(*, deprecated, renamed: "authUrl")
 public var url: String? { get set }
@@ -388,7 +388,7 @@

Declaration

-

Initialization

+

Initialization

@@ -413,8 +413,8 @@

Initialization

Declaration

Swift

-
@available(*, deprecated, renamed: "init(successUrl:failUrl:﹚")
-public convenience init(successUrl successUrlString: String, failUrl failUrlString: String)
+
@available(*, deprecated, renamed: "init(successUrl:failUrl:﹚")
+public convenience init(successUrl successUrlString: String, failUrl failUrlString: String)
@@ -444,7 +444,7 @@

Declaration

Declaration

Swift

-
public convenience init(successUrl: URL, failUrl: URL)
+
public convenience init(successUrl: URL, failUrl: URL)
@@ -522,7 +522,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -595,7 +595,7 @@

Declaration

-

WKNavigationDelegate

+

WKNavigationDelegate

@@ -669,8 +669,8 @@

Declaration

diff --git a/docs/Delegates.html b/docs/Delegates.html index 9d9fa9d6e..33a4d4456 100644 --- a/docs/Delegates.html +++ b/docs/Delegates.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -493,8 +493,8 @@

Declaration

diff --git a/docs/Enumerations.html b/docs/Enumerations.html index 0c60ca687..b11b2670a 100644 --- a/docs/Enumerations.html +++ b/docs/Enumerations.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -391,8 +391,8 @@

Declaration

diff --git a/docs/Enums/CardScheme.html b/docs/Enums/CardScheme.html index 1a5290b58..a86626765 100644 --- a/docs/Enums/CardScheme.html +++ b/docs/Enums/CardScheme.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -538,8 +538,8 @@

Declaration

diff --git a/docs/Enums/CheckoutTokenStatus.html b/docs/Enums/CheckoutTokenStatus.html index 4a93c4eb2..d4e48c310 100644 --- a/docs/Enums/CheckoutTokenStatus.html +++ b/docs/Enums/CheckoutTokenStatus.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -352,8 +352,8 @@

Declaration

diff --git a/docs/Enums/Environment.html b/docs/Enums/Environment.html index c819d87b7..01be75deb 100644 --- a/docs/Enums/Environment.html +++ b/docs/Enums/Environment.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -352,8 +352,8 @@

Declaration

diff --git a/docs/Enums/InputState.html b/docs/Enums/InputState.html index fa3a79910..909962364 100644 --- a/docs/Enums/InputState.html +++ b/docs/Enums/InputState.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -383,8 +383,8 @@

Declaration

diff --git a/docs/Enums/NetworkError.html b/docs/Enums/NetworkError.html index 24c66a8db..3b4035ad1 100644 --- a/docs/Enums/NetworkError.html +++ b/docs/Enums/NetworkError.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -304,7 +304,7 @@

Declaration

@@ -334,7 +334,7 @@

Declaration

@@ -364,7 +364,7 @@

Declaration

@@ -394,7 +394,7 @@

Declaration

@@ -424,7 +424,7 @@

Declaration

@@ -454,7 +454,7 @@

Declaration

@@ -496,8 +496,8 @@

Declaration

diff --git a/docs/Getting started.html b/docs/Getting started.html index 010928070..99b64f4d7 100644 --- a/docs/Getting started.html +++ b/docs/Getting started.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -294,8 +294,8 @@

Getting started

diff --git a/docs/Other Classes.html b/docs/Other Classes.html index 700ea4ad4..b0aaaee9b 100644 --- a/docs/Other Classes.html +++ b/docs/Other Classes.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -308,8 +308,8 @@

Declaration

diff --git a/docs/Other Enums.html b/docs/Other Enums.html index 9af484c84..5fa7514b9 100644 --- a/docs/Other Enums.html +++ b/docs/Other Enums.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -344,8 +344,8 @@

Declaration

diff --git a/docs/Other Functions.html b/docs/Other Functions.html index 459706f6b..f539f9098 100644 --- a/docs/Other Functions.html +++ b/docs/Other Functions.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -326,8 +326,8 @@

Parameters

diff --git a/docs/Other Guides.html b/docs/Other Guides.html index 4b38bf7bc..e782faf5f 100644 --- a/docs/Other Guides.html +++ b/docs/Other Guides.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -295,8 +295,8 @@

Other Guides

diff --git a/docs/Other Protocols.html b/docs/Other Protocols.html index 9c8283b15..2833281a5 100644 --- a/docs/Other Protocols.html +++ b/docs/Other Protocols.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -308,8 +308,8 @@

Declaration

diff --git a/docs/Other Structs.html b/docs/Other Structs.html index d896449c5..9b7353e84 100644 --- a/docs/Other Structs.html +++ b/docs/Other Structs.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -290,7 +290,7 @@

Other Structures

Declaration

Swift

-
@available(*, deprecated, message: "This will be removed in a future release.")
+                          
@available(*, deprecated, message: "This will be removed in a future release.")
 public struct ApplePayTokenRequest : Codable, Equatable
@@ -681,8 +681,8 @@

Declaration

diff --git a/docs/Protocols/AddressViewControllerDelegate.html b/docs/Protocols/AddressViewControllerDelegate.html index 3062622af..8c0be261c 100644 --- a/docs/Protocols/AddressViewControllerDelegate.html +++ b/docs/Protocols/AddressViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -348,8 +348,8 @@

Parameters

diff --git a/docs/Protocols/CardNumberInputViewDelegate.html b/docs/Protocols/CardNumberInputViewDelegate.html index 1bd96483e..33d71ef09 100644 --- a/docs/Protocols/CardNumberInputViewDelegate.html +++ b/docs/Protocols/CardNumberInputViewDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -385,8 +385,8 @@

Parameters

diff --git a/docs/Protocols/CardViewControllerDelegate.html b/docs/Protocols/CardViewControllerDelegate.html index c5daa53b7..3bc9a43ba 100644 --- a/docs/Protocols/CardViewControllerDelegate.html +++ b/docs/Protocols/CardViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -397,8 +397,8 @@

Parameters

diff --git a/docs/Protocols/CountrySelectionViewControllerDelegate.html b/docs/Protocols/CountrySelectionViewControllerDelegate.html index 28e1ff97e..b6d205f5a 100644 --- a/docs/Protocols/CountrySelectionViewControllerDelegate.html +++ b/docs/Protocols/CountrySelectionViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -348,8 +348,8 @@

Parameters

diff --git a/docs/Protocols/CvvConfirmationViewControllerDelegate.html b/docs/Protocols/CvvConfirmationViewControllerDelegate.html index f6ed40157..f054b1c59 100644 --- a/docs/Protocols/CvvConfirmationViewControllerDelegate.html +++ b/docs/Protocols/CvvConfirmationViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -397,8 +397,8 @@

Parameters

diff --git a/docs/Protocols/CvvInputViewDelegate.html b/docs/Protocols/CvvInputViewDelegate.html index 3fe0f12b1..d7253d411 100644 --- a/docs/Protocols/CvvInputViewDelegate.html +++ b/docs/Protocols/CvvInputViewDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -317,8 +317,8 @@

Declaration

diff --git a/docs/Protocols/ExpirationDatePickerDelegate.html b/docs/Protocols/ExpirationDatePickerDelegate.html index f70fbd1ce..e47061185 100644 --- a/docs/Protocols/ExpirationDatePickerDelegate.html +++ b/docs/Protocols/ExpirationDatePickerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -348,8 +348,8 @@

Parameters

diff --git a/docs/Protocols/ThreedsWebViewControllerDelegate.html b/docs/Protocols/ThreedsWebViewControllerDelegate.html index 94b6b1c30..e87e94963 100644 --- a/docs/Protocols/ThreedsWebViewControllerDelegate.html +++ b/docs/Protocols/ThreedsWebViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -306,7 +306,7 @@

Default Implementation

Declaration

Swift

-
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidSucceed(_:token:﹚")
+                          
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidSucceed(_:token:﹚")
 func onSuccess3D()
@@ -344,7 +344,7 @@

Default Implementation

Declaration

Swift

-
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidFail(_:﹚")
+                          
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidFail(_:﹚")
 func onFailure3D()
@@ -488,8 +488,8 @@

Parameters

diff --git a/docs/Structs/ApplePayTokenData.html b/docs/Structs/ApplePayTokenData.html index e763bad64..862049835 100644 --- a/docs/Structs/ApplePayTokenData.html +++ b/docs/Structs/ApplePayTokenData.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -317,8 +317,8 @@

Declaration

diff --git a/docs/Structs/ApplePayTokenDataHeader.html b/docs/Structs/ApplePayTokenDataHeader.html index c69d8b2fb..e5f0a14f0 100644 --- a/docs/Structs/ApplePayTokenDataHeader.html +++ b/docs/Structs/ApplePayTokenDataHeader.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -317,8 +317,8 @@

Declaration

diff --git a/docs/Structs/ApplePayTokenRequest.html b/docs/Structs/ApplePayTokenRequest.html index 60e36f7a3..92d617a53 100644 --- a/docs/Structs/ApplePayTokenRequest.html +++ b/docs/Structs/ApplePayTokenRequest.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -263,7 +263,7 @@

ApplePayTokenRequest

-
@available(*, deprecated, message: "This will be removed in a future release.")
+                  
@available(*, deprecated, message: "This will be removed in a future release.")
 public struct ApplePayTokenRequest : Codable, Equatable
@@ -348,8 +348,8 @@

Declaration

diff --git a/docs/Structs/CardProvider.html b/docs/Structs/CardProvider.html index 4dea6dbdd..9d513489a 100644 --- a/docs/Structs/CardProvider.html +++ b/docs/Structs/CardProvider.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -347,8 +347,8 @@

Declaration

diff --git a/docs/Structs/CardType.html b/docs/Structs/CardType.html index 52fd9e642..45d1e8d47 100644 --- a/docs/Structs/CardType.html +++ b/docs/Structs/CardType.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -497,8 +497,8 @@

Declaration

diff --git a/docs/Structs/CkoAddress.html b/docs/Structs/CkoAddress.html index 2537188e7..3b0a890c2 100644 --- a/docs/Structs/CkoAddress.html +++ b/docs/Structs/CkoAddress.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -499,8 +499,8 @@

Declaration

diff --git a/docs/Structs/CkoCardTokenRequest.html b/docs/Structs/CkoCardTokenRequest.html index 4abff708e..fdf4b75f6 100644 --- a/docs/Structs/CkoCardTokenRequest.html +++ b/docs/Structs/CkoCardTokenRequest.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -653,8 +653,8 @@

Declaration

diff --git a/docs/Structs/CkoCardTokenResponse.html b/docs/Structs/CkoCardTokenResponse.html index 0ab20854b..5f9297b1d 100644 --- a/docs/Structs/CkoCardTokenResponse.html +++ b/docs/Structs/CkoCardTokenResponse.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -814,7 +814,7 @@

Declaration

@@ -827,8 +827,8 @@

Declaration

diff --git a/docs/Structs/CkoPhoneNumber.html b/docs/Structs/CkoPhoneNumber.html index 3f461bc6d..b50c6d2df 100644 --- a/docs/Structs/CkoPhoneNumber.html +++ b/docs/Structs/CkoPhoneNumber.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -412,8 +412,8 @@

Return Value

diff --git a/docs/Structs/Customer.html b/docs/Structs/Customer.html index a633a0467..a65684a41 100644 --- a/docs/Structs/Customer.html +++ b/docs/Structs/Customer.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -563,8 +563,8 @@

Declaration

diff --git a/docs/Structs/CustomerCard.html b/docs/Structs/CustomerCard.html index 549e0dfcb..493dbd038 100644 --- a/docs/Structs/CustomerCard.html +++ b/docs/Structs/CustomerCard.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -617,8 +617,8 @@

Declaration

diff --git a/docs/Structs/CustomerCardList.html b/docs/Structs/CustomerCardList.html index 750e1690a..7666030b6 100644 --- a/docs/Structs/CustomerCardList.html +++ b/docs/Structs/CustomerCardList.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -347,8 +347,8 @@

Declaration

diff --git a/docs/Structs/ErrorResponse.html b/docs/Structs/ErrorResponse.html index 3be73dda6..e47417227 100644 --- a/docs/Structs/ErrorResponse.html +++ b/docs/Structs/ErrorResponse.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -377,8 +377,8 @@

Declaration

diff --git a/docs/customizing-the-card-view.html b/docs/customizing-the-card-view.html index 76cced931..7d216d194 100644 --- a/docs/customizing-the-card-view.html +++ b/docs/customizing-the-card-view.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -328,8 +328,8 @@

Customizing the fields

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes.html index b50ecb9c0..3e9fba412 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -887,8 +887,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressView.html index b15f71d4e..f28e04f83 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

AddressView

-

Initialization

+

Initialization

@@ -356,8 +356,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressViewController.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressViewController.html index f66d97a1c..1a73deba8 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressViewController.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/AddressViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

AddressViewController

-

Properties

+

Properties

@@ -358,7 +358,7 @@

Declaration

-

Initialization

+

Initialization

@@ -462,7 +462,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -595,7 +595,7 @@

Declaration

-

Methods

+

Methods

@@ -638,7 +638,7 @@

Declaration

-

CountrySelectionViewControllerDelegate

+

CountrySelectionViewControllerDelegate

@@ -681,7 +681,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -754,8 +754,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCell.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCell.html index 4e2a4950e..bf1679fa1 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCell.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCell.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardListCell

-

Properties

+

Properties

@@ -386,7 +386,7 @@

Declaration

-

Initialization

+

Initialization

@@ -459,7 +459,7 @@

Declaration

-

Methods

+

Methods

@@ -551,8 +551,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCellName.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCellName.html index 2592e36ab..bb2a76dd9 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCellName.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardListCellName.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardListCellName

-

Properties

+

Properties

@@ -326,7 +326,7 @@

Declaration

-

Initialization

+

Initialization

@@ -399,8 +399,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardNumberInputView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardNumberInputView.html index 19499d3be..be2e0efbf 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardNumberInputView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardNumberInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

CardNumberInputView

-

Properties

+

Properties

@@ -328,7 +328,7 @@

Declaration

-

Initialization

+

Initialization

@@ -401,7 +401,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -536,8 +536,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardUtils.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardUtils.html index d63129bd2..1c70e8f5f 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardUtils.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardUtils.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardUtils

-

Initialization

+

Initialization

@@ -330,7 +330,7 @@

Return Value

-

Methods

+

Methods

@@ -924,8 +924,8 @@

Return Value

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardView.html index 8b254e140..f5569c829 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CardView

-

Properties

+

Properties

@@ -476,7 +476,7 @@

Declaration

-

Initialization

+

Initialization

@@ -549,8 +549,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardViewController.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardViewController.html index afcaf23bf..1dc739dd5 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardViewController.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CardViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -287,7 +287,7 @@

CardViewController

-

Properties

+

Properties

@@ -347,7 +347,7 @@

Declaration

@@ -377,7 +377,7 @@

Declaration

@@ -407,7 +407,7 @@

Declaration

@@ -437,7 +437,7 @@

Declaration

@@ -540,7 +540,7 @@

Declaration

-

Initialization

+

Initialization

@@ -645,7 +645,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -808,7 +808,7 @@

Declaration

-

AddressViewControllerDelegate

+

AddressViewControllerDelegate

@@ -851,7 +851,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -924,7 +924,7 @@

Declaration

-

CardNumberInputViewDelegate

+

CardNumberInputViewDelegate

@@ -967,7 +967,7 @@

Declaration

-

CvvInputViewDelegate

+

CvvInputViewDelegate

@@ -1009,8 +1009,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutAPIClient.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutAPIClient.html index 08be2260b..2c78b15c1 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutAPIClient.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutAPIClient.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

CheckoutAPIClient

-

Init

+

Init

@@ -309,7 +309,7 @@

Init

Declaration

Swift

-
public convenience init(publicKey: String,
+                          
public convenience init(publicKey: String,
                         environment: Environment = .sandbox)
@@ -363,7 +363,7 @@

Return Value

-

Methods

+

Methods

@@ -451,7 +451,7 @@

Parameters

Declaration

Swift

-
@available(*, deprecated, message: "Use createCardToken with a Swift Result type for completion handler.")
+                          
@available(*, deprecated, message: "Use createCardToken with a Swift Result type for completion handler.")
 public func createCardToken(card: CkoCardTokenRequest,
                             successHandler: @escaping (CkoCardTokenResponse) -> Void,
                             errorHandler: @escaping (ErrorResponse) -> Void)
@@ -591,7 +591,7 @@

Parameters

Declaration

Swift

-
@available(*, deprecated, message: "Use createApplePayToken with a Swift Result type for completion handler.")
+                          
@available(*, deprecated, message: "Use createApplePayToken with a Swift Result type for completion handler.")
 public func createApplePayToken(paymentData: Data,
                                 successHandler: @escaping (CkoCardTokenResponse) -> Void,
                                 errorHandler: @escaping (ErrorResponse) -> Void)
@@ -719,8 +719,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutTheme.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutTheme.html index fa22efad6..065e1f69c 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutTheme.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CheckoutTheme.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -334,7 +334,7 @@

Declaration

@@ -557,8 +557,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CountrySelectionViewController.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CountrySelectionViewController.html index 70aca631f..ced0ae018 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CountrySelectionViewController.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CountrySelectionViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -286,7 +286,7 @@

CountrySelectionViewController

-

Properties

+

Properties

@@ -329,7 +329,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -372,7 +372,7 @@

Declaration

-

UITableViewDataSource

+

UITableViewDataSource

@@ -535,7 +535,7 @@

Declaration

-

UISearchBarDelegate

+

UISearchBarDelegate

@@ -638,8 +638,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvConfirmationViewController.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvConfirmationViewController.html index a2ded0d9c..c6afd3e3f 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvConfirmationViewController.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvConfirmationViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

CvvConfirmationViewController

-

Properties

+

Properties

@@ -326,7 +326,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -369,7 +369,7 @@

Declaration

-

Methods

+

Methods

@@ -444,8 +444,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvInputView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvInputView.html index eed15a401..ba962cb10 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvInputView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/CvvInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

CvvInputView

-

Properties

+

Properties

@@ -345,7 +345,7 @@

Declaration

@@ -358,7 +358,7 @@

Declaration

-

Initialization

+

Initialization

@@ -431,7 +431,7 @@

Declaration

-

UITextFieldDelegate

+

UITextFieldDelegate

@@ -536,8 +536,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/DetailsInputView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/DetailsInputView.html index 4c3838c83..1b889eb43 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/DetailsInputView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/DetailsInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

DetailsInputView

-

Properties

+

Properties

@@ -388,7 +388,7 @@

Declaration

-

Initialization

+

Initialization

@@ -461,8 +461,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDateInputView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDateInputView.html index 9b3520e24..bf72a1c16 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDateInputView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDateInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -285,7 +285,7 @@

ExpirationDateInputView

-

Initialization

+

Initialization

@@ -358,7 +358,7 @@

Declaration

-

ExpirationDatePickerDelegate

+

ExpirationDatePickerDelegate

@@ -400,8 +400,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDatePicker.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDatePicker.html index e4e58ce41..6d4bf715f 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDatePicker.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ExpirationDatePicker.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

ExpirationDatePicker

-

Properties

+

Properties

@@ -327,7 +327,7 @@

Declaration

-

Initialization

+

Initialization

@@ -400,7 +400,7 @@

Declaration

-

Methods

+

Methods

@@ -474,7 +474,7 @@

Parameters

-

UIPickerViewDelegate

+

UIPickerViewDelegate

@@ -517,7 +517,7 @@

Declaration

-

UIPickerViewDataSource

+

UIPickerViewDataSource

@@ -620,8 +620,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/PhoneNumberInputView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/PhoneNumberInputView.html index 76e1ab1cc..635aed747 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/PhoneNumberInputView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/PhoneNumberInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

PhoneNumberInputView

-

Properties

+

Properties

@@ -387,7 +387,7 @@

Declaration

-

Initialization

+

Initialization

@@ -460,7 +460,7 @@

Declaration

-

Setup

+

Setup

@@ -504,8 +504,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/SimpleLoadingViewController.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/SimpleLoadingViewController.html index 74d8d24e2..adbdce841 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/SimpleLoadingViewController.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/SimpleLoadingViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -283,7 +283,7 @@

SimpleLoadingViewController

-

Properties

+

Properties

@@ -356,8 +356,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/StandardInputView.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/StandardInputView.html index 6871f7673..b119b83a9 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/StandardInputView.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/StandardInputView.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

StandardInputView

-

Properties

+

Properties

@@ -387,7 +387,7 @@

Declaration

-

Initialization

+

Initialization

@@ -460,7 +460,7 @@

Declaration

-

Methods

+

Methods

@@ -552,8 +552,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ThreedsWebViewController.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ThreedsWebViewController.html index 1ba942782..33706cfe7 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ThreedsWebViewController.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Classes/ThreedsWebViewController.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -284,7 +284,7 @@

ThreedsWebViewController

-

Properties

+

Properties

@@ -339,7 +339,7 @@

Declaration

Declaration

Swift

-
@available(*, deprecated, renamed: "authUrl")
+                          
@available(*, deprecated, renamed: "authUrl")
 public var url: String? { get set }
@@ -388,7 +388,7 @@

Declaration

-

Initialization

+

Initialization

@@ -413,8 +413,8 @@

Initialization

Declaration

Swift

-
@available(*, deprecated, renamed: "init(successUrl:failUrl:﹚")
-public convenience init(successUrl successUrlString: String, failUrl failUrlString: String)
+
@available(*, deprecated, renamed: "init(successUrl:failUrl:﹚")
+public convenience init(successUrl successUrlString: String, failUrl failUrlString: String)
@@ -444,7 +444,7 @@

Declaration

Declaration

Swift

-
public convenience init(successUrl: URL, failUrl: URL)
+
public convenience init(successUrl: URL, failUrl: URL)
@@ -522,7 +522,7 @@

Declaration

-

Lifecycle

+

Lifecycle

@@ -595,7 +595,7 @@

Declaration

-

WKNavigationDelegate

+

WKNavigationDelegate

@@ -669,8 +669,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Delegates.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Delegates.html index 9d9fa9d6e..33a4d4456 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Delegates.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Delegates.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -493,8 +493,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enumerations.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enumerations.html index 0c60ca687..b11b2670a 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enumerations.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enumerations.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -391,8 +391,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CardScheme.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CardScheme.html index 1a5290b58..a86626765 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CardScheme.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CardScheme.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -538,8 +538,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CheckoutTokenStatus.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CheckoutTokenStatus.html index 4a93c4eb2..d4e48c310 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CheckoutTokenStatus.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/CheckoutTokenStatus.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -352,8 +352,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/Environment.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/Environment.html index c819d87b7..01be75deb 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/Environment.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/Environment.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -352,8 +352,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/InputState.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/InputState.html index fa3a79910..909962364 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/InputState.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/InputState.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -383,8 +383,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/NetworkError.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/NetworkError.html index 24c66a8db..3b4035ad1 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/NetworkError.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Enums/NetworkError.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -304,7 +304,7 @@

Declaration

@@ -334,7 +334,7 @@

Declaration

@@ -364,7 +364,7 @@

Declaration

@@ -394,7 +394,7 @@

Declaration

@@ -424,7 +424,7 @@

Declaration

@@ -454,7 +454,7 @@

Declaration

@@ -496,8 +496,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Getting started.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Getting started.html index 010928070..99b64f4d7 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Getting started.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Getting started.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -294,8 +294,8 @@

Getting started

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Classes.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Classes.html index 700ea4ad4..b0aaaee9b 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Classes.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Classes.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -308,8 +308,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Enums.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Enums.html index 9af484c84..5fa7514b9 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Enums.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Enums.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -344,8 +344,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Functions.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Functions.html index 459706f6b..f539f9098 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Functions.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Functions.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -326,8 +326,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Guides.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Guides.html index 4b38bf7bc..e782faf5f 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Guides.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Guides.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -295,8 +295,8 @@

Other Guides

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Protocols.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Protocols.html index 9c8283b15..2833281a5 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Protocols.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Protocols.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -308,8 +308,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Structs.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Structs.html index d896449c5..9b7353e84 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Structs.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Other Structs.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -290,7 +290,7 @@

Other Structures

Declaration

Swift

-
@available(*, deprecated, message: "This will be removed in a future release.")
+                          
@available(*, deprecated, message: "This will be removed in a future release.")
 public struct ApplePayTokenRequest : Codable, Equatable
@@ -681,8 +681,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/AddressViewControllerDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/AddressViewControllerDelegate.html index 3062622af..8c0be261c 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/AddressViewControllerDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/AddressViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -348,8 +348,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardNumberInputViewDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardNumberInputViewDelegate.html index 1bd96483e..33d71ef09 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardNumberInputViewDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardNumberInputViewDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -385,8 +385,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardViewControllerDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardViewControllerDelegate.html index c5daa53b7..3bc9a43ba 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardViewControllerDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CardViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -397,8 +397,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CountrySelectionViewControllerDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CountrySelectionViewControllerDelegate.html index 28e1ff97e..b6d205f5a 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CountrySelectionViewControllerDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CountrySelectionViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -348,8 +348,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvConfirmationViewControllerDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvConfirmationViewControllerDelegate.html index f6ed40157..f054b1c59 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvConfirmationViewControllerDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvConfirmationViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -397,8 +397,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvInputViewDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvInputViewDelegate.html index 3fe0f12b1..d7253d411 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvInputViewDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/CvvInputViewDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -317,8 +317,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ExpirationDatePickerDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ExpirationDatePickerDelegate.html index f70fbd1ce..e47061185 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ExpirationDatePickerDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ExpirationDatePickerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -348,8 +348,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ThreedsWebViewControllerDelegate.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ThreedsWebViewControllerDelegate.html index 94b6b1c30..e87e94963 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ThreedsWebViewControllerDelegate.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Protocols/ThreedsWebViewControllerDelegate.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -306,7 +306,7 @@

Default Implementation

Declaration

Swift

-
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidSucceed(_:token:﹚")
+                          
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidSucceed(_:token:﹚")
 func onSuccess3D()
@@ -344,7 +344,7 @@

Default Implementation

Declaration

Swift

-
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidFail(_:﹚")
+                          
@available(*, deprecated, renamed: "threeDSWebViewControllerAuthenticationDidFail(_:﹚")
 func onFailure3D()
@@ -488,8 +488,8 @@

Parameters

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenData.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenData.html index e763bad64..862049835 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenData.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenData.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -317,8 +317,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenDataHeader.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenDataHeader.html index c69d8b2fb..e5f0a14f0 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenDataHeader.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenDataHeader.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -317,8 +317,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenRequest.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenRequest.html index 60e36f7a3..92d617a53 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenRequest.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ApplePayTokenRequest.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -263,7 +263,7 @@

ApplePayTokenRequest

-
@available(*, deprecated, message: "This will be removed in a future release.")
+                  
@available(*, deprecated, message: "This will be removed in a future release.")
 public struct ApplePayTokenRequest : Codable, Equatable
@@ -348,8 +348,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardProvider.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardProvider.html index 4dea6dbdd..9d513489a 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardProvider.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardProvider.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -347,8 +347,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardType.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardType.html index 52fd9e642..45d1e8d47 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardType.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CardType.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -497,8 +497,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoAddress.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoAddress.html index 2537188e7..3b0a890c2 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoAddress.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoAddress.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -499,8 +499,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenRequest.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenRequest.html index 4abff708e..fdf4b75f6 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenRequest.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenRequest.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -653,8 +653,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenResponse.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenResponse.html index 0ab20854b..5f9297b1d 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenResponse.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoCardTokenResponse.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -814,7 +814,7 @@

Declaration

@@ -827,8 +827,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoPhoneNumber.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoPhoneNumber.html index 3f461bc6d..b50c6d2df 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoPhoneNumber.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CkoPhoneNumber.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -412,8 +412,8 @@

Return Value

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/Customer.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/Customer.html index a633a0467..a65684a41 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/Customer.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/Customer.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -563,8 +563,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCard.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCard.html index 549e0dfcb..493dbd038 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCard.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCard.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -617,8 +617,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCardList.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCardList.html index 750e1690a..7666030b6 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCardList.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/CustomerCardList.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -347,8 +347,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ErrorResponse.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ErrorResponse.html index 3be73dda6..e47417227 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ErrorResponse.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/Structs/ErrorResponse.html @@ -21,7 +21,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -377,8 +377,8 @@

Declaration

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/customizing-the-card-view.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/customizing-the-card-view.html index 76cced931..7d216d194 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/customizing-the-card-view.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/customizing-the-card-view.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -328,8 +328,8 @@

Customizing the fields

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/frames-ios-example.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/frames-ios-example.html index 1555f2cac..4c9052a4a 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/frames-ios-example.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/frames-ios-example.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -321,8 +321,8 @@

Frames iOS example

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/index.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/index.html index 14bb26d48..fee26fefa 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/index.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -309,7 +309,7 @@

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

-
$ gem install cocoapods
+
$ gem install cocoapods
 
@@ -327,17 +327,15 @@

CocoaPods

Then, run the following command:

-
$ pod install
+
$ pod install
 
- -

We do not support i386 builds. Cocoapods should configure this for you, but if not, see Architecture Support for setup.

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

-
$ brew update
-$ brew install carthage
+
$ brew update
+$ brew install carthage
 

To integrate Frames into your Xcode project using Carthage, specify it in your Cartfile:

@@ -345,8 +343,6 @@

Carthage

Run carthage update --use-xcframeworks to build the framework and drag the built Frames into your Xcode project.

- -

If you are planning to run release builds for simulator, make sure to exclude the i386 architecture from your builds. See Architecture Support for setup.

Swift Package Manager

Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.

@@ -356,8 +352,6 @@

Swift Package Manager

.package(url: "https://github.com/checkout/frames-ios.git", .upToNextMajor(from: "3.0.0")) ]
- -

If you are planning to run release builds for simulator, make sure to exclude the i386 architecture from your builds. See Architecture Support for setup.

Usage

Import the SDK:

@@ -577,7 +571,7 @@

Handle 3D Secure

threeDSWebViewController.delegate = self -

Handle the result by adding conformance to CvvConfirmationViewControllerDelegate.

+

Handle the result by adding conformance to ThreedsWebViewControllerDelegate.

extension ViewController: ThreedsWebViewControllerDelegate {
 
     func threeDSWebViewControllerAuthenticationDidSucceed(_ threeDSWebViewController: ThreedsWebViewController, token: String?) {
@@ -602,12 +596,6 @@ 

Customize with < CheckoutTheme.chevronColor = .white CheckoutTheme.font = UIFont(name: "Chalkboard SE", size: 12)!

-

Architecture Support

- -

We support all available architectures in Xcode except i386. -Cocoapods should handle this for you, but if this is not working or if you’re using SPM or Carthage you will need to configure your excluded architectures in your build settings as below:

- -

excluded architectures

License

Frames iOS is released under the MIT license. See LICENSE for details.

@@ -619,8 +607,8 @@

License

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/ios-example.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/ios-example.html index c4b98368b..2eebd32ab 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/ios-example.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/ios-example.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -380,8 +380,8 @@

Walkthrough

diff --git a/docs/docsets/Frames.docset/Contents/Resources/Documents/usage.html b/docs/docsets/Frames.docset/Contents/Resources/Documents/usage.html index d72beaad3..bbd0c869c 100644 --- a/docs/docsets/Frames.docset/Contents/Resources/Documents/usage.html +++ b/docs/docsets/Frames.docset/Contents/Resources/Documents/usage.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -341,8 +341,8 @@

Validate a card number

diff --git a/docs/docsets/Frames.docset/Contents/Resources/docSet.dsidx b/docs/docsets/Frames.docset/Contents/Resources/docSet.dsidx index f36c053b0..15f171c0c 100644 Binary files a/docs/docsets/Frames.docset/Contents/Resources/docSet.dsidx and b/docs/docsets/Frames.docset/Contents/Resources/docSet.dsidx differ diff --git a/docs/docsets/Frames.tgz b/docs/docsets/Frames.tgz index 8d78e0f71..4ba7eeb72 100644 Binary files a/docs/docsets/Frames.tgz and b/docs/docsets/Frames.tgz differ diff --git a/docs/frames-ios-example.html b/docs/frames-ios-example.html index 1555f2cac..4c9052a4a 100644 --- a/docs/frames-ios-example.html +++ b/docs/frames-ios-example.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -321,8 +321,8 @@

Frames iOS example

diff --git a/docs/index.html b/docs/index.html index 14bb26d48..fee26fefa 100644 --- a/docs/index.html +++ b/docs/index.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -309,7 +309,7 @@

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

-
$ gem install cocoapods
+
$ gem install cocoapods
 
@@ -327,17 +327,15 @@

CocoaPods

Then, run the following command:

-
$ pod install
+
$ pod install
 
- -

We do not support i386 builds. Cocoapods should configure this for you, but if not, see Architecture Support for setup.

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

-
$ brew update
-$ brew install carthage
+
$ brew update
+$ brew install carthage
 

To integrate Frames into your Xcode project using Carthage, specify it in your Cartfile:

@@ -345,8 +343,6 @@

Carthage

Run carthage update --use-xcframeworks to build the framework and drag the built Frames into your Xcode project.

- -

If you are planning to run release builds for simulator, make sure to exclude the i386 architecture from your builds. See Architecture Support for setup.

Swift Package Manager

Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler.

@@ -356,8 +352,6 @@

Swift Package Manager

.package(url: "https://github.com/checkout/frames-ios.git", .upToNextMajor(from: "3.0.0")) ]
- -

If you are planning to run release builds for simulator, make sure to exclude the i386 architecture from your builds. See Architecture Support for setup.

Usage

Import the SDK:

@@ -577,7 +571,7 @@

Handle 3D Secure

threeDSWebViewController.delegate = self -

Handle the result by adding conformance to CvvConfirmationViewControllerDelegate.

+

Handle the result by adding conformance to ThreedsWebViewControllerDelegate.

extension ViewController: ThreedsWebViewControllerDelegate {
 
     func threeDSWebViewControllerAuthenticationDidSucceed(_ threeDSWebViewController: ThreedsWebViewController, token: String?) {
@@ -602,12 +596,6 @@ 

Customize with < CheckoutTheme.chevronColor = .white CheckoutTheme.font = UIFont(name: "Chalkboard SE", size: 12)!

-

Architecture Support

- -

We support all available architectures in Xcode except i386. -Cocoapods should handle this for you, but if this is not working or if you’re using SPM or Carthage you will need to configure your excluded architectures in your build settings as below:

- -

excluded architectures

License

Frames iOS is released under the MIT license. See LICENSE for details.

@@ -619,8 +607,8 @@

License

diff --git a/docs/ios-example.html b/docs/ios-example.html index c4b98368b..2eebd32ab 100644 --- a/docs/ios-example.html +++ b/docs/ios-example.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -380,8 +380,8 @@

Walkthrough

diff --git a/docs/undocumented.json b/docs/undocumented.json index 914e5639b..1e87556e9 100644 --- a/docs/undocumented.json +++ b/docs/undocumented.json @@ -1,187 +1,187 @@ { "warnings": [ { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/CheckoutTheme.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/CheckoutTheme.swift", "line": 8, "symbol": "CheckoutTheme.secondaryBackgroundColor", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", "line": 24, "symbol": "ApplePayTokenRequest.token_data", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", "line": 28, "symbol": "ApplePayTokenRequest.init(token_data:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", "line": 35, "symbol": "ApplePayTokenData", "symbol_kind": "source.lang.swift.decl.struct", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", "line": 42, "symbol": "ApplePayTokenData.init(version:data:signature:header:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", "line": 52, "symbol": "ApplePayTokenDataHeader", "symbol_kind": "source.lang.swift.decl.struct", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ApplePayTokenRequest.swift", "line": 64, "symbol": "ApplePayTokenDataHeader.init(ephemeralPublicKey:publicKeyHash:transactionId:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/CkoAddress.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/CkoAddress.swift", "line": 33, "symbol": "CkoAddress.init(addressLine1:addressLine2:city:state:zip:country:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/CkoCardTokenRequest.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/CkoCardTokenRequest.swift", "line": 64, "symbol": "CkoCardTokenRequest.createWith(shippingDetails:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/CkoCardTokenResponse.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/CkoCardTokenResponse.swift", "line": 82, "symbol": "CkoCardTokenResponse.productId", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/ErrorResponse.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/ErrorResponse.swift", "line": 6, "symbol": "ErrorResponse", "symbol_kind": "source.lang.swift.decl.struct", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 3, "symbol": "NetworkError", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 5, "symbol": "NetworkError.checkout(requestId:errorType:errorCodes:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 6, "symbol": "NetworkError.other(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 7, "symbol": "NetworkError.unknown", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 10, "symbol": "NetworkError.invalidData", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 10, "symbol": "NetworkError.invalidURL", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/Core/NetworkError.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/Core/NetworkError.swift", "line": 10, "symbol": "NetworkError.objectDeallocatedUnexpectedly", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/AddressViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/AddressViewController.swift", "line": 175, "symbol": "AddressViewController.setCountrySelected(country:regionCode:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/AddressViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/AddressViewController.swift", "line": 195, "symbol": "AddressViewController.setFields(address:phone:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", "line": 17, "symbol": "CardViewController.checkoutApiClient", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", "line": 22, "symbol": "CardViewController.billingDetailsAddress", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", "line": 23, "symbol": "CardViewController.billingDetailsPhone", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/CardViewController.swift", "line": 25, "symbol": "CardViewController.addressViewController", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Controllers/CountrySelectionViewController.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Controllers/CountrySelectionViewController.swift", "line": 77, "symbol": "CountrySelectionViewController.tableView(_:willDisplay:forRowAt:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/Harry.Brown/dev/frames-ios/Source/UI/Views/CvvInputView.swift", + "file": "/Users/harrybrown/dev/frames-ios/Source/UI/Views/CvvInputView.swift", "line": 13, "symbol": "CvvInputView.onChangeDelegate", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" } ], - "source_directory": "/Users/Harry.Brown/dev/frames-ios" + "source_directory": "/Users/harrybrown/dev/frames-ios" } \ No newline at end of file diff --git a/docs/usage.html b/docs/usage.html index d72beaad3..bbd0c869c 100644 --- a/docs/usage.html +++ b/docs/usage.html @@ -20,7 +20,7 @@

- Frames 3.5.0 Docs + Frames 3.5.1 Docs (91% documented)

@@ -341,8 +341,8 @@

Validate a card number

diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/Info.plist b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/Info.plist index a54527811..dd23ccfde 100644 --- a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/Info.plist +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/Info.plist @@ -19,12 +19,13 @@ LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64_i386_x86_64-simulator LibraryPath CheckoutEventLoggerKit.framework SupportedArchitectures arm64 + i386 x86_64 SupportedPlatform diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit index 7312e0a13..3e149fbda 100755 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Info.plist b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Info.plist index bf33b3d53..b3764300e 100644 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Info.plist and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Info.plist differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftdoc index 9fb1dc039..1b012b1f2 100644 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftdoc and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftinterface index f42bc8ba7..6f0acef01 100644 --- a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftinterface +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28) +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) // swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit import Foundation import Swift @@ -7,10 +7,10 @@ public enum Environment { case sandbox case production public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } - public func hash(into hasher: inout Swift.Hasher) } @usableFromInline internal protocol _AnyDecodable { @@ -51,8 +51,8 @@ extension AnyCodable : Swift.ExpressibleByFloatLiteral { public typealias FloatLiteralType = Swift.Double } extension AnyCodable : Swift.ExpressibleByStringLiteral { - public typealias StringLiteralType = Swift.String public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } extension AnyCodable : Swift.ExpressibleByArrayLiteral { @@ -120,15 +120,15 @@ public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable case error case warn public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { get } - public typealias RawValue = Swift.String public var rawValue: Swift.String { get } - public init?(rawValue: Swift.String) } extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftdoc index 743d478ab..ac5675f36 100644 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftdoc and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftinterface index f09b8f3a1..0b5ff7394 100644 --- a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28) +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) // swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit import Foundation import Swift @@ -7,10 +7,10 @@ public enum Environment { case sandbox case production public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } - public func hash(into hasher: inout Swift.Hasher) } @usableFromInline internal protocol _AnyDecodable { @@ -51,8 +51,8 @@ extension AnyCodable : Swift.ExpressibleByFloatLiteral { public typealias FloatLiteralType = Swift.Double } extension AnyCodable : Swift.ExpressibleByStringLiteral { - public typealias StringLiteralType = Swift.String public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } extension AnyCodable : Swift.ExpressibleByArrayLiteral { @@ -120,15 +120,15 @@ public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable case error case warn public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { get } - public typealias RawValue = Swift.String public var rawValue: Swift.String { get } - public init?(rawValue: Swift.String) } extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc index 743d478ab..ac5675f36 100644 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface index f09b8f3a1..0b5ff7394 100644 --- a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28) +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) // swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit import Foundation import Swift @@ -7,10 +7,10 @@ public enum Environment { case sandbox case production public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } - public func hash(into hasher: inout Swift.Hasher) } @usableFromInline internal protocol _AnyDecodable { @@ -51,8 +51,8 @@ extension AnyCodable : Swift.ExpressibleByFloatLiteral { public typealias FloatLiteralType = Swift.Double } extension AnyCodable : Swift.ExpressibleByStringLiteral { - public typealias StringLiteralType = Swift.String public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } extension AnyCodable : Swift.ExpressibleByArrayLiteral { @@ -120,15 +120,15 @@ public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable case error case warn public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { get } - public typealias RawValue = Swift.String public var rawValue: Swift.String { get } - public init?(rawValue: Swift.String) } extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftdoc index 9fb1dc039..1b012b1f2 100644 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftdoc and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftinterface index f42bc8ba7..6f0acef01 100644 --- a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftinterface +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7-apple-ios.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28) +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) // swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit import Foundation import Swift @@ -7,10 +7,10 @@ public enum Environment { case sandbox case production public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } - public func hash(into hasher: inout Swift.Hasher) } @usableFromInline internal protocol _AnyDecodable { @@ -51,8 +51,8 @@ extension AnyCodable : Swift.ExpressibleByFloatLiteral { public typealias FloatLiteralType = Swift.Double } extension AnyCodable : Swift.ExpressibleByStringLiteral { - public typealias StringLiteralType = Swift.String public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } extension AnyCodable : Swift.ExpressibleByArrayLiteral { @@ -120,15 +120,15 @@ public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable case error case warn public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { get } - public typealias RawValue = Swift.String public var rawValue: Swift.String { get } - public init?(rawValue: Swift.String) } extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftdoc index 9fb1dc039..1b012b1f2 100644 Binary files a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftdoc and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftinterface index f42bc8ba7..6f0acef01 100644 --- a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftinterface +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_armv7/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/armv7.swiftinterface @@ -1,5 +1,5 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28) +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) // swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit import Foundation import Swift @@ -7,10 +7,10 @@ public enum Environment { case sandbox case production public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } - public func hash(into hasher: inout Swift.Hasher) } @usableFromInline internal protocol _AnyDecodable { @@ -51,8 +51,8 @@ extension AnyCodable : Swift.ExpressibleByFloatLiteral { public typealias FloatLiteralType = Swift.Double } extension AnyCodable : Swift.ExpressibleByStringLiteral { - public typealias StringLiteralType = Swift.String public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } extension AnyCodable : Swift.ExpressibleByArrayLiteral { @@ -120,15 +120,15 @@ public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable case error case warn public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { get } - public typealias RawValue = Swift.String public var rawValue: Swift.String { get } - public init?(rawValue: Swift.String) } extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit new file mode 100755 index 000000000..5ea8c56a9 Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/CheckoutEventLoggerKit differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Info.plist b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Info.plist new file mode 100644 index 000000000..be903ac0a Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Info.plist differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc new file mode 100644 index 000000000..df792f01d Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface new file mode 100644 index 000000000..5477f420d --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -0,0 +1,136 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) +// swift-module-flags: -target arm64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit +import Foundation +import Swift +public enum Environment { + case sandbox + case production + public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@usableFromInline +internal protocol _AnyDecodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyDecodable { + public init(from decoder: Swift.Decoder) throws +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: T?) +} +extension AnyCodable : CheckoutEventLoggerKit._AnyEncodable, CheckoutEventLoggerKit._AnyDecodable { +} +extension AnyCodable : Swift.Equatable { + public static func == (lhs: CheckoutEventLoggerKit.AnyCodable, rhs: CheckoutEventLoggerKit.AnyCodable) -> Swift.Bool +} +extension AnyCodable : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension AnyCodable : Swift.CustomDebugStringConvertible { + public var debugDescription: Swift.String { + get + } +} +extension AnyCodable : Swift.ExpressibleByNilLiteral { +} +extension AnyCodable : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool +} +extension AnyCodable : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int +} +extension AnyCodable : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double +} +extension AnyCodable : Swift.ExpressibleByStringLiteral { + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String +} +extension AnyCodable : Swift.ExpressibleByArrayLiteral { + public typealias ArrayLiteralElement = Any +} +extension AnyCodable : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.AnyHashable + public typealias Value = Any +} +extension AnyCodable { + public static func add(customEquality: @escaping (Any, Any) -> Swift.Bool, customEncoding: @escaping (Any, inout Swift.SingleValueEncodingContainer) throws -> Swift.Bool) +} +@usableFromInline +internal protocol _AnyEncodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyEncodable { + public func encode(to encoder: Swift.Encoder) throws +} +extension _AnyEncodable { + public init(nilLiteral _: ()) + public init(booleanLiteral value: Swift.Bool) + public init(integerLiteral value: Swift.Int) + public init(floatLiteral value: Swift.Double) + public init(extendedGraphemeClusterLiteral value: Swift.String) + public init(stringLiteral value: Swift.String) + public init(arrayLiteral elements: Any...) + public init(dictionaryLiteral elements: (Swift.AnyHashable, Any)...) +} +public struct RemoteProcessorMetadata : Swift.Equatable { + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, appInstallId: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public static func == (a: CheckoutEventLoggerKit.RemoteProcessorMetadata, b: CheckoutEventLoggerKit.RemoteProcessorMetadata) -> Swift.Bool +} +public struct Event : Swift.Equatable { + public let typeIdentifier: Swift.String + public let time: Foundation.Date + public let monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel + public var properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable] + public init(typeIdentifier: Swift.String, time: Foundation.Date, monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel, properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable]) + public static func == (a: CheckoutEventLoggerKit.Event, b: CheckoutEventLoggerKit.Event) -> Swift.Bool +} +public protocol CheckoutEventLogging { + func log(event: CheckoutEventLoggerKit.Event) + func add(metadata: Swift.String, value: Swift.String) + func remove(metadata: Swift.String) + func clearMetadata() + func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) +} +final public class CheckoutEventLogger : CheckoutEventLoggerKit.CheckoutEventLogging { + public init(productName: Swift.String) + final public func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + final public func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) + final public func add(metadata metadataKey: Swift.String, value: Swift.String) + final public func remove(metadata metadataKey: Swift.String) + final public func clearMetadata() + final public func log(event: CheckoutEventLoggerKit.Event) + @objc deinit +} +public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable { + case debug + case info + case error + case warn + public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) + public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String + public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { + get + } + public var rawValue: Swift.String { + get + } +} +extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} +extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.RawRepresentable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc new file mode 100644 index 000000000..df792f01d Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface new file mode 100644 index 000000000..5477f420d --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface @@ -0,0 +1,136 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) +// swift-module-flags: -target arm64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit +import Foundation +import Swift +public enum Environment { + case sandbox + case production + public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@usableFromInline +internal protocol _AnyDecodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyDecodable { + public init(from decoder: Swift.Decoder) throws +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: T?) +} +extension AnyCodable : CheckoutEventLoggerKit._AnyEncodable, CheckoutEventLoggerKit._AnyDecodable { +} +extension AnyCodable : Swift.Equatable { + public static func == (lhs: CheckoutEventLoggerKit.AnyCodable, rhs: CheckoutEventLoggerKit.AnyCodable) -> Swift.Bool +} +extension AnyCodable : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension AnyCodable : Swift.CustomDebugStringConvertible { + public var debugDescription: Swift.String { + get + } +} +extension AnyCodable : Swift.ExpressibleByNilLiteral { +} +extension AnyCodable : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool +} +extension AnyCodable : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int +} +extension AnyCodable : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double +} +extension AnyCodable : Swift.ExpressibleByStringLiteral { + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String +} +extension AnyCodable : Swift.ExpressibleByArrayLiteral { + public typealias ArrayLiteralElement = Any +} +extension AnyCodable : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.AnyHashable + public typealias Value = Any +} +extension AnyCodable { + public static func add(customEquality: @escaping (Any, Any) -> Swift.Bool, customEncoding: @escaping (Any, inout Swift.SingleValueEncodingContainer) throws -> Swift.Bool) +} +@usableFromInline +internal protocol _AnyEncodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyEncodable { + public func encode(to encoder: Swift.Encoder) throws +} +extension _AnyEncodable { + public init(nilLiteral _: ()) + public init(booleanLiteral value: Swift.Bool) + public init(integerLiteral value: Swift.Int) + public init(floatLiteral value: Swift.Double) + public init(extendedGraphemeClusterLiteral value: Swift.String) + public init(stringLiteral value: Swift.String) + public init(arrayLiteral elements: Any...) + public init(dictionaryLiteral elements: (Swift.AnyHashable, Any)...) +} +public struct RemoteProcessorMetadata : Swift.Equatable { + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, appInstallId: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public static func == (a: CheckoutEventLoggerKit.RemoteProcessorMetadata, b: CheckoutEventLoggerKit.RemoteProcessorMetadata) -> Swift.Bool +} +public struct Event : Swift.Equatable { + public let typeIdentifier: Swift.String + public let time: Foundation.Date + public let monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel + public var properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable] + public init(typeIdentifier: Swift.String, time: Foundation.Date, monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel, properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable]) + public static func == (a: CheckoutEventLoggerKit.Event, b: CheckoutEventLoggerKit.Event) -> Swift.Bool +} +public protocol CheckoutEventLogging { + func log(event: CheckoutEventLoggerKit.Event) + func add(metadata: Swift.String, value: Swift.String) + func remove(metadata: Swift.String) + func clearMetadata() + func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) +} +final public class CheckoutEventLogger : CheckoutEventLoggerKit.CheckoutEventLogging { + public init(productName: Swift.String) + final public func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + final public func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) + final public func add(metadata metadataKey: Swift.String, value: Swift.String) + final public func remove(metadata metadataKey: Swift.String) + final public func clearMetadata() + final public func log(event: CheckoutEventLoggerKit.Event) + @objc deinit +} +public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable { + case debug + case info + case error + case warn + public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) + public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String + public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { + get + } + public var rawValue: Swift.String { + get + } +} +extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} +extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.RawRepresentable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftdoc new file mode 100644 index 000000000..bf4b71024 Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftinterface new file mode 100644 index 000000000..759e246ab --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftinterface @@ -0,0 +1,136 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) +// swift-module-flags: -target i386-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit +import Foundation +import Swift +public enum Environment { + case sandbox + case production + public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@usableFromInline +internal protocol _AnyDecodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyDecodable { + public init(from decoder: Swift.Decoder) throws +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: T?) +} +extension AnyCodable : CheckoutEventLoggerKit._AnyEncodable, CheckoutEventLoggerKit._AnyDecodable { +} +extension AnyCodable : Swift.Equatable { + public static func == (lhs: CheckoutEventLoggerKit.AnyCodable, rhs: CheckoutEventLoggerKit.AnyCodable) -> Swift.Bool +} +extension AnyCodable : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension AnyCodable : Swift.CustomDebugStringConvertible { + public var debugDescription: Swift.String { + get + } +} +extension AnyCodable : Swift.ExpressibleByNilLiteral { +} +extension AnyCodable : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool +} +extension AnyCodable : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int +} +extension AnyCodable : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double +} +extension AnyCodable : Swift.ExpressibleByStringLiteral { + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String +} +extension AnyCodable : Swift.ExpressibleByArrayLiteral { + public typealias ArrayLiteralElement = Any +} +extension AnyCodable : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.AnyHashable + public typealias Value = Any +} +extension AnyCodable { + public static func add(customEquality: @escaping (Any, Any) -> Swift.Bool, customEncoding: @escaping (Any, inout Swift.SingleValueEncodingContainer) throws -> Swift.Bool) +} +@usableFromInline +internal protocol _AnyEncodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyEncodable { + public func encode(to encoder: Swift.Encoder) throws +} +extension _AnyEncodable { + public init(nilLiteral _: ()) + public init(booleanLiteral value: Swift.Bool) + public init(integerLiteral value: Swift.Int) + public init(floatLiteral value: Swift.Double) + public init(extendedGraphemeClusterLiteral value: Swift.String) + public init(stringLiteral value: Swift.String) + public init(arrayLiteral elements: Any...) + public init(dictionaryLiteral elements: (Swift.AnyHashable, Any)...) +} +public struct RemoteProcessorMetadata : Swift.Equatable { + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, appInstallId: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public static func == (a: CheckoutEventLoggerKit.RemoteProcessorMetadata, b: CheckoutEventLoggerKit.RemoteProcessorMetadata) -> Swift.Bool +} +public struct Event : Swift.Equatable { + public let typeIdentifier: Swift.String + public let time: Foundation.Date + public let monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel + public var properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable] + public init(typeIdentifier: Swift.String, time: Foundation.Date, monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel, properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable]) + public static func == (a: CheckoutEventLoggerKit.Event, b: CheckoutEventLoggerKit.Event) -> Swift.Bool +} +public protocol CheckoutEventLogging { + func log(event: CheckoutEventLoggerKit.Event) + func add(metadata: Swift.String, value: Swift.String) + func remove(metadata: Swift.String) + func clearMetadata() + func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) +} +final public class CheckoutEventLogger : CheckoutEventLoggerKit.CheckoutEventLogging { + public init(productName: Swift.String) + final public func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + final public func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) + final public func add(metadata metadataKey: Swift.String, value: Swift.String) + final public func remove(metadata metadataKey: Swift.String) + final public func clearMetadata() + final public func log(event: CheckoutEventLoggerKit.Event) + @objc deinit +} +public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable { + case debug + case info + case error + case warn + public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) + public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String + public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { + get + } + public var rawValue: Swift.String { + get + } +} +extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} +extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.RawRepresentable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftdoc new file mode 100644 index 000000000..bf4b71024 Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftinterface new file mode 100644 index 000000000..759e246ab --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftinterface @@ -0,0 +1,136 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) +// swift-module-flags: -target i386-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit +import Foundation +import Swift +public enum Environment { + case sandbox + case production + public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@usableFromInline +internal protocol _AnyDecodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyDecodable { + public init(from decoder: Swift.Decoder) throws +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: T?) +} +extension AnyCodable : CheckoutEventLoggerKit._AnyEncodable, CheckoutEventLoggerKit._AnyDecodable { +} +extension AnyCodable : Swift.Equatable { + public static func == (lhs: CheckoutEventLoggerKit.AnyCodable, rhs: CheckoutEventLoggerKit.AnyCodable) -> Swift.Bool +} +extension AnyCodable : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension AnyCodable : Swift.CustomDebugStringConvertible { + public var debugDescription: Swift.String { + get + } +} +extension AnyCodable : Swift.ExpressibleByNilLiteral { +} +extension AnyCodable : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool +} +extension AnyCodable : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int +} +extension AnyCodable : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double +} +extension AnyCodable : Swift.ExpressibleByStringLiteral { + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String +} +extension AnyCodable : Swift.ExpressibleByArrayLiteral { + public typealias ArrayLiteralElement = Any +} +extension AnyCodable : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.AnyHashable + public typealias Value = Any +} +extension AnyCodable { + public static func add(customEquality: @escaping (Any, Any) -> Swift.Bool, customEncoding: @escaping (Any, inout Swift.SingleValueEncodingContainer) throws -> Swift.Bool) +} +@usableFromInline +internal protocol _AnyEncodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyEncodable { + public func encode(to encoder: Swift.Encoder) throws +} +extension _AnyEncodable { + public init(nilLiteral _: ()) + public init(booleanLiteral value: Swift.Bool) + public init(integerLiteral value: Swift.Int) + public init(floatLiteral value: Swift.Double) + public init(extendedGraphemeClusterLiteral value: Swift.String) + public init(stringLiteral value: Swift.String) + public init(arrayLiteral elements: Any...) + public init(dictionaryLiteral elements: (Swift.AnyHashable, Any)...) +} +public struct RemoteProcessorMetadata : Swift.Equatable { + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, appInstallId: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public static func == (a: CheckoutEventLoggerKit.RemoteProcessorMetadata, b: CheckoutEventLoggerKit.RemoteProcessorMetadata) -> Swift.Bool +} +public struct Event : Swift.Equatable { + public let typeIdentifier: Swift.String + public let time: Foundation.Date + public let monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel + public var properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable] + public init(typeIdentifier: Swift.String, time: Foundation.Date, monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel, properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable]) + public static func == (a: CheckoutEventLoggerKit.Event, b: CheckoutEventLoggerKit.Event) -> Swift.Bool +} +public protocol CheckoutEventLogging { + func log(event: CheckoutEventLoggerKit.Event) + func add(metadata: Swift.String, value: Swift.String) + func remove(metadata: Swift.String) + func clearMetadata() + func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) +} +final public class CheckoutEventLogger : CheckoutEventLoggerKit.CheckoutEventLogging { + public init(productName: Swift.String) + final public func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + final public func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) + final public func add(metadata metadataKey: Swift.String, value: Swift.String) + final public func remove(metadata metadataKey: Swift.String) + final public func clearMetadata() + final public func log(event: CheckoutEventLoggerKit.Event) + @objc deinit +} +public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable { + case debug + case info + case error + case warn + public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) + public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String + public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { + get + } + public var rawValue: Swift.String { + get + } +} +extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} +extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.RawRepresentable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 000000000..10ed068a8 Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface new file mode 100644 index 000000000..95f60e9d7 --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -0,0 +1,136 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) +// swift-module-flags: -target x86_64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit +import Foundation +import Swift +public enum Environment { + case sandbox + case production + public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@usableFromInline +internal protocol _AnyDecodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyDecodable { + public init(from decoder: Swift.Decoder) throws +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: T?) +} +extension AnyCodable : CheckoutEventLoggerKit._AnyEncodable, CheckoutEventLoggerKit._AnyDecodable { +} +extension AnyCodable : Swift.Equatable { + public static func == (lhs: CheckoutEventLoggerKit.AnyCodable, rhs: CheckoutEventLoggerKit.AnyCodable) -> Swift.Bool +} +extension AnyCodable : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension AnyCodable : Swift.CustomDebugStringConvertible { + public var debugDescription: Swift.String { + get + } +} +extension AnyCodable : Swift.ExpressibleByNilLiteral { +} +extension AnyCodable : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool +} +extension AnyCodable : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int +} +extension AnyCodable : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double +} +extension AnyCodable : Swift.ExpressibleByStringLiteral { + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String +} +extension AnyCodable : Swift.ExpressibleByArrayLiteral { + public typealias ArrayLiteralElement = Any +} +extension AnyCodable : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.AnyHashable + public typealias Value = Any +} +extension AnyCodable { + public static func add(customEquality: @escaping (Any, Any) -> Swift.Bool, customEncoding: @escaping (Any, inout Swift.SingleValueEncodingContainer) throws -> Swift.Bool) +} +@usableFromInline +internal protocol _AnyEncodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyEncodable { + public func encode(to encoder: Swift.Encoder) throws +} +extension _AnyEncodable { + public init(nilLiteral _: ()) + public init(booleanLiteral value: Swift.Bool) + public init(integerLiteral value: Swift.Int) + public init(floatLiteral value: Swift.Double) + public init(extendedGraphemeClusterLiteral value: Swift.String) + public init(stringLiteral value: Swift.String) + public init(arrayLiteral elements: Any...) + public init(dictionaryLiteral elements: (Swift.AnyHashable, Any)...) +} +public struct RemoteProcessorMetadata : Swift.Equatable { + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, appInstallId: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public static func == (a: CheckoutEventLoggerKit.RemoteProcessorMetadata, b: CheckoutEventLoggerKit.RemoteProcessorMetadata) -> Swift.Bool +} +public struct Event : Swift.Equatable { + public let typeIdentifier: Swift.String + public let time: Foundation.Date + public let monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel + public var properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable] + public init(typeIdentifier: Swift.String, time: Foundation.Date, monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel, properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable]) + public static func == (a: CheckoutEventLoggerKit.Event, b: CheckoutEventLoggerKit.Event) -> Swift.Bool +} +public protocol CheckoutEventLogging { + func log(event: CheckoutEventLoggerKit.Event) + func add(metadata: Swift.String, value: Swift.String) + func remove(metadata: Swift.String) + func clearMetadata() + func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) +} +final public class CheckoutEventLogger : CheckoutEventLoggerKit.CheckoutEventLogging { + public init(productName: Swift.String) + final public func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + final public func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) + final public func add(metadata metadataKey: Swift.String, value: Swift.String) + final public func remove(metadata metadataKey: Swift.String) + final public func clearMetadata() + final public func log(event: CheckoutEventLoggerKit.Event) + @objc deinit +} +public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable { + case debug + case info + case error + case warn + public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) + public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String + public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { + get + } + public var rawValue: Swift.String { + get + } +} +extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} +extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.RawRepresentable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftdoc b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftdoc new file mode 100644 index 000000000..10ed068a8 Binary files /dev/null and b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftdoc differ diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftinterface b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftinterface new file mode 100644 index 000000000..95f60e9d7 --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftinterface @@ -0,0 +1,136 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57) +// swift-module-flags: -target x86_64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name CheckoutEventLoggerKit +import Foundation +import Swift +public enum Environment { + case sandbox + case production + public static func == (a: CheckoutEventLoggerKit.Environment, b: CheckoutEventLoggerKit.Environment) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@usableFromInline +internal protocol _AnyDecodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyDecodable { + public init(from decoder: Swift.Decoder) throws +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: T?) +} +extension AnyCodable : CheckoutEventLoggerKit._AnyEncodable, CheckoutEventLoggerKit._AnyDecodable { +} +extension AnyCodable : Swift.Equatable { + public static func == (lhs: CheckoutEventLoggerKit.AnyCodable, rhs: CheckoutEventLoggerKit.AnyCodable) -> Swift.Bool +} +extension AnyCodable : Swift.CustomStringConvertible { + public var description: Swift.String { + get + } +} +extension AnyCodable : Swift.CustomDebugStringConvertible { + public var debugDescription: Swift.String { + get + } +} +extension AnyCodable : Swift.ExpressibleByNilLiteral { +} +extension AnyCodable : Swift.ExpressibleByBooleanLiteral { + public typealias BooleanLiteralType = Swift.Bool +} +extension AnyCodable : Swift.ExpressibleByIntegerLiteral { + public typealias IntegerLiteralType = Swift.Int +} +extension AnyCodable : Swift.ExpressibleByFloatLiteral { + public typealias FloatLiteralType = Swift.Double +} +extension AnyCodable : Swift.ExpressibleByStringLiteral { + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String +} +extension AnyCodable : Swift.ExpressibleByArrayLiteral { + public typealias ArrayLiteralElement = Any +} +extension AnyCodable : Swift.ExpressibleByDictionaryLiteral { + public typealias Key = Swift.AnyHashable + public typealias Value = Any +} +extension AnyCodable { + public static func add(customEquality: @escaping (Any, Any) -> Swift.Bool, customEncoding: @escaping (Any, inout Swift.SingleValueEncodingContainer) throws -> Swift.Bool) +} +@usableFromInline +internal protocol _AnyEncodable { + var value: Any { get } + init(_ value: T?) +} +extension _AnyEncodable { + public func encode(to encoder: Swift.Encoder) throws +} +extension _AnyEncodable { + public init(nilLiteral _: ()) + public init(booleanLiteral value: Swift.Bool) + public init(integerLiteral value: Swift.Int) + public init(floatLiteral value: Swift.Double) + public init(extendedGraphemeClusterLiteral value: Swift.String) + public init(stringLiteral value: Swift.String) + public init(arrayLiteral elements: Any...) + public init(dictionaryLiteral elements: (Swift.AnyHashable, Any)...) +} +public struct RemoteProcessorMetadata : Swift.Equatable { + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, appInstallId: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public init(productIdentifier: Swift.String, productVersion: Swift.String, environment: Swift.String, appPackageName: Swift.String, appPackageVersion: Swift.String, deviceName: Swift.String, platform: Swift.String, osVersion: Swift.String) + public static func == (a: CheckoutEventLoggerKit.RemoteProcessorMetadata, b: CheckoutEventLoggerKit.RemoteProcessorMetadata) -> Swift.Bool +} +public struct Event : Swift.Equatable { + public let typeIdentifier: Swift.String + public let time: Foundation.Date + public let monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel + public var properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable] + public init(typeIdentifier: Swift.String, time: Foundation.Date, monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel, properties: [Swift.String : CheckoutEventLoggerKit.AnyCodable]) + public static func == (a: CheckoutEventLoggerKit.Event, b: CheckoutEventLoggerKit.Event) -> Swift.Bool +} +public protocol CheckoutEventLogging { + func log(event: CheckoutEventLoggerKit.Event) + func add(metadata: Swift.String, value: Swift.String) + func remove(metadata: Swift.String) + func clearMetadata() + func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) +} +final public class CheckoutEventLogger : CheckoutEventLoggerKit.CheckoutEventLogging { + public init(productName: Swift.String) + final public func enableLocalProcessor(monitoringLevel: CheckoutEventLoggerKit.MonitoringLevel) + final public func enableRemoteProcessor(environment: CheckoutEventLoggerKit.Environment, remoteProcessorMetadata: CheckoutEventLoggerKit.RemoteProcessorMetadata) + final public func add(metadata metadataKey: Swift.String, value: Swift.String) + final public func remove(metadata metadataKey: Swift.String) + final public func clearMetadata() + final public func log(event: CheckoutEventLoggerKit.Event) + @objc deinit +} +public enum MonitoringLevel : Swift.String, Swift.CaseIterable, Swift.Comparable { + case debug + case info + case error + case warn + public static func < (lhs: CheckoutEventLoggerKit.MonitoringLevel, rhs: CheckoutEventLoggerKit.MonitoringLevel) -> Swift.Bool + public init?(rawValue: Swift.String) + public typealias AllCases = [CheckoutEventLoggerKit.MonitoringLevel] + public typealias RawValue = Swift.String + public static var allCases: [CheckoutEventLoggerKit.MonitoringLevel] { + get + } + public var rawValue: Swift.String { + get + } +} +extension CheckoutEventLoggerKit.Environment : Swift.Equatable {} +extension CheckoutEventLoggerKit.Environment : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.Hashable {} +extension CheckoutEventLoggerKit.MonitoringLevel : Swift.RawRepresentable {} diff --git a/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/_CodeSignature/CodeResources b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/_CodeSignature/CodeResources new file mode 100644 index 000000000..64c1335d3 --- /dev/null +++ b/iOS Example Frame Carthage/CheckoutEventLoggerKit.xcframework/ios-arm64_i386_x86_64-simulator/CheckoutEventLoggerKit.framework/_CodeSignature/CodeResources @@ -0,0 +1,372 @@ + + + + + files + + Info.plist + + jMDl43St1JknkpQq0B83k8uWE1E= + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + QwOL91w0AJ64faoD2KzwfinvuRw= + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + 6jaiJWoTVKUt49hNpb6GjIkgtg0= + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule + + 25nYzNzyz7b2hQK9tdY1VWKv+ZA= + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc + + QwOL91w0AJ64faoD2KzwfinvuRw= + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface + + 6jaiJWoTVKUt49hNpb6GjIkgtg0= + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftmodule + + 25nYzNzyz7b2hQK9tdY1VWKv+ZA= + + Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftdoc + + qNiKknKCdBXgFGVkXaZyZGGLZkU= + + Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftinterface + + Nnf8uXZDVYzsMIshhU5aTXe9WZE= + + Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftmodule + + 2kSj6evR/Vhkc47qb+AGi2vVEhU= + + Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftdoc + + qNiKknKCdBXgFGVkXaZyZGGLZkU= + + Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftinterface + + Nnf8uXZDVYzsMIshhU5aTXe9WZE= + + Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftmodule + + 2kSj6evR/Vhkc47qb+AGi2vVEhU= + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + c7Ku6ucXZdFeSIVUeVOdDfQSPXc= + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + SB7CzRQtjOgb2EFhaUldcddqOp4= + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + + 4WNps4csG2At2Zp7V0hGBao+bsA= + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftdoc + + c7Ku6ucXZdFeSIVUeVOdDfQSPXc= + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftinterface + + SB7CzRQtjOgb2EFhaUldcddqOp4= + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftmodule + + 4WNps4csG2At2Zp7V0hGBao+bsA= + + + files2 + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + hash + + QwOL91w0AJ64faoD2KzwfinvuRw= + + hash2 + + vQzxdLAaB0+SekuquclFU+YrPFX4iEo1lBAEQ7zESQY= + + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + hash + + 6jaiJWoTVKUt49hNpb6GjIkgtg0= + + hash2 + + FOx1EpXBLGPC5JWImC7bmKSeeQI9i9uhgL/7IqiwKEE= + + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule + + hash + + 25nYzNzyz7b2hQK9tdY1VWKv+ZA= + + hash2 + + bUifP8SC6JNfTcb1CibzZ4IMFAIqRsOyYPyRBixlMYg= + + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftdoc + + hash + + QwOL91w0AJ64faoD2KzwfinvuRw= + + hash2 + + vQzxdLAaB0+SekuquclFU+YrPFX4iEo1lBAEQ7zESQY= + + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftinterface + + hash + + 6jaiJWoTVKUt49hNpb6GjIkgtg0= + + hash2 + + FOx1EpXBLGPC5JWImC7bmKSeeQI9i9uhgL/7IqiwKEE= + + + Modules/CheckoutEventLoggerKit.swiftmodule/arm64.swiftmodule + + hash + + 25nYzNzyz7b2hQK9tdY1VWKv+ZA= + + hash2 + + bUifP8SC6JNfTcb1CibzZ4IMFAIqRsOyYPyRBixlMYg= + + + Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftdoc + + hash + + qNiKknKCdBXgFGVkXaZyZGGLZkU= + + hash2 + + q3MIca7W7AT4b/Imu4t+R88Al4FdN+hEASL4zNFjylo= + + + Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftinterface + + hash + + Nnf8uXZDVYzsMIshhU5aTXe9WZE= + + hash2 + + QWGW8HRbPulDZqhLyeIK5Ji3N0F3aKaHRzqiA56ZDvc= + + + Modules/CheckoutEventLoggerKit.swiftmodule/i386-apple-ios-simulator.swiftmodule + + hash + + 2kSj6evR/Vhkc47qb+AGi2vVEhU= + + hash2 + + HCAb7th3yyI/nbvQBoowmkecNNgEEEXPDdkIPmXncEg= + + + Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftdoc + + hash + + qNiKknKCdBXgFGVkXaZyZGGLZkU= + + hash2 + + q3MIca7W7AT4b/Imu4t+R88Al4FdN+hEASL4zNFjylo= + + + Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftinterface + + hash + + Nnf8uXZDVYzsMIshhU5aTXe9WZE= + + hash2 + + QWGW8HRbPulDZqhLyeIK5Ji3N0F3aKaHRzqiA56ZDvc= + + + Modules/CheckoutEventLoggerKit.swiftmodule/i386.swiftmodule + + hash + + 2kSj6evR/Vhkc47qb+AGi2vVEhU= + + hash2 + + HCAb7th3yyI/nbvQBoowmkecNNgEEEXPDdkIPmXncEg= + + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + hash + + c7Ku6ucXZdFeSIVUeVOdDfQSPXc= + + hash2 + + P1+g978l8tl8L3Gi0qMbfyMMVPYqXrFjyd8LZzC6py4= + + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + hash + + SB7CzRQtjOgb2EFhaUldcddqOp4= + + hash2 + + 1fPnQP3+hiuzpnt0X1wlHdT/yCCy/W1lEgBrqyxuIuE= + + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + + hash + + 4WNps4csG2At2Zp7V0hGBao+bsA= + + hash2 + + NIqPuFlNi/xAqADtoNsKLEknzPBZmgJGbNs/L5bwJAQ= + + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftdoc + + hash + + c7Ku6ucXZdFeSIVUeVOdDfQSPXc= + + hash2 + + P1+g978l8tl8L3Gi0qMbfyMMVPYqXrFjyd8LZzC6py4= + + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftinterface + + hash + + SB7CzRQtjOgb2EFhaUldcddqOp4= + + hash2 + + 1fPnQP3+hiuzpnt0X1wlHdT/yCCy/W1lEgBrqyxuIuE= + + + Modules/CheckoutEventLoggerKit.swiftmodule/x86_64.swiftmodule + + hash + + 4WNps4csG2At2Zp7V0hGBao+bsA= + + hash2 + + NIqPuFlNi/xAqADtoNsKLEknzPBZmgJGbNs/L5bwJAQ= + + + + 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/iOS Example Frame Carthage/iOS Example Frame Carthage.xcodeproj/project.pbxproj b/iOS Example Frame Carthage/iOS Example Frame Carthage.xcodeproj/project.pbxproj index 422de48bd..32e0159af 100644 --- a/iOS Example Frame Carthage/iOS Example Frame Carthage.xcodeproj/project.pbxproj +++ b/iOS Example Frame Carthage/iOS Example Frame Carthage.xcodeproj/project.pbxproj @@ -1200,7 +1200,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "checkoutEventLoggerKitVersion=\"1.0.3\"\nzipDownload=\"CheckoutEventLoggerKit.zip\"\n\ncurl -L \"https://github.com/checkout/checkout-event-logger-ios-framework/archive/refs/tags/$checkoutEventLoggerKitVersion.zip\" > $zipDownload\nunzip $zipDownload\ncp -r \"checkout-event-logger-ios-framework-$checkoutEventLoggerKitVersion/CheckoutEventLoggerKit.xcframework\" .\nrm -r \"checkout-event-logger-ios-framework-$checkoutEventLoggerKitVersion\"\nrm $zipDownload\n"; + shellScript = "checkoutEventLoggerKitVersion=\"1.1.1\"\nzipDownload=\"CheckoutEventLoggerKit.zip\"\n\ncurl -L \"https://github.com/checkout/checkout-event-logger-ios-framework/archive/refs/tags/$checkoutEventLoggerKitVersion.zip\" > $zipDownload\nunzip $zipDownload\ncp -r \"checkout-event-logger-ios-framework-$checkoutEventLoggerKitVersion/CheckoutEventLoggerKit.xcframework\" .\nrm -r \"checkout-event-logger-ios-framework-$checkoutEventLoggerKitVersion\"\nrm $zipDownload\n"; }; /* End PBXShellScriptBuildPhase section */ diff --git a/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 975e52455..b9583b060 100644 --- a/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/iOS Example Frame SPM/iOS Example Frame SPM.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -6,8 +6,8 @@ "repositoryURL": "https://github.com/checkout/checkout-event-logger-ios-framework.git", "state": { "branch": null, - "revision": "d3f87cede558cf229912ceaabe2f4ba3b8cb1e3d", - "version": "1.0.3" + "revision": "917efddacf253a09c17921d268c0aa817a5011d5", + "version": "1.1.1" } }, { diff --git a/iOS Example Frame/Podfile.lock b/iOS Example Frame/Podfile.lock index 90ceada24..e48e6003b 100644 --- a/iOS Example Frame/Podfile.lock +++ b/iOS Example Frame/Podfile.lock @@ -1,11 +1,11 @@ PODS: - - CheckoutEventLoggerKit (1.0.3) + - CheckoutEventLoggerKit (1.1.1) - Frames (3.5.0): - - CheckoutEventLoggerKit (~> 1.0) - - PhoneNumberKit (~> 3.3) + - CheckoutEventLoggerKit (= 1.1.1) + - PhoneNumberKit (= 3.3.3) - Frames/Tests (3.5.0): - - CheckoutEventLoggerKit (~> 1.0) - - PhoneNumberKit (~> 3.3) + - CheckoutEventLoggerKit (= 1.1.1) + - PhoneNumberKit (= 3.3.3) - PhoneNumberKit (3.3.3): - PhoneNumberKit/PhoneNumberKitCore (= 3.3.3) - PhoneNumberKit/UIKit (= 3.3.3) @@ -27,10 +27,10 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - CheckoutEventLoggerKit: 9a5aabfc739e5a75fb28da83ea1e0aae4a13d254 - Frames: 53296bdb8836b1ecd274910a32bd1f884676530f + CheckoutEventLoggerKit: 18f1afe34ff217c3624396f2c2b4d26db8e6c2d9 + Frames: d7b735e990431de59d914830a1efad26d0e5c1e4 PhoneNumberKit: 4ce83273551c4d2ae10b7361162f4283dd02835f PODFILE CHECKSUM: 0935f6adf6dbf24cd1aebd515551bbce53bef8e5 -COCOAPODS: 1.11.0 +COCOAPODS: 1.11.2 diff --git a/screenshots/excludedArchitectures.png b/screenshots/excludedArchitectures.png deleted file mode 100644 index aff7095f5..000000000 Binary files a/screenshots/excludedArchitectures.png and /dev/null differ