@shopify/create-hydrogen 4.3.13 → 5.0.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 (127) hide show
  1. package/dist/assets/hydrogen/bundle/analyzer.html +2045 -0
  2. package/dist/assets/hydrogen/i18n/domains.ts +28 -0
  3. package/dist/assets/hydrogen/i18n/mock-i18n-types.ts +3 -0
  4. package/dist/assets/hydrogen/i18n/subdomains.ts +27 -0
  5. package/dist/assets/hydrogen/i18n/subfolders.ts +29 -0
  6. package/dist/assets/hydrogen/routes/locale-check.ts +16 -0
  7. package/dist/assets/hydrogen/starter/.eslintignore +5 -0
  8. package/dist/assets/hydrogen/starter/.eslintrc.cjs +19 -0
  9. package/dist/assets/hydrogen/starter/.graphqlrc.yml +12 -0
  10. package/dist/assets/hydrogen/starter/CHANGELOG.md +709 -0
  11. package/dist/assets/hydrogen/starter/README.md +45 -0
  12. package/dist/assets/hydrogen/starter/app/assets/favicon.svg +28 -0
  13. package/dist/assets/hydrogen/starter/app/components/AddToCartButton.tsx +37 -0
  14. package/dist/assets/hydrogen/starter/app/components/Aside.tsx +76 -0
  15. package/dist/assets/hydrogen/starter/app/components/CartLineItem.tsx +150 -0
  16. package/dist/assets/hydrogen/starter/app/components/CartMain.tsx +68 -0
  17. package/dist/assets/hydrogen/starter/app/components/CartSummary.tsx +101 -0
  18. package/dist/assets/hydrogen/starter/app/components/Footer.tsx +129 -0
  19. package/dist/assets/hydrogen/starter/app/components/Header.tsx +230 -0
  20. package/dist/assets/hydrogen/starter/app/components/PageLayout.tsx +126 -0
  21. package/dist/assets/hydrogen/starter/app/components/ProductForm.tsx +80 -0
  22. package/dist/assets/hydrogen/starter/app/components/ProductImage.tsx +23 -0
  23. package/dist/assets/hydrogen/starter/app/components/ProductPrice.tsx +27 -0
  24. package/dist/assets/hydrogen/starter/app/components/Search.tsx +514 -0
  25. package/dist/assets/hydrogen/starter/app/entry.client.tsx +12 -0
  26. package/dist/assets/hydrogen/starter/app/entry.server.tsx +47 -0
  27. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerAddressMutations.ts +61 -0
  28. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerDetailsQuery.ts +40 -0
  29. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrderQuery.ts +87 -0
  30. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerOrdersQuery.ts +58 -0
  31. package/dist/assets/hydrogen/starter/app/graphql/customer-account/CustomerUpdateMutation.ts +24 -0
  32. package/dist/assets/hydrogen/starter/app/lib/fragments.ts +174 -0
  33. package/dist/assets/hydrogen/starter/app/lib/search.ts +29 -0
  34. package/dist/assets/hydrogen/starter/app/lib/session.ts +72 -0
  35. package/dist/assets/hydrogen/starter/app/lib/variants.ts +46 -0
  36. package/dist/assets/hydrogen/starter/app/root.tsx +191 -0
  37. package/dist/assets/hydrogen/starter/app/routes/$.tsx +11 -0
  38. package/dist/assets/hydrogen/starter/app/routes/[robots.txt].tsx +118 -0
  39. package/dist/assets/hydrogen/starter/app/routes/[sitemap.xml].tsx +177 -0
  40. package/dist/assets/hydrogen/starter/app/routes/_index.tsx +182 -0
  41. package/dist/assets/hydrogen/starter/app/routes/account.$.tsx +8 -0
  42. package/dist/assets/hydrogen/starter/app/routes/account._index.tsx +5 -0
  43. package/dist/assets/hydrogen/starter/app/routes/account.addresses.tsx +513 -0
  44. package/dist/assets/hydrogen/starter/app/routes/account.orders.$id.tsx +195 -0
  45. package/dist/assets/hydrogen/starter/app/routes/account.orders._index.tsx +107 -0
  46. package/dist/assets/hydrogen/starter/app/routes/account.profile.tsx +136 -0
  47. package/dist/assets/hydrogen/starter/app/routes/account.tsx +88 -0
  48. package/dist/assets/hydrogen/starter/app/routes/account_.authorize.tsx +5 -0
  49. package/dist/assets/hydrogen/starter/app/routes/account_.login.tsx +5 -0
  50. package/dist/assets/hydrogen/starter/app/routes/account_.logout.tsx +10 -0
  51. package/dist/assets/hydrogen/starter/app/routes/api.predictive-search.tsx +318 -0
  52. package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle.$articleHandle.tsx +113 -0
  53. package/dist/assets/hydrogen/starter/app/routes/blogs.$blogHandle._index.tsx +188 -0
  54. package/dist/assets/hydrogen/starter/app/routes/blogs._index.tsx +119 -0
  55. package/dist/assets/hydrogen/starter/app/routes/cart.$lines.tsx +69 -0
  56. package/dist/assets/hydrogen/starter/app/routes/cart.tsx +102 -0
  57. package/dist/assets/hydrogen/starter/app/routes/collections.$handle.tsx +225 -0
  58. package/dist/assets/hydrogen/starter/app/routes/collections._index.tsx +146 -0
  59. package/dist/assets/hydrogen/starter/app/routes/collections.all.tsx +185 -0
  60. package/dist/assets/hydrogen/starter/app/routes/discount.$code.tsx +47 -0
  61. package/dist/assets/hydrogen/starter/app/routes/pages.$handle.tsx +84 -0
  62. package/dist/assets/hydrogen/starter/app/routes/policies.$handle.tsx +93 -0
  63. package/dist/assets/hydrogen/starter/app/routes/policies._index.tsx +63 -0
  64. package/dist/assets/hydrogen/starter/app/routes/products.$handle.tsx +299 -0
  65. package/dist/assets/hydrogen/starter/app/routes/search.tsx +177 -0
  66. package/dist/assets/hydrogen/starter/app/styles/app.css +486 -0
  67. package/dist/assets/hydrogen/starter/app/styles/reset.css +129 -0
  68. package/dist/assets/hydrogen/starter/customer-accountapi.generated.d.ts +509 -0
  69. package/dist/assets/hydrogen/starter/env.d.ts +54 -0
  70. package/dist/assets/hydrogen/starter/package.json +50 -0
  71. package/dist/assets/hydrogen/starter/public/.gitkeep +0 -0
  72. package/dist/assets/hydrogen/starter/server.ts +119 -0
  73. package/dist/assets/hydrogen/starter/storefrontapi.generated.d.ts +1211 -0
  74. package/dist/assets/hydrogen/starter/tsconfig.json +23 -0
  75. package/dist/assets/hydrogen/starter/vite.config.ts +41 -0
  76. package/dist/assets/hydrogen/tailwind/package.json +8 -0
  77. package/dist/assets/hydrogen/tailwind/tailwind.css +6 -0
  78. package/dist/assets/hydrogen/vanilla-extract/package.json +8 -0
  79. package/dist/assets/hydrogen/virtual-routes/assets/debug-network.css +592 -0
  80. package/dist/assets/hydrogen/virtual-routes/assets/favicon-dark.svg +20 -0
  81. package/dist/assets/hydrogen/virtual-routes/assets/favicon.svg +28 -0
  82. package/dist/assets/hydrogen/virtual-routes/assets/inter-variable-font.woff2 +0 -0
  83. package/dist/assets/hydrogen/virtual-routes/assets/jetbrainsmono-variable-font.woff2 +0 -0
  84. package/dist/assets/hydrogen/virtual-routes/assets/styles.css +238 -0
  85. package/dist/assets/hydrogen/virtual-routes/components/FlameChartWrapper.jsx +123 -0
  86. package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseBW.jsx +32 -0
  87. package/dist/assets/hydrogen/virtual-routes/components/HydrogenLogoBaseColor.jsx +47 -0
  88. package/dist/assets/hydrogen/virtual-routes/components/IconBanner.jsx +292 -0
  89. package/dist/assets/hydrogen/virtual-routes/components/IconClose.jsx +38 -0
  90. package/dist/assets/hydrogen/virtual-routes/components/IconDiscard.jsx +44 -0
  91. package/dist/assets/hydrogen/virtual-routes/components/IconError.jsx +61 -0
  92. package/dist/assets/hydrogen/virtual-routes/components/IconGithub.jsx +23 -0
  93. package/dist/assets/hydrogen/virtual-routes/components/IconTwitter.jsx +21 -0
  94. package/dist/assets/hydrogen/virtual-routes/components/PageLayout.jsx +7 -0
  95. package/dist/assets/hydrogen/virtual-routes/components/RequestDetails.jsx +178 -0
  96. package/dist/assets/hydrogen/virtual-routes/components/RequestTable.jsx +91 -0
  97. package/dist/assets/hydrogen/virtual-routes/components/RequestWaterfall.jsx +151 -0
  98. package/dist/assets/hydrogen/virtual-routes/lib/useDebugNetworkServer.jsx +178 -0
  99. package/dist/assets/hydrogen/virtual-routes/routes/graphiql.jsx +5 -0
  100. package/dist/assets/hydrogen/virtual-routes/routes/index.jsx +265 -0
  101. package/dist/assets/hydrogen/virtual-routes/routes/subrequest-profiler.jsx +243 -0
  102. package/dist/assets/hydrogen/virtual-routes/virtual-root.jsx +64 -0
  103. package/dist/assets/hydrogen/vite/package.json +14 -0
  104. package/dist/assets/hydrogen/vite/vite.config.js +41 -0
  105. package/dist/chokidar-2CKIHN27.js +12 -0
  106. package/dist/chunk-EO6F7WJJ.js +2 -0
  107. package/dist/chunk-FB327AH7.js +5 -0
  108. package/dist/chunk-FJPX4XUR.js +2 -0
  109. package/dist/chunk-JKOXGRAA.js +10 -0
  110. package/dist/chunk-LNQWGFTB.js +45 -0
  111. package/dist/chunk-M6JXYI3V.js +23 -0
  112. package/dist/chunk-MNT4XW23.js +2 -0
  113. package/dist/chunk-N7HFZHSO.js +1145 -0
  114. package/dist/chunk-PMDMUCNY.js +2 -0
  115. package/dist/chunk-QGLB6FFL.js +3 -0
  116. package/dist/chunk-VMIOG46Y.js +2 -0
  117. package/dist/create-app.js +1867 -34
  118. package/dist/del-CZGKV5SQ.js +11 -0
  119. package/dist/devtools-ZCRGQE64.js +8 -0
  120. package/dist/error-handler-GEQXZJ25.js +2 -0
  121. package/dist/lib-NJYCLW6W.js +22 -0
  122. package/dist/morph-ZJCCGFNC.js +30499 -0
  123. package/dist/multipart-parser-6HGDQWV7.js +3 -0
  124. package/dist/open-OD6DRFEG.js +2 -0
  125. package/dist/out-7KAQXZLP.js +2 -0
  126. package/dist/yoga.wasm +0 -0
  127. package/package.json +7 -3
@@ -0,0 +1,1211 @@
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
+ };
40
+
41
+ export type CartApiQueryFragment = Pick<
42
+ StorefrontAPI.Cart,
43
+ 'updatedAt' | 'id' | 'checkoutUrl' | 'totalQuantity' | 'note'
44
+ > & {
45
+ buyerIdentity: Pick<
46
+ StorefrontAPI.CartBuyerIdentity,
47
+ 'countryCode' | 'email' | 'phone'
48
+ > & {
49
+ customer?: StorefrontAPI.Maybe<
50
+ Pick<
51
+ StorefrontAPI.Customer,
52
+ 'id' | 'email' | 'firstName' | 'lastName' | 'displayName'
53
+ >
54
+ >;
55
+ };
56
+ lines: {
57
+ nodes: Array<
58
+ Pick<StorefrontAPI.CartLine, 'id' | 'quantity'> & {
59
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
60
+ cost: {
61
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
62
+ amountPerQuantity: Pick<
63
+ StorefrontAPI.MoneyV2,
64
+ 'currencyCode' | 'amount'
65
+ >;
66
+ compareAtAmountPerQuantity?: StorefrontAPI.Maybe<
67
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
68
+ >;
69
+ };
70
+ merchandise: Pick<
71
+ StorefrontAPI.ProductVariant,
72
+ 'id' | 'availableForSale' | 'requiresShipping' | 'title'
73
+ > & {
74
+ compareAtPrice?: StorefrontAPI.Maybe<
75
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
76
+ >;
77
+ price: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
78
+ image?: StorefrontAPI.Maybe<
79
+ Pick<
80
+ StorefrontAPI.Image,
81
+ 'id' | 'url' | 'altText' | 'width' | 'height'
82
+ >
83
+ >;
84
+ product: Pick<
85
+ StorefrontAPI.Product,
86
+ 'handle' | 'title' | 'id' | 'vendor'
87
+ >;
88
+ selectedOptions: Array<
89
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
90
+ >;
91
+ };
92
+ }
93
+ >;
94
+ };
95
+ cost: {
96
+ subtotalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
97
+ totalAmount: Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>;
98
+ totalDutyAmount?: StorefrontAPI.Maybe<
99
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
100
+ >;
101
+ totalTaxAmount?: StorefrontAPI.Maybe<
102
+ Pick<StorefrontAPI.MoneyV2, 'currencyCode' | 'amount'>
103
+ >;
104
+ };
105
+ attributes: Array<Pick<StorefrontAPI.Attribute, 'key' | 'value'>>;
106
+ discountCodes: Array<
107
+ Pick<StorefrontAPI.CartDiscountCode, 'code' | 'applicable'>
108
+ >;
109
+ };
110
+
111
+ export type MenuItemFragment = Pick<
112
+ StorefrontAPI.MenuItem,
113
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
114
+ >;
115
+
116
+ export type ChildMenuItemFragment = Pick<
117
+ StorefrontAPI.MenuItem,
118
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
119
+ >;
120
+
121
+ export type ParentMenuItemFragment = Pick<
122
+ StorefrontAPI.MenuItem,
123
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
124
+ > & {
125
+ items: Array<
126
+ Pick<
127
+ StorefrontAPI.MenuItem,
128
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
129
+ >
130
+ >;
131
+ };
132
+
133
+ export type MenuFragment = Pick<StorefrontAPI.Menu, 'id'> & {
134
+ items: Array<
135
+ Pick<
136
+ StorefrontAPI.MenuItem,
137
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
138
+ > & {
139
+ items: Array<
140
+ Pick<
141
+ StorefrontAPI.MenuItem,
142
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
143
+ >
144
+ >;
145
+ }
146
+ >;
147
+ };
148
+
149
+ export type ShopFragment = Pick<
150
+ StorefrontAPI.Shop,
151
+ 'id' | 'name' | 'description'
152
+ > & {
153
+ primaryDomain: Pick<StorefrontAPI.Domain, 'url'>;
154
+ brand?: StorefrontAPI.Maybe<{
155
+ logo?: StorefrontAPI.Maybe<{
156
+ image?: StorefrontAPI.Maybe<Pick<StorefrontAPI.Image, 'url'>>;
157
+ }>;
158
+ }>;
159
+ };
160
+
161
+ export type HeaderQueryVariables = StorefrontAPI.Exact<{
162
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
163
+ headerMenuHandle: StorefrontAPI.Scalars['String']['input'];
164
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
165
+ }>;
166
+
167
+ export type HeaderQuery = {
168
+ shop: Pick<StorefrontAPI.Shop, 'id' | 'name' | 'description'> & {
169
+ primaryDomain: Pick<StorefrontAPI.Domain, 'url'>;
170
+ brand?: StorefrontAPI.Maybe<{
171
+ logo?: StorefrontAPI.Maybe<{
172
+ image?: StorefrontAPI.Maybe<Pick<StorefrontAPI.Image, 'url'>>;
173
+ }>;
174
+ }>;
175
+ };
176
+ menu?: StorefrontAPI.Maybe<
177
+ Pick<StorefrontAPI.Menu, 'id'> & {
178
+ items: Array<
179
+ Pick<
180
+ StorefrontAPI.MenuItem,
181
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
182
+ > & {
183
+ items: Array<
184
+ Pick<
185
+ StorefrontAPI.MenuItem,
186
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
187
+ >
188
+ >;
189
+ }
190
+ >;
191
+ }
192
+ >;
193
+ };
194
+
195
+ export type FooterQueryVariables = StorefrontAPI.Exact<{
196
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
197
+ footerMenuHandle: StorefrontAPI.Scalars['String']['input'];
198
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
199
+ }>;
200
+
201
+ export type FooterQuery = {
202
+ menu?: StorefrontAPI.Maybe<
203
+ Pick<StorefrontAPI.Menu, 'id'> & {
204
+ items: Array<
205
+ Pick<
206
+ StorefrontAPI.MenuItem,
207
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
208
+ > & {
209
+ items: Array<
210
+ Pick<
211
+ StorefrontAPI.MenuItem,
212
+ 'id' | 'resourceId' | 'tags' | 'title' | 'type' | 'url'
213
+ >
214
+ >;
215
+ }
216
+ >;
217
+ }
218
+ >;
219
+ };
220
+
221
+ export type StoreRobotsQueryVariables = StorefrontAPI.Exact<{
222
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
223
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
224
+ }>;
225
+
226
+ export type StoreRobotsQuery = {shop: Pick<StorefrontAPI.Shop, 'id'>};
227
+
228
+ export type SitemapQueryVariables = StorefrontAPI.Exact<{
229
+ urlLimits?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
230
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
231
+ }>;
232
+
233
+ export type SitemapQuery = {
234
+ products: {
235
+ nodes: Array<
236
+ Pick<
237
+ StorefrontAPI.Product,
238
+ 'updatedAt' | 'handle' | 'onlineStoreUrl' | 'title'
239
+ > & {
240
+ featuredImage?: StorefrontAPI.Maybe<
241
+ Pick<StorefrontAPI.Image, 'url' | 'altText'>
242
+ >;
243
+ }
244
+ >;
245
+ };
246
+ collections: {
247
+ nodes: Array<
248
+ Pick<StorefrontAPI.Collection, 'updatedAt' | 'handle' | 'onlineStoreUrl'>
249
+ >;
250
+ };
251
+ pages: {
252
+ nodes: Array<
253
+ Pick<StorefrontAPI.Page, 'updatedAt' | 'handle' | 'onlineStoreUrl'>
254
+ >;
255
+ };
256
+ };
257
+
258
+ export type FeaturedCollectionFragment = Pick<
259
+ StorefrontAPI.Collection,
260
+ 'id' | 'title' | 'handle'
261
+ > & {
262
+ image?: StorefrontAPI.Maybe<
263
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
264
+ >;
265
+ };
266
+
267
+ export type FeaturedCollectionQueryVariables = StorefrontAPI.Exact<{
268
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
269
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
270
+ }>;
271
+
272
+ export type FeaturedCollectionQuery = {
273
+ collections: {
274
+ nodes: Array<
275
+ Pick<StorefrontAPI.Collection, 'id' | 'title' | 'handle'> & {
276
+ image?: StorefrontAPI.Maybe<
277
+ Pick<
278
+ StorefrontAPI.Image,
279
+ 'id' | 'url' | 'altText' | 'width' | 'height'
280
+ >
281
+ >;
282
+ }
283
+ >;
284
+ };
285
+ };
286
+
287
+ export type RecommendedProductFragment = Pick<
288
+ StorefrontAPI.Product,
289
+ 'id' | 'title' | 'handle'
290
+ > & {
291
+ priceRange: {
292
+ minVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
293
+ };
294
+ images: {
295
+ nodes: Array<
296
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
297
+ >;
298
+ };
299
+ };
300
+
301
+ export type RecommendedProductsQueryVariables = StorefrontAPI.Exact<{
302
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
303
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
304
+ }>;
305
+
306
+ export type RecommendedProductsQuery = {
307
+ products: {
308
+ nodes: Array<
309
+ Pick<StorefrontAPI.Product, 'id' | 'title' | 'handle'> & {
310
+ priceRange: {
311
+ minVariantPrice: Pick<
312
+ StorefrontAPI.MoneyV2,
313
+ 'amount' | 'currencyCode'
314
+ >;
315
+ };
316
+ images: {
317
+ nodes: Array<
318
+ Pick<
319
+ StorefrontAPI.Image,
320
+ 'id' | 'url' | 'altText' | 'width' | 'height'
321
+ >
322
+ >;
323
+ };
324
+ }
325
+ >;
326
+ };
327
+ };
328
+
329
+ export type PredictiveArticleFragment = {__typename: 'Article'} & Pick<
330
+ StorefrontAPI.Article,
331
+ 'id' | 'title' | 'handle' | 'trackingParameters'
332
+ > & {
333
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
334
+ image?: StorefrontAPI.Maybe<
335
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
336
+ >;
337
+ };
338
+
339
+ export type PredictiveCollectionFragment = {__typename: 'Collection'} & Pick<
340
+ StorefrontAPI.Collection,
341
+ 'id' | 'title' | 'handle' | 'trackingParameters'
342
+ > & {
343
+ image?: StorefrontAPI.Maybe<
344
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
345
+ >;
346
+ };
347
+
348
+ export type PredictivePageFragment = {__typename: 'Page'} & Pick<
349
+ StorefrontAPI.Page,
350
+ 'id' | 'title' | 'handle' | 'trackingParameters'
351
+ >;
352
+
353
+ export type PredictiveProductFragment = {__typename: 'Product'} & Pick<
354
+ StorefrontAPI.Product,
355
+ 'id' | 'title' | 'handle' | 'trackingParameters'
356
+ > & {
357
+ variants: {
358
+ nodes: Array<
359
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
360
+ image?: StorefrontAPI.Maybe<
361
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
362
+ >;
363
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
364
+ }
365
+ >;
366
+ };
367
+ };
368
+
369
+ export type PredictiveQueryFragment = {
370
+ __typename: 'SearchQuerySuggestion';
371
+ } & Pick<
372
+ StorefrontAPI.SearchQuerySuggestion,
373
+ 'text' | 'styledText' | 'trackingParameters'
374
+ >;
375
+
376
+ export type PredictiveSearchQueryVariables = StorefrontAPI.Exact<{
377
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
378
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
379
+ limit: StorefrontAPI.Scalars['Int']['input'];
380
+ limitScope: StorefrontAPI.PredictiveSearchLimitScope;
381
+ searchTerm: StorefrontAPI.Scalars['String']['input'];
382
+ types?: StorefrontAPI.InputMaybe<
383
+ | Array<StorefrontAPI.PredictiveSearchType>
384
+ | StorefrontAPI.PredictiveSearchType
385
+ >;
386
+ }>;
387
+
388
+ export type PredictiveSearchQuery = {
389
+ predictiveSearch?: StorefrontAPI.Maybe<{
390
+ articles: Array<
391
+ {__typename: 'Article'} & Pick<
392
+ StorefrontAPI.Article,
393
+ 'id' | 'title' | 'handle' | 'trackingParameters'
394
+ > & {
395
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
396
+ image?: StorefrontAPI.Maybe<
397
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
398
+ >;
399
+ }
400
+ >;
401
+ collections: Array<
402
+ {__typename: 'Collection'} & Pick<
403
+ StorefrontAPI.Collection,
404
+ 'id' | 'title' | 'handle' | 'trackingParameters'
405
+ > & {
406
+ image?: StorefrontAPI.Maybe<
407
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
408
+ >;
409
+ }
410
+ >;
411
+ pages: Array<
412
+ {__typename: 'Page'} & Pick<
413
+ StorefrontAPI.Page,
414
+ 'id' | 'title' | 'handle' | 'trackingParameters'
415
+ >
416
+ >;
417
+ products: Array<
418
+ {__typename: 'Product'} & Pick<
419
+ StorefrontAPI.Product,
420
+ 'id' | 'title' | 'handle' | 'trackingParameters'
421
+ > & {
422
+ variants: {
423
+ nodes: Array<
424
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
425
+ image?: StorefrontAPI.Maybe<
426
+ Pick<
427
+ StorefrontAPI.Image,
428
+ 'url' | 'altText' | 'width' | 'height'
429
+ >
430
+ >;
431
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
432
+ }
433
+ >;
434
+ };
435
+ }
436
+ >;
437
+ queries: Array<
438
+ {__typename: 'SearchQuerySuggestion'} & Pick<
439
+ StorefrontAPI.SearchQuerySuggestion,
440
+ 'text' | 'styledText' | 'trackingParameters'
441
+ >
442
+ >;
443
+ }>;
444
+ };
445
+
446
+ export type ArticleQueryVariables = StorefrontAPI.Exact<{
447
+ articleHandle: StorefrontAPI.Scalars['String']['input'];
448
+ blogHandle: StorefrontAPI.Scalars['String']['input'];
449
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
450
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
451
+ }>;
452
+
453
+ export type ArticleQuery = {
454
+ blog?: StorefrontAPI.Maybe<{
455
+ articleByHandle?: StorefrontAPI.Maybe<
456
+ Pick<StorefrontAPI.Article, 'title' | 'contentHtml' | 'publishedAt'> & {
457
+ author?: StorefrontAPI.Maybe<Pick<StorefrontAPI.ArticleAuthor, 'name'>>;
458
+ image?: StorefrontAPI.Maybe<
459
+ Pick<
460
+ StorefrontAPI.Image,
461
+ 'id' | 'altText' | 'url' | 'width' | 'height'
462
+ >
463
+ >;
464
+ seo?: StorefrontAPI.Maybe<
465
+ Pick<StorefrontAPI.Seo, 'description' | 'title'>
466
+ >;
467
+ }
468
+ >;
469
+ }>;
470
+ };
471
+
472
+ export type BlogQueryVariables = StorefrontAPI.Exact<{
473
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
474
+ blogHandle: StorefrontAPI.Scalars['String']['input'];
475
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
476
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
477
+ startCursor?: StorefrontAPI.InputMaybe<
478
+ StorefrontAPI.Scalars['String']['input']
479
+ >;
480
+ endCursor?: StorefrontAPI.InputMaybe<
481
+ StorefrontAPI.Scalars['String']['input']
482
+ >;
483
+ }>;
484
+
485
+ export type BlogQuery = {
486
+ blog?: StorefrontAPI.Maybe<
487
+ Pick<StorefrontAPI.Blog, 'title'> & {
488
+ seo?: StorefrontAPI.Maybe<
489
+ Pick<StorefrontAPI.Seo, 'title' | 'description'>
490
+ >;
491
+ articles: {
492
+ nodes: Array<
493
+ Pick<
494
+ StorefrontAPI.Article,
495
+ 'contentHtml' | 'handle' | 'id' | 'publishedAt' | 'title'
496
+ > & {
497
+ author?: StorefrontAPI.Maybe<
498
+ Pick<StorefrontAPI.ArticleAuthor, 'name'>
499
+ >;
500
+ image?: StorefrontAPI.Maybe<
501
+ Pick<
502
+ StorefrontAPI.Image,
503
+ 'id' | 'altText' | 'url' | 'width' | 'height'
504
+ >
505
+ >;
506
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
507
+ }
508
+ >;
509
+ pageInfo: Pick<
510
+ StorefrontAPI.PageInfo,
511
+ 'hasPreviousPage' | 'hasNextPage' | 'endCursor' | 'startCursor'
512
+ >;
513
+ };
514
+ }
515
+ >;
516
+ };
517
+
518
+ export type ArticleItemFragment = Pick<
519
+ StorefrontAPI.Article,
520
+ 'contentHtml' | 'handle' | 'id' | 'publishedAt' | 'title'
521
+ > & {
522
+ author?: StorefrontAPI.Maybe<Pick<StorefrontAPI.ArticleAuthor, 'name'>>;
523
+ image?: StorefrontAPI.Maybe<
524
+ Pick<StorefrontAPI.Image, 'id' | 'altText' | 'url' | 'width' | 'height'>
525
+ >;
526
+ blog: Pick<StorefrontAPI.Blog, 'handle'>;
527
+ };
528
+
529
+ export type BlogsQueryVariables = StorefrontAPI.Exact<{
530
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
531
+ endCursor?: StorefrontAPI.InputMaybe<
532
+ StorefrontAPI.Scalars['String']['input']
533
+ >;
534
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
535
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
536
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
537
+ startCursor?: StorefrontAPI.InputMaybe<
538
+ StorefrontAPI.Scalars['String']['input']
539
+ >;
540
+ }>;
541
+
542
+ export type BlogsQuery = {
543
+ blogs: {
544
+ pageInfo: Pick<
545
+ StorefrontAPI.PageInfo,
546
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
547
+ >;
548
+ nodes: Array<
549
+ Pick<StorefrontAPI.Blog, 'title' | 'handle'> & {
550
+ seo?: StorefrontAPI.Maybe<
551
+ Pick<StorefrontAPI.Seo, 'title' | 'description'>
552
+ >;
553
+ }
554
+ >;
555
+ };
556
+ };
557
+
558
+ export type MoneyProductItemFragment = Pick<
559
+ StorefrontAPI.MoneyV2,
560
+ 'amount' | 'currencyCode'
561
+ >;
562
+
563
+ export type ProductItemFragment = Pick<
564
+ StorefrontAPI.Product,
565
+ 'id' | 'handle' | 'title'
566
+ > & {
567
+ featuredImage?: StorefrontAPI.Maybe<
568
+ Pick<StorefrontAPI.Image, 'id' | 'altText' | 'url' | 'width' | 'height'>
569
+ >;
570
+ priceRange: {
571
+ minVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
572
+ maxVariantPrice: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
573
+ };
574
+ variants: {
575
+ nodes: Array<{
576
+ selectedOptions: Array<
577
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
578
+ >;
579
+ }>;
580
+ };
581
+ };
582
+
583
+ export type CollectionQueryVariables = StorefrontAPI.Exact<{
584
+ handle: StorefrontAPI.Scalars['String']['input'];
585
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
586
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
587
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
588
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
589
+ startCursor?: StorefrontAPI.InputMaybe<
590
+ StorefrontAPI.Scalars['String']['input']
591
+ >;
592
+ endCursor?: StorefrontAPI.InputMaybe<
593
+ StorefrontAPI.Scalars['String']['input']
594
+ >;
595
+ }>;
596
+
597
+ export type CollectionQuery = {
598
+ collection?: StorefrontAPI.Maybe<
599
+ Pick<
600
+ StorefrontAPI.Collection,
601
+ 'id' | 'handle' | 'title' | 'description'
602
+ > & {
603
+ products: {
604
+ nodes: Array<
605
+ Pick<StorefrontAPI.Product, 'id' | 'handle' | 'title'> & {
606
+ featuredImage?: StorefrontAPI.Maybe<
607
+ Pick<
608
+ StorefrontAPI.Image,
609
+ 'id' | 'altText' | 'url' | 'width' | 'height'
610
+ >
611
+ >;
612
+ priceRange: {
613
+ minVariantPrice: Pick<
614
+ StorefrontAPI.MoneyV2,
615
+ 'amount' | 'currencyCode'
616
+ >;
617
+ maxVariantPrice: Pick<
618
+ StorefrontAPI.MoneyV2,
619
+ 'amount' | 'currencyCode'
620
+ >;
621
+ };
622
+ variants: {
623
+ nodes: Array<{
624
+ selectedOptions: Array<
625
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
626
+ >;
627
+ }>;
628
+ };
629
+ }
630
+ >;
631
+ pageInfo: Pick<
632
+ StorefrontAPI.PageInfo,
633
+ 'hasPreviousPage' | 'hasNextPage' | 'endCursor' | 'startCursor'
634
+ >;
635
+ };
636
+ }
637
+ >;
638
+ };
639
+
640
+ export type CollectionFragment = Pick<
641
+ StorefrontAPI.Collection,
642
+ 'id' | 'title' | 'handle'
643
+ > & {
644
+ image?: StorefrontAPI.Maybe<
645
+ Pick<StorefrontAPI.Image, 'id' | 'url' | 'altText' | 'width' | 'height'>
646
+ >;
647
+ };
648
+
649
+ export type StoreCollectionsQueryVariables = StorefrontAPI.Exact<{
650
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
651
+ endCursor?: StorefrontAPI.InputMaybe<
652
+ StorefrontAPI.Scalars['String']['input']
653
+ >;
654
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
655
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
656
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
657
+ startCursor?: StorefrontAPI.InputMaybe<
658
+ StorefrontAPI.Scalars['String']['input']
659
+ >;
660
+ }>;
661
+
662
+ export type StoreCollectionsQuery = {
663
+ collections: {
664
+ nodes: Array<
665
+ Pick<StorefrontAPI.Collection, 'id' | 'title' | 'handle'> & {
666
+ image?: StorefrontAPI.Maybe<
667
+ Pick<
668
+ StorefrontAPI.Image,
669
+ 'id' | 'url' | 'altText' | 'width' | 'height'
670
+ >
671
+ >;
672
+ }
673
+ >;
674
+ pageInfo: Pick<
675
+ StorefrontAPI.PageInfo,
676
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
677
+ >;
678
+ };
679
+ };
680
+
681
+ export type CatalogQueryVariables = StorefrontAPI.Exact<{
682
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
683
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
684
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
685
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
686
+ startCursor?: StorefrontAPI.InputMaybe<
687
+ StorefrontAPI.Scalars['String']['input']
688
+ >;
689
+ endCursor?: StorefrontAPI.InputMaybe<
690
+ StorefrontAPI.Scalars['String']['input']
691
+ >;
692
+ }>;
693
+
694
+ export type CatalogQuery = {
695
+ products: {
696
+ nodes: Array<
697
+ Pick<StorefrontAPI.Product, 'id' | 'handle' | 'title'> & {
698
+ featuredImage?: StorefrontAPI.Maybe<
699
+ Pick<
700
+ StorefrontAPI.Image,
701
+ 'id' | 'altText' | 'url' | 'width' | 'height'
702
+ >
703
+ >;
704
+ priceRange: {
705
+ minVariantPrice: Pick<
706
+ StorefrontAPI.MoneyV2,
707
+ 'amount' | 'currencyCode'
708
+ >;
709
+ maxVariantPrice: Pick<
710
+ StorefrontAPI.MoneyV2,
711
+ 'amount' | 'currencyCode'
712
+ >;
713
+ };
714
+ variants: {
715
+ nodes: Array<{
716
+ selectedOptions: Array<
717
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
718
+ >;
719
+ }>;
720
+ };
721
+ }
722
+ >;
723
+ pageInfo: Pick<
724
+ StorefrontAPI.PageInfo,
725
+ 'hasPreviousPage' | 'hasNextPage' | 'startCursor' | 'endCursor'
726
+ >;
727
+ };
728
+ };
729
+
730
+ export type PageQueryVariables = StorefrontAPI.Exact<{
731
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
732
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
733
+ handle: StorefrontAPI.Scalars['String']['input'];
734
+ }>;
735
+
736
+ export type PageQuery = {
737
+ page?: StorefrontAPI.Maybe<
738
+ Pick<StorefrontAPI.Page, 'id' | 'title' | 'body'> & {
739
+ seo?: StorefrontAPI.Maybe<
740
+ Pick<StorefrontAPI.Seo, 'description' | 'title'>
741
+ >;
742
+ }
743
+ >;
744
+ };
745
+
746
+ export type PolicyFragment = Pick<
747
+ StorefrontAPI.ShopPolicy,
748
+ 'body' | 'handle' | 'id' | 'title' | 'url'
749
+ >;
750
+
751
+ export type PolicyQueryVariables = StorefrontAPI.Exact<{
752
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
753
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
754
+ privacyPolicy: StorefrontAPI.Scalars['Boolean']['input'];
755
+ refundPolicy: StorefrontAPI.Scalars['Boolean']['input'];
756
+ shippingPolicy: StorefrontAPI.Scalars['Boolean']['input'];
757
+ termsOfService: StorefrontAPI.Scalars['Boolean']['input'];
758
+ }>;
759
+
760
+ export type PolicyQuery = {
761
+ shop: {
762
+ privacyPolicy?: StorefrontAPI.Maybe<
763
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
764
+ >;
765
+ shippingPolicy?: StorefrontAPI.Maybe<
766
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
767
+ >;
768
+ termsOfService?: StorefrontAPI.Maybe<
769
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
770
+ >;
771
+ refundPolicy?: StorefrontAPI.Maybe<
772
+ Pick<StorefrontAPI.ShopPolicy, 'body' | 'handle' | 'id' | 'title' | 'url'>
773
+ >;
774
+ };
775
+ };
776
+
777
+ export type PolicyItemFragment = Pick<
778
+ StorefrontAPI.ShopPolicy,
779
+ 'id' | 'title' | 'handle'
780
+ >;
781
+
782
+ export type PoliciesQueryVariables = StorefrontAPI.Exact<{
783
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
784
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
785
+ }>;
786
+
787
+ export type PoliciesQuery = {
788
+ shop: {
789
+ privacyPolicy?: StorefrontAPI.Maybe<
790
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
791
+ >;
792
+ shippingPolicy?: StorefrontAPI.Maybe<
793
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
794
+ >;
795
+ termsOfService?: StorefrontAPI.Maybe<
796
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
797
+ >;
798
+ refundPolicy?: StorefrontAPI.Maybe<
799
+ Pick<StorefrontAPI.ShopPolicy, 'id' | 'title' | 'handle'>
800
+ >;
801
+ subscriptionPolicy?: StorefrontAPI.Maybe<
802
+ Pick<StorefrontAPI.ShopPolicyWithDefault, 'id' | 'title' | 'handle'>
803
+ >;
804
+ };
805
+ };
806
+
807
+ export type ProductVariantFragment = Pick<
808
+ StorefrontAPI.ProductVariant,
809
+ 'availableForSale' | 'id' | 'sku' | 'title'
810
+ > & {
811
+ compareAtPrice?: StorefrontAPI.Maybe<
812
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
813
+ >;
814
+ image?: StorefrontAPI.Maybe<
815
+ {__typename: 'Image'} & Pick<
816
+ StorefrontAPI.Image,
817
+ 'id' | 'url' | 'altText' | 'width' | 'height'
818
+ >
819
+ >;
820
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
821
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
822
+ selectedOptions: Array<Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>>;
823
+ unitPrice?: StorefrontAPI.Maybe<
824
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
825
+ >;
826
+ };
827
+
828
+ export type ProductFragment = Pick<
829
+ StorefrontAPI.Product,
830
+ 'id' | 'title' | 'vendor' | 'handle' | 'descriptionHtml' | 'description'
831
+ > & {
832
+ options: Array<Pick<StorefrontAPI.ProductOption, 'name' | 'values'>>;
833
+ selectedVariant?: StorefrontAPI.Maybe<
834
+ Pick<
835
+ StorefrontAPI.ProductVariant,
836
+ 'availableForSale' | 'id' | 'sku' | 'title'
837
+ > & {
838
+ compareAtPrice?: StorefrontAPI.Maybe<
839
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
840
+ >;
841
+ image?: StorefrontAPI.Maybe<
842
+ {__typename: 'Image'} & Pick<
843
+ StorefrontAPI.Image,
844
+ 'id' | 'url' | 'altText' | 'width' | 'height'
845
+ >
846
+ >;
847
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
848
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
849
+ selectedOptions: Array<
850
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
851
+ >;
852
+ unitPrice?: StorefrontAPI.Maybe<
853
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
854
+ >;
855
+ }
856
+ >;
857
+ variants: {
858
+ nodes: Array<
859
+ Pick<
860
+ StorefrontAPI.ProductVariant,
861
+ 'availableForSale' | 'id' | 'sku' | 'title'
862
+ > & {
863
+ compareAtPrice?: StorefrontAPI.Maybe<
864
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
865
+ >;
866
+ image?: StorefrontAPI.Maybe<
867
+ {__typename: 'Image'} & Pick<
868
+ StorefrontAPI.Image,
869
+ 'id' | 'url' | 'altText' | 'width' | 'height'
870
+ >
871
+ >;
872
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
873
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
874
+ selectedOptions: Array<
875
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
876
+ >;
877
+ unitPrice?: StorefrontAPI.Maybe<
878
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
879
+ >;
880
+ }
881
+ >;
882
+ };
883
+ seo: Pick<StorefrontAPI.Seo, 'description' | 'title'>;
884
+ };
885
+
886
+ export type ProductQueryVariables = StorefrontAPI.Exact<{
887
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
888
+ handle: StorefrontAPI.Scalars['String']['input'];
889
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
890
+ selectedOptions:
891
+ | Array<StorefrontAPI.SelectedOptionInput>
892
+ | StorefrontAPI.SelectedOptionInput;
893
+ }>;
894
+
895
+ export type ProductQuery = {
896
+ product?: StorefrontAPI.Maybe<
897
+ Pick<
898
+ StorefrontAPI.Product,
899
+ 'id' | 'title' | 'vendor' | 'handle' | 'descriptionHtml' | 'description'
900
+ > & {
901
+ options: Array<Pick<StorefrontAPI.ProductOption, 'name' | 'values'>>;
902
+ selectedVariant?: StorefrontAPI.Maybe<
903
+ Pick<
904
+ StorefrontAPI.ProductVariant,
905
+ 'availableForSale' | 'id' | 'sku' | 'title'
906
+ > & {
907
+ compareAtPrice?: StorefrontAPI.Maybe<
908
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
909
+ >;
910
+ image?: StorefrontAPI.Maybe<
911
+ {__typename: 'Image'} & Pick<
912
+ StorefrontAPI.Image,
913
+ 'id' | 'url' | 'altText' | 'width' | 'height'
914
+ >
915
+ >;
916
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
917
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
918
+ selectedOptions: Array<
919
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
920
+ >;
921
+ unitPrice?: StorefrontAPI.Maybe<
922
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
923
+ >;
924
+ }
925
+ >;
926
+ variants: {
927
+ nodes: Array<
928
+ Pick<
929
+ StorefrontAPI.ProductVariant,
930
+ 'availableForSale' | 'id' | 'sku' | 'title'
931
+ > & {
932
+ compareAtPrice?: StorefrontAPI.Maybe<
933
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
934
+ >;
935
+ image?: StorefrontAPI.Maybe<
936
+ {__typename: 'Image'} & Pick<
937
+ StorefrontAPI.Image,
938
+ 'id' | 'url' | 'altText' | 'width' | 'height'
939
+ >
940
+ >;
941
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
942
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
943
+ selectedOptions: Array<
944
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
945
+ >;
946
+ unitPrice?: StorefrontAPI.Maybe<
947
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
948
+ >;
949
+ }
950
+ >;
951
+ };
952
+ seo: Pick<StorefrontAPI.Seo, 'description' | 'title'>;
953
+ }
954
+ >;
955
+ };
956
+
957
+ export type ProductVariantsFragment = {
958
+ variants: {
959
+ nodes: Array<
960
+ Pick<
961
+ StorefrontAPI.ProductVariant,
962
+ 'availableForSale' | 'id' | 'sku' | 'title'
963
+ > & {
964
+ compareAtPrice?: StorefrontAPI.Maybe<
965
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
966
+ >;
967
+ image?: StorefrontAPI.Maybe<
968
+ {__typename: 'Image'} & Pick<
969
+ StorefrontAPI.Image,
970
+ 'id' | 'url' | 'altText' | 'width' | 'height'
971
+ >
972
+ >;
973
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
974
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
975
+ selectedOptions: Array<
976
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
977
+ >;
978
+ unitPrice?: StorefrontAPI.Maybe<
979
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
980
+ >;
981
+ }
982
+ >;
983
+ };
984
+ };
985
+
986
+ export type ProductVariantsQueryVariables = StorefrontAPI.Exact<{
987
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
988
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
989
+ handle: StorefrontAPI.Scalars['String']['input'];
990
+ }>;
991
+
992
+ export type ProductVariantsQuery = {
993
+ product?: StorefrontAPI.Maybe<{
994
+ variants: {
995
+ nodes: Array<
996
+ Pick<
997
+ StorefrontAPI.ProductVariant,
998
+ 'availableForSale' | 'id' | 'sku' | 'title'
999
+ > & {
1000
+ compareAtPrice?: StorefrontAPI.Maybe<
1001
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1002
+ >;
1003
+ image?: StorefrontAPI.Maybe<
1004
+ {__typename: 'Image'} & Pick<
1005
+ StorefrontAPI.Image,
1006
+ 'id' | 'url' | 'altText' | 'width' | 'height'
1007
+ >
1008
+ >;
1009
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1010
+ product: Pick<StorefrontAPI.Product, 'title' | 'handle'>;
1011
+ selectedOptions: Array<
1012
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1013
+ >;
1014
+ unitPrice?: StorefrontAPI.Maybe<
1015
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1016
+ >;
1017
+ }
1018
+ >;
1019
+ };
1020
+ }>;
1021
+ };
1022
+
1023
+ export type SearchProductFragment = {__typename: 'Product'} & Pick<
1024
+ StorefrontAPI.Product,
1025
+ 'handle' | 'id' | 'publishedAt' | 'title' | 'trackingParameters' | 'vendor'
1026
+ > & {
1027
+ variants: {
1028
+ nodes: Array<
1029
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
1030
+ image?: StorefrontAPI.Maybe<
1031
+ Pick<StorefrontAPI.Image, 'url' | 'altText' | 'width' | 'height'>
1032
+ >;
1033
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1034
+ compareAtPrice?: StorefrontAPI.Maybe<
1035
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1036
+ >;
1037
+ selectedOptions: Array<
1038
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1039
+ >;
1040
+ product: Pick<StorefrontAPI.Product, 'handle' | 'title'>;
1041
+ }
1042
+ >;
1043
+ };
1044
+ };
1045
+
1046
+ export type SearchPageFragment = {__typename: 'Page'} & Pick<
1047
+ StorefrontAPI.Page,
1048
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1049
+ >;
1050
+
1051
+ export type SearchArticleFragment = {__typename: 'Article'} & Pick<
1052
+ StorefrontAPI.Article,
1053
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1054
+ >;
1055
+
1056
+ export type SearchQueryVariables = StorefrontAPI.Exact<{
1057
+ country?: StorefrontAPI.InputMaybe<StorefrontAPI.CountryCode>;
1058
+ endCursor?: StorefrontAPI.InputMaybe<
1059
+ StorefrontAPI.Scalars['String']['input']
1060
+ >;
1061
+ first?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
1062
+ language?: StorefrontAPI.InputMaybe<StorefrontAPI.LanguageCode>;
1063
+ last?: StorefrontAPI.InputMaybe<StorefrontAPI.Scalars['Int']['input']>;
1064
+ query: StorefrontAPI.Scalars['String']['input'];
1065
+ startCursor?: StorefrontAPI.InputMaybe<
1066
+ StorefrontAPI.Scalars['String']['input']
1067
+ >;
1068
+ }>;
1069
+
1070
+ export type SearchQuery = {
1071
+ products: {
1072
+ nodes: Array<
1073
+ {__typename: 'Product'} & Pick<
1074
+ StorefrontAPI.Product,
1075
+ | 'handle'
1076
+ | 'id'
1077
+ | 'publishedAt'
1078
+ | 'title'
1079
+ | 'trackingParameters'
1080
+ | 'vendor'
1081
+ > & {
1082
+ variants: {
1083
+ nodes: Array<
1084
+ Pick<StorefrontAPI.ProductVariant, 'id'> & {
1085
+ image?: StorefrontAPI.Maybe<
1086
+ Pick<
1087
+ StorefrontAPI.Image,
1088
+ 'url' | 'altText' | 'width' | 'height'
1089
+ >
1090
+ >;
1091
+ price: Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>;
1092
+ compareAtPrice?: StorefrontAPI.Maybe<
1093
+ Pick<StorefrontAPI.MoneyV2, 'amount' | 'currencyCode'>
1094
+ >;
1095
+ selectedOptions: Array<
1096
+ Pick<StorefrontAPI.SelectedOption, 'name' | 'value'>
1097
+ >;
1098
+ product: Pick<StorefrontAPI.Product, 'handle' | 'title'>;
1099
+ }
1100
+ >;
1101
+ };
1102
+ }
1103
+ >;
1104
+ pageInfo: Pick<
1105
+ StorefrontAPI.PageInfo,
1106
+ 'hasNextPage' | 'hasPreviousPage' | 'startCursor' | 'endCursor'
1107
+ >;
1108
+ };
1109
+ pages: {
1110
+ nodes: Array<
1111
+ {__typename: 'Page'} & Pick<
1112
+ StorefrontAPI.Page,
1113
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1114
+ >
1115
+ >;
1116
+ };
1117
+ articles: {
1118
+ nodes: Array<
1119
+ {__typename: 'Article'} & Pick<
1120
+ StorefrontAPI.Article,
1121
+ 'handle' | 'id' | 'title' | 'trackingParameters'
1122
+ >
1123
+ >;
1124
+ };
1125
+ };
1126
+
1127
+ interface GeneratedQueryTypes {
1128
+ '#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': {
1129
+ return: HeaderQuery;
1130
+ variables: HeaderQueryVariables;
1131
+ };
1132
+ '#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': {
1133
+ return: FooterQuery;
1134
+ variables: FooterQueryVariables;
1135
+ };
1136
+ '#graphql\n query StoreRobots($country: CountryCode, $language: LanguageCode)\n @inContext(country: $country, language: $language) {\n shop {\n id\n }\n }\n': {
1137
+ return: StoreRobotsQuery;
1138
+ variables: StoreRobotsQueryVariables;
1139
+ };
1140
+ '#graphql\n query Sitemap($urlLimits: Int, $language: LanguageCode)\n @inContext(language: $language) {\n products(\n first: $urlLimits\n query: "published_status:\'online_store:visible\'"\n ) {\n nodes {\n updatedAt\n handle\n onlineStoreUrl\n title\n featuredImage {\n url\n altText\n }\n }\n }\n collections(\n first: $urlLimits\n query: "published_status:\'online_store:visible\'"\n ) {\n nodes {\n updatedAt\n handle\n onlineStoreUrl\n }\n }\n pages(first: $urlLimits, query: "published_status:\'published\'") {\n nodes {\n updatedAt\n handle\n onlineStoreUrl\n }\n }\n }\n': {
1141
+ return: SitemapQuery;
1142
+ variables: SitemapQueryVariables;
1143
+ };
1144
+ '#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': {
1145
+ return: FeaturedCollectionQuery;
1146
+ variables: FeaturedCollectionQueryVariables;
1147
+ };
1148
+ '#graphql\n fragment RecommendedProduct on Product {\n id\n title\n handle\n priceRange {\n minVariantPrice {\n amount\n currencyCode\n }\n }\n images(first: 1) {\n nodes {\n id\n url\n altText\n width\n height\n }\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': {
1149
+ return: RecommendedProductsQuery;
1150
+ variables: RecommendedProductsQueryVariables;
1151
+ };
1152
+ '#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 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 fragment PredictivePage on Page {\n __typename\n id\n title\n handle\n trackingParameters\n }\n fragment PredictiveProduct on Product {\n __typename\n id\n title\n handle\n trackingParameters\n variants(first: 1) {\n nodes {\n id\n image {\n url\n altText\n width\n height\n }\n price {\n amount\n currencyCode\n }\n }\n }\n }\n fragment PredictiveQuery on SearchQuerySuggestion {\n __typename\n text\n styledText\n trackingParameters\n }\n query predictiveSearch(\n $country: CountryCode\n $language: LanguageCode\n $limit: Int!\n $limitScope: PredictiveSearchLimitScope!\n $searchTerm: String!\n $types: [PredictiveSearchType!]\n ) @inContext(country: $country, language: $language) {\n predictiveSearch(\n limit: $limit,\n limitScope: $limitScope,\n query: $searchTerm,\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': {
1153
+ return: PredictiveSearchQuery;
1154
+ variables: PredictiveSearchQueryVariables;
1155
+ };
1156
+ '#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 articleByHandle(handle: $articleHandle) {\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': {
1157
+ return: ArticleQuery;
1158
+ variables: ArticleQueryVariables;
1159
+ };
1160
+ '#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 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': {
1161
+ return: BlogQuery;
1162
+ variables: BlogQueryVariables;
1163
+ };
1164
+ '#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': {
1165
+ return: BlogsQuery;
1166
+ variables: BlogsQueryVariables;
1167
+ };
1168
+ '#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 variants(first: 1) {\n nodes {\n selectedOptions {\n name\n value\n }\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': {
1169
+ return: CollectionQuery;
1170
+ variables: CollectionQueryVariables;
1171
+ };
1172
+ '#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': {
1173
+ return: StoreCollectionsQuery;
1174
+ variables: StoreCollectionsQueryVariables;
1175
+ };
1176
+ '#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 ...ProductItem\n }\n pageInfo {\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n }\n }\n }\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 variants(first: 1) {\n nodes {\n selectedOptions {\n name\n value\n }\n }\n }\n }\n\n': {
1177
+ return: CatalogQuery;
1178
+ variables: CatalogQueryVariables;
1179
+ };
1180
+ '#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 id\n title\n body\n seo {\n description\n title\n }\n }\n }\n': {
1181
+ return: PageQuery;
1182
+ variables: PageQueryVariables;
1183
+ };
1184
+ '#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': {
1185
+ return: PolicyQuery;
1186
+ variables: PolicyQueryVariables;
1187
+ };
1188
+ '#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': {
1189
+ return: PoliciesQuery;
1190
+ variables: PoliciesQueryVariables;
1191
+ };
1192
+ '#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 options {\n name\n values\n }\n selectedVariant: variantBySelectedOptions(selectedOptions: $selectedOptions, ignoreUnknownOptions: true, caseInsensitiveMatch: true) {\n ...ProductVariant\n }\n variants(first: 1) {\n nodes {\n ...ProductVariant\n }\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': {
1193
+ return: ProductQuery;
1194
+ variables: ProductQueryVariables;
1195
+ };
1196
+ '#graphql\n #graphql\n fragment ProductVariants on Product {\n variants(first: 250) {\n nodes {\n ...ProductVariant\n }\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 query ProductVariants(\n $country: CountryCode\n $language: LanguageCode\n $handle: String!\n ) @inContext(country: $country, language: $language) {\n product(handle: $handle) {\n ...ProductVariants\n }\n }\n': {
1197
+ return: ProductVariantsQuery;
1198
+ variables: ProductVariantsQueryVariables;
1199
+ };
1200
+ '#graphql\n fragment SearchProduct on Product {\n __typename\n handle\n id\n publishedAt\n title\n trackingParameters\n vendor\n variants(first: 1) {\n nodes {\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 fragment SearchPage on Page {\n __typename\n handle\n id\n title\n trackingParameters\n }\n fragment SearchArticle on Article {\n __typename\n handle\n id\n title\n trackingParameters\n }\n query search(\n $country: CountryCode\n $endCursor: String\n $first: Int\n $language: LanguageCode\n $last: Int\n $query: String!\n $startCursor: String\n ) @inContext(country: $country, language: $language) {\n products: search(\n query: $query,\n unavailableProducts: HIDE,\n types: [PRODUCT],\n first: $first,\n sortKey: RELEVANCE,\n last: $last,\n before: $startCursor,\n after: $endCursor\n ) {\n nodes {\n ...on Product {\n ...SearchProduct\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n }\n pages: search(\n query: $query,\n types: [PAGE],\n first: 10\n ) {\n nodes {\n ...on Page {\n ...SearchPage\n }\n }\n }\n articles: search(\n query: $query,\n types: [ARTICLE],\n first: 10\n ) {\n nodes {\n ...on Article {\n ...SearchArticle\n }\n }\n }\n }\n': {
1201
+ return: SearchQuery;
1202
+ variables: SearchQueryVariables;
1203
+ };
1204
+ }
1205
+
1206
+ interface GeneratedMutationTypes {}
1207
+
1208
+ declare module '@shopify/hydrogen' {
1209
+ interface StorefrontQueries extends GeneratedQueryTypes {}
1210
+ interface StorefrontMutations extends GeneratedMutationTypes {}
1211
+ }