Skip to content

Commit

Permalink
Merge branch 'develop' into refactor-adyencheckout
Browse files Browse the repository at this point in the history
  • Loading branch information
descorp authored Oct 4, 2024
2 parents a45da34 + adbab73 commit f4e0238
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/configurations/Configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { ApplePayConfiguration } from './ApplePayConfiguration';
import { CardsConfiguration } from './CardsConfiguration';
import { DropInConfiguration } from './DropInConfiguration';
import { GooglePayConfiguration } from './GooglePayConfiguration';
import { ThreeDSConfiguration } from './ThreeDSConfiguration';

/** Collection of available environments. */
export type Environment =
Expand Down Expand Up @@ -54,4 +55,6 @@ export interface Configuration extends BaseConfiguration {
applepay?: ApplePayConfiguration;
/** Google Pay component configuration. */
googlepay?: GooglePayConfiguration;
/** 3D Secure 2 authentication configuration. */
threeDS2?: ThreeDSConfiguration;
}
4 changes: 4 additions & 0 deletions src/core/configurations/ThreeDSConfiguration.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export interface ThreeDSConfiguration {
/** Alternative `returnURL` value that could be used for 3D Security 2 OOB flow. */
requestorAppUrl?: string;
}
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ export type {

export type { DropInConfiguration } from './core/configurations/DropInConfiguration';

export type { ThreeDSConfiguration } from './core/configurations/ThreeDSConfiguration';

export type {
AddressLookup,
AddressLookupItem,
Expand Down

0 comments on commit f4e0238

Please sign in to comment.