vk-payments 0.2.5 → 0.2.7
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/bundles/vk-payments.umd.js +5 -4
- package/bundles/vk-payments.umd.js.map +1 -1
- package/bundles/vk-payments.umd.min.js +1 -1
- package/bundles/vk-payments.umd.min.js.map +1 -1
- package/esm2015/lib/go-cuotas/components/go-cuotas.component.js +4 -4
- package/esm2015/lib/go-cuotas/models/go-cuotas.models.js +3 -1
- package/esm2015/lib/go-cuotas/services/go-cuotas.api.service.js +3 -2
- package/esm5/lib/go-cuotas/components/go-cuotas.component.js +4 -4
- package/esm5/lib/go-cuotas/models/go-cuotas.models.js +3 -1
- package/esm5/lib/go-cuotas/services/go-cuotas.api.service.js +3 -2
- package/fesm2015/vk-payments.js +5 -4
- package/fesm2015/vk-payments.js.map +1 -1
- package/fesm5/vk-payments.js +5 -4
- package/fesm5/vk-payments.js.map +1 -1
- package/lib/go-cuotas/models/go-cuotas.models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
};
|
|
@@ -2871,8 +2872,7 @@
|
|
|
2871
2872
|
this.installments = 0;
|
|
2872
2873
|
this.currentInstallments = [
|
|
2873
2874
|
{ value: 2, label: '2 Cuotas' },
|
|
2874
|
-
{ value: 3, label: '3 Cuotas' }
|
|
2875
|
-
{ value: 4, label: '4 Cuotas' }
|
|
2875
|
+
{ value: 3, label: '3 Cuotas' }
|
|
2876
2876
|
]; // Opciones para "Cantidad de cuotas"
|
|
2877
2877
|
this.totalAmount = Number(this.paymentAmount);
|
|
2878
2878
|
};
|
|
@@ -2960,7 +2960,8 @@
|
|
|
2960
2960
|
cardYearExpiration: Number(this.yearText),
|
|
2961
2961
|
cardSecurityCode: Number(this.cvcText),
|
|
2962
2962
|
idVen: this.idVen,
|
|
2963
|
-
storeId: this.storeId
|
|
2963
|
+
storeId: this.storeId,
|
|
2964
|
+
data: this.data
|
|
2964
2965
|
};
|
|
2965
2966
|
this.isLoading = false;
|
|
2966
2967
|
this.disabled = true;
|