@verdocs/js-sdk 4.2.70 → 4.2.71
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/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1098,12 +1098,14 @@ class VerdocsEndpoint {
|
|
|
1098
1098
|
}
|
|
1099
1099
|
setDefault() {
|
|
1100
1100
|
globalThis$1[ENDPOINT_KEY] = this;
|
|
1101
|
+
window?.console?.debug('[JS_SDK] Set default endpoint', ENDPOINT_KEY, globalThis$1);
|
|
1101
1102
|
}
|
|
1102
1103
|
static getDefault() {
|
|
1103
1104
|
if (!globalThis$1[ENDPOINT_KEY]) {
|
|
1104
1105
|
globalThis$1[ENDPOINT_KEY] = new VerdocsEndpoint();
|
|
1105
1106
|
// window.console.debug('[JS_SDK] Created default endpoint', globalThis[ENDPOINT_KEY].baseURL);
|
|
1106
1107
|
}
|
|
1108
|
+
window?.console?.debug('[JS_SDK] Getting default endpoint', ENDPOINT_KEY, globalThis$1);
|
|
1107
1109
|
return globalThis$1[ENDPOINT_KEY];
|
|
1108
1110
|
}
|
|
1109
1111
|
/**
|