@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 CHANGED
@@ -1100,12 +1100,14 @@ class VerdocsEndpoint {
1100
1100
  }
1101
1101
  setDefault() {
1102
1102
  globalThis$1[ENDPOINT_KEY] = this;
1103
+ window?.console?.debug('[JS_SDK] Set default endpoint', ENDPOINT_KEY, globalThis$1);
1103
1104
  }
1104
1105
  static getDefault() {
1105
1106
  if (!globalThis$1[ENDPOINT_KEY]) {
1106
1107
  globalThis$1[ENDPOINT_KEY] = new VerdocsEndpoint();
1107
1108
  // window.console.debug('[JS_SDK] Created default endpoint', globalThis[ENDPOINT_KEY].baseURL);
1108
1109
  }
1110
+ window?.console?.debug('[JS_SDK] Getting default endpoint', ENDPOINT_KEY, globalThis$1);
1109
1111
  return globalThis$1[ENDPOINT_KEY];
1110
1112
  }
1111
1113
  /**