@superlogic/spree-pay 0.1.12 → 0.1.13
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/build/index.cjs +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.cjs
CHANGED
|
@@ -1231,7 +1231,7 @@ var useCryptoPayment = () => {
|
|
|
1231
1231
|
txHash,
|
|
1232
1232
|
paymentId: paymentRes.data.id,
|
|
1233
1233
|
txId: paymentRes.data.txId,
|
|
1234
|
-
status: res.verified ? "
|
|
1234
|
+
status: res.verified ? "CAPTURED" /* CAPTURED */ : "FAILED" /* FAILED */,
|
|
1235
1235
|
paymentType: "CRYPTO" /* CRYPTO */
|
|
1236
1236
|
};
|
|
1237
1237
|
};
|
package/build/index.js
CHANGED
|
@@ -1192,7 +1192,7 @@ var useCryptoPayment = () => {
|
|
|
1192
1192
|
txHash,
|
|
1193
1193
|
paymentId: paymentRes.data.id,
|
|
1194
1194
|
txId: paymentRes.data.txId,
|
|
1195
|
-
status: res.verified ? "
|
|
1195
|
+
status: res.verified ? "CAPTURED" /* CAPTURED */ : "FAILED" /* FAILED */,
|
|
1196
1196
|
paymentType: "CRYPTO" /* CRYPTO */
|
|
1197
1197
|
};
|
|
1198
1198
|
};
|