@vizbeetv/homesso-sdk-qa 1.0.6 → 1.0.7

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/es5/index.cjs CHANGED
@@ -585,7 +585,7 @@ var VizbeeMetricsManager = /** @class */ (function () {
585
585
  var _a, _b, _c, _d;
586
586
  var attributes = {};
587
587
  attributes[VizbeeMetricsConstants.METRICS_ATTR_SCREEN_HOMESSO_SDK_VERSION] =
588
- '1.0.6';
588
+ '1.0.7';
589
589
  attributes['REMOTE_FRIENDLY_NAME'] = (_a = this.senderInfo) === null || _a === void 0 ? void 0 : _a.friendlyName;
590
590
  attributes['REMOTE_DEVICE_ID'] = (_b = this.senderInfo) === null || _b === void 0 ? void 0 : _b.deviceId;
591
591
  attributes['REMOTE_DEVICE_TYPE'] = (_c = this.senderInfo) === null || _c === void 0 ? void 0 : _c.deviceType;
@@ -1732,10 +1732,6 @@ var VizbeeHomeSSOManager = /** @class */ (function () {
1732
1732
  * @internal
1733
1733
  */
1734
1734
  VizbeeHomeSSOManager.prototype.updateSuccessUI = function () {
1735
- // Enforce only the success duration; leave title/description to the
1736
- // integrator's config (or the defaults) so the success toast can be
1737
- // themed/localized like the informational and progress modals.
1738
- this.vizbeeHomeSSOUIManager.setSuccessSignInModalConfig({ duration: 10000 });
1739
1735
  var modalOptions = this.vizbeeHomeSSOUIManager.getSuccessSignInModalConfig();
1740
1736
  this.snackbar.show(modalOptions);
1741
1737
  };
@@ -1831,7 +1827,7 @@ var setupHomeSSO = function () {
1831
1827
  // Replaced at build time with package.json's version by
1832
1828
  // @rollup/plugin-replace (same token the metrics manager uses), so
1833
1829
  // integrators can read the loaded SDK version off the namespace.
1834
- VERSION: '1.0.6',
1830
+ VERSION: '1.0.7',
1835
1831
  };
1836
1832
  window.dispatchEvent(new Event('VIZBEE_HOMESSO_READY'));
1837
1833
  };
package/es5/index.mjs CHANGED
@@ -581,7 +581,7 @@ var VizbeeMetricsManager = /** @class */ (function () {
581
581
  var _a, _b, _c, _d;
582
582
  var attributes = {};
583
583
  attributes[VizbeeMetricsConstants.METRICS_ATTR_SCREEN_HOMESSO_SDK_VERSION] =
584
- '1.0.6';
584
+ '1.0.7';
585
585
  attributes['REMOTE_FRIENDLY_NAME'] = (_a = this.senderInfo) === null || _a === void 0 ? void 0 : _a.friendlyName;
586
586
  attributes['REMOTE_DEVICE_ID'] = (_b = this.senderInfo) === null || _b === void 0 ? void 0 : _b.deviceId;
587
587
  attributes['REMOTE_DEVICE_TYPE'] = (_c = this.senderInfo) === null || _c === void 0 ? void 0 : _c.deviceType;
@@ -1728,10 +1728,6 @@ var VizbeeHomeSSOManager = /** @class */ (function () {
1728
1728
  * @internal
1729
1729
  */
1730
1730
  VizbeeHomeSSOManager.prototype.updateSuccessUI = function () {
1731
- // Enforce only the success duration; leave title/description to the
1732
- // integrator's config (or the defaults) so the success toast can be
1733
- // themed/localized like the informational and progress modals.
1734
- this.vizbeeHomeSSOUIManager.setSuccessSignInModalConfig({ duration: 10000 });
1735
1731
  var modalOptions = this.vizbeeHomeSSOUIManager.getSuccessSignInModalConfig();
1736
1732
  this.snackbar.show(modalOptions);
1737
1733
  };
@@ -1827,7 +1823,7 @@ var setupHomeSSO = function () {
1827
1823
  // Replaced at build time with package.json's version by
1828
1824
  // @rollup/plugin-replace (same token the metrics manager uses), so
1829
1825
  // integrators can read the loaded SDK version off the namespace.
1830
- VERSION: '1.0.6',
1826
+ VERSION: '1.0.7',
1831
1827
  };
1832
1828
  window.dispatchEvent(new Event('VIZBEE_HOMESSO_READY'));
1833
1829
  };
package/es6/index.cjs CHANGED
@@ -482,7 +482,7 @@ class VizbeeMetricsManager {
482
482
  var _a, _b, _c, _d;
483
483
  const attributes = {};
484
484
  attributes[VizbeeMetricsConstants.METRICS_ATTR_SCREEN_HOMESSO_SDK_VERSION] =
485
- '1.0.6';
485
+ '1.0.7';
486
486
  attributes['REMOTE_FRIENDLY_NAME'] = (_a = this.senderInfo) === null || _a === void 0 ? void 0 : _a.friendlyName;
487
487
  attributes['REMOTE_DEVICE_ID'] = (_b = this.senderInfo) === null || _b === void 0 ? void 0 : _b.deviceId;
488
488
  attributes['REMOTE_DEVICE_TYPE'] = (_c = this.senderInfo) === null || _c === void 0 ? void 0 : _c.deviceType;
@@ -1626,10 +1626,6 @@ class VizbeeHomeSSOManager {
1626
1626
  * @internal
1627
1627
  */
1628
1628
  updateSuccessUI() {
1629
- // Enforce only the success duration; leave title/description to the
1630
- // integrator's config (or the defaults) so the success toast can be
1631
- // themed/localized like the informational and progress modals.
1632
- this.vizbeeHomeSSOUIManager.setSuccessSignInModalConfig({ duration: 10000 });
1633
1629
  const modalOptions = this.vizbeeHomeSSOUIManager.getSuccessSignInModalConfig();
1634
1630
  this.snackbar.show(modalOptions);
1635
1631
  }
@@ -1723,7 +1719,7 @@ const setupHomeSSO = () => {
1723
1719
  // Replaced at build time with package.json's version by
1724
1720
  // @rollup/plugin-replace (same token the metrics manager uses), so
1725
1721
  // integrators can read the loaded SDK version off the namespace.
1726
- VERSION: '1.0.6',
1722
+ VERSION: '1.0.7',
1727
1723
  };
1728
1724
  window.dispatchEvent(new Event('VIZBEE_HOMESSO_READY'));
1729
1725
  };
package/es6/index.mjs CHANGED
@@ -478,7 +478,7 @@ class VizbeeMetricsManager {
478
478
  var _a, _b, _c, _d;
479
479
  const attributes = {};
480
480
  attributes[VizbeeMetricsConstants.METRICS_ATTR_SCREEN_HOMESSO_SDK_VERSION] =
481
- '1.0.6';
481
+ '1.0.7';
482
482
  attributes['REMOTE_FRIENDLY_NAME'] = (_a = this.senderInfo) === null || _a === void 0 ? void 0 : _a.friendlyName;
483
483
  attributes['REMOTE_DEVICE_ID'] = (_b = this.senderInfo) === null || _b === void 0 ? void 0 : _b.deviceId;
484
484
  attributes['REMOTE_DEVICE_TYPE'] = (_c = this.senderInfo) === null || _c === void 0 ? void 0 : _c.deviceType;
@@ -1622,10 +1622,6 @@ class VizbeeHomeSSOManager {
1622
1622
  * @internal
1623
1623
  */
1624
1624
  updateSuccessUI() {
1625
- // Enforce only the success duration; leave title/description to the
1626
- // integrator's config (or the defaults) so the success toast can be
1627
- // themed/localized like the informational and progress modals.
1628
- this.vizbeeHomeSSOUIManager.setSuccessSignInModalConfig({ duration: 10000 });
1629
1625
  const modalOptions = this.vizbeeHomeSSOUIManager.getSuccessSignInModalConfig();
1630
1626
  this.snackbar.show(modalOptions);
1631
1627
  }
@@ -1719,7 +1715,7 @@ const setupHomeSSO = () => {
1719
1715
  // Replaced at build time with package.json's version by
1720
1716
  // @rollup/plugin-replace (same token the metrics manager uses), so
1721
1717
  // integrators can read the loaded SDK version off the namespace.
1722
- VERSION: '1.0.6',
1718
+ VERSION: '1.0.7',
1723
1719
  };
1724
1720
  window.dispatchEvent(new Event('VIZBEE_HOMESSO_READY'));
1725
1721
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizbeetv/homesso-sdk-qa",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "TV app authentication library (QA)",
5
5
  "main": "./es5/index.cjs",
6
6
  "module": "./es5/index.mjs",