Skip to content

Commit

Permalink
Remove another FPX reference
Browse files Browse the repository at this point in the history
  • Loading branch information
amk-stripe committed Oct 28, 2024
1 parent 4e8091c commit 50bd573
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/types/PaymentMethod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export interface Result {
AuBecsDebit: AuBecsDebitResult;
BacsDebit: BacsDebitResult;
Card: CardResult;
Fpx: FpxResult;
Ideal: IdealResult;
SepaDebit: SepaDebitResult;
Sofort: SofortResult;
Expand All @@ -36,7 +35,6 @@ export type CreateParams =
| AuBecsDebitParams
| SofortParams
| GrabPayParams
| FPXParams
| AfterpayClearpayParams
| KlarnaParams
// | WeChatPayParams
Expand Down Expand Up @@ -81,11 +79,6 @@ export interface IdealParams {
};
}

export interface FPXParams {
paymentMethodType: 'Fpx';
paymentMethodData?: { testOfflineBank?: boolean };
}

export interface AlipayParams {
paymentMethodType: 'Alipay';
}
Expand Down Expand Up @@ -247,10 +240,6 @@ export interface ThreeDSecureUsage {
isSupported?: boolean;
}

export interface FpxResult {
bank?: string;
}

export interface IdealResult {
bankIdentifierCode?: string;
bank?: string;
Expand Down Expand Up @@ -289,7 +278,6 @@ export type Type =
| 'Alipay'
| 'GrabPay'
| 'Ideal'
| 'Fpx'
| 'CardPresent'
| 'SepaDebit'
| 'AuBecsDebit'
Expand Down

0 comments on commit 50bd573

Please sign in to comment.