@inboxsdk/core 2.2.14 → 2.2.15

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/inboxsdk.js CHANGED
@@ -371,7 +371,7 @@ function isNotNil(value) {
371
371
 
372
372
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- SDK_VERSION is injected by webpack
373
373
  ///@ts-ignore
374
- const BUILD_VERSION = "2.2.14-1781136415132-9adac3fd50875551";
374
+ const BUILD_VERSION = "2.2.15-1781640708100-47b21510b9e21546";
375
375
  if (false) {}
376
376
 
377
377
  /***/ }),
@@ -2665,7 +2665,7 @@ options.insert = htmlElement => {
2665
2665
  htmlElement.setAttribute('data-inboxsdk-version',
2666
2666
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
2667
2667
  ///@ts-ignore
2668
- "2.2.14-1781136415132-9adac3fd50875551");
2668
+ "2.2.15-1781640708100-47b21510b9e21546");
2669
2669
  document.head.append(htmlElement);
2670
2670
  };
2671
2671
  options.domAPI = (styleDomAPI_default());
@@ -10313,7 +10313,7 @@ options.insert = htmlElement => {
10313
10313
  htmlElement.setAttribute('data-inboxsdk-version',
10314
10314
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
10315
10315
  ///@ts-ignore
10316
- "2.2.14-1781136415132-9adac3fd50875551");
10316
+ "2.2.15-1781640708100-47b21510b9e21546");
10317
10317
  document.head.append(htmlElement);
10318
10318
  };
10319
10319
  options.domAPI = (styleDomAPI_default());
@@ -15075,7 +15075,7 @@ options.insert = htmlElement => {
15075
15075
  htmlElement.setAttribute('data-inboxsdk-version',
15076
15076
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
15077
15077
  ///@ts-ignore
15078
- "2.2.14-1781136415132-9adac3fd50875551");
15078
+ "2.2.15-1781640708100-47b21510b9e21546");
15079
15079
  document.head.append(htmlElement);
15080
15080
  };
15081
15081
  options.domAPI = (styleDomAPI_default());
@@ -19841,7 +19841,7 @@ mole_view_module_options.insert = htmlElement => {
19841
19841
  htmlElement.setAttribute('data-inboxsdk-version',
19842
19842
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- this is injected by webpack
19843
19843
  ///@ts-ignore
19844
- "2.2.14-1781136415132-9adac3fd50875551");
19844
+ "2.2.15-1781640708100-47b21510b9e21546");
19845
19845
  document.head.append(htmlElement);
19846
19846
  };
19847
19847
  mole_view_module_options.domAPI = (styleDomAPI_default());
@@ -24106,6 +24106,7 @@ function parseListPeopleByKnownIdResponse(data) {
24106
24106
 
24107
24107
 
24108
24108
 
24109
+
24109
24110
 
24110
24111
 
24111
24112
  /**
@@ -24664,7 +24665,14 @@ class GmailDriver {
24664
24665
  if (condition()) {
24665
24666
  return kefir_esm.constant(undefined);
24666
24667
  }
24667
- return (0,stream_wait_for/* default */.A)(condition).map(() => undefined);
24668
+ return (0,stream_wait_for/* default */.A)(condition).map(() => undefined).mapErrors(err => {
24669
+ const el = document.querySelector('div.aUx');
24670
+ this.#logger.error(err, {
24671
+ reason: 'waitForGlobalSidebarReady timed out',
24672
+ aUxHtml: el ? (0,censorHTMLtree/* default */.A)(el) : null
24673
+ });
24674
+ return err;
24675
+ });
24668
24676
  }
24669
24677
  getGlobalSidebar() {
24670
24678
  let appSidebarView = this.#appSidebarView;