Skip to content

Commit

Permalink
fix: make cardHolderInfo and browserInfo optional in SecureSale type
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-herasme committed Dec 14, 2024
1 parent ea22c0e commit e8703c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/azul-api/secure/types.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { ProcessPaymentSchemaInput } from '../process-payment/schemas';

export type SecureSale = ProcessPaymentSchemaInput & {
cardHolderInfo: CardHolderInfo;
browserInfo: BrowserInfo;
cardHolderInfo: Partial<CardHolderInfo>;
browserInfo: Partial<BrowserInfo>;
threeDSAuth: ThreeDSAuth;
} & {
useIframe?: boolean;
Expand Down

0 comments on commit e8703c0

Please sign in to comment.