@beam3_dev/api_module 0.0.143 → 0.0.144
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 -7
- package/dist/wb3Api.js.map +1 -1
- package/dist/wb3Api.umd.cjs +5 -5
- package/dist/wb3Api.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/wb3Api.js
CHANGED
|
@@ -2004,14 +2004,13 @@ async function at(e, t, n = void 0, s = void 0) {
|
|
|
2004
2004
|
}
|
|
2005
2005
|
async function ot(e, t, n, s, a = void 0, r = void 0) {
|
|
2006
2006
|
e.tenant && v(e, (o) => {
|
|
2007
|
-
const c = `${o.services.find((
|
|
2008
|
-
|
|
2009
|
-
d.fetch(`https://api.uixhome.fr/iterop/runtime/processes/${n}?t=${t}&s=${c}&b=${s}`, {
|
|
2007
|
+
const c = `${o.services.find((d) => d.id === "businessprocess")?.url + "/api/v2"}/repository/data/tables`;
|
|
2008
|
+
fetch(`https://api.uixhome.fr/iterop/runtime/processes/${n}?t=${t}&s=${c}&b=${s}`, {
|
|
2010
2009
|
method: "POST"
|
|
2011
|
-
}).then((
|
|
2012
|
-
a && a(
|
|
2013
|
-
}).catch((
|
|
2014
|
-
r && r(
|
|
2010
|
+
}).then((d) => d.json()).then((d) => {
|
|
2011
|
+
a && a(d);
|
|
2012
|
+
}).catch((d) => {
|
|
2013
|
+
r && r(d);
|
|
2015
2014
|
});
|
|
2016
2015
|
});
|
|
2017
2016
|
}
|