@rebilly/revel 8.8.14 → 8.8.16
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 +1 -1
- package/dist/revel.mjs +5 -2
- package/dist/revel.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [8.8.
|
|
1
|
+
## [8.8.16](https://github.com/Rebilly/rebilly/compare/revel-v8.8.15...revel-v8.8.16) (2025-05-27)
|
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
|
|
12783
|
-
|
|
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
|
}
|