@infrab4a/connect 5.4.0-beta.24 → 5.4.0-beta.25
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 +3 -0
- package/index.esm.js +3 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -8986,6 +8986,7 @@ class MercadoPagoBankSlipAxiosAdapter {
|
|
|
8986
8986
|
if (error instanceof axios.AxiosError) {
|
|
8987
8987
|
console.warn(JSON.stringify(error.response.data.cause));
|
|
8988
8988
|
}
|
|
8989
|
+
throw error;
|
|
8989
8990
|
}
|
|
8990
8991
|
}
|
|
8991
8992
|
getBoletoTransaction(paymentId) {
|
|
@@ -9041,6 +9042,7 @@ class MercadoPagoCardAxiosAdapter {
|
|
|
9041
9042
|
if (error instanceof axios.AxiosError) {
|
|
9042
9043
|
console.warn(JSON.stringify(error.response.data.cause));
|
|
9043
9044
|
}
|
|
9045
|
+
throw error;
|
|
9044
9046
|
}
|
|
9045
9047
|
}
|
|
9046
9048
|
async addCard(card, customer) {
|
|
@@ -9141,6 +9143,7 @@ class MercadoPagoPixAxiosAdapter {
|
|
|
9141
9143
|
if (error instanceof axios.AxiosError) {
|
|
9142
9144
|
console.warn(JSON.stringify(error.response.data.cause));
|
|
9143
9145
|
}
|
|
9146
|
+
throw error;
|
|
9144
9147
|
}
|
|
9145
9148
|
}
|
|
9146
9149
|
}
|
package/index.esm.js
CHANGED
|
@@ -8962,6 +8962,7 @@ class MercadoPagoBankSlipAxiosAdapter {
|
|
|
8962
8962
|
if (error instanceof AxiosError) {
|
|
8963
8963
|
console.warn(JSON.stringify(error.response.data.cause));
|
|
8964
8964
|
}
|
|
8965
|
+
throw error;
|
|
8965
8966
|
}
|
|
8966
8967
|
}
|
|
8967
8968
|
getBoletoTransaction(paymentId) {
|
|
@@ -9017,6 +9018,7 @@ class MercadoPagoCardAxiosAdapter {
|
|
|
9017
9018
|
if (error instanceof AxiosError) {
|
|
9018
9019
|
console.warn(JSON.stringify(error.response.data.cause));
|
|
9019
9020
|
}
|
|
9021
|
+
throw error;
|
|
9020
9022
|
}
|
|
9021
9023
|
}
|
|
9022
9024
|
async addCard(card, customer) {
|
|
@@ -9117,6 +9119,7 @@ class MercadoPagoPixAxiosAdapter {
|
|
|
9117
9119
|
if (error instanceof AxiosError) {
|
|
9118
9120
|
console.warn(JSON.stringify(error.response.data.cause));
|
|
9119
9121
|
}
|
|
9122
|
+
throw error;
|
|
9120
9123
|
}
|
|
9121
9124
|
}
|
|
9122
9125
|
}
|