@yuno-payments/sdk-web-types 1.9.0 → 1.10.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
@@ -468,6 +468,7 @@ interface SecureFieldsArgs {
468
468
  checkoutSession?: string;
469
469
  installmentEnable?: boolean;
470
470
  customerSession?: string;
471
+ enableMultipleCard?: string;
471
472
  }
472
473
  interface MountStatusPaymentArgs {
473
474
  checkoutSession: string;
@@ -490,7 +491,7 @@ interface YunoInstance {
490
491
  updateCheckoutSession(checkoutSession: string): void;
491
492
  mountFraud(args: mountFraudArgs): void;
492
493
  mountStatusPayment(args: MountStatusPaymentArgs): void;
493
- secureFields({ countryCode, checkoutSession, installmentEnable, customerSession }: SecureFieldsArgs): SecureFields;
494
+ secureFields(args: SecureFieldsArgs): SecureFields;
494
495
  apiClientPayment: ApiClientPayment;
495
496
  apiClientEnroll: ApiClientEnroll;
496
497
  }
package/dist/types.ts CHANGED
@@ -468,6 +468,7 @@ interface SecureFieldsArgs {
468
468
  checkoutSession?: string;
469
469
  installmentEnable?: boolean;
470
470
  customerSession?: string;
471
+ enableMultipleCard?: string;
471
472
  }
472
473
  interface MountStatusPaymentArgs {
473
474
  checkoutSession: string;
@@ -490,7 +491,7 @@ interface YunoInstance {
490
491
  updateCheckoutSession(checkoutSession: string): void;
491
492
  mountFraud(args: mountFraudArgs): void;
492
493
  mountStatusPayment(args: MountStatusPaymentArgs): void;
493
- secureFields({ countryCode, checkoutSession, installmentEnable, customerSession }: SecureFieldsArgs): SecureFields;
494
+ secureFields(args: SecureFieldsArgs): SecureFields;
494
495
  apiClientPayment: ApiClientPayment;
495
496
  apiClientEnroll: ApiClientEnroll;
496
497
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/sdk-web-types",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/types.ts",
6
6
  "type": "commonjs",