@rebilly/revel 8.8.14 → 8.8.15

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/CHANGELOG.md CHANGED
@@ -1 +1,6 @@
1
- ## [8.8.14](https://github.com/Rebilly/rebilly/compare/revel-v8.8.13...revel-v8.8.14) (2025-05-22)
1
+ ## [8.8.15](https://github.com/Rebilly/rebilly/compare/revel-v8.8.14...revel-v8.8.15) (2025-05-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **recomm, revel:** Fix unclear error message when quickbook connection is cancelled manually ([#11732](https://github.com/Rebilly/rebilly/issues/11732)) ([f3b4d0c](https://github.com/Rebilly/rebilly/commit/f3b4d0cc4ce6854404def541af6d1a7849dc6cd4))
package/dist/revel.mjs CHANGED
@@ -12779,8 +12779,11 @@ class kw {
12779
12779
  }
12780
12780
  else if (b && b.name === "RebillyConflictError")
12781
12781
  b.message && p.push(b.message);
12782
- else if (b && b.name === "RebillyCanceledError")
12783
- return p;
12782
+ else {
12783
+ if (b && b.name === "RebillyCanceledError")
12784
+ return p;
12785
+ b && b.name === "RebillyAppError" && b.message && p.push(b.message);
12786
+ }
12784
12787
  return p.length ? p : [z];
12785
12788
  }
12786
12789
  }