@beam3_dev/api_module 0.0.141 → 0.0.142
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 -10
- 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
|
@@ -1982,16 +1982,12 @@ async function at(e, t, n = void 0, s = void 0) {
|
|
|
1982
1982
|
e.tenant && A(e, (i) => {
|
|
1983
1983
|
console.log("serviceUrls", i), i.services.find((a) => a.id === "3dpassport")?.url;
|
|
1984
1984
|
const o = `${i.services.find((a) => a.id === "businessprocess")?.url + "/api/v2"}/identity/users`;
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
},
|
|
1992
|
-
onFailure(a) {
|
|
1993
|
-
s && s(a);
|
|
1994
|
-
}
|
|
1985
|
+
fetch(`https://api.uixhome.fr/iterop/listusers?t=${t}&s=${o}`, {
|
|
1986
|
+
method: "POST"
|
|
1987
|
+
}).then((a) => a.json()).then((a) => {
|
|
1988
|
+
n && n(a);
|
|
1989
|
+
}).catch((a) => {
|
|
1990
|
+
s && s(a);
|
|
1995
1991
|
});
|
|
1996
1992
|
});
|
|
1997
1993
|
}
|