-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor ADYServiceAdaptor to ThreeDSServicable
- Loading branch information
1 parent
48154b5
commit 92ba243
Showing
22 changed files
with
538 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 0 additions & 44 deletions
44
AdyenActions/Components/3DS2/3DS2 SDK Adapters/ADYServiceAdapter.swift
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
AdyenActions/Components/3DS2/3DS2 SDK Adapters/AnyADYTransaction.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
AdyenActions/Components/3DS2/3DS2 SDK Adapters/ChallengeParameters.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// | ||
// Copyright (c) 2025 Adyen N.V. | ||
// | ||
// This file is open source and available under the MIT license. See the LICENSE file for more info. | ||
// | ||
|
||
import Foundation | ||
|
||
internal struct ChallengeParameters { | ||
internal let challengeToken: ThreeDS2Component.ChallengeToken | ||
internal let threeDSRequestorAppURL: URL? | ||
} |
17 changes: 17 additions & 0 deletions
17
AdyenActions/Components/3DS2/3DS2 SDK Adapters/FingerprintServiceParameters.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// Copyright (c) 2025 Adyen N.V. | ||
// | ||
// This file is open source and available under the MIT license. See the LICENSE file for more info. | ||
// | ||
|
||
import class Adyen3DS2.ADYAppearanceConfiguration | ||
import Foundation | ||
|
||
internal struct FingerprintServiceParameters { | ||
internal let directoryServerIdentifier: String | ||
internal let directoryServerPublicKey: String | ||
internal let directoryServerRootCertificates: String | ||
internal let deviceExcludedParameters: [String: Any]? | ||
internal let appearanceConfiguration: Adyen3DS2.ADYAppearanceConfiguration | ||
internal let threeDSMessageVersion: String | ||
} |
Oops, something went wrong.