@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 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 ? "AUTHORIZED" /* AUTHORIZED */ : "FAILED" /* FAILED */,
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 ? "AUTHORIZED" /* AUTHORIZED */ : "FAILED" /* FAILED */,
1195
+ status: res.verified ? "CAPTURED" /* CAPTURED */ : "FAILED" /* FAILED */,
1196
1196
  paymentType: "CRYPTO" /* CRYPTO */
1197
1197
  };
1198
1198
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superlogic/spree-pay",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Spree-pay React component and utilities",
5
5
  "private": false,
6
6
  "type": "module",