@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,1766 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.WeightUnit = exports.UnitSystem = exports.UnitPriceMeasurementMeasuredUnit = exports.UnitPriceMeasurementMeasuredType = exports.TransactionStatus = exports.TransactionKind = exports.ProductVariantSortKeys = exports.ProductSortKeys = exports.ProductMediaSortKeys = exports.ProductImageSortKeys = exports.ProductCollectionSortKeys = exports.PaymentTokenType = exports.PageSortKeys = exports.OrderSortKeys = exports.OrderFulfillmentStatus = exports.OrderFinancialStatus = exports.OrderCancelReason = exports.MenuItemType = exports.MediaHost = exports.MediaContentType = exports.LocationSortKeys = exports.LanguageCode = exports.ImageContentType = exports.FilterType = exports.DiscountApplicationTargetType = exports.DiscountApplicationTargetSelection = exports.DiscountApplicationAllocationMethod = exports.DigitalWallet = exports.DeliveryMethodType = exports.CustomerErrorCode = exports.CurrencyCode = exports.CropRegion = exports.CountryCode = exports.CollectionSortKeys = exports.CheckoutErrorCode = exports.CartErrorCode = exports.CardBrand = exports.BlogSortKeys = exports.ArticleSortKeys = void 0;
4
- /** The set of valid sort keys for the Article query. */
5
- var ArticleSortKeys;
6
- (function (ArticleSortKeys) {
7
- /** Sort by the `author` value. */
8
- ArticleSortKeys["Author"] = "AUTHOR";
9
- /** Sort by the `blog_title` value. */
10
- ArticleSortKeys["BlogTitle"] = "BLOG_TITLE";
11
- /** Sort by the `id` value. */
12
- ArticleSortKeys["Id"] = "ID";
13
- /** Sort by the `published_at` value. */
14
- ArticleSortKeys["PublishedAt"] = "PUBLISHED_AT";
15
- /**
16
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
17
- * Don't use this sort key when no search query is specified.
18
- *
19
- */
20
- ArticleSortKeys["Relevance"] = "RELEVANCE";
21
- /** Sort by the `title` value. */
22
- ArticleSortKeys["Title"] = "TITLE";
23
- /** Sort by the `updated_at` value. */
24
- ArticleSortKeys["UpdatedAt"] = "UPDATED_AT";
25
- })(ArticleSortKeys = exports.ArticleSortKeys || (exports.ArticleSortKeys = {}));
26
- /** The set of valid sort keys for the Blog query. */
27
- var BlogSortKeys;
28
- (function (BlogSortKeys) {
29
- /** Sort by the `handle` value. */
30
- BlogSortKeys["Handle"] = "HANDLE";
31
- /** Sort by the `id` value. */
32
- BlogSortKeys["Id"] = "ID";
33
- /**
34
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
35
- * Don't use this sort key when no search query is specified.
36
- *
37
- */
38
- BlogSortKeys["Relevance"] = "RELEVANCE";
39
- /** Sort by the `title` value. */
40
- BlogSortKeys["Title"] = "TITLE";
41
- })(BlogSortKeys = exports.BlogSortKeys || (exports.BlogSortKeys = {}));
42
- /** Card brand, such as Visa or Mastercard, which can be used for payments. */
43
- var CardBrand;
44
- (function (CardBrand) {
45
- /** American Express. */
46
- CardBrand["AmericanExpress"] = "AMERICAN_EXPRESS";
47
- /** Diners Club. */
48
- CardBrand["DinersClub"] = "DINERS_CLUB";
49
- /** Discover. */
50
- CardBrand["Discover"] = "DISCOVER";
51
- /** JCB. */
52
- CardBrand["Jcb"] = "JCB";
53
- /** Mastercard. */
54
- CardBrand["Mastercard"] = "MASTERCARD";
55
- /** Visa. */
56
- CardBrand["Visa"] = "VISA";
57
- })(CardBrand = exports.CardBrand || (exports.CardBrand = {}));
58
- /** Possible error codes that can be returned by `CartUserError`. */
59
- var CartErrorCode;
60
- (function (CartErrorCode) {
61
- /** The input value is invalid. */
62
- CartErrorCode["Invalid"] = "INVALID";
63
- /** Merchandise line was not found in cart. */
64
- CartErrorCode["InvalidMerchandiseLine"] = "INVALID_MERCHANDISE_LINE";
65
- /** The input value should be less than the maximum value allowed. */
66
- CartErrorCode["LessThan"] = "LESS_THAN";
67
- /** Missing discount code. */
68
- CartErrorCode["MissingDiscountCode"] = "MISSING_DISCOUNT_CODE";
69
- /** Missing note. */
70
- CartErrorCode["MissingNote"] = "MISSING_NOTE";
71
- })(CartErrorCode = exports.CartErrorCode || (exports.CartErrorCode = {}));
72
- /** Possible error codes that can be returned by `CheckoutUserError`. */
73
- var CheckoutErrorCode;
74
- (function (CheckoutErrorCode) {
75
- /** Checkout is already completed. */
76
- CheckoutErrorCode["AlreadyCompleted"] = "ALREADY_COMPLETED";
77
- /** Input email contains an invalid domain name. */
78
- CheckoutErrorCode["BadDomain"] = "BAD_DOMAIN";
79
- /** The input value is blank. */
80
- CheckoutErrorCode["Blank"] = "BLANK";
81
- /** Cart does not meet discount requirements notice. */
82
- CheckoutErrorCode["CartDoesNotMeetDiscountRequirementsNotice"] = "CART_DOES_NOT_MEET_DISCOUNT_REQUIREMENTS_NOTICE";
83
- /** Customer already used once per customer discount notice. */
84
- CheckoutErrorCode["CustomerAlreadyUsedOncePerCustomerDiscountNotice"] = "CUSTOMER_ALREADY_USED_ONCE_PER_CUSTOMER_DISCOUNT_NOTICE";
85
- /** Discount already applied. */
86
- CheckoutErrorCode["DiscountAlreadyApplied"] = "DISCOUNT_ALREADY_APPLIED";
87
- /** Discount disabled. */
88
- CheckoutErrorCode["DiscountDisabled"] = "DISCOUNT_DISABLED";
89
- /** Discount expired. */
90
- CheckoutErrorCode["DiscountExpired"] = "DISCOUNT_EXPIRED";
91
- /** Discount limit reached. */
92
- CheckoutErrorCode["DiscountLimitReached"] = "DISCOUNT_LIMIT_REACHED";
93
- /** Discount not found. */
94
- CheckoutErrorCode["DiscountNotFound"] = "DISCOUNT_NOT_FOUND";
95
- /** Checkout is already completed. */
96
- CheckoutErrorCode["Empty"] = "EMPTY";
97
- /** Queue token has expired. */
98
- CheckoutErrorCode["ExpiredQueueToken"] = "EXPIRED_QUEUE_TOKEN";
99
- /** Gift card has already been applied. */
100
- CheckoutErrorCode["GiftCardAlreadyApplied"] = "GIFT_CARD_ALREADY_APPLIED";
101
- /** Gift card code is invalid. */
102
- CheckoutErrorCode["GiftCardCodeInvalid"] = "GIFT_CARD_CODE_INVALID";
103
- /** Gift card currency does not match checkout currency. */
104
- CheckoutErrorCode["GiftCardCurrencyMismatch"] = "GIFT_CARD_CURRENCY_MISMATCH";
105
- /** Gift card has no funds left. */
106
- CheckoutErrorCode["GiftCardDepleted"] = "GIFT_CARD_DEPLETED";
107
- /** Gift card is disabled. */
108
- CheckoutErrorCode["GiftCardDisabled"] = "GIFT_CARD_DISABLED";
109
- /** Gift card is expired. */
110
- CheckoutErrorCode["GiftCardExpired"] = "GIFT_CARD_EXPIRED";
111
- /** Gift card was not found. */
112
- CheckoutErrorCode["GiftCardNotFound"] = "GIFT_CARD_NOT_FOUND";
113
- /** Gift card cannot be applied to a checkout that contains a gift card. */
114
- CheckoutErrorCode["GiftCardUnusable"] = "GIFT_CARD_UNUSABLE";
115
- /** The input value should be greater than or equal to the minimum value allowed. */
116
- CheckoutErrorCode["GreaterThanOrEqualTo"] = "GREATER_THAN_OR_EQUAL_TO";
117
- /** The input value is invalid. */
118
- CheckoutErrorCode["Invalid"] = "INVALID";
119
- /** Cannot specify country and presentment currency code. */
120
- CheckoutErrorCode["InvalidCountryAndCurrency"] = "INVALID_COUNTRY_AND_CURRENCY";
121
- /** Input Zip is invalid for country provided. */
122
- CheckoutErrorCode["InvalidForCountry"] = "INVALID_FOR_COUNTRY";
123
- /** Input Zip is invalid for country and province provided. */
124
- CheckoutErrorCode["InvalidForCountryAndProvince"] = "INVALID_FOR_COUNTRY_AND_PROVINCE";
125
- /** Invalid province in country. */
126
- CheckoutErrorCode["InvalidProvinceInCountry"] = "INVALID_PROVINCE_IN_COUNTRY";
127
- /** Queue token is invalid. */
128
- CheckoutErrorCode["InvalidQueueToken"] = "INVALID_QUEUE_TOKEN";
129
- /** Invalid region in country. */
130
- CheckoutErrorCode["InvalidRegionInCountry"] = "INVALID_REGION_IN_COUNTRY";
131
- /** Invalid state in country. */
132
- CheckoutErrorCode["InvalidStateInCountry"] = "INVALID_STATE_IN_COUNTRY";
133
- /** The input value should be less than the maximum value allowed. */
134
- CheckoutErrorCode["LessThan"] = "LESS_THAN";
135
- /** The input value should be less than or equal to the maximum value allowed. */
136
- CheckoutErrorCode["LessThanOrEqualTo"] = "LESS_THAN_OR_EQUAL_TO";
137
- /** Line item was not found in checkout. */
138
- CheckoutErrorCode["LineItemNotFound"] = "LINE_ITEM_NOT_FOUND";
139
- /** Checkout is locked. */
140
- CheckoutErrorCode["Locked"] = "LOCKED";
141
- /** Missing payment input. */
142
- CheckoutErrorCode["MissingPaymentInput"] = "MISSING_PAYMENT_INPUT";
143
- /** Not enough in stock. */
144
- CheckoutErrorCode["NotEnoughInStock"] = "NOT_ENOUGH_IN_STOCK";
145
- /** Input value is not supported. */
146
- CheckoutErrorCode["NotSupported"] = "NOT_SUPPORTED";
147
- /** The input value needs to be blank. */
148
- CheckoutErrorCode["Present"] = "PRESENT";
149
- /** Shipping rate expired. */
150
- CheckoutErrorCode["ShippingRateExpired"] = "SHIPPING_RATE_EXPIRED";
151
- /** Throttled during checkout. */
152
- CheckoutErrorCode["ThrottledDuringCheckout"] = "THROTTLED_DURING_CHECKOUT";
153
- /** The input value is too long. */
154
- CheckoutErrorCode["TooLong"] = "TOO_LONG";
155
- /** The amount of the payment does not match the value to be paid. */
156
- CheckoutErrorCode["TotalPriceMismatch"] = "TOTAL_PRICE_MISMATCH";
157
- /** Unable to apply discount. */
158
- CheckoutErrorCode["UnableToApply"] = "UNABLE_TO_APPLY";
159
- })(CheckoutErrorCode = exports.CheckoutErrorCode || (exports.CheckoutErrorCode = {}));
160
- /** The set of valid sort keys for the Collection query. */
161
- var CollectionSortKeys;
162
- (function (CollectionSortKeys) {
163
- /** Sort by the `id` value. */
164
- CollectionSortKeys["Id"] = "ID";
165
- /**
166
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
167
- * Don't use this sort key when no search query is specified.
168
- *
169
- */
170
- CollectionSortKeys["Relevance"] = "RELEVANCE";
171
- /** Sort by the `title` value. */
172
- CollectionSortKeys["Title"] = "TITLE";
173
- /** Sort by the `updated_at` value. */
174
- CollectionSortKeys["UpdatedAt"] = "UPDATED_AT";
175
- })(CollectionSortKeys = exports.CollectionSortKeys || (exports.CollectionSortKeys = {}));
176
- /**
177
- * The code designating a country/region, which generally follows ISO 3166-1 alpha-2 guidelines.
178
- * If a territory doesn't have a country code value in the `CountryCode` enum, it might be considered a subdivision
179
- * of another country. For example, the territories associated with Spain are represented by the country code `ES`,
180
- * and the territories associated with the United States of America are represented by the country code `US`.
181
- *
182
- */
183
- var CountryCode;
184
- (function (CountryCode) {
185
- /** Ascension Island. */
186
- CountryCode["Ac"] = "AC";
187
- /** Andorra. */
188
- CountryCode["Ad"] = "AD";
189
- /** United Arab Emirates. */
190
- CountryCode["Ae"] = "AE";
191
- /** Afghanistan. */
192
- CountryCode["Af"] = "AF";
193
- /** Antigua & Barbuda. */
194
- CountryCode["Ag"] = "AG";
195
- /** Anguilla. */
196
- CountryCode["Ai"] = "AI";
197
- /** Albania. */
198
- CountryCode["Al"] = "AL";
199
- /** Armenia. */
200
- CountryCode["Am"] = "AM";
201
- /** Netherlands Antilles. */
202
- CountryCode["An"] = "AN";
203
- /** Angola. */
204
- CountryCode["Ao"] = "AO";
205
- /** Argentina. */
206
- CountryCode["Ar"] = "AR";
207
- /** Austria. */
208
- CountryCode["At"] = "AT";
209
- /** Australia. */
210
- CountryCode["Au"] = "AU";
211
- /** Aruba. */
212
- CountryCode["Aw"] = "AW";
213
- /** Åland Islands. */
214
- CountryCode["Ax"] = "AX";
215
- /** Azerbaijan. */
216
- CountryCode["Az"] = "AZ";
217
- /** Bosnia & Herzegovina. */
218
- CountryCode["Ba"] = "BA";
219
- /** Barbados. */
220
- CountryCode["Bb"] = "BB";
221
- /** Bangladesh. */
222
- CountryCode["Bd"] = "BD";
223
- /** Belgium. */
224
- CountryCode["Be"] = "BE";
225
- /** Burkina Faso. */
226
- CountryCode["Bf"] = "BF";
227
- /** Bulgaria. */
228
- CountryCode["Bg"] = "BG";
229
- /** Bahrain. */
230
- CountryCode["Bh"] = "BH";
231
- /** Burundi. */
232
- CountryCode["Bi"] = "BI";
233
- /** Benin. */
234
- CountryCode["Bj"] = "BJ";
235
- /** St. Barthélemy. */
236
- CountryCode["Bl"] = "BL";
237
- /** Bermuda. */
238
- CountryCode["Bm"] = "BM";
239
- /** Brunei. */
240
- CountryCode["Bn"] = "BN";
241
- /** Bolivia. */
242
- CountryCode["Bo"] = "BO";
243
- /** Caribbean Netherlands. */
244
- CountryCode["Bq"] = "BQ";
245
- /** Brazil. */
246
- CountryCode["Br"] = "BR";
247
- /** Bahamas. */
248
- CountryCode["Bs"] = "BS";
249
- /** Bhutan. */
250
- CountryCode["Bt"] = "BT";
251
- /** Bouvet Island. */
252
- CountryCode["Bv"] = "BV";
253
- /** Botswana. */
254
- CountryCode["Bw"] = "BW";
255
- /** Belarus. */
256
- CountryCode["By"] = "BY";
257
- /** Belize. */
258
- CountryCode["Bz"] = "BZ";
259
- /** Canada. */
260
- CountryCode["Ca"] = "CA";
261
- /** Cocos (Keeling) Islands. */
262
- CountryCode["Cc"] = "CC";
263
- /** Congo - Kinshasa. */
264
- CountryCode["Cd"] = "CD";
265
- /** Central African Republic. */
266
- CountryCode["Cf"] = "CF";
267
- /** Congo - Brazzaville. */
268
- CountryCode["Cg"] = "CG";
269
- /** Switzerland. */
270
- CountryCode["Ch"] = "CH";
271
- /** Côte d’Ivoire. */
272
- CountryCode["Ci"] = "CI";
273
- /** Cook Islands. */
274
- CountryCode["Ck"] = "CK";
275
- /** Chile. */
276
- CountryCode["Cl"] = "CL";
277
- /** Cameroon. */
278
- CountryCode["Cm"] = "CM";
279
- /** China. */
280
- CountryCode["Cn"] = "CN";
281
- /** Colombia. */
282
- CountryCode["Co"] = "CO";
283
- /** Costa Rica. */
284
- CountryCode["Cr"] = "CR";
285
- /** Cuba. */
286
- CountryCode["Cu"] = "CU";
287
- /** Cape Verde. */
288
- CountryCode["Cv"] = "CV";
289
- /** Curaçao. */
290
- CountryCode["Cw"] = "CW";
291
- /** Christmas Island. */
292
- CountryCode["Cx"] = "CX";
293
- /** Cyprus. */
294
- CountryCode["Cy"] = "CY";
295
- /** Czechia. */
296
- CountryCode["Cz"] = "CZ";
297
- /** Germany. */
298
- CountryCode["De"] = "DE";
299
- /** Djibouti. */
300
- CountryCode["Dj"] = "DJ";
301
- /** Denmark. */
302
- CountryCode["Dk"] = "DK";
303
- /** Dominica. */
304
- CountryCode["Dm"] = "DM";
305
- /** Dominican Republic. */
306
- CountryCode["Do"] = "DO";
307
- /** Algeria. */
308
- CountryCode["Dz"] = "DZ";
309
- /** Ecuador. */
310
- CountryCode["Ec"] = "EC";
311
- /** Estonia. */
312
- CountryCode["Ee"] = "EE";
313
- /** Egypt. */
314
- CountryCode["Eg"] = "EG";
315
- /** Western Sahara. */
316
- CountryCode["Eh"] = "EH";
317
- /** Eritrea. */
318
- CountryCode["Er"] = "ER";
319
- /** Spain. */
320
- CountryCode["Es"] = "ES";
321
- /** Ethiopia. */
322
- CountryCode["Et"] = "ET";
323
- /** Finland. */
324
- CountryCode["Fi"] = "FI";
325
- /** Fiji. */
326
- CountryCode["Fj"] = "FJ";
327
- /** Falkland Islands. */
328
- CountryCode["Fk"] = "FK";
329
- /** Faroe Islands. */
330
- CountryCode["Fo"] = "FO";
331
- /** France. */
332
- CountryCode["Fr"] = "FR";
333
- /** Gabon. */
334
- CountryCode["Ga"] = "GA";
335
- /** United Kingdom. */
336
- CountryCode["Gb"] = "GB";
337
- /** Grenada. */
338
- CountryCode["Gd"] = "GD";
339
- /** Georgia. */
340
- CountryCode["Ge"] = "GE";
341
- /** French Guiana. */
342
- CountryCode["Gf"] = "GF";
343
- /** Guernsey. */
344
- CountryCode["Gg"] = "GG";
345
- /** Ghana. */
346
- CountryCode["Gh"] = "GH";
347
- /** Gibraltar. */
348
- CountryCode["Gi"] = "GI";
349
- /** Greenland. */
350
- CountryCode["Gl"] = "GL";
351
- /** Gambia. */
352
- CountryCode["Gm"] = "GM";
353
- /** Guinea. */
354
- CountryCode["Gn"] = "GN";
355
- /** Guadeloupe. */
356
- CountryCode["Gp"] = "GP";
357
- /** Equatorial Guinea. */
358
- CountryCode["Gq"] = "GQ";
359
- /** Greece. */
360
- CountryCode["Gr"] = "GR";
361
- /** South Georgia & South Sandwich Islands. */
362
- CountryCode["Gs"] = "GS";
363
- /** Guatemala. */
364
- CountryCode["Gt"] = "GT";
365
- /** Guinea-Bissau. */
366
- CountryCode["Gw"] = "GW";
367
- /** Guyana. */
368
- CountryCode["Gy"] = "GY";
369
- /** Hong Kong SAR. */
370
- CountryCode["Hk"] = "HK";
371
- /** Heard & McDonald Islands. */
372
- CountryCode["Hm"] = "HM";
373
- /** Honduras. */
374
- CountryCode["Hn"] = "HN";
375
- /** Croatia. */
376
- CountryCode["Hr"] = "HR";
377
- /** Haiti. */
378
- CountryCode["Ht"] = "HT";
379
- /** Hungary. */
380
- CountryCode["Hu"] = "HU";
381
- /** Indonesia. */
382
- CountryCode["Id"] = "ID";
383
- /** Ireland. */
384
- CountryCode["Ie"] = "IE";
385
- /** Israel. */
386
- CountryCode["Il"] = "IL";
387
- /** Isle of Man. */
388
- CountryCode["Im"] = "IM";
389
- /** India. */
390
- CountryCode["In"] = "IN";
391
- /** British Indian Ocean Territory. */
392
- CountryCode["Io"] = "IO";
393
- /** Iraq. */
394
- CountryCode["Iq"] = "IQ";
395
- /** Iran. */
396
- CountryCode["Ir"] = "IR";
397
- /** Iceland. */
398
- CountryCode["Is"] = "IS";
399
- /** Italy. */
400
- CountryCode["It"] = "IT";
401
- /** Jersey. */
402
- CountryCode["Je"] = "JE";
403
- /** Jamaica. */
404
- CountryCode["Jm"] = "JM";
405
- /** Jordan. */
406
- CountryCode["Jo"] = "JO";
407
- /** Japan. */
408
- CountryCode["Jp"] = "JP";
409
- /** Kenya. */
410
- CountryCode["Ke"] = "KE";
411
- /** Kyrgyzstan. */
412
- CountryCode["Kg"] = "KG";
413
- /** Cambodia. */
414
- CountryCode["Kh"] = "KH";
415
- /** Kiribati. */
416
- CountryCode["Ki"] = "KI";
417
- /** Comoros. */
418
- CountryCode["Km"] = "KM";
419
- /** St. Kitts & Nevis. */
420
- CountryCode["Kn"] = "KN";
421
- /** North Korea. */
422
- CountryCode["Kp"] = "KP";
423
- /** South Korea. */
424
- CountryCode["Kr"] = "KR";
425
- /** Kuwait. */
426
- CountryCode["Kw"] = "KW";
427
- /** Cayman Islands. */
428
- CountryCode["Ky"] = "KY";
429
- /** Kazakhstan. */
430
- CountryCode["Kz"] = "KZ";
431
- /** Laos. */
432
- CountryCode["La"] = "LA";
433
- /** Lebanon. */
434
- CountryCode["Lb"] = "LB";
435
- /** St. Lucia. */
436
- CountryCode["Lc"] = "LC";
437
- /** Liechtenstein. */
438
- CountryCode["Li"] = "LI";
439
- /** Sri Lanka. */
440
- CountryCode["Lk"] = "LK";
441
- /** Liberia. */
442
- CountryCode["Lr"] = "LR";
443
- /** Lesotho. */
444
- CountryCode["Ls"] = "LS";
445
- /** Lithuania. */
446
- CountryCode["Lt"] = "LT";
447
- /** Luxembourg. */
448
- CountryCode["Lu"] = "LU";
449
- /** Latvia. */
450
- CountryCode["Lv"] = "LV";
451
- /** Libya. */
452
- CountryCode["Ly"] = "LY";
453
- /** Morocco. */
454
- CountryCode["Ma"] = "MA";
455
- /** Monaco. */
456
- CountryCode["Mc"] = "MC";
457
- /** Moldova. */
458
- CountryCode["Md"] = "MD";
459
- /** Montenegro. */
460
- CountryCode["Me"] = "ME";
461
- /** St. Martin. */
462
- CountryCode["Mf"] = "MF";
463
- /** Madagascar. */
464
- CountryCode["Mg"] = "MG";
465
- /** North Macedonia. */
466
- CountryCode["Mk"] = "MK";
467
- /** Mali. */
468
- CountryCode["Ml"] = "ML";
469
- /** Myanmar (Burma). */
470
- CountryCode["Mm"] = "MM";
471
- /** Mongolia. */
472
- CountryCode["Mn"] = "MN";
473
- /** Macao SAR. */
474
- CountryCode["Mo"] = "MO";
475
- /** Martinique. */
476
- CountryCode["Mq"] = "MQ";
477
- /** Mauritania. */
478
- CountryCode["Mr"] = "MR";
479
- /** Montserrat. */
480
- CountryCode["Ms"] = "MS";
481
- /** Malta. */
482
- CountryCode["Mt"] = "MT";
483
- /** Mauritius. */
484
- CountryCode["Mu"] = "MU";
485
- /** Maldives. */
486
- CountryCode["Mv"] = "MV";
487
- /** Malawi. */
488
- CountryCode["Mw"] = "MW";
489
- /** Mexico. */
490
- CountryCode["Mx"] = "MX";
491
- /** Malaysia. */
492
- CountryCode["My"] = "MY";
493
- /** Mozambique. */
494
- CountryCode["Mz"] = "MZ";
495
- /** Namibia. */
496
- CountryCode["Na"] = "NA";
497
- /** New Caledonia. */
498
- CountryCode["Nc"] = "NC";
499
- /** Niger. */
500
- CountryCode["Ne"] = "NE";
501
- /** Norfolk Island. */
502
- CountryCode["Nf"] = "NF";
503
- /** Nigeria. */
504
- CountryCode["Ng"] = "NG";
505
- /** Nicaragua. */
506
- CountryCode["Ni"] = "NI";
507
- /** Netherlands. */
508
- CountryCode["Nl"] = "NL";
509
- /** Norway. */
510
- CountryCode["No"] = "NO";
511
- /** Nepal. */
512
- CountryCode["Np"] = "NP";
513
- /** Nauru. */
514
- CountryCode["Nr"] = "NR";
515
- /** Niue. */
516
- CountryCode["Nu"] = "NU";
517
- /** New Zealand. */
518
- CountryCode["Nz"] = "NZ";
519
- /** Oman. */
520
- CountryCode["Om"] = "OM";
521
- /** Panama. */
522
- CountryCode["Pa"] = "PA";
523
- /** Peru. */
524
- CountryCode["Pe"] = "PE";
525
- /** French Polynesia. */
526
- CountryCode["Pf"] = "PF";
527
- /** Papua New Guinea. */
528
- CountryCode["Pg"] = "PG";
529
- /** Philippines. */
530
- CountryCode["Ph"] = "PH";
531
- /** Pakistan. */
532
- CountryCode["Pk"] = "PK";
533
- /** Poland. */
534
- CountryCode["Pl"] = "PL";
535
- /** St. Pierre & Miquelon. */
536
- CountryCode["Pm"] = "PM";
537
- /** Pitcairn Islands. */
538
- CountryCode["Pn"] = "PN";
539
- /** Palestinian Territories. */
540
- CountryCode["Ps"] = "PS";
541
- /** Portugal. */
542
- CountryCode["Pt"] = "PT";
543
- /** Paraguay. */
544
- CountryCode["Py"] = "PY";
545
- /** Qatar. */
546
- CountryCode["Qa"] = "QA";
547
- /** Réunion. */
548
- CountryCode["Re"] = "RE";
549
- /** Romania. */
550
- CountryCode["Ro"] = "RO";
551
- /** Serbia. */
552
- CountryCode["Rs"] = "RS";
553
- /** Russia. */
554
- CountryCode["Ru"] = "RU";
555
- /** Rwanda. */
556
- CountryCode["Rw"] = "RW";
557
- /** Saudi Arabia. */
558
- CountryCode["Sa"] = "SA";
559
- /** Solomon Islands. */
560
- CountryCode["Sb"] = "SB";
561
- /** Seychelles. */
562
- CountryCode["Sc"] = "SC";
563
- /** Sudan. */
564
- CountryCode["Sd"] = "SD";
565
- /** Sweden. */
566
- CountryCode["Se"] = "SE";
567
- /** Singapore. */
568
- CountryCode["Sg"] = "SG";
569
- /** St. Helena. */
570
- CountryCode["Sh"] = "SH";
571
- /** Slovenia. */
572
- CountryCode["Si"] = "SI";
573
- /** Svalbard & Jan Mayen. */
574
- CountryCode["Sj"] = "SJ";
575
- /** Slovakia. */
576
- CountryCode["Sk"] = "SK";
577
- /** Sierra Leone. */
578
- CountryCode["Sl"] = "SL";
579
- /** San Marino. */
580
- CountryCode["Sm"] = "SM";
581
- /** Senegal. */
582
- CountryCode["Sn"] = "SN";
583
- /** Somalia. */
584
- CountryCode["So"] = "SO";
585
- /** Suriname. */
586
- CountryCode["Sr"] = "SR";
587
- /** South Sudan. */
588
- CountryCode["Ss"] = "SS";
589
- /** São Tomé & Príncipe. */
590
- CountryCode["St"] = "ST";
591
- /** El Salvador. */
592
- CountryCode["Sv"] = "SV";
593
- /** Sint Maarten. */
594
- CountryCode["Sx"] = "SX";
595
- /** Syria. */
596
- CountryCode["Sy"] = "SY";
597
- /** Eswatini. */
598
- CountryCode["Sz"] = "SZ";
599
- /** Tristan da Cunha. */
600
- CountryCode["Ta"] = "TA";
601
- /** Turks & Caicos Islands. */
602
- CountryCode["Tc"] = "TC";
603
- /** Chad. */
604
- CountryCode["Td"] = "TD";
605
- /** French Southern Territories. */
606
- CountryCode["Tf"] = "TF";
607
- /** Togo. */
608
- CountryCode["Tg"] = "TG";
609
- /** Thailand. */
610
- CountryCode["Th"] = "TH";
611
- /** Tajikistan. */
612
- CountryCode["Tj"] = "TJ";
613
- /** Tokelau. */
614
- CountryCode["Tk"] = "TK";
615
- /** Timor-Leste. */
616
- CountryCode["Tl"] = "TL";
617
- /** Turkmenistan. */
618
- CountryCode["Tm"] = "TM";
619
- /** Tunisia. */
620
- CountryCode["Tn"] = "TN";
621
- /** Tonga. */
622
- CountryCode["To"] = "TO";
623
- /** Turkey. */
624
- CountryCode["Tr"] = "TR";
625
- /** Trinidad & Tobago. */
626
- CountryCode["Tt"] = "TT";
627
- /** Tuvalu. */
628
- CountryCode["Tv"] = "TV";
629
- /** Taiwan. */
630
- CountryCode["Tw"] = "TW";
631
- /** Tanzania. */
632
- CountryCode["Tz"] = "TZ";
633
- /** Ukraine. */
634
- CountryCode["Ua"] = "UA";
635
- /** Uganda. */
636
- CountryCode["Ug"] = "UG";
637
- /** U.S. Outlying Islands. */
638
- CountryCode["Um"] = "UM";
639
- /** United States. */
640
- CountryCode["Us"] = "US";
641
- /** Uruguay. */
642
- CountryCode["Uy"] = "UY";
643
- /** Uzbekistan. */
644
- CountryCode["Uz"] = "UZ";
645
- /** Vatican City. */
646
- CountryCode["Va"] = "VA";
647
- /** St. Vincent & Grenadines. */
648
- CountryCode["Vc"] = "VC";
649
- /** Venezuela. */
650
- CountryCode["Ve"] = "VE";
651
- /** British Virgin Islands. */
652
- CountryCode["Vg"] = "VG";
653
- /** Vietnam. */
654
- CountryCode["Vn"] = "VN";
655
- /** Vanuatu. */
656
- CountryCode["Vu"] = "VU";
657
- /** Wallis & Futuna. */
658
- CountryCode["Wf"] = "WF";
659
- /** Samoa. */
660
- CountryCode["Ws"] = "WS";
661
- /** Kosovo. */
662
- CountryCode["Xk"] = "XK";
663
- /** Yemen. */
664
- CountryCode["Ye"] = "YE";
665
- /** Mayotte. */
666
- CountryCode["Yt"] = "YT";
667
- /** South Africa. */
668
- CountryCode["Za"] = "ZA";
669
- /** Zambia. */
670
- CountryCode["Zm"] = "ZM";
671
- /** Zimbabwe. */
672
- CountryCode["Zw"] = "ZW";
673
- /** Unknown Region. */
674
- CountryCode["Zz"] = "ZZ";
675
- })(CountryCode = exports.CountryCode || (exports.CountryCode = {}));
676
- /** The part of the image that should remain after cropping. */
677
- var CropRegion;
678
- (function (CropRegion) {
679
- /** Keep the bottom of the image. */
680
- CropRegion["Bottom"] = "BOTTOM";
681
- /** Keep the center of the image. */
682
- CropRegion["Center"] = "CENTER";
683
- /** Keep the left of the image. */
684
- CropRegion["Left"] = "LEFT";
685
- /** Keep the right of the image. */
686
- CropRegion["Right"] = "RIGHT";
687
- /** Keep the top of the image. */
688
- CropRegion["Top"] = "TOP";
689
- })(CropRegion = exports.CropRegion || (exports.CropRegion = {}));
690
- /**
691
- * The three-letter currency codes that represent the world currencies used in stores. These include standard ISO 4217 codes, legacy codes,
692
- * and non-standard codes.
693
- *
694
- */
695
- var CurrencyCode;
696
- (function (CurrencyCode) {
697
- /** United Arab Emirates Dirham (AED). */
698
- CurrencyCode["Aed"] = "AED";
699
- /** Afghan Afghani (AFN). */
700
- CurrencyCode["Afn"] = "AFN";
701
- /** Albanian Lek (ALL). */
702
- CurrencyCode["All"] = "ALL";
703
- /** Armenian Dram (AMD). */
704
- CurrencyCode["Amd"] = "AMD";
705
- /** Netherlands Antillean Guilder. */
706
- CurrencyCode["Ang"] = "ANG";
707
- /** Angolan Kwanza (AOA). */
708
- CurrencyCode["Aoa"] = "AOA";
709
- /** Argentine Pesos (ARS). */
710
- CurrencyCode["Ars"] = "ARS";
711
- /** Australian Dollars (AUD). */
712
- CurrencyCode["Aud"] = "AUD";
713
- /** Aruban Florin (AWG). */
714
- CurrencyCode["Awg"] = "AWG";
715
- /** Azerbaijani Manat (AZN). */
716
- CurrencyCode["Azn"] = "AZN";
717
- /** Bosnia and Herzegovina Convertible Mark (BAM). */
718
- CurrencyCode["Bam"] = "BAM";
719
- /** Barbadian Dollar (BBD). */
720
- CurrencyCode["Bbd"] = "BBD";
721
- /** Bangladesh Taka (BDT). */
722
- CurrencyCode["Bdt"] = "BDT";
723
- /** Bulgarian Lev (BGN). */
724
- CurrencyCode["Bgn"] = "BGN";
725
- /** Bahraini Dinar (BHD). */
726
- CurrencyCode["Bhd"] = "BHD";
727
- /** Burundian Franc (BIF). */
728
- CurrencyCode["Bif"] = "BIF";
729
- /** Bermudian Dollar (BMD). */
730
- CurrencyCode["Bmd"] = "BMD";
731
- /** Brunei Dollar (BND). */
732
- CurrencyCode["Bnd"] = "BND";
733
- /** Bolivian Boliviano (BOB). */
734
- CurrencyCode["Bob"] = "BOB";
735
- /** Brazilian Real (BRL). */
736
- CurrencyCode["Brl"] = "BRL";
737
- /** Bahamian Dollar (BSD). */
738
- CurrencyCode["Bsd"] = "BSD";
739
- /** Bhutanese Ngultrum (BTN). */
740
- CurrencyCode["Btn"] = "BTN";
741
- /** Botswana Pula (BWP). */
742
- CurrencyCode["Bwp"] = "BWP";
743
- /** Belarusian Ruble (BYN). */
744
- CurrencyCode["Byn"] = "BYN";
745
- /** Belarusian Ruble (BYR). */
746
- CurrencyCode["Byr"] = "BYR";
747
- /** Belize Dollar (BZD). */
748
- CurrencyCode["Bzd"] = "BZD";
749
- /** Canadian Dollars (CAD). */
750
- CurrencyCode["Cad"] = "CAD";
751
- /** Congolese franc (CDF). */
752
- CurrencyCode["Cdf"] = "CDF";
753
- /** Swiss Francs (CHF). */
754
- CurrencyCode["Chf"] = "CHF";
755
- /** Chilean Peso (CLP). */
756
- CurrencyCode["Clp"] = "CLP";
757
- /** Chinese Yuan Renminbi (CNY). */
758
- CurrencyCode["Cny"] = "CNY";
759
- /** Colombian Peso (COP). */
760
- CurrencyCode["Cop"] = "COP";
761
- /** Costa Rican Colones (CRC). */
762
- CurrencyCode["Crc"] = "CRC";
763
- /** Cape Verdean escudo (CVE). */
764
- CurrencyCode["Cve"] = "CVE";
765
- /** Czech Koruny (CZK). */
766
- CurrencyCode["Czk"] = "CZK";
767
- /** Djiboutian Franc (DJF). */
768
- CurrencyCode["Djf"] = "DJF";
769
- /** Danish Kroner (DKK). */
770
- CurrencyCode["Dkk"] = "DKK";
771
- /** Dominican Peso (DOP). */
772
- CurrencyCode["Dop"] = "DOP";
773
- /** Algerian Dinar (DZD). */
774
- CurrencyCode["Dzd"] = "DZD";
775
- /** Egyptian Pound (EGP). */
776
- CurrencyCode["Egp"] = "EGP";
777
- /** Eritrean Nakfa (ERN). */
778
- CurrencyCode["Ern"] = "ERN";
779
- /** Ethiopian Birr (ETB). */
780
- CurrencyCode["Etb"] = "ETB";
781
- /** Euro (EUR). */
782
- CurrencyCode["Eur"] = "EUR";
783
- /** Fijian Dollars (FJD). */
784
- CurrencyCode["Fjd"] = "FJD";
785
- /** Falkland Islands Pounds (FKP). */
786
- CurrencyCode["Fkp"] = "FKP";
787
- /** United Kingdom Pounds (GBP). */
788
- CurrencyCode["Gbp"] = "GBP";
789
- /** Georgian Lari (GEL). */
790
- CurrencyCode["Gel"] = "GEL";
791
- /** Ghanaian Cedi (GHS). */
792
- CurrencyCode["Ghs"] = "GHS";
793
- /** Gibraltar Pounds (GIP). */
794
- CurrencyCode["Gip"] = "GIP";
795
- /** Gambian Dalasi (GMD). */
796
- CurrencyCode["Gmd"] = "GMD";
797
- /** Guinean Franc (GNF). */
798
- CurrencyCode["Gnf"] = "GNF";
799
- /** Guatemalan Quetzal (GTQ). */
800
- CurrencyCode["Gtq"] = "GTQ";
801
- /** Guyanese Dollar (GYD). */
802
- CurrencyCode["Gyd"] = "GYD";
803
- /** Hong Kong Dollars (HKD). */
804
- CurrencyCode["Hkd"] = "HKD";
805
- /** Honduran Lempira (HNL). */
806
- CurrencyCode["Hnl"] = "HNL";
807
- /** Croatian Kuna (HRK). */
808
- CurrencyCode["Hrk"] = "HRK";
809
- /** Haitian Gourde (HTG). */
810
- CurrencyCode["Htg"] = "HTG";
811
- /** Hungarian Forint (HUF). */
812
- CurrencyCode["Huf"] = "HUF";
813
- /** Indonesian Rupiah (IDR). */
814
- CurrencyCode["Idr"] = "IDR";
815
- /** Israeli New Shekel (NIS). */
816
- CurrencyCode["Ils"] = "ILS";
817
- /** Indian Rupees (INR). */
818
- CurrencyCode["Inr"] = "INR";
819
- /** Iraqi Dinar (IQD). */
820
- CurrencyCode["Iqd"] = "IQD";
821
- /** Iranian Rial (IRR). */
822
- CurrencyCode["Irr"] = "IRR";
823
- /** Icelandic Kronur (ISK). */
824
- CurrencyCode["Isk"] = "ISK";
825
- /** Jersey Pound. */
826
- CurrencyCode["Jep"] = "JEP";
827
- /** Jamaican Dollars (JMD). */
828
- CurrencyCode["Jmd"] = "JMD";
829
- /** Jordanian Dinar (JOD). */
830
- CurrencyCode["Jod"] = "JOD";
831
- /** Japanese Yen (JPY). */
832
- CurrencyCode["Jpy"] = "JPY";
833
- /** Kenyan Shilling (KES). */
834
- CurrencyCode["Kes"] = "KES";
835
- /** Kyrgyzstani Som (KGS). */
836
- CurrencyCode["Kgs"] = "KGS";
837
- /** Cambodian Riel. */
838
- CurrencyCode["Khr"] = "KHR";
839
- /** Kiribati Dollar (KID). */
840
- CurrencyCode["Kid"] = "KID";
841
- /** Comorian Franc (KMF). */
842
- CurrencyCode["Kmf"] = "KMF";
843
- /** South Korean Won (KRW). */
844
- CurrencyCode["Krw"] = "KRW";
845
- /** Kuwaiti Dinar (KWD). */
846
- CurrencyCode["Kwd"] = "KWD";
847
- /** Cayman Dollars (KYD). */
848
- CurrencyCode["Kyd"] = "KYD";
849
- /** Kazakhstani Tenge (KZT). */
850
- CurrencyCode["Kzt"] = "KZT";
851
- /** Laotian Kip (LAK). */
852
- CurrencyCode["Lak"] = "LAK";
853
- /** Lebanese Pounds (LBP). */
854
- CurrencyCode["Lbp"] = "LBP";
855
- /** Sri Lankan Rupees (LKR). */
856
- CurrencyCode["Lkr"] = "LKR";
857
- /** Liberian Dollar (LRD). */
858
- CurrencyCode["Lrd"] = "LRD";
859
- /** Lesotho Loti (LSL). */
860
- CurrencyCode["Lsl"] = "LSL";
861
- /** Lithuanian Litai (LTL). */
862
- CurrencyCode["Ltl"] = "LTL";
863
- /** Latvian Lati (LVL). */
864
- CurrencyCode["Lvl"] = "LVL";
865
- /** Libyan Dinar (LYD). */
866
- CurrencyCode["Lyd"] = "LYD";
867
- /** Moroccan Dirham. */
868
- CurrencyCode["Mad"] = "MAD";
869
- /** Moldovan Leu (MDL). */
870
- CurrencyCode["Mdl"] = "MDL";
871
- /** Malagasy Ariary (MGA). */
872
- CurrencyCode["Mga"] = "MGA";
873
- /** Macedonia Denar (MKD). */
874
- CurrencyCode["Mkd"] = "MKD";
875
- /** Burmese Kyat (MMK). */
876
- CurrencyCode["Mmk"] = "MMK";
877
- /** Mongolian Tugrik. */
878
- CurrencyCode["Mnt"] = "MNT";
879
- /** Macanese Pataca (MOP). */
880
- CurrencyCode["Mop"] = "MOP";
881
- /** Mauritanian Ouguiya (MRU). */
882
- CurrencyCode["Mru"] = "MRU";
883
- /** Mauritian Rupee (MUR). */
884
- CurrencyCode["Mur"] = "MUR";
885
- /** Maldivian Rufiyaa (MVR). */
886
- CurrencyCode["Mvr"] = "MVR";
887
- /** Malawian Kwacha (MWK). */
888
- CurrencyCode["Mwk"] = "MWK";
889
- /** Mexican Pesos (MXN). */
890
- CurrencyCode["Mxn"] = "MXN";
891
- /** Malaysian Ringgits (MYR). */
892
- CurrencyCode["Myr"] = "MYR";
893
- /** Mozambican Metical. */
894
- CurrencyCode["Mzn"] = "MZN";
895
- /** Namibian Dollar. */
896
- CurrencyCode["Nad"] = "NAD";
897
- /** Nigerian Naira (NGN). */
898
- CurrencyCode["Ngn"] = "NGN";
899
- /** Nicaraguan Córdoba (NIO). */
900
- CurrencyCode["Nio"] = "NIO";
901
- /** Norwegian Kroner (NOK). */
902
- CurrencyCode["Nok"] = "NOK";
903
- /** Nepalese Rupee (NPR). */
904
- CurrencyCode["Npr"] = "NPR";
905
- /** New Zealand Dollars (NZD). */
906
- CurrencyCode["Nzd"] = "NZD";
907
- /** Omani Rial (OMR). */
908
- CurrencyCode["Omr"] = "OMR";
909
- /** Panamian Balboa (PAB). */
910
- CurrencyCode["Pab"] = "PAB";
911
- /** Peruvian Nuevo Sol (PEN). */
912
- CurrencyCode["Pen"] = "PEN";
913
- /** Papua New Guinean Kina (PGK). */
914
- CurrencyCode["Pgk"] = "PGK";
915
- /** Philippine Peso (PHP). */
916
- CurrencyCode["Php"] = "PHP";
917
- /** Pakistani Rupee (PKR). */
918
- CurrencyCode["Pkr"] = "PKR";
919
- /** Polish Zlotych (PLN). */
920
- CurrencyCode["Pln"] = "PLN";
921
- /** Paraguayan Guarani (PYG). */
922
- CurrencyCode["Pyg"] = "PYG";
923
- /** Qatari Rial (QAR). */
924
- CurrencyCode["Qar"] = "QAR";
925
- /** Romanian Lei (RON). */
926
- CurrencyCode["Ron"] = "RON";
927
- /** Serbian dinar (RSD). */
928
- CurrencyCode["Rsd"] = "RSD";
929
- /** Russian Rubles (RUB). */
930
- CurrencyCode["Rub"] = "RUB";
931
- /** Rwandan Franc (RWF). */
932
- CurrencyCode["Rwf"] = "RWF";
933
- /** Saudi Riyal (SAR). */
934
- CurrencyCode["Sar"] = "SAR";
935
- /** Solomon Islands Dollar (SBD). */
936
- CurrencyCode["Sbd"] = "SBD";
937
- /** Seychellois Rupee (SCR). */
938
- CurrencyCode["Scr"] = "SCR";
939
- /** Sudanese Pound (SDG). */
940
- CurrencyCode["Sdg"] = "SDG";
941
- /** Swedish Kronor (SEK). */
942
- CurrencyCode["Sek"] = "SEK";
943
- /** Singapore Dollars (SGD). */
944
- CurrencyCode["Sgd"] = "SGD";
945
- /** Saint Helena Pounds (SHP). */
946
- CurrencyCode["Shp"] = "SHP";
947
- /** Sierra Leonean Leone (SLL). */
948
- CurrencyCode["Sll"] = "SLL";
949
- /** Somali Shilling (SOS). */
950
- CurrencyCode["Sos"] = "SOS";
951
- /** Surinamese Dollar (SRD). */
952
- CurrencyCode["Srd"] = "SRD";
953
- /** South Sudanese Pound (SSP). */
954
- CurrencyCode["Ssp"] = "SSP";
955
- /** Sao Tome And Principe Dobra (STD). */
956
- CurrencyCode["Std"] = "STD";
957
- /** Sao Tome And Principe Dobra (STN). */
958
- CurrencyCode["Stn"] = "STN";
959
- /** Syrian Pound (SYP). */
960
- CurrencyCode["Syp"] = "SYP";
961
- /** Swazi Lilangeni (SZL). */
962
- CurrencyCode["Szl"] = "SZL";
963
- /** Thai baht (THB). */
964
- CurrencyCode["Thb"] = "THB";
965
- /** Tajikistani Somoni (TJS). */
966
- CurrencyCode["Tjs"] = "TJS";
967
- /** Turkmenistani Manat (TMT). */
968
- CurrencyCode["Tmt"] = "TMT";
969
- /** Tunisian Dinar (TND). */
970
- CurrencyCode["Tnd"] = "TND";
971
- /** Tongan Pa'anga (TOP). */
972
- CurrencyCode["Top"] = "TOP";
973
- /** Turkish Lira (TRY). */
974
- CurrencyCode["Try"] = "TRY";
975
- /** Trinidad and Tobago Dollars (TTD). */
976
- CurrencyCode["Ttd"] = "TTD";
977
- /** Taiwan Dollars (TWD). */
978
- CurrencyCode["Twd"] = "TWD";
979
- /** Tanzanian Shilling (TZS). */
980
- CurrencyCode["Tzs"] = "TZS";
981
- /** Ukrainian Hryvnia (UAH). */
982
- CurrencyCode["Uah"] = "UAH";
983
- /** Ugandan Shilling (UGX). */
984
- CurrencyCode["Ugx"] = "UGX";
985
- /** United States Dollars (USD). */
986
- CurrencyCode["Usd"] = "USD";
987
- /** Uruguayan Pesos (UYU). */
988
- CurrencyCode["Uyu"] = "UYU";
989
- /** Uzbekistan som (UZS). */
990
- CurrencyCode["Uzs"] = "UZS";
991
- /** Venezuelan Bolivares (VED). */
992
- CurrencyCode["Ved"] = "VED";
993
- /** Venezuelan Bolivares (VEF). */
994
- CurrencyCode["Vef"] = "VEF";
995
- /** Venezuelan Bolivares (VES). */
996
- CurrencyCode["Ves"] = "VES";
997
- /** Vietnamese đồng (VND). */
998
- CurrencyCode["Vnd"] = "VND";
999
- /** Vanuatu Vatu (VUV). */
1000
- CurrencyCode["Vuv"] = "VUV";
1001
- /** Samoan Tala (WST). */
1002
- CurrencyCode["Wst"] = "WST";
1003
- /** Central African CFA Franc (XAF). */
1004
- CurrencyCode["Xaf"] = "XAF";
1005
- /** East Caribbean Dollar (XCD). */
1006
- CurrencyCode["Xcd"] = "XCD";
1007
- /** West African CFA franc (XOF). */
1008
- CurrencyCode["Xof"] = "XOF";
1009
- /** CFP Franc (XPF). */
1010
- CurrencyCode["Xpf"] = "XPF";
1011
- /** Unrecognized currency. */
1012
- CurrencyCode["Xxx"] = "XXX";
1013
- /** Yemeni Rial (YER). */
1014
- CurrencyCode["Yer"] = "YER";
1015
- /** South African Rand (ZAR). */
1016
- CurrencyCode["Zar"] = "ZAR";
1017
- /** Zambian Kwacha (ZMW). */
1018
- CurrencyCode["Zmw"] = "ZMW";
1019
- })(CurrencyCode = exports.CurrencyCode || (exports.CurrencyCode = {}));
1020
- /** Possible error codes that can be returned by `CustomerUserError`. */
1021
- var CustomerErrorCode;
1022
- (function (CustomerErrorCode) {
1023
- /** Customer already enabled. */
1024
- CustomerErrorCode["AlreadyEnabled"] = "ALREADY_ENABLED";
1025
- /** Input email contains an invalid domain name. */
1026
- CustomerErrorCode["BadDomain"] = "BAD_DOMAIN";
1027
- /** The input value is blank. */
1028
- CustomerErrorCode["Blank"] = "BLANK";
1029
- /** Input contains HTML tags. */
1030
- CustomerErrorCode["ContainsHtmlTags"] = "CONTAINS_HTML_TAGS";
1031
- /** Input contains URL. */
1032
- CustomerErrorCode["ContainsUrl"] = "CONTAINS_URL";
1033
- /** Customer is disabled. */
1034
- CustomerErrorCode["CustomerDisabled"] = "CUSTOMER_DISABLED";
1035
- /** The input value is invalid. */
1036
- CustomerErrorCode["Invalid"] = "INVALID";
1037
- /** Multipass token is not valid. */
1038
- CustomerErrorCode["InvalidMultipassRequest"] = "INVALID_MULTIPASS_REQUEST";
1039
- /** Address does not exist. */
1040
- CustomerErrorCode["NotFound"] = "NOT_FOUND";
1041
- /** Input password starts or ends with whitespace. */
1042
- CustomerErrorCode["PasswordStartsOrEndsWithWhitespace"] = "PASSWORD_STARTS_OR_ENDS_WITH_WHITESPACE";
1043
- /** The input value is already taken. */
1044
- CustomerErrorCode["Taken"] = "TAKEN";
1045
- /** Invalid activation token. */
1046
- CustomerErrorCode["TokenInvalid"] = "TOKEN_INVALID";
1047
- /** The input value is too long. */
1048
- CustomerErrorCode["TooLong"] = "TOO_LONG";
1049
- /** The input value is too short. */
1050
- CustomerErrorCode["TooShort"] = "TOO_SHORT";
1051
- /** Unidentified customer. */
1052
- CustomerErrorCode["UnidentifiedCustomer"] = "UNIDENTIFIED_CUSTOMER";
1053
- })(CustomerErrorCode = exports.CustomerErrorCode || (exports.CustomerErrorCode = {}));
1054
- /** List of different delivery method types. */
1055
- var DeliveryMethodType;
1056
- (function (DeliveryMethodType) {
1057
- /** Local Delivery. */
1058
- DeliveryMethodType["Local"] = "LOCAL";
1059
- /** None. */
1060
- DeliveryMethodType["None"] = "NONE";
1061
- /** Shipping to a Pickup Point. */
1062
- DeliveryMethodType["PickupPoint"] = "PICKUP_POINT";
1063
- /** Local Pickup. */
1064
- DeliveryMethodType["PickUp"] = "PICK_UP";
1065
- /** Retail. */
1066
- DeliveryMethodType["Retail"] = "RETAIL";
1067
- /** Shipping. */
1068
- DeliveryMethodType["Shipping"] = "SHIPPING";
1069
- })(DeliveryMethodType = exports.DeliveryMethodType || (exports.DeliveryMethodType = {}));
1070
- /** Digital wallet, such as Apple Pay, which can be used for accelerated checkouts. */
1071
- var DigitalWallet;
1072
- (function (DigitalWallet) {
1073
- /** Android Pay. */
1074
- DigitalWallet["AndroidPay"] = "ANDROID_PAY";
1075
- /** Apple Pay. */
1076
- DigitalWallet["ApplePay"] = "APPLE_PAY";
1077
- /** Google Pay. */
1078
- DigitalWallet["GooglePay"] = "GOOGLE_PAY";
1079
- /** Shopify Pay. */
1080
- DigitalWallet["ShopifyPay"] = "SHOPIFY_PAY";
1081
- })(DigitalWallet = exports.DigitalWallet || (exports.DigitalWallet = {}));
1082
- /** The method by which the discount's value is allocated onto its entitled lines. */
1083
- var DiscountApplicationAllocationMethod;
1084
- (function (DiscountApplicationAllocationMethod) {
1085
- /** The value is spread across all entitled lines. */
1086
- DiscountApplicationAllocationMethod["Across"] = "ACROSS";
1087
- /** The value is applied onto every entitled line. */
1088
- DiscountApplicationAllocationMethod["Each"] = "EACH";
1089
- /** The value is specifically applied onto a particular line. */
1090
- DiscountApplicationAllocationMethod["One"] = "ONE";
1091
- })(DiscountApplicationAllocationMethod = exports.DiscountApplicationAllocationMethod || (exports.DiscountApplicationAllocationMethod = {}));
1092
- /**
1093
- * The lines on the order to which the discount is applied, of the type defined by
1094
- * the discount application's `targetType`. For example, the value `ENTITLED`, combined with a `targetType` of
1095
- * `LINE_ITEM`, applies the discount on all line items that are entitled to the discount.
1096
- * The value `ALL`, combined with a `targetType` of `SHIPPING_LINE`, applies the discount on all shipping lines.
1097
- *
1098
- */
1099
- var DiscountApplicationTargetSelection;
1100
- (function (DiscountApplicationTargetSelection) {
1101
- /** The discount is allocated onto all the lines. */
1102
- DiscountApplicationTargetSelection["All"] = "ALL";
1103
- /** The discount is allocated onto only the lines that it's entitled for. */
1104
- DiscountApplicationTargetSelection["Entitled"] = "ENTITLED";
1105
- /** The discount is allocated onto explicitly chosen lines. */
1106
- DiscountApplicationTargetSelection["Explicit"] = "EXPLICIT";
1107
- })(DiscountApplicationTargetSelection = exports.DiscountApplicationTargetSelection || (exports.DiscountApplicationTargetSelection = {}));
1108
- /**
1109
- * The type of line (i.e. line item or shipping line) on an order that the discount is applicable towards.
1110
- *
1111
- */
1112
- var DiscountApplicationTargetType;
1113
- (function (DiscountApplicationTargetType) {
1114
- /** The discount applies onto line items. */
1115
- DiscountApplicationTargetType["LineItem"] = "LINE_ITEM";
1116
- /** The discount applies onto shipping lines. */
1117
- DiscountApplicationTargetType["ShippingLine"] = "SHIPPING_LINE";
1118
- })(DiscountApplicationTargetType = exports.DiscountApplicationTargetType || (exports.DiscountApplicationTargetType = {}));
1119
- /**
1120
- * The type of data that the filter group represents.
1121
- *
1122
- * For more information, refer to [Filter products in a collection with the Storefront API]
1123
- * (https://shopify.dev/api/examples/filter-products).
1124
- *
1125
- */
1126
- var FilterType;
1127
- (function (FilterType) {
1128
- /** A boolean value. */
1129
- FilterType["Boolean"] = "BOOLEAN";
1130
- /** A list of selectable values. */
1131
- FilterType["List"] = "LIST";
1132
- /** A range of prices. */
1133
- FilterType["PriceRange"] = "PRICE_RANGE";
1134
- })(FilterType = exports.FilterType || (exports.FilterType = {}));
1135
- /** List of supported image content types. */
1136
- var ImageContentType;
1137
- (function (ImageContentType) {
1138
- /** A JPG image. */
1139
- ImageContentType["Jpg"] = "JPG";
1140
- /** A PNG image. */
1141
- ImageContentType["Png"] = "PNG";
1142
- /** A WEBP image. */
1143
- ImageContentType["Webp"] = "WEBP";
1144
- })(ImageContentType = exports.ImageContentType || (exports.ImageContentType = {}));
1145
- /** ISO 639-1 language codes supported by Shopify. */
1146
- var LanguageCode;
1147
- (function (LanguageCode) {
1148
- /** Afrikaans. */
1149
- LanguageCode["Af"] = "AF";
1150
- /** Akan. */
1151
- LanguageCode["Ak"] = "AK";
1152
- /** Amharic. */
1153
- LanguageCode["Am"] = "AM";
1154
- /** Arabic. */
1155
- LanguageCode["Ar"] = "AR";
1156
- /** Assamese. */
1157
- LanguageCode["As"] = "AS";
1158
- /** Azerbaijani. */
1159
- LanguageCode["Az"] = "AZ";
1160
- /** Belarusian. */
1161
- LanguageCode["Be"] = "BE";
1162
- /** Bulgarian. */
1163
- LanguageCode["Bg"] = "BG";
1164
- /** Bambara. */
1165
- LanguageCode["Bm"] = "BM";
1166
- /** Bangla. */
1167
- LanguageCode["Bn"] = "BN";
1168
- /** Tibetan. */
1169
- LanguageCode["Bo"] = "BO";
1170
- /** Breton. */
1171
- LanguageCode["Br"] = "BR";
1172
- /** Bosnian. */
1173
- LanguageCode["Bs"] = "BS";
1174
- /** Catalan. */
1175
- LanguageCode["Ca"] = "CA";
1176
- /** Chechen. */
1177
- LanguageCode["Ce"] = "CE";
1178
- /** Czech. */
1179
- LanguageCode["Cs"] = "CS";
1180
- /** Church Slavic. */
1181
- LanguageCode["Cu"] = "CU";
1182
- /** Welsh. */
1183
- LanguageCode["Cy"] = "CY";
1184
- /** Danish. */
1185
- LanguageCode["Da"] = "DA";
1186
- /** German. */
1187
- LanguageCode["De"] = "DE";
1188
- /** Dzongkha. */
1189
- LanguageCode["Dz"] = "DZ";
1190
- /** Ewe. */
1191
- LanguageCode["Ee"] = "EE";
1192
- /** Greek. */
1193
- LanguageCode["El"] = "EL";
1194
- /** English. */
1195
- LanguageCode["En"] = "EN";
1196
- /** Esperanto. */
1197
- LanguageCode["Eo"] = "EO";
1198
- /** Spanish. */
1199
- LanguageCode["Es"] = "ES";
1200
- /** Estonian. */
1201
- LanguageCode["Et"] = "ET";
1202
- /** Basque. */
1203
- LanguageCode["Eu"] = "EU";
1204
- /** Persian. */
1205
- LanguageCode["Fa"] = "FA";
1206
- /** Fulah. */
1207
- LanguageCode["Ff"] = "FF";
1208
- /** Finnish. */
1209
- LanguageCode["Fi"] = "FI";
1210
- /** Faroese. */
1211
- LanguageCode["Fo"] = "FO";
1212
- /** French. */
1213
- LanguageCode["Fr"] = "FR";
1214
- /** Western Frisian. */
1215
- LanguageCode["Fy"] = "FY";
1216
- /** Irish. */
1217
- LanguageCode["Ga"] = "GA";
1218
- /** Scottish Gaelic. */
1219
- LanguageCode["Gd"] = "GD";
1220
- /** Galician. */
1221
- LanguageCode["Gl"] = "GL";
1222
- /** Gujarati. */
1223
- LanguageCode["Gu"] = "GU";
1224
- /** Manx. */
1225
- LanguageCode["Gv"] = "GV";
1226
- /** Hausa. */
1227
- LanguageCode["Ha"] = "HA";
1228
- /** Hebrew. */
1229
- LanguageCode["He"] = "HE";
1230
- /** Hindi. */
1231
- LanguageCode["Hi"] = "HI";
1232
- /** Croatian. */
1233
- LanguageCode["Hr"] = "HR";
1234
- /** Hungarian. */
1235
- LanguageCode["Hu"] = "HU";
1236
- /** Armenian. */
1237
- LanguageCode["Hy"] = "HY";
1238
- /** Interlingua. */
1239
- LanguageCode["Ia"] = "IA";
1240
- /** Indonesian. */
1241
- LanguageCode["Id"] = "ID";
1242
- /** Igbo. */
1243
- LanguageCode["Ig"] = "IG";
1244
- /** Sichuan Yi. */
1245
- LanguageCode["Ii"] = "II";
1246
- /** Icelandic. */
1247
- LanguageCode["Is"] = "IS";
1248
- /** Italian. */
1249
- LanguageCode["It"] = "IT";
1250
- /** Japanese. */
1251
- LanguageCode["Ja"] = "JA";
1252
- /** Javanese. */
1253
- LanguageCode["Jv"] = "JV";
1254
- /** Georgian. */
1255
- LanguageCode["Ka"] = "KA";
1256
- /** Kikuyu. */
1257
- LanguageCode["Ki"] = "KI";
1258
- /** Kazakh. */
1259
- LanguageCode["Kk"] = "KK";
1260
- /** Kalaallisut. */
1261
- LanguageCode["Kl"] = "KL";
1262
- /** Khmer. */
1263
- LanguageCode["Km"] = "KM";
1264
- /** Kannada. */
1265
- LanguageCode["Kn"] = "KN";
1266
- /** Korean. */
1267
- LanguageCode["Ko"] = "KO";
1268
- /** Kashmiri. */
1269
- LanguageCode["Ks"] = "KS";
1270
- /** Kurdish. */
1271
- LanguageCode["Ku"] = "KU";
1272
- /** Cornish. */
1273
- LanguageCode["Kw"] = "KW";
1274
- /** Kyrgyz. */
1275
- LanguageCode["Ky"] = "KY";
1276
- /** Luxembourgish. */
1277
- LanguageCode["Lb"] = "LB";
1278
- /** Ganda. */
1279
- LanguageCode["Lg"] = "LG";
1280
- /** Lingala. */
1281
- LanguageCode["Ln"] = "LN";
1282
- /** Lao. */
1283
- LanguageCode["Lo"] = "LO";
1284
- /** Lithuanian. */
1285
- LanguageCode["Lt"] = "LT";
1286
- /** Luba-Katanga. */
1287
- LanguageCode["Lu"] = "LU";
1288
- /** Latvian. */
1289
- LanguageCode["Lv"] = "LV";
1290
- /** Malagasy. */
1291
- LanguageCode["Mg"] = "MG";
1292
- /** Maori. */
1293
- LanguageCode["Mi"] = "MI";
1294
- /** Macedonian. */
1295
- LanguageCode["Mk"] = "MK";
1296
- /** Malayalam. */
1297
- LanguageCode["Ml"] = "ML";
1298
- /** Mongolian. */
1299
- LanguageCode["Mn"] = "MN";
1300
- /** Marathi. */
1301
- LanguageCode["Mr"] = "MR";
1302
- /** Malay. */
1303
- LanguageCode["Ms"] = "MS";
1304
- /** Maltese. */
1305
- LanguageCode["Mt"] = "MT";
1306
- /** Burmese. */
1307
- LanguageCode["My"] = "MY";
1308
- /** Norwegian (Bokmål). */
1309
- LanguageCode["Nb"] = "NB";
1310
- /** North Ndebele. */
1311
- LanguageCode["Nd"] = "ND";
1312
- /** Nepali. */
1313
- LanguageCode["Ne"] = "NE";
1314
- /** Dutch. */
1315
- LanguageCode["Nl"] = "NL";
1316
- /** Norwegian Nynorsk. */
1317
- LanguageCode["Nn"] = "NN";
1318
- /** Norwegian. */
1319
- LanguageCode["No"] = "NO";
1320
- /** Oromo. */
1321
- LanguageCode["Om"] = "OM";
1322
- /** Odia. */
1323
- LanguageCode["Or"] = "OR";
1324
- /** Ossetic. */
1325
- LanguageCode["Os"] = "OS";
1326
- /** Punjabi. */
1327
- LanguageCode["Pa"] = "PA";
1328
- /** Polish. */
1329
- LanguageCode["Pl"] = "PL";
1330
- /** Pashto. */
1331
- LanguageCode["Ps"] = "PS";
1332
- /** Portuguese. */
1333
- LanguageCode["Pt"] = "PT";
1334
- /** Portuguese (Brazil). */
1335
- LanguageCode["PtBr"] = "PT_BR";
1336
- /** Portuguese (Portugal). */
1337
- LanguageCode["PtPt"] = "PT_PT";
1338
- /** Quechua. */
1339
- LanguageCode["Qu"] = "QU";
1340
- /** Romansh. */
1341
- LanguageCode["Rm"] = "RM";
1342
- /** Rundi. */
1343
- LanguageCode["Rn"] = "RN";
1344
- /** Romanian. */
1345
- LanguageCode["Ro"] = "RO";
1346
- /** Russian. */
1347
- LanguageCode["Ru"] = "RU";
1348
- /** Kinyarwanda. */
1349
- LanguageCode["Rw"] = "RW";
1350
- /** Sindhi. */
1351
- LanguageCode["Sd"] = "SD";
1352
- /** Northern Sami. */
1353
- LanguageCode["Se"] = "SE";
1354
- /** Sango. */
1355
- LanguageCode["Sg"] = "SG";
1356
- /** Sinhala. */
1357
- LanguageCode["Si"] = "SI";
1358
- /** Slovak. */
1359
- LanguageCode["Sk"] = "SK";
1360
- /** Slovenian. */
1361
- LanguageCode["Sl"] = "SL";
1362
- /** Shona. */
1363
- LanguageCode["Sn"] = "SN";
1364
- /** Somali. */
1365
- LanguageCode["So"] = "SO";
1366
- /** Albanian. */
1367
- LanguageCode["Sq"] = "SQ";
1368
- /** Serbian. */
1369
- LanguageCode["Sr"] = "SR";
1370
- /** Sundanese. */
1371
- LanguageCode["Su"] = "SU";
1372
- /** Swedish. */
1373
- LanguageCode["Sv"] = "SV";
1374
- /** Swahili. */
1375
- LanguageCode["Sw"] = "SW";
1376
- /** Tamil. */
1377
- LanguageCode["Ta"] = "TA";
1378
- /** Telugu. */
1379
- LanguageCode["Te"] = "TE";
1380
- /** Tajik. */
1381
- LanguageCode["Tg"] = "TG";
1382
- /** Thai. */
1383
- LanguageCode["Th"] = "TH";
1384
- /** Tigrinya. */
1385
- LanguageCode["Ti"] = "TI";
1386
- /** Turkmen. */
1387
- LanguageCode["Tk"] = "TK";
1388
- /** Tongan. */
1389
- LanguageCode["To"] = "TO";
1390
- /** Turkish. */
1391
- LanguageCode["Tr"] = "TR";
1392
- /** Tatar. */
1393
- LanguageCode["Tt"] = "TT";
1394
- /** Uyghur. */
1395
- LanguageCode["Ug"] = "UG";
1396
- /** Ukrainian. */
1397
- LanguageCode["Uk"] = "UK";
1398
- /** Urdu. */
1399
- LanguageCode["Ur"] = "UR";
1400
- /** Uzbek. */
1401
- LanguageCode["Uz"] = "UZ";
1402
- /** Vietnamese. */
1403
- LanguageCode["Vi"] = "VI";
1404
- /** Volapük. */
1405
- LanguageCode["Vo"] = "VO";
1406
- /** Wolof. */
1407
- LanguageCode["Wo"] = "WO";
1408
- /** Xhosa. */
1409
- LanguageCode["Xh"] = "XH";
1410
- /** Yiddish. */
1411
- LanguageCode["Yi"] = "YI";
1412
- /** Yoruba. */
1413
- LanguageCode["Yo"] = "YO";
1414
- /** Chinese. */
1415
- LanguageCode["Zh"] = "ZH";
1416
- /** Chinese (Simplified). */
1417
- LanguageCode["ZhCn"] = "ZH_CN";
1418
- /** Chinese (Traditional). */
1419
- LanguageCode["ZhTw"] = "ZH_TW";
1420
- /** Zulu. */
1421
- LanguageCode["Zu"] = "ZU";
1422
- })(LanguageCode = exports.LanguageCode || (exports.LanguageCode = {}));
1423
- /** The set of valid sort keys for the Location query. */
1424
- var LocationSortKeys;
1425
- (function (LocationSortKeys) {
1426
- /** Sort by the `city` value. */
1427
- LocationSortKeys["City"] = "CITY";
1428
- /** Sort by the `distance` value. */
1429
- LocationSortKeys["Distance"] = "DISTANCE";
1430
- /** Sort by the `id` value. */
1431
- LocationSortKeys["Id"] = "ID";
1432
- /** Sort by the `name` value. */
1433
- LocationSortKeys["Name"] = "NAME";
1434
- })(LocationSortKeys = exports.LocationSortKeys || (exports.LocationSortKeys = {}));
1435
- /** The possible content types for a media object. */
1436
- var MediaContentType;
1437
- (function (MediaContentType) {
1438
- /** An externally hosted video. */
1439
- MediaContentType["ExternalVideo"] = "EXTERNAL_VIDEO";
1440
- /** A Shopify hosted image. */
1441
- MediaContentType["Image"] = "IMAGE";
1442
- /** A 3d model. */
1443
- MediaContentType["Model_3D"] = "MODEL_3D";
1444
- /** A Shopify hosted video. */
1445
- MediaContentType["Video"] = "VIDEO";
1446
- })(MediaContentType = exports.MediaContentType || (exports.MediaContentType = {}));
1447
- /** Host for a Media Resource. */
1448
- var MediaHost;
1449
- (function (MediaHost) {
1450
- /** Host for Vimeo embedded videos. */
1451
- MediaHost["Vimeo"] = "VIMEO";
1452
- /** Host for YouTube embedded videos. */
1453
- MediaHost["Youtube"] = "YOUTUBE";
1454
- })(MediaHost = exports.MediaHost || (exports.MediaHost = {}));
1455
- /** A menu item type. */
1456
- var MenuItemType;
1457
- (function (MenuItemType) {
1458
- /** An article link. */
1459
- MenuItemType["Article"] = "ARTICLE";
1460
- /** A blog link. */
1461
- MenuItemType["Blog"] = "BLOG";
1462
- /** A catalog link. */
1463
- MenuItemType["Catalog"] = "CATALOG";
1464
- /** A collection link. */
1465
- MenuItemType["Collection"] = "COLLECTION";
1466
- /** A collection link. */
1467
- MenuItemType["Collections"] = "COLLECTIONS";
1468
- /** A frontpage link. */
1469
- MenuItemType["Frontpage"] = "FRONTPAGE";
1470
- /** An http link. */
1471
- MenuItemType["Http"] = "HTTP";
1472
- /** A page link. */
1473
- MenuItemType["Page"] = "PAGE";
1474
- /** A product link. */
1475
- MenuItemType["Product"] = "PRODUCT";
1476
- /** A search link. */
1477
- MenuItemType["Search"] = "SEARCH";
1478
- /** A shop policy link. */
1479
- MenuItemType["ShopPolicy"] = "SHOP_POLICY";
1480
- })(MenuItemType = exports.MenuItemType || (exports.MenuItemType = {}));
1481
- /** Represents the reason for the order's cancellation. */
1482
- var OrderCancelReason;
1483
- (function (OrderCancelReason) {
1484
- /** The customer wanted to cancel the order. */
1485
- OrderCancelReason["Customer"] = "CUSTOMER";
1486
- /** Payment was declined. */
1487
- OrderCancelReason["Declined"] = "DECLINED";
1488
- /** The order was fraudulent. */
1489
- OrderCancelReason["Fraud"] = "FRAUD";
1490
- /** There was insufficient inventory. */
1491
- OrderCancelReason["Inventory"] = "INVENTORY";
1492
- /** The order was canceled for an unlisted reason. */
1493
- OrderCancelReason["Other"] = "OTHER";
1494
- })(OrderCancelReason = exports.OrderCancelReason || (exports.OrderCancelReason = {}));
1495
- /** Represents the order's current financial status. */
1496
- var OrderFinancialStatus;
1497
- (function (OrderFinancialStatus) {
1498
- /** Displayed as **Authorized**. */
1499
- OrderFinancialStatus["Authorized"] = "AUTHORIZED";
1500
- /** Displayed as **Paid**. */
1501
- OrderFinancialStatus["Paid"] = "PAID";
1502
- /** Displayed as **Partially paid**. */
1503
- OrderFinancialStatus["PartiallyPaid"] = "PARTIALLY_PAID";
1504
- /** Displayed as **Partially refunded**. */
1505
- OrderFinancialStatus["PartiallyRefunded"] = "PARTIALLY_REFUNDED";
1506
- /** Displayed as **Pending**. */
1507
- OrderFinancialStatus["Pending"] = "PENDING";
1508
- /** Displayed as **Refunded**. */
1509
- OrderFinancialStatus["Refunded"] = "REFUNDED";
1510
- /** Displayed as **Voided**. */
1511
- OrderFinancialStatus["Voided"] = "VOIDED";
1512
- })(OrderFinancialStatus = exports.OrderFinancialStatus || (exports.OrderFinancialStatus = {}));
1513
- /** Represents the order's aggregated fulfillment status for display purposes. */
1514
- var OrderFulfillmentStatus;
1515
- (function (OrderFulfillmentStatus) {
1516
- /** Displayed as **Fulfilled**. All of the items in the order have been fulfilled. */
1517
- OrderFulfillmentStatus["Fulfilled"] = "FULFILLED";
1518
- /** Displayed as **In progress**. Some of the items in the order have been fulfilled, or a request for fulfillment has been sent to the fulfillment service. */
1519
- OrderFulfillmentStatus["InProgress"] = "IN_PROGRESS";
1520
- /** Displayed as **On hold**. All of the unfulfilled items in this order are on hold. */
1521
- OrderFulfillmentStatus["OnHold"] = "ON_HOLD";
1522
- /** Displayed as **Open**. None of the items in the order have been fulfilled. Replaced by "UNFULFILLED" status. */
1523
- OrderFulfillmentStatus["Open"] = "OPEN";
1524
- /** Displayed as **Partially fulfilled**. Some of the items in the order have been fulfilled. */
1525
- OrderFulfillmentStatus["PartiallyFulfilled"] = "PARTIALLY_FULFILLED";
1526
- /** Displayed as **Pending fulfillment**. A request for fulfillment of some items awaits a response from the fulfillment service. Replaced by "IN_PROGRESS" status. */
1527
- OrderFulfillmentStatus["PendingFulfillment"] = "PENDING_FULFILLMENT";
1528
- /** Displayed as **Restocked**. All of the items in the order have been restocked. Replaced by "UNFULFILLED" status. */
1529
- OrderFulfillmentStatus["Restocked"] = "RESTOCKED";
1530
- /** Displayed as **Scheduled**. All of the unfulfilled items in this order are scheduled for fulfillment at later time. */
1531
- OrderFulfillmentStatus["Scheduled"] = "SCHEDULED";
1532
- /** Displayed as **Unfulfilled**. None of the items in the order have been fulfilled. */
1533
- OrderFulfillmentStatus["Unfulfilled"] = "UNFULFILLED";
1534
- })(OrderFulfillmentStatus = exports.OrderFulfillmentStatus || (exports.OrderFulfillmentStatus = {}));
1535
- /** The set of valid sort keys for the Order query. */
1536
- var OrderSortKeys;
1537
- (function (OrderSortKeys) {
1538
- /** Sort by the `id` value. */
1539
- OrderSortKeys["Id"] = "ID";
1540
- /** Sort by the `processed_at` value. */
1541
- OrderSortKeys["ProcessedAt"] = "PROCESSED_AT";
1542
- /**
1543
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1544
- * Don't use this sort key when no search query is specified.
1545
- *
1546
- */
1547
- OrderSortKeys["Relevance"] = "RELEVANCE";
1548
- /** Sort by the `total_price` value. */
1549
- OrderSortKeys["TotalPrice"] = "TOTAL_PRICE";
1550
- })(OrderSortKeys = exports.OrderSortKeys || (exports.OrderSortKeys = {}));
1551
- /** The set of valid sort keys for the Page query. */
1552
- var PageSortKeys;
1553
- (function (PageSortKeys) {
1554
- /** Sort by the `id` value. */
1555
- PageSortKeys["Id"] = "ID";
1556
- /**
1557
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1558
- * Don't use this sort key when no search query is specified.
1559
- *
1560
- */
1561
- PageSortKeys["Relevance"] = "RELEVANCE";
1562
- /** Sort by the `title` value. */
1563
- PageSortKeys["Title"] = "TITLE";
1564
- /** Sort by the `updated_at` value. */
1565
- PageSortKeys["UpdatedAt"] = "UPDATED_AT";
1566
- })(PageSortKeys = exports.PageSortKeys || (exports.PageSortKeys = {}));
1567
- /** The valid values for the types of payment token. */
1568
- var PaymentTokenType;
1569
- (function (PaymentTokenType) {
1570
- /** Apple Pay token type. */
1571
- PaymentTokenType["ApplePay"] = "APPLE_PAY";
1572
- /** Google Pay token type. */
1573
- PaymentTokenType["GooglePay"] = "GOOGLE_PAY";
1574
- /** Shopify Pay token type. */
1575
- PaymentTokenType["ShopifyPay"] = "SHOPIFY_PAY";
1576
- /** Stripe token type. */
1577
- PaymentTokenType["StripeVaultToken"] = "STRIPE_VAULT_TOKEN";
1578
- /** Vault payment token type. */
1579
- PaymentTokenType["Vault"] = "VAULT";
1580
- })(PaymentTokenType = exports.PaymentTokenType || (exports.PaymentTokenType = {}));
1581
- /** The set of valid sort keys for the ProductCollection query. */
1582
- var ProductCollectionSortKeys;
1583
- (function (ProductCollectionSortKeys) {
1584
- /** Sort by the `best-selling` value. */
1585
- ProductCollectionSortKeys["BestSelling"] = "BEST_SELLING";
1586
- /** Sort by the `collection-default` value. */
1587
- ProductCollectionSortKeys["CollectionDefault"] = "COLLECTION_DEFAULT";
1588
- /** Sort by the `created` value. */
1589
- ProductCollectionSortKeys["Created"] = "CREATED";
1590
- /** Sort by the `id` value. */
1591
- ProductCollectionSortKeys["Id"] = "ID";
1592
- /** Sort by the `manual` value. */
1593
- ProductCollectionSortKeys["Manual"] = "MANUAL";
1594
- /** Sort by the `price` value. */
1595
- ProductCollectionSortKeys["Price"] = "PRICE";
1596
- /**
1597
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1598
- * Don't use this sort key when no search query is specified.
1599
- *
1600
- */
1601
- ProductCollectionSortKeys["Relevance"] = "RELEVANCE";
1602
- /** Sort by the `title` value. */
1603
- ProductCollectionSortKeys["Title"] = "TITLE";
1604
- })(ProductCollectionSortKeys = exports.ProductCollectionSortKeys || (exports.ProductCollectionSortKeys = {}));
1605
- /** The set of valid sort keys for the ProductImage query. */
1606
- var ProductImageSortKeys;
1607
- (function (ProductImageSortKeys) {
1608
- /** Sort by the `created_at` value. */
1609
- ProductImageSortKeys["CreatedAt"] = "CREATED_AT";
1610
- /** Sort by the `id` value. */
1611
- ProductImageSortKeys["Id"] = "ID";
1612
- /** Sort by the `position` value. */
1613
- ProductImageSortKeys["Position"] = "POSITION";
1614
- /**
1615
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1616
- * Don't use this sort key when no search query is specified.
1617
- *
1618
- */
1619
- ProductImageSortKeys["Relevance"] = "RELEVANCE";
1620
- })(ProductImageSortKeys = exports.ProductImageSortKeys || (exports.ProductImageSortKeys = {}));
1621
- /** The set of valid sort keys for the ProductMedia query. */
1622
- var ProductMediaSortKeys;
1623
- (function (ProductMediaSortKeys) {
1624
- /** Sort by the `id` value. */
1625
- ProductMediaSortKeys["Id"] = "ID";
1626
- /** Sort by the `position` value. */
1627
- ProductMediaSortKeys["Position"] = "POSITION";
1628
- /**
1629
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1630
- * Don't use this sort key when no search query is specified.
1631
- *
1632
- */
1633
- ProductMediaSortKeys["Relevance"] = "RELEVANCE";
1634
- })(ProductMediaSortKeys = exports.ProductMediaSortKeys || (exports.ProductMediaSortKeys = {}));
1635
- /** The set of valid sort keys for the Product query. */
1636
- var ProductSortKeys;
1637
- (function (ProductSortKeys) {
1638
- /** Sort by the `best_selling` value. */
1639
- ProductSortKeys["BestSelling"] = "BEST_SELLING";
1640
- /** Sort by the `created_at` value. */
1641
- ProductSortKeys["CreatedAt"] = "CREATED_AT";
1642
- /** Sort by the `id` value. */
1643
- ProductSortKeys["Id"] = "ID";
1644
- /** Sort by the `price` value. */
1645
- ProductSortKeys["Price"] = "PRICE";
1646
- /** Sort by the `product_type` value. */
1647
- ProductSortKeys["ProductType"] = "PRODUCT_TYPE";
1648
- /**
1649
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1650
- * Don't use this sort key when no search query is specified.
1651
- *
1652
- */
1653
- ProductSortKeys["Relevance"] = "RELEVANCE";
1654
- /** Sort by the `title` value. */
1655
- ProductSortKeys["Title"] = "TITLE";
1656
- /** Sort by the `updated_at` value. */
1657
- ProductSortKeys["UpdatedAt"] = "UPDATED_AT";
1658
- /** Sort by the `vendor` value. */
1659
- ProductSortKeys["Vendor"] = "VENDOR";
1660
- })(ProductSortKeys = exports.ProductSortKeys || (exports.ProductSortKeys = {}));
1661
- /** The set of valid sort keys for the ProductVariant query. */
1662
- var ProductVariantSortKeys;
1663
- (function (ProductVariantSortKeys) {
1664
- /** Sort by the `id` value. */
1665
- ProductVariantSortKeys["Id"] = "ID";
1666
- /** Sort by the `position` value. */
1667
- ProductVariantSortKeys["Position"] = "POSITION";
1668
- /**
1669
- * Sort by relevance to the search terms when the `query` parameter is specified on the connection.
1670
- * Don't use this sort key when no search query is specified.
1671
- *
1672
- */
1673
- ProductVariantSortKeys["Relevance"] = "RELEVANCE";
1674
- /** Sort by the `sku` value. */
1675
- ProductVariantSortKeys["Sku"] = "SKU";
1676
- /** Sort by the `title` value. */
1677
- ProductVariantSortKeys["Title"] = "TITLE";
1678
- })(ProductVariantSortKeys = exports.ProductVariantSortKeys || (exports.ProductVariantSortKeys = {}));
1679
- /** The different kinds of order transactions. */
1680
- var TransactionKind;
1681
- (function (TransactionKind) {
1682
- /**
1683
- * An amount reserved against the cardholder's funding source.
1684
- * Money does not change hands until the authorization is captured.
1685
- *
1686
- */
1687
- TransactionKind["Authorization"] = "AUTHORIZATION";
1688
- /** A transfer of the money that was reserved during the authorization stage. */
1689
- TransactionKind["Capture"] = "CAPTURE";
1690
- /** Money returned to the customer when they have paid too much. */
1691
- TransactionKind["Change"] = "CHANGE";
1692
- /** An authorization for a payment taken with an EMV credit card reader. */
1693
- TransactionKind["EmvAuthorization"] = "EMV_AUTHORIZATION";
1694
- /** An authorization and capture performed together in a single step. */
1695
- TransactionKind["Sale"] = "SALE";
1696
- })(TransactionKind = exports.TransactionKind || (exports.TransactionKind = {}));
1697
- /** Transaction statuses describe the status of a transaction. */
1698
- var TransactionStatus;
1699
- (function (TransactionStatus) {
1700
- /** There was an error while processing the transaction. */
1701
- TransactionStatus["Error"] = "ERROR";
1702
- /** The transaction failed. */
1703
- TransactionStatus["Failure"] = "FAILURE";
1704
- /** The transaction is pending. */
1705
- TransactionStatus["Pending"] = "PENDING";
1706
- /** The transaction succeeded. */
1707
- TransactionStatus["Success"] = "SUCCESS";
1708
- })(TransactionStatus = exports.TransactionStatus || (exports.TransactionStatus = {}));
1709
- /** The accepted types of unit of measurement. */
1710
- var UnitPriceMeasurementMeasuredType;
1711
- (function (UnitPriceMeasurementMeasuredType) {
1712
- /** Unit of measurements representing areas. */
1713
- UnitPriceMeasurementMeasuredType["Area"] = "AREA";
1714
- /** Unit of measurements representing lengths. */
1715
- UnitPriceMeasurementMeasuredType["Length"] = "LENGTH";
1716
- /** Unit of measurements representing volumes. */
1717
- UnitPriceMeasurementMeasuredType["Volume"] = "VOLUME";
1718
- /** Unit of measurements representing weights. */
1719
- UnitPriceMeasurementMeasuredType["Weight"] = "WEIGHT";
1720
- })(UnitPriceMeasurementMeasuredType = exports.UnitPriceMeasurementMeasuredType || (exports.UnitPriceMeasurementMeasuredType = {}));
1721
- /** The valid units of measurement for a unit price measurement. */
1722
- var UnitPriceMeasurementMeasuredUnit;
1723
- (function (UnitPriceMeasurementMeasuredUnit) {
1724
- /** 100 centiliters equals 1 liter. */
1725
- UnitPriceMeasurementMeasuredUnit["Cl"] = "CL";
1726
- /** 100 centimeters equals 1 meter. */
1727
- UnitPriceMeasurementMeasuredUnit["Cm"] = "CM";
1728
- /** Metric system unit of weight. */
1729
- UnitPriceMeasurementMeasuredUnit["G"] = "G";
1730
- /** 1 kilogram equals 1000 grams. */
1731
- UnitPriceMeasurementMeasuredUnit["Kg"] = "KG";
1732
- /** Metric system unit of volume. */
1733
- UnitPriceMeasurementMeasuredUnit["L"] = "L";
1734
- /** Metric system unit of length. */
1735
- UnitPriceMeasurementMeasuredUnit["M"] = "M";
1736
- /** Metric system unit of area. */
1737
- UnitPriceMeasurementMeasuredUnit["M2"] = "M2";
1738
- /** 1 cubic meter equals 1000 liters. */
1739
- UnitPriceMeasurementMeasuredUnit["M3"] = "M3";
1740
- /** 1000 milligrams equals 1 gram. */
1741
- UnitPriceMeasurementMeasuredUnit["Mg"] = "MG";
1742
- /** 1000 milliliters equals 1 liter. */
1743
- UnitPriceMeasurementMeasuredUnit["Ml"] = "ML";
1744
- /** 1000 millimeters equals 1 meter. */
1745
- UnitPriceMeasurementMeasuredUnit["Mm"] = "MM";
1746
- })(UnitPriceMeasurementMeasuredUnit = exports.UnitPriceMeasurementMeasuredUnit || (exports.UnitPriceMeasurementMeasuredUnit = {}));
1747
- /** Systems of weights and measures. */
1748
- var UnitSystem;
1749
- (function (UnitSystem) {
1750
- /** Imperial system of weights and measures. */
1751
- UnitSystem["ImperialSystem"] = "IMPERIAL_SYSTEM";
1752
- /** Metric system of weights and measures. */
1753
- UnitSystem["MetricSystem"] = "METRIC_SYSTEM";
1754
- })(UnitSystem = exports.UnitSystem || (exports.UnitSystem = {}));
1755
- /** Units of measurement for weight. */
1756
- var WeightUnit;
1757
- (function (WeightUnit) {
1758
- /** Metric system unit of mass. */
1759
- WeightUnit["Grams"] = "GRAMS";
1760
- /** 1 kilogram equals 1000 grams. */
1761
- WeightUnit["Kilograms"] = "KILOGRAMS";
1762
- /** Imperial system unit of mass. */
1763
- WeightUnit["Ounces"] = "OUNCES";
1764
- /** 1 pound equals 16 ounces. */
1765
- WeightUnit["Pounds"] = "POUNDS";
1766
- })(WeightUnit = exports.WeightUnit || (exports.WeightUnit = {}));