@yuno-payments/sdk-web-types 1.20.0 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -0
- package/dist/types.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -551,6 +551,10 @@ interface MountCheckoutLiteArgs {
|
|
|
551
551
|
paymentMethodType?: string;
|
|
552
552
|
vaultedToken?: string;
|
|
553
553
|
}
|
|
554
|
+
interface MountSeamlessCheckoutLiteArgs {
|
|
555
|
+
paymentMethodType?: string;
|
|
556
|
+
vaultedToken?: string;
|
|
557
|
+
}
|
|
554
558
|
interface SecureFieldsArgs {
|
|
555
559
|
countryCode: string;
|
|
556
560
|
checkoutSession?: string;
|
|
@@ -572,6 +576,7 @@ interface YunoInstance {
|
|
|
572
576
|
startCheckout(args: StartCheckoutArgs): void;
|
|
573
577
|
mountCheckout(args: MountCheckoutArgs): void;
|
|
574
578
|
mountCheckoutLite(args: MountCheckoutLiteArgs): void;
|
|
579
|
+
mountSeamlessCheckoutLite(args: MountSeamlessCheckoutLiteArgs): void;
|
|
575
580
|
updateCheckoutSession(checkout: string): void;
|
|
576
581
|
submitOneTimeTokenForm(): void;
|
|
577
582
|
startPayment(): void;
|
package/dist/types.ts
CHANGED
|
@@ -551,6 +551,10 @@ interface MountCheckoutLiteArgs {
|
|
|
551
551
|
paymentMethodType?: string;
|
|
552
552
|
vaultedToken?: string;
|
|
553
553
|
}
|
|
554
|
+
interface MountSeamlessCheckoutLiteArgs {
|
|
555
|
+
paymentMethodType?: string;
|
|
556
|
+
vaultedToken?: string;
|
|
557
|
+
}
|
|
554
558
|
interface SecureFieldsArgs {
|
|
555
559
|
countryCode: string;
|
|
556
560
|
checkoutSession?: string;
|
|
@@ -572,6 +576,7 @@ interface YunoInstance {
|
|
|
572
576
|
startCheckout(args: StartCheckoutArgs): void;
|
|
573
577
|
mountCheckout(args: MountCheckoutArgs): void;
|
|
574
578
|
mountCheckoutLite(args: MountCheckoutLiteArgs): void;
|
|
579
|
+
mountSeamlessCheckoutLite(args: MountSeamlessCheckoutLiteArgs): void;
|
|
575
580
|
updateCheckoutSession(checkout: string): void;
|
|
576
581
|
submitOneTimeTokenForm(): void;
|
|
577
582
|
startPayment(): void;
|
|
@@ -591,4 +596,4 @@ interface Yuno {
|
|
|
591
596
|
initialize(publicApiKey: string): YunoInstance;
|
|
592
597
|
}
|
|
593
598
|
|
|
594
|
-
export { type ButtonTextCard, type CardConfig, type CreateArgsSF, type ExternalPaymentButtons, ExternalPaymentButtonsTypes, type FormElementSelector, type Language, type LoadingType, type MountCheckoutArgs, type MountCheckoutLiteArgs, type MountEnrollmentLiteArgs, type MountStatusPaymentArgs, type OnChangeDataSF, type RenderMode, type SecureFieldInstance, type SecureFieldsArgs, type StartCheckoutArgs, type TextsCustom, type Yuno, type YunoConfig, type YunoInstance, type mountFraudArgs };
|
|
599
|
+
export { type ButtonTextCard, type CardConfig, type CreateArgsSF, type ExternalPaymentButtons, ExternalPaymentButtonsTypes, type FormElementSelector, type Language, type LoadingType, type MountCheckoutArgs, type MountCheckoutLiteArgs, type MountEnrollmentLiteArgs, type MountSeamlessCheckoutLiteArgs, type MountStatusPaymentArgs, type OnChangeDataSF, type RenderMode, type SecureFieldInstance, type SecureFieldsArgs, type StartCheckoutArgs, type TextsCustom, type Yuno, type YunoConfig, type YunoInstance, type mountFraudArgs };
|