@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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/sdk-web-types",
3
- "version": "1.16.0-beta.5",
3
+ "version": "1.17.0",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/types.ts",
6
6
  "type": "commonjs",