vviinn-widgets 2.5.0 → 2.5.2

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 (330) hide show
  1. package/dist/cjs/Handler-176539c8.js +331 -0
  2. package/dist/{vviinn-widgets/app-globals-4fe0376b.js → cjs/app-globals-d15b4c2c.js} +15 -925
  3. package/{www/build/cropper-handler.entry.js → dist/cjs/cropper-handler.cjs.entry.js} +11 -7
  4. package/dist/{vviinn-widgets/customized-slots-5dbf778c.js → cjs/customized-slots-0c0d0665.js} +6 -3
  5. package/dist/cjs/highlight-box_22.cjs.entry.js +747 -0
  6. package/{www/build/imageSearch.store-3204bc99.js → dist/cjs/imageSearch.store-865c23f4.js} +11902 -11653
  7. package/{www/build/index-89e62050.js → dist/cjs/index-0eb3036a.js} +76 -698
  8. package/dist/cjs/index-0f5516a6.js +1354 -0
  9. package/dist/cjs/index-31b9cb7a.js +39 -0
  10. package/dist/cjs/index.cjs.js +2 -0
  11. package/dist/cjs/loader.cjs.js +23 -0
  12. package/dist/cjs/vviinn-carousel_3.cjs.entry.js +1174 -0
  13. package/dist/{vviinn-widgets/vviinn-error.entry.js → cjs/vviinn-error.cjs.entry.js} +8 -4
  14. package/{www/build/vviinn-preloader.entry.js → dist/cjs/vviinn-preloader.cjs.entry.js} +11 -10
  15. package/{www/build/vviinn-recommendations-sidebar.entry.js → dist/cjs/vviinn-recommendations-sidebar.cjs.entry.js} +12 -8
  16. package/dist/{vviinn-widgets/vviinn-vpr-button.entry.js → cjs/vviinn-vpr-button.cjs.entry.js} +9 -5
  17. package/dist/cjs/vviinn-vps-button.cjs.entry.js +43 -0
  18. package/{www/build/vviinn-vps-widget.entry.js → dist/cjs/vviinn-vps-widget.cjs.entry.js} +51 -49
  19. package/dist/cjs/vviinn-widgets.cjs.js +21 -0
  20. package/dist/collection/Image/error.js +14 -0
  21. package/dist/collection/Image/form.js +5 -0
  22. package/dist/collection/Image/fromFile.js +18 -0
  23. package/dist/collection/Image/imageToB64.js +9 -0
  24. package/dist/collection/Image/index.js +0 -0
  25. package/dist/collection/Image/renderPromise.js +6 -0
  26. package/dist/collection/Image/resizeImage.js +28 -0
  27. package/dist/collection/Image/sizing.js +39 -0
  28. package/dist/collection/Image/toFile.js +17 -0
  29. package/dist/collection/analytics/GAnalytics.js +32 -0
  30. package/dist/collection/analytics/GeneralAnalytics.js +9 -0
  31. package/dist/collection/analytics/GtagAnalytics.js +35 -0
  32. package/dist/collection/analytics/ProductAnalytics.js +1 -0
  33. package/dist/collection/campaign/Campaign.js +8 -0
  34. package/dist/collection/campaign/CampaignService.js +5 -0
  35. package/dist/collection/campaign/VCSCampaign.js +1 -0
  36. package/dist/collection/campaign/VCSCampaignResponse.js +1 -0
  37. package/dist/collection/campaign/VCSCampaignService.js +5 -0
  38. package/dist/collection/campaign/VPRCampaignResponse.js +1 -0
  39. package/dist/collection/campaign/VPRCampaignService.js +5 -0
  40. package/dist/collection/collection-manifest.json +43 -0
  41. package/dist/collection/components/customized-slots.js +47 -0
  42. package/dist/collection/components/image-search/image-view/highlight-box/highlight-box.css +71 -0
  43. package/dist/collection/components/image-search/image-view/highlight-box/highlight-box.js +25 -0
  44. package/dist/collection/components/image-search/image-view/image-cropper/cropper-handler/cropper-handler.css +49 -0
  45. package/dist/collection/components/image-search/image-view/image-cropper/cropper-handler/cropper-handler.js +64 -0
  46. package/dist/collection/components/image-search/image-view/image-cropper/image-cropper.css +33 -0
  47. package/{www/build/image-cropper.entry.js → dist/collection/components/image-search/image-view/image-cropper/image-cropper.js} +70 -33
  48. package/dist/collection/components/image-search/search-filters/search-filters.css +120 -0
  49. package/dist/collection/components/image-search/search-filters/search-filters.js +125 -0
  50. package/dist/collection/components/vviinn-carousel/vviinn-carousel.css +142 -0
  51. package/{www/build/vviinn-carousel.entry.js → dist/collection/components/vviinn-carousel/vviinn-carousel.js} +113 -18
  52. package/dist/collection/components/vviinn-error/vviinn-empty-results/vviinn-empty-results.css +7 -0
  53. package/dist/collection/components/vviinn-error/vviinn-empty-results/vviinn-empty-results.js +36 -0
  54. package/dist/collection/components/vviinn-error/vviinn-error.css +38 -0
  55. package/dist/collection/components/vviinn-error/vviinn-error.js +18 -0
  56. package/dist/collection/components/vviinn-error/vviinn-server-error/vviinn-server-error.css +3 -0
  57. package/dist/collection/components/vviinn-error/vviinn-server-error/vviinn-server-error.js +34 -0
  58. package/dist/collection/components/vviinn-error/vviinn-wrong-format/vviinn-wrong-format.css +3 -0
  59. package/dist/collection/components/vviinn-error/vviinn-wrong-format/vviinn-wrong-format.js +34 -0
  60. package/dist/collection/components/vviinn-example-images/vviinn-example-image/vviinn-example-image.css +34 -0
  61. package/dist/collection/components/vviinn-example-images/vviinn-example-image/vviinn-example-image.js +129 -0
  62. package/dist/collection/components/vviinn-example-images/vviinn-example-images.css +19 -0
  63. package/dist/collection/components/vviinn-example-images/vviinn-example-images.js +80 -0
  64. package/dist/{vviinn-widgets/index-bbcd6be9.js → collection/components/vviinn-icons/index.js} +11 -14
  65. package/dist/collection/components/vviinn-image-selector/vviinn-image-selector.css +25 -0
  66. package/dist/collection/components/vviinn-image-selector/vviinn-image-selector.js +64 -0
  67. package/dist/collection/components/vviinn-image-view/vviinn-detected-object/vviinn-detected-object.css +47 -0
  68. package/dist/collection/components/vviinn-image-view/vviinn-detected-object/vviinn-detected-object.js +100 -0
  69. package/dist/collection/components/vviinn-image-view/vviinn-image-view.css +31 -0
  70. package/dist/collection/components/vviinn-image-view/vviinn-image-view.js +61 -0
  71. package/dist/collection/components/vviinn-modal/vviinn-modal.css +105 -0
  72. package/dist/collection/components/vviinn-modal/vviinn-modal.js +98 -0
  73. package/dist/collection/components/vviinn-onboarding/onboarding-cards/onboarding-card.css +41 -0
  74. package/dist/collection/components/vviinn-onboarding/onboarding-cards/vviinn-onboarding-card-1/vviinn-onboarding-card-1.js +26 -0
  75. package/dist/collection/components/vviinn-onboarding/onboarding-cards/vviinn-onboarding-card-2/vviinn-onboarding-card-2.js +26 -0
  76. package/dist/collection/components/vviinn-onboarding/onboarding-cards/vviinn-onboarding-card-3/vviinn-onboarding-card-3.js +26 -0
  77. package/dist/collection/components/vviinn-onboarding/vviinn-onboarding.css +58 -0
  78. package/dist/collection/components/vviinn-onboarding/vviinn-onboarding.js +28 -0
  79. package/dist/collection/components/vviinn-overlay/vviinn-overlay.css +33 -0
  80. package/dist/collection/components/vviinn-overlay/vviinn-overlay.js +15 -0
  81. package/dist/collection/components/vviinn-overlayed-modal/vviinn-overlayed-modal.css +29 -0
  82. package/dist/collection/components/vviinn-overlayed-modal/vviinn-overlayed-modal.js +71 -0
  83. package/dist/collection/components/vviinn-preloader/vviinn-preloader.css +37 -0
  84. package/dist/collection/components/vviinn-preloader/vviinn-preloader.js +20 -0
  85. package/dist/collection/components/vviinn-privacy-badge/vviinn-privacy-badge.css +19 -0
  86. package/dist/collection/components/vviinn-privacy-badge/vviinn-privacy-badge.js +27 -0
  87. package/dist/collection/components/vviinn-product-card/render-helpers.js +32 -0
  88. package/dist/collection/components/vviinn-product-card/stories/args.js +73 -0
  89. package/dist/collection/components/vviinn-product-card/stories/decorators.js +51 -0
  90. package/dist/collection/components/vviinn-product-card/stories/vviinn-product-card.stories.js +105 -0
  91. package/dist/collection/components/vviinn-product-card/vviinn-product-card.css +95 -0
  92. package/dist/collection/components/vviinn-product-card/vviinn-product-card.js +462 -0
  93. package/dist/collection/components/vviinn-slider/arrow.js +11 -0
  94. package/dist/collection/components/vviinn-slider/vviinn-slide/vviinn-slide.css +4 -0
  95. package/dist/collection/components/vviinn-slider/vviinn-slide/vviinn-slide.js +15 -0
  96. package/dist/collection/components/vviinn-slider/vviinn-slider.css +109 -0
  97. package/dist/collection/components/vviinn-slider/vviinn-slider.js +181 -0
  98. package/dist/collection/components/vviinn-teaser/vviinn-teaser.css +14 -0
  99. package/dist/collection/components/vviinn-teaser/vviinn-teaser.js +29 -0
  100. package/dist/collection/components/vviinn-vpr-button/recommendations-sidebar/recommendations-sidebar.css +238 -0
  101. package/dist/collection/components/vviinn-vpr-button/recommendations-sidebar/recommendations-sidebar.js +200 -0
  102. package/dist/collection/components/vviinn-vpr-button/stories/args.js +207 -0
  103. package/dist/collection/components/vviinn-vpr-button/stories/vviinn-vpr-button.stories.js +89 -0
  104. package/dist/collection/components/vviinn-vpr-button/vviinn-vpr-button.css +35 -0
  105. package/dist/collection/components/vviinn-vpr-button/vviinn-vpr-button.js +156 -0
  106. package/dist/collection/components/vviinn-vpr-widget/stories/args.js +190 -0
  107. package/dist/collection/components/vviinn-vpr-widget/stories/decorators.js +29 -0
  108. package/dist/collection/components/vviinn-vpr-widget/stories/vviinn-vpr-widget.stories.js +212 -0
  109. package/dist/collection/components/vviinn-vpr-widget/token-helpers.js +11 -0
  110. package/dist/collection/components/vviinn-vpr-widget/vviinn-vpr-vidget.js +483 -0
  111. package/dist/collection/components/vviinn-vpr-widget/vviinn-vpr-widget.css +79 -0
  112. package/dist/collection/components/vviinn-vps-button/stories/vviinn-vps-button.stories.js +31 -0
  113. package/dist/collection/components/vviinn-vps-button/vviinn-vps-button.css +3 -0
  114. package/dist/collection/components/vviinn-vps-button/vviinn-vps-button.js +178 -0
  115. package/dist/collection/components/vviinn-vps-widget/stories/vviinn-vps-widget.stories.js +33 -0
  116. package/dist/collection/components/vviinn-vps-widget/vviinn-vps-widget.css +350 -0
  117. package/dist/collection/components/vviinn-vps-widget/vviinn-vps-widget.js +352 -0
  118. package/dist/collection/cropper/Cropper.js +1 -0
  119. package/dist/collection/cropper/Handler.js +61 -0
  120. package/dist/collection/dom/index.js +3 -0
  121. package/dist/collection/error.js +14 -0
  122. package/dist/collection/file/index.js +4 -0
  123. package/dist/collection/geometry/Clip.js +14 -0
  124. package/dist/collection/geometry/Point.js +32 -0
  125. package/dist/collection/geometry/Rectangle.js +95 -0
  126. package/dist/collection/geometry/RectangleAlt.js +1 -0
  127. package/dist/collection/geometry/Sized.js +8 -0
  128. package/dist/collection/global.js +19 -0
  129. package/dist/collection/index.js +1 -0
  130. package/dist/collection/interfaces/generated.js +5 -0
  131. package/dist/collection/interfaces/recommendation.js +1 -0
  132. package/dist/collection/network/apiClient.js +9 -0
  133. package/dist/collection/network/ion/File.js +14 -0
  134. package/dist/collection/network/ion/Form.js +64 -0
  135. package/dist/collection/network/ion/Link.js +8 -0
  136. package/dist/collection/network/ion/ValueObject.js +23 -0
  137. package/dist/collection/network/request.js +19 -0
  138. package/dist/collection/network/utils.js +37 -0
  139. package/dist/collection/openApi/index.js +27 -0
  140. package/dist/collection/recommendation/events.js +1 -0
  141. package/dist/collection/recommendation/recommendation.js +1 -0
  142. package/dist/collection/searchSession/searchSession.js +26 -0
  143. package/dist/collection/sentry.js +14 -0
  144. package/dist/collection/slider/GridMode.js +1 -0
  145. package/dist/collection/store/file-processing.js +13 -0
  146. package/dist/collection/store/imageSearch.store.js +138 -0
  147. package/dist/collection/store/store.js +3 -0
  148. package/dist/collection/store/tracking.store.js +3 -0
  149. package/dist/collection/stories/Button.js +21 -0
  150. package/dist/collection/stories/Button.stories.js +42 -0
  151. package/dist/collection/stories/Header.js +45 -0
  152. package/dist/collection/stories/Header.stories.js +15 -0
  153. package/dist/collection/stories/Page.js +61 -0
  154. package/dist/collection/stories/Page.stories.js +19 -0
  155. package/dist/collection/stories/assets/code-brackets.svg +1 -0
  156. package/dist/collection/stories/assets/colors.svg +1 -0
  157. package/dist/collection/stories/assets/comments.svg +1 -0
  158. package/dist/collection/stories/assets/direction.svg +1 -0
  159. package/dist/collection/stories/assets/flow.svg +1 -0
  160. package/dist/collection/stories/assets/plugin.svg +1 -0
  161. package/dist/collection/stories/assets/repo.svg +1 -0
  162. package/dist/collection/stories/assets/stackalt.svg +1 -0
  163. package/dist/collection/stories/image-selector.stories.js +6 -0
  164. package/dist/collection/stories/image-view.stories.js +6 -0
  165. package/dist/collection/stories/modal.stories.js +12 -0
  166. package/dist/collection/stories/onboarding.stories.js +11 -0
  167. package/dist/collection/stories/overlay.stories.js +5 -0
  168. package/dist/collection/stories/overlayedModal.stories.js +8 -0
  169. package/dist/collection/stories/privacy-badge.stories.js +11 -0
  170. package/dist/collection/stories/slider.stories.js +17 -0
  171. package/dist/collection/stories/teaser.stories.js +5 -0
  172. package/dist/collection/stories/vps-widget.stories.js +47 -0
  173. package/dist/collection/stories/vviinn-product.stories.js +19 -0
  174. package/dist/collection/tracking/event.js +3 -0
  175. package/dist/collection/tracking/filter.js +5 -0
  176. package/dist/collection/tracking/index.js +13 -0
  177. package/dist/collection/tracking/models.js +6 -0
  178. package/dist/collection/tracking/product.js +18 -0
  179. package/dist/collection/tracking/search.js +5 -0
  180. package/dist/collection/tracking/widget.js +10 -0
  181. package/dist/collection/utils/collections/collectionsUtils.js +5 -0
  182. package/dist/collection/utils/either.js +3 -0
  183. package/dist/collection/utils/enum/enumUtils.js +3 -0
  184. package/dist/collection/utils/event/Events.js +1 -0
  185. package/dist/collection/utils/number/index.js +4 -0
  186. package/dist/collection/utils/option/option.js +4 -0
  187. package/dist/collection/utils/semigroup/semigroupDiff.js +6 -0
  188. package/dist/collection/utils/token/tokenUtils.js +9 -0
  189. package/dist/esm/Handler-f9b8735c.js +309 -0
  190. package/{www/build/app-globals-4fe0376b.js → dist/esm/app-globals-6f6aa89e.js} +10 -922
  191. package/dist/{vviinn-widgets → esm}/cropper-handler.entry.js +2 -2
  192. package/{www/build/customized-slots-5dbf778c.js → dist/esm/customized-slots-6b427dda.js} +1 -1
  193. package/dist/esm/highlight-box_22.entry.js +722 -0
  194. package/dist/{vviinn-widgets/imageSearch.store-3204bc99.js → esm/imageSearch.store-0ae87235.js} +12070 -11855
  195. package/dist/{vviinn-widgets/index-89e62050.js → esm/index-2e296af4.js} +6 -639
  196. package/dist/esm/index-59f44eaa.js +1323 -0
  197. package/{www/build/index-bbcd6be9.js → dist/esm/index-ac05c460.js} +2 -4
  198. package/dist/esm/index.js +1 -0
  199. package/dist/esm/loader.js +19 -0
  200. package/dist/esm/polyfills/core-js.js +11 -0
  201. package/dist/esm/polyfills/css-shim.js +1 -0
  202. package/dist/esm/polyfills/dom.js +79 -0
  203. package/dist/esm/polyfills/es5-html-element.js +1 -0
  204. package/dist/esm/polyfills/index.js +34 -0
  205. package/dist/esm/polyfills/system.js +6 -0
  206. package/dist/esm/vviinn-carousel_3.entry.js +1168 -0
  207. package/{www/build → dist/esm}/vviinn-error.entry.js +1 -1
  208. package/dist/{vviinn-widgets → esm}/vviinn-preloader.entry.js +3 -6
  209. package/dist/{vviinn-widgets → esm}/vviinn-recommendations-sidebar.entry.js +2 -2
  210. package/{www/build → dist/esm}/vviinn-vpr-button.entry.js +2 -2
  211. package/dist/{vviinn-widgets → esm}/vviinn-vps-button.entry.js +3 -3
  212. package/dist/{vviinn-widgets → esm}/vviinn-vps-widget.entry.js +12 -14
  213. package/dist/esm/vviinn-widgets.js +19 -0
  214. package/dist/index.cjs.js +1 -0
  215. package/dist/index.js +1 -0
  216. package/dist/loader/cdn.js +3 -0
  217. package/dist/loader/index.cjs.js +3 -0
  218. package/dist/loader/index.d.ts +12 -0
  219. package/dist/loader/index.es2017.js +3 -0
  220. package/dist/loader/index.js +4 -0
  221. package/dist/loader/package.json +10 -0
  222. package/dist/types/components/vviinn-vpr-widget/vviinn-vpr-vidget.d.ts +1 -1
  223. package/dist/types/components/vviinn-vps-widget/vviinn-vps-widget.d.ts +1 -1
  224. package/dist/vviinn-widgets/index.esm.js +0 -1
  225. package/dist/vviinn-widgets/p-118ac907.js +1 -0
  226. package/dist/vviinn-widgets/p-11f61564.js +1 -0
  227. package/dist/vviinn-widgets/p-39fdc5c9.entry.js +1 -0
  228. package/dist/vviinn-widgets/p-762dc067.entry.js +1 -0
  229. package/dist/vviinn-widgets/p-7e2f542c.js +1 -0
  230. package/dist/vviinn-widgets/p-8d56e795.entry.js +1 -0
  231. package/dist/vviinn-widgets/p-8f955b15.entry.js +1 -0
  232. package/dist/vviinn-widgets/p-9654fe35.entry.js +1 -0
  233. package/dist/vviinn-widgets/p-9e5adc42.js +1 -0
  234. package/dist/vviinn-widgets/p-b3731705.entry.js +1 -0
  235. package/dist/vviinn-widgets/p-bad1809f.js +1 -0
  236. package/dist/vviinn-widgets/p-c36546fa.js +15 -0
  237. package/dist/vviinn-widgets/p-d991330b.entry.js +1 -0
  238. package/dist/vviinn-widgets/p-da9c933b.entry.js +1 -0
  239. package/dist/vviinn-widgets/p-ee46fc83.js +1 -0
  240. package/dist/vviinn-widgets/p-f41e25f0.entry.js +1 -0
  241. package/dist/vviinn-widgets/vviinn-widgets.css +1 -6
  242. package/dist/vviinn-widgets/vviinn-widgets.esm.js +1 -125
  243. package/package.json +1 -1
  244. package/www/build/index.esm.js +0 -1
  245. package/www/build/p-118ac907.js +1 -0
  246. package/www/build/p-11f61564.js +1 -0
  247. package/www/build/p-39fdc5c9.entry.js +1 -0
  248. package/www/build/p-762dc067.entry.js +1 -0
  249. package/www/build/p-7e2f542c.js +1 -0
  250. package/www/build/p-8d56e795.entry.js +1 -0
  251. package/www/build/p-8f955b15.entry.js +1 -0
  252. package/www/build/p-9654fe35.entry.js +1 -0
  253. package/www/build/p-9e5adc42.js +1 -0
  254. package/www/build/p-a67898be.css +1 -0
  255. package/www/build/p-b3731705.entry.js +1 -0
  256. package/www/build/p-bad1809f.js +1 -0
  257. package/www/build/p-c36546fa.js +15 -0
  258. package/www/build/p-cfd998c1.js +1 -0
  259. package/www/build/p-d991330b.entry.js +1 -0
  260. package/www/build/p-da9c933b.entry.js +1 -0
  261. package/www/build/p-ee46fc83.js +1 -0
  262. package/www/build/p-f41e25f0.entry.js +1 -0
  263. package/www/build/vviinn-widgets.css +1 -6
  264. package/www/build/vviinn-widgets.esm.js +1 -125
  265. package/www/index.html +1 -12
  266. package/dist/vviinn-widgets/Array-c4dc02db.js +0 -4295
  267. package/dist/vviinn-widgets/Handler-47db9890.js +0 -1428
  268. package/dist/vviinn-widgets/NonEmptyArray-65395d97.js +0 -4370
  269. package/dist/vviinn-widgets/css-shim-f0027935.js +0 -4
  270. package/dist/vviinn-widgets/dom-db0073f0.js +0 -73
  271. package/dist/vviinn-widgets/highlight-box.entry.js +0 -41
  272. package/dist/vviinn-widgets/image-cropper.entry.js +0 -118
  273. package/dist/vviinn-widgets/index-c8128606.js +0 -3010
  274. package/dist/vviinn-widgets/number-a80a4b3c.js +0 -1533
  275. package/dist/vviinn-widgets/search-filters.entry.js +0 -76
  276. package/dist/vviinn-widgets/shadow-css-c1fdfa9f.js +0 -389
  277. package/dist/vviinn-widgets/vviinn-carousel.entry.js +0 -210
  278. package/dist/vviinn-widgets/vviinn-detected-object.entry.js +0 -54
  279. package/dist/vviinn-widgets/vviinn-empty-results.entry.js +0 -16
  280. package/dist/vviinn-widgets/vviinn-example-image.entry.js +0 -38
  281. package/dist/vviinn-widgets/vviinn-example-images.entry.js +0 -28
  282. package/dist/vviinn-widgets/vviinn-image-selector.entry.js +0 -31
  283. package/dist/vviinn-widgets/vviinn-image-view.entry.js +0 -55
  284. package/dist/vviinn-widgets/vviinn-modal.entry.js +0 -30
  285. package/dist/vviinn-widgets/vviinn-onboarding-card-1.entry.js +0 -21
  286. package/dist/vviinn-widgets/vviinn-onboarding-card-2.entry.js +0 -21
  287. package/dist/vviinn-widgets/vviinn-onboarding-card-3.entry.js +0 -21
  288. package/dist/vviinn-widgets/vviinn-onboarding.entry.js +0 -20
  289. package/dist/vviinn-widgets/vviinn-overlay.entry.js +0 -15
  290. package/dist/vviinn-widgets/vviinn-overlayed-modal.entry.js +0 -18
  291. package/dist/vviinn-widgets/vviinn-privacy-badge.entry.js +0 -20
  292. package/dist/vviinn-widgets/vviinn-product-card.entry.js +0 -184
  293. package/dist/vviinn-widgets/vviinn-server-error.entry.js +0 -16
  294. package/dist/vviinn-widgets/vviinn-slide.entry.js +0 -15
  295. package/dist/vviinn-widgets/vviinn-slider.entry.js +0 -120
  296. package/dist/vviinn-widgets/vviinn-teaser.entry.js +0 -20
  297. package/dist/vviinn-widgets/vviinn-vpr-widget.entry.js +0 -4581
  298. package/dist/vviinn-widgets/vviinn-wrong-format.entry.js +0 -16
  299. package/www/build/Array-c4dc02db.js +0 -4295
  300. package/www/build/Handler-47db9890.js +0 -1428
  301. package/www/build/NonEmptyArray-65395d97.js +0 -4370
  302. package/www/build/css-shim-f0027935.js +0 -4
  303. package/www/build/dom-db0073f0.js +0 -73
  304. package/www/build/highlight-box.entry.js +0 -41
  305. package/www/build/index-c8128606.js +0 -3010
  306. package/www/build/number-a80a4b3c.js +0 -1533
  307. package/www/build/search-filters.entry.js +0 -76
  308. package/www/build/shadow-css-c1fdfa9f.js +0 -389
  309. package/www/build/vviinn-detected-object.entry.js +0 -54
  310. package/www/build/vviinn-empty-results.entry.js +0 -16
  311. package/www/build/vviinn-example-image.entry.js +0 -38
  312. package/www/build/vviinn-example-images.entry.js +0 -28
  313. package/www/build/vviinn-image-selector.entry.js +0 -31
  314. package/www/build/vviinn-image-view.entry.js +0 -55
  315. package/www/build/vviinn-modal.entry.js +0 -30
  316. package/www/build/vviinn-onboarding-card-1.entry.js +0 -21
  317. package/www/build/vviinn-onboarding-card-2.entry.js +0 -21
  318. package/www/build/vviinn-onboarding-card-3.entry.js +0 -21
  319. package/www/build/vviinn-onboarding.entry.js +0 -20
  320. package/www/build/vviinn-overlay.entry.js +0 -15
  321. package/www/build/vviinn-overlayed-modal.entry.js +0 -18
  322. package/www/build/vviinn-privacy-badge.entry.js +0 -20
  323. package/www/build/vviinn-product-card.entry.js +0 -184
  324. package/www/build/vviinn-server-error.entry.js +0 -16
  325. package/www/build/vviinn-slide.entry.js +0 -15
  326. package/www/build/vviinn-slider.entry.js +0 -120
  327. package/www/build/vviinn-teaser.entry.js +0 -20
  328. package/www/build/vviinn-vpr-widget.entry.js +0 -4581
  329. package/www/build/vviinn-vps-button.entry.js +0 -39
  330. package/www/build/vviinn-wrong-format.entry.js +0 -16
@@ -1,4 +1,4 @@
1
- import { a as commonjsGlobal, c as createCommonjsModule, g as getDefaultExportFromCjs, e as getAugmentedNamespace } from './NonEmptyArray-65395d97.js';
1
+ import { e as commonjsGlobal, h as createCommonjsModule } from './imageSearch.store-0ae87235.js';
2
2
 
3
3
  // Unique ID creation requires a high quality random # generator. In the browser we therefore
4
4
  // require the crypto API and do not support built-in fallback to lower quality random number
@@ -54,408 +54,6 @@ function stringify$1(arr) {
54
54
  return uuid;
55
55
  }
56
56
 
57
- //
58
- // Inspired by https://github.com/LiosK/UUID.js
59
- // and http://docs.python.org/library/uuid.html
60
-
61
- var _nodeId;
62
-
63
- var _clockseq; // Previous uuid creation time
64
-
65
-
66
- var _lastMSecs = 0;
67
- var _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
68
-
69
- function v1(options, buf, offset) {
70
- var i = buf && offset || 0;
71
- var b = buf || new Array(16);
72
- options = options || {};
73
- var node = options.node || _nodeId;
74
- var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
75
- // specified. We do this lazily to minimize issues related to insufficient
76
- // system entropy. See #189
77
-
78
- if (node == null || clockseq == null) {
79
- var seedBytes = options.random || (options.rng || rng)();
80
-
81
- if (node == null) {
82
- // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
83
- node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
84
- }
85
-
86
- if (clockseq == null) {
87
- // Per 4.2.2, randomize (14 bit) clockseq
88
- clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
89
- }
90
- } // UUID timestamps are 100 nano-second units since the Gregorian epoch,
91
- // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
92
- // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
93
- // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
94
-
95
-
96
- var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
97
- // cycle to simulate higher resolution clock
98
-
99
- var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
100
-
101
- var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
102
-
103
- if (dt < 0 && options.clockseq === undefined) {
104
- clockseq = clockseq + 1 & 0x3fff;
105
- } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
106
- // time interval
107
-
108
-
109
- if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
110
- nsecs = 0;
111
- } // Per 4.2.1.2 Throw error if too many uuids are requested
112
-
113
-
114
- if (nsecs >= 10000) {
115
- throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
116
- }
117
-
118
- _lastMSecs = msecs;
119
- _lastNSecs = nsecs;
120
- _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
121
-
122
- msecs += 12219292800000; // `time_low`
123
-
124
- var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
125
- b[i++] = tl >>> 24 & 0xff;
126
- b[i++] = tl >>> 16 & 0xff;
127
- b[i++] = tl >>> 8 & 0xff;
128
- b[i++] = tl & 0xff; // `time_mid`
129
-
130
- var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
131
- b[i++] = tmh >>> 8 & 0xff;
132
- b[i++] = tmh & 0xff; // `time_high_and_version`
133
-
134
- b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
135
-
136
- b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
137
-
138
- b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
139
-
140
- b[i++] = clockseq & 0xff; // `node`
141
-
142
- for (var n = 0; n < 6; ++n) {
143
- b[i + n] = node[n];
144
- }
145
-
146
- return buf || stringify$1(b);
147
- }
148
-
149
- function parse$1(uuid) {
150
- if (!validate(uuid)) {
151
- throw TypeError('Invalid UUID');
152
- }
153
-
154
- var v;
155
- var arr = new Uint8Array(16); // Parse ########-....-....-....-............
156
-
157
- arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;
158
- arr[1] = v >>> 16 & 0xff;
159
- arr[2] = v >>> 8 & 0xff;
160
- arr[3] = v & 0xff; // Parse ........-####-....-....-............
161
-
162
- arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;
163
- arr[5] = v & 0xff; // Parse ........-....-####-....-............
164
-
165
- arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;
166
- arr[7] = v & 0xff; // Parse ........-....-....-####-............
167
-
168
- arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;
169
- arr[9] = v & 0xff; // Parse ........-....-....-....-############
170
- // (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
171
-
172
- arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;
173
- arr[11] = v / 0x100000000 & 0xff;
174
- arr[12] = v >>> 24 & 0xff;
175
- arr[13] = v >>> 16 & 0xff;
176
- arr[14] = v >>> 8 & 0xff;
177
- arr[15] = v & 0xff;
178
- return arr;
179
- }
180
-
181
- function stringToBytes(str) {
182
- str = unescape(encodeURIComponent(str)); // UTF8 escape
183
-
184
- var bytes = [];
185
-
186
- for (var i = 0; i < str.length; ++i) {
187
- bytes.push(str.charCodeAt(i));
188
- }
189
-
190
- return bytes;
191
- }
192
-
193
- var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
194
- var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
195
- function v35 (name, version, hashfunc) {
196
- function generateUUID(value, namespace, buf, offset) {
197
- if (typeof value === 'string') {
198
- value = stringToBytes(value);
199
- }
200
-
201
- if (typeof namespace === 'string') {
202
- namespace = parse$1(namespace);
203
- }
204
-
205
- if (namespace.length !== 16) {
206
- throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
207
- } // Compute hash of namespace and value, Per 4.3
208
- // Future: Use spread syntax when supported on all platforms, e.g. `bytes =
209
- // hashfunc([...namespace, ... value])`
210
-
211
-
212
- var bytes = new Uint8Array(16 + value.length);
213
- bytes.set(namespace);
214
- bytes.set(value, namespace.length);
215
- bytes = hashfunc(bytes);
216
- bytes[6] = bytes[6] & 0x0f | version;
217
- bytes[8] = bytes[8] & 0x3f | 0x80;
218
-
219
- if (buf) {
220
- offset = offset || 0;
221
-
222
- for (var i = 0; i < 16; ++i) {
223
- buf[offset + i] = bytes[i];
224
- }
225
-
226
- return buf;
227
- }
228
-
229
- return stringify$1(bytes);
230
- } // Function#name is not settable on some platforms (#270)
231
-
232
-
233
- try {
234
- generateUUID.name = name; // eslint-disable-next-line no-empty
235
- } catch (err) {} // For CommonJS default export support
236
-
237
-
238
- generateUUID.DNS = DNS;
239
- generateUUID.URL = URL;
240
- return generateUUID;
241
- }
242
-
243
- /*
244
- * Browser-compatible JavaScript MD5
245
- *
246
- * Modification of JavaScript MD5
247
- * https://github.com/blueimp/JavaScript-MD5
248
- *
249
- * Copyright 2011, Sebastian Tschan
250
- * https://blueimp.net
251
- *
252
- * Licensed under the MIT license:
253
- * https://opensource.org/licenses/MIT
254
- *
255
- * Based on
256
- * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
257
- * Digest Algorithm, as defined in RFC 1321.
258
- * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009
259
- * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
260
- * Distributed under the BSD License
261
- * See http://pajhome.org.uk/crypt/md5 for more info.
262
- */
263
- function md5(bytes) {
264
- if (typeof bytes === 'string') {
265
- var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
266
-
267
- bytes = new Uint8Array(msg.length);
268
-
269
- for (var i = 0; i < msg.length; ++i) {
270
- bytes[i] = msg.charCodeAt(i);
271
- }
272
- }
273
-
274
- return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));
275
- }
276
- /*
277
- * Convert an array of little-endian words to an array of bytes
278
- */
279
-
280
-
281
- function md5ToHexEncodedArray(input) {
282
- var output = [];
283
- var length32 = input.length * 32;
284
- var hexTab = '0123456789abcdef';
285
-
286
- for (var i = 0; i < length32; i += 8) {
287
- var x = input[i >> 5] >>> i % 32 & 0xff;
288
- var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);
289
- output.push(hex);
290
- }
291
-
292
- return output;
293
- }
294
- /**
295
- * Calculate output length with padding and bit length
296
- */
297
-
298
-
299
- function getOutputLength(inputLength8) {
300
- return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;
301
- }
302
- /*
303
- * Calculate the MD5 of an array of little-endian words, and a bit length.
304
- */
305
-
306
-
307
- function wordsToMd5(x, len) {
308
- /* append padding */
309
- x[len >> 5] |= 0x80 << len % 32;
310
- x[getOutputLength(len) - 1] = len;
311
- var a = 1732584193;
312
- var b = -271733879;
313
- var c = -1732584194;
314
- var d = 271733878;
315
-
316
- for (var i = 0; i < x.length; i += 16) {
317
- var olda = a;
318
- var oldb = b;
319
- var oldc = c;
320
- var oldd = d;
321
- a = md5ff(a, b, c, d, x[i], 7, -680876936);
322
- d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);
323
- c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);
324
- b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);
325
- a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);
326
- d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);
327
- c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);
328
- b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);
329
- a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);
330
- d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);
331
- c = md5ff(c, d, a, b, x[i + 10], 17, -42063);
332
- b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);
333
- a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);
334
- d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);
335
- c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);
336
- b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);
337
- a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);
338
- d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);
339
- c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);
340
- b = md5gg(b, c, d, a, x[i], 20, -373897302);
341
- a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);
342
- d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);
343
- c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);
344
- b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);
345
- a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);
346
- d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);
347
- c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);
348
- b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);
349
- a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);
350
- d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);
351
- c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);
352
- b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);
353
- a = md5hh(a, b, c, d, x[i + 5], 4, -378558);
354
- d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);
355
- c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);
356
- b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);
357
- a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);
358
- d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);
359
- c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);
360
- b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);
361
- a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);
362
- d = md5hh(d, a, b, c, x[i], 11, -358537222);
363
- c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);
364
- b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);
365
- a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);
366
- d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);
367
- c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);
368
- b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);
369
- a = md5ii(a, b, c, d, x[i], 6, -198630844);
370
- d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);
371
- c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);
372
- b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);
373
- a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);
374
- d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);
375
- c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);
376
- b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);
377
- a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);
378
- d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);
379
- c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);
380
- b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);
381
- a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);
382
- d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);
383
- c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);
384
- b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);
385
- a = safeAdd(a, olda);
386
- b = safeAdd(b, oldb);
387
- c = safeAdd(c, oldc);
388
- d = safeAdd(d, oldd);
389
- }
390
-
391
- return [a, b, c, d];
392
- }
393
- /*
394
- * Convert an array bytes to an array of little-endian words
395
- * Characters >255 have their high-byte silently ignored.
396
- */
397
-
398
-
399
- function bytesToWords(input) {
400
- if (input.length === 0) {
401
- return [];
402
- }
403
-
404
- var length8 = input.length * 8;
405
- var output = new Uint32Array(getOutputLength(length8));
406
-
407
- for (var i = 0; i < length8; i += 8) {
408
- output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;
409
- }
410
-
411
- return output;
412
- }
413
- /*
414
- * Add integers, wrapping at 2^32. This uses 16-bit operations internally
415
- * to work around bugs in some JS interpreters.
416
- */
417
-
418
-
419
- function safeAdd(x, y) {
420
- var lsw = (x & 0xffff) + (y & 0xffff);
421
- var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
422
- return msw << 16 | lsw & 0xffff;
423
- }
424
- /*
425
- * Bitwise rotate a 32-bit number to the left.
426
- */
427
-
428
-
429
- function bitRotateLeft(num, cnt) {
430
- return num << cnt | num >>> 32 - cnt;
431
- }
432
- /*
433
- * These functions implement the four basic operations the algorithm uses.
434
- */
435
-
436
-
437
- function md5cmn(q, a, b, x, s, t) {
438
- return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);
439
- }
440
-
441
- function md5ff(a, b, c, d, x, s, t) {
442
- return md5cmn(b & c | ~b & d, a, b, x, s, t);
443
- }
444
-
445
- function md5gg(a, b, c, d, x, s, t) {
446
- return md5cmn(b & d | c & ~d, a, b, x, s, t);
447
- }
448
-
449
- function md5hh(a, b, c, d, x, s, t) {
450
- return md5cmn(b ^ c ^ d, a, b, x, s, t);
451
- }
452
-
453
- function md5ii(a, b, c, d, x, s, t) {
454
- return md5cmn(c ^ (b | ~d), a, b, x, s, t);
455
- }
456
-
457
- var v3 = v35('v3', 0x30, md5);
458
-
459
57
  function v4(options, buf, offset) {
460
58
  options = options || {};
461
59
  var rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
@@ -476,115 +74,6 @@ function v4(options, buf, offset) {
476
74
  return stringify$1(rnds);
477
75
  }
478
76
 
479
- // Adapted from Chris Veness' SHA1 code at
480
- // http://www.movable-type.co.uk/scripts/sha1.html
481
- function f(s, x, y, z) {
482
- switch (s) {
483
- case 0:
484
- return x & y ^ ~x & z;
485
-
486
- case 1:
487
- return x ^ y ^ z;
488
-
489
- case 2:
490
- return x & y ^ x & z ^ y & z;
491
-
492
- case 3:
493
- return x ^ y ^ z;
494
- }
495
- }
496
-
497
- function ROTL(x, n) {
498
- return x << n | x >>> 32 - n;
499
- }
500
-
501
- function sha1(bytes) {
502
- var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
503
- var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];
504
-
505
- if (typeof bytes === 'string') {
506
- var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
507
-
508
- bytes = [];
509
-
510
- for (var i = 0; i < msg.length; ++i) {
511
- bytes.push(msg.charCodeAt(i));
512
- }
513
- } else if (!Array.isArray(bytes)) {
514
- // Convert Array-like to Array
515
- bytes = Array.prototype.slice.call(bytes);
516
- }
517
-
518
- bytes.push(0x80);
519
- var l = bytes.length / 4 + 2;
520
- var N = Math.ceil(l / 16);
521
- var M = new Array(N);
522
-
523
- for (var _i = 0; _i < N; ++_i) {
524
- var arr = new Uint32Array(16);
525
-
526
- for (var j = 0; j < 16; ++j) {
527
- arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];
528
- }
529
-
530
- M[_i] = arr;
531
- }
532
-
533
- M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);
534
- M[N - 1][14] = Math.floor(M[N - 1][14]);
535
- M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;
536
-
537
- for (var _i2 = 0; _i2 < N; ++_i2) {
538
- var W = new Uint32Array(80);
539
-
540
- for (var t = 0; t < 16; ++t) {
541
- W[t] = M[_i2][t];
542
- }
543
-
544
- for (var _t = 16; _t < 80; ++_t) {
545
- W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);
546
- }
547
-
548
- var a = H[0];
549
- var b = H[1];
550
- var c = H[2];
551
- var d = H[3];
552
- var e = H[4];
553
-
554
- for (var _t2 = 0; _t2 < 80; ++_t2) {
555
- var s = Math.floor(_t2 / 20);
556
- var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;
557
- e = d;
558
- d = c;
559
- c = ROTL(b, 30) >>> 0;
560
- b = a;
561
- a = T;
562
- }
563
-
564
- H[0] = H[0] + a >>> 0;
565
- H[1] = H[1] + b >>> 0;
566
- H[2] = H[2] + c >>> 0;
567
- H[3] = H[3] + d >>> 0;
568
- H[4] = H[4] + e >>> 0;
569
- }
570
-
571
- return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];
572
- }
573
-
574
- var v5 = v35('v5', 0x50, sha1);
575
-
576
- const nil = '00000000-0000-0000-0000-000000000000';
577
-
578
- function version(uuid) {
579
- if (!validate(uuid)) {
580
- throw TypeError('Invalid UUID');
581
- }
582
-
583
- return parseInt(uuid.substr(14, 1), 16);
584
- }
585
-
586
- 'use strict';
587
-
588
77
  /**
589
78
  * Check if we're required to add a port number.
590
79
  *
@@ -622,8 +111,6 @@ var requiresPort = function required(port, protocol) {
622
111
  return port !== 0;
623
112
  };
624
113
 
625
- 'use strict';
626
-
627
114
  var has = Object.prototype.hasOwnProperty
628
115
  , undef;
629
116
 
@@ -746,8 +233,6 @@ var querystringify_1 = {
746
233
  parse: parse
747
234
  };
748
235
 
749
- 'use strict';
750
-
751
236
  var controlOrWhitespace = /^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/
752
237
  , CRHTLF = /[\n\r\t]/g
753
238
  , slashes = /^[A-Za-z][A-Za-z0-9+-.]*:\/\//
@@ -1335,7 +820,6 @@ Url.qs = querystringify_1;
1335
820
  var urlParse = Url;
1336
821
 
1337
822
  var rxjsStub = createCommonjsModule(function (module, exports) {
1338
- "use strict";
1339
823
  Object.defineProperty(exports, "__esModule", { value: true });
1340
824
  exports.map = exports.mergeMap = exports.of = exports.from = exports.Observable = void 0;
1341
825
  var Observable = (function () {
@@ -1370,8 +854,6 @@ exports.map = map;
1370
854
  //# sourceMappingURL=rxjsStub.js.map
1371
855
  });
1372
856
 
1373
- const rxjsStub$1 = /*@__PURE__*/getDefaultExportFromCjs(rxjsStub);
1374
-
1375
857
  var global =
1376
858
  (typeof globalThis !== 'undefined' && globalThis) ||
1377
859
  (typeof self !== 'undefined' && self) ||
@@ -1871,7 +1353,7 @@ try {
1871
1353
  DOMException.prototype.constructor = DOMException;
1872
1354
  }
1873
1355
 
1874
- function fetch$2(input, init) {
1356
+ function fetch$1(input, init) {
1875
1357
  return new Promise(function(resolve, reject) {
1876
1358
  var request = new Request(input, init);
1877
1359
 
@@ -1969,28 +1451,16 @@ function fetch$2(input, init) {
1969
1451
  })
1970
1452
  }
1971
1453
 
1972
- fetch$2.polyfill = true;
1454
+ fetch$1.polyfill = true;
1973
1455
 
1974
1456
  if (!global.fetch) {
1975
- global.fetch = fetch$2;
1457
+ global.fetch = fetch$1;
1976
1458
  global.Headers = Headers;
1977
1459
  global.Request = Request;
1978
1460
  global.Response = Response;
1979
1461
  }
1980
1462
 
1981
- const fetch$3 = /*#__PURE__*/Object.freeze({
1982
- __proto__: null,
1983
- Headers: Headers,
1984
- Request: Request,
1985
- Response: Response,
1986
- get DOMException () { return DOMException; },
1987
- fetch: fetch$2
1988
- });
1989
-
1990
- const fetch$1 = /*@__PURE__*/getAugmentedNamespace(fetch$3);
1991
-
1992
1463
  var isomorphicFetch = createCommonjsModule(function (module, exports) {
1993
- "use strict";
1994
1464
  Object.defineProperty(exports, "__esModule", { value: true });
1995
1465
  exports.IsomorphicFetchHttpLibrary = void 0;
1996
1466
 
@@ -2026,10 +1496,7 @@ exports.IsomorphicFetchHttpLibrary = IsomorphicFetchHttpLibrary;
2026
1496
  //# sourceMappingURL=isomorphic-fetch.js.map
2027
1497
  });
2028
1498
 
2029
- const isomorphicFetch$1 = /*@__PURE__*/getDefaultExportFromCjs(isomorphicFetch);
2030
-
2031
1499
  var http = createCommonjsModule(function (module, exports) {
2032
- "use strict";
2033
1500
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2034
1501
  var extendStatics = function (d, b) {
2035
1502
  extendStatics = Object.setPrototypeOf ||
@@ -2100,7 +1567,6 @@ exports.wrapHttpLibrary = exports.ResponseContext = exports.SelfDecodingBody = e
2100
1567
 
2101
1568
 
2102
1569
  __exportStar(isomorphicFetch, exports);
2103
- var HttpMethod;
2104
1570
  (function (HttpMethod) {
2105
1571
  HttpMethod["GET"] = "GET";
2106
1572
  HttpMethod["HEAD"] = "HEAD";
@@ -2111,7 +1577,7 @@ var HttpMethod;
2111
1577
  HttpMethod["OPTIONS"] = "OPTIONS";
2112
1578
  HttpMethod["TRACE"] = "TRACE";
2113
1579
  HttpMethod["PATCH"] = "PATCH";
2114
- })(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));
1580
+ })(exports.HttpMethod || (exports.HttpMethod = {}));
2115
1581
  var HttpException = (function (_super) {
2116
1582
  __extends(HttpException, _super);
2117
1583
  function HttpException(msg) {
@@ -2271,10 +1737,7 @@ exports.wrapHttpLibrary = wrapHttpLibrary;
2271
1737
  //# sourceMappingURL=http.js.map
2272
1738
  });
2273
1739
 
2274
- const http$1 = /*@__PURE__*/getDefaultExportFromCjs(http);
2275
-
2276
1740
  var auth = createCommonjsModule(function (module, exports) {
2277
- "use strict";
2278
1741
  var __awaiter = (commonjsGlobal && commonjsGlobal.__awaiter) || function (thisArg, _arguments, P, generator) {
2279
1742
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
2280
1743
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -2355,10 +1818,7 @@ exports.configureAuthMethods = configureAuthMethods;
2355
1818
  //# sourceMappingURL=auth.js.map
2356
1819
  });
2357
1820
 
2358
- const auth$1 = /*@__PURE__*/getDefaultExportFromCjs(auth);
2359
-
2360
1821
  var ErrorObject_1 = createCommonjsModule(function (module, exports) {
2361
- "use strict";
2362
1822
  Object.defineProperty(exports, "__esModule", { value: true });
2363
1823
  exports.ErrorObject = void 0;
2364
1824
  var ErrorObject = (function () {
@@ -2418,10 +1878,7 @@ exports.ErrorObject = ErrorObject;
2418
1878
  //# sourceMappingURL=ErrorObject.js.map
2419
1879
  });
2420
1880
 
2421
- const ErrorObject = /*@__PURE__*/getDefaultExportFromCjs(ErrorObject_1);
2422
-
2423
1881
  var ErrorResponse_1 = createCommonjsModule(function (module, exports) {
2424
- "use strict";
2425
1882
  Object.defineProperty(exports, "__esModule", { value: true });
2426
1883
  exports.ErrorResponse = void 0;
2427
1884
  var ErrorResponse = (function () {
@@ -2457,10 +1914,7 @@ exports.ErrorResponse = ErrorResponse;
2457
1914
  //# sourceMappingURL=ErrorResponse.js.map
2458
1915
  });
2459
1916
 
2460
- const ErrorResponse = /*@__PURE__*/getDefaultExportFromCjs(ErrorResponse_1);
2461
-
2462
1917
  var Event_1 = createCommonjsModule(function (module, exports) {
2463
- "use strict";
2464
1918
  Object.defineProperty(exports, "__esModule", { value: true });
2465
1919
  exports.Event = void 0;
2466
1920
  var Event = (function () {
@@ -2491,10 +1945,7 @@ exports.Event = Event;
2491
1945
  //# sourceMappingURL=Event.js.map
2492
1946
  });
2493
1947
 
2494
- const Event = /*@__PURE__*/getDefaultExportFromCjs(Event_1);
2495
-
2496
1948
  var EventConfirmation_1 = createCommonjsModule(function (module, exports) {
2497
- "use strict";
2498
1949
  Object.defineProperty(exports, "__esModule", { value: true });
2499
1950
  exports.EventConfirmation = void 0;
2500
1951
  var EventConfirmation = (function () {
@@ -2518,18 +1969,12 @@ exports.EventConfirmation = EventConfirmation;
2518
1969
  //# sourceMappingURL=EventConfirmation.js.map
2519
1970
  });
2520
1971
 
2521
- const EventConfirmation = /*@__PURE__*/getDefaultExportFromCjs(EventConfirmation_1);
2522
-
2523
1972
  var FilterAction = createCommonjsModule(function (module, exports) {
2524
- "use strict";
2525
1973
  Object.defineProperty(exports, "__esModule", { value: true });
2526
1974
  //# sourceMappingURL=FilterAction.js.map
2527
1975
  });
2528
1976
 
2529
- const FilterAction$1 = /*@__PURE__*/getDefaultExportFromCjs(FilterAction);
2530
-
2531
1977
  var FilterEvent_1 = createCommonjsModule(function (module, exports) {
2532
- "use strict";
2533
1978
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2534
1979
  var extendStatics = function (d, b) {
2535
1980
  extendStatics = Object.setPrototypeOf ||
@@ -2585,10 +2030,7 @@ exports.FilterEvent = FilterEvent;
2585
2030
  //# sourceMappingURL=FilterEvent.js.map
2586
2031
  });
2587
2032
 
2588
- const FilterEvent = /*@__PURE__*/getDefaultExportFromCjs(FilterEvent_1);
2589
-
2590
2033
  var FilterEventAllOf_1 = createCommonjsModule(function (module, exports) {
2591
- "use strict";
2592
2034
  Object.defineProperty(exports, "__esModule", { value: true });
2593
2035
  exports.FilterEventAllOf = void 0;
2594
2036
  var FilterEventAllOf = (function () {
@@ -2624,18 +2066,12 @@ exports.FilterEventAllOf = FilterEventAllOf;
2624
2066
  //# sourceMappingURL=FilterEventAllOf.js.map
2625
2067
  });
2626
2068
 
2627
- const FilterEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(FilterEventAllOf_1);
2628
-
2629
2069
  var FilterKind = createCommonjsModule(function (module, exports) {
2630
- "use strict";
2631
2070
  Object.defineProperty(exports, "__esModule", { value: true });
2632
2071
  //# sourceMappingURL=FilterKind.js.map
2633
2072
  });
2634
2073
 
2635
- const FilterKind$1 = /*@__PURE__*/getDefaultExportFromCjs(FilterKind);
2636
-
2637
2074
  var ProductClickEvent_1 = createCommonjsModule(function (module, exports) {
2638
- "use strict";
2639
2075
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2640
2076
  var extendStatics = function (d, b) {
2641
2077
  extendStatics = Object.setPrototypeOf ||
@@ -2691,10 +2127,7 @@ exports.ProductClickEvent = ProductClickEvent;
2691
2127
  //# sourceMappingURL=ProductClickEvent.js.map
2692
2128
  });
2693
2129
 
2694
- const ProductClickEvent = /*@__PURE__*/getDefaultExportFromCjs(ProductClickEvent_1);
2695
-
2696
2130
  var ProductViewEvent_1 = createCommonjsModule(function (module, exports) {
2697
- "use strict";
2698
2131
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2699
2132
  var extendStatics = function (d, b) {
2700
2133
  extendStatics = Object.setPrototypeOf ||
@@ -2750,10 +2183,7 @@ exports.ProductViewEvent = ProductViewEvent;
2750
2183
  //# sourceMappingURL=ProductViewEvent.js.map
2751
2184
  });
2752
2185
 
2753
- const ProductViewEvent = /*@__PURE__*/getDefaultExportFromCjs(ProductViewEvent_1);
2754
-
2755
2186
  var ProductViewEventAllOf_1 = createCommonjsModule(function (module, exports) {
2756
- "use strict";
2757
2187
  Object.defineProperty(exports, "__esModule", { value: true });
2758
2188
  exports.ProductViewEventAllOf = void 0;
2759
2189
  var ProductViewEventAllOf = (function () {
@@ -2789,18 +2219,12 @@ exports.ProductViewEventAllOf = ProductViewEventAllOf;
2789
2219
  //# sourceMappingURL=ProductViewEventAllOf.js.map
2790
2220
  });
2791
2221
 
2792
- const ProductViewEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(ProductViewEventAllOf_1);
2793
-
2794
2222
  var SearchArea = createCommonjsModule(function (module, exports) {
2795
- "use strict";
2796
2223
  Object.defineProperty(exports, "__esModule", { value: true });
2797
2224
  //# sourceMappingURL=SearchArea.js.map
2798
2225
  });
2799
2226
 
2800
- const SearchArea$1 = /*@__PURE__*/getDefaultExportFromCjs(SearchArea);
2801
-
2802
2227
  var SearchEvent_1 = createCommonjsModule(function (module, exports) {
2803
- "use strict";
2804
2228
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2805
2229
  var extendStatics = function (d, b) {
2806
2230
  extendStatics = Object.setPrototypeOf ||
@@ -2856,10 +2280,7 @@ exports.SearchEvent = SearchEvent;
2856
2280
  //# sourceMappingURL=SearchEvent.js.map
2857
2281
  });
2858
2282
 
2859
- const SearchEvent = /*@__PURE__*/getDefaultExportFromCjs(SearchEvent_1);
2860
-
2861
2283
  var SearchEventAllOf_1 = createCommonjsModule(function (module, exports) {
2862
- "use strict";
2863
2284
  Object.defineProperty(exports, "__esModule", { value: true });
2864
2285
  exports.SearchEventAllOf = void 0;
2865
2286
  var SearchEventAllOf = (function () {
@@ -2895,34 +2316,22 @@ exports.SearchEventAllOf = SearchEventAllOf;
2895
2316
  //# sourceMappingURL=SearchEventAllOf.js.map
2896
2317
  });
2897
2318
 
2898
- const SearchEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(SearchEventAllOf_1);
2899
-
2900
2319
  var SearchImageSource = createCommonjsModule(function (module, exports) {
2901
- "use strict";
2902
2320
  Object.defineProperty(exports, "__esModule", { value: true });
2903
2321
  //# sourceMappingURL=SearchImageSource.js.map
2904
2322
  });
2905
2323
 
2906
- const SearchImageSource$1 = /*@__PURE__*/getDefaultExportFromCjs(SearchImageSource);
2907
-
2908
2324
  var Widget = createCommonjsModule(function (module, exports) {
2909
- "use strict";
2910
2325
  Object.defineProperty(exports, "__esModule", { value: true });
2911
2326
  //# sourceMappingURL=Widget.js.map
2912
2327
  });
2913
2328
 
2914
- const Widget$1 = /*@__PURE__*/getDefaultExportFromCjs(Widget);
2915
-
2916
2329
  var WidgetAction = createCommonjsModule(function (module, exports) {
2917
- "use strict";
2918
2330
  Object.defineProperty(exports, "__esModule", { value: true });
2919
2331
  //# sourceMappingURL=WidgetAction.js.map
2920
2332
  });
2921
2333
 
2922
- const WidgetAction$1 = /*@__PURE__*/getDefaultExportFromCjs(WidgetAction);
2923
-
2924
2334
  var WidgetEvent_1 = createCommonjsModule(function (module, exports) {
2925
- "use strict";
2926
2335
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
2927
2336
  var extendStatics = function (d, b) {
2928
2337
  extendStatics = Object.setPrototypeOf ||
@@ -2972,10 +2381,7 @@ exports.WidgetEvent = WidgetEvent;
2972
2381
  //# sourceMappingURL=WidgetEvent.js.map
2973
2382
  });
2974
2383
 
2975
- const WidgetEvent = /*@__PURE__*/getDefaultExportFromCjs(WidgetEvent_1);
2976
-
2977
2384
  var WidgetEventAllOf_1 = createCommonjsModule(function (module, exports) {
2978
- "use strict";
2979
2385
  Object.defineProperty(exports, "__esModule", { value: true });
2980
2386
  exports.WidgetEventAllOf = void 0;
2981
2387
  var WidgetEventAllOf = (function () {
@@ -3005,10 +2411,7 @@ exports.WidgetEventAllOf = WidgetEventAllOf;
3005
2411
  //# sourceMappingURL=WidgetEventAllOf.js.map
3006
2412
  });
3007
2413
 
3008
- const WidgetEventAllOf = /*@__PURE__*/getDefaultExportFromCjs(WidgetEventAllOf_1);
3009
-
3010
2414
  var all = createCommonjsModule(function (module, exports) {
3011
- "use strict";
3012
2415
  var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3013
2416
  if (k2 === undefined) k2 = k;
3014
2417
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -3046,10 +2449,7 @@ __exportStar(WidgetEventAllOf_1, exports);
3046
2449
  //# sourceMappingURL=all.js.map
3047
2450
  });
3048
2451
 
3049
- const all$1 = /*@__PURE__*/getDefaultExportFromCjs(all);
3050
-
3051
2452
  var middleware = createCommonjsModule(function (module, exports) {
3052
- "use strict";
3053
2453
  Object.defineProperty(exports, "__esModule", { value: true });
3054
2454
  exports.PromiseMiddlewareWrapper = void 0;
3055
2455
 
@@ -3069,10 +2469,7 @@ exports.PromiseMiddlewareWrapper = PromiseMiddlewareWrapper;
3069
2469
  //# sourceMappingURL=middleware.js.map
3070
2470
  });
3071
2471
 
3072
- const middleware$1 = /*@__PURE__*/getDefaultExportFromCjs(middleware);
3073
-
3074
2472
  var servers = createCommonjsModule(function (module, exports) {
3075
- "use strict";
3076
2473
  Object.defineProperty(exports, "__esModule", { value: true });
3077
2474
  exports.servers = exports.server2 = exports.server1 = exports.ServerConfiguration = void 0;
3078
2475
 
@@ -3107,10 +2504,7 @@ exports.servers = [exports.server1, exports.server2];
3107
2504
  //# sourceMappingURL=servers.js.map
3108
2505
  });
3109
2506
 
3110
- const servers$1 = /*@__PURE__*/getDefaultExportFromCjs(servers);
3111
-
3112
2507
  var configuration = createCommonjsModule(function (module, exports) {
3113
- "use strict";
3114
2508
  Object.defineProperty(exports, "__esModule", { value: true });
3115
2509
  exports.createConfiguration = void 0;
3116
2510
 
@@ -3134,10 +2528,7 @@ exports.createConfiguration = createConfiguration;
3134
2528
  //# sourceMappingURL=configuration.js.map
3135
2529
  });
3136
2530
 
3137
- const configuration$1 = /*@__PURE__*/getDefaultExportFromCjs(configuration);
3138
-
3139
2531
  var exception = createCommonjsModule(function (module, exports) {
3140
- "use strict";
3141
2532
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
3142
2533
  var extendStatics = function (d, b) {
3143
2534
  extendStatics = Object.setPrototypeOf ||
@@ -3171,10 +2562,7 @@ exports.ApiException = ApiException;
3171
2562
  //# sourceMappingURL=exception.js.map
3172
2563
  });
3173
2564
 
3174
- const exception$1 = /*@__PURE__*/getDefaultExportFromCjs(exception);
3175
-
3176
2565
  var baseapi = createCommonjsModule(function (module, exports) {
3177
- "use strict";
3178
2566
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
3179
2567
  var extendStatics = function (d, b) {
3180
2568
  extendStatics = Object.setPrototypeOf ||
@@ -3205,7 +2593,6 @@ var BaseAPIRequestFactory = (function () {
3205
2593
  return BaseAPIRequestFactory;
3206
2594
  }());
3207
2595
  exports.BaseAPIRequestFactory = BaseAPIRequestFactory;
3208
- ;
3209
2596
  var RequiredError = (function (_super) {
3210
2597
  __extends(RequiredError, _super);
3211
2598
  function RequiredError(api, method, field) {
@@ -3222,10 +2609,7 @@ exports.RequiredError = RequiredError;
3222
2609
  //# sourceMappingURL=baseapi.js.map
3223
2610
  });
3224
2611
 
3225
- const baseapi$1 = /*@__PURE__*/getDefaultExportFromCjs(baseapi);
3226
-
3227
2612
  var ObjectSerializer_1 = createCommonjsModule(function (module, exports) {
3228
- "use strict";
3229
2613
  var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3230
2614
  if (k2 === undefined) k2 = k;
3231
2615
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -3482,10 +2866,7 @@ exports.ObjectSerializer = ObjectSerializer;
3482
2866
  //# sourceMappingURL=ObjectSerializer.js.map
3483
2867
  });
3484
2868
 
3485
- const ObjectSerializer = /*@__PURE__*/getDefaultExportFromCjs(ObjectSerializer_1);
3486
-
3487
2869
  var util = createCommonjsModule(function (module, exports) {
3488
- "use strict";
3489
2870
  Object.defineProperty(exports, "__esModule", { value: true });
3490
2871
  exports.canConsumeForm = exports.isCodeInRange = void 0;
3491
2872
  function isCodeInRange(codeRange, code) {
@@ -3516,10 +2897,7 @@ exports.canConsumeForm = canConsumeForm;
3516
2897
  //# sourceMappingURL=util.js.map
3517
2898
  });
3518
2899
 
3519
- const util$1 = /*@__PURE__*/getDefaultExportFromCjs(util);
3520
-
3521
2900
  var DefaultApi = createCommonjsModule(function (module, exports) {
3522
- "use strict";
3523
2901
  var __extends = (commonjsGlobal && commonjsGlobal.__extends) || (function () {
3524
2902
  var extendStatics = function (d, b) {
3525
2903
  extendStatics = Object.setPrototypeOf ||
@@ -3672,10 +3050,7 @@ exports.DefaultApiResponseProcessor = DefaultApiResponseProcessor;
3672
3050
  //# sourceMappingURL=DefaultApi.js.map
3673
3051
  });
3674
3052
 
3675
- const DefaultApi$1 = /*@__PURE__*/getDefaultExportFromCjs(DefaultApi);
3676
-
3677
3053
  var ObservableAPI = createCommonjsModule(function (module, exports) {
3678
- "use strict";
3679
3054
  Object.defineProperty(exports, "__esModule", { value: true });
3680
3055
  exports.ObservableDefaultApi = void 0;
3681
3056
 
@@ -3717,10 +3092,7 @@ exports.ObservableDefaultApi = ObservableDefaultApi;
3717
3092
  //# sourceMappingURL=ObservableAPI.js.map
3718
3093
  });
3719
3094
 
3720
- const ObservableAPI$1 = /*@__PURE__*/getDefaultExportFromCjs(ObservableAPI);
3721
-
3722
3095
  var PromiseAPI = createCommonjsModule(function (module, exports) {
3723
- "use strict";
3724
3096
  Object.defineProperty(exports, "__esModule", { value: true });
3725
3097
  exports.PromiseDefaultApi = void 0;
3726
3098
 
@@ -3738,10 +3110,7 @@ exports.PromiseDefaultApi = PromiseDefaultApi;
3738
3110
  //# sourceMappingURL=PromiseAPI.js.map
3739
3111
  });
3740
3112
 
3741
- const PromiseAPI$1 = /*@__PURE__*/getDefaultExportFromCjs(PromiseAPI);
3742
-
3743
3113
  var dist = createCommonjsModule(function (module, exports) {
3744
- "use strict";
3745
3114
  var __createBinding = (commonjsGlobal && commonjsGlobal.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3746
3115
  if (k2 === undefined) k2 = k;
3747
3116
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -3770,8 +3139,6 @@ Object.defineProperty(exports, "DefaultApi", { enumerable: true, get: function (
3770
3139
  //# sourceMappingURL=index.js.map
3771
3140
  });
3772
3141
 
3773
- const index = /*@__PURE__*/getDefaultExportFromCjs(dist);
3774
-
3775
3142
  const STAGE_SERVER_IDENTIFIER = "stage";
3776
3143
  const getTrackingServerByApiPath = (apiPath) => isProductionPath(apiPath) ? dist.servers[0] : dist.servers[1];
3777
3144
  const isProductionPath = (apiPath) => !apiPath.includes(STAGE_SERVER_IDENTIFIER);
@@ -3854,4 +3221,4 @@ const createWidgetVpsEvent = createTrackingEvent(vpsWidget);
3854
3221
  const createSearchEvent = createTrackingEvent(searchEvent);
3855
3222
  const createFilterEvent = createTrackingEvent(filterEvent);
3856
3223
 
3857
- export { createProductClickVpsEvent as a, createSearchEvent as b, createProductViewVpsEvent as c, createFilterEvent as d, createTrackingApi as e, createWidgetVpsEvent as f, createProductViewVprEvent as g, createProductClickVprEvent as h, createWidgetVprEvent as i, v4 as v };
3224
+ export { createProductClickVprEvent as a, createTrackingApi as b, createProductViewVprEvent as c, createWidgetVprEvent as d, createProductViewVpsEvent as e, createProductClickVpsEvent as f, createSearchEvent as g, createFilterEvent as h, createWidgetVpsEvent as i, v4 as v };