vk-payments 0.2.4 → 0.2.6

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.
@@ -2697,7 +2697,8 @@
2697
2697
  cardYearExpiration: payment.cardYearExpiration,
2698
2698
  cardSecurityCode: payment.cardSecurityCode,
2699
2699
  idVen: payment.idVen,
2700
- storeId: payment.storeId
2700
+ storeId: payment.storeId,
2701
+ data: payment.data
2701
2702
  };
2702
2703
  return this.httpClient.post(this.normalizeUrl(url) + '/payment', body, { headers: this.authHeaders });
2703
2704
  };
@@ -2904,7 +2905,8 @@
2904
2905
  cardholder: this.defaultName,
2905
2906
  creditCardHash: this.cardText,
2906
2907
  idVen: this.idVen,
2907
- storeId: this.storeId
2908
+ storeId: this.storeId,
2909
+ data: this.data
2908
2910
  };
2909
2911
  this.initPayment();
2910
2912
  };
@@ -2959,7 +2961,8 @@
2959
2961
  cardYearExpiration: Number(this.yearText),
2960
2962
  cardSecurityCode: Number(this.cvcText),
2961
2963
  idVen: this.idVen,
2962
- storeId: this.storeId
2964
+ storeId: this.storeId,
2965
+ data: this.data
2963
2966
  };
2964
2967
  this.isLoading = false;
2965
2968
  this.disabled = true;