uvd-x402-sdk 2.68.0 → 2.69.0
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/dist/backend/index.js
CHANGED
|
@@ -3912,7 +3912,10 @@ var AdvancedEscrowClient = class {
|
|
|
3912
3912
|
transactionHash: result.transaction || result.transactionHash || result.transaction_hash
|
|
3913
3913
|
};
|
|
3914
3914
|
}
|
|
3915
|
-
return {
|
|
3915
|
+
return {
|
|
3916
|
+
success: false,
|
|
3917
|
+
error: result.errorReason || result.error || `Release refused with no reason (HTTP ${response.status}, body keys: ${Object.keys(result ?? {}).sort().join(", ") || "none"})`
|
|
3918
|
+
};
|
|
3916
3919
|
} catch (fetchErr) {
|
|
3917
3920
|
clearTimeout(timeoutId);
|
|
3918
3921
|
if (fetchErr.name === "AbortError") {
|