@opexa/portal-sdk 0.59.86 → 0.59.87
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/README.md +1634 -1634
- package/dist/{chunk-7APXFZ5G.js → chunk-5WRVWQBT.js} +3 -3
- package/dist/chunk-5WRVWQBT.js.map +1 -0
- package/dist/{chunk-KTIDTIQ6.js → chunk-QIUE5GTM.js} +9 -9
- package/dist/chunk-QIUE5GTM.js.map +1 -0
- package/dist/{chunk-WVFSGB7Y.js → chunk-ROBGEUSE.js} +2 -2
- package/dist/chunk-ROBGEUSE.js.map +1 -0
- package/dist/index.cjs +13 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -5
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +6 -6
- package/dist/services/index.cjs.map +1 -1
- package/dist/services/index.js +2 -2
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-7APXFZ5G.js.map +0 -1
- package/dist/chunk-KTIDTIQ6.js.map +0 -1
- package/dist/chunk-WVFSGB7Y.js.map +0 -1
package/dist/services/index.cjs
CHANGED
|
@@ -4708,13 +4708,13 @@ var AuthService = class {
|
|
|
4708
4708
|
if (version !== 4) {
|
|
4709
4709
|
headers.append("Authorization", `Bearer ${refreshToken}`);
|
|
4710
4710
|
}
|
|
4711
|
-
if (version === 3 || version === 4) {
|
|
4712
|
-
const fingerprint = await getFingerPrint();
|
|
4713
|
-
if (fingerprint) {
|
|
4714
|
-
headers.append("Fingerprint", fingerprint);
|
|
4715
|
-
}
|
|
4716
|
-
}
|
|
4717
4711
|
try {
|
|
4712
|
+
if (version === 3 || version === 4) {
|
|
4713
|
+
const fingerprint = await getFingerPrint();
|
|
4714
|
+
if (fingerprint) {
|
|
4715
|
+
headers.append("Fingerprint", fingerprint);
|
|
4716
|
+
}
|
|
4717
|
+
}
|
|
4718
4718
|
const isWeb = isWebPlatform();
|
|
4719
4719
|
const queryParam = isWeb && version === 4 ? "?type=web" : "";
|
|
4720
4720
|
const res = await fetch(
|