@infrab4a/connect 4.23.1 → 4.23.2-beta.1
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/index.cjs.js
CHANGED
|
@@ -7170,6 +7170,7 @@ class PagarmeCardAxiosAdapter {
|
|
|
7170
7170
|
api_key: this.credentials.API_KEY,
|
|
7171
7171
|
amount: Math.floor(checkout.totalPrice * 100),
|
|
7172
7172
|
card_id: card.cardId,
|
|
7173
|
+
card_cvv: card.cardCvv,
|
|
7173
7174
|
payment_method: 'credit_card',
|
|
7174
7175
|
installments: card.installments,
|
|
7175
7176
|
soft_descriptor: checkout.shop === exports.Shops.GLAMSHOP ? 'Glam' : "Men's Market",
|
package/index.esm.js
CHANGED
|
@@ -7164,6 +7164,7 @@ class PagarmeCardAxiosAdapter {
|
|
|
7164
7164
|
api_key: this.credentials.API_KEY,
|
|
7165
7165
|
amount: Math.floor(checkout.totalPrice * 100),
|
|
7166
7166
|
card_id: card.cardId,
|
|
7167
|
+
card_cvv: card.cardCvv,
|
|
7167
7168
|
payment_method: 'credit_card',
|
|
7168
7169
|
installments: card.installments,
|
|
7169
7170
|
soft_descriptor: checkout.shop === Shops.GLAMSHOP ? 'Glam' : "Men's Market",
|
package/package.json
CHANGED