@shopify/hydrogen 0.24.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +144 -0
- package/dist/esnext/components/AddToCartButton/AddToCartButton.client.d.ts +2 -5
- package/dist/esnext/components/AddToCartButton/AddToCartButton.client.js +15 -14
- package/dist/esnext/components/BaseButton/BaseButton.client.d.ts +14 -0
- package/dist/esnext/components/BaseButton/BaseButton.client.js +15 -0
- package/dist/esnext/components/BaseButton/index.d.ts +1 -0
- package/dist/esnext/components/BaseButton/index.js +1 -0
- package/dist/esnext/components/BuyNowButton/BuyNowButton.client.d.ts +2 -5
- package/dist/esnext/components/BuyNowButton/BuyNowButton.client.js +5 -4
- package/dist/esnext/components/CartEstimatedCost/CartEstimatedCost.client.js +4 -4
- package/dist/esnext/components/CartLineProvider/context.d.ts +4 -4
- package/dist/esnext/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +4 -5
- package/dist/esnext/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +16 -14
- package/dist/esnext/components/CartLines/CartLines.client.js +1 -1
- package/dist/esnext/components/CartProvider/CartProvider.client.js +31 -35
- package/dist/esnext/components/CartProvider/hooks.client.js +2 -3
- package/dist/esnext/components/ExternalVideo/ExternalVideo.js +1 -1
- package/dist/esnext/components/Image/Image.d.ts +13 -0
- package/dist/esnext/components/Image/Image.js +46 -20
- package/dist/esnext/components/Link/Link.client.js +1 -1
- package/dist/esnext/components/LocalizationProvider/LocalizationProvider.server.js +2 -2
- package/dist/esnext/components/Metafield/Metafield.client.d.ts +6 -10
- package/dist/esnext/components/Metafield/Metafield.client.js +67 -31
- package/dist/esnext/components/Metafield/components/StarRating/StarRating.js +1 -1
- package/dist/esnext/components/ModelViewer/ModelViewer.client.js +2 -3
- package/dist/esnext/components/Money/Money.client.js +1 -1
- package/dist/esnext/components/ProductOptionsProvider/ProductOptionsProvider.client.js +16 -24
- package/dist/esnext/components/ProductPrice/ProductPrice.client.js +7 -7
- package/dist/esnext/components/Seo/CollectionSeo.client.js +2 -3
- package/dist/esnext/components/Seo/DefaultPageSeo.client.js +3 -3
- package/dist/esnext/components/Seo/NoIndexSeo.client.js +2 -2
- package/dist/esnext/components/Seo/PageSeo.client.js +2 -3
- package/dist/esnext/components/Seo/ProductSeo.client.js +9 -10
- package/dist/esnext/components/ShopPayButton/ShopPayButton.client.js +2 -3
- package/dist/esnext/components/Video/Video.js +2 -3
- package/dist/esnext/config.d.ts +4 -0
- package/dist/esnext/config.js +4 -0
- package/dist/esnext/constants.d.ts +2 -0
- package/dist/esnext/constants.js +2 -0
- package/dist/esnext/entry-client.js +5 -19
- package/dist/esnext/entry-server.d.ts +1 -17
- package/dist/esnext/entry-server.js +189 -48
- package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.d.ts +4 -0
- package/dist/esnext/foundation/Analytics/{ServerAnalyticsRoute.server.js → ServerAnalyticsRoute.js} +5 -4
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.js +27 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.d.ts +3 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.js +21 -0
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ShopifyAnalytics.server.js +2 -3
- package/dist/esnext/foundation/BuiltInRoutes/BuiltInRoutes.d.ts +2 -0
- package/dist/esnext/foundation/BuiltInRoutes/BuiltInRoutes.js +23 -0
- package/dist/esnext/foundation/BuiltInRoutes/healthCheck.d.ts +1 -0
- package/dist/esnext/foundation/BuiltInRoutes/healthCheck.js +3 -0
- package/dist/esnext/foundation/Cache/cache-sub-request.js +2 -2
- package/dist/esnext/foundation/Cache/cache.js +2 -2
- package/dist/esnext/foundation/Cache/strategies/index.d.ts +3 -7
- package/dist/esnext/foundation/Cache/strategies/index.js +6 -48
- package/dist/esnext/foundation/Cookie/Cookie.js +5 -0
- package/dist/esnext/foundation/DevTools/DevTools.client.d.ts +3 -0
- package/dist/esnext/foundation/DevTools/DevTools.client.js +17 -0
- package/dist/esnext/foundation/DevTools/DevTools.server.d.ts +1 -0
- package/dist/esnext/foundation/DevTools/DevTools.server.js +14 -0
- package/dist/esnext/foundation/DevTools/components/GraphQL.client.d.ts +1 -0
- package/dist/esnext/foundation/DevTools/components/GraphQL.client.js +25 -0
- package/dist/esnext/foundation/DevTools/components/Heading.d.ts +5 -0
- package/dist/esnext/foundation/DevTools/components/Heading.js +12 -0
- package/dist/esnext/foundation/DevTools/components/Interface.client.d.ts +11 -0
- package/dist/esnext/foundation/DevTools/components/Interface.client.js +47 -0
- package/dist/esnext/foundation/DevTools/components/Panels.d.ts +8 -0
- package/dist/esnext/foundation/DevTools/components/Panels.js +60 -0
- package/dist/esnext/foundation/DevTools/components/Performance.client.d.ts +14 -0
- package/dist/esnext/foundation/DevTools/components/Performance.client.js +26 -0
- package/dist/esnext/foundation/DevTools/components/Settings.client.d.ts +7 -0
- package/dist/esnext/foundation/DevTools/components/Settings.client.js +20 -0
- package/dist/esnext/foundation/DevTools/components/Table.d.ts +9 -0
- package/dist/esnext/foundation/DevTools/components/Table.js +7 -0
- package/dist/esnext/foundation/DevTools/components/icons.d.ts +2 -0
- package/dist/esnext/foundation/DevTools/components/icons.js +13 -0
- package/dist/esnext/foundation/DevTools/components/index.d.ts +2 -0
- package/dist/esnext/foundation/DevTools/components/index.js +2 -0
- package/dist/esnext/foundation/FileRoutes/FileRoutes.server.js +4 -4
- package/dist/esnext/foundation/Html/Html.js +4 -7
- package/dist/esnext/foundation/HydrogenRequest/HydrogenRequest.server.d.ts +9 -4
- package/dist/esnext/foundation/HydrogenRequest/HydrogenRequest.server.js +67 -10
- package/dist/esnext/foundation/HydrogenResponse/HydrogenResponse.server.d.ts +5 -7
- package/dist/esnext/foundation/HydrogenResponse/HydrogenResponse.server.js +22 -20
- package/dist/esnext/foundation/Router/BrowserRouter.client.js +1 -2
- package/dist/esnext/foundation/ServerRequestProvider/ServerRequestProvider.js +5 -7
- package/dist/esnext/foundation/ShopifyProvider/ShopifyProvider.server.js +3 -5
- package/dist/esnext/foundation/fetchSync/server/fetchSync.js +1 -1
- package/dist/esnext/foundation/useNavigate/useNavigate.js +3 -4
- package/dist/esnext/foundation/useQuery/hooks.js +15 -21
- package/dist/esnext/foundation/useServerProps/use-server-props.js +2 -2
- package/dist/esnext/foundation/useSession/useSession.js +1 -2
- package/dist/esnext/foundation/useUrl/useUrl.js +1 -2
- package/dist/esnext/framework/cache/in-memory.js +3 -3
- package/dist/esnext/framework/middleware.d.ts +1 -1
- package/dist/esnext/framework/middleware.js +3 -4
- package/dist/esnext/framework/plugin.d.ts +7 -3
- package/dist/esnext/framework/plugin.js +2 -1
- package/dist/esnext/framework/plugins/vite-plugin-client-imports.js +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-config.js +70 -67
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.d.ts +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-middleware.js +2 -3
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-rsc.js +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-virtual-files.d.ts +1 -1
- package/dist/esnext/framework/plugins/vite-plugin-hydrogen-virtual-files.js +6 -4
- package/dist/esnext/framework/types.d.ts +5 -0
- package/dist/esnext/framework/types.js +1 -0
- package/dist/esnext/hooks/index.d.ts +0 -1
- package/dist/esnext/hooks/index.js +0 -1
- package/dist/esnext/hooks/useCartLine/useCartLine.d.ts +4 -4
- package/dist/esnext/hooks/useMoney/hooks.js +53 -39
- package/dist/esnext/hooks/useProductOptions/helpers.js +6 -10
- package/dist/esnext/hooks/useShopQuery/hooks.js +18 -12
- package/dist/esnext/index.d.ts +1 -5
- package/dist/esnext/index.js +1 -5
- package/dist/{node/entry-server.d.ts → esnext/shared-types.d.ts} +11 -7
- package/dist/esnext/shared-types.js +4 -0
- package/dist/esnext/storefront-api-types.d.ts +37 -114
- package/dist/esnext/streaming.server.d.ts +9 -18
- package/dist/esnext/streaming.server.js +2 -7
- package/dist/esnext/types.d.ts +9 -18
- package/dist/esnext/types.js +1 -1
- package/dist/esnext/utilities/apiRoutes.d.ts +7 -3
- package/dist/esnext/utilities/apiRoutes.js +6 -4
- package/dist/esnext/utilities/devtools.d.ts +1 -1
- package/dist/esnext/utilities/devtools.js +3 -3
- package/dist/esnext/utilities/flattenConnection/flattenConnection.d.ts +1 -0
- package/dist/esnext/utilities/flattenConnection/flattenConnection.js +13 -6
- package/dist/esnext/utilities/graphql-tracker.js +6 -8
- package/dist/esnext/utilities/hash.d.ts +2 -2
- package/dist/esnext/utilities/hash.js +29 -6
- package/dist/esnext/utilities/image_size.d.ts +24 -3
- package/dist/esnext/utilities/image_size.js +53 -31
- package/dist/esnext/utilities/index.d.ts +1 -1
- package/dist/esnext/utilities/index.js +1 -1
- package/dist/esnext/utilities/load_script.js +1 -1
- package/dist/esnext/utilities/log/log-cache-api-status.js +3 -2
- package/dist/esnext/utilities/log/log-query-timeline.js +29 -10
- package/dist/esnext/utilities/log/log.js +1 -2
- package/dist/esnext/utilities/log/utils.js +1 -6
- package/dist/esnext/utilities/parseMetafield/index.d.ts +1 -0
- package/dist/esnext/utilities/parseMetafield/index.js +1 -0
- package/dist/esnext/utilities/parseMetafield/parseMetafield.d.ts +15 -0
- package/dist/esnext/utilities/{parseMetafieldValue/parseMetafieldValue.js → parseMetafield/parseMetafield.js} +28 -2
- package/dist/esnext/utilities/storefrontApi.js +9 -5
- package/dist/esnext/utilities/template.js +1 -2
- package/dist/esnext/utilities/web-api-polyfill.js +6 -0
- package/dist/esnext/version.d.ts +1 -1
- package/dist/esnext/version.js +1 -1
- package/dist/node/framework/cache/in-memory.js +3 -3
- package/dist/node/framework/middleware.d.ts +1 -1
- package/dist/node/framework/middleware.js +3 -4
- package/dist/node/framework/plugin.d.ts +4 -3
- package/dist/node/framework/plugin.js +3 -2
- package/dist/node/framework/plugins/vite-plugin-client-imports.js +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-config.js +70 -67
- package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.d.ts +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-middleware.js +2 -3
- package/dist/node/framework/plugins/vite-plugin-hydrogen-rsc.js +2 -2
- package/dist/node/framework/plugins/vite-plugin-hydrogen-virtual-files.d.ts +1 -1
- package/dist/node/framework/plugins/vite-plugin-hydrogen-virtual-files.js +6 -4
- package/dist/node/framework/types.d.ts +5 -0
- package/dist/node/{components/CartProvider → framework}/types.js +0 -0
- package/dist/node/shared-types.d.ts +26 -0
- package/dist/node/shared-types.js +5 -0
- package/dist/node/utilities/web-api-polyfill.js +6 -0
- package/package.json +32 -26
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-plugin.js +64 -30
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.development.server.js +50 -13
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.browser.production.min.server.js +28 -27
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.development.server.js +50 -13
- package/vendor/react-server-dom-vite/cjs/react-server-dom-vite-writer.node.production.min.server.js +28 -28
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-client-proxy.js +3 -5
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-plugin.js +64 -30
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.browser.server.js +50 -13
- package/vendor/react-server-dom-vite/esm/react-server-dom-vite-writer.node.server.js +50 -13
- package/client.d.ts +0 -1
- package/client.js +0 -1
- package/config.d.ts +0 -1
- package/config.js +0 -1
- package/dist/esnext/components/DevTools.client.d.ts +0 -1
- package/dist/esnext/components/DevTools.client.js +0 -129
- package/dist/esnext/foundation/Analytics/ServerAnalyticsRoute.server.d.ts +0 -2
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.d.ts +0 -1
- package/dist/esnext/foundation/Analytics/connectors/PerformanceMetrics/ServerAnalyticsConnector.server.js +0 -25
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.d.ts +0 -1
- package/dist/esnext/foundation/Analytics/connectors/Shopify/ServerAnalyticsConnector.server.js +0 -19
- package/dist/esnext/framework/Hydration/rsc.d.ts +0 -8
- package/dist/esnext/framework/Hydration/rsc.js +0 -102
- package/dist/esnext/hooks/useParsedMetafields/index.d.ts +0 -1
- package/dist/esnext/hooks/useParsedMetafields/index.js +0 -1
- package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.d.ts +0 -21
- package/dist/esnext/hooks/useParsedMetafields/useParsedMetafields.js +0 -21
- package/dist/esnext/utilities/parseMetafieldValue/index.d.ts +0 -1
- package/dist/esnext/utilities/parseMetafieldValue/index.js +0 -1
- package/dist/esnext/utilities/parseMetafieldValue/parseMetafieldValue.d.ts +0 -6
- package/dist/node/client.d.ts +0 -16
- package/dist/node/client.js +0 -43
- package/dist/node/components/AddToCartButton/AddToCartButton.client.d.ts +0 -23
- package/dist/node/components/AddToCartButton/AddToCartButton.client.js +0 -74
- package/dist/node/components/AddToCartButton/index.d.ts +0 -1
- package/dist/node/components/AddToCartButton/index.js +0 -5
- package/dist/node/components/BuyNowButton/BuyNowButton.client.d.ts +0 -18
- package/dist/node/components/BuyNowButton/BuyNowButton.client.js +0 -53
- package/dist/node/components/BuyNowButton/index.d.ts +0 -1
- package/dist/node/components/BuyNowButton/index.js +0 -5
- package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.d.ts +0 -11
- package/dist/node/components/CartCheckoutButton/CartCheckoutButton.client.js +0 -44
- package/dist/node/components/CartCheckoutButton/index.d.ts +0 -1
- package/dist/node/components/CartCheckoutButton/index.js +0 -5
- package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.d.ts +0 -14
- package/dist/node/components/CartEstimatedCost/CartEstimatedCost.client.js +0 -36
- package/dist/node/components/CartEstimatedCost/index.d.ts +0 -1
- package/dist/node/components/CartEstimatedCost/index.js +0 -5
- package/dist/node/components/CartLineImage/CartLineImage.client.d.ts +0 -9
- package/dist/node/components/CartLineImage/CartLineImage.client.js +0 -18
- package/dist/node/components/CartLineImage/index.d.ts +0 -1
- package/dist/node/components/CartLineImage/index.js +0 -5
- package/dist/node/components/CartLinePrice/CartLinePrice.client.d.ts +0 -12
- package/dist/node/components/CartLinePrice/CartLinePrice.client.js +0 -25
- package/dist/node/components/CartLinePrice/index.d.ts +0 -1
- package/dist/node/components/CartLinePrice/index.js +0 -5
- package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.d.ts +0 -8
- package/dist/node/components/CartLineProductTitle/CartLineProductTitle.client.js +0 -19
- package/dist/node/components/CartLineProductTitle/index.d.ts +0 -1
- package/dist/node/components/CartLineProductTitle/index.js +0 -5
- package/dist/node/components/CartLineProvider/CartLineProvider.client.d.ts +0 -11
- package/dist/node/components/CartLineProvider/CartLineProvider.client.js +0 -15
- package/dist/node/components/CartLineProvider/context.d.ts +0 -36
- package/dist/node/components/CartLineProvider/context.js +0 -5
- package/dist/node/components/CartLineProvider/index.d.ts +0 -2
- package/dist/node/components/CartLineProvider/index.js +0 -7
- package/dist/node/components/CartLineQuantity/CartLineQuantity.client.d.ts +0 -8
- package/dist/node/components/CartLineQuantity/CartLineQuantity.client.js +0 -19
- package/dist/node/components/CartLineQuantity/index.d.ts +0 -1
- package/dist/node/components/CartLineQuantity/index.js +0 -5
- package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.d.ts +0 -14
- package/dist/node/components/CartLineQuantityAdjustButton/CartLineQuantityAdjustButton.js +0 -31
- package/dist/node/components/CartLineQuantityAdjustButton/index.d.ts +0 -1
- package/dist/node/components/CartLineQuantityAdjustButton/index.js +0 -5
- package/dist/node/components/CartLines/CartLines.client.d.ts +0 -15
- package/dist/node/components/CartLines/CartLines.client.js +0 -44
- package/dist/node/components/CartLines/index.d.ts +0 -1
- package/dist/node/components/CartLines/index.js +0 -5
- package/dist/node/components/CartProvider/CartProvider.client.d.ts +0 -41
- package/dist/node/components/CartProvider/CartProvider.client.js +0 -547
- package/dist/node/components/CartProvider/cart-queries.d.ts +0 -10
- package/dist/node/components/CartProvider/cart-queries.js +0 -214
- package/dist/node/components/CartProvider/constants.d.ts +0 -2
- package/dist/node/components/CartProvider/constants.js +0 -5
- package/dist/node/components/CartProvider/context.d.ts +0 -2
- package/dist/node/components/CartProvider/context.js +0 -5
- package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartAttributesUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartBuyerIdentityUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartCreateMutation.d.ts +0 -95
- package/dist/node/components/CartProvider/graphql/CartCreateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartDiscountCodesUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartFragment.d.ts +0 -82
- package/dist/node/components/CartProvider/graphql/CartFragment.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartLineAddMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartLineAddMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartLineRemoveMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartLineUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.d.ts +0 -96
- package/dist/node/components/CartProvider/graphql/CartNoteUpdateMutation.js +0 -2
- package/dist/node/components/CartProvider/graphql/CartQuery.d.ts +0 -91
- package/dist/node/components/CartProvider/graphql/CartQuery.js +0 -2
- package/dist/node/components/CartProvider/hooks.client.d.ts +0 -15
- package/dist/node/components/CartProvider/hooks.client.js +0 -88
- package/dist/node/components/CartProvider/index.d.ts +0 -4
- package/dist/node/components/CartProvider/index.js +0 -10
- package/dist/node/components/CartProvider/types.d.ts +0 -104
- package/dist/node/components/CartShopPayButton/CartShopPayButton.client.d.ts +0 -9
- package/dist/node/components/CartShopPayButton/CartShopPayButton.client.js +0 -46
- package/dist/node/components/CartShopPayButton/index.d.ts +0 -1
- package/dist/node/components/CartShopPayButton/index.js +0 -5
- package/dist/node/components/ExternalVideo/ExternalVideo.d.ts +0 -21
- package/dist/node/components/ExternalVideo/ExternalVideo.js +0 -21
- package/dist/node/components/ExternalVideo/index.d.ts +0 -1
- package/dist/node/components/ExternalVideo/index.js +0 -5
- package/dist/node/components/Image/Image.d.ts +0 -92
- package/dist/node/components/Image/Image.js +0 -137
- package/dist/node/components/Image/index.d.ts +0 -2
- package/dist/node/components/Image/index.js +0 -5
- package/dist/node/components/Link/Link.client.d.ts +0 -25
- package/dist/node/components/Link/Link.client.js +0 -165
- package/dist/node/components/Link/index.d.ts +0 -1
- package/dist/node/components/Link/index.js +0 -5
- package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.d.ts +0 -6
- package/dist/node/components/LocalizationProvider/LocalizationClientProvider.client.js +0 -11
- package/dist/node/components/LocalizationProvider/LocalizationContext.client.d.ts +0 -6
- package/dist/node/components/LocalizationProvider/LocalizationContext.client.js +0 -5
- package/dist/node/components/LocalizationProvider/LocalizationProvider.server.d.ts +0 -33
- package/dist/node/components/LocalizationProvider/LocalizationProvider.server.js +0 -51
- package/dist/node/components/MediaFile/MediaFile.d.ts +0 -19
- package/dist/node/components/MediaFile/MediaFile.js +0 -39
- package/dist/node/components/MediaFile/index.d.ts +0 -1
- package/dist/node/components/MediaFile/index.js +0 -5
- package/dist/node/components/Metafield/Metafield.client.d.ts +0 -21
- package/dist/node/components/Metafield/Metafield.client.js +0 -75
- package/dist/node/components/Metafield/index.d.ts +0 -2
- package/dist/node/components/Metafield/index.js +0 -5
- package/dist/node/components/Metafield/types.d.ts +0 -4
- package/dist/node/components/Metafield/types.js +0 -2
- package/dist/node/components/ModelViewer/ModelViewer.client.d.ts +0 -128
- package/dist/node/components/ModelViewer/ModelViewer.client.js +0 -132
- package/dist/node/components/ModelViewer/index.d.ts +0 -1
- package/dist/node/components/ModelViewer/index.js +0 -5
- package/dist/node/components/Money/Money.client.d.ts +0 -25
- package/dist/node/components/Money/Money.client.js +0 -46
- package/dist/node/components/Money/index.d.ts +0 -1
- package/dist/node/components/Money/index.js +0 -5
- package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.d.ts +0 -21
- package/dist/node/components/ProductOptionsProvider/ProductOptionsProvider.client.js +0 -168
- package/dist/node/components/ProductOptionsProvider/context.d.ts +0 -2
- package/dist/node/components/ProductOptionsProvider/context.js +0 -5
- package/dist/node/components/ProductOptionsProvider/index.d.ts +0 -2
- package/dist/node/components/ProductOptionsProvider/index.js +0 -7
- package/dist/node/components/ProductPrice/ProductPrice.client.d.ts +0 -18
- package/dist/node/components/ProductPrice/ProductPrice.client.js +0 -61
- package/dist/node/components/ProductPrice/index.d.ts +0 -1
- package/dist/node/components/ProductPrice/index.js +0 -5
- package/dist/node/components/Seo/CollectionSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/CollectionSeo.client.js +0 -22
- package/dist/node/components/Seo/DefaultPageSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/DefaultPageSeo.client.js +0 -25
- package/dist/node/components/Seo/DescriptionSeo.client.d.ts +0 -4
- package/dist/node/components/Seo/DescriptionSeo.client.js +0 -17
- package/dist/node/components/Seo/HomePageSeo.client.d.ts +0 -2
- package/dist/node/components/Seo/HomePageSeo.client.js +0 -32
- package/dist/node/components/Seo/ImageSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/ImageSeo.client.js +0 -17
- package/dist/node/components/Seo/NoIndexSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/NoIndexSeo.client.js +0 -17
- package/dist/node/components/Seo/PageSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/PageSeo.client.js +0 -20
- package/dist/node/components/Seo/ProductSeo.client.d.ts +0 -5
- package/dist/node/components/Seo/ProductSeo.client.js +0 -70
- package/dist/node/components/Seo/Seo.client.d.ts +0 -30
- package/dist/node/components/Seo/Seo.client.js +0 -38
- package/dist/node/components/Seo/TitleSeo.client.d.ts +0 -3
- package/dist/node/components/Seo/TitleSeo.client.js +0 -17
- package/dist/node/components/Seo/TwitterSeo.client.d.ts +0 -2
- package/dist/node/components/Seo/TwitterSeo.client.js +0 -16
- package/dist/node/components/Seo/index.d.ts +0 -1
- package/dist/node/components/Seo/index.js +0 -5
- package/dist/node/components/Seo/seo-types.d.ts +0 -17
- package/dist/node/components/Seo/seo-types.js +0 -2
- package/dist/node/components/ShopPayButton/ShopPayButton.client.d.ts +0 -38
- package/dist/node/components/ShopPayButton/ShopPayButton.client.js +0 -60
- package/dist/node/components/ShopPayButton/index.d.ts +0 -1
- package/dist/node/components/ShopPayButton/index.js +0 -5
- package/dist/node/components/Video/Video.d.ts +0 -14
- package/dist/node/components/Video/Video.js +0 -31
- package/dist/node/components/Video/index.d.ts +0 -1
- package/dist/node/components/Video/index.js +0 -5
- package/dist/node/components/index.d.ts +0 -28
- package/dist/node/components/index.js +0 -59
- package/dist/node/components/types.d.ts +0 -71
- package/dist/node/components/types.js +0 -11
- package/dist/node/constants.d.ts +0 -7
- package/dist/node/constants.js +0 -10
- package/dist/node/entry-server.js +0 -495
- package/dist/node/foundation/Analytics/Analytics.client.d.ts +0 -3
- package/dist/node/foundation/Analytics/Analytics.client.js +0 -34
- package/dist/node/foundation/Analytics/Analytics.server.d.ts +0 -1
- package/dist/node/foundation/Analytics/Analytics.server.js +0 -77
- package/dist/node/foundation/Analytics/ClientAnalytics.d.ts +0 -27
- package/dist/node/foundation/Analytics/ClientAnalytics.js +0 -102
- package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.d.ts +0 -2
- package/dist/node/foundation/Analytics/ServerAnalyticsRoute.server.js +0 -39
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.d.ts +0 -7
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetrics.client.js +0 -68
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.d.ts +0 -1
- package/dist/node/foundation/Analytics/connectors/PerformanceMetrics/PerformanceMetricsDebug.client.js +0 -27
- package/dist/node/foundation/Analytics/const.d.ts +0 -9
- package/dist/node/foundation/Analytics/const.js +0 -12
- package/dist/node/foundation/Analytics/hook.d.ts +0 -1
- package/dist/node/foundation/Analytics/hook.js +0 -13
- package/dist/node/foundation/Analytics/index.d.ts +0 -1
- package/dist/node/foundation/Analytics/index.js +0 -5
- package/dist/node/foundation/Analytics/types.d.ts +0 -5
- package/dist/node/foundation/Analytics/types.js +0 -2
- package/dist/node/foundation/Analytics/utils.d.ts +0 -3
- package/dist/node/foundation/Analytics/utils.js +0 -35
- package/dist/node/foundation/AnalyticsErrorBoundary.client.d.ts +0 -4
- package/dist/node/foundation/AnalyticsErrorBoundary.client.js +0 -14
- package/dist/node/foundation/Cache/cache-sub-request.d.ts +0 -17
- package/dist/node/foundation/Cache/cache-sub-request.js +0 -95
- package/dist/node/foundation/Cache/cache.d.ts +0 -17
- package/dist/node/foundation/Cache/cache.js +0 -135
- package/dist/node/foundation/Cache/strategies/index.d.ts +0 -11
- package/dist/node/foundation/Cache/strategies/index.js +0 -108
- package/dist/node/foundation/Head/Head.client.d.ts +0 -5
- package/dist/node/foundation/Head/Head.client.js +0 -17
- package/dist/node/foundation/Head/index.d.ts +0 -1
- package/dist/node/foundation/Head/index.js +0 -5
- package/dist/node/foundation/Html/Html.d.ts +0 -13
- package/dist/node/foundation/Html/Html.js +0 -107
- package/dist/node/foundation/HydrogenRequest/HydrogenRequest.server.d.ts +0 -63
- package/dist/node/foundation/HydrogenRequest/HydrogenRequest.server.js +0 -151
- package/dist/node/foundation/HydrogenResponse/HydrogenResponse.server.d.ts +0 -23
- package/dist/node/foundation/HydrogenResponse/HydrogenResponse.server.js +0 -53
- package/dist/node/foundation/Redirect/Redirect.client.d.ts +0 -5
- package/dist/node/foundation/Redirect/Redirect.client.js +0 -18
- package/dist/node/foundation/Router/BrowserRouter.client.d.ts +0 -14
- package/dist/node/foundation/Router/BrowserRouter.client.js +0 -166
- package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.d.ts +0 -41
- package/dist/node/foundation/ServerPropsProvider/ServerPropsProvider.js +0 -90
- package/dist/node/foundation/ServerPropsProvider/index.d.ts +0 -2
- package/dist/node/foundation/ServerPropsProvider/index.js +0 -6
- package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.d.ts +0 -22
- package/dist/node/foundation/ServerRequestProvider/ServerRequestProvider.js +0 -155
- package/dist/node/foundation/ServerRequestProvider/index.d.ts +0 -1
- package/dist/node/foundation/ServerRequestProvider/index.js +0 -17
- package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.d.ts +0 -7
- package/dist/node/foundation/ShopifyProvider/ShopifyProvider.client.js +0 -35
- package/dist/node/foundation/ShopifyProvider/index.d.ts +0 -1
- package/dist/node/foundation/ShopifyProvider/index.js +0 -5
- package/dist/node/foundation/ShopifyProvider/types.d.ts +0 -13
- package/dist/node/foundation/ShopifyProvider/types.js +0 -2
- package/dist/node/foundation/fetchSync/client/fetchSync.d.ts +0 -10
- package/dist/node/foundation/fetchSync/client/fetchSync.js +0 -33
- package/dist/node/foundation/fetchSync/server/fetchSync.d.ts +0 -8
- package/dist/node/foundation/fetchSync/server/fetchSync.js +0 -33
- package/dist/node/foundation/fetchSync/types.d.ts +0 -5
- package/dist/node/foundation/fetchSync/types.js +0 -2
- package/dist/node/foundation/index.d.ts +0 -3
- package/dist/node/foundation/index.js +0 -10
- package/dist/node/foundation/runtime.d.ts +0 -2
- package/dist/node/foundation/runtime.js +0 -11
- package/dist/node/foundation/session/session.d.ts +0 -27
- package/dist/node/foundation/session/session.js +0 -43
- package/dist/node/foundation/ssr-interop.d.ts +0 -29
- package/dist/node/foundation/ssr-interop.js +0 -39
- package/dist/node/foundation/useNavigate/useNavigate.d.ts +0 -15
- package/dist/node/foundation/useNavigate/useNavigate.js +0 -25
- package/dist/node/foundation/useQuery/hooks.d.ts +0 -37
- package/dist/node/foundation/useQuery/hooks.js +0 -119
- package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.d.ts +0 -10
- package/dist/node/foundation/useRouteParams/RouteParamsProvider.client.js +0 -34
- package/dist/node/foundation/useRouteParams/useRouteParams.d.ts +0 -4
- package/dist/node/foundation/useRouteParams/useRouteParams.js +0 -13
- package/dist/node/foundation/useServerProps/index.d.ts +0 -1
- package/dist/node/foundation/useServerProps/index.js +0 -5
- package/dist/node/foundation/useServerProps/use-server-props.d.ts +0 -21
- package/dist/node/foundation/useServerProps/use-server-props.js +0 -40
- package/dist/node/foundation/useSession/useSession.d.ts +0 -2
- package/dist/node/foundation/useSession/useSession.js +0 -12
- package/dist/node/foundation/useShop/index.d.ts +0 -1
- package/dist/node/foundation/useShop/index.js +0 -5
- package/dist/node/foundation/useShop/use-shop.d.ts +0 -6
- package/dist/node/foundation/useShop/use-shop.js +0 -18
- package/dist/node/foundation/useUrl/index.d.ts +0 -1
- package/dist/node/foundation/useUrl/index.js +0 -5
- package/dist/node/foundation/useUrl/useUrl.d.ts +0 -4
- package/dist/node/foundation/useUrl/useUrl.js +0 -32
- package/dist/node/framework/Hydration/rsc.d.ts +0 -8
- package/dist/node/framework/Hydration/rsc.js +0 -105
- package/dist/node/hooks/index.d.ts +0 -6
- package/dist/node/hooks/index.js +0 -28
- package/dist/node/hooks/useCart/index.d.ts +0 -1
- package/dist/node/hooks/useCart/index.js +0 -5
- package/dist/node/hooks/useCart/useCart.d.ts +0 -4
- package/dist/node/hooks/useCart/useCart.js +0 -19
- package/dist/node/hooks/useCartLine/index.d.ts +0 -1
- package/dist/node/hooks/useCartLine/index.js +0 -5
- package/dist/node/hooks/useCartLine/useCartLine.d.ts +0 -39
- package/dist/node/hooks/useCartLine/useCartLine.js +0 -16
- package/dist/node/hooks/useCountry/index.d.ts +0 -1
- package/dist/node/hooks/useCountry/index.js +0 -5
- package/dist/node/hooks/useCountry/useCountry.d.ts +0 -7
- package/dist/node/hooks/useCountry/useCountry.js +0 -21
- package/dist/node/hooks/useLoadScript/index.d.ts +0 -1
- package/dist/node/hooks/useLoadScript/index.js +0 -5
- package/dist/node/hooks/useLoadScript/useLoadScript.client.d.ts +0 -8
- package/dist/node/hooks/useLoadScript/useLoadScript.client.js +0 -27
- package/dist/node/hooks/useMeasurement/hooks.d.ts +0 -9
- package/dist/node/hooks/useMeasurement/hooks.js +0 -17
- package/dist/node/hooks/useMeasurement/index.d.ts +0 -1
- package/dist/node/hooks/useMeasurement/index.js +0 -5
- package/dist/node/hooks/useMoney/hooks.d.ts +0 -54
- package/dist/node/hooks/useMoney/hooks.js +0 -70
- package/dist/node/hooks/useMoney/index.d.ts +0 -1
- package/dist/node/hooks/useMoney/index.js +0 -5
- package/dist/node/hooks/useParsedMetafields/index.d.ts +0 -1
- package/dist/node/hooks/useParsedMetafields/index.js +0 -5
- package/dist/node/hooks/useParsedMetafields/useParsedMetafields.d.ts +0 -21
- package/dist/node/hooks/useParsedMetafields/useParsedMetafields.js +0 -25
- package/dist/node/hooks/useProductOptions/helpers.d.ts +0 -6
- package/dist/node/hooks/useProductOptions/helpers.js +0 -46
- package/dist/node/hooks/useProductOptions/index.d.ts +0 -2
- package/dist/node/hooks/useProductOptions/index.js +0 -20
- package/dist/node/hooks/useProductOptions/types.d.ts +0 -44
- package/dist/node/hooks/useProductOptions/types.js +0 -2
- package/dist/node/hooks/useProductOptions/useProductOptions.client.d.ts +0 -1
- package/dist/node/hooks/useProductOptions/useProductOptions.client.js +0 -13
- package/dist/node/hooks/useShopQuery/hooks.d.ts +0 -28
- package/dist/node/hooks/useShopQuery/hooks.js +0 -171
- package/dist/node/hooks/useShopQuery/index.d.ts +0 -1
- package/dist/node/hooks/useShopQuery/index.js +0 -5
- package/dist/node/storefront-api-types.d.ts +0 -6076
- package/dist/node/storefront-api-types.js +0 -1766
- package/dist/node/streaming.server.d.ts +0 -25
- package/dist/node/streaming.server.js +0 -28
- package/dist/node/types.d.ts +0 -114
- package/dist/node/types.js +0 -2
- package/dist/node/utilities/apiRoutes.d.ts +0 -37
- package/dist/node/utilities/apiRoutes.js +0 -157
- package/dist/node/utilities/bot-ua.d.ts +0 -4
- package/dist/node/utilities/bot-ua.js +0 -65
- package/dist/node/utilities/devtools.d.ts +0 -11
- package/dist/node/utilities/devtools.js +0 -15
- package/dist/node/utilities/error.d.ts +0 -1
- package/dist/node/utilities/error.js +0 -10
- package/dist/node/utilities/fetch.d.ts +0 -9
- package/dist/node/utilities/fetch.js +0 -37
- package/dist/node/utilities/flattenConnection/flattenConnection.d.ts +0 -6
- package/dist/node/utilities/flattenConnection/flattenConnection.js +0 -15
- package/dist/node/utilities/flattenConnection/index.d.ts +0 -1
- package/dist/node/utilities/flattenConnection/index.js +0 -5
- package/dist/node/utilities/graphql-tag.d.ts +0 -1
- package/dist/node/utilities/graphql-tag.js +0 -10
- package/dist/node/utilities/graphql-tracker.d.ts +0 -17
- package/dist/node/utilities/graphql-tracker.js +0 -130
- package/dist/node/utilities/hash.d.ts +0 -2
- package/dist/node/utilities/hash.js +0 -11
- package/dist/node/utilities/html-encoding.d.ts +0 -1
- package/dist/node/utilities/html-encoding.js +0 -12
- package/dist/node/utilities/image_size.d.ts +0 -12
- package/dist/node/utilities/image_size.js +0 -68
- package/dist/node/utilities/index.d.ts +0 -12
- package/dist/node/utilities/index.js +0 -33
- package/dist/node/utilities/isBrowser/index.d.ts +0 -1
- package/dist/node/utilities/isBrowser/index.js +0 -5
- package/dist/node/utilities/isBrowser/isBrowser.d.ts +0 -4
- package/dist/node/utilities/isBrowser/isBrowser.js +0 -10
- package/dist/node/utilities/isServer/index.d.ts +0 -1
- package/dist/node/utilities/isServer/index.js +0 -5
- package/dist/node/utilities/isServer/isServer.d.ts +0 -4
- package/dist/node/utilities/isServer/isServer.js +0 -11
- package/dist/node/utilities/load_script.d.ts +0 -3
- package/dist/node/utilities/load_script.js +0 -27
- package/dist/node/utilities/log/index.d.ts +0 -4
- package/dist/node/utilities/log/index.js +0 -16
- package/dist/node/utilities/log/log-cache-api-status.d.ts +0 -1
- package/dist/node/utilities/log/log-cache-api-status.js +0 -17
- package/dist/node/utilities/log/log-cache-header.d.ts +0 -10
- package/dist/node/utilities/log/log-cache-header.js +0 -35
- package/dist/node/utilities/log/log-query-timeline.d.ts +0 -12
- package/dist/node/utilities/log/log-query-timeline.js +0 -88
- package/dist/node/utilities/log/log.d.ts +0 -28
- package/dist/node/utilities/log/log.js +0 -81
- package/dist/node/utilities/log/utils.d.ts +0 -3
- package/dist/node/utilities/log/utils.js +0 -21
- package/dist/node/utilities/matchPath.d.ts +0 -10
- package/dist/node/utilities/matchPath.js +0 -58
- package/dist/node/utilities/measurement.d.ts +0 -3
- package/dist/node/utilities/measurement.js +0 -103
- package/dist/node/utilities/parse.d.ts +0 -1
- package/dist/node/utilities/parse.js +0 -13
- package/dist/node/utilities/parseMetafieldValue/index.d.ts +0 -1
- package/dist/node/utilities/parseMetafieldValue/index.js +0 -5
- package/dist/node/utilities/parseMetafieldValue/parseMetafieldValue.d.ts +0 -6
- package/dist/node/utilities/parseMetafieldValue/parseMetafieldValue.js +0 -40
- package/dist/node/utilities/storefrontApi.d.ts +0 -4
- package/dist/node/utilities/storefrontApi.js +0 -26
- package/dist/node/utilities/suspense.d.ts +0 -12
- package/dist/node/utilities/suspense.js +0 -64
- package/dist/node/utilities/template.d.ts +0 -9
- package/dist/node/utilities/template.js +0 -27
- package/dist/node/utilities/timing.d.ts +0 -7
- package/dist/node/utilities/timing.js +0 -18
- package/dist/node/utilities/video_parameters.d.ts +0 -47
- package/dist/node/utilities/video_parameters.js +0 -27
- package/dist/node/version.d.ts +0 -1
- package/dist/node/version.js +0 -4
- package/entry-client.d.ts +0 -1
- package/entry-client.js +0 -1
- package/entry-server.d.ts +0 -1
- package/entry-server.js +0 -1
- package/middleware.d.ts +0 -1
- package/middleware.js +0 -1
- package/plugin.d.ts +0 -1
- package/plugin.js +0 -1
- package/web-polyfills.js +0 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Metafield } from '../../storefront-api-types';
|
|
2
|
+
import type { ParsedMetafield } from '../../types';
|
|
3
|
+
import type { PartialDeep } from 'type-fest';
|
|
4
|
+
/**
|
|
5
|
+
* The `parseMetafield` utility transforms a [Metafield](https://shopify.dev/api/storefront/reference/common-objects/Metafield)
|
|
6
|
+
* into a new object whose `values` have been parsed according to the metafield `type`.
|
|
7
|
+
* If the metafield is `null`, then it returns `null` back.
|
|
8
|
+
*/
|
|
9
|
+
export declare function parseMetafield(
|
|
10
|
+
/** A [Metafield](https://shopify.dev/api/storefront/reference/common-objects/Metafield) or null */
|
|
11
|
+
metafield: PartialDeep<Metafield> | null): PartialDeep<ParsedMetafield> | null;
|
|
12
|
+
/**
|
|
13
|
+
* The `parseMetafieldValue` function parses a [Metafield](https://shopify.dev/api/storefront/reference/common-objects/metafield)'s `value` from a string into a sensible type corresponding to the [Metafield](https://shopify.dev/api/storefront/reference/common-objects/metafield)'s `type`.
|
|
14
|
+
*/
|
|
15
|
+
export declare function parseMetafieldValue(metafield: PartialDeep<Metafield> | null): ParsedMetafield['value'];
|
|
@@ -1,14 +1,40 @@
|
|
|
1
1
|
import { parseJSON } from '../parse';
|
|
2
|
+
/**
|
|
3
|
+
* The `parseMetafield` utility transforms a [Metafield](https://shopify.dev/api/storefront/reference/common-objects/Metafield)
|
|
4
|
+
* into a new object whose `values` have been parsed according to the metafield `type`.
|
|
5
|
+
* If the metafield is `null`, then it returns `null` back.
|
|
6
|
+
*/
|
|
7
|
+
export function parseMetafield(
|
|
8
|
+
/** A [Metafield](https://shopify.dev/api/storefront/reference/common-objects/Metafield) or null */
|
|
9
|
+
metafield) {
|
|
10
|
+
if (!metafield) {
|
|
11
|
+
return null;
|
|
12
|
+
}
|
|
13
|
+
if (__HYDROGEN_DEV__ &&
|
|
14
|
+
(metafield.value === null || metafield.value === undefined)) {
|
|
15
|
+
console.warn(`'parseMetafield()' was passed ${metafield.value} for 'metafield.value'`);
|
|
16
|
+
}
|
|
17
|
+
return {
|
|
18
|
+
...metafield,
|
|
19
|
+
value: parseMetafieldValue(metafield),
|
|
20
|
+
};
|
|
21
|
+
}
|
|
2
22
|
/**
|
|
3
23
|
* The `parseMetafieldValue` function parses a [Metafield](https://shopify.dev/api/storefront/reference/common-objects/metafield)'s `value` from a string into a sensible type corresponding to the [Metafield](https://shopify.dev/api/storefront/reference/common-objects/metafield)'s `type`.
|
|
4
24
|
*/
|
|
5
25
|
export function parseMetafieldValue(metafield) {
|
|
6
|
-
if (metafield
|
|
26
|
+
if (!metafield) {
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
if (metafield.value === null || metafield.value === undefined) {
|
|
30
|
+
if (__HYDROGEN_DEV__) {
|
|
31
|
+
console.warn(`'parseMetafieldValue()' was passed ${metafield.value} for 'metafield.value'`);
|
|
32
|
+
}
|
|
7
33
|
return metafield.value;
|
|
8
34
|
}
|
|
9
35
|
switch (metafield.type) {
|
|
10
36
|
case 'boolean':
|
|
11
|
-
return metafield.value
|
|
37
|
+
return metafield.value === 'true';
|
|
12
38
|
case 'number_integer':
|
|
13
39
|
return parseInt(metafield.value);
|
|
14
40
|
case 'number_decimal':
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
/* global Oxygen */
|
|
2
|
-
import { OXYGEN_SECRET_TOKEN_ENVIRONMENT_VARIABLE, STOREFRONT_API_SECRET_TOKEN_HEADER, STOREFRONT_API_PUBLIC_TOKEN_HEADER, STOREFRONT_API_BUYER_IP_HEADER, } from '../constants';
|
|
2
|
+
import { OXYGEN_SECRET_TOKEN_ENVIRONMENT_VARIABLE, STOREFRONT_API_SECRET_TOKEN_HEADER, STOREFRONT_API_PUBLIC_TOKEN_HEADER, STOREFRONT_API_BUYER_IP_HEADER, SHOPIFY_STOREFRONT_ID_VARIABLE, SHOPIFY_STOREFRONT_ID_HEADER, } from '../constants';
|
|
3
3
|
export function getStorefrontApiRequestHeaders({ buyerIp, storefrontToken, }) {
|
|
4
|
-
var _a;
|
|
5
4
|
const headers = {};
|
|
6
|
-
const secretToken =
|
|
7
|
-
|
|
8
|
-
: null;
|
|
5
|
+
const secretToken = getOxygenVariable(OXYGEN_SECRET_TOKEN_ENVIRONMENT_VARIABLE);
|
|
6
|
+
const storefrontId = getOxygenVariable(SHOPIFY_STOREFRONT_ID_VARIABLE);
|
|
9
7
|
/**
|
|
10
8
|
* Only pass one type of storefront token at a time.
|
|
11
9
|
*/
|
|
@@ -18,5 +16,11 @@ export function getStorefrontApiRequestHeaders({ buyerIp, storefrontToken, }) {
|
|
|
18
16
|
if (buyerIp) {
|
|
19
17
|
headers[STOREFRONT_API_BUYER_IP_HEADER] = buyerIp;
|
|
20
18
|
}
|
|
19
|
+
if (storefrontId) {
|
|
20
|
+
headers[SHOPIFY_STOREFRONT_ID_HEADER] = storefrontId;
|
|
21
|
+
}
|
|
21
22
|
return headers;
|
|
22
23
|
}
|
|
24
|
+
function getOxygenVariable(key) {
|
|
25
|
+
return typeof Oxygen !== 'undefined' ? Oxygen?.env?.[key] : null;
|
|
26
|
+
}
|
|
@@ -3,12 +3,11 @@
|
|
|
3
3
|
* Returns two lists of scripts, split based on whether they are `type="module"`.
|
|
4
4
|
*/
|
|
5
5
|
export function stripScriptsFromTemplate(template) {
|
|
6
|
-
var _a;
|
|
7
6
|
const bootstrapScripts = [];
|
|
8
7
|
const bootstrapModules = [];
|
|
9
8
|
const scripts = template.matchAll(/<script\n*?.+?src="(?<script>([^"]+?))"\n*.*?><\/script>/g);
|
|
10
9
|
for (const match of scripts) {
|
|
11
|
-
const scriptName =
|
|
10
|
+
const scriptName = match.groups?.script;
|
|
12
11
|
if (!scriptName)
|
|
13
12
|
continue;
|
|
14
13
|
if (match[0].includes(`type="module"`)) {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import fetch, { Request, Response, Headers } from 'node-fetch';
|
|
2
2
|
import AbortController from 'abort-controller';
|
|
3
3
|
import { ReadableStream, WritableStream, TransformStream, } from 'web-streams-polyfill/ponyfill';
|
|
4
|
+
import { FormData } from 'undici';
|
|
4
5
|
if (!globalThis.fetch) {
|
|
5
6
|
Object.assign(globalThis, {
|
|
6
7
|
fetch,
|
|
@@ -10,6 +11,11 @@ if (!globalThis.fetch) {
|
|
|
10
11
|
AbortController,
|
|
11
12
|
});
|
|
12
13
|
}
|
|
14
|
+
if (!globalThis.FormData) {
|
|
15
|
+
Object.assign(globalThis, {
|
|
16
|
+
FormData,
|
|
17
|
+
});
|
|
18
|
+
}
|
|
13
19
|
if (!globalThis.ReadableStream) {
|
|
14
20
|
Object.assign(globalThis, {
|
|
15
21
|
ReadableStream,
|
package/dist/esnext/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "0.
|
|
1
|
+
export declare const LIB_VERSION = "0.25.0";
|
package/dist/esnext/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const LIB_VERSION = '0.
|
|
1
|
+
export const LIB_VERSION = '0.25.0';
|
|
@@ -6,6 +6,7 @@ exports.InMemoryCache = void 0;
|
|
|
6
6
|
* works and is only meant to be used during development.
|
|
7
7
|
*/
|
|
8
8
|
class InMemoryCache {
|
|
9
|
+
store;
|
|
9
10
|
constructor() {
|
|
10
11
|
this.store = new Map();
|
|
11
12
|
}
|
|
@@ -16,15 +17,14 @@ class InMemoryCache {
|
|
|
16
17
|
});
|
|
17
18
|
}
|
|
18
19
|
match(request) {
|
|
19
|
-
var _a, _b;
|
|
20
20
|
const match = this.store.get(request.url);
|
|
21
21
|
if (!match) {
|
|
22
22
|
return;
|
|
23
23
|
}
|
|
24
24
|
const { value, date } = match;
|
|
25
25
|
const cacheControl = value.headers.get('cache-control') || '';
|
|
26
|
-
const maxAge = parseInt(
|
|
27
|
-
const swr = parseInt(
|
|
26
|
+
const maxAge = parseInt(cacheControl.match(/max-age=(\d+)/)?.[1] || '0', 10);
|
|
27
|
+
const swr = parseInt(cacheControl.match(/stale-while-revalidate=(\d+)/)?.[1] || '0', 10);
|
|
28
28
|
const age = (new Date().valueOf() - date.valueOf()) / 1000;
|
|
29
29
|
const isMiss = age > maxAge + swr;
|
|
30
30
|
if (isMiss) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import type { ShopifyConfig } from '../shared-types';
|
|
1
2
|
import type { IncomingMessage, NextFunction } from 'connect';
|
|
2
3
|
import type { ServerResponse } from 'http';
|
|
3
4
|
import type { ViteDevServer } from 'vite';
|
|
4
|
-
import type { ShopifyConfig } from '../types';
|
|
5
5
|
declare type HydrogenMiddlewareArgs = {
|
|
6
6
|
dev?: boolean;
|
|
7
7
|
indexTemplate: string | ((url: string) => Promise<string>);
|
|
@@ -53,7 +53,6 @@ function hydrogenMiddleware({ dev, cache, indexTemplate, getServerEntrypoint, de
|
|
|
53
53
|
const webPolyfills = !globalThis.fetch || !globalThis.ReadableStream
|
|
54
54
|
? Promise.resolve().then(() => __importStar(require('../utilities/web-api-polyfill'))) : undefined;
|
|
55
55
|
return async function (request, response, next) {
|
|
56
|
-
var _a, _b, _c;
|
|
57
56
|
try {
|
|
58
57
|
await webPolyfills;
|
|
59
58
|
const entrypoint = await Promise.resolve(getServerEntrypoint()).catch((error) => {
|
|
@@ -63,7 +62,7 @@ function hydrogenMiddleware({ dev, cache, indexTemplate, getServerEntrypoint, de
|
|
|
63
62
|
// to keep throwing it on refresh until things are fixed.
|
|
64
63
|
entrypointError = error;
|
|
65
64
|
});
|
|
66
|
-
const handleRequest =
|
|
65
|
+
const handleRequest = entrypoint?.default ?? entrypoint;
|
|
67
66
|
if (typeof handleRequest !== 'function') {
|
|
68
67
|
if (entrypointError) {
|
|
69
68
|
throw entrypointError;
|
|
@@ -94,7 +93,7 @@ function hydrogenMiddleware({ dev, cache, indexTemplate, getServerEntrypoint, de
|
|
|
94
93
|
*/
|
|
95
94
|
try {
|
|
96
95
|
const template = typeof indexTemplate === 'function'
|
|
97
|
-
? await indexTemplate(
|
|
96
|
+
? await indexTemplate(request.originalUrl ?? request.url ?? '')
|
|
98
97
|
: indexTemplate;
|
|
99
98
|
const html = template.replace(`<div id="root"></div>`, `<div id="root"><pre><code>${e.stack}</code></pre></div>`);
|
|
100
99
|
response.write(html);
|
|
@@ -121,5 +120,5 @@ async function respondWithGraphiql(response, shopifyConfig) {
|
|
|
121
120
|
}
|
|
122
121
|
const { storeDomain, storefrontToken, storefrontApiVersion } = shopifyConfig;
|
|
123
122
|
response.setHeader('Content-Type', 'text/html');
|
|
124
|
-
response.end((0, graphiql_1.graphiqlHtml)(storeDomain
|
|
123
|
+
response.end((0, graphiql_1.graphiqlHtml)(storeDomain?.replace(/^https?:\/\//, ''), storefrontToken, storefrontApiVersion));
|
|
125
124
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HydrogenVitePluginOptions } from '
|
|
1
|
+
import type { HydrogenVitePluginOptions } from './types';
|
|
2
2
|
import type { Plugin } from 'vite';
|
|
3
|
-
declare const
|
|
4
|
-
export
|
|
3
|
+
declare const hydrogenPlugin: (pluginOptions?: HydrogenVitePluginOptions) => Plugin[];
|
|
4
|
+
export = hydrogenPlugin;
|
|
5
|
+
export default hydrogenPlugin;
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
5
|
const vite_plugin_hydrogen_config_1 = __importDefault(require("./plugins/vite-plugin-hydrogen-config"));
|
|
7
6
|
const vite_plugin_hydrogen_middleware_1 = __importDefault(require("./plugins/vite-plugin-hydrogen-middleware"));
|
|
8
7
|
const vite_plugin_hydrogen_client_middleware_1 = __importDefault(require("./plugins/vite-plugin-hydrogen-client-middleware"));
|
|
@@ -17,7 +16,7 @@ const plugin_react_1 = __importDefault(require("@vitejs/plugin-react"));
|
|
|
17
16
|
const vite_plugin_css_modules_rsc_1 = __importDefault(require("./plugins/vite-plugin-css-modules-rsc"));
|
|
18
17
|
const vite_plugin_client_imports_1 = __importDefault(require("./plugins/vite-plugin-client-imports"));
|
|
19
18
|
const vite_plugin_hydrogen_suppress_warnings_1 = __importDefault(require("./plugins/vite-plugin-hydrogen-suppress-warnings"));
|
|
20
|
-
|
|
19
|
+
const hydrogenPlugin = (pluginOptions = {}) => {
|
|
21
20
|
return [
|
|
22
21
|
process.env.VITE_INSPECT && (0, vite_plugin_inspect_1.default)(),
|
|
23
22
|
(0, vite_plugin_hydrogen_config_1.default)(),
|
|
@@ -35,3 +34,5 @@ exports.default = (pluginOptions = {}) => {
|
|
|
35
34
|
pluginOptions.purgeQueryCacheOnBuild && (0, vite_plugin_purge_query_cache_1.default)(),
|
|
36
35
|
];
|
|
37
36
|
};
|
|
37
|
+
exports.default = hydrogenPlugin; // For ESM
|
|
38
|
+
module.exports = hydrogenPlugin;
|
|
@@ -12,7 +12,7 @@ function clientImports() {
|
|
|
12
12
|
async resolveId(source, importer, { ssr }) {
|
|
13
13
|
if (ssr)
|
|
14
14
|
return;
|
|
15
|
-
if (/\.server\.(j|t)sx?/.test(importer
|
|
15
|
+
if (/\.server\.(j|t)sx?/.test(importer ?? ''))
|
|
16
16
|
return;
|
|
17
17
|
if ('@shopify/hydrogen' !== source)
|
|
18
18
|
return;
|
|
@@ -26,76 +26,79 @@ exports.default = () => {
|
|
|
26
26
|
}
|
|
27
27
|
return {
|
|
28
28
|
name: 'vite-plugin-hydrogen-config',
|
|
29
|
-
config: async (config, env) => {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// This library is currently included as a compiled vendor lib, not published yet to NPM
|
|
35
|
-
'react-server-dom-vite/client-proxy': require.resolve('@shopify/hydrogen/vendor/react-server-dom-vite/esm/react-server-dom-vite-client-proxy.js'),
|
|
36
|
-
},
|
|
29
|
+
config: async (config, env) => ({
|
|
30
|
+
resolve: {
|
|
31
|
+
alias: {
|
|
32
|
+
// This library is currently included as a compiled vendor lib, not published yet to NPM
|
|
33
|
+
'react-server-dom-vite/client-proxy': require.resolve('@shopify/hydrogen/vendor/react-server-dom-vite/esm/react-server-dom-vite-client-proxy.js'),
|
|
37
34
|
},
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
35
|
+
},
|
|
36
|
+
build: {
|
|
37
|
+
minify: config.build?.minify ?? 'esbuild',
|
|
38
|
+
sourcemap: true,
|
|
39
|
+
rollupOptions: config.build?.rollupOptions
|
|
40
|
+
? Object.assign(rollupOptions, config.build.rollupOptions)
|
|
41
|
+
: rollupOptions,
|
|
42
|
+
target: config.build?.ssr
|
|
43
|
+
? isWorker
|
|
44
|
+
? 'es2022' // CFW (Updates weekly to latest V8)
|
|
45
|
+
: 'es2020' // Node (Support for v14.19 used in SB)
|
|
46
|
+
: 'modules', // Browsers (Vite default value)
|
|
47
|
+
},
|
|
48
|
+
ssr: {
|
|
49
|
+
/**
|
|
50
|
+
* Tell Vite to bundle everything when we're building for Workers.
|
|
51
|
+
* Otherwise, bundle RSC plugin as a workaround to apply the vendor alias above.
|
|
52
|
+
*/
|
|
53
|
+
noExternal: isWorker || [/react-server-dom-vite/],
|
|
54
|
+
target: isWorker ? 'webworker' : 'node',
|
|
55
|
+
},
|
|
56
|
+
// Reload when updating local Hydrogen lib
|
|
57
|
+
server: process.env.LOCAL_DEV && {
|
|
58
|
+
watch: {
|
|
59
|
+
ignored: [
|
|
60
|
+
'!**/node_modules/@shopify/hydrogen/**',
|
|
61
|
+
'!**/node_modules/@shopify/hydrogen-ui/**',
|
|
62
|
+
],
|
|
44
63
|
},
|
|
45
|
-
|
|
64
|
+
},
|
|
65
|
+
optimizeDeps: {
|
|
66
|
+
exclude: [
|
|
67
|
+
'@shopify/hydrogen',
|
|
68
|
+
'@shopify/hydrogen/client',
|
|
69
|
+
'@shopify/hydrogen/entry-client',
|
|
70
|
+
'@shopify/hydrogen-ui',
|
|
71
|
+
],
|
|
72
|
+
include: [
|
|
46
73
|
/**
|
|
47
|
-
*
|
|
48
|
-
*
|
|
74
|
+
* Additionally, the following dependencies have trouble loading the
|
|
75
|
+
* correct version of the dependency (server vs client). This tells Vite to take the
|
|
76
|
+
* server versions and optimize them for ESM.
|
|
49
77
|
*/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
'react-helmet-async',
|
|
76
|
-
'react-error-boundary',
|
|
77
|
-
/**
|
|
78
|
-
* Vite cannot find the following dependencies since they might be
|
|
79
|
-
* required in RSC asynchronously. This tells Vite to optimize them
|
|
80
|
-
* at server start to avoid posterior page reloads and issues (#429 #430).
|
|
81
|
-
*/
|
|
82
|
-
'react',
|
|
83
|
-
'react-dom/client',
|
|
84
|
-
'react-server-dom-vite/client-proxy',
|
|
85
|
-
// https://github.com/vitejs/vite/issues/6215
|
|
86
|
-
'react/jsx-runtime',
|
|
87
|
-
// https://github.com/nfriedly/set-cookie-parser/issues/50
|
|
88
|
-
'set-cookie-parser',
|
|
89
|
-
],
|
|
90
|
-
},
|
|
91
|
-
define: {
|
|
92
|
-
__HYDROGEN_DEV__: env.mode !== 'production',
|
|
93
|
-
__HYDROGEN_WORKER__: isWorker,
|
|
94
|
-
__HYDROGEN_TEST__: false, // Used in unit tests
|
|
95
|
-
},
|
|
96
|
-
envPrefix: ['VITE_', 'PUBLIC_'],
|
|
97
|
-
base: process.env.HYDROGEN_ASSET_BASE_URL,
|
|
98
|
-
});
|
|
99
|
-
},
|
|
78
|
+
'react-helmet-async',
|
|
79
|
+
'react-error-boundary',
|
|
80
|
+
/**
|
|
81
|
+
* Vite cannot find the following dependencies since they might be
|
|
82
|
+
* required in RSC asynchronously. This tells Vite to optimize them
|
|
83
|
+
* at server start to avoid posterior page reloads and issues (#429 #430).
|
|
84
|
+
*/
|
|
85
|
+
'react',
|
|
86
|
+
'react-dom/client',
|
|
87
|
+
'react-server-dom-vite/client-proxy',
|
|
88
|
+
// https://github.com/vitejs/vite/issues/6215
|
|
89
|
+
'react/jsx-runtime',
|
|
90
|
+
// https://github.com/nfriedly/set-cookie-parser/issues/50
|
|
91
|
+
'set-cookie-parser',
|
|
92
|
+
'undici',
|
|
93
|
+
],
|
|
94
|
+
},
|
|
95
|
+
define: {
|
|
96
|
+
__HYDROGEN_DEV__: env.mode !== 'production',
|
|
97
|
+
__HYDROGEN_WORKER__: isWorker,
|
|
98
|
+
__HYDROGEN_TEST__: false, // Used in unit tests
|
|
99
|
+
},
|
|
100
|
+
envPrefix: ['VITE_', 'PUBLIC_'],
|
|
101
|
+
base: process.env.HYDROGEN_ASSET_BASE_URL,
|
|
102
|
+
}),
|
|
100
103
|
};
|
|
101
104
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Plugin } from 'vite';
|
|
2
|
-
import type { HydrogenVitePluginOptions } from '
|
|
2
|
+
import type { HydrogenVitePluginOptions } from '../types';
|
|
3
3
|
export declare const HYDROGEN_DEFAULT_SERVER_ENTRY: string;
|
|
4
4
|
declare const _default: (pluginOptions: HydrogenVitePluginOptions) => Plugin;
|
|
5
5
|
export default _default;
|
|
@@ -33,10 +33,9 @@ exports.default = (pluginOptions) => {
|
|
|
33
33
|
server.middlewares.use((0, middleware_1.graphiqlMiddleware)({
|
|
34
34
|
dev: true,
|
|
35
35
|
getShopifyConfig: async (incomingMessage) => {
|
|
36
|
-
var _a;
|
|
37
36
|
const { default: hydrogenConfig } = await server.ssrLoadModule(vite_plugin_hydrogen_virtual_files_1.VIRTUAL_PROXY_HYDROGEN_CONFIG_ID);
|
|
38
37
|
// @ts-ignore
|
|
39
|
-
const { address = 'localhost', port = '3000' } =
|
|
38
|
+
const { address = 'localhost', port = '3000' } = server.httpServer?.address() || {};
|
|
40
39
|
const url = new URL(`http://${address}:${port}${incomingMessage.url}`);
|
|
41
40
|
const request = new Request(url.toString(), {
|
|
42
41
|
headers: incomingMessage.headers,
|
|
@@ -54,7 +53,7 @@ exports.default = (pluginOptions) => {
|
|
|
54
53
|
indexTemplate: getIndexTemplate,
|
|
55
54
|
getServerEntrypoint: () => server.ssrLoadModule(exports.HYDROGEN_DEFAULT_SERVER_ENTRY),
|
|
56
55
|
devServer: server,
|
|
57
|
-
cache:
|
|
56
|
+
cache: pluginOptions?.devCache
|
|
58
57
|
? new in_memory_1.InMemoryCache()
|
|
59
58
|
: undefined,
|
|
60
59
|
}));
|
|
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
// @ts-ignore
|
|
7
|
-
const
|
|
7
|
+
const plugin_js_1 = __importDefault(require("@shopify/hydrogen/vendor/react-server-dom-vite/plugin.js"));
|
|
8
8
|
const vite_plugin_hydrogen_middleware_1 = require("./vite-plugin-hydrogen-middleware");
|
|
9
9
|
const vite_plugin_hydrogen_virtual_files_1 = require("./vite-plugin-hydrogen-virtual-files");
|
|
10
10
|
function default_1() {
|
|
11
|
-
return (0,
|
|
11
|
+
return (0, plugin_js_1.default)({
|
|
12
12
|
serverBuildEntries: [
|
|
13
13
|
vite_plugin_hydrogen_middleware_1.HYDROGEN_DEFAULT_SERVER_ENTRY,
|
|
14
14
|
vite_plugin_hydrogen_virtual_files_1.VIRTUAL_PROXY_HYDROGEN_ROUTES_ID,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Plugin } from 'vite';
|
|
2
|
-
import type { HydrogenVitePluginOptions } from '
|
|
2
|
+
import type { HydrogenVitePluginOptions } from '../types';
|
|
3
3
|
export declare const HYDROGEN_DEFAULT_SERVER_ENTRY: string;
|
|
4
4
|
export declare const VIRTUAL_PROXY_HYDROGEN_CONFIG_ID: string;
|
|
5
5
|
export declare const VIRTUAL_PROXY_HYDROGEN_ROUTES_ID: string;
|
|
@@ -57,8 +57,8 @@ exports.default = (pluginOptions) => {
|
|
|
57
57
|
}
|
|
58
58
|
if (id === '\0' + VIRTUAL_HYDROGEN_ROUTES_ID) {
|
|
59
59
|
return importHydrogenConfig().then((hc) => {
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
let routesPath = (typeof hc.routes === 'string' ? hc.routes : hc.routes?.files) ??
|
|
61
|
+
'/src/routes';
|
|
62
62
|
if (routesPath.startsWith('./')) {
|
|
63
63
|
routesPath = routesPath.slice(1);
|
|
64
64
|
}
|
|
@@ -69,7 +69,7 @@ exports.default = (pluginOptions) => {
|
|
|
69
69
|
routesPath += '**/*.server.[jt](s|sx)';
|
|
70
70
|
}
|
|
71
71
|
const [dirPrefix] = routesPath.split('/*');
|
|
72
|
-
let code = `export default {\n dirPrefix: '${dirPrefix}',\n basePath: '${
|
|
72
|
+
let code = `export default {\n dirPrefix: '${dirPrefix}',\n basePath: '${hc.routes?.basePath ?? ''}',\n files: import.meta.globEager('${routesPath}')\n};`;
|
|
73
73
|
if (config.command === 'serve') {
|
|
74
74
|
// Add dependency on Hydrogen config for HMR
|
|
75
75
|
code += `\nimport '${VIRTUAL_HYDROGEN_CONFIG_ID}';`;
|
|
@@ -101,5 +101,7 @@ async function findHydrogenConfigPath(root, userProvidedPath) {
|
|
|
101
101
|
configPath = path_1.default.resolve(root, configPath);
|
|
102
102
|
}
|
|
103
103
|
return (configPath ||
|
|
104
|
-
require.resolve(
|
|
104
|
+
require.resolve(
|
|
105
|
+
// eslint-disable-next-line node/no-missing-require
|
|
106
|
+
'@shopify/hydrogen/utilities/empty-hydrogen-config'));
|
|
105
107
|
}
|
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import type { IncomingMessage, ServerResponse } from 'http';
|
|
3
|
+
export interface RuntimeContext {
|
|
4
|
+
waitUntil: (fn: Promise<any>) => void;
|
|
5
|
+
}
|
|
6
|
+
export interface RequestHandlerOptions {
|
|
7
|
+
indexTemplate: string | ((url: string) => Promise<string | {
|
|
8
|
+
default: string;
|
|
9
|
+
}>);
|
|
10
|
+
cache?: Cache;
|
|
11
|
+
streamableResponse?: ServerResponse;
|
|
12
|
+
dev?: boolean;
|
|
13
|
+
context?: RuntimeContext;
|
|
14
|
+
nonce?: string;
|
|
15
|
+
buyerIpHeader?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface RequestHandler {
|
|
18
|
+
(request: Request | IncomingMessage, options: RequestHandlerOptions): Promise<Response | undefined>;
|
|
19
|
+
}
|
|
20
|
+
export declare type ShopifyConfig = {
|
|
21
|
+
defaultLocale?: string;
|
|
22
|
+
storeDomain: string;
|
|
23
|
+
storefrontToken: string;
|
|
24
|
+
storefrontApiVersion: string;
|
|
25
|
+
multipassSecret?: string;
|
|
26
|
+
};
|
|
@@ -29,6 +29,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
const node_fetch_1 = __importStar(require("node-fetch"));
|
|
30
30
|
const abort_controller_1 = __importDefault(require("abort-controller"));
|
|
31
31
|
const ponyfill_1 = require("web-streams-polyfill/ponyfill");
|
|
32
|
+
const undici_1 = require("undici");
|
|
32
33
|
if (!globalThis.fetch) {
|
|
33
34
|
Object.assign(globalThis, {
|
|
34
35
|
fetch: node_fetch_1.default,
|
|
@@ -38,6 +39,11 @@ if (!globalThis.fetch) {
|
|
|
38
39
|
AbortController: abort_controller_1.default,
|
|
39
40
|
});
|
|
40
41
|
}
|
|
42
|
+
if (!globalThis.FormData) {
|
|
43
|
+
Object.assign(globalThis, {
|
|
44
|
+
FormData: undici_1.FormData,
|
|
45
|
+
});
|
|
46
|
+
}
|
|
41
47
|
if (!globalThis.ReadableStream) {
|
|
42
48
|
Object.assign(globalThis, {
|
|
43
49
|
ReadableStream: ponyfill_1.ReadableStream,
|