@braze/web-sdk 6.6.0 → 6.7.1

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.
Files changed (152) hide show
  1. package/index.d.ts +253 -5
  2. package/package.json +1 -1
  3. package/shared-lib/event-types.js +21 -20
  4. package/shared-lib/guid.js +3 -3
  5. package/shared-lib/indexed-db-adapter.js +70 -70
  6. package/shared-lib/logger.js +7 -7
  7. package/shared-lib/supported-options.js +26 -26
  8. package/src/Banner/banner-factory.js +11 -1
  9. package/src/Banner/banner-provider.js +244 -120
  10. package/src/Banner/banner.js +14 -12
  11. package/src/Banner/display/banner-to-html.js +23 -16
  12. package/src/Banner/display/detect-banner-impressions.js +13 -13
  13. package/src/Banner/get-all-banners.js +5 -5
  14. package/src/Banner/get-banner.js +4 -4
  15. package/src/Banner/log-banner-click.js +4 -4
  16. package/src/Banner/log-banner-dismissal.js +23 -0
  17. package/src/Banner/log-banner-impressions.js +7 -7
  18. package/src/Banner/request-banners-refresh.js +12 -16
  19. package/src/Banner/subscribe-to-banners-updates.js +6 -6
  20. package/src/Banner/ui/insert-banner.js +12 -12
  21. package/src/Card/card-manager-factory.js +5 -5
  22. package/src/Card/card-manager.js +33 -33
  23. package/src/Card/constants.js +1 -1
  24. package/src/Card/display/card-display.js +11 -11
  25. package/src/Card/log-card-dismissal.js +3 -3
  26. package/src/Card/log-content-card-click.js +3 -3
  27. package/src/Card/log-content-card-impressions.js +6 -6
  28. package/src/Card/models/captioned-image.js +21 -21
  29. package/src/Card/models/card.js +73 -73
  30. package/src/Card/models/classic-card.js +21 -21
  31. package/src/Card/models/control-card.js +11 -11
  32. package/src/Card/models/image-only.js +18 -18
  33. package/src/Card/util/card-factory.js +41 -41
  34. package/src/ContentCards/content-cards-provider-factory.js +12 -12
  35. package/src/ContentCards/content-cards-provider.js +151 -151
  36. package/src/ContentCards/content-cards.js +5 -5
  37. package/src/ContentCards/get-cached-content-cards.js +2 -2
  38. package/src/ContentCards/request-content-cards-refresh.js +2 -2
  39. package/src/ContentCards/subscribe-to-content-cards-updates.js +6 -6
  40. package/src/ContentCards/ui/show-content-cards.js +10 -10
  41. package/src/Core/add-sdk-metadata.js +2 -2
  42. package/src/Core/change-user.js +6 -6
  43. package/src/Core/disable-sdk.js +9 -9
  44. package/src/Core/enable-sdk.js +5 -5
  45. package/src/Core/get-user.js +1 -1
  46. package/src/Core/handle-braze-action.js +3 -3
  47. package/src/Core/is-disabled.js +2 -2
  48. package/src/Core/log-custom-event.js +8 -8
  49. package/src/Core/log-purchase.js +5 -5
  50. package/src/Core/open-session.js +7 -7
  51. package/src/Core/set-sdk-authentication-signature.js +3 -3
  52. package/src/Core/subscribe-to-sdk-authentication-failures.js +1 -1
  53. package/src/Core/wipe-data.js +6 -6
  54. package/src/DUST/dust-provider-factory.js +11 -11
  55. package/src/DUST/dust-provider.js +255 -255
  56. package/src/DUST/dust-shared-worker-impl.js +100 -100
  57. package/src/DUST/dust-worker-bridge.js +27 -27
  58. package/src/DUST/subscribe-to-dust.js +9 -9
  59. package/src/FeatureFlags/feature-flag-factory.js +8 -8
  60. package/src/FeatureFlags/feature-flag.js +9 -9
  61. package/src/FeatureFlags/feature-flags-provider.js +86 -86
  62. package/src/FeatureFlags/get-all-feature-flags.js +2 -2
  63. package/src/FeatureFlags/get-feature-flag.js +2 -2
  64. package/src/FeatureFlags/log-feature-flag-impression.js +5 -5
  65. package/src/FeatureFlags/subscribe-to-feature-flags-updates.js +2 -2
  66. package/src/InAppMessage/constants.js +83 -2
  67. package/src/InAppMessage/display/html-message-display-utils.js +15 -15
  68. package/src/InAppMessage/display/html-message-to-html.js +36 -37
  69. package/src/InAppMessage/display/in-app-message-to-html.js +44 -44
  70. package/src/InAppMessage/display/modal-utils.js +10 -14
  71. package/src/InAppMessage/in-app-message-factory.js +16 -20
  72. package/src/InAppMessage/in-app-message-manager.js +115 -116
  73. package/src/InAppMessage/log-in-app-message-button-click.js +8 -8
  74. package/src/InAppMessage/log-in-app-message-click.js +7 -7
  75. package/src/InAppMessage/log-in-app-message-html-click.js +8 -8
  76. package/src/InAppMessage/log-in-app-message-impression.js +5 -5
  77. package/src/InAppMessage/models/control-message.js +4 -4
  78. package/src/InAppMessage/models/full-screen-message.js +56 -49
  79. package/src/InAppMessage/models/html-message.js +31 -27
  80. package/src/InAppMessage/models/in-app-message-button.js +12 -12
  81. package/src/InAppMessage/models/in-app-message.js +202 -256
  82. package/src/InAppMessage/models/modal-message.js +55 -49
  83. package/src/InAppMessage/models/slide-up-message.js +57 -51
  84. package/src/InAppMessage/models/templated-in-app-message.js +10 -10
  85. package/src/InAppMessage/shared-types.js +1 -0
  86. package/src/InAppMessage/subscribe-to-in-app-message.js +1 -1
  87. package/src/InAppMessage/ui/automatically-show-in-app-messages.js +5 -5
  88. package/src/InAppMessage/ui/remove-all-visible-in-app-messages.js +3 -3
  89. package/src/InAppMessage/ui/show-in-app-message.js +43 -41
  90. package/src/Push/is-push-blocked.js +2 -2
  91. package/src/Push/is-push-permission-granted.js +2 -2
  92. package/src/Push/is-push-supported.js +2 -2
  93. package/src/Push/push-manager-factory.js +9 -9
  94. package/src/Push/push-manager.js +15 -15
  95. package/src/Push/utils/push-utils.js +15 -15
  96. package/src/User/user-manager.js +14 -14
  97. package/src/User/user.js +60 -59
  98. package/src/common/base-provider.js +1 -1
  99. package/src/common/constants.js +2 -1
  100. package/src/common/content-cards-display.js +38 -38
  101. package/src/common/event-logger.js +8 -8
  102. package/src/l10n/l10n-manager-factory.js +9 -9
  103. package/src/l10n/l10n-manager.js +2 -2
  104. package/src/managers/auth-manager.js +31 -31
  105. package/src/managers/braze-instance.js +197 -186
  106. package/src/managers/constants.js +1 -0
  107. package/src/managers/device-manager.js +25 -25
  108. package/src/managers/network-manager.js +155 -155
  109. package/src/managers/server-config-manager.js +106 -93
  110. package/src/managers/session-manager.js +37 -33
  111. package/src/managers/storage-manager-factory.js +33 -28
  112. package/src/managers/storage-manager.js +192 -170
  113. package/src/managers/subscription-manager.js +13 -13
  114. package/src/managers/utils.js +1 -1
  115. package/src/models/backend-errors.js +5 -5
  116. package/src/models/braze-event.js +13 -13
  117. package/src/models/device.js +3 -3
  118. package/src/models/identifier.js +12 -12
  119. package/src/models/push-token.js +9 -9
  120. package/src/models/request-result.js +4 -4
  121. package/src/models/server-config.js +29 -38
  122. package/src/request-controller.js +160 -164
  123. package/src/triggers/models/custom-event-data.js +7 -7
  124. package/src/triggers/models/custom-event-property-data.js +10 -10
  125. package/src/triggers/models/filter-set.js +12 -12
  126. package/src/triggers/models/filter.js +66 -66
  127. package/src/triggers/models/in-app-message-click-data.js +13 -13
  128. package/src/triggers/models/purchase-data.js +4 -4
  129. package/src/triggers/models/purchase-property-data.js +10 -10
  130. package/src/triggers/models/push-click-data.js +8 -8
  131. package/src/triggers/models/trigger-condition.js +58 -58
  132. package/src/triggers/models/trigger-events.js +3 -3
  133. package/src/triggers/models/trigger.js +44 -44
  134. package/src/triggers/triggers-provider-factory.js +5 -5
  135. package/src/triggers/triggers-provider.js +70 -70
  136. package/src/ui/js/attach-css.js +3 -3
  137. package/src/ui/js/feed-css.js +2 -2
  138. package/src/ui/js/iam-css.js +2 -2
  139. package/src/ui/js/load-font-awesome.js +2 -2
  140. package/src/util/base-device-parser.js +9 -9
  141. package/src/util/braze-actions.js +3 -3
  142. package/src/util/browser-detector.js +37 -37
  143. package/src/util/client-hints-parser.js +9 -9
  144. package/src/util/component-utils.js +3 -3
  145. package/src/util/dom-utils.js +2 -2
  146. package/src/util/html-display-utils.js +11 -11
  147. package/src/util/key-codes.js +1 -1
  148. package/src/util/net.js +8 -8
  149. package/src/util/request-header-utils.js +25 -25
  150. package/src/util/user-agent-parser.js +20 -20
  151. package/src/util/validation-utils.js +21 -21
  152. package/src/util/window-utils.js +3 -3
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Type definitions for @braze/web-sdk v6.6.0
2
+ * Type definitions for @braze/web-sdk v6.7.1
3
3
  * Project: https://github.com/braze-inc/braze-web-sdk
4
4
  * (c) Braze, Inc. 2026 - http://braze.com
5
5
  * License available at https://github.com/braze-inc/braze-web-sdk/blob/master/LICENSE
@@ -1585,6 +1585,255 @@ export type PropertiesJson = Partial<
1585
1585
  >
1586
1586
  >;
1587
1587
 
1588
+ export interface eCommerceProductProperties {
1589
+ /**
1590
+ * A unique identifier for the product, such as product ID or SKU. Cannot exceed 255 characters in length.
1591
+ */
1592
+ product_id: string;
1593
+
1594
+ /**
1595
+ * The name of the product. Cannot exceed 255 characters in length.
1596
+ */
1597
+ product_name: string;
1598
+
1599
+ /**
1600
+ * A unique identifier for the product variant (ex: shirt_medium_blue). Cannot exceed 255 characters in length.
1601
+ */
1602
+ variant_id: string;
1603
+
1604
+ /**
1605
+ * The URL of the product image. Cannot exceed 255 characters in length.
1606
+ */
1607
+ image_url?: string;
1608
+
1609
+ /**
1610
+ * The URL of the product page. Cannot exceed 255 characters in length.
1611
+ */
1612
+ product_url?: string;
1613
+
1614
+ /**
1615
+ * The number of units of the product.
1616
+ */
1617
+ quantity: number;
1618
+
1619
+ /**
1620
+ * The variant unit price of the product at the time of viewing (ex: 12.99).
1621
+ */
1622
+ price: number;
1623
+
1624
+ /**
1625
+ * Additional metadata about the product. Keys are limited to 255 characters in length, cannot begin with a $ character,
1626
+ * and can only contain alphanumeric characters and punctuation. Total size of metadata cannot exceed 50KB.
1627
+ */
1628
+ metadata?: {
1629
+ /**
1630
+ * Shopify SKU, only applicable to Shopify integrations. Cannot exceed 255 characters in length.
1631
+ */
1632
+ sku?: string;
1633
+ [key: string]: any;
1634
+ };
1635
+ }
1636
+
1637
+ export interface eCommerceEventProperties {
1638
+ /**
1639
+ * Default USD. Currencies should be represented as an ISO 4217 currency code. Supported
1640
+ * currency symbols include: AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF,
1641
+ * BMD, BND, BOB, BRL, BSD, BTC, BTN, BWP, BYR, BZD, CAD, CDF, CHF, CLF, CLP, CNY, COP, CRC, CUC, CUP, CVE,
1642
+ * CZK, DJF, DKK, DOP, DZD, EEK, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GGP, GHS, GIP, GMD, GNF, GTQ, GYD,
1643
+ * HKD, HNL, HRK, HTG, HUF, IDR, ILS, IMP, INR, IQD, IRR, ISK, JEP, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW,
1644
+ * KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LTL, LVL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRO, MTL,
1645
+ * MUR, MVR, MWK, MXN, MYR, MZN, NAD, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR,
1646
+ * RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, STD, SVC, SYP, SZL, THB, TJS, TMT,
1647
+ * TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VEF, VND, VUV, WST, XAF, XAG, XAU, XCD, XDR, XOF,
1648
+ * XPD, XPF, XPT, YER, ZAR, ZMK, ZMW, and ZWL. Any other provided currency symbol will result in a logged
1649
+ * warning and no other action taken by the SDK.
1650
+ */
1651
+ currency: string;
1652
+
1653
+ /**
1654
+ * The source the event is derived from. Cannot exceed 255 characters in length.
1655
+ */
1656
+ source: string;
1657
+ }
1658
+
1659
+ export interface CheckoutStartedEventProperties
1660
+ extends eCommerceEventProperties {
1661
+ /**
1662
+ * A unique identifier for the checkout. Cannot exceed 255 characters in length.
1663
+ */
1664
+ checkout_id: string;
1665
+
1666
+ /**
1667
+ * A unique identifier for the cart. If no value is passed, a default value is assumed
1668
+ * (shared across cart/checkout/order events) for user cart mapping.
1669
+ * Cannot exceed 255 characters in length.
1670
+ */
1671
+ cart_id?: string;
1672
+
1673
+ /**
1674
+ * The total monetary value of the cart (ex: 12.99).
1675
+ */
1676
+ total_value: number;
1677
+
1678
+ /**
1679
+ * The products associated with the checkout.
1680
+ */
1681
+ products: eCommerceProductProperties[];
1682
+
1683
+ /**
1684
+ * Additional metadata about the checkout. Keys are limited to 255 characters in length, cannot begin with a $ character,
1685
+ * and can only contain alphanumeric characters and punctuation. Total size of metadata cannot exceed 50KB.
1686
+ */
1687
+ metadata?: {
1688
+ checkout_url?: string;
1689
+ [key: string]: any;
1690
+ };
1691
+ }
1692
+
1693
+ export interface CartUpdatedEventProperties extends eCommerceEventProperties {
1694
+ /**
1695
+ * A unique identifier for the cart. If no value is passed, a default value is assumed
1696
+ * (shared across cart/checkout/order events) for user cart mapping.
1697
+ * Cannot exceed 255 characters in length.
1698
+ */
1699
+ cart_id: string;
1700
+
1701
+ /**
1702
+ * The total monetary value of the cart (ex: 12.99).
1703
+ */
1704
+ total_value: number;
1705
+
1706
+ /**
1707
+ * The products in the updated cart.
1708
+ */
1709
+ products: eCommerceProductProperties[];
1710
+
1711
+ /**
1712
+ * Additional metadata about the cart update. Keys are limited to 255 characters in length, cannot begin with a $ character,
1713
+ * and can only contain alphanumeric characters and punctuation. Total size of metadata cannot exceed 50KB.
1714
+ */
1715
+ metadata?: {
1716
+ [key: string]: any;
1717
+ };
1718
+ }
1719
+
1720
+ export interface ProductViewedEventProperties extends eCommerceEventProperties {
1721
+ /**
1722
+ * A unique identifier for the product that was viewed. Cannot exceed 255 characters in length.
1723
+ */
1724
+ product_id: string;
1725
+
1726
+ /**
1727
+ * The name of the product that was viewed. Cannot exceed 255 characters in length.
1728
+ */
1729
+ product_name: string;
1730
+
1731
+ /**
1732
+ * A unique identifier for the product variant that was viewed (ex: shirt_medium_blue). Cannot exceed 255 characters in length.
1733
+ */
1734
+ variant_id: string;
1735
+
1736
+ /**
1737
+ * The URL of the product image that was viewed. Cannot exceed 255 characters in length.
1738
+ */
1739
+ image_url?: string;
1740
+
1741
+ /**
1742
+ * The URL to the product page for more details. Cannot exceed 255 characters in length.
1743
+ */
1744
+ product_url?: string;
1745
+
1746
+ /**
1747
+ * The variant unit price of the product at the time of viewing.
1748
+ */
1749
+ price: number;
1750
+
1751
+ /**
1752
+ * Additional metadata about the product viewed. Keys are limited to 255 characters in length, cannot begin with a $ character,
1753
+ * and can only contain alphanumeric characters and punctuation. Total size of metadata cannot exceed 50KB.
1754
+ */
1755
+ metadata?: {
1756
+ /**
1757
+ * Shopify SKU, only applicable to Shopify integrations. Cannot exceed 255 characters in length.
1758
+ */
1759
+ sku?: string;
1760
+
1761
+ /**
1762
+ * A list of types for the product that was viewed. The `back_in_stock` and `price_drop` types can be used to trigger
1763
+ * back-in-stock and price drop notifications. Each type cannot exceed 255 characters in length.
1764
+ */
1765
+ type?: string[];
1766
+ [key: string]: any;
1767
+ };
1768
+ }
1769
+
1770
+ export interface OrderPlacedEventProperties extends eCommerceEventProperties {
1771
+ /**
1772
+ * A unique identifier for the order that was placed. Cannot exceed 255 characters in length.
1773
+ */
1774
+ order_id: string;
1775
+
1776
+ /**
1777
+ * A unique identifier for the cart. If no value is passed, a default value is assumed
1778
+ * (shared across cart/checkout/order events) for user cart mapping.
1779
+ * Cannot exceed 255 characters in length.
1780
+ */
1781
+ cart_id?: string;
1782
+
1783
+ /**
1784
+ * The total monetary value of the order (ex: 12.99).
1785
+ */
1786
+ total_value: number;
1787
+
1788
+ /**
1789
+ * The total amount of discounts applied to the order (ex: 12.99).
1790
+ */
1791
+ total_discounts?: number;
1792
+
1793
+ /**
1794
+ * A detailed list of discounts applied to the order.
1795
+ */
1796
+ discounts?: any[];
1797
+
1798
+ /**
1799
+ * The products in the order.
1800
+ */
1801
+ products: eCommerceProductProperties[];
1802
+
1803
+ /**
1804
+ * Additional metadata about the product viewed. Keys are limited to 255 characters in length, cannot begin with a $ character,
1805
+ * and can only contain alphanumeric characters and punctuation. Total size of metadata cannot exceed 50KB.
1806
+ */
1807
+ metadata?: {
1808
+ /**
1809
+ * The URL to view the status of the order. Cannot exceed 255 characters in length.
1810
+ */
1811
+ order_status_url?: string;
1812
+
1813
+ /**
1814
+ * A unique order number for the order placed, only applicable to Shopify integrations. Cannot exceed 255 characters in length.
1815
+ */
1816
+ order_number?: string;
1817
+
1818
+ /**
1819
+ * A list of tags associated with the order placed, only applicable to Shopify integrations. Each tag cannot exceed 255 characters in length.
1820
+ */
1821
+ tags?: string[];
1822
+
1823
+ /**
1824
+ * The site the order originated from (ex: Meta), only applicable to Shopify integrations. Cannot exceed 255 characters in length.
1825
+ */
1826
+ referring_site?: string;
1827
+
1828
+ /**
1829
+ * A list of payment system sources (ex: POS, mobile, etc.), only applicable to Shopify integrations.
1830
+ * Each payment gateway name cannot exceed 255 characters in length.
1831
+ */
1832
+ payment_gateway_names?: string[];
1833
+ [key: string]: any;
1834
+ };
1835
+ }
1836
+
1588
1837
  export class FeatureFlag {
1589
1838
  /** Indicates whether or not this feature flag is enabled. */
1590
1839
  enabled: boolean;
@@ -2023,7 +2272,7 @@ export function logBannerImpressions(
2023
2272
  ): boolean | undefined;
2024
2273
 
2025
2274
  /**
2026
- * Logs when user clicks on a Banner.
2275
+ * Logs when the user clicks on a Banner.
2027
2276
  * This is done automatically when you use Braze's display module and should only be called
2028
2277
  * if you're bypassing that and manually building the DOM for displaying banners in
2029
2278
  * your own code.
@@ -2171,7 +2420,7 @@ export function openSession(): void;
2171
2420
  * - Create a `service-worker.js` file with the content below and place it in the root directory of your website:
2172
2421
  *
2173
2422
  * ```
2174
- * self.importScripts('https://js.appboycdn.com/web-sdk/6.6/service-worker.js');
2423
+ * self.importScripts('https://js.appboycdn.com/web-sdk/6.7/service-worker.js');
2175
2424
  * ```
2176
2425
  *
2177
2426
  * For more details, see [Our Product Documentation](https://www.braze.com/docs/developer_guide/platform_integration_guides/web/push_notifications/integration).
@@ -2432,7 +2681,6 @@ export function logFeatureFlagImpression(
2432
2681
 
2433
2682
  /**
2434
2683
  * Requests banners by a list of placement IDs from the Braze backend.
2435
- * Note that this method can only be called once per session.
2436
2684
  *
2437
2685
  * @param placementIds - A list of placement IDs for banners.
2438
2686
  * @param successCallback - Callback that is invoked when the banners refresh request has been successfully completed.
@@ -2594,7 +2842,7 @@ export type InitializationOptions = {
2594
2842
  * lifecycle of, set this option to true and the Braze SDK will not register or unregister a service worker. If you set this
2595
2843
  * option to true, in order for push to function correctly you must register the service worker yourself BEFORE calling
2596
2844
  * `requestPushPermission`, and ensure that it contains Braze's service worker code, either with
2597
- * `self.importScripts('https://js.appboycdn.com/web-sdk/6.6/service-worker.js');` or by including the content
2845
+ * `self.importScripts('https://js.appboycdn.com/web-sdk/6.7/service-worker.js');` or by including the content
2598
2846
  * of that file directly. When this option is true, the `serviceWorkerLocation` option is irrelevant and is ignored.
2599
2847
  */
2600
2848
  manageServiceWorkerExternally?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@braze/web-sdk",
3
- "version": "6.6.0",
3
+ "version": "6.7.1",
4
4
  "description": "Braze SDK for web sites and other JS platforms.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -1,34 +1,35 @@
1
- const f = {
1
+ const p = {
2
2
  CustomEvent: "ce",
3
3
  Pr: "p",
4
- Sd: "pc",
4
+ Uc: "pc",
5
5
  ev: "ca",
6
- Kl: "i",
7
- Cl: "ie",
8
- Xt: "cci",
9
- Zt: "ccic",
10
- Lt: "ccc",
11
- Qt: "ccd",
12
- Sm: "ss",
6
+ gl: "i",
7
+ Ya: "ie",
8
+ ds: "cci",
9
+ js: "ccic",
10
+ os: "ccc",
11
+ cs: "ccd",
12
+ wm: "ss",
13
13
  hm: "se",
14
- zn: "si",
15
- Sn: "sc",
16
- Bn: "sbc",
14
+ Fn: "si",
15
+ On: "sc",
16
+ Xn: "sbc",
17
17
  tv: "sfe",
18
18
  om: "iec",
19
- jd: "lr",
20
- yd: "uae",
21
- $d: "lcaa",
22
- Dd: "lcar",
19
+ Oc: "lr",
20
+ Nc: "uae",
21
+ Kc: "lcaa",
22
+ Jc: "lcar",
23
23
  Zu: "inc",
24
24
  Qu: "add",
25
25
  Xu: "rem",
26
26
  Yu: "set",
27
27
  Vu: "ncam",
28
- qd: "sgu",
28
+ Wc: "sgu",
29
29
  xo: "ffi",
30
30
  ro: "bi",
31
- ut: "bc",
31
+ Dt: "bc",
32
+ Ft: "bd",
32
33
  },
33
- Ee = { nv: "content_cards_displayed" };
34
- export { f as EventTypes, Ee as InternalEventTypes };
34
+ Qe = { nv: "content_cards_displayed" };
35
+ export { p as EventTypes, Qe as InternalEventTypes };
@@ -1,5 +1,5 @@
1
- const P = {
2
- se: function () {
1
+ const V = {
2
+ de: function () {
3
3
  if ("undefined" != typeof window && window.crypto) {
4
4
  if ("function" == typeof window.crypto.randomUUID)
5
5
  return window.crypto.randomUUID();
@@ -26,4 +26,4 @@ const P = {
26
26
  return n() + n(!0) + n(!0) + n();
27
27
  },
28
28
  };
29
- export default P;
29
+ export default V;