@yuno-payments/sdk-web-types 1.16.0-beta.5 → 1.17.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 +2 -0
- package/dist/types.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -512,6 +512,7 @@ interface YunoConfig {
|
|
|
512
512
|
cardFormUnfoldedEnable?: boolean;
|
|
513
513
|
isDynamicViewEnabled?: boolean;
|
|
514
514
|
showOnlyThesePaymentMethods?: string[];
|
|
515
|
+
showPayButton?: boolean;
|
|
515
516
|
yunoCreatePayment?: (oneTimeToken: string, tokenWithInformation: OneTimeToken) => void;
|
|
516
517
|
yunoPaymentMethodSelected?: (arg: {
|
|
517
518
|
type: string;
|
|
@@ -567,6 +568,7 @@ interface YunoInstance {
|
|
|
567
568
|
mountCheckout(args: MountCheckoutArgs): void;
|
|
568
569
|
mountCheckoutLite(args: MountCheckoutLiteArgs): void;
|
|
569
570
|
updateCheckoutSession(checkout: string): void;
|
|
571
|
+
submitOneTimeTokenForm(): void;
|
|
570
572
|
startPayment(): void;
|
|
571
573
|
continuePayment(): Promise<void>;
|
|
572
574
|
notifyError(): void;
|
package/dist/types.ts
CHANGED
|
@@ -512,6 +512,7 @@ interface YunoConfig {
|
|
|
512
512
|
cardFormUnfoldedEnable?: boolean;
|
|
513
513
|
isDynamicViewEnabled?: boolean;
|
|
514
514
|
showOnlyThesePaymentMethods?: string[];
|
|
515
|
+
showPayButton?: boolean;
|
|
515
516
|
yunoCreatePayment?: (oneTimeToken: string, tokenWithInformation: OneTimeToken) => void;
|
|
516
517
|
yunoPaymentMethodSelected?: (arg: {
|
|
517
518
|
type: string;
|
|
@@ -567,6 +568,7 @@ interface YunoInstance {
|
|
|
567
568
|
mountCheckout(args: MountCheckoutArgs): void;
|
|
568
569
|
mountCheckoutLite(args: MountCheckoutLiteArgs): void;
|
|
569
570
|
updateCheckoutSession(checkout: string): void;
|
|
571
|
+
submitOneTimeTokenForm(): void;
|
|
570
572
|
startPayment(): void;
|
|
571
573
|
continuePayment(): Promise<void>;
|
|
572
574
|
notifyError(): void;
|