@shopify/hydrogen 0.23.0 → 0.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (613) hide show
  1. package/CHANGELOG.md +173 -0
  2. package/dist/esnext/components/AddToCartButton/AddToCartButton.client.d.ts +2 -5
  3. package/dist/esnext/components/AddToCartButton/AddToCartButton.client.js +15 -14
  4. package/dist/esnext/components/BaseButton/BaseButton.client.d.ts +14 -0
  5. package/dist/esnext/components/BaseButton/BaseButton.client.js +15 -0
  6. package/dist/esnext/components/BaseButton/index.d.ts +1 -0
  7. package/dist/esnext/components/BaseButton/index.js +1 -0
  8. package/dist/esnext/components/BuyNowButton/BuyNowButton.client.d.ts +2 -5
  9. package/dist/esnext/components/BuyNowButton/BuyNowButton.client.js +5 -4
  10. package/dist/esnext/components/CartEstimatedCost/CartEstimatedCost.client.js +4 -4
  11. package/dist/esnext/components/CartLinePrice/CartLinePrice.client.js +5 -8
  12. package/dist/esnext/components/CartLineProvider/context.d.ts +10 -0
  13. package/dist/esnext/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +4 -5
  14. package/dist/esnext/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +16 -14
  15. package/dist/esnext/components/CartLines/CartLines.client.js +1 -1
  16. package/dist/esnext/components/CartProvider/CartProvider.client.js +31 -38
  17. package/dist/esnext/components/CartProvider/cart-queries.d.ts +1 -1
  18. package/dist/esnext/components/CartProvider/cart-queries.js +11 -0
  19. package/dist/esnext/components/CartProvider/graphql/CartAttributesUpdateMutation.d.ts +11 -1
  20. package/dist/esnext/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.d.ts +11 -1
  21. package/dist/esnext/components/CartProvider/graphql/CartCreateMutation.d.ts +11 -1
  22. package/dist/esnext/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.d.ts +11 -1
  23. package/dist/esnext/components/CartProvider/graphql/CartFragment.d.ts +11 -1
  24. package/dist/esnext/components/CartProvider/graphql/CartLineAddMutation.d.ts +11 -1
  25. package/dist/esnext/components/CartProvider/graphql/CartLineRemoveMutation.d.ts +11 -1
  26. package/dist/esnext/components/CartProvider/graphql/CartLineUpdateMutation.d.ts +11 -1
  27. package/dist/esnext/components/CartProvider/graphql/CartNoteUpdateMutation.d.ts +11 -1
  28. package/dist/esnext/components/CartProvider/graphql/CartQuery.d.ts +11 -1
  29. package/dist/esnext/components/CartProvider/hooks.client.js +5 -8
  30. package/dist/esnext/components/CartProvider/types.d.ts +2 -0
  31. package/dist/esnext/components/ExternalVideo/ExternalVideo.js +1 -1
  32. package/dist/esnext/components/Image/Image.d.ts +13 -0
  33. package/dist/esnext/components/Image/Image.js +46 -20
  34. package/dist/esnext/components/Link/Link.client.js +1 -1
  35. package/dist/esnext/components/LocalizationProvider/LocalizationProvider.server.js +2 -2
  36. package/dist/esnext/components/Metafield/Metafield.client.d.ts +6 -10
  37. package/dist/esnext/components/Metafield/Metafield.client.js +67 -31
  38. package/dist/esnext/components/Metafield/components/StarRating/StarRating.js +1 -1
  39. package/dist/esnext/components/ModelViewer/ModelViewer.client.js +2 -3
  40. package/dist/esnext/components/Money/Money.client.js +1 -1
  41. package/dist/esnext/components/ProductOptionsProvider/ProductOptionsProvider.client.js +22 -29
  42. package/dist/esnext/components/ProductPrice/ProductPrice.client.js +7 -7
  43. package/dist/esnext/components/Seo/CollectionSeo.client.js +2 -3
  44. package/dist/esnext/components/Seo/DefaultPageSeo.client.js +3 -3
  45. package/dist/esnext/components/Seo/NoIndexSeo.client.js +2 -2
  46. package/dist/esnext/components/Seo/PageSeo.client.js +2 -3
  47. package/dist/esnext/components/Seo/ProductSeo.client.js +9 -10
  48. package/dist/esnext/components/ShopPayButton/ShopPayButton.client.js +2 -3
  49. package/dist/esnext/components/Video/Video.js +2 -3
  50. package/dist/esnext/config.d.ts +4 -0
  51. package/dist/esnext/config.js +4 -0
  52. package/dist/esnext/constants.d.ts +2 -0
  53. package/dist/esnext/constants.js +2 -0
  54. package/dist/esnext/entry-client.js +5 -19
  55. package/dist/esnext/entry-server.d.ts +1 -17
  56. package/dist/esnext/entry-server.js +191 -50
  57. package/dist/esnext/foundation/Analytics/ClientAnalytics.js +4 -4
  58. package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.d.ts +4 -0
  59. package/dist/esnext/foundation/Analytics/{ServerAnalyticsRoute.server.js → ServerAnalyticsRoute.js} +5 -4
  60. package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.d.ts +3 -0
  61. package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.js +27 -0
  62. package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.d.ts +3 -0
  63. package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.js +21 -0
  64. package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.server.js +2 -3
  65. package/dist/esnext/foundation/BuiltInRoutes/BuiltInRoutes.d.ts +2 -0
  66. package/dist/esnext/foundation/BuiltInRoutes/BuiltInRoutes.js +23 -0
  67. package/dist/esnext/foundation/BuiltInRoutes/healthCheck.d.ts +1 -0
  68. package/dist/esnext/foundation/BuiltInRoutes/healthCheck.js +3 -0
  69. package/dist/esnext/foundation/Cache/cache-sub-request.js +2 -2
  70. package/dist/esnext/foundation/Cache/cache.js +2 -2
  71. package/dist/esnext/foundation/Cache/strategies/index.d.ts +4 -7
  72. package/dist/esnext/foundation/Cache/strategies/index.js +7 -49
  73. package/dist/esnext/foundation/Cookie/Cookie.js +5 -0
  74. package/dist/esnext/foundation/DevTools/DevTools.client.d.ts +3 -0
  75. package/dist/esnext/foundation/DevTools/DevTools.client.js +17 -0
  76. package/dist/esnext/foundation/DevTools/DevTools.server.d.ts +1 -0
  77. package/dist/esnext/foundation/DevTools/DevTools.server.js +14 -0
  78. package/dist/esnext/foundation/DevTools/components/GraphQL.client.d.ts +1 -0
  79. package/dist/esnext/foundation/DevTools/components/GraphQL.client.js +25 -0
  80. package/dist/esnext/foundation/DevTools/components/Heading.d.ts +5 -0
  81. package/dist/esnext/foundation/DevTools/components/Heading.js +12 -0
  82. package/dist/esnext/foundation/DevTools/components/Interface.client.d.ts +11 -0
  83. package/dist/esnext/foundation/DevTools/components/Interface.client.js +47 -0
  84. package/dist/esnext/foundation/DevTools/components/Panels.d.ts +8 -0
  85. package/dist/esnext/foundation/DevTools/components/Panels.js +60 -0
  86. package/dist/esnext/foundation/DevTools/components/Performance.client.d.ts +14 -0
  87. package/dist/esnext/foundation/DevTools/components/Performance.client.js +26 -0
  88. package/dist/esnext/foundation/DevTools/components/Settings.client.d.ts +7 -0
  89. package/dist/esnext/foundation/DevTools/components/Settings.client.js +20 -0
  90. package/dist/esnext/foundation/DevTools/components/Table.d.ts +9 -0
  91. package/dist/esnext/foundation/DevTools/components/Table.js +7 -0
  92. package/dist/esnext/foundation/DevTools/components/icons.d.ts +2 -0
  93. package/dist/esnext/foundation/DevTools/components/icons.js +13 -0
  94. package/dist/esnext/foundation/DevTools/components/index.d.ts +2 -0
  95. package/dist/esnext/foundation/DevTools/components/index.js +2 -0
  96. package/dist/esnext/foundation/FileRoutes/FileRoutes.server.js +4 -4
  97. package/dist/esnext/foundation/Html/Html.js +4 -7
  98. package/dist/esnext/foundation/HydrogenRequest/HydrogenRequest.server.d.ts +10 -4
  99. package/dist/esnext/foundation/HydrogenRequest/HydrogenRequest.server.js +69 -11
  100. package/dist/esnext/foundation/HydrogenResponse/HydrogenResponse.server.d.ts +5 -7
  101. package/dist/esnext/foundation/HydrogenResponse/HydrogenResponse.server.js +22 -20
  102. package/dist/esnext/foundation/Router/BrowserRouter.client.js +1 -2
  103. package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +1 -2
  104. package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.js +17 -22
  105. package/dist/esnext/foundation/ShopifyProvider/ShopifyProvider.server.js +3 -5
  106. package/dist/esnext/foundation/fetchSync/server/fetchSync.js +1 -1
  107. package/dist/esnext/foundation/useNavigate/useNavigate.js +3 -4
  108. package/dist/esnext/foundation/useQuery/hooks.d.ts +1 -0
  109. package/dist/esnext/foundation/useQuery/hooks.js +25 -17
  110. package/dist/esnext/foundation/useRequestContext/index.d.ts +15 -0
  111. package/dist/esnext/foundation/useRequestContext/index.js +23 -0
  112. package/dist/esnext/foundation/useServerProps/use-server-props.js +2 -2
  113. package/dist/esnext/foundation/useSession/useSession.js +1 -2
  114. package/dist/esnext/foundation/useUrl/useUrl.js +1 -2
  115. package/dist/esnext/framework/cache/in-memory.js +3 -3
  116. package/dist/esnext/framework/middleware.d.ts +1 -1
  117. package/dist/esnext/framework/middleware.js +3 -4
  118. package/dist/esnext/framework/plugin.d.ts +7 -3
  119. package/dist/esnext/framework/plugin.js +2 -1
  120. package/dist/esnext/framework/plugins/vite-plugin-client-imports.js +1 -1
  121. package/dist/esnext/framework/plugins/vite-plugin-hydrogen-config.js +70 -67
  122. package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.d.ts +1 -1
  123. package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.js +2 -3
  124. package/dist/esnext/framework/plugins/vite-plugin-hydrogen-rsc.js +1 -1
  125. package/dist/esnext/framework/plugins/vite-plugin-hydrogen-virtual-files.d.ts +1 -1
  126. package/dist/esnext/framework/plugins/vite-plugin-hydrogen-virtual-files.js +6 -4
  127. package/dist/esnext/framework/types.d.ts +5 -0
  128. package/dist/esnext/framework/types.js +1 -0
  129. package/dist/esnext/hooks/index.d.ts +0 -1
  130. package/dist/esnext/hooks/index.js +0 -1
  131. package/dist/esnext/hooks/useCartLine/useCartLine.d.ts +10 -0
  132. package/dist/esnext/hooks/useMoney/hooks.js +53 -39
  133. package/dist/esnext/hooks/useProductOptions/helpers.js +6 -10
  134. package/dist/esnext/hooks/useProductOptions/types.d.ts +1 -1
  135. package/dist/esnext/hooks/useShopQuery/hooks.js +18 -12
  136. package/dist/esnext/index.d.ts +4 -5
  137. package/dist/esnext/index.js +2 -5
  138. package/dist/{node/entry-server.d.ts → esnext/shared-types.d.ts} +11 -7
  139. package/dist/esnext/shared-types.js +4 -0
  140. package/dist/esnext/storefront-api-types.d.ts +37 -443
  141. package/dist/esnext/streaming.server.d.ts +9 -18
  142. package/dist/esnext/streaming.server.js +2 -7
  143. package/dist/esnext/types.d.ts +9 -18
  144. package/dist/esnext/types.js +1 -1
  145. package/dist/esnext/utilities/apiRoutes.d.ts +7 -3
  146. package/dist/esnext/utilities/apiRoutes.js +6 -4
  147. package/dist/esnext/utilities/devtools.d.ts +1 -1
  148. package/dist/esnext/utilities/devtools.js +3 -3
  149. package/dist/esnext/utilities/flattenConnection/flattenConnection.d.ts +1 -0
  150. package/dist/esnext/utilities/flattenConnection/flattenConnection.js +13 -6
  151. package/dist/esnext/utilities/graphql-tracker.js +6 -8
  152. package/dist/esnext/utilities/hash.d.ts +2 -2
  153. package/dist/esnext/utilities/hash.js +29 -6
  154. package/dist/esnext/utilities/image_size.d.ts +24 -3
  155. package/dist/esnext/utilities/image_size.js +53 -31
  156. package/dist/esnext/utilities/index.d.ts +1 -1
  157. package/dist/esnext/utilities/index.js +1 -1
  158. package/dist/esnext/utilities/load_script.js +1 -1
  159. package/dist/esnext/utilities/log/log-cache-api-status.js +3 -2
  160. package/dist/esnext/utilities/log/log-query-timeline.js +29 -10
  161. package/dist/esnext/utilities/log/log.js +1 -2
  162. package/dist/esnext/utilities/log/utils.js +1 -6
  163. package/dist/esnext/utilities/parseMetafield/index.d.ts +1 -0
  164. package/dist/esnext/utilities/parseMetafield/index.js +1 -0
  165. package/dist/esnext/utilities/parseMetafield/parseMetafield.d.ts +15 -0
  166. package/dist/esnext/utilities/{parseMetafieldValue/parseMetafieldValue.js → parseMetafield/parseMetafield.js} +28 -2
  167. package/dist/esnext/utilities/storefrontApi.js +9 -5
  168. package/dist/esnext/utilities/template.js +1 -2
  169. package/dist/esnext/utilities/web-api-polyfill.js +6 -0
  170. package/dist/esnext/version.d.ts +1 -1
  171. package/dist/esnext/version.js +1 -1
  172. package/dist/node/framework/cache/in-memory.js +3 -3
  173. package/dist/node/framework/middleware.d.ts +1 -1
  174. package/dist/node/framework/middleware.js +3 -4
  175. package/dist/node/framework/plugin.d.ts +4 -3
  176. package/dist/node/framework/plugin.js +3 -2
  177. package/dist/node/framework/plugins/vite-plugin-client-imports.js +1 -1
  178. package/dist/node/framework/plugins/vite-plugin-hydrogen-config.js +70 -67
  179. package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.d.ts +1 -1
  180. package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.js +2 -3
  181. package/dist/node/framework/plugins/vite-plugin-hydrogen-rsc.js +2 -2
  182. package/dist/node/framework/plugins/vite-plugin-hydrogen-virtual-files.d.ts +1 -1
  183. package/dist/node/framework/plugins/vite-plugin-hydrogen-virtual-files.js +6 -4
  184. package/dist/node/framework/types.d.ts +5 -0
  185. package/dist/node/{components/CartProvider → framework}/types.js +0 -0
  186. package/dist/node/shared-types.d.ts +26 -0
  187. package/dist/node/shared-types.js +5 -0
  188. package/dist/node/utilities/web-api-polyfill.js +6 -0
  189. package/package.json +32 -26
  190. package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-plugin.js +100 -36
  191. package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.development.server.js +50 -13
  192. package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.production.min.server.js +28 -27
  193. package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.development.server.js +50 -13
  194. package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.production.min.server.js +28 -28
  195. package/vendor/react-server-dom-vite/esm/react-server-dom-vite-client-proxy.js +3 -5
  196. package/vendor/react-server-dom-vite/esm/react-server-dom-vite-plugin.js +100 -36
  197. package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.browser.server.js +50 -13
  198. package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.node.server.js +50 -13
  199. package/client.d.ts +0 -1
  200. package/client.js +0 -1
  201. package/config.d.ts +0 -1
  202. package/config.js +0 -1
  203. package/dist/esnext/components/DevTools.client.d.ts +0 -1
  204. package/dist/esnext/components/DevTools.client.js +0 -129
  205. package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.server.d.ts +0 -2
  206. package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.d.ts +0 -1
  207. package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.js +0 -25
  208. package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.d.ts +0 -1
  209. package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.js +0 -19
  210. package/dist/esnext/framework/Hydration/rsc.d.ts +0 -8
  211. package/dist/esnext/framework/Hydration/rsc.js +0 -102
  212. package/dist/esnext/hooks/useParsedMetafields/index.d.ts +0 -1
  213. package/dist/esnext/hooks/useParsedMetafields/index.js +0 -1
  214. package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.d.ts +0 -21
  215. package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.js +0 -21
  216. package/dist/esnext/utilities/parseMetafieldValue/index.d.ts +0 -1
  217. package/dist/esnext/utilities/parseMetafieldValue/index.js +0 -1
  218. package/dist/esnext/utilities/parseMetafieldValue/parseMetafieldValue.d.ts +0 -6
  219. package/dist/node/client.d.ts +0 -16
  220. package/dist/node/client.js +0 -43
  221. package/dist/node/components/AddToCartButton/AddToCartButton.client.d.ts +0 -23
  222. package/dist/node/components/AddToCartButton/AddToCartButton.client.js +0 -74
  223. package/dist/node/components/AddToCartButton/index.d.ts +0 -1
  224. package/dist/node/components/AddToCartButton/index.js +0 -5
  225. package/dist/node/components/BuyNowButton/BuyNowButton.client.d.ts +0 -18
  226. package/dist/node/components/BuyNowButton/BuyNowButton.client.js +0 -53
  227. package/dist/node/components/BuyNowButton/index.d.ts +0 -1
  228. package/dist/node/components/BuyNowButton/index.js +0 -5
  229. package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.d.ts +0 -11
  230. package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.js +0 -44
  231. package/dist/node/components/CartCheckoutButton/index.d.ts +0 -1
  232. package/dist/node/components/CartCheckoutButton/index.js +0 -5
  233. package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.d.ts +0 -14
  234. package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.js +0 -36
  235. package/dist/node/components/CartEstimatedCost/index.d.ts +0 -1
  236. package/dist/node/components/CartEstimatedCost/index.js +0 -5
  237. package/dist/node/components/CartLineImage/CartLineImage.client.d.ts +0 -9
  238. package/dist/node/components/CartLineImage/CartLineImage.client.js +0 -18
  239. package/dist/node/components/CartLineImage/index.d.ts +0 -1
  240. package/dist/node/components/CartLineImage/index.js +0 -5
  241. package/dist/node/components/CartLinePrice/CartLinePrice.client.d.ts +0 -12
  242. package/dist/node/components/CartLinePrice/CartLinePrice.client.js +0 -28
  243. package/dist/node/components/CartLinePrice/index.d.ts +0 -1
  244. package/dist/node/components/CartLinePrice/index.js +0 -5
  245. package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.d.ts +0 -8
  246. package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.js +0 -19
  247. package/dist/node/components/CartLineProductTitle/index.d.ts +0 -1
  248. package/dist/node/components/CartLineProductTitle/index.js +0 -5
  249. package/dist/node/components/CartLineProvider/CartLineProvider.client.d.ts +0 -11
  250. package/dist/node/components/CartLineProvider/CartLineProvider.client.js +0 -15
  251. package/dist/node/components/CartLineProvider/context.d.ts +0 -26
  252. package/dist/node/components/CartLineProvider/context.js +0 -5
  253. package/dist/node/components/CartLineProvider/index.d.ts +0 -2
  254. package/dist/node/components/CartLineProvider/index.js +0 -7
  255. package/dist/node/components/CartLineQuantity/CartLineQuantity.client.d.ts +0 -8
  256. package/dist/node/components/CartLineQuantity/CartLineQuantity.client.js +0 -19
  257. package/dist/node/components/CartLineQuantity/index.d.ts +0 -1
  258. package/dist/node/components/CartLineQuantity/index.js +0 -5
  259. package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +0 -14
  260. package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +0 -31
  261. package/dist/node/components/CartLineQuantityAdjustButton/index.d.ts +0 -1
  262. package/dist/node/components/CartLineQuantityAdjustButton/index.js +0 -5
  263. package/dist/node/components/CartLines/CartLines.client.d.ts +0 -15
  264. package/dist/node/components/CartLines/CartLines.client.js +0 -44
  265. package/dist/node/components/CartLines/index.d.ts +0 -1
  266. package/dist/node/components/CartLines/index.js +0 -5
  267. package/dist/node/components/CartProvider/CartProvider.client.d.ts +0 -41
  268. package/dist/node/components/CartProvider/CartProvider.client.js +0 -550
  269. package/dist/node/components/CartProvider/cart-queries.d.ts +0 -10
  270. package/dist/node/components/CartProvider/cart-queries.js +0 -203
  271. package/dist/node/components/CartProvider/constants.d.ts +0 -2
  272. package/dist/node/components/CartProvider/constants.js +0 -5
  273. package/dist/node/components/CartProvider/context.d.ts +0 -2
  274. package/dist/node/components/CartProvider/context.js +0 -5
  275. package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.d.ts +0 -86
  276. package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.js +0 -2
  277. package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.d.ts +0 -86
  278. package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.js +0 -2
  279. package/dist/node/components/CartProvider/graphql/CartCreateMutation.d.ts +0 -85
  280. package/dist/node/components/CartProvider/graphql/CartCreateMutation.js +0 -2
  281. package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.d.ts +0 -86
  282. package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.js +0 -2
  283. package/dist/node/components/CartProvider/graphql/CartFragment.d.ts +0 -72
  284. package/dist/node/components/CartProvider/graphql/CartFragment.js +0 -2
  285. package/dist/node/components/CartProvider/graphql/CartLineAddMutation.d.ts +0 -86
  286. package/dist/node/components/CartProvider/graphql/CartLineAddMutation.js +0 -2
  287. package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.d.ts +0 -86
  288. package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.js +0 -2
  289. package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.d.ts +0 -86
  290. package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.js +0 -2
  291. package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.d.ts +0 -86
  292. package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.js +0 -2
  293. package/dist/node/components/CartProvider/graphql/CartQuery.d.ts +0 -81
  294. package/dist/node/components/CartProvider/graphql/CartQuery.js +0 -2
  295. package/dist/node/components/CartProvider/hooks.client.d.ts +0 -15
  296. package/dist/node/components/CartProvider/hooks.client.js +0 -90
  297. package/dist/node/components/CartProvider/index.d.ts +0 -4
  298. package/dist/node/components/CartProvider/index.js +0 -10
  299. package/dist/node/components/CartProvider/types.d.ts +0 -102
  300. package/dist/node/components/CartShopPayButton/CartShopPayButton.client.d.ts +0 -9
  301. package/dist/node/components/CartShopPayButton/CartShopPayButton.client.js +0 -46
  302. package/dist/node/components/CartShopPayButton/index.d.ts +0 -1
  303. package/dist/node/components/CartShopPayButton/index.js +0 -5
  304. package/dist/node/components/ExternalVideo/ExternalVideo.d.ts +0 -21
  305. package/dist/node/components/ExternalVideo/ExternalVideo.js +0 -21
  306. package/dist/node/components/ExternalVideo/index.d.ts +0 -1
  307. package/dist/node/components/ExternalVideo/index.js +0 -5
  308. package/dist/node/components/Image/Image.d.ts +0 -92
  309. package/dist/node/components/Image/Image.js +0 -137
  310. package/dist/node/components/Image/index.d.ts +0 -2
  311. package/dist/node/components/Image/index.js +0 -5
  312. package/dist/node/components/Link/Link.client.d.ts +0 -25
  313. package/dist/node/components/Link/Link.client.js +0 -165
  314. package/dist/node/components/Link/index.d.ts +0 -1
  315. package/dist/node/components/Link/index.js +0 -5
  316. package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.d.ts +0 -6
  317. package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.js +0 -11
  318. package/dist/node/components/LocalizationProvider/LocalizationContext.client.d.ts +0 -6
  319. package/dist/node/components/LocalizationProvider/LocalizationContext.client.js +0 -5
  320. package/dist/node/components/LocalizationProvider/LocalizationProvider.server.d.ts +0 -33
  321. package/dist/node/components/LocalizationProvider/LocalizationProvider.server.js +0 -51
  322. package/dist/node/components/MediaFile/MediaFile.d.ts +0 -19
  323. package/dist/node/components/MediaFile/MediaFile.js +0 -39
  324. package/dist/node/components/MediaFile/index.d.ts +0 -1
  325. package/dist/node/components/MediaFile/index.js +0 -5
  326. package/dist/node/components/Metafield/Metafield.client.d.ts +0 -21
  327. package/dist/node/components/Metafield/Metafield.client.js +0 -75
  328. package/dist/node/components/Metafield/index.d.ts +0 -2
  329. package/dist/node/components/Metafield/index.js +0 -5
  330. package/dist/node/components/Metafield/types.d.ts +0 -4
  331. package/dist/node/components/Metafield/types.js +0 -2
  332. package/dist/node/components/ModelViewer/ModelViewer.client.d.ts +0 -128
  333. package/dist/node/components/ModelViewer/ModelViewer.client.js +0 -132
  334. package/dist/node/components/ModelViewer/index.d.ts +0 -1
  335. package/dist/node/components/ModelViewer/index.js +0 -5
  336. package/dist/node/components/Money/Money.client.d.ts +0 -25
  337. package/dist/node/components/Money/Money.client.js +0 -46
  338. package/dist/node/components/Money/index.d.ts +0 -1
  339. package/dist/node/components/Money/index.js +0 -5
  340. package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.d.ts +0 -21
  341. package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.js +0 -167
  342. package/dist/node/components/ProductOptionsProvider/context.d.ts +0 -2
  343. package/dist/node/components/ProductOptionsProvider/context.js +0 -5
  344. package/dist/node/components/ProductOptionsProvider/index.d.ts +0 -2
  345. package/dist/node/components/ProductOptionsProvider/index.js +0 -7
  346. package/dist/node/components/ProductPrice/ProductPrice.client.d.ts +0 -18
  347. package/dist/node/components/ProductPrice/ProductPrice.client.js +0 -61
  348. package/dist/node/components/ProductPrice/index.d.ts +0 -1
  349. package/dist/node/components/ProductPrice/index.js +0 -5
  350. package/dist/node/components/Seo/CollectionSeo.client.d.ts +0 -3
  351. package/dist/node/components/Seo/CollectionSeo.client.js +0 -22
  352. package/dist/node/components/Seo/DefaultPageSeo.client.d.ts +0 -3
  353. package/dist/node/components/Seo/DefaultPageSeo.client.js +0 -25
  354. package/dist/node/components/Seo/DescriptionSeo.client.d.ts +0 -4
  355. package/dist/node/components/Seo/DescriptionSeo.client.js +0 -17
  356. package/dist/node/components/Seo/HomePageSeo.client.d.ts +0 -2
  357. package/dist/node/components/Seo/HomePageSeo.client.js +0 -32
  358. package/dist/node/components/Seo/ImageSeo.client.d.ts +0 -3
  359. package/dist/node/components/Seo/ImageSeo.client.js +0 -17
  360. package/dist/node/components/Seo/NoIndexSeo.client.d.ts +0 -3
  361. package/dist/node/components/Seo/NoIndexSeo.client.js +0 -17
  362. package/dist/node/components/Seo/PageSeo.client.d.ts +0 -3
  363. package/dist/node/components/Seo/PageSeo.client.js +0 -20
  364. package/dist/node/components/Seo/ProductSeo.client.d.ts +0 -5
  365. package/dist/node/components/Seo/ProductSeo.client.js +0 -70
  366. package/dist/node/components/Seo/Seo.client.d.ts +0 -30
  367. package/dist/node/components/Seo/Seo.client.js +0 -38
  368. package/dist/node/components/Seo/TitleSeo.client.d.ts +0 -3
  369. package/dist/node/components/Seo/TitleSeo.client.js +0 -17
  370. package/dist/node/components/Seo/TwitterSeo.client.d.ts +0 -2
  371. package/dist/node/components/Seo/TwitterSeo.client.js +0 -16
  372. package/dist/node/components/Seo/index.d.ts +0 -1
  373. package/dist/node/components/Seo/index.js +0 -5
  374. package/dist/node/components/Seo/seo-types.d.ts +0 -17
  375. package/dist/node/components/Seo/seo-types.js +0 -2
  376. package/dist/node/components/ShopPayButton/ShopPayButton.client.d.ts +0 -38
  377. package/dist/node/components/ShopPayButton/ShopPayButton.client.js +0 -60
  378. package/dist/node/components/ShopPayButton/index.d.ts +0 -1
  379. package/dist/node/components/ShopPayButton/index.js +0 -5
  380. package/dist/node/components/Video/Video.d.ts +0 -14
  381. package/dist/node/components/Video/Video.js +0 -31
  382. package/dist/node/components/Video/index.d.ts +0 -1
  383. package/dist/node/components/Video/index.js +0 -5
  384. package/dist/node/components/index.d.ts +0 -28
  385. package/dist/node/components/index.js +0 -59
  386. package/dist/node/components/types.d.ts +0 -71
  387. package/dist/node/components/types.js +0 -11
  388. package/dist/node/constants.d.ts +0 -7
  389. package/dist/node/constants.js +0 -10
  390. package/dist/node/entry-server.js +0 -495
  391. package/dist/node/foundation/Analytics/Analytics.client.d.ts +0 -3
  392. package/dist/node/foundation/Analytics/Analytics.client.js +0 -34
  393. package/dist/node/foundation/Analytics/Analytics.server.d.ts +0 -1
  394. package/dist/node/foundation/Analytics/Analytics.server.js +0 -77
  395. package/dist/node/foundation/Analytics/ClientAnalytics.d.ts +0 -27
  396. package/dist/node/foundation/Analytics/ClientAnalytics.js +0 -102
  397. package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.d.ts +0 -2
  398. package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.js +0 -39
  399. package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.d.ts +0 -7
  400. package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.js +0 -68
  401. package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.d.ts +0 -1
  402. package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.js +0 -27
  403. package/dist/node/foundation/Analytics/const.d.ts +0 -9
  404. package/dist/node/foundation/Analytics/const.js +0 -12
  405. package/dist/node/foundation/Analytics/hook.d.ts +0 -1
  406. package/dist/node/foundation/Analytics/hook.js +0 -13
  407. package/dist/node/foundation/Analytics/index.d.ts +0 -1
  408. package/dist/node/foundation/Analytics/index.js +0 -5
  409. package/dist/node/foundation/Analytics/types.d.ts +0 -5
  410. package/dist/node/foundation/Analytics/types.js +0 -2
  411. package/dist/node/foundation/Analytics/utils.d.ts +0 -3
  412. package/dist/node/foundation/Analytics/utils.js +0 -35
  413. package/dist/node/foundation/AnalyticsErrorBoundary.client.d.ts +0 -4
  414. package/dist/node/foundation/AnalyticsErrorBoundary.client.js +0 -14
  415. package/dist/node/foundation/Cache/cache-sub-request.d.ts +0 -17
  416. package/dist/node/foundation/Cache/cache-sub-request.js +0 -95
  417. package/dist/node/foundation/Cache/cache.d.ts +0 -17
  418. package/dist/node/foundation/Cache/cache.js +0 -135
  419. package/dist/node/foundation/Cache/strategies/index.d.ts +0 -10
  420. package/dist/node/foundation/Cache/strategies/index.js +0 -108
  421. package/dist/node/foundation/Head/Head.client.d.ts +0 -5
  422. package/dist/node/foundation/Head/Head.client.js +0 -17
  423. package/dist/node/foundation/Head/index.d.ts +0 -1
  424. package/dist/node/foundation/Head/index.js +0 -5
  425. package/dist/node/foundation/Html/Html.d.ts +0 -13
  426. package/dist/node/foundation/Html/Html.js +0 -107
  427. package/dist/node/foundation/HydrogenRequest/HydrogenRequest.server.d.ts +0 -62
  428. package/dist/node/foundation/HydrogenRequest/HydrogenRequest.server.js +0 -150
  429. package/dist/node/foundation/HydrogenResponse/HydrogenResponse.server.d.ts +0 -23
  430. package/dist/node/foundation/HydrogenResponse/HydrogenResponse.server.js +0 -53
  431. package/dist/node/foundation/Redirect/Redirect.client.d.ts +0 -5
  432. package/dist/node/foundation/Redirect/Redirect.client.js +0 -18
  433. package/dist/node/foundation/Router/BrowserRouter.client.d.ts +0 -14
  434. package/dist/node/foundation/Router/BrowserRouter.client.js +0 -166
  435. package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.d.ts +0 -41
  436. package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.js +0 -90
  437. package/dist/node/foundation/ServerPropsProvider/index.d.ts +0 -2
  438. package/dist/node/foundation/ServerPropsProvider/index.js +0 -6
  439. package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +0 -23
  440. package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.js +0 -158
  441. package/dist/node/foundation/ServerRequestProvider/index.d.ts +0 -1
  442. package/dist/node/foundation/ServerRequestProvider/index.js +0 -17
  443. package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.d.ts +0 -7
  444. package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.js +0 -35
  445. package/dist/node/foundation/ShopifyProvider/index.d.ts +0 -1
  446. package/dist/node/foundation/ShopifyProvider/index.js +0 -5
  447. package/dist/node/foundation/ShopifyProvider/types.d.ts +0 -13
  448. package/dist/node/foundation/ShopifyProvider/types.js +0 -2
  449. package/dist/node/foundation/fetchSync/client/fetchSync.d.ts +0 -10
  450. package/dist/node/foundation/fetchSync/client/fetchSync.js +0 -33
  451. package/dist/node/foundation/fetchSync/server/fetchSync.d.ts +0 -8
  452. package/dist/node/foundation/fetchSync/server/fetchSync.js +0 -33
  453. package/dist/node/foundation/fetchSync/types.d.ts +0 -5
  454. package/dist/node/foundation/fetchSync/types.js +0 -2
  455. package/dist/node/foundation/index.d.ts +0 -3
  456. package/dist/node/foundation/index.js +0 -10
  457. package/dist/node/foundation/runtime.d.ts +0 -2
  458. package/dist/node/foundation/runtime.js +0 -11
  459. package/dist/node/foundation/session/session.d.ts +0 -27
  460. package/dist/node/foundation/session/session.js +0 -43
  461. package/dist/node/foundation/ssr-interop.d.ts +0 -29
  462. package/dist/node/foundation/ssr-interop.js +0 -39
  463. package/dist/node/foundation/useNavigate/useNavigate.d.ts +0 -15
  464. package/dist/node/foundation/useNavigate/useNavigate.js +0 -25
  465. package/dist/node/foundation/useQuery/hooks.d.ts +0 -36
  466. package/dist/node/foundation/useQuery/hooks.js +0 -104
  467. package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.d.ts +0 -10
  468. package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.js +0 -34
  469. package/dist/node/foundation/useRouteParams/useRouteParams.d.ts +0 -4
  470. package/dist/node/foundation/useRouteParams/useRouteParams.js +0 -13
  471. package/dist/node/foundation/useServerProps/index.d.ts +0 -1
  472. package/dist/node/foundation/useServerProps/index.js +0 -5
  473. package/dist/node/foundation/useServerProps/use-server-props.d.ts +0 -21
  474. package/dist/node/foundation/useServerProps/use-server-props.js +0 -40
  475. package/dist/node/foundation/useSession/useSession.d.ts +0 -2
  476. package/dist/node/foundation/useSession/useSession.js +0 -12
  477. package/dist/node/foundation/useShop/index.d.ts +0 -1
  478. package/dist/node/foundation/useShop/index.js +0 -5
  479. package/dist/node/foundation/useShop/use-shop.d.ts +0 -6
  480. package/dist/node/foundation/useShop/use-shop.js +0 -18
  481. package/dist/node/foundation/useUrl/index.d.ts +0 -1
  482. package/dist/node/foundation/useUrl/index.js +0 -5
  483. package/dist/node/foundation/useUrl/useUrl.d.ts +0 -4
  484. package/dist/node/foundation/useUrl/useUrl.js +0 -32
  485. package/dist/node/framework/Hydration/rsc.d.ts +0 -8
  486. package/dist/node/framework/Hydration/rsc.js +0 -105
  487. package/dist/node/hooks/index.d.ts +0 -6
  488. package/dist/node/hooks/index.js +0 -28
  489. package/dist/node/hooks/useCart/index.d.ts +0 -1
  490. package/dist/node/hooks/useCart/index.js +0 -5
  491. package/dist/node/hooks/useCart/useCart.d.ts +0 -4
  492. package/dist/node/hooks/useCart/useCart.js +0 -19
  493. package/dist/node/hooks/useCartLine/index.d.ts +0 -1
  494. package/dist/node/hooks/useCartLine/index.js +0 -5
  495. package/dist/node/hooks/useCartLine/useCartLine.d.ts +0 -29
  496. package/dist/node/hooks/useCartLine/useCartLine.js +0 -16
  497. package/dist/node/hooks/useCountry/index.d.ts +0 -1
  498. package/dist/node/hooks/useCountry/index.js +0 -5
  499. package/dist/node/hooks/useCountry/useCountry.d.ts +0 -7
  500. package/dist/node/hooks/useCountry/useCountry.js +0 -21
  501. package/dist/node/hooks/useLoadScript/index.d.ts +0 -1
  502. package/dist/node/hooks/useLoadScript/index.js +0 -5
  503. package/dist/node/hooks/useLoadScript/useLoadScript.client.d.ts +0 -8
  504. package/dist/node/hooks/useLoadScript/useLoadScript.client.js +0 -27
  505. package/dist/node/hooks/useMeasurement/hooks.d.ts +0 -9
  506. package/dist/node/hooks/useMeasurement/hooks.js +0 -17
  507. package/dist/node/hooks/useMeasurement/index.d.ts +0 -1
  508. package/dist/node/hooks/useMeasurement/index.js +0 -5
  509. package/dist/node/hooks/useMoney/hooks.d.ts +0 -54
  510. package/dist/node/hooks/useMoney/hooks.js +0 -70
  511. package/dist/node/hooks/useMoney/index.d.ts +0 -1
  512. package/dist/node/hooks/useMoney/index.js +0 -5
  513. package/dist/node/hooks/useParsedMetafields/index.d.ts +0 -1
  514. package/dist/node/hooks/useParsedMetafields/index.js +0 -5
  515. package/dist/node/hooks/useParsedMetafields/useParsedMetafields.d.ts +0 -21
  516. package/dist/node/hooks/useParsedMetafields/useParsedMetafields.js +0 -25
  517. package/dist/node/hooks/useProductOptions/helpers.d.ts +0 -6
  518. package/dist/node/hooks/useProductOptions/helpers.js +0 -46
  519. package/dist/node/hooks/useProductOptions/index.d.ts +0 -2
  520. package/dist/node/hooks/useProductOptions/index.js +0 -20
  521. package/dist/node/hooks/useProductOptions/types.d.ts +0 -44
  522. package/dist/node/hooks/useProductOptions/types.js +0 -2
  523. package/dist/node/hooks/useProductOptions/useProductOptions.client.d.ts +0 -1
  524. package/dist/node/hooks/useProductOptions/useProductOptions.client.js +0 -13
  525. package/dist/node/hooks/useShopQuery/hooks.d.ts +0 -28
  526. package/dist/node/hooks/useShopQuery/hooks.js +0 -171
  527. package/dist/node/hooks/useShopQuery/index.d.ts +0 -1
  528. package/dist/node/hooks/useShopQuery/index.js +0 -5
  529. package/dist/node/storefront-api-types.d.ts +0 -6405
  530. package/dist/node/storefront-api-types.js +0 -1766
  531. package/dist/node/streaming.server.d.ts +0 -25
  532. package/dist/node/streaming.server.js +0 -28
  533. package/dist/node/types.d.ts +0 -114
  534. package/dist/node/types.js +0 -2
  535. package/dist/node/utilities/apiRoutes.d.ts +0 -37
  536. package/dist/node/utilities/apiRoutes.js +0 -157
  537. package/dist/node/utilities/bot-ua.d.ts +0 -4
  538. package/dist/node/utilities/bot-ua.js +0 -65
  539. package/dist/node/utilities/devtools.d.ts +0 -11
  540. package/dist/node/utilities/devtools.js +0 -15
  541. package/dist/node/utilities/error.d.ts +0 -1
  542. package/dist/node/utilities/error.js +0 -10
  543. package/dist/node/utilities/fetch.d.ts +0 -9
  544. package/dist/node/utilities/fetch.js +0 -37
  545. package/dist/node/utilities/flattenConnection/flattenConnection.d.ts +0 -6
  546. package/dist/node/utilities/flattenConnection/flattenConnection.js +0 -15
  547. package/dist/node/utilities/flattenConnection/index.d.ts +0 -1
  548. package/dist/node/utilities/flattenConnection/index.js +0 -5
  549. package/dist/node/utilities/graphql-tag.d.ts +0 -1
  550. package/dist/node/utilities/graphql-tag.js +0 -10
  551. package/dist/node/utilities/graphql-tracker.d.ts +0 -17
  552. package/dist/node/utilities/graphql-tracker.js +0 -130
  553. package/dist/node/utilities/hash.d.ts +0 -2
  554. package/dist/node/utilities/hash.js +0 -11
  555. package/dist/node/utilities/html-encoding.d.ts +0 -1
  556. package/dist/node/utilities/html-encoding.js +0 -12
  557. package/dist/node/utilities/image_size.d.ts +0 -12
  558. package/dist/node/utilities/image_size.js +0 -68
  559. package/dist/node/utilities/index.d.ts +0 -12
  560. package/dist/node/utilities/index.js +0 -33
  561. package/dist/node/utilities/isBrowser/index.d.ts +0 -1
  562. package/dist/node/utilities/isBrowser/index.js +0 -5
  563. package/dist/node/utilities/isBrowser/isBrowser.d.ts +0 -4
  564. package/dist/node/utilities/isBrowser/isBrowser.js +0 -10
  565. package/dist/node/utilities/isServer/index.d.ts +0 -1
  566. package/dist/node/utilities/isServer/index.js +0 -5
  567. package/dist/node/utilities/isServer/isServer.d.ts +0 -4
  568. package/dist/node/utilities/isServer/isServer.js +0 -11
  569. package/dist/node/utilities/load_script.d.ts +0 -3
  570. package/dist/node/utilities/load_script.js +0 -27
  571. package/dist/node/utilities/log/index.d.ts +0 -4
  572. package/dist/node/utilities/log/index.js +0 -16
  573. package/dist/node/utilities/log/log-cache-api-status.d.ts +0 -1
  574. package/dist/node/utilities/log/log-cache-api-status.js +0 -17
  575. package/dist/node/utilities/log/log-cache-header.d.ts +0 -10
  576. package/dist/node/utilities/log/log-cache-header.js +0 -35
  577. package/dist/node/utilities/log/log-query-timeline.d.ts +0 -12
  578. package/dist/node/utilities/log/log-query-timeline.js +0 -88
  579. package/dist/node/utilities/log/log.d.ts +0 -28
  580. package/dist/node/utilities/log/log.js +0 -81
  581. package/dist/node/utilities/log/utils.d.ts +0 -3
  582. package/dist/node/utilities/log/utils.js +0 -21
  583. package/dist/node/utilities/matchPath.d.ts +0 -10
  584. package/dist/node/utilities/matchPath.js +0 -58
  585. package/dist/node/utilities/measurement.d.ts +0 -3
  586. package/dist/node/utilities/measurement.js +0 -103
  587. package/dist/node/utilities/parse.d.ts +0 -1
  588. package/dist/node/utilities/parse.js +0 -13
  589. package/dist/node/utilities/parseMetafieldValue/index.d.ts +0 -1
  590. package/dist/node/utilities/parseMetafieldValue/index.js +0 -5
  591. package/dist/node/utilities/parseMetafieldValue/parseMetafieldValue.d.ts +0 -6
  592. package/dist/node/utilities/parseMetafieldValue/parseMetafieldValue.js +0 -40
  593. package/dist/node/utilities/storefrontApi.d.ts +0 -4
  594. package/dist/node/utilities/storefrontApi.js +0 -26
  595. package/dist/node/utilities/suspense.d.ts +0 -12
  596. package/dist/node/utilities/suspense.js +0 -64
  597. package/dist/node/utilities/template.d.ts +0 -9
  598. package/dist/node/utilities/template.js +0 -27
  599. package/dist/node/utilities/timing.d.ts +0 -7
  600. package/dist/node/utilities/timing.js +0 -18
  601. package/dist/node/utilities/video_parameters.d.ts +0 -47
  602. package/dist/node/utilities/video_parameters.js +0 -27
  603. package/dist/node/version.d.ts +0 -1
  604. package/dist/node/version.js +0 -4
  605. package/entry-client.d.ts +0 -1
  606. package/entry-client.js +0 -1
  607. package/entry-server.d.ts +0 -1
  608. package/entry-server.js +0 -1
  609. package/middleware.d.ts +0 -1
  610. package/middleware.js +0 -1
  611. package/plugin.d.ts +0 -1
  612. package/plugin.js +0 -1
  613. package/web-polyfills.js +0 -1
@@ -1,33 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.fetchSync = void 0;
4
- const parse_1 = require("../../../utilities/parse");
5
- const hooks_1 = require("../../useQuery/hooks");
6
- /**
7
- * The `fetchSync` hook makes API requests and is the recommended way to make simple fetch calls on the server and the client.
8
- * It's designed similar to the [Web API's `fetch`](https://developer.mozilla.org/en-US/docs/Web/API/fetch), only in a way
9
- * that supports [Suspense](https://reactjs.org/docs/concurrent-mode-suspense.html).
10
- */
11
- function fetchSync(url, options) {
12
- const { cache, preload, shouldCacheResponse, ...requestInit } = options !== null && options !== void 0 ? options : {};
13
- const { data: useQueryResponse, error } = (0, hooks_1.useQuery)(// eslint-disable-line react-hooks/rules-of-hooks
14
- [url, requestInit], async () => {
15
- const response = await globalThis.fetch(url, requestInit);
16
- const text = await response.text();
17
- return [text, response];
18
- }, {
19
- cache,
20
- preload,
21
- shouldCacheResponse,
22
- });
23
- if (error) {
24
- throw error;
25
- }
26
- const [data, response] = useQueryResponse;
27
- return {
28
- response,
29
- json: () => (0, parse_1.parseJSON)(data),
30
- text: () => data,
31
- };
32
- }
33
- exports.fetchSync = fetchSync;
@@ -1,5 +0,0 @@
1
- export interface FetchResponse {
2
- response: Response;
3
- json: () => any;
4
- text: () => any;
5
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +0,0 @@
1
- export { ServerPropsProvider, ServerPropsContext, type ServerProps, type ServerPropsContextValue, } from './ServerPropsProvider';
2
- export { useShop } from './useShop';
3
- export { useUrl } from './useUrl';
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useUrl = exports.useShop = exports.ServerPropsContext = exports.ServerPropsProvider = void 0;
4
- var ServerPropsProvider_1 = require("./ServerPropsProvider");
5
- Object.defineProperty(exports, "ServerPropsProvider", { enumerable: true, get: function () { return ServerPropsProvider_1.ServerPropsProvider; } });
6
- Object.defineProperty(exports, "ServerPropsContext", { enumerable: true, get: function () { return ServerPropsProvider_1.ServerPropsContext; } });
7
- var useShop_1 = require("./useShop");
8
- Object.defineProperty(exports, "useShop", { enumerable: true, get: function () { return useShop_1.useShop; } });
9
- var useUrl_1 = require("./useUrl");
10
- Object.defineProperty(exports, "useUrl", { enumerable: true, get: function () { return useUrl_1.useUrl; } });
@@ -1,2 +0,0 @@
1
- export declare function setCache(cache?: Cache): void;
2
- export declare function getCache(): Cache | undefined;
@@ -1,11 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getCache = exports.setCache = void 0;
4
- function setCache(cache) {
5
- globalThis.__cache = cache;
6
- }
7
- exports.setCache = setCache;
8
- function getCache() {
9
- return globalThis.__cache;
10
- }
11
- exports.getCache = getCache;
@@ -1,27 +0,0 @@
1
- import { Logger } from '../../utilities/log';
2
- import type { HydrogenResponse } from '../HydrogenResponse/HydrogenResponse.server';
3
- import type { HydrogenRequest } from '../HydrogenRequest/HydrogenRequest.server';
4
- export declare type SessionSyncApi = {
5
- get: () => Record<string, string>;
6
- };
7
- export declare type SessionApi = {
8
- get: () => Promise<Record<string, string>>;
9
- set: (key: string, value: string) => Promise<void>;
10
- destroy: () => Promise<void>;
11
- };
12
- export declare type SessionStorageAdapter = {
13
- get: (request: Request) => Promise<Record<string, string>>;
14
- set: (request: Request, value: Record<string, string>) => Promise<string>;
15
- destroy: (request: Request) => Promise<string>;
16
- };
17
- export declare function getSyncSessionApi(request: HydrogenRequest, componentResponse: HydrogenResponse, log: Logger, session?: SessionStorageAdapter): {
18
- get(): any;
19
- };
20
- export declare const emptySessionImplementation: (log: Logger) => {
21
- get(): Promise<{}>;
22
- set(key: string, value: string): Promise<void>;
23
- destroy(): Promise<void>;
24
- };
25
- export declare const emptySyncSessionImplementation: (log: Logger) => {
26
- get(): {};
27
- };
@@ -1,43 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.emptySyncSessionImplementation = exports.emptySessionImplementation = exports.getSyncSessionApi = void 0;
4
- const suspense_1 = require("../../utilities/suspense");
5
- function getSyncSessionApi(request, componentResponse, log, session) {
6
- const sessionPromises = {};
7
- return session
8
- ? {
9
- get() {
10
- if (!sessionPromises.getPromise) {
11
- sessionPromises.getPromise = (0, suspense_1.wrapPromise)(session.get(request));
12
- }
13
- return sessionPromises.getPromise.read();
14
- },
15
- }
16
- : (0, exports.emptySyncSessionImplementation)(log);
17
- }
18
- exports.getSyncSessionApi = getSyncSessionApi;
19
- const emptySessionImplementation = function (log) {
20
- return {
21
- async get() {
22
- log.warn('No session adapter has been configured!');
23
- return {};
24
- },
25
- async set(key, value) {
26
- log.warn('No session adapter has been configured!');
27
- },
28
- async destroy() {
29
- log.warn('No session adapter has been configured!');
30
- return;
31
- },
32
- };
33
- };
34
- exports.emptySessionImplementation = emptySessionImplementation;
35
- const emptySyncSessionImplementation = function (log) {
36
- return {
37
- get() {
38
- log.warn('No session adapter has been configured!');
39
- return {};
40
- },
41
- };
42
- };
43
- exports.emptySyncSessionImplementation = emptySyncSessionImplementation;
@@ -1,29 +0,0 @@
1
- /**
2
- * This file is used for compatibility between browser and server environments.
3
- * The browser loads this file as is, without leaking server logic.
4
- * In the server, this file is transformed by Vite to inject server logic.
5
- * NOTE: Do not remove SSR-prefixed comments in this file.
6
- */
7
- import type { HydrogenRequest } from './HydrogenRequest/HydrogenRequest.server';
8
- export declare const META_ENV_SSR = false;
9
- declare type ServerGetter<T> = (request: HydrogenRequest) => T;
10
- /**
11
- * Isomorphic hook to access context data. It gives access to the current request
12
- * when running on the server, and returns the provided client fallback in the browser.
13
- * This can be used in server components (RSC) as a Context/Provider replacement. In client
14
- * components, it uses the server getter in SSR and the client fallback in the browser.
15
- * @param serverGetter - A function that gets the current server request and returns any
16
- * desired request property. It only runs in the server (both in RSC and SSR).
17
- * @param clientFallback - An optional raw value or a React.Context to be consumed that will be
18
- * returned if the current environment is not the server. Note that, if this is a React.Context,
19
- * there must be a React.Provider parent in the app tree.
20
- * @returns A value retrieved from the current server request or a fallback value in the client.
21
- * The returned type depends on what the server getter returns.
22
- * @example
23
- * ```js
24
- * import {MyClientContext} from './my-client-react-context-provider';
25
- * useEnvContext(req => req.ctx.myServerContext, MyClientContext)
26
- * ```
27
- */
28
- export declare function useEnvContext<T>(serverGetter: ServerGetter<T>, clientFallback?: any): T;
29
- export {};
@@ -1,39 +0,0 @@
1
- "use strict";
2
- /**
3
- * This file is used for compatibility between browser and server environments.
4
- * The browser loads this file as is, without leaking server logic.
5
- * In the server, this file is transformed by Vite to inject server logic.
6
- * NOTE: Do not remove SSR-prefixed comments in this file.
7
- */
8
- Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.useEnvContext = exports.META_ENV_SSR = void 0;
10
- const react_1 = require("react");
11
- //@SSR import {useServerRequest} from './ServerRequestProvider';
12
- // This is replaced by Vite to import.meta.env.SSR
13
- exports.META_ENV_SSR = false;
14
- const reactContextType = Symbol.for('react.context');
15
- /**
16
- * Isomorphic hook to access context data. It gives access to the current request
17
- * when running on the server, and returns the provided client fallback in the browser.
18
- * This can be used in server components (RSC) as a Context/Provider replacement. In client
19
- * components, it uses the server getter in SSR and the client fallback in the browser.
20
- * @param serverGetter - A function that gets the current server request and returns any
21
- * desired request property. It only runs in the server (both in RSC and SSR).
22
- * @param clientFallback - An optional raw value or a React.Context to be consumed that will be
23
- * returned if the current environment is not the server. Note that, if this is a React.Context,
24
- * there must be a React.Provider parent in the app tree.
25
- * @returns A value retrieved from the current server request or a fallback value in the client.
26
- * The returned type depends on what the server getter returns.
27
- * @example
28
- * ```js
29
- * import {MyClientContext} from './my-client-react-context-provider';
30
- * useEnvContext(req => req.ctx.myServerContext, MyClientContext)
31
- * ```
32
- */
33
- function useEnvContext(serverGetter, clientFallback) {
34
- //@SSR if (META_ENV_SSR) return serverGetter(useServerRequest());
35
- return clientFallback && clientFallback.$$typeof === reactContextType
36
- ? (0, react_1.useContext)(clientFallback) // eslint-disable-line react-hooks/rules-of-hooks
37
- : clientFallback;
38
- }
39
- exports.useEnvContext = useEnvContext;
@@ -1,15 +0,0 @@
1
- declare type NavigationOptions = {
2
- /** Whether to update the state object or URL of the current history entry. Defaults to false. */
3
- replace?: boolean;
4
- /** Whether to reload the whole document on navigation. */
5
- reloadDocument?: boolean;
6
- /** The custom client state with the navigation. */
7
- clientState?: any;
8
- /** Whether to emulate natural browser behavior and restore scroll position on navigation. Defaults to true. */
9
- scroll?: any;
10
- };
11
- /**
12
- * The useNavigate hook imperatively navigates between routes.
13
- */
14
- export declare function useNavigate(): (path: string, options?: NavigationOptions) => void;
15
- export {};
@@ -1,25 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useNavigate = void 0;
4
- const BrowserRouter_client_1 = require("../Router/BrowserRouter.client");
5
- /**
6
- * The useNavigate hook imperatively navigates between routes.
7
- */
8
- function useNavigate() {
9
- const router = (0, BrowserRouter_client_1.useRouter)();
10
- return (path, options = { replace: false, reloadDocument: false }) => {
11
- var _a;
12
- const state = {
13
- ...options === null || options === void 0 ? void 0 : options.clientState,
14
- scroll: (_a = options === null || options === void 0 ? void 0 : options.scroll) !== null && _a !== void 0 ? _a : true,
15
- };
16
- // @todo wait for RSC and then change focus for a11y?
17
- if (options === null || options === void 0 ? void 0 : options.replace) {
18
- router.history.replace(path, state);
19
- }
20
- else {
21
- router.history.push(path, state);
22
- }
23
- };
24
- }
25
- exports.useNavigate = useNavigate;
@@ -1,36 +0,0 @@
1
- import type { CachingStrategy, PreloadOptions, QueryKey } from '../../types';
2
- export interface HydrogenUseQueryOptions {
3
- /** The [caching strategy](https://shopify.dev/custom-storefronts/hydrogen/framework/cache#caching-strategies) to help you
4
- * determine which cache control header to set.
5
- */
6
- cache?: CachingStrategy;
7
- /** Whether to [preload the query](https://shopify.dev/custom-storefronts/hydrogen/framework/preloaded-queries).
8
- * Defaults to `false`. Specify `true` to preload the query for the URL or `'*'`
9
- * to preload the query for all requests.
10
- */
11
- preload?: PreloadOptions;
12
- /** A function that inspects the response body to determine if it should be cached.
13
- */
14
- shouldCacheResponse?: (body: any) => boolean;
15
- }
16
- /**
17
- * The `useQuery` hook executes an asynchronous operation like `fetch` in a way that
18
- * supports [Suspense](https://reactjs.org/docs/concurrent-mode-suspense.html). You can use this
19
- * hook to call any third-party APIs from a server component.
20
- *
21
- * \> Note:
22
- * \> If you're making a simple fetch call on the server, then we recommend using the [`fetchSync`](https://shopify.dev/api/hydrogen/hooks/global/fetchsync) hook instead.
23
- */
24
- export declare function useQuery<T>(
25
- /** A string or array to uniquely identify the current query. */
26
- key: QueryKey,
27
- /** An asynchronous query function like `fetch` which returns data. */
28
- queryFn: () => Promise<T>,
29
- /** The options to manage the cache behavior of the sub-request. */
30
- queryOptions?: HydrogenUseQueryOptions): {
31
- data?: undefined;
32
- error: Error | Response;
33
- } | {
34
- data: T;
35
- error?: undefined;
36
- };
@@ -1,104 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useQuery = void 0;
4
- const log_1 = require("../../utilities/log");
5
- const cache_sub_request_1 = require("../Cache/cache-sub-request");
6
- const ServerRequestProvider_1 = require("../ServerRequestProvider");
7
- const strategies_1 = require("../Cache/strategies");
8
- /**
9
- * The `useQuery` hook executes an asynchronous operation like `fetch` in a way that
10
- * supports [Suspense](https://reactjs.org/docs/concurrent-mode-suspense.html). You can use this
11
- * hook to call any third-party APIs from a server component.
12
- *
13
- * \> Note:
14
- * \> If you're making a simple fetch call on the server, then we recommend using the [`fetchSync`](https://shopify.dev/api/hydrogen/hooks/global/fetchsync) hook instead.
15
- */
16
- function useQuery(
17
- /** A string or array to uniquely identify the current query. */
18
- key,
19
- /** An asynchronous query function like `fetch` which returns data. */
20
- queryFn,
21
- /** The options to manage the cache behavior of the sub-request. */
22
- queryOptions) {
23
- const request = (0, ServerRequestProvider_1.useServerRequest)();
24
- const withCacheIdKey = [
25
- '__QUERY_CACHE_ID__',
26
- ...(typeof key === 'string' ? [key] : key),
27
- ];
28
- const fetcher = cachedQueryFnBuilder(withCacheIdKey, queryFn, queryOptions);
29
- (0, log_1.collectQueryTimings)(request, withCacheIdKey, 'requested');
30
- if (queryOptions === null || queryOptions === void 0 ? void 0 : queryOptions.preload) {
31
- request.savePreloadQuery({
32
- preload: queryOptions === null || queryOptions === void 0 ? void 0 : queryOptions.preload,
33
- key: withCacheIdKey,
34
- fetcher,
35
- });
36
- }
37
- return (0, ServerRequestProvider_1.useRequestCacheData)(withCacheIdKey, fetcher);
38
- }
39
- exports.useQuery = useQuery;
40
- function cachedQueryFnBuilder(key, queryFn, queryOptions) {
41
- var _a;
42
- const resolvedQueryOptions = {
43
- ...(queryOptions !== null && queryOptions !== void 0 ? queryOptions : {}),
44
- };
45
- const shouldCacheResponse = (_a = queryOptions === null || queryOptions === void 0 ? void 0 : queryOptions.shouldCacheResponse) !== null && _a !== void 0 ? _a : (() => true);
46
- /**
47
- * Attempt to read the query from cache. If it doesn't exist or if it's stale, regenerate it.
48
- */
49
- async function useCachedQueryFn() {
50
- var _a, _b, _c, _d;
51
- // Call this hook before running any async stuff
52
- // to prevent losing the current React cycle.
53
- const request = (0, ServerRequestProvider_1.useServerRequest)();
54
- const log = (0, log_1.getLoggerWithContext)(request);
55
- const cacheResponse = await (0, cache_sub_request_1.getItemFromCache)(key);
56
- async function generateNewOutput() {
57
- return await queryFn();
58
- }
59
- if (cacheResponse) {
60
- const [output, response] = cacheResponse;
61
- (0, log_1.collectQueryCacheControlHeaders)(request, key, response.headers.get('cache-control'));
62
- /**
63
- * Important: Do this async
64
- */
65
- if ((0, cache_sub_request_1.isStale)(key, response)) {
66
- const lockKey = ['lock', ...(typeof key === 'string' ? [key] : key)];
67
- // Run revalidation asynchronously
68
- const revalidatingPromise = (0, cache_sub_request_1.getItemFromCache)(lockKey).then(async (lockExists) => {
69
- if (lockExists)
70
- return;
71
- await (0, cache_sub_request_1.setItemInCache)(lockKey, true, (0, strategies_1.CacheSeconds)({
72
- maxAge: 10,
73
- }));
74
- try {
75
- const output = await generateNewOutput();
76
- if (shouldCacheResponse(output)) {
77
- await (0, cache_sub_request_1.setItemInCache)(key, output, resolvedQueryOptions === null || resolvedQueryOptions === void 0 ? void 0 : resolvedQueryOptions.cache);
78
- }
79
- }
80
- catch (e) {
81
- log.error(`Error generating async response: ${e.message}`);
82
- }
83
- finally {
84
- await (0, cache_sub_request_1.deleteItemFromCache)(lockKey);
85
- }
86
- });
87
- // Asynchronously wait for it in workers
88
- (_b = (_a = request.ctx.runtime) === null || _a === void 0 ? void 0 : _a.waitUntil) === null || _b === void 0 ? void 0 : _b.call(_a, revalidatingPromise);
89
- }
90
- return output;
91
- }
92
- const newOutput = await generateNewOutput();
93
- /**
94
- * Important: Do this async
95
- */
96
- if (shouldCacheResponse(newOutput)) {
97
- const setItemInCachePromise = (0, cache_sub_request_1.setItemInCache)(key, newOutput, resolvedQueryOptions === null || resolvedQueryOptions === void 0 ? void 0 : resolvedQueryOptions.cache);
98
- (_d = (_c = request.ctx.runtime) === null || _c === void 0 ? void 0 : _c.waitUntil) === null || _d === void 0 ? void 0 : _d.call(_c, setItemInCachePromise);
99
- }
100
- (0, log_1.collectQueryCacheControlHeaders)(request, key, (0, cache_sub_request_1.generateSubRequestCacheControlHeader)(resolvedQueryOptions === null || resolvedQueryOptions === void 0 ? void 0 : resolvedQueryOptions.cache));
101
- return newOutput;
102
- }
103
- return useCachedQueryFn;
104
- }
@@ -1,10 +0,0 @@
1
- import React, { FC, ReactNode } from 'react';
2
- declare type RouteParamsContextValue = {
3
- routeParams: Record<string, string>;
4
- };
5
- export declare const RouteParamsContext: React.Context<RouteParamsContextValue>;
6
- export declare const RouteParamsProvider: FC<{
7
- routeParams: Record<string, string>;
8
- children: ReactNode;
9
- }>;
10
- export {};
@@ -1,34 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.RouteParamsProvider = exports.RouteParamsContext = void 0;
27
- const react_1 = __importStar(require("react"));
28
- exports.RouteParamsContext = (0, react_1.createContext)({
29
- routeParams: {},
30
- });
31
- const RouteParamsProvider = ({ children, routeParams }) => {
32
- return (react_1.default.createElement(exports.RouteParamsContext.Provider, { value: { routeParams } }, children));
33
- };
34
- exports.RouteParamsProvider = RouteParamsProvider;
@@ -1,4 +0,0 @@
1
- /**
2
- * The `useRouteParams` hook retrieves the parameters of an active route. The hook is available in both server and client components.
3
- */
4
- export declare function useRouteParams(): Record<string, string>;
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useRouteParams = void 0;
4
- const ssr_interop_1 = require("../ssr-interop");
5
- const RouteParamsProvider_client_1 = require("./RouteParamsProvider.client");
6
- /**
7
- * The `useRouteParams` hook retrieves the parameters of an active route. The hook is available in both server and client components.
8
- */
9
- function useRouteParams() {
10
- const router = (0, ssr_interop_1.useEnvContext)((req) => req.ctx.router, RouteParamsProvider_client_1.RouteParamsContext);
11
- return router.routeParams;
12
- }
13
- exports.useRouteParams = useRouteParams;
@@ -1 +0,0 @@
1
- export { useServerProps } from './use-server-props';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useServerProps = void 0;
4
- var use_server_props_1 = require("./use-server-props");
5
- Object.defineProperty(exports, "useServerProps", { enumerable: true, get: function () { return use_server_props_1.useServerProps; } });
@@ -1,21 +0,0 @@
1
- import { ServerPropsContextValue, InternalServerPropsContextValue } from '../ServerPropsProvider/ServerPropsProvider';
2
- /**
3
- * The `useServerProps` hook allows you to manage the [server props](https://shopify.dev/custom-storefronts/hydrogen/framework/server-props) passed to your server components when using Hydrogen as a React Server Component framework. The server props get cleared when you navigate from one route to another.
4
- *
5
- * ## Return value
6
- *
7
- * The `useServerProps` hook returns an object with the following keys:
8
- *
9
- * | Key | Description |
10
- * | ---------------- | -------------------------------------------------------------------------------------- |
11
- * | `serverProps` | The current server props. |
12
- * | `setServerProps` | A function used to modify server props. |
13
- * | `pending` | Whether a [transition is pending](https://github.com/reactwg/react-18/discussions/41). |
14
- *
15
- */
16
- export declare function useServerProps(): ServerPropsContextValue;
17
- /**
18
- * Internal-only hook to manage server state, including to set location server state
19
- * @internal
20
- */
21
- export declare function useInternalServerProps(): InternalServerPropsContextValue;
@@ -1,40 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useInternalServerProps = exports.useServerProps = void 0;
4
- const react_1 = require("react");
5
- const ServerPropsProvider_1 = require("../ServerPropsProvider/ServerPropsProvider");
6
- /**
7
- * The `useServerProps` hook allows you to manage the [server props](https://shopify.dev/custom-storefronts/hydrogen/framework/server-props) passed to your server components when using Hydrogen as a React Server Component framework. The server props get cleared when you navigate from one route to another.
8
- *
9
- * ## Return value
10
- *
11
- * The `useServerProps` hook returns an object with the following keys:
12
- *
13
- * | Key | Description |
14
- * | ---------------- | -------------------------------------------------------------------------------------- |
15
- * | `serverProps` | The current server props. |
16
- * | `setServerProps` | A function used to modify server props. |
17
- * | `pending` | Whether a [transition is pending](https://github.com/reactwg/react-18/discussions/41). |
18
- *
19
- */
20
- function useServerProps() {
21
- const internalServerPropsContext = (0, react_1.useContext)(ServerPropsProvider_1.ServerPropsContext);
22
- if (!internalServerPropsContext) {
23
- return {};
24
- }
25
- return {
26
- serverProps: internalServerPropsContext.serverProps,
27
- setServerProps: internalServerPropsContext.setServerProps,
28
- pending: internalServerPropsContext.pending,
29
- };
30
- }
31
- exports.useServerProps = useServerProps;
32
- /**
33
- * Internal-only hook to manage server state, including to set location server state
34
- * @internal
35
- */
36
- function useInternalServerProps() {
37
- var _a;
38
- return ((_a = (0, react_1.useContext)(ServerPropsProvider_1.ServerPropsContext)) !== null && _a !== void 0 ? _a : {});
39
- }
40
- exports.useInternalServerProps = useInternalServerProps;
@@ -1,2 +0,0 @@
1
- /** The `useSession` hook reads session data in server components. */
2
- export declare const useSession: () => Record<string, string>;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useSession = void 0;
4
- const ServerRequestProvider_1 = require("../ServerRequestProvider");
5
- /** The `useSession` hook reads session data in server components. */
6
- const useSession = function () {
7
- var _a;
8
- const request = (0, ServerRequestProvider_1.useServerRequest)();
9
- const session = ((_a = request.ctx.session) === null || _a === void 0 ? void 0 : _a.get()) || {};
10
- return session;
11
- };
12
- exports.useSession = useSession;
@@ -1 +0,0 @@
1
- export { useShop } from './use-shop';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useShop = void 0;
4
- var use_shop_1 = require("./use-shop");
5
- Object.defineProperty(exports, "useShop", { enumerable: true, get: function () { return use_shop_1.useShop; } });
@@ -1,6 +0,0 @@
1
- /**
2
- * The `useShop` hook provides access to values within
3
- * [the `shopify` property in the `hydrogen.config.js` file](https://shopify.dev/custom-storefronts/hydrogen/framework/hydrogen-config).
4
- * The `useShop` hook must be a descendent of a `ShopifyProvider` component.
5
- */
6
- export declare function useShop(): import("../ShopifyProvider/types").ShopifyContextValue;
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useShop = void 0;
4
- const ShopifyProvider_1 = require("../ShopifyProvider");
5
- const ssr_interop_1 = require("../ssr-interop");
6
- /**
7
- * The `useShop` hook provides access to values within
8
- * [the `shopify` property in the `hydrogen.config.js` file](https://shopify.dev/custom-storefronts/hydrogen/framework/hydrogen-config).
9
- * The `useShop` hook must be a descendent of a `ShopifyProvider` component.
10
- */
11
- function useShop() {
12
- const config = (0, ssr_interop_1.useEnvContext)((req) => req.ctx.shopifyConfig, ShopifyProvider_1.ShopifyContext);
13
- if (!config) {
14
- throw new Error('No Shopify Context found');
15
- }
16
- return config;
17
- }
18
- exports.useShop = useShop;
@@ -1 +0,0 @@
1
- export { useUrl } from './useUrl';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useUrl = void 0;
4
- var useUrl_1 = require("./useUrl");
5
- Object.defineProperty(exports, "useUrl", { enumerable: true, get: function () { return useUrl_1.useUrl; } });
@@ -1,4 +0,0 @@
1
- /**
2
- * The `useUrl` hook retrieves the current URL in a server or client component.
3
- */
4
- export declare function useUrl(): URL;