@beam3_dev/api_module 0.0.154 → 0.0.155
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/wb3Api.js +6 -5
- package/dist/wb3Api.js.map +1 -1
- package/dist/wb3Api.umd.cjs +1 -1
- package/dist/wb3Api.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/wb3Api.js
CHANGED
|
@@ -887,17 +887,18 @@ function Z(e, t, n = void 0, s = void 0, a = void 0) {
|
|
|
887
887
|
try {
|
|
888
888
|
const l = p.dataelements.fileName, f = p.dataelements.ticketURL;
|
|
889
889
|
m(f, {
|
|
890
|
-
onComplete: (u) => {
|
|
891
|
-
let
|
|
890
|
+
onComplete: (u, g) => {
|
|
891
|
+
let h;
|
|
892
892
|
try {
|
|
893
|
-
|
|
893
|
+
h = JSON.parse(u);
|
|
894
894
|
} catch {
|
|
895
|
-
|
|
895
|
+
h = u;
|
|
896
896
|
}
|
|
897
897
|
s && s({
|
|
898
898
|
objectId: p.id,
|
|
899
|
+
headers: g,
|
|
899
900
|
fileName: l,
|
|
900
|
-
data:
|
|
901
|
+
data: h
|
|
901
902
|
});
|
|
902
903
|
},
|
|
903
904
|
onFailure: (u) => {
|