@ohos-ports/shopify 4.8.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) hide show
  1. package/README.md +75 -0
  2. package/bin/run.cmd +3 -0
  3. package/bin/run.js +11 -0
  4. package/dist/acorn-7M27BPGP.js +16 -0
  5. package/dist/analytics-3IIUBZ3B.js +1 -0
  6. package/dist/analytics-OOT5AB52.js +1 -0
  7. package/dist/angular-DW5TQVCM.js +4 -0
  8. package/dist/assets/graphiql/favicon.ico +0 -0
  9. package/dist/assets/graphiql/style.css +58 -0
  10. package/dist/assets/hydrogen/bundle/analyzer.html +2056 -0
  11. package/dist/assets/hydrogen/i18n/domains.ts +21 -0
  12. package/dist/assets/hydrogen/i18n/mock-i18n-types.ts +5 -0
  13. package/dist/assets/hydrogen/i18n/subdomains.ts +20 -0
  14. package/dist/assets/hydrogen/i18n/subfolders.ts +22 -0
  15. package/dist/assets/hydrogen/routes/locale-check.ts +16 -0
  16. package/dist/assets/hydrogen/starter/.cursor/rules/hydrogen-react-router.mdc +52 -0
  17. package/dist/assets/hydrogen/starter/.graphqlrc.ts +29 -0
  18. package/dist/assets/hydrogen/starter/AGENTS.md +5 -0
  19. package/dist/assets/hydrogen/starter/CHANGELOG.md +2839 -0
  20. package/dist/assets/hydrogen/starter/CLAUDE.md +1 -0
  21. package/dist/assets/hydrogen/starter/README.md +45 -0
  22. package/dist/assets/hydrogen/starter/app/assets/favicon.svg +28 -0
  23. package/dist/assets/hydrogen/starter/app/components/AddToCartButton.tsx +37 -0
  24. package/dist/assets/hydrogen/starter/app/components/Aside.tsx +101 -0
  25. package/dist/assets/hydrogen/starter/app/components/CartLineItem.tsx +197 -0
  26. package/dist/assets/hydrogen/starter/app/components/CartMain.tsx +109 -0
  27. package/dist/assets/hydrogen/starter/app/components/CartSummary.tsx +300 -0
  28. package/dist/assets/hydrogen/starter/app/components/Footer.tsx +129 -0
  29. package/dist/assets/hydrogen/starter/app/components/Header.tsx +231 -0
  30. package/dist/assets/hydrogen/starter/app/components/MockShopNotice.tsx +20 -0
  31. package/dist/assets/hydrogen/starter/app/components/PageLayout.tsx +174 -0
  32. package/dist/assets/hydrogen/starter/app/components/PaginatedResourceSection.tsx +61 -0
  33. package/dist/assets/hydrogen/starter/app/components/ProductForm.tsx +150 -0
  34. package/dist/assets/hydrogen/starter/app/components/ProductImage.tsx +23 -0
  35. package/dist/assets/hydrogen/starter/app/components/ProductItem.tsx +44 -0
  36. package/dist/assets/hydrogen/starter/app/components/ProductPrice.tsx +27 -0
  37. package/dist/assets/hydrogen/starter/app/components/SearchForm.tsx +68 -0
  38. package/dist/assets/hydrogen/starter/app/components/SearchFormPredictive.tsx +76 -0
  39. package/dist/assets/hydrogen/starter/app/components/SearchResults.tsx +161 -0
  40. package/dist/assets/hydrogen/starter/app/components/SearchResultsPredictive.tsx +304 -0
  41. package/dist/assets/hydrogen/starter/app/entry.client.tsx +21 -0
  42. package/dist/assets/hydrogen/starter/app/entry.server.tsx +53 -0
  43. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerAddressMutations.ts +64 -0
  44. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerDetailsQuery.ts +40 -0
  45. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrderQuery.ts +90 -0
  46. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrdersQuery.ts +63 -0
  47. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerUpdateMutation.ts +25 -0
  48. package/dist/assets/hydrogen/starter/app/lib/context.ts +65 -0
  49. package/dist/assets/hydrogen/starter/app/lib/fragments.ts +242 -0
  50. package/dist/assets/hydrogen/starter/app/lib/orderFilters.ts +90 -0
  51. package/dist/assets/hydrogen/starter/app/lib/redirect.ts +23 -0
  52. package/dist/assets/hydrogen/starter/app/lib/search.ts +79 -0
  53. package/dist/assets/hydrogen/starter/app/lib/session.ts +72 -0
  54. package/dist/assets/hydrogen/starter/app/lib/variants.ts +46 -0
  55. package/dist/assets/hydrogen/starter/app/root.tsx +209 -0
  56. package/dist/assets/hydrogen/starter/app/routes/$.tsx +11 -0
  57. package/dist/assets/hydrogen/starter/app/routes/[robots.txt].tsx +78 -0
  58. package/dist/assets/hydrogen/starter/app/routes/[sitemap.xml].tsx +16 -0
  59. package/dist/assets/hydrogen/starter/app/routes/_index.tsx +177 -0
  60. package/dist/assets/hydrogen/starter/app/routes/account.$.tsx +9 -0
  61. package/dist/assets/hydrogen/starter/app/routes/account._index.tsx +5 -0
  62. package/dist/assets/hydrogen/starter/app/routes/account.addresses.tsx +516 -0
  63. package/dist/assets/hydrogen/starter/app/routes/account.orders.$id.tsx +222 -0
  64. package/dist/assets/hydrogen/starter/app/routes/account.orders._index.tsx +222 -0
  65. package/dist/assets/hydrogen/starter/app/routes/account.profile.tsx +133 -0
  66. package/dist/assets/hydrogen/starter/app/routes/account.tsx +97 -0
  67. package/dist/assets/hydrogen/starter/app/routes/account_.authorize.tsx +5 -0
  68. package/dist/assets/hydrogen/starter/app/routes/account_.login.tsx +17 -0
  69. package/dist/assets/hydrogen/starter/app/routes/account_.logout.tsx +11 -0
  70. package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle.$articleHandle.tsx +129 -0
  71. package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle._index.tsx +175 -0
  72. package/dist/assets/hydrogen/starter/app/routes/blogs._index.tsx +109 -0
  73. package/dist/assets/hydrogen/starter/app/routes/cart.$lines.tsx +70 -0
  74. package/dist/assets/hydrogen/starter/app/routes/cart.tsx +113 -0
  75. package/dist/assets/hydrogen/starter/app/routes/collections.$handle.tsx +161 -0
  76. package/dist/assets/hydrogen/starter/app/routes/collections._index.tsx +133 -0
  77. package/dist/assets/hydrogen/starter/app/routes/collections.all.tsx +122 -0
  78. package/dist/assets/hydrogen/starter/app/routes/discount.$code.tsx +48 -0
  79. package/dist/assets/hydrogen/starter/app/routes/pages.$handle.tsx +88 -0
  80. package/dist/assets/hydrogen/starter/app/routes/policies.$handle.tsx +93 -0
  81. package/dist/assets/hydrogen/starter/app/routes/policies._index.tsx +69 -0
  82. package/dist/assets/hydrogen/starter/app/routes/products.$handle.tsx +232 -0
  83. package/dist/assets/hydrogen/starter/app/routes/search.tsx +426 -0
  84. package/dist/assets/hydrogen/starter/app/routes/sitemap.$type.$page[.xml].tsx +23 -0
  85. package/dist/assets/hydrogen/starter/app/routes.ts +9 -0
  86. package/dist/assets/hydrogen/starter/app/styles/app.css +645 -0
  87. package/dist/assets/hydrogen/starter/app/styles/reset.css +139 -0
  88. package/dist/assets/hydrogen/starter/customer-accountapi.generated.d.ts +543 -0
  89. package/dist/assets/hydrogen/starter/env.d.ts +7 -0
  90. package/dist/assets/hydrogen/starter/eslint.config.js +247 -0
  91. package/dist/assets/hydrogen/starter/guides/predictiveSearch/predictiveSearch.jpg +0 -0
  92. package/dist/assets/hydrogen/starter/guides/predictiveSearch/predictiveSearch.md +394 -0
  93. package/dist/assets/hydrogen/starter/guides/search/search.jpg +0 -0
  94. package/dist/assets/hydrogen/starter/guides/search/search.md +335 -0
  95. package/dist/assets/hydrogen/starter/package.json +62 -0
  96. package/dist/assets/hydrogen/starter/public/.gitkeep +0 -0
  97. package/dist/assets/hydrogen/starter/react-router.config.ts +13 -0
  98. package/dist/assets/hydrogen/starter/server.ts +59 -0
  99. package/dist/assets/hydrogen/starter/storefrontapi.generated.d.ts +1342 -0
  100. package/dist/assets/hydrogen/starter/tsconfig.json +43 -0
  101. package/dist/assets/hydrogen/starter/vite.config.ts +44 -0
  102. package/dist/assets/hydrogen/tailwind/package.json +11 -0
  103. package/dist/assets/hydrogen/tailwind/tailwind.css +6 -0
  104. package/dist/assets/hydrogen/vanilla-extract/package.json +8 -0
  105. package/dist/assets/hydrogen/virtual-routes/assets/debug-network.css +609 -0
  106. package/dist/assets/hydrogen/virtual-routes/assets/favicon-dark.svg +20 -0
  107. package/dist/assets/hydrogen/virtual-routes/assets/favicon.svg +28 -0
  108. package/dist/assets/hydrogen/virtual-routes/assets/inter-variable-font.woff2 +0 -0
  109. package/dist/assets/hydrogen/virtual-routes/assets/jetbrainsmono-variable-font.woff2 +0 -0
  110. package/dist/assets/hydrogen/virtual-routes/assets/styles.css +249 -0
  111. package/dist/assets/hydrogen/virtual-routes/components/FlameChartWrapper.jsx +123 -0
  112. package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseBW.jsx +32 -0
  113. package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseColor.jsx +47 -0
  114. package/dist/assets/hydrogen/virtual-routes/components/IconBanner.jsx +292 -0
  115. package/dist/assets/hydrogen/virtual-routes/components/IconClose.jsx +38 -0
  116. package/dist/assets/hydrogen/virtual-routes/components/IconDiscard.jsx +44 -0
  117. package/dist/assets/hydrogen/virtual-routes/components/IconError.jsx +61 -0
  118. package/dist/assets/hydrogen/virtual-routes/components/IconGithub.jsx +23 -0
  119. package/dist/assets/hydrogen/virtual-routes/components/IconTwitter.jsx +21 -0
  120. package/dist/assets/hydrogen/virtual-routes/components/Layout.jsx +7 -0
  121. package/dist/assets/hydrogen/virtual-routes/components/RequestDetails.jsx +171 -0
  122. package/dist/assets/hydrogen/virtual-routes/components/RequestTable.jsx +91 -0
  123. package/dist/assets/hydrogen/virtual-routes/components/RequestWaterfall.jsx +151 -0
  124. package/dist/assets/hydrogen/virtual-routes/layout.jsx +33 -0
  125. package/dist/assets/hydrogen/virtual-routes/lib/useDebugNetworkServer.jsx +178 -0
  126. package/dist/assets/hydrogen/virtual-routes/routes/[.]well-known.appspecific.com[.]chrome[.]devtools[.]json.jsx +37 -0
  127. package/dist/assets/hydrogen/virtual-routes/routes/graphiql.jsx +5 -0
  128. package/dist/assets/hydrogen/virtual-routes/routes/index.jsx +265 -0
  129. package/dist/assets/hydrogen/virtual-routes/routes/subrequest-profiler.jsx +243 -0
  130. package/dist/assets/hydrogen/virtual-routes/virtual-root-with-layout.jsx +63 -0
  131. package/dist/assets/hydrogen/virtual-routes/virtual-root.jsx +67 -0
  132. package/dist/assets/hydrogen/vite/package.json +13 -0
  133. package/dist/assets/hydrogen/vite/vite.config.js +43 -0
  134. package/dist/assets/speedscope/SourceCodePro-Regular.ttf.f546cbe0.woff2 +0 -0
  135. package/dist/assets/speedscope/demangle-cpp.1768f4cc.js +4 -0
  136. package/dist/assets/speedscope/favicon-16x16.f74b3187.png +0 -0
  137. package/dist/assets/speedscope/favicon-32x32.bc503437.png +0 -0
  138. package/dist/assets/speedscope/file-format-schema.json +324 -0
  139. package/dist/assets/speedscope/import.bcbb2033.js +123 -0
  140. package/dist/assets/speedscope/index.html +2 -0
  141. package/dist/assets/speedscope/perf-vertx-stacks-01-collapsed-all.2681da68.txt +199 -0
  142. package/dist/assets/speedscope/release.txt +3 -0
  143. package/dist/assets/speedscope/reset.8c46b7a1.css +2 -0
  144. package/dist/assets/speedscope/source-code-pro.52b1676f.css +2 -0
  145. package/dist/assets/speedscope/source-code-pro.LICENSE.md +93 -0
  146. package/dist/assets/speedscope/source-map.438fa06b.js +24 -0
  147. package/dist/assets/speedscope/speedscope.6f107512.js +193 -0
  148. package/dist/babel-I2RLWM7N.js +15 -0
  149. package/dist/bootstrap.d.ts +5 -0
  150. package/dist/bootstrap.js +3 -0
  151. package/dist/chokidar-5RWEYTNQ.js +1 -0
  152. package/dist/chunk-2AK44UYM.js +1 -0
  153. package/dist/chunk-2CIZE537.js +3 -0
  154. package/dist/chunk-2EAFYCCS.js +16 -0
  155. package/dist/chunk-2KD4LHRT.js +5 -0
  156. package/dist/chunk-2KGPH7YG.js +2 -0
  157. package/dist/chunk-2O224ZPO.js +3 -0
  158. package/dist/chunk-2XDUJQQN.js +12 -0
  159. package/dist/chunk-36ROOKQB.js +1 -0
  160. package/dist/chunk-3DCN3N23.js +4 -0
  161. package/dist/chunk-3JXPOOFV.js +836 -0
  162. package/dist/chunk-4QBJ5JBX.js +18 -0
  163. package/dist/chunk-4ZNV5YSL.js +1 -0
  164. package/dist/chunk-5HBIIYSK.js +1 -0
  165. package/dist/chunk-5L63PRJL.js +2 -0
  166. package/dist/chunk-5N6HNQQ5.js +8 -0
  167. package/dist/chunk-5SEEDOQ5.js +1 -0
  168. package/dist/chunk-636CTEW7.js +1 -0
  169. package/dist/chunk-67Z34HN5.js +5 -0
  170. package/dist/chunk-6BDAJ6UD.js +5 -0
  171. package/dist/chunk-6CXG3XLP.js +1 -0
  172. package/dist/chunk-6MWWJZFN.js +19 -0
  173. package/dist/chunk-6QDOCBD4.js +6 -0
  174. package/dist/chunk-6RQOEPEC.js +1 -0
  175. package/dist/chunk-72ZY3KTF.js +1 -0
  176. package/dist/chunk-742XXXGL.js +6 -0
  177. package/dist/chunk-773TIA5M.js +2 -0
  178. package/dist/chunk-7HFHL5SO.js +2 -0
  179. package/dist/chunk-7ISJRIPT.js +1 -0
  180. package/dist/chunk-7LWUHQIF.js +1 -0
  181. package/dist/chunk-7T6M7FAC.js +103 -0
  182. package/dist/chunk-7UNQOKZW.js +1 -0
  183. package/dist/chunk-7Y7AZRL3.js +10 -0
  184. package/dist/chunk-A6BMJISP.js +8 -0
  185. package/dist/chunk-AAK376RT.js +2 -0
  186. package/dist/chunk-AEUCDGTB.js +294 -0
  187. package/dist/chunk-AWUX36VG.js +1 -0
  188. package/dist/chunk-B4OMIONW.js +5 -0
  189. package/dist/chunk-BOAGJ6P5.js +1 -0
  190. package/dist/chunk-BWJIZYAG.js +1 -0
  191. package/dist/chunk-BZ73NV3L.js +2 -0
  192. package/dist/chunk-C3RUVXG2.js +6 -0
  193. package/dist/chunk-C4YLE3NS.js +64 -0
  194. package/dist/chunk-CEYIZC3M.js +2 -0
  195. package/dist/chunk-CIWKN4HF.js +7 -0
  196. package/dist/chunk-CRALWNNO.js +1 -0
  197. package/dist/chunk-CTNBSUVU.js +83 -0
  198. package/dist/chunk-CULTZLC4.js +1 -0
  199. package/dist/chunk-CX5CC6P5.js +1 -0
  200. package/dist/chunk-CX75OKZK.js +1 -0
  201. package/dist/chunk-DASVZTAX.js +359 -0
  202. package/dist/chunk-DPNZWBT5.js +1 -0
  203. package/dist/chunk-DX3JLOUA.js +4 -0
  204. package/dist/chunk-E55KS3GZ.js +1 -0
  205. package/dist/chunk-E5FXOLQO.js +17 -0
  206. package/dist/chunk-E6N4PZZR.js +7 -0
  207. package/dist/chunk-EB574SY6.js +6 -0
  208. package/dist/chunk-ET2CGROE.js +451 -0
  209. package/dist/chunk-EX5GVHGE.js +1 -0
  210. package/dist/chunk-F3NYCSXT.js +273 -0
  211. package/dist/chunk-F3TMLDLC.js +1 -0
  212. package/dist/chunk-F6X6OXXB.js +3 -0
  213. package/dist/chunk-FDBHQLFK.js +1 -0
  214. package/dist/chunk-FDYW3UQC.js +1 -0
  215. package/dist/chunk-FEDVVYK2.js +1 -0
  216. package/dist/chunk-FFSDGRAN.js +1 -0
  217. package/dist/chunk-FJ6F4XRV.js +28 -0
  218. package/dist/chunk-FKIVKNOV.js +2 -0
  219. package/dist/chunk-FOREMLFZ.js +1 -0
  220. package/dist/chunk-FUYDGK33.js +2 -0
  221. package/dist/chunk-FX3L344E.js +1 -0
  222. package/dist/chunk-G5XIGN5D.js +593 -0
  223. package/dist/chunk-GAYKYEIM.js +1 -0
  224. package/dist/chunk-GB3YC4TI.js +1 -0
  225. package/dist/chunk-GCN4O7HM.js +1 -0
  226. package/dist/chunk-GCY7LPEF.js +6 -0
  227. package/dist/chunk-GNBRCK7L.js +3 -0
  228. package/dist/chunk-GRPKF5ZB.js +1 -0
  229. package/dist/chunk-GRSF7456.js +1 -0
  230. package/dist/chunk-H2TQ4ODI.js +1 -0
  231. package/dist/chunk-H6XEESUN.js +4 -0
  232. package/dist/chunk-HB347DXT.js +2 -0
  233. package/dist/chunk-HFSCXTJQ.js +97 -0
  234. package/dist/chunk-HHN6KZXX.js +1 -0
  235. package/dist/chunk-HP64ZTEJ.js +6 -0
  236. package/dist/chunk-I5A6BPCP.js +1 -0
  237. package/dist/chunk-IARCMH7G.js +5 -0
  238. package/dist/chunk-IBI5UCJO.js +1 -0
  239. package/dist/chunk-IKUSLRGD.js +1 -0
  240. package/dist/chunk-IT4HYLTY.js +1 -0
  241. package/dist/chunk-IWOTLFOY.js +32 -0
  242. package/dist/chunk-J3JPJCWP.js +1 -0
  243. package/dist/chunk-J4T73EAS.js +8 -0
  244. package/dist/chunk-JD5P5RAJ.js +1 -0
  245. package/dist/chunk-JG4HH54Q.js +1 -0
  246. package/dist/chunk-JIYSCWCG.js +1 -0
  247. package/dist/chunk-JJZNUFPD.js +44 -0
  248. package/dist/chunk-JLGA3B7P.js +1 -0
  249. package/dist/chunk-JWRK5KLD.js +560 -0
  250. package/dist/chunk-JX7FYWPO.js +1 -0
  251. package/dist/chunk-K42WBNJQ.js +18 -0
  252. package/dist/chunk-KDU7VW3L.js +11 -0
  253. package/dist/chunk-KWVOJWO7.js +1 -0
  254. package/dist/chunk-LANUJ7LX.js +16 -0
  255. package/dist/chunk-LD6ZCTZ3.js +9 -0
  256. package/dist/chunk-LFOBYEWG.js +1 -0
  257. package/dist/chunk-LQ7ENG4V.js +1 -0
  258. package/dist/chunk-LUKQ5HLC.js +1 -0
  259. package/dist/chunk-M2XHIN57.js +4 -0
  260. package/dist/chunk-MNOQAXJW.js +3 -0
  261. package/dist/chunk-MPW2YJWU.js +31 -0
  262. package/dist/chunk-MYQUYU4U.js +2 -0
  263. package/dist/chunk-N65F7ET2.js +1 -0
  264. package/dist/chunk-N6RBRPGW.js +7 -0
  265. package/dist/chunk-N75VOJHO.js +15 -0
  266. package/dist/chunk-NBFMP5XQ.js +1 -0
  267. package/dist/chunk-NE3ZFSMS.js +1 -0
  268. package/dist/chunk-NGLMZYS7.js +278 -0
  269. package/dist/chunk-NHAUJWEG.js +1 -0
  270. package/dist/chunk-NILETICC.js +11 -0
  271. package/dist/chunk-NNZXKFOS.js +7 -0
  272. package/dist/chunk-NQK2VCDA.js +1 -0
  273. package/dist/chunk-NROVZETL.js +1 -0
  274. package/dist/chunk-NW6NUGN7.js +1 -0
  275. package/dist/chunk-O7DZXO3O.js +15 -0
  276. package/dist/chunk-OBYQSIYU.js +25 -0
  277. package/dist/chunk-OEG3N5PG.js +15 -0
  278. package/dist/chunk-OGBZTY2G.js +5 -0
  279. package/dist/chunk-OMHR423H.js +1 -0
  280. package/dist/chunk-OV6SRRXR.js +5 -0
  281. package/dist/chunk-OVV5YGKN.js +1 -0
  282. package/dist/chunk-OZL5FTT7.js +1 -0
  283. package/dist/chunk-OZMQ2EJB.js +1 -0
  284. package/dist/chunk-P2OI2P2M.js +1 -0
  285. package/dist/chunk-P57P7UAN.js +3 -0
  286. package/dist/chunk-PATTG7YZ.js +1 -0
  287. package/dist/chunk-PG5YNPJB.js +26 -0
  288. package/dist/chunk-PP4L2JJ6.js +3 -0
  289. package/dist/chunk-Q5JX23QU.js +1 -0
  290. package/dist/chunk-Q5KVMLBK.js +4 -0
  291. package/dist/chunk-Q5LIJGT7.js +12 -0
  292. package/dist/chunk-Q6ADIMJM.js +6 -0
  293. package/dist/chunk-Q7BOSHWX.js +7 -0
  294. package/dist/chunk-QERQARMC.js +1 -0
  295. package/dist/chunk-QOV43E26.js +1 -0
  296. package/dist/chunk-QTFUYKMF.js +1 -0
  297. package/dist/chunk-QTJCCOAG.js +20 -0
  298. package/dist/chunk-R6ICQT2D.js +1 -0
  299. package/dist/chunk-R7T3LYJL.js +3 -0
  300. package/dist/chunk-RJ5VF3QY.js +2 -0
  301. package/dist/chunk-RXQJCJDV.js +1 -0
  302. package/dist/chunk-S2TLBBSS.js +5 -0
  303. package/dist/chunk-S5FOQY35.js +1 -0
  304. package/dist/chunk-SYLHT42O.js +1 -0
  305. package/dist/chunk-T4AA6TSF.js +15 -0
  306. package/dist/chunk-T4QWK5GG.js +10 -0
  307. package/dist/chunk-T7KHS6RF.js +1 -0
  308. package/dist/chunk-T7PJDT5O.js +6 -0
  309. package/dist/chunk-TEY4LRY7.js +1 -0
  310. package/dist/chunk-TFBRVLDN.js +1 -0
  311. package/dist/chunk-TOLPNBZK.js +4 -0
  312. package/dist/chunk-TR4OWSEX.js +77 -0
  313. package/dist/chunk-TU47HMTL.js +1 -0
  314. package/dist/chunk-TUVDJ3PG.js +2 -0
  315. package/dist/chunk-TYMYIUIQ.js +1 -0
  316. package/dist/chunk-U2DWBZK2.js +1 -0
  317. package/dist/chunk-U53OLUOE.js +3 -0
  318. package/dist/chunk-UAETNFN4.js +1 -0
  319. package/dist/chunk-UAFEFKAQ.js +5 -0
  320. package/dist/chunk-ULRJDKWQ.js +1 -0
  321. package/dist/chunk-UOHNRH6E.js +7 -0
  322. package/dist/chunk-UZARYOLN.js +1 -0
  323. package/dist/chunk-VASGXHYA.js +1 -0
  324. package/dist/chunk-VD4XJ6BX.js +1 -0
  325. package/dist/chunk-VE35YELD.js +1 -0
  326. package/dist/chunk-VFM2KQRM.js +19 -0
  327. package/dist/chunk-VJEKDBGZ.js +1 -0
  328. package/dist/chunk-VKWPEFWQ.js +1 -0
  329. package/dist/chunk-VSDRNYA5.js +1 -0
  330. package/dist/chunk-VUMUCNI7.js +1 -0
  331. package/dist/chunk-VVZSYHDG.js +4 -0
  332. package/dist/chunk-VXEYO3ZP.js +1 -0
  333. package/dist/chunk-VYDSOAV4.js +9 -0
  334. package/dist/chunk-W6ST525S.js +99 -0
  335. package/dist/chunk-WBYAGS6B.js +6 -0
  336. package/dist/chunk-WGAFCKGD.js +1 -0
  337. package/dist/chunk-WYBTC356.js +1 -0
  338. package/dist/chunk-XF2KTEID.js +1 -0
  339. package/dist/chunk-XH5YGJQR.js +1 -0
  340. package/dist/chunk-XHKWITLA.js +1705 -0
  341. package/dist/chunk-XOCB4KNX.js +2 -0
  342. package/dist/chunk-XUUAKGEX.js +1 -0
  343. package/dist/chunk-XUYVJEZG.js +3 -0
  344. package/dist/chunk-Y47C3LSX.js +3 -0
  345. package/dist/chunk-Y5PRPHLQ.js +6 -0
  346. package/dist/chunk-YD2VQEN5.js +1 -0
  347. package/dist/chunk-YESGYUEL.js +1 -0
  348. package/dist/chunk-YEVGLC5X.js +1 -0
  349. package/dist/chunk-YFINLODF.js +375 -0
  350. package/dist/chunk-YKL3BLWC.js +46 -0
  351. package/dist/chunk-YLQ3LNNY.js +99 -0
  352. package/dist/chunk-YLXPYXQP.js +1 -0
  353. package/dist/chunk-YNDIZCD2.js +7 -0
  354. package/dist/chunk-YPWHD3NL.js +1 -0
  355. package/dist/chunk-YSAFHVV6.js +8 -0
  356. package/dist/chunk-YY6TFARF.js +1 -0
  357. package/dist/chunk-YZMY2CTU.js +10 -0
  358. package/dist/chunk-Z4AFEO36.js +1 -0
  359. package/dist/chunk-Z5WPP6ME.js +1 -0
  360. package/dist/chunk-Z65E4UAP.js +1 -0
  361. package/dist/chunk-ZDF5N422.js +1 -0
  362. package/dist/chunk-ZDRIQC7O.js +1 -0
  363. package/dist/chunk-ZH44BDUR.js +5 -0
  364. package/dist/chunk-ZI7LK3LW.js +11 -0
  365. package/dist/chunk-ZL5LU4U2.js +32 -0
  366. package/dist/chunk-ZYX7UHCQ.js +1 -0
  367. package/dist/chunk-ZZRFG6ME.js +317 -0
  368. package/dist/cli/commands/app/app-logs/sources.js +1 -0
  369. package/dist/cli/commands/app/build.js +1 -0
  370. package/dist/cli/commands/app/bulk/cancel.js +1 -0
  371. package/dist/cli/commands/app/bulk/execute.js +1 -0
  372. package/dist/cli/commands/app/bulk/status.js +1 -0
  373. package/dist/cli/commands/app/config/link.js +1 -0
  374. package/dist/cli/commands/app/config/pull.js +1 -0
  375. package/dist/cli/commands/app/config/use.js +1 -0
  376. package/dist/cli/commands/app/config/validate.js +1 -0
  377. package/dist/cli/commands/app/demo/watcher.js +1 -0
  378. package/dist/cli/commands/app/deploy.js +1 -0
  379. package/dist/cli/commands/app/dev/clean.js +1 -0
  380. package/dist/cli/commands/app/dev.js +1 -0
  381. package/dist/cli/commands/app/doctor/instructions.js +1 -0
  382. package/dist/cli/commands/app/doctor.js +1 -0
  383. package/dist/cli/commands/app/env/pull.js +1 -0
  384. package/dist/cli/commands/app/env/show.js +1 -0
  385. package/dist/cli/commands/app/execute.js +1 -0
  386. package/dist/cli/commands/app/function/build.js +1 -0
  387. package/dist/cli/commands/app/function/info.js +1 -0
  388. package/dist/cli/commands/app/function/replay.js +1 -0
  389. package/dist/cli/commands/app/function/run.js +1 -0
  390. package/dist/cli/commands/app/function/schema.js +1 -0
  391. package/dist/cli/commands/app/function/typegen.js +1 -0
  392. package/dist/cli/commands/app/generate/extension.js +1 -0
  393. package/dist/cli/commands/app/graphiql.js +1 -0
  394. package/dist/cli/commands/app/import-custom-data-definitions.js +1 -0
  395. package/dist/cli/commands/app/import-extensions.js +1 -0
  396. package/dist/cli/commands/app/info.js +1 -0
  397. package/dist/cli/commands/app/init.js +1 -0
  398. package/dist/cli/commands/app/logs.js +1 -0
  399. package/dist/cli/commands/app/release.js +1 -0
  400. package/dist/cli/commands/app/subscription-migrations/cancel.js +1 -0
  401. package/dist/cli/commands/app/subscription-migrations/list.js +1 -0
  402. package/dist/cli/commands/app/subscription-migrations/schedule.js +1 -0
  403. package/dist/cli/commands/app/subscription-migrations/status.js +1 -0
  404. package/dist/cli/commands/app/subscription-migrations/unschedule.js +1 -0
  405. package/dist/cli/commands/app/versions/list.js +1 -0
  406. package/dist/cli/commands/app/webhook/trigger.js +1 -0
  407. package/dist/cli/commands/auth/login.d.ts +8 -0
  408. package/dist/cli/commands/auth/login.js +1 -0
  409. package/dist/cli/commands/auth/logout.d.ts +5 -0
  410. package/dist/cli/commands/auth/logout.js +1 -0
  411. package/dist/cli/commands/cache/clear.d.ts +6 -0
  412. package/dist/cli/commands/cache/clear.js +1 -0
  413. package/dist/cli/commands/config/autoupgrade/constants.d.ts +4 -0
  414. package/dist/cli/commands/config/autoupgrade/constants.js +1 -0
  415. package/dist/cli/commands/config/autoupgrade/off.d.ts +7 -0
  416. package/dist/cli/commands/config/autoupgrade/off.js +1 -0
  417. package/dist/cli/commands/config/autoupgrade/on.d.ts +7 -0
  418. package/dist/cli/commands/config/autoupgrade/on.js +1 -0
  419. package/dist/cli/commands/config/autoupgrade/status.d.ts +7 -0
  420. package/dist/cli/commands/config/autoupgrade/status.js +1 -0
  421. package/dist/cli/commands/debug/command-flags.d.ts +9 -0
  422. package/dist/cli/commands/debug/command-flags.js +1 -0
  423. package/dist/cli/commands/doc/fetch.d.ts +12 -0
  424. package/dist/cli/commands/doc/fetch.js +1 -0
  425. package/dist/cli/commands/doc/search.d.ts +13 -0
  426. package/dist/cli/commands/doc/search.js +1 -0
  427. package/dist/cli/commands/docs/generate.d.ts +21 -0
  428. package/dist/cli/commands/docs/generate.js +1 -0
  429. package/dist/cli/commands/doctor-release/doctor-release.d.ts +6 -0
  430. package/dist/cli/commands/doctor-release/doctor-release.js +1 -0
  431. package/dist/cli/commands/doctor-release/theme/index.d.ts +14 -0
  432. package/dist/cli/commands/doctor-release/theme/index.js +1 -0
  433. package/dist/cli/commands/help.d.ts +13 -0
  434. package/dist/cli/commands/help.js +1 -0
  435. package/dist/cli/commands/kitchen-sink/async.d.ts +11 -0
  436. package/dist/cli/commands/kitchen-sink/async.js +1 -0
  437. package/dist/cli/commands/kitchen-sink/index.d.ts +12 -0
  438. package/dist/cli/commands/kitchen-sink/index.js +1 -0
  439. package/dist/cli/commands/kitchen-sink/prompts.d.ts +11 -0
  440. package/dist/cli/commands/kitchen-sink/prompts.js +1 -0
  441. package/dist/cli/commands/kitchen-sink/static.d.ts +11 -0
  442. package/dist/cli/commands/kitchen-sink/static.js +1 -0
  443. package/dist/cli/commands/notifications/generate.d.ts +6 -0
  444. package/dist/cli/commands/notifications/generate.js +1 -0
  445. package/dist/cli/commands/notifications/list.d.ts +9 -0
  446. package/dist/cli/commands/notifications/list.js +1 -0
  447. package/dist/cli/commands/organization/list.js +1 -0
  448. package/dist/cli/commands/search.d.ts +14 -0
  449. package/dist/cli/commands/search.js +1 -0
  450. package/dist/cli/commands/send-analytics.d.ts +5 -0
  451. package/dist/cli/commands/send-analytics.js +1 -0
  452. package/dist/cli/commands/theme/check.js +1 -0
  453. package/dist/cli/commands/theme/console.js +1 -0
  454. package/dist/cli/commands/theme/delete.js +1 -0
  455. package/dist/cli/commands/theme/dev.js +1 -0
  456. package/dist/cli/commands/theme/duplicate.js +1 -0
  457. package/dist/cli/commands/theme/info.js +1 -0
  458. package/dist/cli/commands/theme/init.js +1 -0
  459. package/dist/cli/commands/theme/language-server.js +1 -0
  460. package/dist/cli/commands/theme/list.js +1 -0
  461. package/dist/cli/commands/theme/metafields/pull.js +1 -0
  462. package/dist/cli/commands/theme/open.js +1 -0
  463. package/dist/cli/commands/theme/package.js +1 -0
  464. package/dist/cli/commands/theme/preview.js +1 -0
  465. package/dist/cli/commands/theme/profile.js +1 -0
  466. package/dist/cli/commands/theme/publish.js +1 -0
  467. package/dist/cli/commands/theme/pull.js +1 -0
  468. package/dist/cli/commands/theme/push.js +1 -0
  469. package/dist/cli/commands/theme/rename.js +1 -0
  470. package/dist/cli/commands/theme/share.js +1 -0
  471. package/dist/cli/commands/upgrade.d.ts +7 -0
  472. package/dist/cli/commands/upgrade.js +1 -0
  473. package/dist/cli/commands/version.d.ts +5 -0
  474. package/dist/cli/commands/version.js +1 -0
  475. package/dist/cli/help.d.ts +38 -0
  476. package/dist/cli/help.js +2 -0
  477. package/dist/cli/services/commands/doc/fetch.d.ts +1 -0
  478. package/dist/cli/services/commands/doc/fetch.js +45 -0
  479. package/dist/cli/services/commands/doc/search.d.ts +1 -0
  480. package/dist/cli/services/commands/doc/search.js +47 -0
  481. package/dist/cli/services/commands/notifications.d.ts +2 -0
  482. package/dist/cli/services/commands/notifications.js +106 -0
  483. package/dist/cli/services/commands/search.d.ts +1 -0
  484. package/dist/cli/services/commands/search.js +7 -0
  485. package/dist/cli/services/commands/version.d.ts +1 -0
  486. package/dist/cli/services/commands/version.js +6 -0
  487. package/dist/cli/services/doctor-release/context.d.ts +16 -0
  488. package/dist/cli/services/doctor-release/context.js +11 -0
  489. package/dist/cli/services/doctor-release/theme/runner.d.ts +7 -0
  490. package/dist/cli/services/doctor-release/theme/runner.js +37 -0
  491. package/dist/cli/services/doctor-release/theme/tests/init.d.ts +11 -0
  492. package/dist/cli/services/doctor-release/theme/tests/init.js +34 -0
  493. package/dist/cli/services/doctor-release/theme/tests/push.d.ts +10 -0
  494. package/dist/cli/services/doctor-release/theme/tests/push.js +44 -0
  495. package/dist/cli/services/kitchen-sink/async.d.ts +1 -0
  496. package/dist/cli/services/kitchen-sink/async.js +65 -0
  497. package/dist/cli/services/kitchen-sink/prompts.d.ts +1 -0
  498. package/dist/cli/services/kitchen-sink/prompts.js +168 -0
  499. package/dist/cli/services/kitchen-sink/static.d.ts +1 -0
  500. package/dist/cli/services/kitchen-sink/static.js +201 -0
  501. package/dist/command-registry.d.ts +8 -0
  502. package/dist/command-registry.js +1 -0
  503. package/dist/conf-store-ASDCTDQ4.js +1 -0
  504. package/dist/configs/all.yml +280 -0
  505. package/dist/configs/nothing.yml +3 -0
  506. package/dist/configs/recommended.yml +258 -0
  507. package/dist/configs/theme-app-extension.yml +24 -0
  508. package/dist/custom-oclif-loader-BWAMUFQ4.js +1 -0
  509. package/dist/data/app_block_entry.json +13 -0
  510. package/dist/data/default_setting_values.json +24 -0
  511. package/dist/data/filters.json +6177 -0
  512. package/dist/data/latest.json +2 -0
  513. package/dist/data/local_block_entry.json +25 -0
  514. package/dist/data/manifest_theme.json +19 -0
  515. package/dist/data/manifest_theme_app_extension.json +10 -0
  516. package/dist/data/objects.json +20621 -0
  517. package/dist/data/preset.json +72 -0
  518. package/dist/data/preset_blocks.json +91 -0
  519. package/dist/data/section.json +208 -0
  520. package/dist/data/setting.json +1538 -0
  521. package/dist/data/settings.json +10 -0
  522. package/dist/data/shopify_system_translations.json +2766 -0
  523. package/dist/data/tags.json +1276 -0
  524. package/dist/data/targetted_block_entry.json +15 -0
  525. package/dist/data/theme_block.json +91 -0
  526. package/dist/data/theme_block_entry.json +14 -0
  527. package/dist/data/theme_settings.json +83 -0
  528. package/dist/data/translations.json +63 -0
  529. package/dist/deprecations-VBQV7Q4O.js +1 -0
  530. package/dist/devtools-37DE4MUR.js +1 -0
  531. package/dist/devtools-WAWU5KQL.js +1 -0
  532. package/dist/dist-FZLOAKU7.js +1 -0
  533. package/dist/dist-HTY6UHG5.js +1 -0
  534. package/dist/environments-HSTNEQRG.js +1 -0
  535. package/dist/error-2LZYKRMA.js +1 -0
  536. package/dist/error-handler-PIGEJ7BT.js +1 -0
  537. package/dist/estree-JV5M77BA.js +44 -0
  538. package/dist/flow-N4JYPYMQ.js +20 -0
  539. package/dist/fs-BJHNJDDK.js +1 -0
  540. package/dist/glimmer-JEV3BXHR.js +37 -0
  541. package/dist/graphql-DTF6MHYF.js +28 -0
  542. package/dist/hooks/did-you-mean.d.ts +1 -0
  543. package/dist/hooks/did-you-mean.js +1 -0
  544. package/dist/hooks/hydrogen-init.d.ts +7 -0
  545. package/dist/hooks/hydrogen-init.js +1 -0
  546. package/dist/hooks/plugin-plugins.d.ts +1 -0
  547. package/dist/hooks/plugin-plugins.js +1 -0
  548. package/dist/hooks/postrun.d.ts +1 -0
  549. package/dist/hooks/postrun.js +1 -0
  550. package/dist/hooks/prerun.d.ts +1 -0
  551. package/dist/hooks/prerun.js +2 -0
  552. package/dist/hooks/public-metadata.d.ts +1 -0
  553. package/dist/hooks/public-metadata.js +1 -0
  554. package/dist/hooks/sensitive-metadata.d.ts +1 -0
  555. package/dist/hooks/sensitive-metadata.js +1 -0
  556. package/dist/hooks/tunnel-provider.d.ts +1 -0
  557. package/dist/hooks/tunnel-provider.js +1 -0
  558. package/dist/hooks/tunnel-start.d.ts +1 -0
  559. package/dist/hooks/tunnel-start.js +1 -0
  560. package/dist/html-LVOJ3RQS.js +25 -0
  561. package/dist/http-proxy-node16-A6AKKRQH.js +38 -0
  562. package/dist/index.d.ts +13 -0
  563. package/dist/index.js +120 -0
  564. package/dist/is-global-6SCOAJVG.js +1 -0
  565. package/dist/latest-version-LDWU5F7A.js +49 -0
  566. package/dist/lib-2BR2WN7L.js +1 -0
  567. package/dist/lib-M72BVWQ3.js +1 -0
  568. package/dist/lib-O5EZ4NVT.js +1 -0
  569. package/dist/lib-P3APEIHY.js +1 -0
  570. package/dist/local-PZWPRFU7.js +1 -0
  571. package/dist/markdown-J6CE6POI.js +62 -0
  572. package/dist/meriyah-PNQQZQYI.js +5 -0
  573. package/dist/metadata-VVBHB3HL.js +1 -0
  574. package/dist/morph-BMYYMQNX.js +30489 -0
  575. package/dist/multipart-parser-5NSSTW27.js +2 -0
  576. package/dist/node-package-manager-ETYQN7OM.js +1 -0
  577. package/dist/notifications-system-652OG5KL.js +1 -0
  578. package/dist/npa-A4YSCQ5Q.js +1 -0
  579. package/dist/open-KLSGXBIW.js +1 -0
  580. package/dist/os-7D6NT4O3.js +1 -0
  581. package/dist/out-53ABAVL7.js +1 -0
  582. package/dist/output-74VDGYJD.js +1 -0
  583. package/dist/path-MBXP7ZIC.js +1 -0
  584. package/dist/postcss-Q36SHOML.js +61 -0
  585. package/dist/prettier-EGVCP5CY.js +1 -0
  586. package/dist/source-map-E7FCCJL7.js +1 -0
  587. package/dist/system-P5QIJALL.js +1 -0
  588. package/dist/templates/ui-extensions/html/error.html.liquid +41 -0
  589. package/dist/templates/ui-extensions/html/post_purchase/index.html.liquid +44 -0
  590. package/dist/templates/ui-extensions/html/post_purchase/tunnel-error.html.liquid +41 -0
  591. package/dist/templates/ui-extensions/html/tunnel-error.html.liquid +55 -0
  592. package/dist/toml_patch_bg.wasm +0 -0
  593. package/dist/tsconfig.tsbuildinfo +1 -0
  594. package/dist/typescript-5R4Y7PXE.js +1 -0
  595. package/dist/typescript-WYPDGPSV.js +21 -0
  596. package/dist/ui-H5I5YVKV.js +1 -0
  597. package/dist/upgrade-34HSYBXI.js +1 -0
  598. package/dist/vendor/esbuild-ohos/lib/main.js +2538 -0
  599. package/dist/vendor/esbuild-ohos/package.json +7 -0
  600. package/dist/version-EKXEAF6Q.js +1 -0
  601. package/dist/version-J2PYO6M5.js +1 -0
  602. package/dist/workerd-X4TGHEG3.js +18 -0
  603. package/dist/yaml-6KWCJ64X.js +159 -0
  604. package/dist/yoga.wasm +0 -0
  605. package/oclif.manifest.json +10100 -0
  606. package/package.json +153 -0
@@ -0,0 +1,1342 @@
1
+ /* eslint-disable eslint-comments/disable-enable-pair */
2
+ /* eslint-disable eslint-comments/no-unlimited-disable */
3
+ /* eslint-disable */
4
+ import type * as StorefrontAPI from '@shopify/hydrogen/storefront-api-types';
5
+
6
+ export type MoneyFragment = Pick<
7
+ StorefrontAPI.MoneyV2,
8
+ 'currencyCode' | 'amount'
9
+ >;
10
+
11
+ export type CartLineFragment = Pick<
12
+ StorefrontAPI.CartLine,
13
+ 'id' | 'quantity'
14
+ > & {
15
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
16
+ cost: {
17
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
18
+ amountPerQuantity: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
19
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
20
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
21
+ >;
22
+ };
23
+ merchandise: Pick<
24
+ StorefrontAPI.ProductVariant,
25
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
26
+ > & {
27
+ compareAtPrice?: StorefrontAPI.Maybe<
28
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
29
+ >;
30
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
31
+ image?: StorefrontAPI.Maybe<
32
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
33
+ >;
34
+ product: Pick<StorefrontAPI.Product, 'handle' | 'title' | 'id' | 'vendor'>;
35
+ selectedOptions: Array<
36
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
37
+ >;
38
+ };
39
+ parentRelationship?: StorefrontAPI.Maybe<{
40
+ parent: Pick<StorefrontAPI.CartLine, 'id'>;
41
+ }>;
42
+ };
43
+
44
+ export type CartLineComponentFragment = Pick<
45
+ StorefrontAPI.ComponentizableCartLine,
46
+ 'id' | 'quantity'
47
+ > & {
48
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
49
+ cost: {
50
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
51
+ amountPerQuantity: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
52
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
53
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
54
+ >;
55
+ };
56
+ merchandise: Pick<
57
+ StorefrontAPI.ProductVariant,
58
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
59
+ > & {
60
+ compareAtPrice?: StorefrontAPI.Maybe<
61
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
62
+ >;
63
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
64
+ image?: StorefrontAPI.Maybe<
65
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
66
+ >;
67
+ product: Pick<StorefrontAPI.Product, 'handle' | 'title' | 'id' | 'vendor'>;
68
+ selectedOptions: Array<
69
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
70
+ >;
71
+ };
72
+ lineComponents: Array<
73
+ Pick<StorefrontAPI.CartLine, 'id' | 'quantity'> & {
74
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
75
+ cost: {
76
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
77
+ amountPerQuantity: Pick<
78
+ StorefrontAPI.MoneyV2,
79
+ 'currencyCode' | 'amount'
80
+ >;
81
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
82
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
83
+ >;
84
+ };
85
+ merchandise: Pick<
86
+ StorefrontAPI.ProductVariant,
87
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
88
+ > & {
89
+ compareAtPrice?: StorefrontAPI.Maybe<
90
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
91
+ >;
92
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
93
+ image?: StorefrontAPI.Maybe<
94
+ Pick<
95
+ StorefrontAPI.Image,
96
+ 'id' | 'url' | 'altText' | 'width' | 'height'
97
+ >
98
+ >;
99
+ product: Pick<
100
+ StorefrontAPI.Product,
101
+ 'handle' | 'title' | 'id' | 'vendor'
102
+ >;
103
+ selectedOptions: Array<
104
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
105
+ >;
106
+ };
107
+ parentRelationship?: StorefrontAPI.Maybe<{
108
+ parent: Pick<StorefrontAPI.CartLine, 'id'>;
109
+ }>;
110
+ }
111
+ >;
112
+ };
113
+
114
+ export type CartApiQueryFragment = Pick<
115
+ StorefrontAPI.Cart,
116
+ 'updatedAt' | 'id' | 'checkoutUrl' | 'totalQuantity' | 'note'
117
+ > & {
118
+ appliedGiftCards: Array<
119
+ Pick<StorefrontAPI.AppliedGiftCard, 'id' | 'lastCharacters'> & {
120
+ amountUsed: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
121
+ }
122
+ >;
123
+ buyerIdentity: Pick<
124
+ StorefrontAPI.CartBuyerIdentity,
125
+ 'countryCode' | 'email' | 'phone'
126
+ > & {
127
+ customer?: StorefrontAPI.Maybe<
128
+ Pick<
129
+ StorefrontAPI.Customer,
130
+ 'id' | 'email' | 'firstName' | 'lastName' | 'displayName'
131
+ >
132
+ >;
133
+ };
134
+ lines: {
135
+ nodes: Array<
136
+ | (Pick<StorefrontAPI.CartLine, 'id' | 'quantity'> & {
137
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
138
+ cost: {
139
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
140
+ amountPerQuantity: Pick<
141
+ StorefrontAPI.MoneyV2,
142
+ 'currencyCode' | 'amount'
143
+ >;
144
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
145
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
146
+ >;
147
+ };
148
+ merchandise: Pick<
149
+ StorefrontAPI.ProductVariant,
150
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
151
+ > & {
152
+ compareAtPrice?: StorefrontAPI.Maybe<
153
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
154
+ >;
155
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
156
+ image?: StorefrontAPI.Maybe<
157
+ Pick<
158
+ StorefrontAPI.Image,
159
+ 'id' | 'url' | 'altText' | 'width' | 'height'
160
+ >
161
+ >;
162
+ product: Pick<
163
+ StorefrontAPI.Product,
164
+ 'handle' | 'title' | 'id' | 'vendor'
165
+ >;
166
+ selectedOptions: Array<
167
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
168
+ >;
169
+ };
170
+ parentRelationship?: StorefrontAPI.Maybe<{
171
+ parent: Pick<StorefrontAPI.CartLine, 'id'>;
172
+ }>;
173
+ })
174
+ | (Pick<StorefrontAPI.ComponentizableCartLine, 'id' | 'quantity'> & {
175
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
176
+ cost: {
177
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
178
+ amountPerQuantity: Pick<
179
+ StorefrontAPI.MoneyV2,
180
+ 'currencyCode' | 'amount'
181
+ >;
182
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
183
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
184
+ >;
185
+ };
186
+ merchandise: Pick<
187
+ StorefrontAPI.ProductVariant,
188
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
189
+ > & {
190
+ compareAtPrice?: StorefrontAPI.Maybe<
191
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
192
+ >;
193
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
194
+ image?: StorefrontAPI.Maybe<
195
+ Pick<
196
+ StorefrontAPI.Image,
197
+ 'id' | 'url' | 'altText' | 'width' | 'height'
198
+ >
199
+ >;
200
+ product: Pick<
201
+ StorefrontAPI.Product,
202
+ 'handle' | 'title' | 'id' | 'vendor'
203
+ >;
204
+ selectedOptions: Array<
205
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
206
+ >;
207
+ };
208
+ lineComponents: Array<
209
+ Pick<StorefrontAPI.CartLine, 'id' | 'quantity'> & {
210
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
211
+ cost: {
212
+ totalAmount: Pick<
213
+ StorefrontAPI.MoneyV2,
214
+ 'currencyCode' | 'amount'
215
+ >;
216
+ amountPerQuantity: Pick<
217
+ StorefrontAPI.MoneyV2,
218
+ 'currencyCode' | 'amount'
219
+ >;
220
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
221
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
222
+ >;
223
+ };
224
+ merchandise: Pick<
225
+ StorefrontAPI.ProductVariant,
226
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
227
+ > & {
228
+ compareAtPrice?: StorefrontAPI.Maybe<
229
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
230
+ >;
231
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
232
+ image?: StorefrontAPI.Maybe<
233
+ Pick<
234
+ StorefrontAPI.Image,
235
+ 'id' | 'url' | 'altText' | 'width' | 'height'
236
+ >
237
+ >;
238
+ product: Pick<
239
+ StorefrontAPI.Product,
240
+ 'handle' | 'title' | 'id' | 'vendor'
241
+ >;
242
+ selectedOptions: Array<
243
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
244
+ >;
245
+ };
246
+ parentRelationship?: StorefrontAPI.Maybe<{
247
+ parent: Pick<StorefrontAPI.CartLine, 'id'>;
248
+ }>;
249
+ }
250
+ >;
251
+ })
252
+ >;
253
+ };
254
+ cost: {
255
+ subtotalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
256
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
257
+ totalDutyAmount?: StorefrontAPI.Maybe<
258
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
259
+ >;
260
+ totalTaxAmount?: StorefrontAPI.Maybe<
261
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
262
+ >;
263
+ };
264
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
265
+ discountCodes: Array<
266
+ Pick<StorefrontAPI.CartDiscountCode, 'code' | 'applicable'>
267
+ >;
268
+ };
269
+
270
+ export type MenuItemFragment = Pick<
271
+ StorefrontAPI.MenuItem,
272
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
273
+ >;
274
+
275
+ export type ChildMenuItemFragment = Pick<
276
+ StorefrontAPI.MenuItem,
277
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
278
+ >;
279
+
280
+ export type ParentMenuItemFragment = Pick<
281
+ StorefrontAPI.MenuItem,
282
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
283
+ > & {
284
+ items: Array<
285
+ Pick<
286
+ StorefrontAPI.MenuItem,
287
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
288
+ >
289
+ >;
290
+ };
291
+
292
+ export type MenuFragment = Pick<StorefrontAPI.Menu, 'id'> & {
293
+ items: Array<
294
+ Pick<
295
+ StorefrontAPI.MenuItem,
296
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
297
+ > & {
298
+ items: Array<
299
+ Pick<
300
+ StorefrontAPI.MenuItem,
301
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
302
+ >
303
+ >;
304
+ }
305
+ >;
306
+ };
307
+
308
+ export type ShopFragment = Pick<
309
+ StorefrontAPI.Shop,
310
+ 'id' | 'name' | 'description'
311
+ > & {
312
+ primaryDomain: Pick<StorefrontAPI.Domain, 'url'>;
313
+ brand?: StorefrontAPI.Maybe<{
314
+ logo?: StorefrontAPI.Maybe<{
315
+ image?: StorefrontAPI.Maybe<Pick<StorefrontAPI.Image, 'url'>>;
316
+ }>;
317
+ }>;
318
+ };
319
+
320
+ export type HeaderQueryVariables = StorefrontAPI.Exact<{
321
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
322
+ headerMenuHandle: StorefrontAPI.Scalars['String']['input'];
323
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
324
+ }>;
325
+
326
+ export type HeaderQuery = {
327
+ shop: Pick<StorefrontAPI.Shop, 'id' | 'name' | 'description'> & {
328
+ primaryDomain: Pick<StorefrontAPI.Domain, 'url'>;
329
+ brand?: StorefrontAPI.Maybe<{
330
+ logo?: StorefrontAPI.Maybe<{
331
+ image?: StorefrontAPI.Maybe<Pick<StorefrontAPI.Image, 'url'>>;
332
+ }>;
333
+ }>;
334
+ };
335
+ menu?: StorefrontAPI.Maybe<
336
+ Pick<StorefrontAPI.Menu, 'id'> & {
337
+ items: Array<
338
+ Pick<
339
+ StorefrontAPI.MenuItem,
340
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
341
+ > & {
342
+ items: Array<
343
+ Pick<
344
+ StorefrontAPI.MenuItem,
345
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
346
+ >
347
+ >;
348
+ }
349
+ >;
350
+ }
351
+ >;
352
+ };
353
+
354
+ export type FooterQueryVariables = StorefrontAPI.Exact<{
355
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
356
+ footerMenuHandle: StorefrontAPI.Scalars['String']['input'];
357
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
358
+ }>;
359
+
360
+ export type FooterQuery = {
361
+ menu?: StorefrontAPI.Maybe<
362
+ Pick<StorefrontAPI.Menu, 'id'> & {
363
+ items: Array<
364
+ Pick<
365
+ StorefrontAPI.MenuItem,
366
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
367
+ > & {
368
+ items: Array<
369
+ Pick<
370
+ StorefrontAPI.MenuItem,
371
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
372
+ >
373
+ >;
374
+ }
375
+ >;
376
+ }
377
+ >;
378
+ };
379
+
380
+ export type FeaturedCollectionFragment = Pick<
381
+ StorefrontAPI.Collection,
382
+ 'id' | 'title' | 'handle'
383
+ > & {
384
+ image?: StorefrontAPI.Maybe<
385
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
386
+ >;
387
+ };
388
+
389
+ export type FeaturedCollectionQueryVariables = StorefrontAPI.Exact<{
390
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
391
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
392
+ }>;
393
+
394
+ export type FeaturedCollectionQuery = {
395
+ collections: {
396
+ nodes: Array<
397
+ Pick<StorefrontAPI.Collection, 'id' | 'title' | 'handle'> & {
398
+ image?: StorefrontAPI.Maybe<
399
+ Pick<
400
+ StorefrontAPI.Image,
401
+ 'id' | 'url' | 'altText' | 'width' | 'height'
402
+ >
403
+ >;
404
+ }
405
+ >;
406
+ };
407
+ };
408
+
409
+ export type RecommendedProductFragment = Pick<
410
+ StorefrontAPI.Product,
411
+ 'id' | 'title' | 'handle'
412
+ > & {
413
+ priceRange: {
414
+ minVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
415
+ };
416
+ featuredImage?: StorefrontAPI.Maybe<
417
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
418
+ >;
419
+ };
420
+
421
+ export type RecommendedProductsQueryVariables = StorefrontAPI.Exact<{
422
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
423
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
424
+ }>;
425
+
426
+ export type RecommendedProductsQuery = {
427
+ products: {
428
+ nodes: Array<
429
+ Pick<StorefrontAPI.Product, 'id' | 'title' | 'handle'> & {
430
+ priceRange: {
431
+ minVariantPrice: Pick<
432
+ StorefrontAPI.MoneyV2,
433
+ 'amount' | 'currencyCode'
434
+ >;
435
+ };
436
+ featuredImage?: StorefrontAPI.Maybe<
437
+ Pick<
438
+ StorefrontAPI.Image,
439
+ 'id' | 'url' | 'altText' | 'width' | 'height'
440
+ >
441
+ >;
442
+ }
443
+ >;
444
+ };
445
+ };
446
+
447
+ export type ArticleQueryVariables = StorefrontAPI.Exact<{
448
+ articleHandle: StorefrontAPI.Scalars['String']['input'];
449
+ blogHandle: StorefrontAPI.Scalars['String']['input'];
450
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
451
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
452
+ }>;
453
+
454
+ export type ArticleQuery = {
455
+ blog?: StorefrontAPI.Maybe<
456
+ Pick<StorefrontAPI.Blog, 'handle'> & {
457
+ articleByHandle?: StorefrontAPI.Maybe<
458
+ Pick<
459
+ StorefrontAPI.Article,
460
+ 'handle' | 'title' | 'contentHtml' | 'publishedAt'
461
+ > & {
462
+ author?: StorefrontAPI.Maybe<
463
+ Pick<StorefrontAPI.ArticleAuthor, 'name'>
464
+ >;
465
+ image?: StorefrontAPI.Maybe<
466
+ Pick<
467
+ StorefrontAPI.Image,
468
+ 'id' | 'altText' | 'url' | 'width' | 'height'
469
+ >
470
+ >;
471
+ seo?: StorefrontAPI.Maybe<
472
+ Pick<StorefrontAPI.Seo, 'description' | 'title'>
473
+ >;
474
+ }
475
+ >;
476
+ }
477
+ >;
478
+ };
479
+
480
+ export type BlogQueryVariables = StorefrontAPI.Exact<{
481
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
482
+ blogHandle: StorefrontAPI.Scalars['String']['input'];
483
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
484
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
485
+ startCursor?: StorefrontAPI.InputMaybe<
486
+ StorefrontAPI.Scalars['String']['input']
487
+ >;
488
+ endCursor?: StorefrontAPI.InputMaybe<
489
+ StorefrontAPI.Scalars['String']['input']
490
+ >;
491
+ }>;
492
+
493
+ export type BlogQuery = {
494
+ blog?: StorefrontAPI.Maybe<
495
+ Pick<StorefrontAPI.Blog, 'title' | 'handle'> & {
496
+ seo?: StorefrontAPI.Maybe<
497
+ Pick<StorefrontAPI.Seo, 'title' | 'description'>
498
+ >;
499
+ articles: {
500
+ nodes: Array<
501
+ Pick<
502
+ StorefrontAPI.Article,
503
+ 'contentHtml' | 'handle' | 'id' | 'publishedAt' | 'title'
504
+ > & {
505
+ author?: StorefrontAPI.Maybe<
506
+ Pick<StorefrontAPI.ArticleAuthor, 'name'>
507
+ >;
508
+ image?: StorefrontAPI.Maybe<
509
+ Pick<
510
+ StorefrontAPI.Image,
511
+ 'id' | 'altText' | 'url' | 'width' | 'height'
512
+ >
513
+ >;
514
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
515
+ }
516
+ >;
517
+ pageInfo: Pick<
518
+ StorefrontAPI.PageInfo,
519
+ 'hasPreviousPage' | 'hasNextPage' | 'endCursor' | 'startCursor'
520
+ >;
521
+ };
522
+ }
523
+ >;
524
+ };
525
+
526
+ export type ArticleItemFragment = Pick<
527
+ StorefrontAPI.Article,
528
+ 'contentHtml' | 'handle' | 'id' | 'publishedAt' | 'title'
529
+ > & {
530
+ author?: StorefrontAPI.Maybe<Pick<StorefrontAPI.ArticleAuthor, 'name'>>;
531
+ image?: StorefrontAPI.Maybe<
532
+ Pick<StorefrontAPI.Image, 'id' | 'altText' | 'url' | 'width' | 'height'>
533
+ >;
534
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
535
+ };
536
+
537
+ export type BlogsQueryVariables = StorefrontAPI.Exact<{
538
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
539
+ endCursor?: StorefrontAPI.InputMaybe<
540
+ StorefrontAPI.Scalars['String']['input']
541
+ >;
542
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
543
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
544
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
545
+ startCursor?: StorefrontAPI.InputMaybe<
546
+ StorefrontAPI.Scalars['String']['input']
547
+ >;
548
+ }>;
549
+
550
+ export type BlogsQuery = {
551
+ blogs: {
552
+ pageInfo: Pick<
553
+ StorefrontAPI.PageInfo,
554
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
555
+ >;
556
+ nodes: Array<
557
+ Pick<StorefrontAPI.Blog, 'title' | 'handle'> & {
558
+ seo?: StorefrontAPI.Maybe<
559
+ Pick<StorefrontAPI.Seo, 'title' | 'description'>
560
+ >;
561
+ }
562
+ >;
563
+ };
564
+ };
565
+
566
+ export type MoneyProductItemFragment = Pick<
567
+ StorefrontAPI.MoneyV2,
568
+ 'amount' | 'currencyCode'
569
+ >;
570
+
571
+ export type ProductItemFragment = Pick<
572
+ StorefrontAPI.Product,
573
+ 'id' | 'handle' | 'title'
574
+ > & {
575
+ featuredImage?: StorefrontAPI.Maybe<
576
+ Pick<StorefrontAPI.Image, 'id' | 'altText' | 'url' | 'width' | 'height'>
577
+ >;
578
+ priceRange: {
579
+ minVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
580
+ maxVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
581
+ };
582
+ };
583
+
584
+ export type CollectionQueryVariables = StorefrontAPI.Exact<{
585
+ handle: StorefrontAPI.Scalars['String']['input'];
586
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
587
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
588
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
589
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
590
+ startCursor?: StorefrontAPI.InputMaybe<
591
+ StorefrontAPI.Scalars['String']['input']
592
+ >;
593
+ endCursor?: StorefrontAPI.InputMaybe<
594
+ StorefrontAPI.Scalars['String']['input']
595
+ >;
596
+ }>;
597
+
598
+ export type CollectionQuery = {
599
+ collection?: StorefrontAPI.Maybe<
600
+ Pick<
601
+ StorefrontAPI.Collection,
602
+ 'id' | 'handle' | 'title' | 'description'
603
+ > & {
604
+ products: {
605
+ nodes: Array<
606
+ Pick<StorefrontAPI.Product, 'id' | 'handle' | 'title'> & {
607
+ featuredImage?: StorefrontAPI.Maybe<
608
+ Pick<
609
+ StorefrontAPI.Image,
610
+ 'id' | 'altText' | 'url' | 'width' | 'height'
611
+ >
612
+ >;
613
+ priceRange: {
614
+ minVariantPrice: Pick<
615
+ StorefrontAPI.MoneyV2,
616
+ 'amount' | 'currencyCode'
617
+ >;
618
+ maxVariantPrice: Pick<
619
+ StorefrontAPI.MoneyV2,
620
+ 'amount' | 'currencyCode'
621
+ >;
622
+ };
623
+ }
624
+ >;
625
+ pageInfo: Pick<
626
+ StorefrontAPI.PageInfo,
627
+ 'hasPreviousPage' | 'hasNextPage' | 'endCursor' | 'startCursor'
628
+ >;
629
+ };
630
+ }
631
+ >;
632
+ };
633
+
634
+ export type CollectionFragment = Pick<
635
+ StorefrontAPI.Collection,
636
+ 'id' | 'title' | 'handle'
637
+ > & {
638
+ image?: StorefrontAPI.Maybe<
639
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
640
+ >;
641
+ };
642
+
643
+ export type StoreCollectionsQueryVariables = StorefrontAPI.Exact<{
644
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
645
+ endCursor?: StorefrontAPI.InputMaybe<
646
+ StorefrontAPI.Scalars['String']['input']
647
+ >;
648
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
649
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
650
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
651
+ startCursor?: StorefrontAPI.InputMaybe<
652
+ StorefrontAPI.Scalars['String']['input']
653
+ >;
654
+ }>;
655
+
656
+ export type StoreCollectionsQuery = {
657
+ collections: {
658
+ nodes: Array<
659
+ Pick<StorefrontAPI.Collection, 'id' | 'title' | 'handle'> & {
660
+ image?: StorefrontAPI.Maybe<
661
+ Pick<
662
+ StorefrontAPI.Image,
663
+ 'id' | 'url' | 'altText' | 'width' | 'height'
664
+ >
665
+ >;
666
+ }
667
+ >;
668
+ pageInfo: Pick<
669
+ StorefrontAPI.PageInfo,
670
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
671
+ >;
672
+ };
673
+ };
674
+
675
+ export type MoneyCollectionItemFragment = Pick<
676
+ StorefrontAPI.MoneyV2,
677
+ 'amount' | 'currencyCode'
678
+ >;
679
+
680
+ export type CollectionItemFragment = Pick<
681
+ StorefrontAPI.Product,
682
+ 'id' | 'handle' | 'title'
683
+ > & {
684
+ featuredImage?: StorefrontAPI.Maybe<
685
+ Pick<StorefrontAPI.Image, 'id' | 'altText' | 'url' | 'width' | 'height'>
686
+ >;
687
+ priceRange: {
688
+ minVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
689
+ maxVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
690
+ };
691
+ };
692
+
693
+ export type CatalogQueryVariables = StorefrontAPI.Exact<{
694
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
695
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
696
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
697
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
698
+ startCursor?: StorefrontAPI.InputMaybe<
699
+ StorefrontAPI.Scalars['String']['input']
700
+ >;
701
+ endCursor?: StorefrontAPI.InputMaybe<
702
+ StorefrontAPI.Scalars['String']['input']
703
+ >;
704
+ }>;
705
+
706
+ export type CatalogQuery = {
707
+ products: {
708
+ nodes: Array<
709
+ Pick<StorefrontAPI.Product, 'id' | 'handle' | 'title'> & {
710
+ featuredImage?: StorefrontAPI.Maybe<
711
+ Pick<
712
+ StorefrontAPI.Image,
713
+ 'id' | 'altText' | 'url' | 'width' | 'height'
714
+ >
715
+ >;
716
+ priceRange: {
717
+ minVariantPrice: Pick<
718
+ StorefrontAPI.MoneyV2,
719
+ 'amount' | 'currencyCode'
720
+ >;
721
+ maxVariantPrice: Pick<
722
+ StorefrontAPI.MoneyV2,
723
+ 'amount' | 'currencyCode'
724
+ >;
725
+ };
726
+ }
727
+ >;
728
+ pageInfo: Pick<
729
+ StorefrontAPI.PageInfo,
730
+ 'hasPreviousPage' | 'hasNextPage' | 'startCursor' | 'endCursor'
731
+ >;
732
+ };
733
+ };
734
+
735
+ export type PageQueryVariables = StorefrontAPI.Exact<{
736
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
737
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
738
+ handle: StorefrontAPI.Scalars['String']['input'];
739
+ }>;
740
+
741
+ export type PageQuery = {
742
+ page?: StorefrontAPI.Maybe<
743
+ Pick<StorefrontAPI.Page, 'handle' | 'id' | 'title' | 'body'> & {
744
+ seo?: StorefrontAPI.Maybe<
745
+ Pick<StorefrontAPI.Seo, 'description' | 'title'>
746
+ >;
747
+ }
748
+ >;
749
+ };
750
+
751
+ export type PolicyFragment = Pick<
752
+ StorefrontAPI.ShopPolicy,
753
+ 'body' | 'handle' | 'id' | 'title' | 'url'
754
+ >;
755
+
756
+ export type PolicyQueryVariables = StorefrontAPI.Exact<{
757
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
758
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
759
+ privacyPolicy: StorefrontAPI.Scalars['Boolean']['input'];
760
+ refundPolicy: StorefrontAPI.Scalars['Boolean']['input'];
761
+ shippingPolicy: StorefrontAPI.Scalars['Boolean']['input'];
762
+ termsOfService: StorefrontAPI.Scalars['Boolean']['input'];
763
+ }>;
764
+
765
+ export type PolicyQuery = {
766
+ shop: {
767
+ privacyPolicy?: StorefrontAPI.Maybe<
768
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
769
+ >;
770
+ shippingPolicy?: StorefrontAPI.Maybe<
771
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
772
+ >;
773
+ termsOfService?: StorefrontAPI.Maybe<
774
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
775
+ >;
776
+ refundPolicy?: StorefrontAPI.Maybe<
777
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
778
+ >;
779
+ };
780
+ };
781
+
782
+ export type PolicyItemFragment = Pick<
783
+ StorefrontAPI.ShopPolicy,
784
+ 'id' | 'title' | 'handle'
785
+ >;
786
+
787
+ export type PoliciesQueryVariables = StorefrontAPI.Exact<{
788
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
789
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
790
+ }>;
791
+
792
+ export type PoliciesQuery = {
793
+ shop: {
794
+ privacyPolicy?: StorefrontAPI.Maybe<
795
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
796
+ >;
797
+ shippingPolicy?: StorefrontAPI.Maybe<
798
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
799
+ >;
800
+ termsOfService?: StorefrontAPI.Maybe<
801
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
802
+ >;
803
+ refundPolicy?: StorefrontAPI.Maybe<
804
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
805
+ >;
806
+ subscriptionPolicy?: StorefrontAPI.Maybe<
807
+ Pick<StorefrontAPI.ShopPolicyWithDefault, 'id' | 'title' | 'handle'>
808
+ >;
809
+ };
810
+ };
811
+
812
+ export type ProductVariantFragment = Pick<
813
+ StorefrontAPI.ProductVariant,
814
+ 'availableForSale' | 'id' | 'sku' | 'title'
815
+ > & {
816
+ compareAtPrice?: StorefrontAPI.Maybe<
817
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
818
+ >;
819
+ image?: StorefrontAPI.Maybe<
820
+ {__typename: 'Image'} & Pick<
821
+ StorefrontAPI.Image,
822
+ 'id' | 'url' | 'altText' | 'width' | 'height'
823
+ >
824
+ >;
825
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
826
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
827
+ selectedOptions: Array<Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>>;
828
+ unitPrice?: StorefrontAPI.Maybe<
829
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
830
+ >;
831
+ };
832
+
833
+ export type ProductFragment = Pick<
834
+ StorefrontAPI.Product,
835
+ | 'id'
836
+ | 'title'
837
+ | 'vendor'
838
+ | 'handle'
839
+ | 'descriptionHtml'
840
+ | 'description'
841
+ | 'encodedVariantExistence'
842
+ | 'encodedVariantAvailability'
843
+ > & {
844
+ options: Array<
845
+ Pick<StorefrontAPI.ProductOption, 'name'> & {
846
+ optionValues: Array<
847
+ Pick<StorefrontAPI.ProductOptionValue, 'name'> & {
848
+ firstSelectableVariant?: StorefrontAPI.Maybe<
849
+ Pick<
850
+ StorefrontAPI.ProductVariant,
851
+ 'availableForSale' | 'id' | 'sku' | 'title'
852
+ > & {
853
+ compareAtPrice?: StorefrontAPI.Maybe<
854
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
855
+ >;
856
+ image?: StorefrontAPI.Maybe<
857
+ {__typename: 'Image'} & Pick<
858
+ StorefrontAPI.Image,
859
+ 'id' | 'url' | 'altText' | 'width' | 'height'
860
+ >
861
+ >;
862
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
863
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
864
+ selectedOptions: Array<
865
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
866
+ >;
867
+ unitPrice?: StorefrontAPI.Maybe<
868
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
869
+ >;
870
+ }
871
+ >;
872
+ swatch?: StorefrontAPI.Maybe<
873
+ Pick<StorefrontAPI.ProductOptionValueSwatch, 'color'> & {
874
+ image?: StorefrontAPI.Maybe<{
875
+ previewImage?: StorefrontAPI.Maybe<
876
+ Pick<StorefrontAPI.Image, 'url'>
877
+ >;
878
+ }>;
879
+ }
880
+ >;
881
+ }
882
+ >;
883
+ }
884
+ >;
885
+ selectedOrFirstAvailableVariant?: StorefrontAPI.Maybe<
886
+ Pick<
887
+ StorefrontAPI.ProductVariant,
888
+ 'availableForSale' | 'id' | 'sku' | 'title'
889
+ > & {
890
+ compareAtPrice?: StorefrontAPI.Maybe<
891
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
892
+ >;
893
+ image?: StorefrontAPI.Maybe<
894
+ {__typename: 'Image'} & Pick<
895
+ StorefrontAPI.Image,
896
+ 'id' | 'url' | 'altText' | 'width' | 'height'
897
+ >
898
+ >;
899
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
900
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
901
+ selectedOptions: Array<
902
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
903
+ >;
904
+ unitPrice?: StorefrontAPI.Maybe<
905
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
906
+ >;
907
+ }
908
+ >;
909
+ adjacentVariants: Array<
910
+ Pick<
911
+ StorefrontAPI.ProductVariant,
912
+ 'availableForSale' | 'id' | 'sku' | 'title'
913
+ > & {
914
+ compareAtPrice?: StorefrontAPI.Maybe<
915
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
916
+ >;
917
+ image?: StorefrontAPI.Maybe<
918
+ {__typename: 'Image'} & Pick<
919
+ StorefrontAPI.Image,
920
+ 'id' | 'url' | 'altText' | 'width' | 'height'
921
+ >
922
+ >;
923
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
924
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
925
+ selectedOptions: Array<
926
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
927
+ >;
928
+ unitPrice?: StorefrontAPI.Maybe<
929
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
930
+ >;
931
+ }
932
+ >;
933
+ seo: Pick<StorefrontAPI.Seo, 'description' | 'title'>;
934
+ };
935
+
936
+ export type ProductQueryVariables = StorefrontAPI.Exact<{
937
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
938
+ handle: StorefrontAPI.Scalars['String']['input'];
939
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
940
+ selectedOptions:
941
+ | Array<StorefrontAPI.SelectedOptionInput>
942
+ | StorefrontAPI.SelectedOptionInput;
943
+ }>;
944
+
945
+ export type ProductQuery = {
946
+ product?: StorefrontAPI.Maybe<
947
+ Pick<
948
+ StorefrontAPI.Product,
949
+ | 'id'
950
+ | 'title'
951
+ | 'vendor'
952
+ | 'handle'
953
+ | 'descriptionHtml'
954
+ | 'description'
955
+ | 'encodedVariantExistence'
956
+ | 'encodedVariantAvailability'
957
+ > & {
958
+ options: Array<
959
+ Pick<StorefrontAPI.ProductOption, 'name'> & {
960
+ optionValues: Array<
961
+ Pick<StorefrontAPI.ProductOptionValue, 'name'> & {
962
+ firstSelectableVariant?: StorefrontAPI.Maybe<
963
+ Pick<
964
+ StorefrontAPI.ProductVariant,
965
+ 'availableForSale' | 'id' | 'sku' | 'title'
966
+ > & {
967
+ compareAtPrice?: StorefrontAPI.Maybe<
968
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
969
+ >;
970
+ image?: StorefrontAPI.Maybe<
971
+ {__typename: 'Image'} & Pick<
972
+ StorefrontAPI.Image,
973
+ 'id' | 'url' | 'altText' | 'width' | 'height'
974
+ >
975
+ >;
976
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
977
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
978
+ selectedOptions: Array<
979
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
980
+ >;
981
+ unitPrice?: StorefrontAPI.Maybe<
982
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
983
+ >;
984
+ }
985
+ >;
986
+ swatch?: StorefrontAPI.Maybe<
987
+ Pick<StorefrontAPI.ProductOptionValueSwatch, 'color'> & {
988
+ image?: StorefrontAPI.Maybe<{
989
+ previewImage?: StorefrontAPI.Maybe<
990
+ Pick<StorefrontAPI.Image, 'url'>
991
+ >;
992
+ }>;
993
+ }
994
+ >;
995
+ }
996
+ >;
997
+ }
998
+ >;
999
+ selectedOrFirstAvailableVariant?: StorefrontAPI.Maybe<
1000
+ Pick<
1001
+ StorefrontAPI.ProductVariant,
1002
+ 'availableForSale' | 'id' | 'sku' | 'title'
1003
+ > & {
1004
+ compareAtPrice?: StorefrontAPI.Maybe<
1005
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1006
+ >;
1007
+ image?: StorefrontAPI.Maybe<
1008
+ {__typename: 'Image'} & Pick<
1009
+ StorefrontAPI.Image,
1010
+ 'id' | 'url' | 'altText' | 'width' | 'height'
1011
+ >
1012
+ >;
1013
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1014
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
1015
+ selectedOptions: Array<
1016
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1017
+ >;
1018
+ unitPrice?: StorefrontAPI.Maybe<
1019
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1020
+ >;
1021
+ }
1022
+ >;
1023
+ adjacentVariants: Array<
1024
+ Pick<
1025
+ StorefrontAPI.ProductVariant,
1026
+ 'availableForSale' | 'id' | 'sku' | 'title'
1027
+ > & {
1028
+ compareAtPrice?: StorefrontAPI.Maybe<
1029
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1030
+ >;
1031
+ image?: StorefrontAPI.Maybe<
1032
+ {__typename: 'Image'} & Pick<
1033
+ StorefrontAPI.Image,
1034
+ 'id' | 'url' | 'altText' | 'width' | 'height'
1035
+ >
1036
+ >;
1037
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1038
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
1039
+ selectedOptions: Array<
1040
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1041
+ >;
1042
+ unitPrice?: StorefrontAPI.Maybe<
1043
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1044
+ >;
1045
+ }
1046
+ >;
1047
+ seo: Pick<StorefrontAPI.Seo, 'description' | 'title'>;
1048
+ }
1049
+ >;
1050
+ };
1051
+
1052
+ export type SearchProductFragment = {__typename: 'Product'} & Pick<
1053
+ StorefrontAPI.Product,
1054
+ 'handle' | 'id' | 'publishedAt' | 'title' | 'trackingParameters' | 'vendor'
1055
+ > & {
1056
+ selectedOrFirstAvailableVariant?: StorefrontAPI.Maybe<
1057
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
1058
+ image?: StorefrontAPI.Maybe<
1059
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1060
+ >;
1061
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1062
+ compareAtPrice?: StorefrontAPI.Maybe<
1063
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1064
+ >;
1065
+ selectedOptions: Array<
1066
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1067
+ >;
1068
+ product: Pick<StorefrontAPI.Product, 'handle' | 'title'>;
1069
+ }
1070
+ >;
1071
+ };
1072
+
1073
+ export type SearchPageFragment = {__typename: 'Page'} & Pick<
1074
+ StorefrontAPI.Page,
1075
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1076
+ >;
1077
+
1078
+ export type SearchArticleFragment = {__typename: 'Article'} & Pick<
1079
+ StorefrontAPI.Article,
1080
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1081
+ >;
1082
+
1083
+ export type PageInfoFragmentFragment = Pick<
1084
+ StorefrontAPI.PageInfo,
1085
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
1086
+ >;
1087
+
1088
+ export type RegularSearchQueryVariables = StorefrontAPI.Exact<{
1089
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
1090
+ endCursor?: StorefrontAPI.InputMaybe<
1091
+ StorefrontAPI.Scalars['String']['input']
1092
+ >;
1093
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
1094
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
1095
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
1096
+ term: StorefrontAPI.Scalars['String']['input'];
1097
+ startCursor?: StorefrontAPI.InputMaybe<
1098
+ StorefrontAPI.Scalars['String']['input']
1099
+ >;
1100
+ }>;
1101
+
1102
+ export type RegularSearchQuery = {
1103
+ articles: {
1104
+ nodes: Array<
1105
+ {__typename: 'Article'} & Pick<
1106
+ StorefrontAPI.Article,
1107
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1108
+ >
1109
+ >;
1110
+ };
1111
+ pages: {
1112
+ nodes: Array<
1113
+ {__typename: 'Page'} & Pick<
1114
+ StorefrontAPI.Page,
1115
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1116
+ >
1117
+ >;
1118
+ };
1119
+ products: {
1120
+ nodes: Array<
1121
+ {__typename: 'Product'} & Pick<
1122
+ StorefrontAPI.Product,
1123
+ | 'handle'
1124
+ | 'id'
1125
+ | 'publishedAt'
1126
+ | 'title'
1127
+ | 'trackingParameters'
1128
+ | 'vendor'
1129
+ > & {
1130
+ selectedOrFirstAvailableVariant?: StorefrontAPI.Maybe<
1131
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
1132
+ image?: StorefrontAPI.Maybe<
1133
+ Pick<
1134
+ StorefrontAPI.Image,
1135
+ 'url' | 'altText' | 'width' | 'height'
1136
+ >
1137
+ >;
1138
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1139
+ compareAtPrice?: StorefrontAPI.Maybe<
1140
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1141
+ >;
1142
+ selectedOptions: Array<
1143
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1144
+ >;
1145
+ product: Pick<StorefrontAPI.Product, 'handle' | 'title'>;
1146
+ }
1147
+ >;
1148
+ }
1149
+ >;
1150
+ pageInfo: Pick<
1151
+ StorefrontAPI.PageInfo,
1152
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
1153
+ >;
1154
+ };
1155
+ };
1156
+
1157
+ export type PredictiveArticleFragment = {__typename: 'Article'} & Pick<
1158
+ StorefrontAPI.Article,
1159
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1160
+ > & {
1161
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
1162
+ image?: StorefrontAPI.Maybe<
1163
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1164
+ >;
1165
+ };
1166
+
1167
+ export type PredictiveCollectionFragment = {__typename: 'Collection'} & Pick<
1168
+ StorefrontAPI.Collection,
1169
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1170
+ > & {
1171
+ image?: StorefrontAPI.Maybe<
1172
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1173
+ >;
1174
+ };
1175
+
1176
+ export type PredictivePageFragment = {__typename: 'Page'} & Pick<
1177
+ StorefrontAPI.Page,
1178
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1179
+ >;
1180
+
1181
+ export type PredictiveProductFragment = {__typename: 'Product'} & Pick<
1182
+ StorefrontAPI.Product,
1183
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1184
+ > & {
1185
+ selectedOrFirstAvailableVariant?: StorefrontAPI.Maybe<
1186
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
1187
+ image?: StorefrontAPI.Maybe<
1188
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1189
+ >;
1190
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1191
+ }
1192
+ >;
1193
+ };
1194
+
1195
+ export type PredictiveQueryFragment = {
1196
+ __typename: 'SearchQuerySuggestion';
1197
+ } & Pick<
1198
+ StorefrontAPI.SearchQuerySuggestion,
1199
+ 'text' | 'styledText' | 'trackingParameters'
1200
+ >;
1201
+
1202
+ export type PredictiveSearchQueryVariables = StorefrontAPI.Exact<{
1203
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
1204
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
1205
+ limit: StorefrontAPI.Scalars['Int']['input'];
1206
+ limitScope: StorefrontAPI.PredictiveSearchLimitScope;
1207
+ term: StorefrontAPI.Scalars['String']['input'];
1208
+ types?: StorefrontAPI.InputMaybe<
1209
+ | Array<StorefrontAPI.PredictiveSearchType>
1210
+ | StorefrontAPI.PredictiveSearchType
1211
+ >;
1212
+ }>;
1213
+
1214
+ export type PredictiveSearchQuery = {
1215
+ predictiveSearch?: StorefrontAPI.Maybe<{
1216
+ articles: Array<
1217
+ {__typename: 'Article'} & Pick<
1218
+ StorefrontAPI.Article,
1219
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1220
+ > & {
1221
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
1222
+ image?: StorefrontAPI.Maybe<
1223
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1224
+ >;
1225
+ }
1226
+ >;
1227
+ collections: Array<
1228
+ {__typename: 'Collection'} & Pick<
1229
+ StorefrontAPI.Collection,
1230
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1231
+ > & {
1232
+ image?: StorefrontAPI.Maybe<
1233
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1234
+ >;
1235
+ }
1236
+ >;
1237
+ pages: Array<
1238
+ {__typename: 'Page'} & Pick<
1239
+ StorefrontAPI.Page,
1240
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1241
+ >
1242
+ >;
1243
+ products: Array<
1244
+ {__typename: 'Product'} & Pick<
1245
+ StorefrontAPI.Product,
1246
+ 'id' | 'title' | 'handle' | 'trackingParameters'
1247
+ > & {
1248
+ selectedOrFirstAvailableVariant?: StorefrontAPI.Maybe<
1249
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
1250
+ image?: StorefrontAPI.Maybe<
1251
+ Pick<
1252
+ StorefrontAPI.Image,
1253
+ 'url' | 'altText' | 'width' | 'height'
1254
+ >
1255
+ >;
1256
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1257
+ }
1258
+ >;
1259
+ }
1260
+ >;
1261
+ queries: Array<
1262
+ {__typename: 'SearchQuerySuggestion'} & Pick<
1263
+ StorefrontAPI.SearchQuerySuggestion,
1264
+ 'text' | 'styledText' | 'trackingParameters'
1265
+ >
1266
+ >;
1267
+ }>;
1268
+ };
1269
+
1270
+ interface GeneratedQueryTypes {
1271
+ '#graphql\n fragment Shop on Shop {\n id\n name\n description\n primaryDomain {\n url\n }\n brand {\n logo {\n image {\n url\n }\n }\n }\n }\n query Header(\n $country: CountryCode\n $headerMenuHandle: String!\n $language: LanguageCode\n ) @inContext(language: $language, country: $country) {\n shop {\n ...Shop\n }\n menu(handle: $headerMenuHandle) {\n ...Menu\n }\n }\n #graphql\n fragment MenuItem on MenuItem {\n id\n resourceId\n tags\n title\n type\n url\n }\n fragment ChildMenuItem on MenuItem {\n ...MenuItem\n }\n fragment ParentMenuItem on MenuItem {\n ...MenuItem\n items {\n ...ChildMenuItem\n }\n }\n fragment Menu on Menu {\n id\n items {\n ...ParentMenuItem\n }\n }\n\n': {
1272
+ return: HeaderQuery;
1273
+ variables: HeaderQueryVariables;
1274
+ };
1275
+ '#graphql\n query Footer(\n $country: CountryCode\n $footerMenuHandle: String!\n $language: LanguageCode\n ) @inContext(language: $language, country: $country) {\n menu(handle: $footerMenuHandle) {\n ...Menu\n }\n }\n #graphql\n fragment MenuItem on MenuItem {\n id\n resourceId\n tags\n title\n type\n url\n }\n fragment ChildMenuItem on MenuItem {\n ...MenuItem\n }\n fragment ParentMenuItem on MenuItem {\n ...MenuItem\n items {\n ...ChildMenuItem\n }\n }\n fragment Menu on Menu {\n id\n items {\n ...ParentMenuItem\n }\n }\n\n': {
1276
+ return: FooterQuery;
1277
+ variables: FooterQueryVariables;
1278
+ };
1279
+ '#graphql\n fragment FeaturedCollection on Collection {\n id\n title\n image {\n id\n url\n altText\n width\n height\n }\n handle\n }\n query FeaturedCollection($country: CountryCode, $language: LanguageCode)\n @inContext(country: $country, language: $language) {\n collections(first: 1, sortKey: UPDATED_AT, reverse: true) {\n nodes {\n ...FeaturedCollection\n }\n }\n }\n': {
1280
+ return: FeaturedCollectionQuery;
1281
+ variables: FeaturedCollectionQueryVariables;
1282
+ };
1283
+ '#graphql\n fragment RecommendedProduct on Product {\n id\n title\n handle\n priceRange {\n minVariantPrice {\n amount\n currencyCode\n }\n }\n featuredImage {\n id\n url\n altText\n width\n height\n }\n }\n query RecommendedProducts ($country: CountryCode, $language: LanguageCode)\n @inContext(country: $country, language: $language) {\n products(first: 4, sortKey: UPDATED_AT, reverse: true) {\n nodes {\n ...RecommendedProduct\n }\n }\n }\n': {
1284
+ return: RecommendedProductsQuery;
1285
+ variables: RecommendedProductsQueryVariables;
1286
+ };
1287
+ '#graphql\n query Article(\n $articleHandle: String!\n $blogHandle: String!\n $country: CountryCode\n $language: LanguageCode\n ) @inContext(language: $language, country: $country) {\n blog(handle: $blogHandle) {\n handle\n articleByHandle(handle: $articleHandle) {\n handle\n title\n contentHtml\n publishedAt\n author: authorV2 {\n name\n }\n image {\n id\n altText\n url\n width\n height\n }\n seo {\n description\n title\n }\n }\n }\n }\n': {
1288
+ return: ArticleQuery;
1289
+ variables: ArticleQueryVariables;
1290
+ };
1291
+ '#graphql\n query Blog(\n $language: LanguageCode\n $blogHandle: String!\n $first: Int\n $last: Int\n $startCursor: String\n $endCursor: String\n ) @inContext(language: $language) {\n blog(handle: $blogHandle) {\n title\n handle\n seo {\n title\n description\n }\n articles(\n first: $first,\n last: $last,\n before: $startCursor,\n after: $endCursor\n ) {\n nodes {\n ...ArticleItem\n }\n pageInfo {\n hasPreviousPage\n hasNextPage\n hasNextPage\n endCursor\n startCursor\n }\n\n }\n }\n }\n fragment ArticleItem on Article {\n author: authorV2 {\n name\n }\n contentHtml\n handle\n id\n image {\n id\n altText\n url\n width\n height\n }\n publishedAt\n title\n blog {\n handle\n }\n }\n': {
1292
+ return: BlogQuery;
1293
+ variables: BlogQueryVariables;
1294
+ };
1295
+ '#graphql\n query Blogs(\n $country: CountryCode\n $endCursor: String\n $first: Int\n $language: LanguageCode\n $last: Int\n $startCursor: String\n ) @inContext(country: $country, language: $language) {\n blogs(\n first: $first,\n last: $last,\n before: $startCursor,\n after: $endCursor\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n nodes {\n title\n handle\n seo {\n title\n description\n }\n }\n }\n }\n': {
1296
+ return: BlogsQuery;
1297
+ variables: BlogsQueryVariables;
1298
+ };
1299
+ '#graphql\n #graphql\n fragment MoneyProductItem on MoneyV2 {\n amount\n currencyCode\n }\n fragment ProductItem on Product {\n id\n handle\n title\n featuredImage {\n id\n altText\n url\n width\n height\n }\n priceRange {\n minVariantPrice {\n ...MoneyProductItem\n }\n maxVariantPrice {\n ...MoneyProductItem\n }\n }\n }\n\n query Collection(\n $handle: String!\n $country: CountryCode\n $language: LanguageCode\n $first: Int\n $last: Int\n $startCursor: String\n $endCursor: String\n ) @inContext(country: $country, language: $language) {\n collection(handle: $handle) {\n id\n handle\n title\n description\n products(\n first: $first,\n last: $last,\n before: $startCursor,\n after: $endCursor\n ) {\n nodes {\n ...ProductItem\n }\n pageInfo {\n hasPreviousPage\n hasNextPage\n endCursor\n startCursor\n }\n }\n }\n }\n': {
1300
+ return: CollectionQuery;
1301
+ variables: CollectionQueryVariables;
1302
+ };
1303
+ '#graphql\n fragment Collection on Collection {\n id\n title\n handle\n image {\n id\n url\n altText\n width\n height\n }\n }\n query StoreCollections(\n $country: CountryCode\n $endCursor: String\n $first: Int\n $language: LanguageCode\n $last: Int\n $startCursor: String\n ) @inContext(country: $country, language: $language) {\n collections(\n first: $first,\n last: $last,\n before: $startCursor,\n after: $endCursor\n ) {\n nodes {\n ...Collection\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n }\n': {
1304
+ return: StoreCollectionsQuery;
1305
+ variables: StoreCollectionsQueryVariables;
1306
+ };
1307
+ '#graphql\n query Catalog(\n $country: CountryCode\n $language: LanguageCode\n $first: Int\n $last: Int\n $startCursor: String\n $endCursor: String\n ) @inContext(country: $country, language: $language) {\n products(first: $first, last: $last, before: $startCursor, after: $endCursor) {\n nodes {\n ...CollectionItem\n }\n pageInfo {\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n }\n }\n }\n #graphql\n fragment MoneyCollectionItem on MoneyV2 {\n amount\n currencyCode\n }\n fragment CollectionItem on Product {\n id\n handle\n title\n featuredImage {\n id\n altText\n url\n width\n height\n }\n priceRange {\n minVariantPrice {\n ...MoneyCollectionItem\n }\n maxVariantPrice {\n ...MoneyCollectionItem\n }\n }\n }\n\n': {
1308
+ return: CatalogQuery;
1309
+ variables: CatalogQueryVariables;
1310
+ };
1311
+ '#graphql\n query Page(\n $language: LanguageCode,\n $country: CountryCode,\n $handle: String!\n )\n @inContext(language: $language, country: $country) {\n page(handle: $handle) {\n handle\n id\n title\n body\n seo {\n description\n title\n }\n }\n }\n': {
1312
+ return: PageQuery;
1313
+ variables: PageQueryVariables;
1314
+ };
1315
+ '#graphql\n fragment Policy on ShopPolicy {\n body\n handle\n id\n title\n url\n }\n query Policy(\n $country: CountryCode\n $language: LanguageCode\n $privacyPolicy: Boolean!\n $refundPolicy: Boolean!\n $shippingPolicy: Boolean!\n $termsOfService: Boolean!\n ) @inContext(language: $language, country: $country) {\n shop {\n privacyPolicy @include(if: $privacyPolicy) {\n ...Policy\n }\n shippingPolicy @include(if: $shippingPolicy) {\n ...Policy\n }\n termsOfService @include(if: $termsOfService) {\n ...Policy\n }\n refundPolicy @include(if: $refundPolicy) {\n ...Policy\n }\n }\n }\n': {
1316
+ return: PolicyQuery;
1317
+ variables: PolicyQueryVariables;
1318
+ };
1319
+ '#graphql\n fragment PolicyItem on ShopPolicy {\n id\n title\n handle\n }\n query Policies ($country: CountryCode, $language: LanguageCode)\n @inContext(country: $country, language: $language) {\n shop {\n privacyPolicy {\n ...PolicyItem\n }\n shippingPolicy {\n ...PolicyItem\n }\n termsOfService {\n ...PolicyItem\n }\n refundPolicy {\n ...PolicyItem\n }\n subscriptionPolicy {\n id\n title\n handle\n }\n }\n }\n': {
1320
+ return: PoliciesQuery;
1321
+ variables: PoliciesQueryVariables;
1322
+ };
1323
+ '#graphql\n query Product(\n $country: CountryCode\n $handle: String!\n $language: LanguageCode\n $selectedOptions: [SelectedOptionInput!]!\n ) @inContext(country: $country, language: $language) {\n product(handle: $handle) {\n ...Product\n }\n }\n #graphql\n fragment Product on Product {\n id\n title\n vendor\n handle\n descriptionHtml\n description\n encodedVariantExistence\n encodedVariantAvailability\n options {\n name\n optionValues {\n name\n firstSelectableVariant {\n ...ProductVariant\n }\n swatch {\n color\n image {\n previewImage {\n url\n }\n }\n }\n }\n }\n selectedOrFirstAvailableVariant(selectedOptions: $selectedOptions, ignoreUnknownOptions: true, caseInsensitiveMatch: true) {\n ...ProductVariant\n }\n adjacentVariants (selectedOptions: $selectedOptions) {\n ...ProductVariant\n }\n seo {\n description\n title\n }\n }\n #graphql\n fragment ProductVariant on ProductVariant {\n availableForSale\n compareAtPrice {\n amount\n currencyCode\n }\n id\n image {\n __typename\n id\n url\n altText\n width\n height\n }\n price {\n amount\n currencyCode\n }\n product {\n title\n handle\n }\n selectedOptions {\n name\n value\n }\n sku\n title\n unitPrice {\n amount\n currencyCode\n }\n }\n\n\n': {
1324
+ return: ProductQuery;
1325
+ variables: ProductQueryVariables;
1326
+ };
1327
+ '#graphql\n query RegularSearch(\n $country: CountryCode\n $endCursor: String\n $first: Int\n $language: LanguageCode\n $last: Int\n $term: String!\n $startCursor: String\n ) @inContext(country: $country, language: $language) {\n articles: search(\n query: $term,\n types: [ARTICLE],\n first: $first,\n ) {\n nodes {\n ...on Article {\n ...SearchArticle\n }\n }\n }\n pages: search(\n query: $term,\n types: [PAGE],\n first: $first,\n ) {\n nodes {\n ...on Page {\n ...SearchPage\n }\n }\n }\n products: search(\n after: $endCursor,\n before: $startCursor,\n first: $first,\n last: $last,\n query: $term,\n sortKey: RELEVANCE,\n types: [PRODUCT],\n unavailableProducts: HIDE,\n ) {\n nodes {\n ...on Product {\n ...SearchProduct\n }\n }\n pageInfo {\n ...PageInfoFragment\n }\n }\n }\n #graphql\n fragment SearchProduct on Product {\n __typename\n handle\n id\n publishedAt\n title\n trackingParameters\n vendor\n selectedOrFirstAvailableVariant(\n selectedOptions: []\n ignoreUnknownOptions: true\n caseInsensitiveMatch: true\n ) {\n id\n image {\n url\n altText\n width\n height\n }\n price {\n amount\n currencyCode\n }\n compareAtPrice {\n amount\n currencyCode\n }\n selectedOptions {\n name\n value\n }\n product {\n handle\n title\n }\n }\n }\n\n #graphql\n fragment SearchPage on Page {\n __typename\n handle\n id\n title\n trackingParameters\n }\n\n #graphql\n fragment SearchArticle on Article {\n __typename\n handle\n id\n title\n trackingParameters\n }\n\n #graphql\n fragment PageInfoFragment on PageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n\n': {
1328
+ return: RegularSearchQuery;
1329
+ variables: RegularSearchQueryVariables;
1330
+ };
1331
+ '#graphql\n query PredictiveSearch(\n $country: CountryCode\n $language: LanguageCode\n $limit: Int!\n $limitScope: PredictiveSearchLimitScope!\n $term: String!\n $types: [PredictiveSearchType!]\n ) @inContext(country: $country, language: $language) {\n predictiveSearch(\n limit: $limit,\n limitScope: $limitScope,\n query: $term,\n types: $types,\n ) {\n articles {\n ...PredictiveArticle\n }\n collections {\n ...PredictiveCollection\n }\n pages {\n ...PredictivePage\n }\n products {\n ...PredictiveProduct\n }\n queries {\n ...PredictiveQuery\n }\n }\n }\n #graphql\n fragment PredictiveArticle on Article {\n __typename\n id\n title\n handle\n blog {\n handle\n }\n image {\n url\n altText\n width\n height\n }\n trackingParameters\n }\n\n #graphql\n fragment PredictiveCollection on Collection {\n __typename\n id\n title\n handle\n image {\n url\n altText\n width\n height\n }\n trackingParameters\n }\n\n #graphql\n fragment PredictivePage on Page {\n __typename\n id\n title\n handle\n trackingParameters\n }\n\n #graphql\n fragment PredictiveProduct on Product {\n __typename\n id\n title\n handle\n trackingParameters\n selectedOrFirstAvailableVariant(\n selectedOptions: []\n ignoreUnknownOptions: true\n caseInsensitiveMatch: true\n ) {\n id\n image {\n url\n altText\n width\n height\n }\n price {\n amount\n currencyCode\n }\n }\n }\n\n #graphql\n fragment PredictiveQuery on SearchQuerySuggestion {\n __typename\n text\n styledText\n trackingParameters\n }\n\n': {
1332
+ return: PredictiveSearchQuery;
1333
+ variables: PredictiveSearchQueryVariables;
1334
+ };
1335
+ }
1336
+
1337
+ interface GeneratedMutationTypes {}
1338
+
1339
+ declare module '@shopify/hydrogen' {
1340
+ interface StorefrontQueries extends GeneratedQueryTypes {}
1341
+ interface StorefrontMutations extends GeneratedMutationTypes {}
1342
+ }