@jetshop/core 5.17.0-alpha.8ede57ab → 5.17.0-alpha.8f38c56f

Sign up to get free protection for your applications and to get access to all the features.
Files changed (697) hide show
  1. package/ChannelHandler/ChannelHandler.d.ts +53 -0
  2. package/ChannelHandler/ChannelHandler.js +114 -0
  3. package/ChannelHandler/ChannelHandler.js.map +1 -0
  4. package/ChannelHandler/channelUtils.d.ts +73 -0
  5. package/ChannelHandler/channelUtils.js +313 -0
  6. package/ChannelHandler/channelUtils.js.map +1 -0
  7. package/ChannelHandler/redirectUtils.d.ts +4 -0
  8. package/ChannelHandler/redirectUtils.js +50 -0
  9. package/ChannelHandler/redirectUtils.js.map +1 -0
  10. package/ChannelHandler/redirectUtils.test.js +5 -5
  11. package/ChannelHandler/redirectUtilsGroupedChannels.test.js +5 -5
  12. package/analytics/Analytics.d.ts +18 -0
  13. package/analytics/Analytics.js +57 -0
  14. package/analytics/Analytics.js.map +1 -0
  15. package/analytics/AnalyticsProvider.d.ts +54 -0
  16. package/analytics/AnalyticsProvider.js +229 -0
  17. package/analytics/AnalyticsProvider.js.map +1 -0
  18. package/analytics/deprecatedTracking.d.ts +17 -0
  19. package/analytics/deprecatedTracking.js +33 -0
  20. package/analytics/deprecatedTracking.js.map +1 -0
  21. package/analytics/integrations/ga4.d.ts +28 -0
  22. package/analytics/integrations/ga4.js +189 -0
  23. package/analytics/integrations/ga4.js.map +1 -0
  24. package/analytics/integrations/gtag/gtag.d.ts +8 -0
  25. package/analytics/integrations/gtag/gtag.js +209 -0
  26. package/analytics/integrations/gtag/gtag.js.map +1 -0
  27. package/analytics/integrations/gtag/index.d.ts +1 -0
  28. package/analytics/integrations/gtag/index.js +2 -0
  29. package/analytics/integrations/gtag/index.js.map +1 -0
  30. package/analytics/integrations/gtm/gtm.d.ts +12 -0
  31. package/analytics/integrations/gtm/gtm.js +227 -0
  32. package/analytics/integrations/gtm/gtm.js.map +1 -0
  33. package/analytics/integrations/gtm/index.d.ts +1 -0
  34. package/analytics/integrations/gtm/index.js +2 -0
  35. package/analytics/integrations/gtm/index.js.map +1 -0
  36. package/analytics/integrations/gtm/referrerModifier.d.ts +1 -0
  37. package/analytics/integrations/gtm/referrerModifier.js +62 -0
  38. package/analytics/integrations/gtm/referrerModifier.js.map +1 -0
  39. package/analytics/integrations/releware/index.d.ts +3 -0
  40. package/analytics/integrations/releware/index.js +39 -0
  41. package/analytics/integrations/releware/index.js.map +1 -0
  42. package/analytics/integrations/unslugify.d.ts +1 -0
  43. package/analytics/integrations/unslugify.js +16 -0
  44. package/analytics/integrations/unslugify.js.map +1 -0
  45. package/analytics/trackerRegistry.d.ts +113 -0
  46. package/analytics/trackerRegistry.js +222 -0
  47. package/analytics/trackerRegistry.js.map +1 -0
  48. package/analytics/tracking.d.ts +14 -0
  49. package/analytics/tracking.js +72 -0
  50. package/analytics/tracking.js.map +1 -0
  51. package/analytics/utils/breadcrumbsWithoutProduct.d.ts +1 -0
  52. package/analytics/utils/breadcrumbsWithoutProduct.js +9 -0
  53. package/analytics/utils/breadcrumbsWithoutProduct.js.map +1 -0
  54. package/analytics/utils/script.d.ts +8 -0
  55. package/analytics/utils/script.js +40 -0
  56. package/analytics/utils/script.js.map +1 -0
  57. package/analytics/webVitals.d.ts +5 -0
  58. package/analytics/webVitals.js +39 -0
  59. package/analytics/webVitals.js.map +1 -0
  60. package/boot/AuthHandler.d.ts +14 -0
  61. package/boot/AuthHandler.js +39 -0
  62. package/boot/AuthHandler.js.map +1 -0
  63. package/boot/NetworkStatusNotifier.d.ts +2 -0
  64. package/boot/NetworkStatusNotifier.js +4 -0
  65. package/boot/NetworkStatusNotifier.js.map +1 -0
  66. package/boot/PreviewHandler.d.ts +7 -0
  67. package/boot/PreviewHandler.js +14 -0
  68. package/boot/PreviewHandler.js.map +1 -0
  69. package/boot/SharedTree.d.ts +25 -0
  70. package/boot/SharedTree.js +29 -0
  71. package/boot/SharedTree.js.map +1 -0
  72. package/boot/addMissingConfig.d.ts +5 -0
  73. package/boot/addMissingConfig.js +34 -0
  74. package/boot/addMissingConfig.js.map +1 -0
  75. package/boot/apollo.d.ts +20 -0
  76. package/boot/apollo.js +202 -0
  77. package/boot/apollo.js.map +1 -0
  78. package/boot/client/entrypoint.d.ts +1 -0
  79. package/boot/client/entrypoint.js +5 -0
  80. package/boot/client/entrypoint.js.map +1 -0
  81. package/boot/client/index.d.ts +1 -0
  82. package/boot/client/index.js +2 -0
  83. package/boot/client/index.js.map +1 -0
  84. package/boot/client/startClient.d.ts +4 -0
  85. package/boot/client/startClient.js +153 -0
  86. package/boot/client/startClient.js.map +1 -0
  87. package/boot/server/IntervalQuery.d.ts +32 -0
  88. package/boot/server/IntervalQuery.js +95 -0
  89. package/boot/server/IntervalQuery.js.map +1 -0
  90. package/boot/server/IntervalQuery.test.js +9 -13
  91. package/boot/server/PersistedApolloClient.d.ts +20 -0
  92. package/boot/server/PersistedApolloClient.js +40 -0
  93. package/boot/server/PersistedApolloClient.js.map +1 -0
  94. package/boot/server/PersistedApolloClient.test.js +8 -7
  95. package/boot/server/asyncErrorHandler.d.ts +3 -0
  96. package/boot/server/asyncErrorHandler.js +5 -0
  97. package/boot/server/asyncErrorHandler.js.map +1 -0
  98. package/boot/server/breakpointMiddleware.d.ts +3 -0
  99. package/boot/server/breakpointMiddleware.js +10 -0
  100. package/boot/server/breakpointMiddleware.js.map +1 -0
  101. package/boot/server/createApolloServer.d.ts +29 -0
  102. package/boot/server/createApolloServer.js +144 -0
  103. package/boot/server/createApolloServer.js.map +1 -0
  104. package/boot/server/createDevServer.d.ts +14 -0
  105. package/boot/server/createDevServer.js +30 -0
  106. package/boot/server/createDevServer.js.map +1 -0
  107. package/boot/server/createRenderer.d.ts +28 -0
  108. package/boot/server/createRenderer.js +239 -0
  109. package/boot/server/createRenderer.js.map +1 -0
  110. package/boot/server/createServer.d.ts +14 -0
  111. package/boot/server/createServer.js +42 -0
  112. package/boot/server/createServer.js.map +1 -0
  113. package/boot/server/entrypoint.d.ts +1 -0
  114. package/boot/server/entrypoint.js +39 -0
  115. package/boot/server/entrypoint.js.map +1 -0
  116. package/boot/server/getPrefetchFiles.d.ts +10 -0
  117. package/boot/server/getPrefetchFiles.js +20 -0
  118. package/boot/server/getPrefetchFiles.js.map +1 -0
  119. package/boot/server/getPreloadAssets.d.ts +10 -0
  120. package/boot/server/getPreloadAssets.js +18 -0
  121. package/boot/server/getPreloadAssets.js.map +1 -0
  122. package/boot/server/index.d.ts +9 -0
  123. package/boot/server/index.js +123 -0
  124. package/boot/server/index.js.map +1 -0
  125. package/boot/server/listen.d.ts +13 -0
  126. package/boot/server/listen.js +17 -0
  127. package/boot/server/listen.js.map +1 -0
  128. package/boot/server/persistedQueries/PersistedClient.d.ts +22 -0
  129. package/boot/server/persistedQueries/PersistedClient.js +58 -0
  130. package/boot/server/persistedQueries/PersistedClient.js.map +1 -0
  131. package/boot/server/persistedQueries/__tests__/getPersistedQueriesForRequest.test.js +1 -1
  132. package/boot/server/persistedQueries/getPersistedQueriesForRequest.d.ts +3 -0
  133. package/boot/server/persistedQueries/getPersistedQueriesForRequest.js +27 -0
  134. package/boot/server/persistedQueries/getPersistedQueriesForRequest.js.map +1 -0
  135. package/boot/server/salesSource.d.ts +8 -0
  136. package/boot/server/salesSource.js +16 -0
  137. package/boot/server/salesSource.js.map +1 -0
  138. package/boot/utils/createIntOptions.d.ts +6 -0
  139. package/boot/utils/createIntOptions.js +19 -0
  140. package/boot/utils/createIntOptions.js.map +1 -0
  141. package/boot/utils/queryLoggingMiddleware.d.ts +2 -0
  142. package/boot/utils/queryLoggingMiddleware.js +15 -0
  143. package/boot/utils/queryLoggingMiddleware.js.map +1 -0
  144. package/boot/utils/uid.d.ts +3 -0
  145. package/boot/utils/uid.js +20 -0
  146. package/boot/utils/uid.js.map +1 -0
  147. package/cart/AddToCartFormik.d.ts +42 -0
  148. package/cart/AddToCartFormik.js +77 -0
  149. package/cart/AddToCartFormik.js.map +1 -0
  150. package/cart/useAddToCart.d.ts +88 -0
  151. package/cart/useAddToCart.js +119 -0
  152. package/cart/useAddToCart.js.map +1 -0
  153. package/cart/useCart.d.ts +0 -0
  154. package/cart/useCart.js +1 -0
  155. package/cart/useCart.js.map +1 -0
  156. package/components/Auth/CustomerFormContainer.d.ts +0 -0
  157. package/components/Auth/CustomerFormContainer.js +1 -0
  158. package/components/Auth/CustomerFormContainer.js.map +1 -0
  159. package/components/Auth/CustomerUpdateForm.d.ts +32 -0
  160. package/components/Auth/CustomerUpdateForm.js +122 -0
  161. package/components/Auth/CustomerUpdateForm.js.map +1 -0
  162. package/components/Auth/ForgotPasswordProvider.d.ts +69 -0
  163. package/components/Auth/ForgotPasswordProvider.js +57 -0
  164. package/components/Auth/ForgotPasswordProvider.js.map +1 -0
  165. package/components/Auth/ResetPasswordProvider.d.ts +90 -0
  166. package/components/Auth/ResetPasswordProvider.js +78 -0
  167. package/components/Auth/ResetPasswordProvider.js.map +1 -0
  168. package/components/Auth/SSN.d.ts +12 -0
  169. package/components/Auth/SSN.js +35 -0
  170. package/components/Auth/SSN.js.map +1 -0
  171. package/components/Auth/SSNLookupContainer.d.ts +15 -0
  172. package/components/Auth/SSNLookupContainer.js +20 -0
  173. package/components/Auth/SSNLookupContainer.js.map +1 -0
  174. package/components/Auth/SignupFormContainer.d.ts +16 -0
  175. package/components/Auth/SignupFormContainer.js +82 -0
  176. package/components/Auth/SignupFormContainer.js.map +1 -0
  177. package/components/Auth/UpdatePasswordForm.d.ts +44 -0
  178. package/components/Auth/UpdatePasswordForm.js +98 -0
  179. package/components/Auth/UpdatePasswordForm.js.map +1 -0
  180. package/components/Auth/formFieldsFromSettings.d.ts +65 -0
  181. package/components/Auth/formFieldsFromSettings.js +77 -0
  182. package/components/Auth/formFieldsFromSettings.js.map +1 -0
  183. package/components/Auth/formatSignupInput.d.ts +8 -0
  184. package/components/Auth/formatSignupInput.js +43 -0
  185. package/components/Auth/formatSignupInput.js.map +1 -0
  186. package/components/Auth/signup-context.d.ts +36 -0
  187. package/components/Auth/signup-context.js +71 -0
  188. package/components/Auth/signup-context.js.map +1 -0
  189. package/components/Auth/signup-field-translations.d.ts +3 -0
  190. package/components/Auth/signup-field-translations.js +44 -0
  191. package/components/Auth/signup-field-translations.js.map +1 -0
  192. package/components/Auth/signupSubmit.d.ts +6 -0
  193. package/components/Auth/signupSubmit.js +57 -0
  194. package/components/Auth/signupSubmit.js.map +1 -0
  195. package/components/Auth/useAddressFields.d.ts +22 -0
  196. package/components/Auth/useAddressFields.js +33 -0
  197. package/components/Auth/useAddressFields.js.map +1 -0
  198. package/components/Auth/useAddressFields.test.js +10 -8
  199. package/components/Auth/useCustomer.d.ts +116 -0
  200. package/components/Auth/useCustomer.js +189 -0
  201. package/components/Auth/useCustomer.js.map +1 -0
  202. package/components/Auth/useLoginFields.d.ts +20 -0
  203. package/components/Auth/useLoginFields.js +21 -0
  204. package/components/Auth/useLoginFields.js.map +1 -0
  205. package/components/Auth/useSignupForm.d.ts +7 -0
  206. package/components/Auth/useSignupForm.js +15 -0
  207. package/components/Auth/useSignupForm.js.map +1 -0
  208. package/components/AuthContext/AuthContext.d.ts +8 -0
  209. package/components/AuthContext/AuthContext.js +9 -0
  210. package/components/AuthContext/AuthContext.js.map +1 -0
  211. package/components/AuthContext/AuthProvider.d.ts +6 -0
  212. package/components/AuthContext/AuthProvider.js +85 -0
  213. package/components/AuthContext/AuthProvider.js.map +1 -0
  214. package/components/AuthContext/AuthProvider.test.js +1 -1
  215. package/components/AuthContext/LogOut.d.ts +5 -0
  216. package/components/AuthContext/LogOut.js +15 -0
  217. package/components/AuthContext/LogOut.js.map +1 -0
  218. package/components/AuthContext/useAuth.d.ts +6 -0
  219. package/components/AuthContext/useAuth.js +21 -0
  220. package/components/AuthContext/useAuth.js.map +1 -0
  221. package/components/BreakpointProvider.d.ts +21 -0
  222. package/components/BreakpointProvider.js +24 -0
  223. package/components/BreakpointProvider.js.map +1 -0
  224. package/components/Cart/CartIdContext.d.ts +11 -0
  225. package/components/Cart/CartIdContext.js +61 -0
  226. package/components/Cart/CartIdContext.js.map +1 -0
  227. package/components/ChannelContext/ChannelContext.d.ts +21 -0
  228. package/components/ChannelContext/ChannelContext.js +4 -0
  229. package/components/ChannelContext/ChannelContext.js.map +1 -0
  230. package/components/ChannelContext/ChannelProvider.d.ts +10 -0
  231. package/components/ChannelContext/ChannelProvider.js +45 -0
  232. package/components/ChannelContext/ChannelProvider.js.map +1 -0
  233. package/components/ChannelContext/index.d.ts +2 -0
  234. package/components/ChannelContext/index.js +3 -0
  235. package/components/ChannelContext/index.js.map +1 -0
  236. package/components/ChannelContext/useCountrySettings.d.ts +8 -0
  237. package/components/ChannelContext/useCountrySettings.js +24 -0
  238. package/components/ChannelContext/useCountrySettings.js.map +1 -0
  239. package/components/ConfigProvider.d.ts +108 -0
  240. package/components/ConfigProvider.js +20 -0
  241. package/components/ConfigProvider.js.map +1 -0
  242. package/components/DynamicRoute/ActiveFiltersQuery.gql +4 -4
  243. package/components/DynamicRoute/CategoryRoute.d.ts +13 -0
  244. package/components/DynamicRoute/CategoryRoute.js +59 -0
  245. package/components/DynamicRoute/CategoryRoute.js.map +1 -0
  246. package/components/DynamicRoute/ContentRoute.d.ts +14 -0
  247. package/components/DynamicRoute/ContentRoute.js +28 -0
  248. package/components/DynamicRoute/ContentRoute.js.map +1 -0
  249. package/components/DynamicRoute/CustomerRoute.d.ts +0 -0
  250. package/components/DynamicRoute/CustomerRoute.js +1 -0
  251. package/components/DynamicRoute/CustomerRoute.js.map +1 -0
  252. package/components/DynamicRoute/GenericError.d.ts +18 -0
  253. package/components/DynamicRoute/GenericError.js +61 -0
  254. package/components/DynamicRoute/GenericError.js.map +1 -0
  255. package/components/DynamicRoute/PreviewRoute.d.ts +17 -0
  256. package/components/DynamicRoute/PreviewRoute.js +58 -0
  257. package/components/DynamicRoute/PreviewRoute.js.map +1 -0
  258. package/components/DynamicRoute/ProductByArticlenumber.d.ts +5 -0
  259. package/components/DynamicRoute/ProductByArticlenumber.js +22 -0
  260. package/components/DynamicRoute/ProductByArticlenumber.js.map +1 -0
  261. package/components/DynamicRoute/ProductRoute.d.ts +15 -0
  262. package/components/DynamicRoute/ProductRoute.js +65 -0
  263. package/components/DynamicRoute/ProductRoute.js.map +1 -0
  264. package/components/DynamicRoute/RouteResolver.d.ts +22 -0
  265. package/components/DynamicRoute/RouteResolver.js +65 -0
  266. package/components/DynamicRoute/RouteResolver.js.map +1 -0
  267. package/components/DynamicRoute/Status.d.ts +15 -0
  268. package/components/DynamicRoute/Status.js +20 -0
  269. package/components/DynamicRoute/Status.js.map +1 -0
  270. package/components/DynamicRoute/index.d.ts +17 -0
  271. package/components/DynamicRoute/index.js +100 -0
  272. package/components/DynamicRoute/index.js.map +1 -0
  273. package/components/Filters/index.d.ts +1 -0
  274. package/components/Filters/index.js +2 -0
  275. package/components/Filters/index.js.map +1 -0
  276. package/components/Filters/utils/replaceInSearch.d.ts +14 -0
  277. package/components/Filters/utils/replaceInSearch.js +23 -0
  278. package/components/Filters/utils/replaceInSearch.js.map +1 -0
  279. package/components/Filters/utils/updateHistory.d.ts +25 -0
  280. package/components/Filters/utils/updateHistory.js +30 -0
  281. package/components/Filters/utils/updateHistory.js.map +1 -0
  282. package/components/Fonts/CustomFont.d.ts +14 -0
  283. package/components/Fonts/CustomFont.js +17 -0
  284. package/components/Fonts/CustomFont.js.map +1 -0
  285. package/components/Fonts/injectFont.d.ts +11 -0
  286. package/components/Fonts/injectFont.js +30 -0
  287. package/components/Fonts/injectFont.js.map +1 -0
  288. package/components/Head.d.ts +11 -0
  289. package/components/Head.js +84 -0
  290. package/components/Head.js.map +1 -0
  291. package/components/Mutation/AddToCart/addToCartUtils.d.ts +18 -0
  292. package/components/Mutation/AddToCart/addToCartUtils.js +52 -0
  293. package/components/Mutation/AddToCart/addToCartUtils.js.map +1 -0
  294. package/components/Mutation/AddToCartFormik.d.ts +53 -0
  295. package/components/Mutation/AddToCartFormik.js +173 -0
  296. package/components/Mutation/AddToCartFormik.js.map +1 -0
  297. package/components/Mutation/DecrementQuantity.d.ts +4 -0
  298. package/components/Mutation/DecrementQuantity.js +35 -0
  299. package/components/Mutation/DecrementQuantity.js.map +1 -0
  300. package/components/Mutation/IncrementQuantity.d.ts +4 -0
  301. package/components/Mutation/IncrementQuantity.js +35 -0
  302. package/components/Mutation/IncrementQuantity.js.map +1 -0
  303. package/components/Mutation/RemoveFromCart.d.ts +5 -0
  304. package/components/Mutation/RemoveFromCart.js +52 -0
  305. package/components/Mutation/RemoveFromCart.js.map +1 -0
  306. package/components/Mutation/SetQuantity.d.ts +4 -0
  307. package/components/Mutation/SetQuantity.js +37 -0
  308. package/components/Mutation/SetQuantity.js.map +1 -0
  309. package/components/Mutation/SubscribeToNewsletter.d.ts +4 -0
  310. package/components/Mutation/SubscribeToNewsletter.js +30 -0
  311. package/components/Mutation/SubscribeToNewsletter.js.map +1 -0
  312. package/components/Mutation/SubscribeToStockNotifications.d.ts +4 -0
  313. package/components/Mutation/SubscribeToStockNotifications.js +35 -0
  314. package/components/Mutation/SubscribeToStockNotifications.js.map +1 -0
  315. package/components/Mutation/cartMutationUtils.d.ts +27 -0
  316. package/components/Mutation/cartMutationUtils.js +109 -0
  317. package/components/Mutation/cartMutationUtils.js.map +1 -0
  318. package/components/Mutation/useDecrementQuantity.d.ts +11 -0
  319. package/components/Mutation/useDecrementQuantity.js +54 -0
  320. package/components/Mutation/useDecrementQuantity.js.map +1 -0
  321. package/components/Mutation/useIncrementQuantity.d.ts +11 -0
  322. package/components/Mutation/useIncrementQuantity.js +54 -0
  323. package/components/Mutation/useIncrementQuantity.js.map +1 -0
  324. package/components/Mutation/useRemoveFromCart.d.ts +13 -0
  325. package/components/Mutation/useRemoveFromCart.js +50 -0
  326. package/components/Mutation/useRemoveFromCart.js.map +1 -0
  327. package/components/Mutation/useSetQuantity.d.ts +12 -0
  328. package/components/Mutation/useSetQuantity.js +38 -0
  329. package/components/Mutation/useSetQuantity.js.map +1 -0
  330. package/components/Notifications/Notifications.d.ts +15 -0
  331. package/components/Notifications/Notifications.js +26 -0
  332. package/components/Notifications/Notifications.js.map +1 -0
  333. package/components/Notifications/index.d.ts +2 -0
  334. package/components/Notifications/index.js +3 -0
  335. package/components/Notifications/index.js.map +1 -0
  336. package/components/Notifications/notificationMachine.d.ts +30 -0
  337. package/components/Notifications/notificationMachine.js +74 -0
  338. package/components/Notifications/notificationMachine.js.map +1 -0
  339. package/components/Notifications/notificationsMachine.d.ts +37 -0
  340. package/components/Notifications/notificationsMachine.js +66 -0
  341. package/components/Notifications/notificationsMachine.js.map +1 -0
  342. package/components/Notifications/useNotification.d.ts +9 -0
  343. package/components/Notifications/useNotification.js +27 -0
  344. package/components/Notifications/useNotification.js.map +1 -0
  345. package/components/OpenGraph/OpenGraphGeneralPageData.d.ts +25 -0
  346. package/components/OpenGraph/OpenGraphGeneralPageData.js +37 -0
  347. package/components/OpenGraph/OpenGraphGeneralPageData.js.map +1 -0
  348. package/components/OpenGraph/OpenGraphProductData.d.ts +25 -0
  349. package/components/OpenGraph/OpenGraphProductData.js +49 -0
  350. package/components/OpenGraph/OpenGraphProductData.js.map +1 -0
  351. package/components/OpenGraph/index.d.ts +2 -0
  352. package/components/OpenGraph/index.js +3 -0
  353. package/components/OpenGraph/index.js.map +1 -0
  354. package/components/Pagination/PaginationContainer.d.ts +2 -0
  355. package/components/Pagination/PaginationContainer.js +5 -0
  356. package/components/Pagination/PaginationContainer.js.map +1 -0
  357. package/components/Pagination/PaginationContext.d.ts +14 -0
  358. package/components/Pagination/PaginationContext.js +4 -0
  359. package/components/Pagination/PaginationContext.js.map +1 -0
  360. package/components/Pagination/PaginationProvider.d.ts +19 -0
  361. package/components/Pagination/PaginationProvider.js +95 -0
  362. package/components/Pagination/PaginationProvider.js.map +1 -0
  363. package/components/PreviewContext.d.ts +10 -0
  364. package/components/PreviewContext.js +27 -0
  365. package/components/PreviewContext.js.map +1 -0
  366. package/components/ProductConfigurationProvider/ProductConfigurationContext.d.ts +13 -0
  367. package/components/ProductConfigurationProvider/ProductConfigurationContext.js +5 -0
  368. package/components/ProductConfigurationProvider/ProductConfigurationContext.js.map +1 -0
  369. package/components/ProductConfigurationProvider/ProductConfigurationProvider.d.ts +6 -0
  370. package/components/ProductConfigurationProvider/ProductConfigurationProvider.js +50 -0
  371. package/components/ProductConfigurationProvider/ProductConfigurationProvider.js.map +1 -0
  372. package/components/Query/CartProvider.d.ts +22 -0
  373. package/components/Query/CartProvider.js +68 -0
  374. package/components/Query/CartProvider.js.map +1 -0
  375. package/components/SortOrder/SortOrderContainer.d.ts +40 -0
  376. package/components/SortOrder/SortOrderContainer.js +108 -0
  377. package/components/SortOrder/SortOrderContainer.js.map +1 -0
  378. package/components/SortOrder/SortOrderContext.d.ts +9 -0
  379. package/components/SortOrder/SortOrderContext.js +9 -0
  380. package/components/SortOrder/SortOrderContext.js.map +1 -0
  381. package/components/StructuredData/SiteLinksSearchStructuredData.d.ts +3 -0
  382. package/components/StructuredData/SiteLinksSearchStructuredData.js +25 -0
  383. package/components/StructuredData/SiteLinksSearchStructuredData.js.map +1 -0
  384. package/components/StructuredData/StructuredBreadcrumbData.d.ts +12 -0
  385. package/components/StructuredData/StructuredBreadcrumbData.js +55 -0
  386. package/components/StructuredData/StructuredBreadcrumbData.js.map +1 -0
  387. package/components/StructuredData/StructuredCategoryData.d.ts +16 -0
  388. package/components/StructuredData/StructuredCategoryData.js +18 -0
  389. package/components/StructuredData/StructuredCategoryData.js.map +1 -0
  390. package/components/StructuredData/StructuredData.d.ts +9 -0
  391. package/components/StructuredData/StructuredData.js +7 -0
  392. package/components/StructuredData/StructuredData.js.map +1 -0
  393. package/components/StructuredData/StructuredPageData.d.ts +16 -0
  394. package/components/StructuredData/StructuredPageData.js +17 -0
  395. package/components/StructuredData/StructuredPageData.js.map +1 -0
  396. package/components/StructuredData/StructuredProductData.d.ts +18 -0
  397. package/components/StructuredData/StructuredProductData.js +43 -0
  398. package/components/StructuredData/StructuredProductData.js.map +1 -0
  399. package/components/StructuredData/index.d.ts +5 -0
  400. package/components/StructuredData/index.js +6 -0
  401. package/components/StructuredData/index.js.map +1 -0
  402. package/data/cache.d.ts +3 -0
  403. package/data/cache.js +34 -0
  404. package/data/cache.js.map +1 -0
  405. package/data/fragmentTypes.d.ts +8 -0
  406. package/data/fragmentTypes.js +84 -0
  407. package/data/fragmentTypes.js.map +1 -0
  408. package/data/fragments/index.d.ts +1 -0
  409. package/data/fragments/index.js +2 -0
  410. package/data/fragments/index.js.map +1 -0
  411. package/errorReporting.browser.d.ts +3 -0
  412. package/errorReporting.browser.js +12 -0
  413. package/errorReporting.browser.js.map +1 -0
  414. package/errorReporting.d.ts +3 -0
  415. package/errorReporting.js +20 -0
  416. package/errorReporting.js.map +1 -0
  417. package/errorReporting.server.d.ts +3 -0
  418. package/errorReporting.server.js +12 -0
  419. package/errorReporting.server.js.map +1 -0
  420. package/errorReporting.shared.d.ts +5 -0
  421. package/errorReporting.shared.js +17 -0
  422. package/errorReporting.shared.js.map +1 -0
  423. package/experiments/ExperimentsProvider.d.ts +4 -0
  424. package/experiments/ExperimentsProvider.js +29 -0
  425. package/experiments/ExperimentsProvider.js.map +1 -0
  426. package/experiments/selectExperimentVariant.d.ts +3 -0
  427. package/experiments/selectExperimentVariant.js +35 -0
  428. package/experiments/selectExperimentVariant.js.map +1 -0
  429. package/experiments/useExperiment.d.ts +2 -0
  430. package/experiments/useExperiment.js +11 -0
  431. package/experiments/useExperiment.js.map +1 -0
  432. package/global.d.ts +55 -1
  433. package/helpers/decodeUrlQuery.d.ts +9 -0
  434. package/helpers/decodeUrlQuery.js +27 -0
  435. package/helpers/decodeUrlQuery.js.map +1 -0
  436. package/helpers/distance.d.ts +7 -0
  437. package/helpers/distance.js +13 -0
  438. package/helpers/distance.js.map +1 -0
  439. package/helpers/encodeVariant.d.ts +3 -0
  440. package/helpers/encodeVariant.js +25 -0
  441. package/helpers/encodeVariant.js.map +1 -0
  442. package/helpers/getBreakpointsFromValues.d.ts +6 -0
  443. package/helpers/getBreakpointsFromValues.js +15 -0
  444. package/helpers/getBreakpointsFromValues.js.map +1 -0
  445. package/helpers/getCartItemVariant.d.ts +7 -0
  446. package/helpers/getCartItemVariant.js +9 -0
  447. package/helpers/getCartItemVariant.js.map +1 -0
  448. package/helpers/getErrorDetail.d.ts +7 -0
  449. package/helpers/getErrorDetail.js +12 -0
  450. package/helpers/getErrorDetail.js.map +1 -0
  451. package/helpers/getHeaders.d.ts +6 -0
  452. package/helpers/getHeaders.js +4 -0
  453. package/helpers/getHeaders.js.map +1 -0
  454. package/helpers/isRelativeUrl.d.ts +1 -0
  455. package/helpers/isRelativeUrl.js +4 -0
  456. package/helpers/isRelativeUrl.js.map +1 -0
  457. package/helpers/logError.d.ts +1 -0
  458. package/helpers/logError.js +17 -0
  459. package/helpers/logError.js.map +1 -0
  460. package/helpers/logWarningInDev.d.ts +1 -0
  461. package/helpers/logWarningInDev.js +7 -0
  462. package/helpers/logWarningInDev.js.map +1 -0
  463. package/helpers/throwErrorInDev.d.ts +6 -0
  464. package/helpers/throwErrorInDev.js +15 -0
  465. package/helpers/throwErrorInDev.js.map +1 -0
  466. package/helpers/uniqueId.d.ts +5 -0
  467. package/helpers/uniqueId.js +10 -0
  468. package/helpers/uniqueId.js.map +1 -0
  469. package/hooks/Channels/useChannelSettings.d.ts +7 -0
  470. package/hooks/Channels/useChannelSettings.js +12 -0
  471. package/hooks/Channels/useChannelSettings.js.map +1 -0
  472. package/hooks/Filters/useBooleanFilter.d.ts +8 -0
  473. package/hooks/Filters/useBooleanFilter.js +20 -0
  474. package/hooks/Filters/useBooleanFilter.js.map +1 -0
  475. package/hooks/Filters/useFilters.d.ts +3 -0
  476. package/hooks/Filters/useFilters.js +15 -0
  477. package/hooks/Filters/useFilters.js.map +1 -0
  478. package/hooks/Filters/useListFilter.d.ts +10 -0
  479. package/hooks/Filters/useListFilter.js +37 -0
  480. package/hooks/Filters/useListFilter.js.map +1 -0
  481. package/hooks/Filters/useMultiFilter.d.ts +13 -0
  482. package/hooks/Filters/useMultiFilter.js +49 -0
  483. package/hooks/Filters/useMultiFilter.js.map +1 -0
  484. package/hooks/Filters/useRangeFilter.d.ts +10 -0
  485. package/hooks/Filters/useRangeFilter.js +35 -0
  486. package/hooks/Filters/useRangeFilter.js.map +1 -0
  487. package/hooks/Filters/useSortOrder.d.ts +16 -0
  488. package/hooks/Filters/useSortOrder.js +23 -0
  489. package/hooks/Filters/useSortOrder.js.map +1 -0
  490. package/hooks/PackageProducts/index.d.ts +2 -0
  491. package/hooks/PackageProducts/index.js +3 -0
  492. package/hooks/PackageProducts/index.js.map +1 -0
  493. package/hooks/PackageProducts/usePackageProductItem.d.ts +17 -0
  494. package/hooks/PackageProducts/usePackageProductItem.js +27 -0
  495. package/hooks/PackageProducts/usePackageProductItem.js.map +1 -0
  496. package/hooks/PackageProducts/usePackageProducts.d.ts +19 -0
  497. package/hooks/PackageProducts/usePackageProducts.js +346 -0
  498. package/hooks/PackageProducts/usePackageProducts.js.map +1 -0
  499. package/hooks/PackageProducts/usePackageProducts.test.js +1 -1
  500. package/hooks/Product/index.d.ts +1 -0
  501. package/hooks/Product/index.js +2 -0
  502. package/hooks/Product/index.js.map +1 -0
  503. package/hooks/Product/useStockStatus.d.ts +9 -0
  504. package/hooks/Product/useStockStatus.js +26 -0
  505. package/hooks/Product/useStockStatus.js.map +1 -0
  506. package/hooks/Product/useSwitchToVariantImage.d.ts +9 -0
  507. package/hooks/Product/useSwitchToVariantImage.js +21 -0
  508. package/hooks/Product/useSwitchToVariantImage.js.map +1 -0
  509. package/hooks/ProductList/ProductListContext.d.ts +7 -0
  510. package/hooks/ProductList/ProductListContext.js +111 -0
  511. package/hooks/ProductList/ProductListContext.js.map +1 -0
  512. package/hooks/ProductList/action-creators.d.ts +46 -0
  513. package/hooks/ProductList/action-creators.js +297 -0
  514. package/hooks/ProductList/action-creators.js.map +1 -0
  515. package/hooks/ProductList/index.d.ts +118 -0
  516. package/hooks/ProductList/index.js +22 -0
  517. package/hooks/ProductList/index.js.map +1 -0
  518. package/hooks/ProductList/list-transforms.d.ts +75 -0
  519. package/hooks/ProductList/list-transforms.js +107 -0
  520. package/hooks/ProductList/list-transforms.js.map +1 -0
  521. package/hooks/ProductList/product-list-reducer.d.ts +76 -0
  522. package/hooks/ProductList/product-list-reducer.js +198 -0
  523. package/hooks/ProductList/product-list-reducer.js.map +1 -0
  524. package/hooks/ProductList/useProductList.d.ts +13 -0
  525. package/hooks/ProductList/useProductList.js +94 -0
  526. package/hooks/ProductList/useProductList.js.map +1 -0
  527. package/hooks/ProductList/useProductListItems.d.ts +10 -0
  528. package/hooks/ProductList/useProductListItems.js +49 -0
  529. package/hooks/ProductList/useProductListItems.js.map +1 -0
  530. package/hooks/ProductList/validate-product.d.ts +6 -0
  531. package/hooks/ProductList/validate-product.js +41 -0
  532. package/hooks/ProductList/validate-product.js.map +1 -0
  533. package/hooks/Subscriptions/useNewsletterSubscription.d.ts +38 -0
  534. package/hooks/Subscriptions/useNewsletterSubscription.js +42 -0
  535. package/hooks/Subscriptions/useNewsletterSubscription.js.map +1 -0
  536. package/hooks/Subscriptions/useStockNotifications.d.ts +36 -0
  537. package/hooks/Subscriptions/useStockNotifications.js +38 -0
  538. package/hooks/Subscriptions/useStockNotifications.js.map +1 -0
  539. package/hooks/Subscriptions/useStoreSubscriptions.d.ts +48 -0
  540. package/hooks/Subscriptions/useStoreSubscriptions.js +148 -0
  541. package/hooks/Subscriptions/useStoreSubscriptions.js.map +1 -0
  542. package/hooks/Subscriptions/useStoresubscriptions.test.js +5 -7
  543. package/hooks/useAddMultipleToCart.d.ts +27 -0
  544. package/hooks/useAddMultipleToCart.js +114 -0
  545. package/hooks/useAddMultipleToCart.js.map +1 -0
  546. package/hooks/useAddMultipleToCart.test.js +1 -1
  547. package/hooks/useChannels.d.ts +1 -0
  548. package/hooks/useChannels.js +10 -0
  549. package/hooks/useChannels.js.map +1 -0
  550. package/hooks/useCustomerOrders.test.js +7 -5
  551. package/hooks/useCustomerOrdersQuery.d.ts +21 -0
  552. package/hooks/useCustomerOrdersQuery.js +21 -0
  553. package/hooks/useCustomerOrdersQuery.js.map +1 -0
  554. package/hooks/useDeleteAccountMutation.d.ts +15 -0
  555. package/hooks/useDeleteAccountMutation.js +39 -0
  556. package/hooks/useDeleteAccountMutation.js.map +1 -0
  557. package/hooks/useDynamicPrice.d.ts +3 -0
  558. package/hooks/useDynamicPrice.js +25 -0
  559. package/hooks/useDynamicPrice.js.map +1 -0
  560. package/hooks/useFreeShippingCheck.d.ts +15 -0
  561. package/hooks/useFreeShippingCheck.js +31 -0
  562. package/hooks/useFreeShippingCheck.js.map +1 -0
  563. package/hooks/useGeolocation.d.ts +11 -0
  564. package/hooks/useGeolocation.js +34 -0
  565. package/hooks/useGeolocation.js.map +1 -0
  566. package/hooks/useInfinitePagination.d.ts +37 -0
  567. package/hooks/useInfinitePagination.js +142 -0
  568. package/hooks/useInfinitePagination.js.map +1 -0
  569. package/hooks/useLogError.d.ts +1 -0
  570. package/hooks/useLogError.js +8 -0
  571. package/hooks/useLogError.js.map +1 -0
  572. package/hooks/useLoginMutation.d.ts +12 -0
  573. package/hooks/useLoginMutation.js +15 -0
  574. package/hooks/useLoginMutation.js.map +1 -0
  575. package/hooks/useLoginRedirect.d.ts +4 -0
  576. package/hooks/useLoginRedirect.js +37 -0
  577. package/hooks/useLoginRedirect.js.map +1 -0
  578. package/hooks/useOrderDetailQuery.d.ts +20 -0
  579. package/hooks/useOrderDetailQuery.js +29 -0
  580. package/hooks/useOrderDetailQuery.js.map +1 -0
  581. package/hooks/usePreconnectLinks.d.ts +10 -0
  582. package/hooks/usePreconnectLinks.js +30 -0
  583. package/hooks/usePreconnectLinks.js.map +1 -0
  584. package/hooks/usePrice.d.ts +41 -0
  585. package/hooks/usePrice.js +73 -0
  586. package/hooks/usePrice.js.map +1 -0
  587. package/hooks/useProductVariants/index.d.ts +1 -0
  588. package/hooks/useProductVariants/index.js +2 -0
  589. package/hooks/useProductVariants/index.js.map +1 -0
  590. package/hooks/useProductVariants/useProductVariants.d.ts +19 -0
  591. package/hooks/useProductVariants/useProductVariants.js +203 -0
  592. package/hooks/useProductVariants/useProductVariants.js.map +1 -0
  593. package/hooks/useProductVariants/useVariantFromUrl.d.ts +5 -0
  594. package/hooks/useProductVariants/useVariantFromUrl.js +16 -0
  595. package/hooks/useProductVariants/useVariantFromUrl.js.map +1 -0
  596. package/hooks/useRoutePreload.d.ts +24 -0
  597. package/hooks/useRoutePreload.js +40 -0
  598. package/hooks/useRoutePreload.js.map +1 -0
  599. package/hooks/useShopConfig.d.ts +1 -0
  600. package/hooks/useShopConfig.js +11 -0
  601. package/hooks/useShopConfig.js.map +1 -0
  602. package/hooks/useStockStatus.d.ts +8 -0
  603. package/hooks/useStockStatus.js +26 -0
  604. package/hooks/useStockStatus.js.map +1 -0
  605. package/hooks/useThrowErrorInDev.d.ts +1 -0
  606. package/hooks/useThrowErrorInDev.js +8 -0
  607. package/hooks/useThrowErrorInDev.js.map +1 -0
  608. package/hooks/useThunkReducer.d.ts +7 -0
  609. package/hooks/useThunkReducer.js +24 -0
  610. package/hooks/useThunkReducer.js.map +1 -0
  611. package/hooks/useWarningInDev.d.ts +1 -0
  612. package/hooks/useWarningInDev.js +10 -0
  613. package/hooks/useWarningInDev.js.map +1 -0
  614. package/inServer.d.ts +1 -0
  615. package/inServer.js +3 -0
  616. package/inServer.js.map +1 -0
  617. package/index.d.ts +1 -0
  618. package/index.js +2 -0
  619. package/index.js.map +1 -0
  620. package/integrations/addwishSchemaExtension.d.ts +35 -0
  621. package/integrations/addwishSchemaExtension.js +141 -0
  622. package/integrations/addwishSchemaExtension.js.map +1 -0
  623. package/integrations/nostoSchemaExtension.d.ts +5 -0
  624. package/integrations/nostoSchemaExtension.js +77 -0
  625. package/integrations/nostoSchemaExtension.js.map +1 -0
  626. package/integrations/sluggishSchemaExtension.d.ts +2 -0
  627. package/integrations/sluggishSchemaExtension.js +27 -0
  628. package/integrations/sluggishSchemaExtension.js.map +1 -0
  629. package/package.json +13 -29
  630. package/polyfills.d.ts +1 -0
  631. package/polyfills.js +36 -0
  632. package/polyfills.js.map +1 -0
  633. package/resolvers/filters/boolFilter.d.ts +3 -0
  634. package/resolvers/filters/boolFilter.js +82 -0
  635. package/resolvers/filters/boolFilter.js.map +1 -0
  636. package/resolvers/filters/defaultActiveFilters.d.ts +3 -0
  637. package/resolvers/filters/defaultActiveFilters.js +9 -0
  638. package/resolvers/filters/defaultActiveFilters.js.map +1 -0
  639. package/resolvers/filters/filterParams.d.ts +3 -0
  640. package/resolvers/filters/filterParams.js +85 -0
  641. package/resolvers/filters/filterParams.js.map +1 -0
  642. package/resolvers/filters/filters.d.ts +5 -0
  643. package/resolvers/filters/filters.js +79 -0
  644. package/resolvers/filters/filters.js.map +1 -0
  645. package/resolvers/filters/index.d.ts +23 -0
  646. package/resolvers/filters/index.js +8 -0
  647. package/resolvers/filters/index.js.map +1 -0
  648. package/resolvers/filters/listFilter.d.ts +7 -0
  649. package/resolvers/filters/listFilter.js +69 -0
  650. package/resolvers/filters/listFilter.js.map +1 -0
  651. package/resolvers/filters/listFilterItem.d.ts +3 -0
  652. package/resolvers/filters/listFilterItem.js +118 -0
  653. package/resolvers/filters/listFilterItem.js.map +1 -0
  654. package/resolvers/filters/multiListFilter.d.ts +5 -0
  655. package/resolvers/filters/multiListFilter.js +195 -0
  656. package/resolvers/filters/multiListFilter.js.map +1 -0
  657. package/resolvers/filters/multiListFilterList.d.ts +3 -0
  658. package/resolvers/filters/multiListFilterList.js +56 -0
  659. package/resolvers/filters/multiListFilterList.js.map +1 -0
  660. package/resolvers/filters/rangeFilter.d.ts +5 -0
  661. package/resolvers/filters/rangeFilter.js +122 -0
  662. package/resolvers/filters/rangeFilter.js.map +1 -0
  663. package/resolvers/filters/updateQueryString.d.ts +12 -0
  664. package/resolvers/filters/updateQueryString.js +117 -0
  665. package/resolvers/filters/updateQueryString.js.map +1 -0
  666. package/resolvers/index.d.ts +37 -0
  667. package/resolvers/index.js +38 -0
  668. package/resolvers/index.js.map +1 -0
  669. package/sentry/client.d.ts +1 -0
  670. package/sentry/client.js +30 -0
  671. package/sentry/client.js.map +1 -0
  672. package/sentry/common.d.ts +1 -0
  673. package/sentry/common.js +5 -0
  674. package/sentry/common.js.map +1 -0
  675. package/sentry/server.d.ts +1 -0
  676. package/sentry/server.js +20 -0
  677. package/sentry/server.js.map +1 -0
  678. package/sentry/utils.d.ts +1 -0
  679. package/sentry/utils.js +2 -0
  680. package/sentry/utils.js.map +1 -0
  681. package/server/graphql.d.ts +20 -0
  682. package/server/graphql.js +118 -0
  683. package/server/graphql.js.map +1 -0
  684. package/server/index.d.ts +2 -0
  685. package/server/index.js +3 -0
  686. package/server/index.js.map +1 -0
  687. package/server/tracking/facebook.d.ts +5 -0
  688. package/server/tracking/facebook.js +148 -0
  689. package/server/tracking/facebook.js.map +1 -0
  690. package/server/tracking/middleware.d.ts +8 -0
  691. package/server/tracking/middleware.js +15 -0
  692. package/server/tracking/middleware.js.map +1 -0
  693. package/test-utils/ProviderPyramid.js +1 -1
  694. package/time.d.ts +1 -0
  695. package/time.js +6 -0
  696. package/time.js.map +1 -0
  697. package/types.d.ts +1820 -1955
@@ -0,0 +1,34 @@
1
+ export const routeList = {
2
+ search: '/search',
3
+ signup: '/signup',
4
+ login: '/login',
5
+ logout: '/logout',
6
+ stores: '/stores',
7
+ store: '/store',
8
+ tree: '/tree',
9
+ myPages: '/my-pages',
10
+ forgotPassword: '/forgot-password',
11
+ resetPassword: '/reset-password',
12
+ preview: '/preview'
13
+ };
14
+ // This can be used to set defaults for shop.config.js
15
+ export function addMissingConfig(userConfig) {
16
+ if (!userConfig.pathsWithNoAuthRequired) {
17
+ userConfig.pathsWithNoAuthRequired = [
18
+ '/login',
19
+ '/reset-password',
20
+ '/forgot-password'
21
+ ];
22
+ }
23
+ if (!userConfig.loginPath) {
24
+ userConfig.loginPath = '/login';
25
+ }
26
+ if (!userConfig.routes)
27
+ userConfig.routes = {};
28
+ Object.keys(routeList).forEach((key) => {
29
+ if (!userConfig.routes.hasOwnProperty(key))
30
+ userConfig.routes[key] = { path: routeList[key] };
31
+ });
32
+ return userConfig;
33
+ }
34
+ //# sourceMappingURL=addMissingConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"addMissingConfig.js","sourceRoot":"","sources":["addMissingConfig.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,SAAS,GAA8B;IAClD,MAAM,EAAE,SAAS;IACjB,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,QAAQ;IACf,MAAM,EAAE,SAAS;IACjB,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,QAAQ;IACf,IAAI,EAAE,OAAO;IACb,OAAO,EAAE,WAAW;IACpB,cAAc,EAAE,kBAAkB;IAClC,aAAa,EAAE,iBAAiB;IAChC,OAAO,EAAE,UAAU;CACpB,CAAC;AAEF,sDAAsD;AACtD,MAAM,UAAU,gBAAgB,CAAC,UAAuB;IACtD,IAAI,CAAC,UAAU,CAAC,uBAAuB,EAAE;QACvC,UAAU,CAAC,uBAAuB,GAAG;YACnC,QAAQ;YACR,iBAAiB;YACjB,kBAAkB;SACnB,CAAC;KACH;IAED,IAAI,CAAC,UAAU,CAAC,SAAS,EAAE;QACzB,UAAU,CAAC,SAAS,GAAG,QAAQ,CAAC;KACjC;IAED,IAAI,CAAC,UAAU,CAAC,MAAM;QAAE,UAAU,CAAC,MAAM,GAAG,EAAE,CAAC;IAC/C,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;QACrC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,CAAC;YACxC,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,EAAE,SAAS,CAAC,GAAG,CAAC,EAAE,CAAC;IACtD,CAAC,CAAC,CAAC;IAEH,OAAO,UAAU,CAAC;AACpB,CAAC"}
@@ -0,0 +1,20 @@
1
+ import { ApolloClient, NormalizedCacheObject } from '@apollo/client';
2
+ import { Request } from 'express';
3
+ import { GraphQLSchema } from 'graphql';
4
+ import { ApolloConfig } from '../components/ConfigProvider';
5
+ import { AuthHandler } from './AuthHandler';
6
+ import { PreviewHandler } from './PreviewHandler';
7
+ import { SelectedChannel } from '../components/ChannelContext/ChannelContext';
8
+ import { ChannelHandler } from '../ChannelHandler/ChannelHandler';
9
+ export interface CreateClientOpts {
10
+ apolloConfig: ApolloConfig;
11
+ schema?: GraphQLSchema;
12
+ authHandler?: AuthHandler;
13
+ selectedChannel?: SelectedChannel;
14
+ previewHandler?: PreviewHandler;
15
+ req?: Request;
16
+ channelHandler?: ChannelHandler;
17
+ }
18
+ export declare const createClient: ({ apolloConfig: { token, shopid, enableGateway, graphQLURI, useGraphQLProxyServer }, schema, authHandler, previewHandler, req, channelHandler }: CreateClientOpts) => {
19
+ client: ApolloClient<NormalizedCacheObject>;
20
+ };
package/boot/apollo.js ADDED
@@ -0,0 +1,202 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { ApolloClient, ApolloLink, createHttpLink } from '@apollo/client';
13
+ import { onError } from '@apollo/client/link/error';
14
+ import { createPersistedQueryLink } from '@apollo/client/link/persisted-queries';
15
+ import { SchemaLink } from '@apollo/client/link/schema';
16
+ import qs from 'qs';
17
+ import createCache from '../data/cache';
18
+ import report from '../errorReporting';
19
+ import { resolvers } from '../resolvers';
20
+ import typeDefs from './client-schema.gql';
21
+ import { logOperationTime } from './utils/queryLoggingMiddleware';
22
+ import { link as networkStatusLink } from '@jetshop/core/boot/NetworkStatusNotifier';
23
+ export const createClient = ({ apolloConfig: { token, shopid, enableGateway, graphQLURI, useGraphQLProxyServer }, schema, authHandler, previewHandler, req, channelHandler }) => {
24
+ if (!token || !shopid) {
25
+ throw new Error(`Missing ${!token && `token`} ${!shopid && `shopid`}`);
26
+ }
27
+ const authHeaders = authHandler ? authHandler.getAuthHeaders() : {};
28
+ const previewHeaders = previewHandler
29
+ ? previewHandler.getPreviewHeaders()
30
+ : {};
31
+ const createLocalGraphqlServerLink = () => __IN_SERVER__
32
+ ? createHttpLink({
33
+ uri: `http://localhost:${process.env.PORT || 3000}/graphql`,
34
+ headers: {},
35
+ fetch: require('node-fetch').default
36
+ })
37
+ : createHttpLink({
38
+ uri: '/graphql',
39
+ headers: {}
40
+ });
41
+ const createGatewayLink = () => __IN_SERVER__
42
+ ? schema
43
+ ? new SchemaLink({
44
+ schema,
45
+ context: {
46
+ headers: Object.assign(Object.assign(Object.assign({}, ((channelHandler === null || channelHandler === void 0 ? void 0 : channelHandler.getChannelHeaders()) || {})), authHeaders), previewHeaders)
47
+ }
48
+ })
49
+ : createHttpLink({
50
+ uri: `http://localhost:${process.env.PORT || 3000}/graphql`,
51
+ headers: {},
52
+ fetch: require('node-fetch').default
53
+ })
54
+ : createHttpLink({
55
+ uri: '/graphql',
56
+ headers: {}
57
+ });
58
+ const createDirectLink = () => {
59
+ if (__IN_SERVER__) {
60
+ return createHttpLink({
61
+ uri: graphQLURI,
62
+ headers: {
63
+ token: token,
64
+ shopid: shopid
65
+ },
66
+ fetch: require('node-fetch').default,
67
+ fetchOptions: {
68
+ agent: graphQLURI.indexOf('https') === 0
69
+ ? new (require('https').Agent)({
70
+ keepAlive: true
71
+ })
72
+ : undefined
73
+ }
74
+ });
75
+ }
76
+ return createHttpLink({
77
+ uri: graphQLURI,
78
+ headers: {
79
+ token: token,
80
+ shopid: shopid
81
+ },
82
+ fetchOptions: {
83
+ keepAlive: true
84
+ }
85
+ });
86
+ };
87
+ const apiLink = useGraphQLProxyServer
88
+ ? createLocalGraphqlServerLink()
89
+ : enableGateway
90
+ ? createGatewayLink()
91
+ : createDirectLink();
92
+ const channelMiddleware = new ApolloLink((operation, forward) => {
93
+ // Sets the current channel before each new HTTP request is made
94
+ operation.setContext(({ headers = {} }) => ({
95
+ headers: Object.assign(Object.assign({}, headers), ((channelHandler === null || channelHandler === void 0 ? void 0 : channelHandler.getChannelHeaders()) || {}))
96
+ }));
97
+ return forward ? forward(operation) : null;
98
+ });
99
+ const authMiddleware = authHandler &&
100
+ new ApolloLink((operation, forward) => {
101
+ // Sets the auth token when a new request is made
102
+ authHandler.loadAuthToken();
103
+ operation.setContext(({ headers = {} }) => ({
104
+ headers: Object.assign(Object.assign({}, headers), authHandler.getAuthHeaders())
105
+ }));
106
+ return forward ? forward(operation) : null;
107
+ });
108
+ const previewMiddleware = previewHandler &&
109
+ new ApolloLink((operation, forward) => {
110
+ operation.setContext(({ headers = {} }) => ({
111
+ headers: Object.assign(Object.assign({}, headers), previewHandler.getPreviewHeaders())
112
+ }));
113
+ return forward ? forward(operation) : null;
114
+ });
115
+ const errorMiddleware = onError((_a) => {
116
+ var _b;
117
+ var { graphQLErrors, networkError, operation } = _a, rest = __rest(_a, ["graphQLErrors", "networkError", "operation"]);
118
+ if (graphQLErrors) {
119
+ graphQLErrors.forEach((error) => {
120
+ var _a;
121
+ const code = (_a = error === null || error === void 0 ? void 0 : error.extensions) === null || _a === void 0 ? void 0 : _a.code;
122
+ if (code === 'EmptyRoute') {
123
+ console.log(`[404 error at ${operation.variables.path}]`);
124
+ report(new Error(`MissingRoute: Attempted to access ${operation.variables.path}`));
125
+ }
126
+ else if (code === 'InvalidToken' || code === 'TokenExpired') {
127
+ authHandler.clearAuthToken();
128
+ if (typeof window !== 'undefined') {
129
+ window.location.href = '/';
130
+ }
131
+ }
132
+ else if (code === 'InvalidCreateCustomerInput' ||
133
+ code === 'UnableToLoginCustomer') {
134
+ // Don't report this to Sentry
135
+ console.log(error);
136
+ }
137
+ else {
138
+ console.log(error);
139
+ // Other graph errors will be logged to Sentry
140
+ report(new Error(`${error.message || code}`), Object.assign({
141
+ // Include all operation details (query etc)
142
+ operation,
143
+ code,
144
+ error,
145
+ graphQLErrors,
146
+ networkError }, rest));
147
+ }
148
+ });
149
+ }
150
+ // 503
151
+ if (networkError) {
152
+ // This is a hack, does it work? Todo eli5
153
+ const errors = (_b = networkError === null || networkError === void 0 ? void 0 : networkError.result) === null || _b === void 0 ? void 0 : _b.Errors;
154
+ if (errors) {
155
+ errors.forEach((error) => {
156
+ if ((error === null || error === void 0 ? void 0 : error.Message) === 'Token has expired') {
157
+ authHandler.clearAuthToken();
158
+ if (typeof window !== 'undefined') {
159
+ window.location.href = '/';
160
+ }
161
+ }
162
+ });
163
+ }
164
+ console.log(`[Network error]: ${networkError}`);
165
+ report(networkError);
166
+ }
167
+ });
168
+ const links = [
169
+ ...(__IN_SERVER__ ? [] : [networkStatusLink]),
170
+ errorMiddleware,
171
+ // Only add the middleware to the links array if the exist
172
+ ...(channelMiddleware ? [channelMiddleware] : []),
173
+ ...(authMiddleware ? [authMiddleware] : []),
174
+ ...(previewMiddleware ? [previewMiddleware] : []),
175
+ apiLink
176
+ ];
177
+ if (process.env.DEBUG_MODE === 'true') {
178
+ links.unshift(logOperationTime);
179
+ }
180
+ if (enableGateway) {
181
+ links.unshift(createPersistedQueryLink({
182
+ useGETForHashedQueries: true,
183
+ generateHash: () => {
184
+ return '';
185
+ }
186
+ }));
187
+ }
188
+ const link = ApolloLink.from(links);
189
+ const cache = createCache();
190
+ const client = new ApolloClient({
191
+ link,
192
+ assumeImmutableResults: true,
193
+ cache: __IN_SERVER__
194
+ ? cache
195
+ : cache.restore(window.__APOLLO_STATE__),
196
+ ssrMode: !!__IN_SERVER__,
197
+ resolvers: resolvers(qs.stringify(req === null || req === void 0 ? void 0 : req.query, { encode: true, encodeValuesOnly: true })),
198
+ typeDefs
199
+ });
200
+ return { client };
201
+ };
202
+ //# sourceMappingURL=apollo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apollo.js","sourceRoot":"","sources":["apollo.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ import 'src/client';
@@ -0,0 +1,5 @@
1
+ import 'src/client';
2
+ if (module.hot) {
3
+ module.hot.accept();
4
+ }
5
+ //# sourceMappingURL=entrypoint.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"entrypoint.js","sourceRoot":"","sources":["entrypoint.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,CAAC;AAEpB,IAAK,MAAc,CAAC,GAAG,EAAE;IACtB,MAAc,CAAC,GAAG,CAAC,MAAM,EAAE,CAAC;CAC9B"}
@@ -0,0 +1 @@
1
+ export { default } from './startClient';
@@ -0,0 +1,2 @@
1
+ export { default } from './startClient';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { BootOptions } from '../../components/ConfigProvider';
3
+ declare const main: (tree: ReactElement, config: BootOptions) => void;
4
+ export default main;
@@ -0,0 +1,153 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { setupIntl } from '@jetshop/intl/config';
11
+ import * as Sentry from '../../sentry/client';
12
+ import React from 'react';
13
+ import { Cookies } from 'react-cookie';
14
+ import { hydrateRoot } from 'react-dom/client';
15
+ import { loadableReady } from '@loadable/component';
16
+ import { BrowserRouter } from 'react-router-dom';
17
+ import { ChannelHandler } from '../../ChannelHandler/ChannelHandler';
18
+ import { getSelectedAndRecommendedChannel } from '../../ChannelHandler/channelUtils';
19
+ import { CartIdProvider } from '../../components/Cart/CartIdContext';
20
+ import logWarningInDev from '../../helpers/logWarningInDev';
21
+ import { getActiveFiltersFromSearch } from '../../resolvers/filters/filterParams';
22
+ import { createClient } from '../apollo';
23
+ import { AuthHandler } from '../AuthHandler';
24
+ import channelsQuery from '../ChannelsQuery.gql';
25
+ import { PreviewHandler } from '../PreviewHandler';
26
+ import SharedTree from '../SharedTree';
27
+ import createIntlOptions from '../utils/createIntOptions';
28
+ import { setUID } from '../utils/uid';
29
+ import { webVitals } from '../../analytics/webVitals';
30
+ import { primaryRouteForPathFetcher } from '../../../core/ChannelHandler/redirectUtils';
31
+ import ActiveFiltersQuery from '@jetshop/core/components/DynamicRoute/ActiveFiltersQuery.gql';
32
+ // Instantiate this here, since we need to read cookies outside of React.
33
+ const cookies = new Cookies();
34
+ function getInitialCacheData() {
35
+ return {
36
+ query: ActiveFiltersQuery,
37
+ data: {
38
+ activeFilters: getActiveFiltersFromSearch(document.location.search)
39
+ }
40
+ };
41
+ }
42
+ let root;
43
+ const startClient = (tree, config) => {
44
+ if (!config.apolloConfig.channelsQuery) {
45
+ logWarningInDev(true, `No channelsQuery was provided in the apolloConfig, which is a
46
+ deprecated behaviour. Please update your shop.config.js to include the
47
+ ChannelsQuery to avoid breaking in the next major release. See
48
+ https://gitlab.jetshop.se/jetshop/flight/blob/master/packages/template-trend/src/ChannelsQuery.gql
49
+ for a reference implementation`);
50
+ }
51
+ // This is used by cypress to get the shopid when running universal cypress test
52
+ window.shopid = config.apolloConfig.shopid;
53
+ if (process.env.REACT_APP_REPORT_WEB_VITALS) {
54
+ webVitals({
55
+ shopId: config.apolloConfig.shopid,
56
+ apiUrl: config.apolloConfig.graphQLURI
57
+ });
58
+ }
59
+ if (config.sentry && config.sentry.clientDSN) {
60
+ Sentry.init(config.sentry.clientDSN);
61
+ }
62
+ const { apolloConfig } = config;
63
+ const authHandler = new AuthHandler({
64
+ cookies
65
+ });
66
+ const previewHandler = new PreviewHandler();
67
+ const channelHandler = new ChannelHandler();
68
+ const { client } = createClient({
69
+ apolloConfig,
70
+ authHandler,
71
+ previewHandler,
72
+ channelHandler
73
+ });
74
+ channelHandler.setGetPrimaryRoutePath(primaryRouteForPathFetcher(client));
75
+ const initialCacheData = getInitialCacheData();
76
+ // Initialise cache with active filters from the search params
77
+ client.cache.writeQuery(initialCacheData);
78
+ // If cache is reseted, we reset the initial cache data
79
+ client.onResetStore(() => __awaiter(void 0, void 0, void 0, function* () { return client.cache.writeQuery(initialCacheData); }));
80
+ client
81
+ .query({
82
+ query: config.apolloConfig.channelsQuery || channelsQuery
83
+ })
84
+ .then(({ data }) => {
85
+ const channels = data.channels;
86
+ const geoipCountry = window.__GEOIP_COUNTRY__;
87
+ const acceptedLanguages = JSON.parse(window.__ACCEPTED_LANGUAGES__);
88
+ const { selectedChannel, recommendedChannel, group } = getSelectedAndRecommendedChannel({
89
+ url: window.location.href,
90
+ cookies,
91
+ channels,
92
+ singleDomainMode: config.singleDomainMode,
93
+ geoipCountry,
94
+ acceptedLanguages
95
+ });
96
+ channelHandler.setSelectedChannel(selectedChannel);
97
+ channelHandler.setRecommendedChannel(recommendedChannel);
98
+ channelHandler.setChannels(channels);
99
+ channelHandler.setChannelGroup(group);
100
+ const channelOverrides = config.channelOverrides && selectedChannel.name
101
+ ? config.channelOverrides[selectedChannel.name]
102
+ : {};
103
+ const { intl } = Object.assign(Object.assign({}, config), channelOverrides);
104
+ const intlOptions = createIntlOptions({
105
+ selectedChannel,
106
+ options: intl.options
107
+ });
108
+ return setupIntl({
109
+ translations: intl.translations,
110
+ locale: selectedChannel.language.culture,
111
+ defaultLocale: intl.defaultLocale,
112
+ options: intlOptions
113
+ }).then(() => {
114
+ const activeBreakpoint = window.__ACTIVE_BREAKPOINT__;
115
+ const releware = {
116
+ enabled: config.relewareEnabled,
117
+ baseUrl: document.domain,
118
+ uid: config.relewareEnabled ? setUID(cookies) : null
119
+ };
120
+ // Disable client network fetch during SSR, and re-enable it after
121
+ // hydration. This prevents `cache-and-network` routes from re-fetching
122
+ // immediately after hydration
123
+ client.disableNetworkFetches = true;
124
+ const wrappedTree = (React.createElement(SharedTree, { activeBreakpoint: activeBreakpoint, config: config, cookies: cookies, releware: releware, client: client, Router: BrowserRouter, authHandler: authHandler, channelHandler: channelHandler, previewHandler: previewHandler },
125
+ React.createElement(CartIdProvider, null, tree)));
126
+ return wrappedTree;
127
+ });
128
+ })
129
+ .then((tree) => {
130
+ return loadableReady(() => {
131
+ if (root) {
132
+ // If the root is already set,
133
+ // we know that we are in a hot reload and we want to render the new tree into the existing root.
134
+ root.render(tree);
135
+ }
136
+ else {
137
+ root = hydrateRoot(document.getElementById('root'), tree);
138
+ }
139
+ });
140
+ });
141
+ };
142
+ const main = (tree, config) => {
143
+ // If the polyFillsLoaded flag is set to true then we know that the polyFills have been loaded and we can start the client.
144
+ if (window.polyFillsLoaded) {
145
+ return startClient(tree, config);
146
+ }
147
+ else {
148
+ // If the polyfills have not been loaded we want to replace the bootShop to start the client instead so that once the polyfills are loaded, bootShop will start the client.
149
+ window.bootShop = () => startClient(tree, config);
150
+ }
151
+ };
152
+ export default main;
153
+ //# sourceMappingURL=startClient.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"startClient.js","sourceRoot":"","sources":["startClient.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,32 @@
1
+ import { OperationVariables } from '@apollo/client';
2
+ import { DocumentNode } from 'graphql';
3
+ import { CreateClientOpts } from '../apollo';
4
+ import { ChannelHeaders } from './persistedQueries/PersistedClient';
5
+ export type ErrorCallback = (err: Error) => void;
6
+ export interface IntervalQueryOptions {
7
+ query: DocumentNode;
8
+ pollInterval: number;
9
+ createClientOpts: CreateClientOpts;
10
+ variables?: OperationVariables;
11
+ onError?: ErrorCallback;
12
+ }
13
+ export declare class IntervalQuery<ResponseShape> {
14
+ private pendingResponse?;
15
+ private lastResponse?;
16
+ private query;
17
+ private client?;
18
+ private createClientOpts;
19
+ private variables?;
20
+ private timeout;
21
+ private onError?;
22
+ private pollInterval;
23
+ private channelHeaders?;
24
+ constructor({ query, variables, createClientOpts, pollInterval, onError, headers }: IntervalQueryOptions & {
25
+ headers?: ChannelHeaders;
26
+ });
27
+ private scheduleNext;
28
+ private executeQuery;
29
+ results(): Promise<ResponseShape>;
30
+ getPendingResponse(): Promise<ResponseShape | undefined>;
31
+ extractCache(): any;
32
+ }
@@ -0,0 +1,95 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { createClient } from '../apollo';
11
+ export class IntervalQuery {
12
+ constructor({ query, variables, createClientOpts, pollInterval, onError, headers }) {
13
+ this.query = query;
14
+ this.createClientOpts = createClientOpts;
15
+ this.client = createClient(createClientOpts).client;
16
+ this.variables = variables;
17
+ this.onError = onError;
18
+ this.pollInterval = pollInterval;
19
+ this.channelHeaders = headers;
20
+ this.executeQuery();
21
+ this.scheduleNext();
22
+ if (typeof process !== 'undefined' && process.on) {
23
+ process.on('SIGTERM', () => {
24
+ clearTimeout(this.timeout);
25
+ });
26
+ }
27
+ }
28
+ scheduleNext() {
29
+ this.timeout = setTimeout(() => {
30
+ this.scheduleNext();
31
+ this.executeQuery();
32
+ }, this.pollInterval);
33
+ }
34
+ executeQuery() {
35
+ const { client } = createClient(this.createClientOpts);
36
+ const pendingResponse = client
37
+ .query({
38
+ query: this.query,
39
+ variables: this.variables,
40
+ fetchPolicy: 'network-only',
41
+ context: {
42
+ headers: this.channelHeaders
43
+ }
44
+ })
45
+ .then((resp) => {
46
+ const { data } = resp;
47
+ if (pendingResponse !== this.pendingResponse) {
48
+ // response expired
49
+ return data;
50
+ }
51
+ this.pendingResponse = undefined;
52
+ this.lastResponse = data;
53
+ // https://www.apollographql.com/docs/react/api/apollo-client/#ApolloClient.stop
54
+ // Stop any active client processes
55
+ this.client.stop();
56
+ this.client = client;
57
+ return data;
58
+ });
59
+ pendingResponse.catch((err) => {
60
+ if (pendingResponse !== this.pendingResponse) {
61
+ // response expired
62
+ return;
63
+ }
64
+ this.pendingResponse = undefined;
65
+ if (this.onError) {
66
+ this.onError(err);
67
+ }
68
+ });
69
+ this.pendingResponse = pendingResponse;
70
+ return this.pendingResponse;
71
+ }
72
+ results() {
73
+ return __awaiter(this, void 0, void 0, function* () {
74
+ if (this.lastResponse) {
75
+ return this.lastResponse;
76
+ }
77
+ if (this.pendingResponse) {
78
+ return this.pendingResponse;
79
+ }
80
+ return this.executeQuery();
81
+ });
82
+ }
83
+ getPendingResponse() {
84
+ return __awaiter(this, void 0, void 0, function* () {
85
+ return this.pendingResponse;
86
+ });
87
+ }
88
+ extractCache() {
89
+ if (!this.client) {
90
+ throw new Error('No queries has succeeded yet');
91
+ }
92
+ return this.client.extract();
93
+ }
94
+ }
95
+ //# sourceMappingURL=IntervalQuery.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IntervalQuery.js","sourceRoot":"","sources":["IntervalQuery.ts"],"names":[],"mappings":";;;;;;;;;AAEA,OAAO,EAAE,YAAY,EAAoB,MAAM,WAAW,CAAC;AAa3D,MAAM,OAAO,aAAa;IAYxB,YAAY,EACV,KAAK,EACL,SAAS,EACT,gBAAgB,EAChB,YAAY,EACZ,OAAO,EACP,OAAO,EAC6C;QACpD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;QACzC,IAAI,CAAC,MAAM,GAAG,YAAY,CAAC,gBAAgB,CAAC,CAAC,MAAM,CAAC;QACpD,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC;QAE9B,IAAI,CAAC,YAAY,EAAE,CAAC;QACpB,IAAI,CAAC,YAAY,EAAE,CAAC;QACpB,IAAI,OAAO,OAAO,KAAK,WAAW,IAAI,OAAO,CAAC,EAAE,EAAE;YAChD,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,EAAE;gBACzB,YAAY,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;YAC7B,CAAC,CAAC,CAAC;SACJ;IACH,CAAC;IAEO,YAAY;QAClB,IAAI,CAAC,OAAO,GAAG,UAAU,CAAC,GAAG,EAAE;YAC7B,IAAI,CAAC,YAAY,EAAE,CAAC;YACpB,IAAI,CAAC,YAAY,EAAE,CAAC;QACtB,CAAC,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;IACxB,CAAC;IAEO,YAAY;QAClB,MAAM,EAAE,MAAM,EAAE,GAAG,YAAY,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAEvD,MAAM,eAAe,GAAG,MAAM;aAC3B,KAAK,CAAgB;YACpB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,WAAW,EAAE,cAAc;YAC3B,OAAO,EAAE;gBACP,OAAO,EAAE,IAAI,CAAC,cAAc;aAC7B;SACF,CAAC;aACD,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;YACb,MAAM,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC;YACtB,IAAI,eAAe,KAAK,IAAI,CAAC,eAAe,EAAE;gBAC5C,mBAAmB;gBACnB,OAAO,IAAI,CAAC;aACb;YACD,IAAI,CAAC,eAAe,GAAG,SAAS,CAAC;YACjC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;YACzB,gFAAgF;YAChF,mCAAmC;YACnC,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;YACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;YAErB,OAAO,IAAI,CAAC;QACd,CAAC,CAAC,CAAC;QACL,eAAe,CAAC,KAAK,CAAC,CAAC,GAAG,EAAE,EAAE;YAC5B,IAAI,eAAe,KAAK,IAAI,CAAC,eAAe,EAAE;gBAC5C,mBAAmB;gBACnB,OAAO;aACR;YACD,IAAI,CAAC,eAAe,GAAG,SAAS,CAAC;YACjC,IAAI,IAAI,CAAC,OAAO,EAAE;gBAChB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;aACnB;QACH,CAAC,CAAC,CAAC;QACH,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,OAAO,IAAI,CAAC,eAAe,CAAC;IAC9B,CAAC;IAEK,OAAO;;YACX,IAAI,IAAI,CAAC,YAAY,EAAE;gBACrB,OAAO,IAAI,CAAC,YAAY,CAAC;aAC1B;YACD,IAAI,IAAI,CAAC,eAAe,EAAE;gBACxB,OAAO,IAAI,CAAC,eAAe,CAAC;aAC7B;YACD,OAAO,IAAI,CAAC,YAAY,EAAE,CAAC;QAC7B,CAAC;KAAA;IAEK,kBAAkB;;YACtB,OAAO,IAAI,CAAC,eAAe,CAAC;QAC9B,CAAC;KAAA;IAED,YAAY;QACV,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE;YAChB,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;SACjD;QACD,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;IAC/B,CAAC;CACF"}
@@ -1,14 +1,12 @@
1
- // TODO
2
- // File reverted from TypeScript, should be reverted when pipeline supports it
3
- // https://gitlab.jetshop.se/jetshop/flight/merge_requests/409/diffs?commit_id=d30490f833ec2d2eec94e5a75ed99de71e666377
4
- // https://gitlab.jetshop.se/jetshop/flight/blob/94b6108017f6205e7d31f6bedb19c14f278d227a/packages/core/boot/server/IntervalQuery.test.ts
5
-
6
- import { InMemoryCache } from 'apollo-cache-inmemory';
7
- import { HttpLink } from 'apollo-link-http';
8
- import ApolloClient, { ApolloError } from 'apollo-client';
1
+ import {
2
+ ApolloClient,
3
+ ApolloError,
4
+ InMemoryCache,
5
+ HttpLink,
6
+ gql
7
+ } from '@apollo/client';
9
8
  import { IntervalQuery } from './IntervalQuery';
10
9
  import nock from 'nock';
11
- import gql from 'graphql-tag';
12
10
  beforeAll(() => {
13
11
  jest.useFakeTimers();
14
12
  nock.disableNetConnect();
@@ -46,16 +44,14 @@ function mockResponse({ channels = null, statusCode = 200, errors }) {
46
44
  errors,
47
45
  data: {
48
46
  channels: Array.isArray(channels)
49
- ? channels.map(channel =>
47
+ ? channels.map((channel) =>
50
48
  Object.assign({ __typename: 'Channel' }, channel)
51
49
  )
52
50
  : null
53
51
  }
54
52
  };
55
53
  const res = jest.fn(() => data);
56
- nock('http://localhost')
57
- .post('/graphql')
58
- .reply(statusCode, res);
54
+ nock('http://localhost').post('/graphql').reply(statusCode, res);
59
55
  return res;
60
56
  }
61
57
  test('does request on init', async () => {