@dropins/mcp 0.1.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 (103) hide show
  1. package/LICENSE.md +127 -0
  2. package/README.md +314 -0
  3. package/dist/common/project-reader.d.ts +55 -0
  4. package/dist/common/project-reader.js +173 -0
  5. package/dist/common/registry-loader.d.ts +101 -0
  6. package/dist/common/registry-loader.js +386 -0
  7. package/dist/common/response-handling.d.ts +12 -0
  8. package/dist/common/response-handling.js +21 -0
  9. package/dist/common/sanitize.d.ts +8 -0
  10. package/dist/common/sanitize.js +45 -0
  11. package/dist/common/synonyms.d.ts +9 -0
  12. package/dist/common/synonyms.js +127 -0
  13. package/dist/common/telemetry.d.ts +14 -0
  14. package/dist/common/telemetry.js +54 -0
  15. package/dist/common/types.d.ts +308 -0
  16. package/dist/common/types.js +1 -0
  17. package/dist/common/version.d.ts +2 -0
  18. package/dist/common/version.js +14 -0
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +136 -0
  21. package/dist/operations/analyze-project.d.ts +13 -0
  22. package/dist/operations/analyze-project.js +125 -0
  23. package/dist/operations/check-block-health.d.ts +19 -0
  24. package/dist/operations/check-block-health.js +1149 -0
  25. package/dist/operations/check-config.d.ts +13 -0
  26. package/dist/operations/check-config.js +228 -0
  27. package/dist/operations/explain-event-flow.d.ts +16 -0
  28. package/dist/operations/explain-event-flow.js +218 -0
  29. package/dist/operations/get-upgrade-diff.d.ts +13 -0
  30. package/dist/operations/get-upgrade-diff.js +144 -0
  31. package/dist/operations/list-api-functions.d.ts +13 -0
  32. package/dist/operations/list-api-functions.js +53 -0
  33. package/dist/operations/list-containers.d.ts +13 -0
  34. package/dist/operations/list-containers.js +44 -0
  35. package/dist/operations/list-design-tokens.d.ts +13 -0
  36. package/dist/operations/list-design-tokens.js +47 -0
  37. package/dist/operations/list-events.d.ts +16 -0
  38. package/dist/operations/list-events.js +39 -0
  39. package/dist/operations/list-graphql-queries.d.ts +19 -0
  40. package/dist/operations/list-graphql-queries.js +84 -0
  41. package/dist/operations/list-i18n-keys.d.ts +19 -0
  42. package/dist/operations/list-i18n-keys.js +105 -0
  43. package/dist/operations/list-models.d.ts +16 -0
  44. package/dist/operations/list-models.js +80 -0
  45. package/dist/operations/list-slots.d.ts +16 -0
  46. package/dist/operations/list-slots.js +81 -0
  47. package/dist/operations/scaffold-block.d.ts +31 -0
  48. package/dist/operations/scaffold-block.js +331 -0
  49. package/dist/operations/scaffold-extension.d.ts +28 -0
  50. package/dist/operations/scaffold-extension.js +346 -0
  51. package/dist/operations/scaffold-slot.d.ts +22 -0
  52. package/dist/operations/scaffold-slot.js +189 -0
  53. package/dist/operations/search-commerce-docs.d.ts +16 -0
  54. package/dist/operations/search-commerce-docs.js +101 -0
  55. package/dist/operations/search-docs.d.ts +23 -0
  56. package/dist/operations/search-docs.js +298 -0
  57. package/dist/operations/suggest-event-handler.d.ts +16 -0
  58. package/dist/operations/suggest-event-handler.js +175 -0
  59. package/dist/operations/suggest-slot-implementation.d.ts +19 -0
  60. package/dist/operations/suggest-slot-implementation.js +183 -0
  61. package/dist/registry/api-functions.json +3045 -0
  62. package/dist/registry/block-patterns.json +78 -0
  63. package/dist/registry/containers.json +2003 -0
  64. package/dist/registry/design-tokens.json +577 -0
  65. package/dist/registry/docs/boilerplate.json +55 -0
  66. package/dist/registry/docs/dropins-all.json +97 -0
  67. package/dist/registry/docs/dropins-b2b.json +607 -0
  68. package/dist/registry/docs/dropins-cart.json +163 -0
  69. package/dist/registry/docs/dropins-checkout.json +193 -0
  70. package/dist/registry/docs/dropins-order.json +139 -0
  71. package/dist/registry/docs/dropins-payment-services.json +73 -0
  72. package/dist/registry/docs/dropins-personalization.json +67 -0
  73. package/dist/registry/docs/dropins-product-details.json +139 -0
  74. package/dist/registry/docs/dropins-product-discovery.json +85 -0
  75. package/dist/registry/docs/dropins-recommendations.json +67 -0
  76. package/dist/registry/docs/dropins-user-account.json +121 -0
  77. package/dist/registry/docs/dropins-user-auth.json +103 -0
  78. package/dist/registry/docs/dropins-wishlist.json +85 -0
  79. package/dist/registry/docs/get-started.json +85 -0
  80. package/dist/registry/docs/how-tos.json +19 -0
  81. package/dist/registry/docs/index.json +139 -0
  82. package/dist/registry/docs/licensing.json +19 -0
  83. package/dist/registry/docs/merchants.json +523 -0
  84. package/dist/registry/docs/resources.json +13 -0
  85. package/dist/registry/docs/sdk.json +139 -0
  86. package/dist/registry/docs/setup.json +145 -0
  87. package/dist/registry/docs/troubleshooting.json +19 -0
  88. package/dist/registry/events.json +2200 -0
  89. package/dist/registry/examples/index.json +19 -0
  90. package/dist/registry/examples/storefront-checkout.json +377 -0
  91. package/dist/registry/examples/storefront-quote-management.json +49 -0
  92. package/dist/registry/extensions.json +272 -0
  93. package/dist/registry/graphql.json +3469 -0
  94. package/dist/registry/i18n.json +1873 -0
  95. package/dist/registry/models.json +1001 -0
  96. package/dist/registry/sdk.json +2357 -0
  97. package/dist/registry/slots.json +2270 -0
  98. package/dist/registry/tools-components.json +595 -0
  99. package/dist/resources/guides.d.ts +7 -0
  100. package/dist/resources/guides.js +625 -0
  101. package/dist/resources/handlers.d.ts +31 -0
  102. package/dist/resources/handlers.js +322 -0
  103. package/package.json +47 -0
@@ -0,0 +1,3469 @@
1
+ {
2
+ "version": "1.1.0",
3
+ "description": "GraphQL queries, mutations, and extensible fragments for each dropin",
4
+ "dropins": {
5
+ "storefront-cart": {
6
+ "version": "3.2.0",
7
+ "operationCount": 13,
8
+ "fragmentCount": 10,
9
+ "operations": [
10
+ {
11
+ "name": "ADD_PRODUCTS_TO_CART_MUTATION",
12
+ "type": "mutation",
13
+ "exportName": "ADD_PRODUCTS_TO_CART_MUTATION",
14
+ "variables": [
15
+ {
16
+ "name": "cartId",
17
+ "type": "String!"
18
+ },
19
+ {
20
+ "name": "cartItems",
21
+ "type": "[CartItemInput!]!"
22
+ },
23
+ {
24
+ "name": "pageSize",
25
+ "type": "Int!"
26
+ },
27
+ {
28
+ "name": "currentPage",
29
+ "type": "Int!"
30
+ },
31
+ {
32
+ "name": "itemsSortInput",
33
+ "type": "QuoteItemsSortInput!"
34
+ }
35
+ ],
36
+ "fragmentDependencies": [
37
+ "CART_FRAGMENT",
38
+ "CART_ITEM_FRAGMENT",
39
+ "PRICE_RANGE_FRAGMENT",
40
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
41
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
42
+ "GIFT_WRAPPING_FRAGMENT",
43
+ "GIFT_MESSAGE_FRAGMENT",
44
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
45
+ "APPLIED_GIFT_CARDS_FRAGMENT"
46
+ ]
47
+ },
48
+ {
49
+ "name": "APPLY_COUPONS_TO_CART_MUTATION",
50
+ "type": "mutation",
51
+ "exportName": "APPLY_COUPONS_TO_CART_MUTATION",
52
+ "variables": [
53
+ {
54
+ "name": "cartId",
55
+ "type": "String!"
56
+ },
57
+ {
58
+ "name": "couponCodes",
59
+ "type": "[String!]!"
60
+ },
61
+ {
62
+ "name": "type",
63
+ "type": "ApplyCouponsStrategy!"
64
+ },
65
+ {
66
+ "name": "pageSize",
67
+ "type": "Int!"
68
+ },
69
+ {
70
+ "name": "currentPage",
71
+ "type": "Int!"
72
+ },
73
+ {
74
+ "name": "itemsSortInput",
75
+ "type": "QuoteItemsSortInput!"
76
+ }
77
+ ],
78
+ "fragmentDependencies": [
79
+ "CART_FRAGMENT",
80
+ "CART_ITEM_FRAGMENT",
81
+ "PRICE_RANGE_FRAGMENT",
82
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
83
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
84
+ "GIFT_WRAPPING_FRAGMENT",
85
+ "GIFT_MESSAGE_FRAGMENT",
86
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
87
+ "APPLIED_GIFT_CARDS_FRAGMENT"
88
+ ]
89
+ },
90
+ {
91
+ "name": "APPLY_GIFT_CARD_ON_CART_MUTATION",
92
+ "type": "mutation",
93
+ "exportName": "APPLY_GIFT_CARD_ON_CART_MUTATION",
94
+ "variables": [
95
+ {
96
+ "name": "cartId",
97
+ "type": "String!"
98
+ },
99
+ {
100
+ "name": "giftCardCode",
101
+ "type": "String!"
102
+ },
103
+ {
104
+ "name": "pageSize",
105
+ "type": "Int!"
106
+ },
107
+ {
108
+ "name": "currentPage",
109
+ "type": "Int!"
110
+ },
111
+ {
112
+ "name": "itemsSortInput",
113
+ "type": "QuoteItemsSortInput!"
114
+ }
115
+ ],
116
+ "fragmentDependencies": [
117
+ "CART_FRAGMENT",
118
+ "CART_ITEM_FRAGMENT",
119
+ "PRICE_RANGE_FRAGMENT",
120
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
121
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
122
+ "GIFT_WRAPPING_FRAGMENT",
123
+ "GIFT_MESSAGE_FRAGMENT",
124
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
125
+ "APPLIED_GIFT_CARDS_FRAGMENT"
126
+ ]
127
+ },
128
+ {
129
+ "name": "CREATE_GUEST_CART_MUTATION",
130
+ "type": "mutation",
131
+ "exportName": "CREATE_GUEST_CART_MUTATION",
132
+ "variables": [],
133
+ "fragmentDependencies": []
134
+ },
135
+ {
136
+ "name": "CUSTOMER_CART_QUERY",
137
+ "type": "query",
138
+ "exportName": "CUSTOMER_CART_QUERY",
139
+ "variables": [
140
+ {
141
+ "name": "pageSize",
142
+ "type": "Int!"
143
+ },
144
+ {
145
+ "name": "currentPage",
146
+ "type": "Int!"
147
+ },
148
+ {
149
+ "name": "itemsSortInput",
150
+ "type": "QuoteItemsSortInput!"
151
+ }
152
+ ],
153
+ "fragmentDependencies": [
154
+ "CUSTOMER_FRAGMENT",
155
+ "CART_FRAGMENT",
156
+ "CART_ITEM_FRAGMENT",
157
+ "PRICE_RANGE_FRAGMENT",
158
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
159
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
160
+ "GIFT_WRAPPING_FRAGMENT",
161
+ "GIFT_MESSAGE_FRAGMENT",
162
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
163
+ "APPLIED_GIFT_CARDS_FRAGMENT"
164
+ ]
165
+ },
166
+ {
167
+ "name": "ESTIMATE_SHIPPING_METHODS_MUTATION",
168
+ "type": "mutation",
169
+ "exportName": "ESTIMATE_SHIPPING_METHODS_MUTATION",
170
+ "variables": [
171
+ {
172
+ "name": "cartId",
173
+ "type": "String!"
174
+ },
175
+ {
176
+ "name": "address",
177
+ "type": "EstimateAddressInput!"
178
+ }
179
+ ],
180
+ "fragmentDependencies": []
181
+ },
182
+ {
183
+ "name": "GET_ESTIMATED_TOTALS_MUTATION",
184
+ "type": "mutation",
185
+ "exportName": "GET_ESTIMATED_TOTALS_MUTATION",
186
+ "variables": [
187
+ {
188
+ "name": "cartId",
189
+ "type": "String!"
190
+ },
191
+ {
192
+ "name": "address",
193
+ "type": "EstimateAddressInput!"
194
+ },
195
+ {
196
+ "name": "shipping_method",
197
+ "type": "ShippingMethodInput"
198
+ },
199
+ {
200
+ "name": "pageSize",
201
+ "type": "Int!"
202
+ },
203
+ {
204
+ "name": "currentPage",
205
+ "type": "Int!"
206
+ },
207
+ {
208
+ "name": "itemsSortInput",
209
+ "type": "QuoteItemsSortInput!"
210
+ }
211
+ ],
212
+ "fragmentDependencies": [
213
+ "CART_FRAGMENT",
214
+ "CART_ITEM_FRAGMENT",
215
+ "PRICE_RANGE_FRAGMENT",
216
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
217
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
218
+ "GIFT_WRAPPING_FRAGMENT",
219
+ "GIFT_MESSAGE_FRAGMENT",
220
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
221
+ "APPLIED_GIFT_CARDS_FRAGMENT"
222
+ ]
223
+ },
224
+ {
225
+ "name": "GUEST_CART_QUERY",
226
+ "type": "query",
227
+ "exportName": "GUEST_CART_QUERY",
228
+ "variables": [
229
+ {
230
+ "name": "cartId",
231
+ "type": "String!"
232
+ },
233
+ {
234
+ "name": "pageSize",
235
+ "type": "Int!"
236
+ },
237
+ {
238
+ "name": "currentPage",
239
+ "type": "Int!"
240
+ },
241
+ {
242
+ "name": "itemsSortInput",
243
+ "type": "QuoteItemsSortInput!"
244
+ }
245
+ ],
246
+ "fragmentDependencies": [
247
+ "CART_FRAGMENT",
248
+ "CART_ITEM_FRAGMENT",
249
+ "PRICE_RANGE_FRAGMENT",
250
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
251
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
252
+ "GIFT_WRAPPING_FRAGMENT",
253
+ "GIFT_MESSAGE_FRAGMENT",
254
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
255
+ "APPLIED_GIFT_CARDS_FRAGMENT"
256
+ ]
257
+ },
258
+ {
259
+ "name": "MERGE_CARTS_MUTATION",
260
+ "type": "mutation",
261
+ "exportName": "MERGE_CARTS_MUTATION",
262
+ "variables": [
263
+ {
264
+ "name": "guestCartId",
265
+ "type": "String!"
266
+ },
267
+ {
268
+ "name": "customerCartId",
269
+ "type": "String!"
270
+ },
271
+ {
272
+ "name": "pageSize",
273
+ "type": "Int!"
274
+ },
275
+ {
276
+ "name": "currentPage",
277
+ "type": "Int!"
278
+ },
279
+ {
280
+ "name": "itemsSortInput",
281
+ "type": "QuoteItemsSortInput!"
282
+ }
283
+ ],
284
+ "fragmentDependencies": [
285
+ "CART_FRAGMENT",
286
+ "CART_ITEM_FRAGMENT",
287
+ "PRICE_RANGE_FRAGMENT",
288
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
289
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
290
+ "GIFT_WRAPPING_FRAGMENT",
291
+ "GIFT_MESSAGE_FRAGMENT",
292
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
293
+ "APPLIED_GIFT_CARDS_FRAGMENT"
294
+ ]
295
+ },
296
+ {
297
+ "name": "REMOVE_GIFT_CARD_ON_CART_MUTATION",
298
+ "type": "mutation",
299
+ "exportName": "REMOVE_GIFT_CARD_ON_CART_MUTATION",
300
+ "variables": [
301
+ {
302
+ "name": "cartId",
303
+ "type": "String!"
304
+ },
305
+ {
306
+ "name": "giftCardCode",
307
+ "type": "String!"
308
+ },
309
+ {
310
+ "name": "pageSize",
311
+ "type": "Int!"
312
+ },
313
+ {
314
+ "name": "currentPage",
315
+ "type": "Int!"
316
+ },
317
+ {
318
+ "name": "itemsSortInput",
319
+ "type": "QuoteItemsSortInput!"
320
+ }
321
+ ],
322
+ "fragmentDependencies": [
323
+ "CART_FRAGMENT",
324
+ "CART_ITEM_FRAGMENT",
325
+ "PRICE_RANGE_FRAGMENT",
326
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
327
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
328
+ "GIFT_WRAPPING_FRAGMENT",
329
+ "GIFT_MESSAGE_FRAGMENT",
330
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
331
+ "APPLIED_GIFT_CARDS_FRAGMENT"
332
+ ]
333
+ },
334
+ {
335
+ "name": "SET_GIFT_OPTIONS_ON_CART_MUTATION",
336
+ "type": "mutation",
337
+ "exportName": "SET_GIFT_OPTIONS_ON_CART_MUTATION",
338
+ "variables": [
339
+ {
340
+ "name": "cartId",
341
+ "type": "String!"
342
+ },
343
+ {
344
+ "name": "giftMessage",
345
+ "type": "GiftMessageInput"
346
+ },
347
+ {
348
+ "name": "giftWrappingId",
349
+ "type": "ID"
350
+ },
351
+ {
352
+ "name": "giftReceiptIncluded",
353
+ "type": "Boolean!"
354
+ },
355
+ {
356
+ "name": "printedCardIncluded",
357
+ "type": "Boolean!"
358
+ },
359
+ {
360
+ "name": "pageSize",
361
+ "type": "Int!"
362
+ },
363
+ {
364
+ "name": "currentPage",
365
+ "type": "Int!"
366
+ },
367
+ {
368
+ "name": "itemsSortInput",
369
+ "type": "QuoteItemsSortInput!"
370
+ }
371
+ ],
372
+ "fragmentDependencies": [
373
+ "CART_FRAGMENT",
374
+ "CART_ITEM_FRAGMENT",
375
+ "PRICE_RANGE_FRAGMENT",
376
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
377
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
378
+ "GIFT_WRAPPING_FRAGMENT",
379
+ "GIFT_MESSAGE_FRAGMENT",
380
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
381
+ "APPLIED_GIFT_CARDS_FRAGMENT"
382
+ ]
383
+ },
384
+ {
385
+ "name": "STORE_CONFIG_QUERY",
386
+ "type": "query",
387
+ "exportName": "STORE_CONFIG_QUERY",
388
+ "variables": [],
389
+ "fragmentDependencies": []
390
+ },
391
+ {
392
+ "name": "UPDATE_PRODUCTS_FROM_CART_MUTATION",
393
+ "type": "mutation",
394
+ "exportName": "UPDATE_PRODUCTS_FROM_CART_MUTATION",
395
+ "variables": [
396
+ {
397
+ "name": "cartId",
398
+ "type": "String!"
399
+ },
400
+ {
401
+ "name": "cartItems",
402
+ "type": "[CartItemUpdateInput!]!"
403
+ },
404
+ {
405
+ "name": "pageSize",
406
+ "type": "Int!"
407
+ },
408
+ {
409
+ "name": "currentPage",
410
+ "type": "Int!"
411
+ },
412
+ {
413
+ "name": "itemsSortInput",
414
+ "type": "QuoteItemsSortInput!"
415
+ }
416
+ ],
417
+ "fragmentDependencies": [
418
+ "CART_FRAGMENT",
419
+ "CART_ITEM_FRAGMENT",
420
+ "PRICE_RANGE_FRAGMENT",
421
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
422
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
423
+ "GIFT_WRAPPING_FRAGMENT",
424
+ "GIFT_MESSAGE_FRAGMENT",
425
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
426
+ "APPLIED_GIFT_CARDS_FRAGMENT"
427
+ ]
428
+ }
429
+ ],
430
+ "fragments": [
431
+ {
432
+ "name": "APPLIED_GIFT_CARDS_FRAGMENT",
433
+ "exportName": "APPLIED_GIFT_CARDS_FRAGMENT",
434
+ "onType": "AppliedGiftCard",
435
+ "source": "fragment APPLIED_GIFT_CARDS_FRAGMENT on AppliedGiftCard {\n __typename\n code\n applied_balance {\n value\n currency\n }\n current_balance {\n value\n currency\n }\n expiration_date\n }",
436
+ "fragmentDependencies": [],
437
+ "exported": true
438
+ },
439
+ {
440
+ "name": "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
441
+ "exportName": "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
442
+ "onType": "GiftWrapping",
443
+ "source": "fragment AVAILABLE_GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n label\n }\n price {\n currency\n value\n }\n }",
444
+ "fragmentDependencies": [],
445
+ "exported": true
446
+ },
447
+ {
448
+ "name": "CART_FRAGMENT",
449
+ "exportName": "CART_FRAGMENT",
450
+ "onType": "Cart",
451
+ "source": "fragment CART_FRAGMENT on Cart {\n id\n total_quantity\n is_virtual\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n gift_receipt_included\n printed_card_included\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n available_gift_wrappings {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n prices {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n subtotal_with_discount_excluding_tax {\n currency\n value\n }\n subtotal_including_tax {\n currency\n value\n }\n subtotal_excluding_tax {\n currency\n value\n }\n grand_total {\n currency\n value\n }\n grand_total_excluding_tax {\n currency\n value\n }\n applied_taxes {\n label\n amount {\n value\n currency\n }\n }\n discounts {\n amount {\n value\n currency\n }\n label\n coupon {\n code\n }\n applied_to\n }\n }\n applied_coupons {\n code\n }\n itemsV2(\n pageSize: $pageSize\n currentPage: $currentPage\n sort: $itemsSortInput\n ) {\n items {\n ...CART_ITEM_FRAGMENT\n }\n }\n shipping_addresses {\n country {\n code\n }\n region {\n code\n }\n postcode\n }\n }\n\nfragment CART_ITEM_FRAGMENT on CartItemInterface {\n __typename\n uid\n quantity\n is_available\n not_available_message\n errors {\n code\n message\n }\n\n prices {\n price {\n value\n currency\n }\n discounts {\n amount {\n value\n currency\n }\n label\n }\n total_item_discount {\n value\n currency\n }\n row_total {\n value\n currency\n }\n row_total_including_tax {\n value\n currency\n }\n price_including_tax {\n value\n currency\n }\n fixed_product_taxes {\n amount {\n value\n currency\n }\n label\n }\n original_item_price {\n value\n currency\n }\n original_row_total {\n value\n currency\n }\n }\n\n product {\n name\n sku\n price_tiers {\n quantity\n final_price {\n value\n }\n discount {\n amount_off\n percent_off\n }\n }\n quantity\n gift_message_available\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n thumbnail {\n url\n label\n }\n url_key\n canonical_url\n categories {\n url_path\n url_key\n name\n }\n custom_attributesV2(filters: { is_visible_on_front: true }) {\n items {\n code\n ... on AttributeValue {\n value\n }\n ... on AttributeSelectedOptions {\n selected_options {\n value\n label\n }\n }\n }\n }\n only_x_left_in_stock\n stock_status\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n }\n ... on SimpleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ... on ConfigurableCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n configurable_options {\n configurable_product_option_uid\n option_label\n value_label\n configurable_product_option_value_uid\n }\n configured_variant {\n uid\n sku\n only_x_left_in_stock\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n price_tiers {\n quantity\n final_price {\n value\n }\n discount {\n amount_off\n percent_off\n }\n }\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_CART_ITEMS_FRAGMENT\n ... on BundleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n bundle_options {\n uid\n label\n values {\n uid\n label\n }\n }\n }\n ... on GiftCardCartItem {\n message\n recipient_email\n recipient_name\n sender_email\n sender_name\n amount {\n currency\n value\n }\n is_available\n }\n }\n\nfragment PRICE_RANGE_FRAGMENT on PriceRange {\n minimum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n maximum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n }\n\nfragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price {\n type\n units\n value\n }\n }\n }\n\nfragment DOWNLOADABLE_CART_ITEMS_FRAGMENT on DownloadableCartItem {\n links {\n sort_order\n title\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n\nfragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n\nfragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n\nfragment AVAILABLE_GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n label\n }\n price {\n currency\n value\n }\n }\n\nfragment APPLIED_GIFT_CARDS_FRAGMENT on AppliedGiftCard {\n __typename\n code\n applied_balance {\n value\n currency\n }\n current_balance {\n value\n currency\n }\n expiration_date\n }",
452
+ "fragmentDependencies": [
453
+ "CART_ITEM_FRAGMENT",
454
+ "PRICE_RANGE_FRAGMENT",
455
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
456
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
457
+ "GIFT_WRAPPING_FRAGMENT",
458
+ "GIFT_MESSAGE_FRAGMENT",
459
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT",
460
+ "APPLIED_GIFT_CARDS_FRAGMENT"
461
+ ],
462
+ "exported": true
463
+ },
464
+ {
465
+ "name": "CART_ITEM_FRAGMENT",
466
+ "exportName": "CART_ITEM_FRAGMENT",
467
+ "onType": "CartItemInterface",
468
+ "source": "fragment CART_ITEM_FRAGMENT on CartItemInterface {\n __typename\n uid\n quantity\n is_available\n not_available_message\n errors {\n code\n message\n }\n\n prices {\n price {\n value\n currency\n }\n discounts {\n amount {\n value\n currency\n }\n label\n }\n total_item_discount {\n value\n currency\n }\n row_total {\n value\n currency\n }\n row_total_including_tax {\n value\n currency\n }\n price_including_tax {\n value\n currency\n }\n fixed_product_taxes {\n amount {\n value\n currency\n }\n label\n }\n original_item_price {\n value\n currency\n }\n original_row_total {\n value\n currency\n }\n }\n\n product {\n name\n sku\n price_tiers {\n quantity\n final_price {\n value\n }\n discount {\n amount_off\n percent_off\n }\n }\n quantity\n gift_message_available\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n thumbnail {\n url\n label\n }\n url_key\n canonical_url\n categories {\n url_path\n url_key\n name\n }\n custom_attributesV2(filters: { is_visible_on_front: true }) {\n items {\n code\n ... on AttributeValue {\n value\n }\n ... on AttributeSelectedOptions {\n selected_options {\n value\n label\n }\n }\n }\n }\n only_x_left_in_stock\n stock_status\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n }\n ... on SimpleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ... on ConfigurableCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n configurable_options {\n configurable_product_option_uid\n option_label\n value_label\n configurable_product_option_value_uid\n }\n configured_variant {\n uid\n sku\n only_x_left_in_stock\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n ...PRICE_RANGE_FRAGMENT\n }\n price_tiers {\n quantity\n final_price {\n value\n }\n discount {\n amount_off\n percent_off\n }\n }\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_CART_ITEMS_FRAGMENT\n ... on BundleCartItem {\n available_gift_wrapping {\n ...AVAILABLE_GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n bundle_options {\n uid\n label\n values {\n uid\n label\n }\n }\n }\n ... on GiftCardCartItem {\n message\n recipient_email\n recipient_name\n sender_email\n sender_name\n amount {\n currency\n value\n }\n is_available\n }\n }\n\nfragment PRICE_RANGE_FRAGMENT on PriceRange {\n minimum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n maximum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n discount {\n percent_off\n amount_off\n }\n }\n }\n\nfragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price {\n type\n units\n value\n }\n }\n }\n\nfragment DOWNLOADABLE_CART_ITEMS_FRAGMENT on DownloadableCartItem {\n links {\n sort_order\n title\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n\nfragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n\nfragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n\nfragment AVAILABLE_GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n label\n }\n price {\n currency\n value\n }\n }",
469
+ "fragmentDependencies": [
470
+ "PRICE_RANGE_FRAGMENT",
471
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT",
472
+ "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
473
+ "GIFT_WRAPPING_FRAGMENT",
474
+ "GIFT_MESSAGE_FRAGMENT",
475
+ "AVAILABLE_GIFT_WRAPPING_FRAGMENT"
476
+ ],
477
+ "exported": true
478
+ },
479
+ {
480
+ "name": "CUSTOMER_FRAGMENT",
481
+ "exportName": "CUSTOMER_ACCOUNT_FRAGMENT",
482
+ "onType": "Customer",
483
+ "fragmentDependencies": [],
484
+ "exported": false
485
+ },
486
+ {
487
+ "name": "CUSTOMIZABLE_OPTIONS_FRAGMENT",
488
+ "exportName": "CUSTOMIZABLE_OPTIONS_FRAGMENT",
489
+ "onType": "SelectedCustomizableOption",
490
+ "fragmentDependencies": [],
491
+ "exported": false
492
+ },
493
+ {
494
+ "name": "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
495
+ "exportName": "DOWNLOADABLE_CART_ITEMS_FRAGMENT",
496
+ "onType": "DownloadableCartItem",
497
+ "source": "fragment DOWNLOADABLE_CART_ITEMS_FRAGMENT on DownloadableCartItem {\n links {\n sort_order\n title\n }\n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }",
498
+ "fragmentDependencies": [],
499
+ "exported": true
500
+ },
501
+ {
502
+ "name": "GIFT_MESSAGE_FRAGMENT",
503
+ "exportName": "GIFT_MESSAGE_FRAGMENT",
504
+ "onType": "GiftMessage",
505
+ "source": "fragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }",
506
+ "fragmentDependencies": [],
507
+ "exported": true
508
+ },
509
+ {
510
+ "name": "GIFT_WRAPPING_FRAGMENT",
511
+ "exportName": "GIFT_WRAPPING_FRAGMENT",
512
+ "onType": "GiftWrapping",
513
+ "source": "fragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }",
514
+ "fragmentDependencies": [],
515
+ "exported": true
516
+ },
517
+ {
518
+ "name": "PRICE_RANGE_FRAGMENT",
519
+ "exportName": "PRICE_RANGE_FRAGMENT",
520
+ "onType": "PriceRange",
521
+ "fragmentDependencies": [],
522
+ "exported": false
523
+ }
524
+ ]
525
+ },
526
+ "storefront-checkout": {
527
+ "version": "3.2.1",
528
+ "operationCount": 20,
529
+ "fragmentCount": 12,
530
+ "operations": [
531
+ {
532
+ "name": "estimateShippingMethods",
533
+ "type": "mutation",
534
+ "exportName": "estimateShippingMethodsMutation",
535
+ "variables": [
536
+ {
537
+ "name": "cartId",
538
+ "type": "String!"
539
+ },
540
+ {
541
+ "name": "address",
542
+ "type": "EstimateAddressInput!"
543
+ }
544
+ ],
545
+ "fragmentDependencies": [
546
+ "ESTIMATE_SHIPPING_METHOD_FRAGMENT"
547
+ ]
548
+ },
549
+ {
550
+ "name": "GET_CHECKOUT_AGREEMENTS",
551
+ "type": "query",
552
+ "exportName": "GET_CHECKOUT_AGREEMENTS",
553
+ "variables": [],
554
+ "fragmentDependencies": []
555
+ },
556
+ {
557
+ "name": "getCart",
558
+ "type": "query",
559
+ "exportName": "getCartQuery",
560
+ "variables": [
561
+ {
562
+ "name": "cartId",
563
+ "type": "String!"
564
+ }
565
+ ],
566
+ "fragmentDependencies": [
567
+ "CHECKOUT_DATA_FRAGMENT",
568
+ "BILLING_CART_ADDRESS_FRAGMENT",
569
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
570
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
571
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
572
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
573
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
574
+ ]
575
+ },
576
+ {
577
+ "name": "getCompanyCredit",
578
+ "type": "query",
579
+ "exportName": "getCompanyCreditQuery",
580
+ "variables": [],
581
+ "fragmentDependencies": []
582
+ },
583
+ {
584
+ "name": "getCustomer",
585
+ "type": "query",
586
+ "exportName": "getCustomerQuery",
587
+ "variables": [],
588
+ "fragmentDependencies": [
589
+ "CUSTOMER_FRAGMENT"
590
+ ]
591
+ },
592
+ {
593
+ "name": "getCustomerCart",
594
+ "type": "query",
595
+ "exportName": "getCustomerCartQuery",
596
+ "variables": [],
597
+ "fragmentDependencies": [
598
+ "CHECKOUT_DATA_FRAGMENT",
599
+ "BILLING_CART_ADDRESS_FRAGMENT",
600
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
601
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
602
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
603
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
604
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
605
+ ]
606
+ },
607
+ {
608
+ "name": "getNegotiableQuote",
609
+ "type": "query",
610
+ "exportName": "getNegotiableQuoteQuery",
611
+ "variables": [
612
+ {
613
+ "name": "quoteId",
614
+ "type": "ID!"
615
+ }
616
+ ],
617
+ "fragmentDependencies": [
618
+ "NEGOTIABLE_QUOTE_FRAGMENT",
619
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
620
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
621
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
622
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
623
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
624
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
625
+ ]
626
+ },
627
+ {
628
+ "name": "getStoreConfig",
629
+ "type": "query",
630
+ "exportName": "getStoreConfigQuery",
631
+ "variables": [],
632
+ "fragmentDependencies": []
633
+ },
634
+ {
635
+ "name": "isEmailAvailable",
636
+ "type": "query",
637
+ "exportName": "isEmailAvailableQuery",
638
+ "variables": [
639
+ {
640
+ "name": "email",
641
+ "type": "String!"
642
+ }
643
+ ],
644
+ "fragmentDependencies": []
645
+ },
646
+ {
647
+ "name": "setBillingAddress",
648
+ "type": "mutation",
649
+ "exportName": "setBillingAddressOnCartMutation",
650
+ "variables": [
651
+ {
652
+ "name": "cartId",
653
+ "type": "String!"
654
+ },
655
+ {
656
+ "name": "billingAddress",
657
+ "type": "BillingAddressInput!"
658
+ }
659
+ ],
660
+ "fragmentDependencies": [
661
+ "CHECKOUT_DATA_FRAGMENT",
662
+ "BILLING_CART_ADDRESS_FRAGMENT",
663
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
664
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
665
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
666
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
667
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
668
+ ]
669
+ },
670
+ {
671
+ "name": "setBillingAddressOnQuote",
672
+ "type": "mutation",
673
+ "exportName": "setBillingAddressOnQuoteMutation",
674
+ "variables": [
675
+ {
676
+ "name": "quoteId",
677
+ "type": "ID!"
678
+ },
679
+ {
680
+ "name": "billingAddress",
681
+ "type": "NegotiableQuoteBillingAddressInput!"
682
+ }
683
+ ],
684
+ "fragmentDependencies": [
685
+ "NEGOTIABLE_QUOTE_FRAGMENT",
686
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
687
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
688
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
689
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
690
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
691
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
692
+ ]
693
+ },
694
+ {
695
+ "name": "setGuestEmail",
696
+ "type": "mutation",
697
+ "exportName": "setGuestEmailMutation",
698
+ "variables": [
699
+ {
700
+ "name": "cartId",
701
+ "type": "String!"
702
+ },
703
+ {
704
+ "name": "email",
705
+ "type": "String!"
706
+ }
707
+ ],
708
+ "fragmentDependencies": [
709
+ "CHECKOUT_DATA_FRAGMENT",
710
+ "BILLING_CART_ADDRESS_FRAGMENT",
711
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
712
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
713
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
714
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
715
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
716
+ ]
717
+ },
718
+ {
719
+ "name": "setPaymentMethodOnCart",
720
+ "type": "mutation",
721
+ "exportName": "setPaymentMethodOnCartMutation",
722
+ "variables": [
723
+ {
724
+ "name": "cartId",
725
+ "type": "String!"
726
+ },
727
+ {
728
+ "name": "input",
729
+ "type": "PaymentMethodInput!"
730
+ }
731
+ ],
732
+ "fragmentDependencies": [
733
+ "CHECKOUT_DATA_FRAGMENT",
734
+ "BILLING_CART_ADDRESS_FRAGMENT",
735
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
736
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
737
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
738
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
739
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
740
+ ]
741
+ },
742
+ {
743
+ "name": "setPaymentMethodOnQuote",
744
+ "type": "mutation",
745
+ "exportName": "setPaymentMethodOnQuoteMutation",
746
+ "variables": [
747
+ {
748
+ "name": "quoteId",
749
+ "type": "ID!"
750
+ },
751
+ {
752
+ "name": "input",
753
+ "type": "NegotiableQuotePaymentMethodInput!"
754
+ }
755
+ ],
756
+ "fragmentDependencies": [
757
+ "NEGOTIABLE_QUOTE_FRAGMENT",
758
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
759
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
760
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
761
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
762
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
763
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
764
+ ]
765
+ },
766
+ {
767
+ "name": "setShippingAddressOnCart",
768
+ "type": "mutation",
769
+ "exportName": "setShippingAddressOnCartMutation",
770
+ "variables": [
771
+ {
772
+ "name": "cartId",
773
+ "type": "String!"
774
+ },
775
+ {
776
+ "name": "shippingAddress",
777
+ "type": "ShippingAddressInput!"
778
+ }
779
+ ],
780
+ "fragmentDependencies": [
781
+ "CHECKOUT_DATA_FRAGMENT",
782
+ "BILLING_CART_ADDRESS_FRAGMENT",
783
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
784
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
785
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
786
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
787
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
788
+ ]
789
+ },
790
+ {
791
+ "name": "setShippingAddressOnCartAndUseAsBilling",
792
+ "type": "mutation",
793
+ "exportName": "setShippingAddressOnCartAndUseAsBillingMutation",
794
+ "variables": [
795
+ {
796
+ "name": "cartId",
797
+ "type": "String!"
798
+ },
799
+ {
800
+ "name": "shippingAddress",
801
+ "type": "ShippingAddressInput!"
802
+ }
803
+ ],
804
+ "fragmentDependencies": [
805
+ "CHECKOUT_DATA_FRAGMENT",
806
+ "BILLING_CART_ADDRESS_FRAGMENT",
807
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
808
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
809
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
810
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
811
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
812
+ ]
813
+ },
814
+ {
815
+ "name": "setShippingAddressOnQuote",
816
+ "type": "mutation",
817
+ "exportName": "setShippingAddressOnQuoteMutation",
818
+ "variables": [
819
+ {
820
+ "name": "quoteId",
821
+ "type": "ID!"
822
+ },
823
+ {
824
+ "name": "shippingAddress",
825
+ "type": "NegotiableQuoteShippingAddressInput!"
826
+ }
827
+ ],
828
+ "fragmentDependencies": [
829
+ "NEGOTIABLE_QUOTE_FRAGMENT",
830
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
831
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
832
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
833
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
834
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
835
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
836
+ ]
837
+ },
838
+ {
839
+ "name": "setShippingAddressOnQuoteAndUseAsBilling",
840
+ "type": "mutation",
841
+ "exportName": "setShippingAddressOnQuoteAndUseAsBillingMutation",
842
+ "variables": [
843
+ {
844
+ "name": "quoteId",
845
+ "type": "ID!"
846
+ },
847
+ {
848
+ "name": "shippingAddress",
849
+ "type": "NegotiableQuoteShippingAddressInput!"
850
+ }
851
+ ],
852
+ "fragmentDependencies": [
853
+ "NEGOTIABLE_QUOTE_FRAGMENT",
854
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
855
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
856
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
857
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
858
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
859
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
860
+ ]
861
+ },
862
+ {
863
+ "name": "setShippingMethodsOnCart",
864
+ "type": "mutation",
865
+ "exportName": "setShippingMethodsOnCartMutation",
866
+ "variables": [
867
+ {
868
+ "name": "cartId",
869
+ "type": "String!"
870
+ },
871
+ {
872
+ "name": "shippingMethods",
873
+ "type": "[ShippingMethodInput]!"
874
+ }
875
+ ],
876
+ "fragmentDependencies": [
877
+ "CHECKOUT_DATA_FRAGMENT",
878
+ "BILLING_CART_ADDRESS_FRAGMENT",
879
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
880
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
881
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
882
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
883
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
884
+ ]
885
+ },
886
+ {
887
+ "name": "setShippingMethodsOnQuote",
888
+ "type": "mutation",
889
+ "exportName": "setShippingMethodsOnQuoteMutation",
890
+ "variables": [
891
+ {
892
+ "name": "quoteId",
893
+ "type": "ID!"
894
+ },
895
+ {
896
+ "name": "shippingMethods",
897
+ "type": "[ShippingMethodInput]!"
898
+ }
899
+ ],
900
+ "fragmentDependencies": [
901
+ "NEGOTIABLE_QUOTE_FRAGMENT",
902
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
903
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
904
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
905
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
906
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
907
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
908
+ ]
909
+ }
910
+ ],
911
+ "fragments": [
912
+ {
913
+ "name": "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
914
+ "exportName": "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
915
+ "onType": "AvailablePaymentMethod",
916
+ "source": "fragment AVAILABLE_PAYMENT_METHOD_FRAGMENT on AvailablePaymentMethod {\n code\n title\n }",
917
+ "fragmentDependencies": [],
918
+ "exported": true
919
+ },
920
+ {
921
+ "name": "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
922
+ "exportName": "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
923
+ "onType": "AvailableShippingMethod",
924
+ "source": "fragment AVAILABLE_SHIPPING_METHOD_FRAGMENT on AvailableShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n error_message\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }",
925
+ "fragmentDependencies": [],
926
+ "exported": true
927
+ },
928
+ {
929
+ "name": "BILLING_CART_ADDRESS_FRAGMENT",
930
+ "exportName": "BILLING_CART_ADDRESS_FRAGMENT",
931
+ "onType": "BillingCartAddress",
932
+ "source": "fragment BILLING_CART_ADDRESS_FRAGMENT on BillingCartAddress {\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n fax\n firstname\n id\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n street\n suffix\n telephone\n uid\n vat_id\n }",
933
+ "fragmentDependencies": [],
934
+ "exported": true
935
+ },
936
+ {
937
+ "name": "CHECKOUT_DATA_FRAGMENT",
938
+ "exportName": "CHECKOUT_DATA_FRAGMENT",
939
+ "onType": "Cart",
940
+ "source": "fragment CHECKOUT_DATA_FRAGMENT on Cart {\n id\n is_virtual\n email\n total_quantity\n billing_address {\n ...BILLING_CART_ADDRESS_FRAGMENT\n }\n shipping_addresses {\n ...SHIPPING_CART_ADDRESS_FRAGMENT\n }\n available_payment_methods {\n ...AVAILABLE_PAYMENT_METHOD_FRAGMENT\n }\n selected_payment_method {\n ...SELECTED_PAYMENT_METHOD_FRAGMENT\n }\n }\n\nfragment BILLING_CART_ADDRESS_FRAGMENT on BillingCartAddress {\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n fax\n firstname\n id\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n street\n suffix\n telephone\n uid\n vat_id\n }\n\nfragment SHIPPING_CART_ADDRESS_FRAGMENT on ShippingCartAddress {\n available_shipping_methods {\n ...AVAILABLE_SHIPPING_METHOD_FRAGMENT\n }\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n fax\n firstname\n id\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n same_as_billing\n selected_shipping_method {\n ...SELECTED_SHIPPING_METHOD_FRAGMENT\n }\n street\n suffix\n telephone\n uid\n vat_id\n }\n\nfragment AVAILABLE_SHIPPING_METHOD_FRAGMENT on AvailableShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n error_message\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }\n\nfragment SELECTED_SHIPPING_METHOD_FRAGMENT on SelectedShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }\n\nfragment AVAILABLE_PAYMENT_METHOD_FRAGMENT on AvailablePaymentMethod {\n code\n title\n }\n\nfragment SELECTED_PAYMENT_METHOD_FRAGMENT on SelectedPaymentMethod {\n code\n title\n purchase_order_number\n }",
941
+ "fragmentDependencies": [
942
+ "BILLING_CART_ADDRESS_FRAGMENT",
943
+ "SHIPPING_CART_ADDRESS_FRAGMENT",
944
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
945
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
946
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
947
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
948
+ ],
949
+ "exported": true
950
+ },
951
+ {
952
+ "name": "CUSTOMER_FRAGMENT",
953
+ "exportName": "CUSTOMER_FRAGMENT",
954
+ "onType": "Customer",
955
+ "source": "fragment CUSTOMER_FRAGMENT on Customer {\n firstname\n lastname\n email\n }",
956
+ "fragmentDependencies": [],
957
+ "exported": true
958
+ },
959
+ {
960
+ "name": "ESTIMATE_SHIPPING_METHOD_FRAGMENT",
961
+ "exportName": "ESTIMATE_SHIPPING_METHOD_FRAGMENT",
962
+ "onType": "AvailableShippingMethod",
963
+ "source": "fragment ESTIMATE_SHIPPING_METHOD_FRAGMENT on AvailableShippingMethod {\n amount {\n currency\n value\n }\n available\n carrier_code\n carrier_title\n error_message\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }",
964
+ "fragmentDependencies": [],
965
+ "exported": true
966
+ },
967
+ {
968
+ "name": "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
969
+ "exportName": "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
970
+ "onType": "NegotiableQuoteBillingAddress",
971
+ "source": "fragment NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT on NegotiableQuoteBillingAddress {\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n customer_address_uid\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n street\n suffix\n telephone\n uid\n vat_id\n }",
972
+ "fragmentDependencies": [],
973
+ "exported": true
974
+ },
975
+ {
976
+ "name": "NEGOTIABLE_QUOTE_FRAGMENT",
977
+ "exportName": "NEGOTIABLE_QUOTE_FRAGMENT",
978
+ "onType": "NegotiableQuote",
979
+ "source": "fragment NEGOTIABLE_QUOTE_FRAGMENT on NegotiableQuote {\n available_payment_methods {\n ...AVAILABLE_PAYMENT_METHOD_FRAGMENT\n }\n billing_address {\n ...NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT\n }\n email\n is_virtual\n name\n selected_payment_method {\n ...SELECTED_PAYMENT_METHOD_FRAGMENT\n }\n shipping_addresses {\n ...NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT\n }\n status\n total_quantity\n uid\n }\n\nfragment NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT on NegotiableQuoteBillingAddress {\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n customer_address_uid\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n street\n suffix\n telephone\n uid\n vat_id\n }\n\nfragment NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT on NegotiableQuoteShippingAddress {\n available_shipping_methods {\n ...AVAILABLE_SHIPPING_METHOD_FRAGMENT\n }\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n customer_address_uid\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n selected_shipping_method {\n ...SELECTED_SHIPPING_METHOD_FRAGMENT\n }\n street\n suffix\n telephone\n uid\n vat_id\n }\n\nfragment AVAILABLE_SHIPPING_METHOD_FRAGMENT on AvailableShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n error_message\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }\n\nfragment SELECTED_SHIPPING_METHOD_FRAGMENT on SelectedShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }\n\nfragment AVAILABLE_PAYMENT_METHOD_FRAGMENT on AvailablePaymentMethod {\n code\n title\n }\n\nfragment SELECTED_PAYMENT_METHOD_FRAGMENT on SelectedPaymentMethod {\n code\n title\n purchase_order_number\n }",
980
+ "fragmentDependencies": [
981
+ "NEGOTIABLE_QUOTE_BILLING_ADDRESS_FRAGMENT",
982
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
983
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
984
+ "SELECTED_SHIPPING_METHOD_FRAGMENT",
985
+ "AVAILABLE_PAYMENT_METHOD_FRAGMENT",
986
+ "SELECTED_PAYMENT_METHOD_FRAGMENT"
987
+ ],
988
+ "exported": true
989
+ },
990
+ {
991
+ "name": "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
992
+ "exportName": "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
993
+ "onType": "NegotiableQuoteShippingAddress",
994
+ "source": "fragment NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT on NegotiableQuoteShippingAddress {\n available_shipping_methods {\n ...AVAILABLE_SHIPPING_METHOD_FRAGMENT\n }\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n customer_address_uid\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n selected_shipping_method {\n ...SELECTED_SHIPPING_METHOD_FRAGMENT\n }\n street\n suffix\n telephone\n uid\n vat_id\n }\n\nfragment AVAILABLE_SHIPPING_METHOD_FRAGMENT on AvailableShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n error_message\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }\n\nfragment SELECTED_SHIPPING_METHOD_FRAGMENT on SelectedShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }",
995
+ "fragmentDependencies": [
996
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
997
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
998
+ ],
999
+ "exported": true
1000
+ },
1001
+ {
1002
+ "name": "SELECTED_PAYMENT_METHOD_FRAGMENT",
1003
+ "exportName": "SELECTED_PAYMENT_METHOD_FRAGMENT",
1004
+ "onType": "SelectedPaymentMethod",
1005
+ "source": "fragment SELECTED_PAYMENT_METHOD_FRAGMENT on SelectedPaymentMethod {\n code\n title\n purchase_order_number\n }",
1006
+ "fragmentDependencies": [],
1007
+ "exported": true
1008
+ },
1009
+ {
1010
+ "name": "SELECTED_SHIPPING_METHOD_FRAGMENT",
1011
+ "exportName": "SELECTED_SHIPPING_METHOD_FRAGMENT",
1012
+ "onType": "SelectedShippingMethod",
1013
+ "source": "fragment SELECTED_SHIPPING_METHOD_FRAGMENT on SelectedShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }",
1014
+ "fragmentDependencies": [],
1015
+ "exported": true
1016
+ },
1017
+ {
1018
+ "name": "SHIPPING_CART_ADDRESS_FRAGMENT",
1019
+ "exportName": "SHIPPING_CART_ADDRESS_FRAGMENT",
1020
+ "onType": "ShippingCartAddress",
1021
+ "source": "fragment SHIPPING_CART_ADDRESS_FRAGMENT on ShippingCartAddress {\n available_shipping_methods {\n ...AVAILABLE_SHIPPING_METHOD_FRAGMENT\n }\n city\n company\n country {\n code\n label\n }\n custom_attributes {\n ... on AttributeValue {\n code\n value\n }\n }\n fax\n firstname\n id\n lastname\n middlename\n postcode\n prefix\n region {\n region_id\n code\n label\n }\n same_as_billing\n selected_shipping_method {\n ...SELECTED_SHIPPING_METHOD_FRAGMENT\n }\n street\n suffix\n telephone\n uid\n vat_id\n }\n\nfragment AVAILABLE_SHIPPING_METHOD_FRAGMENT on AvailableShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n error_message\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }\n\nfragment SELECTED_SHIPPING_METHOD_FRAGMENT on SelectedShippingMethod {\n amount {\n currency\n value\n }\n carrier_code\n carrier_title\n method_code\n method_title\n price_excl_tax {\n value\n currency\n }\n price_incl_tax {\n value\n currency\n }\n }",
1022
+ "fragmentDependencies": [
1023
+ "AVAILABLE_SHIPPING_METHOD_FRAGMENT",
1024
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
1025
+ ],
1026
+ "exported": true
1027
+ }
1028
+ ]
1029
+ },
1030
+ "storefront-order": {
1031
+ "version": "3.3.0",
1032
+ "operationCount": 18,
1033
+ "fragmentCount": 18,
1034
+ "operations": [
1035
+ {
1036
+ "name": "CANCEL_ORDER_MUTATION",
1037
+ "type": "mutation",
1038
+ "exportName": "CANCEL_ORDER_MUTATION",
1039
+ "variables": [
1040
+ {
1041
+ "name": "orderId",
1042
+ "type": "ID!"
1043
+ },
1044
+ {
1045
+ "name": "reason",
1046
+ "type": "String!"
1047
+ }
1048
+ ],
1049
+ "fragmentDependencies": [
1050
+ "PRODUCT_DETAILS_FRAGMENT",
1051
+ "PRICE_DETAILS_FRAGMENT",
1052
+ "GIFT_CARD_DETAILS_FRAGMENT",
1053
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1054
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1055
+ "ORDER_SUMMARY_FRAGMENT",
1056
+ "ADDRESS_FRAGMENT",
1057
+ "ORDER_ITEM_FRAGMENT",
1058
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1059
+ "GIFT_WRAPPING_FRAGMENT",
1060
+ "GIFT_MESSAGE_FRAGMENT"
1061
+ ]
1062
+ },
1063
+ {
1064
+ "name": "CONFIRM_RETURN_GUEST_ORDER",
1065
+ "type": "mutation",
1066
+ "exportName": "CONFIRM_RETURN_GUEST_ORDER",
1067
+ "variables": [
1068
+ {
1069
+ "name": "orderId",
1070
+ "type": "ID!"
1071
+ },
1072
+ {
1073
+ "name": "confirmationKey",
1074
+ "type": "String!"
1075
+ }
1076
+ ],
1077
+ "fragmentDependencies": [
1078
+ "REQUEST_RETURN_ORDER_FRAGMENT",
1079
+ "GUEST_ORDER_FRAGMENT",
1080
+ "ADDRESS_FRAGMENT",
1081
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1082
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1083
+ "GIFT_CARD_DETAILS_FRAGMENT",
1084
+ "GIFT_MESSAGE_FRAGMENT",
1085
+ "GIFT_WRAPPING_FRAGMENT",
1086
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1087
+ "ORDER_ITEM_FRAGMENT",
1088
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1089
+ "ORDER_SUMMARY_FRAGMENT",
1090
+ "PRICE_DETAILS_FRAGMENT",
1091
+ "PRODUCT_DETAILS_FRAGMENT"
1092
+ ]
1093
+ },
1094
+ {
1095
+ "name": "GET_ATTRIBUTES_FORM",
1096
+ "type": "query",
1097
+ "exportName": "GET_ATTRIBUTES_FORM",
1098
+ "variables": [
1099
+ {
1100
+ "name": "formCode",
1101
+ "type": "String!"
1102
+ }
1103
+ ],
1104
+ "fragmentDependencies": []
1105
+ },
1106
+ {
1107
+ "name": "GET_ATTRIBUTES_FORM_SHORT",
1108
+ "type": "query",
1109
+ "exportName": "GET_ATTRIBUTES_FORM_SHORT",
1110
+ "variables": [],
1111
+ "fragmentDependencies": []
1112
+ },
1113
+ {
1114
+ "name": "GET_ATTRIBUTES_LIST",
1115
+ "type": "query",
1116
+ "exportName": "GET_ATTRIBUTES_LIST",
1117
+ "variables": [
1118
+ {
1119
+ "name": "entityType",
1120
+ "type": "AttributeEntityTypeEnum!"
1121
+ }
1122
+ ],
1123
+ "fragmentDependencies": []
1124
+ },
1125
+ {
1126
+ "name": "GET_CUSTOMER",
1127
+ "type": "query",
1128
+ "exportName": "GET_CUSTOMER",
1129
+ "variables": [],
1130
+ "fragmentDependencies": []
1131
+ },
1132
+ {
1133
+ "name": "GET_CUSTOMER_ORDERS_RETURN",
1134
+ "type": "query",
1135
+ "exportName": "GET_CUSTOMER_ORDERS_RETURN",
1136
+ "variables": [
1137
+ {
1138
+ "name": "currentPage",
1139
+ "type": "Int"
1140
+ },
1141
+ {
1142
+ "name": "pageSize",
1143
+ "type": "Int"
1144
+ }
1145
+ ],
1146
+ "fragmentDependencies": [
1147
+ "RETURNS_FRAGMENT",
1148
+ "PRODUCT_DETAILS_FRAGMENT",
1149
+ "PRICE_DETAILS_FRAGMENT",
1150
+ "GIFT_CARD_DETAILS_FRAGMENT",
1151
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1152
+ "GIFT_MESSAGE_FRAGMENT",
1153
+ "GIFT_WRAPPING_FRAGMENT"
1154
+ ]
1155
+ },
1156
+ {
1157
+ "name": "GET_GUEST_ORDER",
1158
+ "type": "query",
1159
+ "exportName": "GET_GUEST_ORDER",
1160
+ "variables": [
1161
+ {
1162
+ "name": "input",
1163
+ "type": "GuestOrderInformationInput!"
1164
+ }
1165
+ ],
1166
+ "fragmentDependencies": [
1167
+ "GUEST_ORDER_FRAGMENT",
1168
+ "ADDRESS_FRAGMENT",
1169
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1170
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1171
+ "GIFT_CARD_DETAILS_FRAGMENT",
1172
+ "GIFT_MESSAGE_FRAGMENT",
1173
+ "GIFT_WRAPPING_FRAGMENT",
1174
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1175
+ "ORDER_ITEM_FRAGMENT",
1176
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1177
+ "ORDER_SUMMARY_FRAGMENT",
1178
+ "PRICE_DETAILS_FRAGMENT",
1179
+ "PRODUCT_DETAILS_FRAGMENT",
1180
+ "RETURNS_FRAGMENT"
1181
+ ]
1182
+ },
1183
+ {
1184
+ "name": "ORDER_BY_NUMBER",
1185
+ "type": "query",
1186
+ "exportName": "ORDER_BY_NUMBER",
1187
+ "variables": [
1188
+ {
1189
+ "name": "orderNumber",
1190
+ "type": "String!"
1191
+ },
1192
+ {
1193
+ "name": "pageSize",
1194
+ "type": "Int"
1195
+ }
1196
+ ],
1197
+ "fragmentDependencies": [
1198
+ "CUSTOMER_ORDER_FRAGMENT",
1199
+ "ADDRESS_FRAGMENT",
1200
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1201
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1202
+ "GIFT_CARD_DETAILS_FRAGMENT",
1203
+ "GIFT_MESSAGE_FRAGMENT",
1204
+ "GIFT_WRAPPING_FRAGMENT",
1205
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1206
+ "ORDER_ITEM_FRAGMENT",
1207
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1208
+ "ORDER_SUMMARY_FRAGMENT",
1209
+ "PRICE_DETAILS_FRAGMENT",
1210
+ "PRODUCT_DETAILS_FRAGMENT",
1211
+ "RETURNS_FRAGMENT"
1212
+ ]
1213
+ },
1214
+ {
1215
+ "name": "ORDER_BY_TOKEN",
1216
+ "type": "query",
1217
+ "exportName": "ORDER_BY_TOKEN",
1218
+ "variables": [
1219
+ {
1220
+ "name": "token",
1221
+ "type": "String!"
1222
+ }
1223
+ ],
1224
+ "fragmentDependencies": [
1225
+ "GUEST_ORDER_FRAGMENT",
1226
+ "ADDRESS_FRAGMENT",
1227
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1228
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1229
+ "GIFT_CARD_DETAILS_FRAGMENT",
1230
+ "GIFT_MESSAGE_FRAGMENT",
1231
+ "GIFT_WRAPPING_FRAGMENT",
1232
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1233
+ "ORDER_ITEM_FRAGMENT",
1234
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1235
+ "ORDER_SUMMARY_FRAGMENT",
1236
+ "PRICE_DETAILS_FRAGMENT",
1237
+ "PRODUCT_DETAILS_FRAGMENT",
1238
+ "RETURNS_FRAGMENT"
1239
+ ]
1240
+ },
1241
+ {
1242
+ "name": "PLACE_NEGOTIABLE_QUOTE_ORDER_MUTATION",
1243
+ "type": "mutation",
1244
+ "exportName": "PLACE_NEGOTIABLE_QUOTE_ORDER_MUTATION",
1245
+ "variables": [
1246
+ {
1247
+ "name": "quoteUid",
1248
+ "type": "ID!"
1249
+ }
1250
+ ],
1251
+ "fragmentDependencies": [
1252
+ "PLACE_NEGOTIABLE_QUOTE_ORDER_FRAGMENT",
1253
+ "GUEST_ORDER_FRAGMENT",
1254
+ "ADDRESS_FRAGMENT",
1255
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1256
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1257
+ "GIFT_CARD_DETAILS_FRAGMENT",
1258
+ "GIFT_MESSAGE_FRAGMENT",
1259
+ "GIFT_WRAPPING_FRAGMENT",
1260
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1261
+ "ORDER_ITEM_FRAGMENT",
1262
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1263
+ "ORDER_SUMMARY_FRAGMENT",
1264
+ "PRICE_DETAILS_FRAGMENT",
1265
+ "PRODUCT_DETAILS_FRAGMENT"
1266
+ ]
1267
+ },
1268
+ {
1269
+ "name": "PLACE_ORDER_MUTATION",
1270
+ "type": "mutation",
1271
+ "exportName": "PLACE_ORDER_MUTATION",
1272
+ "variables": [
1273
+ {
1274
+ "name": "cartId",
1275
+ "type": "String!"
1276
+ }
1277
+ ],
1278
+ "fragmentDependencies": [
1279
+ "PLACE_ORDER_FRAGMENT",
1280
+ "GUEST_ORDER_FRAGMENT",
1281
+ "ADDRESS_FRAGMENT",
1282
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1283
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1284
+ "GIFT_CARD_DETAILS_FRAGMENT",
1285
+ "GIFT_MESSAGE_FRAGMENT",
1286
+ "GIFT_WRAPPING_FRAGMENT",
1287
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1288
+ "ORDER_ITEM_FRAGMENT",
1289
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1290
+ "ORDER_SUMMARY_FRAGMENT",
1291
+ "PRICE_DETAILS_FRAGMENT",
1292
+ "PRODUCT_DETAILS_FRAGMENT"
1293
+ ]
1294
+ },
1295
+ {
1296
+ "name": "REORDER_ITEMS_MUTATION",
1297
+ "type": "mutation",
1298
+ "exportName": "REORDER_ITEMS_MUTATION",
1299
+ "variables": [
1300
+ {
1301
+ "name": "orderNumber",
1302
+ "type": "String!"
1303
+ }
1304
+ ],
1305
+ "fragmentDependencies": []
1306
+ },
1307
+ {
1308
+ "name": "REQUEST_GUEST_ORDER_CANCEL_MUTATION",
1309
+ "type": "mutation",
1310
+ "exportName": "REQUEST_GUEST_ORDER_CANCEL_MUTATION",
1311
+ "variables": [
1312
+ {
1313
+ "name": "token",
1314
+ "type": "String!"
1315
+ },
1316
+ {
1317
+ "name": "reason",
1318
+ "type": "String!"
1319
+ }
1320
+ ],
1321
+ "fragmentDependencies": [
1322
+ "GUEST_ORDER_FRAGMENT",
1323
+ "ADDRESS_FRAGMENT",
1324
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1325
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1326
+ "GIFT_CARD_DETAILS_FRAGMENT",
1327
+ "GIFT_MESSAGE_FRAGMENT",
1328
+ "GIFT_WRAPPING_FRAGMENT",
1329
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1330
+ "ORDER_ITEM_FRAGMENT",
1331
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1332
+ "ORDER_SUMMARY_FRAGMENT",
1333
+ "PRICE_DETAILS_FRAGMENT",
1334
+ "PRODUCT_DETAILS_FRAGMENT"
1335
+ ]
1336
+ },
1337
+ {
1338
+ "name": "REQUEST_RETURN_GUEST_ORDER",
1339
+ "type": "mutation",
1340
+ "exportName": "REQUEST_RETURN_GUEST_ORDER",
1341
+ "variables": [
1342
+ {
1343
+ "name": "input",
1344
+ "type": "RequestGuestReturnInput!"
1345
+ }
1346
+ ],
1347
+ "fragmentDependencies": [
1348
+ "REQUEST_RETURN_ORDER_FRAGMENT"
1349
+ ]
1350
+ },
1351
+ {
1352
+ "name": "REQUEST_RETURN_ORDER",
1353
+ "type": "mutation",
1354
+ "exportName": "REQUEST_RETURN_ORDER",
1355
+ "variables": [
1356
+ {
1357
+ "name": "input",
1358
+ "type": "RequestReturnInput!"
1359
+ }
1360
+ ],
1361
+ "fragmentDependencies": [
1362
+ "REQUEST_RETURN_ORDER_FRAGMENT"
1363
+ ]
1364
+ },
1365
+ {
1366
+ "name": "setPaymentMethodAndPlaceOrder",
1367
+ "type": "mutation",
1368
+ "exportName": "SET_PAYMENT_METHOD_AND_PLACE_ORDER_MUTATION",
1369
+ "variables": [
1370
+ {
1371
+ "name": "cartId",
1372
+ "type": "String!"
1373
+ },
1374
+ {
1375
+ "name": "paymentMethod",
1376
+ "type": "PaymentMethodInput!"
1377
+ }
1378
+ ],
1379
+ "fragmentDependencies": [
1380
+ "PLACE_ORDER_FRAGMENT",
1381
+ "GUEST_ORDER_FRAGMENT",
1382
+ "ADDRESS_FRAGMENT",
1383
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1384
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1385
+ "GIFT_CARD_DETAILS_FRAGMENT",
1386
+ "GIFT_MESSAGE_FRAGMENT",
1387
+ "GIFT_WRAPPING_FRAGMENT",
1388
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1389
+ "ORDER_ITEM_FRAGMENT",
1390
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1391
+ "ORDER_SUMMARY_FRAGMENT",
1392
+ "PRICE_DETAILS_FRAGMENT",
1393
+ "PRODUCT_DETAILS_FRAGMENT"
1394
+ ]
1395
+ },
1396
+ {
1397
+ "name": "STORE_CONFIG_QUERY",
1398
+ "type": "query",
1399
+ "exportName": "STORE_CONFIG_QUERY",
1400
+ "variables": [],
1401
+ "fragmentDependencies": []
1402
+ }
1403
+ ],
1404
+ "fragments": [
1405
+ {
1406
+ "name": "ADDRESS_FRAGMENT",
1407
+ "exportName": "ADDRESS_FRAGMENT",
1408
+ "onType": "OrderAddress",
1409
+ "source": "fragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }",
1410
+ "fragmentDependencies": [],
1411
+ "exported": true
1412
+ },
1413
+ {
1414
+ "name": "APPLIED_GIFT_CARDS_FRAGMENT",
1415
+ "exportName": "APPLIED_GIFT_CARDS_FRAGMENT",
1416
+ "onType": "ApplyGiftCardToOrder",
1417
+ "source": "fragment APPLIED_GIFT_CARDS_FRAGMENT on ApplyGiftCardToOrder {\n __typename\n code\n applied_balance {\n value\n currency\n }\n }",
1418
+ "fragmentDependencies": [],
1419
+ "exported": true
1420
+ },
1421
+ {
1422
+ "name": "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1423
+ "exportName": "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1424
+ "onType": "BundleOrderItem",
1425
+ "source": "fragment BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT on BundleOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n bundle_options {\n uid\n label\n values {\n uid\n product_name\n }\n }\n }",
1426
+ "fragmentDependencies": [],
1427
+ "exported": true
1428
+ },
1429
+ {
1430
+ "name": "CUSTOMER_ORDER_FRAGMENT",
1431
+ "exportName": "CUSTOMER_ORDER_FRAGMENT",
1432
+ "onType": "CustomerOrder",
1433
+ "source": "fragment CUSTOMER_ORDER_FRAGMENT on CustomerOrder {\n printed_card_included\n gift_receipt_included\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n items_eligible_for_return {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n }\n email\n id\n number\n order_date\n order_status_change_date\n status\n carrier\n shipping_method\n available_actions\n is_virtual\n comments {\n message\n timestamp\n }\n payment_methods {\n name\n type\n }\n applied_coupons {\n code\n }\n shipments {\n id\n number\n tracking {\n title\n number\n carrier\n }\n comments {\n message\n timestamp\n }\n items {\n __typename\n id\n product_sku\n product_name\n quantity_shipped\n order_item {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n }\n }\n }\n payment_methods {\n name\n type\n }\n shipping_address {\n ...ADDRESS_FRAGMENT\n }\n billing_address {\n ...ADDRESS_FRAGMENT\n }\n items {\n ...ORDER_ITEM_FRAGMENT\n }\n total {\n ...ORDER_SUMMARY_FRAGMENT\n }\n }\n\nfragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }\n\nfragment APPLIED_GIFT_CARDS_FRAGMENT on ApplyGiftCardToOrder {\n __typename\n code\n applied_balance {\n value\n currency\n }\n }\n\nfragment BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT on BundleOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n bundle_options {\n uid\n label\n values {\n uid\n product_name\n }\n }\n }\n\nfragment GIFT_CARD_DETAILS_FRAGMENT on GiftCardOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_card {\n recipient_name\n recipient_email\n sender_name\n sender_email\n message\n }\n }\n\nfragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n\nfragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n\nfragment ORDER_ITEM_DETAILS_FRAGMENT on OrderItemInterface {\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n __typename\n status\n product_sku\n eligible_for_return\n product_name\n product_url_key\n id\n quantity_ordered\n quantity_shipped\n quantity_canceled\n quantity_invoiced\n quantity_refunded\n quantity_return_requested\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n product_sale_price {\n value\n currency\n }\n selected_options {\n label\n value\n }\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n ...PRICE_DETAILS_FRAGMENT\n }\n\nfragment ORDER_ITEM_FRAGMENT on OrderItemInterface {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on BundleOrderItem {\n ...BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT\n }\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_ORDER_ITEMS_FRAGMENT\n }\n\nfragment DOWNLOADABLE_ORDER_ITEMS_FRAGMENT on DownloadableOrderItem {\n product_name\n downloadable_links {\n sort_order\n title\n }\n }\n\nfragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n grand_total {\n value\n currency\n }\n grand_total_excl_tax {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }\n\nfragment PRICE_DETAILS_FRAGMENT on OrderItemInterface {\n prices {\n price_including_tax {\n value\n currency\n }\n original_price {\n value\n currency\n }\n original_price_including_tax {\n value\n currency\n }\n price {\n value\n currency\n }\n }\n }\n\nfragment PRODUCT_DETAILS_FRAGMENT on ProductInterface {\n __typename\n canonical_url\n url_key\n uid\n name\n sku\n only_x_left_in_stock\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n maximum_price {\n regular_price {\n currency\n value\n }\n }\n }\n }",
1434
+ "fragmentDependencies": [
1435
+ "ADDRESS_FRAGMENT",
1436
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1437
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1438
+ "GIFT_CARD_DETAILS_FRAGMENT",
1439
+ "GIFT_MESSAGE_FRAGMENT",
1440
+ "GIFT_WRAPPING_FRAGMENT",
1441
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1442
+ "ORDER_ITEM_FRAGMENT",
1443
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1444
+ "ORDER_SUMMARY_FRAGMENT",
1445
+ "PRICE_DETAILS_FRAGMENT",
1446
+ "PRODUCT_DETAILS_FRAGMENT"
1447
+ ],
1448
+ "exported": true
1449
+ },
1450
+ {
1451
+ "name": "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1452
+ "exportName": "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1453
+ "onType": "DownloadableOrderItem",
1454
+ "source": "fragment DOWNLOADABLE_ORDER_ITEMS_FRAGMENT on DownloadableOrderItem {\n product_name\n downloadable_links {\n sort_order\n title\n }\n }",
1455
+ "fragmentDependencies": [],
1456
+ "exported": true
1457
+ },
1458
+ {
1459
+ "name": "GIFT_CARD_DETAILS_FRAGMENT",
1460
+ "exportName": "GIFT_CARD_DETAILS_FRAGMENT",
1461
+ "onType": "GiftCardOrderItem",
1462
+ "source": "fragment GIFT_CARD_DETAILS_FRAGMENT on GiftCardOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_card {\n recipient_name\n recipient_email\n sender_name\n sender_email\n message\n }\n }",
1463
+ "fragmentDependencies": [],
1464
+ "exported": true
1465
+ },
1466
+ {
1467
+ "name": "GIFT_MESSAGE_FRAGMENT",
1468
+ "exportName": "GIFT_MESSAGE_FRAGMENT",
1469
+ "onType": "GiftMessage",
1470
+ "source": "fragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }",
1471
+ "fragmentDependencies": [],
1472
+ "exported": true
1473
+ },
1474
+ {
1475
+ "name": "GIFT_WRAPPING_FRAGMENT",
1476
+ "exportName": "GIFT_WRAPPING_FRAGMENT",
1477
+ "onType": "GiftWrapping",
1478
+ "source": "fragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }",
1479
+ "fragmentDependencies": [],
1480
+ "exported": true
1481
+ },
1482
+ {
1483
+ "name": "GUEST_ORDER_FRAGMENT",
1484
+ "exportName": "GUEST_ORDER_FRAGMENT",
1485
+ "onType": "CustomerOrder",
1486
+ "source": "fragment GUEST_ORDER_FRAGMENT on CustomerOrder {\n printed_card_included\n gift_receipt_included\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n items_eligible_for_return {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n }\n email\n id\n number\n order_date\n order_status_change_date\n status\n token\n carrier\n shipping_method\n available_actions\n is_virtual\n comments {\n message\n timestamp\n }\n payment_methods {\n name\n type\n }\n applied_coupons {\n code\n }\n shipments {\n id\n number\n tracking {\n title\n number\n carrier\n }\n comments {\n message\n timestamp\n }\n items {\n __typename\n id\n product_sku\n product_name\n quantity_shipped\n order_item {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n }\n }\n }\n payment_methods {\n name\n type\n }\n shipping_address {\n ...ADDRESS_FRAGMENT\n }\n billing_address {\n ...ADDRESS_FRAGMENT\n }\n items {\n ...ORDER_ITEM_FRAGMENT\n }\n total {\n ...ORDER_SUMMARY_FRAGMENT\n }\n }\n\nfragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }\n\nfragment APPLIED_GIFT_CARDS_FRAGMENT on ApplyGiftCardToOrder {\n __typename\n code\n applied_balance {\n value\n currency\n }\n }\n\nfragment BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT on BundleOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n bundle_options {\n uid\n label\n values {\n uid\n product_name\n }\n }\n }\n\nfragment GIFT_CARD_DETAILS_FRAGMENT on GiftCardOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_card {\n recipient_name\n recipient_email\n sender_name\n sender_email\n message\n }\n }\n\nfragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n\nfragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n\nfragment ORDER_ITEM_DETAILS_FRAGMENT on OrderItemInterface {\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n __typename\n status\n product_sku\n eligible_for_return\n product_name\n product_url_key\n id\n quantity_ordered\n quantity_shipped\n quantity_canceled\n quantity_invoiced\n quantity_refunded\n quantity_return_requested\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n product_sale_price {\n value\n currency\n }\n selected_options {\n label\n value\n }\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n ...PRICE_DETAILS_FRAGMENT\n }\n\nfragment ORDER_ITEM_FRAGMENT on OrderItemInterface {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on BundleOrderItem {\n ...BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT\n }\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_ORDER_ITEMS_FRAGMENT\n }\n\nfragment DOWNLOADABLE_ORDER_ITEMS_FRAGMENT on DownloadableOrderItem {\n product_name\n downloadable_links {\n sort_order\n title\n }\n }\n\nfragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n grand_total {\n value\n currency\n }\n grand_total_excl_tax {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }\n\nfragment PRICE_DETAILS_FRAGMENT on OrderItemInterface {\n prices {\n price_including_tax {\n value\n currency\n }\n original_price {\n value\n currency\n }\n original_price_including_tax {\n value\n currency\n }\n price {\n value\n currency\n }\n }\n }\n\nfragment PRODUCT_DETAILS_FRAGMENT on ProductInterface {\n __typename\n canonical_url\n url_key\n uid\n name\n sku\n only_x_left_in_stock\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n maximum_price {\n regular_price {\n currency\n value\n }\n }\n }\n }",
1487
+ "fragmentDependencies": [
1488
+ "ADDRESS_FRAGMENT",
1489
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1490
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1491
+ "GIFT_CARD_DETAILS_FRAGMENT",
1492
+ "GIFT_MESSAGE_FRAGMENT",
1493
+ "GIFT_WRAPPING_FRAGMENT",
1494
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1495
+ "ORDER_ITEM_FRAGMENT",
1496
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1497
+ "ORDER_SUMMARY_FRAGMENT",
1498
+ "PRICE_DETAILS_FRAGMENT",
1499
+ "PRODUCT_DETAILS_FRAGMENT"
1500
+ ],
1501
+ "exported": true
1502
+ },
1503
+ {
1504
+ "name": "ORDER_ITEM_DETAILS_FRAGMENT",
1505
+ "exportName": "ORDER_ITEM_DETAILS_FRAGMENT",
1506
+ "onType": "OrderItemInterface",
1507
+ "source": "fragment ORDER_ITEM_DETAILS_FRAGMENT on OrderItemInterface {\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n __typename\n status\n product_sku\n eligible_for_return\n product_name\n product_url_key\n id\n quantity_ordered\n quantity_shipped\n quantity_canceled\n quantity_invoiced\n quantity_refunded\n quantity_return_requested\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n product_sale_price {\n value\n currency\n }\n selected_options {\n label\n value\n }\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n ...PRICE_DETAILS_FRAGMENT\n }",
1508
+ "fragmentDependencies": [],
1509
+ "exported": true
1510
+ },
1511
+ {
1512
+ "name": "ORDER_ITEM_FRAGMENT",
1513
+ "exportName": "ORDER_ITEM_FRAGMENT",
1514
+ "onType": "OrderItemInterface",
1515
+ "source": "fragment ORDER_ITEM_FRAGMENT on OrderItemInterface {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on BundleOrderItem {\n ...BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT\n }\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_ORDER_ITEMS_FRAGMENT\n }\n\nfragment DOWNLOADABLE_ORDER_ITEMS_FRAGMENT on DownloadableOrderItem {\n product_name\n downloadable_links {\n sort_order\n title\n }\n }",
1516
+ "fragmentDependencies": [
1517
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT"
1518
+ ],
1519
+ "exported": true
1520
+ },
1521
+ {
1522
+ "name": "ORDER_SUMMARY_FRAGMENT",
1523
+ "exportName": "ORDER_SUMMARY_FRAGMENT",
1524
+ "onType": "OrderTotal",
1525
+ "source": "fragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n grand_total {\n value\n currency\n }\n grand_total_excl_tax {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }",
1526
+ "fragmentDependencies": [],
1527
+ "exported": true
1528
+ },
1529
+ {
1530
+ "name": "PLACE_NEGOTIABLE_QUOTE_ORDER_FRAGMENT",
1531
+ "exportName": "PLACE_NEGOTIABLE_QUOTE_ORDER_FRAGMENT",
1532
+ "onType": "PlaceNegotiableQuoteOrderOutputV2",
1533
+ "source": "fragment PLACE_NEGOTIABLE_QUOTE_ORDER_FRAGMENT on PlaceNegotiableQuoteOrderOutputV2 {\n errors {\n code\n message\n }\n order {\n ...GUEST_ORDER_FRAGMENT\n }\n }\n\nfragment GUEST_ORDER_FRAGMENT on CustomerOrder {\n printed_card_included\n gift_receipt_included\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n items_eligible_for_return {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n }\n email\n id\n number\n order_date\n order_status_change_date\n status\n token\n carrier\n shipping_method\n available_actions\n is_virtual\n comments {\n message\n timestamp\n }\n payment_methods {\n name\n type\n }\n applied_coupons {\n code\n }\n shipments {\n id\n number\n tracking {\n title\n number\n carrier\n }\n comments {\n message\n timestamp\n }\n items {\n __typename\n id\n product_sku\n product_name\n quantity_shipped\n order_item {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n }\n }\n }\n payment_methods {\n name\n type\n }\n shipping_address {\n ...ADDRESS_FRAGMENT\n }\n billing_address {\n ...ADDRESS_FRAGMENT\n }\n items {\n ...ORDER_ITEM_FRAGMENT\n }\n total {\n ...ORDER_SUMMARY_FRAGMENT\n }\n }\n\nfragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }\n\nfragment APPLIED_GIFT_CARDS_FRAGMENT on ApplyGiftCardToOrder {\n __typename\n code\n applied_balance {\n value\n currency\n }\n }\n\nfragment BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT on BundleOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n bundle_options {\n uid\n label\n values {\n uid\n product_name\n }\n }\n }\n\nfragment GIFT_CARD_DETAILS_FRAGMENT on GiftCardOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_card {\n recipient_name\n recipient_email\n sender_name\n sender_email\n message\n }\n }\n\nfragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n\nfragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n\nfragment ORDER_ITEM_DETAILS_FRAGMENT on OrderItemInterface {\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n __typename\n status\n product_sku\n eligible_for_return\n product_name\n product_url_key\n id\n quantity_ordered\n quantity_shipped\n quantity_canceled\n quantity_invoiced\n quantity_refunded\n quantity_return_requested\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n product_sale_price {\n value\n currency\n }\n selected_options {\n label\n value\n }\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n ...PRICE_DETAILS_FRAGMENT\n }\n\nfragment ORDER_ITEM_FRAGMENT on OrderItemInterface {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on BundleOrderItem {\n ...BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT\n }\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_ORDER_ITEMS_FRAGMENT\n }\n\nfragment DOWNLOADABLE_ORDER_ITEMS_FRAGMENT on DownloadableOrderItem {\n product_name\n downloadable_links {\n sort_order\n title\n }\n }\n\nfragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n grand_total {\n value\n currency\n }\n grand_total_excl_tax {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }\n\nfragment PRICE_DETAILS_FRAGMENT on OrderItemInterface {\n prices {\n price_including_tax {\n value\n currency\n }\n original_price {\n value\n currency\n }\n original_price_including_tax {\n value\n currency\n }\n price {\n value\n currency\n }\n }\n }\n\nfragment PRODUCT_DETAILS_FRAGMENT on ProductInterface {\n __typename\n canonical_url\n url_key\n uid\n name\n sku\n only_x_left_in_stock\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n maximum_price {\n regular_price {\n currency\n value\n }\n }\n }\n }",
1534
+ "fragmentDependencies": [
1535
+ "GUEST_ORDER_FRAGMENT",
1536
+ "ADDRESS_FRAGMENT",
1537
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1538
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1539
+ "GIFT_CARD_DETAILS_FRAGMENT",
1540
+ "GIFT_MESSAGE_FRAGMENT",
1541
+ "GIFT_WRAPPING_FRAGMENT",
1542
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1543
+ "ORDER_ITEM_FRAGMENT",
1544
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1545
+ "ORDER_SUMMARY_FRAGMENT",
1546
+ "PRICE_DETAILS_FRAGMENT",
1547
+ "PRODUCT_DETAILS_FRAGMENT"
1548
+ ],
1549
+ "exported": true
1550
+ },
1551
+ {
1552
+ "name": "PLACE_ORDER_FRAGMENT",
1553
+ "exportName": "PLACE_ORDER_FRAGMENT",
1554
+ "onType": "PlaceOrderOutput",
1555
+ "source": "fragment PLACE_ORDER_FRAGMENT on PlaceOrderOutput {\n errors {\n code\n message\n }\n orderV2 {\n ...GUEST_ORDER_FRAGMENT\n }\n }\n\nfragment GUEST_ORDER_FRAGMENT on CustomerOrder {\n printed_card_included\n gift_receipt_included\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n applied_gift_cards {\n ...APPLIED_GIFT_CARDS_FRAGMENT\n }\n items_eligible_for_return {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n }\n email\n id\n number\n order_date\n order_status_change_date\n status\n token\n carrier\n shipping_method\n available_actions\n is_virtual\n comments {\n message\n timestamp\n }\n payment_methods {\n name\n type\n }\n applied_coupons {\n code\n }\n shipments {\n id\n number\n tracking {\n title\n number\n carrier\n }\n comments {\n message\n timestamp\n }\n items {\n __typename\n id\n product_sku\n product_name\n quantity_shipped\n order_item {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n }\n }\n }\n payment_methods {\n name\n type\n }\n shipping_address {\n ...ADDRESS_FRAGMENT\n }\n billing_address {\n ...ADDRESS_FRAGMENT\n }\n items {\n ...ORDER_ITEM_FRAGMENT\n }\n total {\n ...ORDER_SUMMARY_FRAGMENT\n }\n }\n\nfragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }\n\nfragment APPLIED_GIFT_CARDS_FRAGMENT on ApplyGiftCardToOrder {\n __typename\n code\n applied_balance {\n value\n currency\n }\n }\n\nfragment BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT on BundleOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n bundle_options {\n uid\n label\n values {\n uid\n product_name\n }\n }\n }\n\nfragment GIFT_CARD_DETAILS_FRAGMENT on GiftCardOrderItem {\n ...PRICE_DETAILS_FRAGMENT\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n gift_card {\n recipient_name\n recipient_email\n sender_name\n sender_email\n message\n }\n }\n\nfragment GIFT_MESSAGE_FRAGMENT on GiftMessage {\n __typename\n from\n to\n message\n }\n\nfragment GIFT_WRAPPING_FRAGMENT on GiftWrapping {\n __typename\n uid\n design\n image {\n url\n }\n price {\n value\n currency\n }\n }\n\nfragment ORDER_ITEM_DETAILS_FRAGMENT on OrderItemInterface {\n gift_wrapping {\n ...GIFT_WRAPPING_FRAGMENT\n }\n __typename\n status\n product_sku\n eligible_for_return\n product_name\n product_url_key\n id\n quantity_ordered\n quantity_shipped\n quantity_canceled\n quantity_invoiced\n quantity_refunded\n quantity_return_requested\n gift_message {\n ...GIFT_MESSAGE_FRAGMENT\n }\n product_sale_price {\n value\n currency\n }\n selected_options {\n label\n value\n }\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n ...PRICE_DETAILS_FRAGMENT\n }\n\nfragment ORDER_ITEM_FRAGMENT on OrderItemInterface {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on BundleOrderItem {\n ...BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT\n }\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n ...DOWNLOADABLE_ORDER_ITEMS_FRAGMENT\n }\n\nfragment DOWNLOADABLE_ORDER_ITEMS_FRAGMENT on DownloadableOrderItem {\n product_name\n downloadable_links {\n sort_order\n title\n }\n }\n\nfragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n gift_options {\n gift_wrapping_for_items {\n currency\n value\n }\n gift_wrapping_for_items_incl_tax {\n currency\n value\n }\n gift_wrapping_for_order {\n currency\n value\n }\n gift_wrapping_for_order_incl_tax {\n currency\n value\n }\n printed_card {\n currency\n value\n }\n printed_card_incl_tax {\n currency\n value\n }\n }\n grand_total {\n value\n currency\n }\n grand_total_excl_tax {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }\n\nfragment PRICE_DETAILS_FRAGMENT on OrderItemInterface {\n prices {\n price_including_tax {\n value\n currency\n }\n original_price {\n value\n currency\n }\n original_price_including_tax {\n value\n currency\n }\n price {\n value\n currency\n }\n }\n }\n\nfragment PRODUCT_DETAILS_FRAGMENT on ProductInterface {\n __typename\n canonical_url\n url_key\n uid\n name\n sku\n only_x_left_in_stock\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n maximum_price {\n regular_price {\n currency\n value\n }\n }\n }\n }",
1556
+ "fragmentDependencies": [
1557
+ "GUEST_ORDER_FRAGMENT",
1558
+ "ADDRESS_FRAGMENT",
1559
+ "APPLIED_GIFT_CARDS_FRAGMENT",
1560
+ "BUNDLE_ORDER_ITEM_DETAILS_FRAGMENT",
1561
+ "GIFT_CARD_DETAILS_FRAGMENT",
1562
+ "GIFT_MESSAGE_FRAGMENT",
1563
+ "GIFT_WRAPPING_FRAGMENT",
1564
+ "ORDER_ITEM_DETAILS_FRAGMENT",
1565
+ "ORDER_ITEM_FRAGMENT",
1566
+ "DOWNLOADABLE_ORDER_ITEMS_FRAGMENT",
1567
+ "ORDER_SUMMARY_FRAGMENT",
1568
+ "PRICE_DETAILS_FRAGMENT",
1569
+ "PRODUCT_DETAILS_FRAGMENT"
1570
+ ],
1571
+ "exported": true
1572
+ },
1573
+ {
1574
+ "name": "PRICE_DETAILS_FRAGMENT",
1575
+ "exportName": "PRICE_DETAILS_FRAGMENT",
1576
+ "onType": "OrderItemInterface",
1577
+ "source": "fragment PRICE_DETAILS_FRAGMENT on OrderItemInterface {\n prices {\n price_including_tax {\n value\n currency\n }\n original_price {\n value\n currency\n }\n original_price_including_tax {\n value\n currency\n }\n price {\n value\n currency\n }\n }\n }",
1578
+ "fragmentDependencies": [],
1579
+ "exported": true
1580
+ },
1581
+ {
1582
+ "name": "PRODUCT_DETAILS_FRAGMENT",
1583
+ "exportName": "PRODUCT_DETAILS_FRAGMENT",
1584
+ "onType": "ProductInterface",
1585
+ "source": "fragment PRODUCT_DETAILS_FRAGMENT on ProductInterface {\n __typename\n canonical_url\n url_key\n uid\n name\n sku\n only_x_left_in_stock\n gift_wrapping_available\n gift_wrapping_price {\n currency\n value\n }\n stock_status\n thumbnail {\n label\n url\n }\n price_range {\n maximum_price {\n regular_price {\n currency\n value\n }\n }\n }\n }",
1586
+ "fragmentDependencies": [],
1587
+ "exported": true
1588
+ },
1589
+ {
1590
+ "name": "REQUEST_RETURN_ORDER_FRAGMENT",
1591
+ "exportName": "REQUEST_RETURN_ORDER_FRAGMENT",
1592
+ "onType": "Return",
1593
+ "source": "fragment REQUEST_RETURN_ORDER_FRAGMENT on Return {\n __typename\n uid\n status\n number\n created_at\n }",
1594
+ "fragmentDependencies": [],
1595
+ "exported": true
1596
+ },
1597
+ {
1598
+ "name": "RETURNS_FRAGMENT",
1599
+ "exportName": "RETURNS_FRAGMENT",
1600
+ "onType": "Returns",
1601
+ "source": "fragment RETURNS_FRAGMENT on Returns {\n __typename\n items {\n number\n status\n created_at\n shipping {\n tracking {\n status {\n text\n type\n }\n carrier {\n uid\n label\n }\n tracking_number\n }\n }\n order {\n number\n token\n }\n items {\n uid\n quantity\n status\n request_quantity\n order_item {\n ...ORDER_ITEM_DETAILS_FRAGMENT\n ... on GiftCardOrderItem {\n ...GIFT_CARD_DETAILS_FRAGMENT\n product {\n ...PRODUCT_DETAILS_FRAGMENT\n }\n }\n }\n }\n }\n }",
1602
+ "fragmentDependencies": [],
1603
+ "exported": true
1604
+ }
1605
+ ]
1606
+ },
1607
+ "storefront-auth": {
1608
+ "version": "3.2.0",
1609
+ "operationCount": 15,
1610
+ "fragmentCount": 1,
1611
+ "operations": [
1612
+ {
1613
+ "name": "CONFIRM_EMAIL",
1614
+ "type": "mutation",
1615
+ "exportName": "CONFIRM_EMAIL",
1616
+ "variables": [
1617
+ {
1618
+ "name": "email",
1619
+ "type": "String!"
1620
+ },
1621
+ {
1622
+ "name": "confirmation_key",
1623
+ "type": "String!"
1624
+ }
1625
+ ],
1626
+ "fragmentDependencies": []
1627
+ },
1628
+ {
1629
+ "name": "CREATE_CUSTOMER",
1630
+ "type": "mutation",
1631
+ "exportName": "CREATE_CUSTOMER",
1632
+ "variables": [
1633
+ {
1634
+ "name": "input",
1635
+ "type": "CustomerInput!"
1636
+ }
1637
+ ],
1638
+ "fragmentDependencies": [
1639
+ "CUSTOMER_INFORMATION_FRAGMENT"
1640
+ ]
1641
+ },
1642
+ {
1643
+ "name": "CREATE_CUSTOMER_ADDRESS",
1644
+ "type": "mutation",
1645
+ "exportName": "CREATE_CUSTOMER_ADDRESS",
1646
+ "variables": [
1647
+ {
1648
+ "name": "input",
1649
+ "type": "CustomerAddressInput!"
1650
+ }
1651
+ ],
1652
+ "fragmentDependencies": []
1653
+ },
1654
+ {
1655
+ "name": "CREATE_CUSTOMER_V2",
1656
+ "type": "mutation",
1657
+ "exportName": "CREATE_CUSTOMER_V2",
1658
+ "variables": [
1659
+ {
1660
+ "name": "input",
1661
+ "type": "CustomerCreateInput!"
1662
+ }
1663
+ ],
1664
+ "fragmentDependencies": [
1665
+ "CUSTOMER_INFORMATION_FRAGMENT"
1666
+ ]
1667
+ },
1668
+ {
1669
+ "name": "GET_ADOBE_COMMERCE_OPTIMIZER_DATA",
1670
+ "type": "query",
1671
+ "exportName": "GET_ADOBE_COMMERCE_OPTIMIZER_DATA",
1672
+ "variables": [],
1673
+ "fragmentDependencies": []
1674
+ },
1675
+ {
1676
+ "name": "GET_ATTRIBUTES_FORM",
1677
+ "type": "query",
1678
+ "exportName": "GET_ATTRIBUTES_FORM",
1679
+ "variables": [
1680
+ {
1681
+ "name": "formCode",
1682
+ "type": "String!"
1683
+ }
1684
+ ],
1685
+ "fragmentDependencies": []
1686
+ },
1687
+ {
1688
+ "name": "GET_CUSTOMER_DATA",
1689
+ "type": "query",
1690
+ "exportName": "GET_CUSTOMER_DATA",
1691
+ "variables": [],
1692
+ "fragmentDependencies": [
1693
+ "CUSTOMER_INFORMATION_FRAGMENT"
1694
+ ]
1695
+ },
1696
+ {
1697
+ "name": "GET_CUSTOMER_ROLE_PERMISSIONS",
1698
+ "type": "query",
1699
+ "exportName": "GET_CUSTOMER_ROLE_PERMISSIONS",
1700
+ "variables": [],
1701
+ "fragmentDependencies": []
1702
+ },
1703
+ {
1704
+ "name": "GET_CUSTOMER_TOKEN",
1705
+ "type": "mutation",
1706
+ "exportName": "GET_CUSTOMER_TOKEN",
1707
+ "variables": [
1708
+ {
1709
+ "name": "email",
1710
+ "type": "String!"
1711
+ },
1712
+ {
1713
+ "name": "password",
1714
+ "type": "String!"
1715
+ }
1716
+ ],
1717
+ "fragmentDependencies": []
1718
+ },
1719
+ {
1720
+ "name": "GET_STORE_CONFIG",
1721
+ "type": "query",
1722
+ "exportName": "GET_STORE_CONFIG",
1723
+ "variables": [],
1724
+ "fragmentDependencies": []
1725
+ },
1726
+ {
1727
+ "name": "REQUEST_PASSWORD_RESET_EMAIL",
1728
+ "type": "mutation",
1729
+ "exportName": "REQUEST_PASSWORD_RESET_EMAIL",
1730
+ "variables": [
1731
+ {
1732
+ "name": "email",
1733
+ "type": "String!"
1734
+ }
1735
+ ],
1736
+ "fragmentDependencies": []
1737
+ },
1738
+ {
1739
+ "name": "RESEND_CONFIRMATION_EMAIL",
1740
+ "type": "mutation",
1741
+ "exportName": "RESEND_CONFIRMATION_EMAIL",
1742
+ "variables": [
1743
+ {
1744
+ "name": "email",
1745
+ "type": "String!"
1746
+ }
1747
+ ],
1748
+ "fragmentDependencies": []
1749
+ },
1750
+ {
1751
+ "name": "RESET_PASSWORD",
1752
+ "type": "mutation",
1753
+ "exportName": "RESET_PASSWORD",
1754
+ "variables": [
1755
+ {
1756
+ "name": "email",
1757
+ "type": "String!"
1758
+ },
1759
+ {
1760
+ "name": "resetPasswordToken",
1761
+ "type": "String!"
1762
+ },
1763
+ {
1764
+ "name": "newPassword",
1765
+ "type": "String!"
1766
+ }
1767
+ ],
1768
+ "fragmentDependencies": []
1769
+ },
1770
+ {
1771
+ "name": "REVOKE_CUSTOMER_TOKEN",
1772
+ "type": "mutation",
1773
+ "exportName": "REVOKE_CUSTOMER_TOKEN",
1774
+ "variables": [],
1775
+ "fragmentDependencies": []
1776
+ },
1777
+ {
1778
+ "name": "VALIDATE_TOKEN",
1779
+ "type": "query",
1780
+ "exportName": "VALIDATE_CUSTOMER_TOKEN",
1781
+ "variables": [],
1782
+ "fragmentDependencies": []
1783
+ }
1784
+ ],
1785
+ "fragments": [
1786
+ {
1787
+ "name": "CUSTOMER_INFORMATION_FRAGMENT",
1788
+ "exportName": "CUSTOMER_INFORMATION_FRAGMENT",
1789
+ "onType": "Customer",
1790
+ "source": "fragment CUSTOMER_INFORMATION_FRAGMENT on Customer {\n __typename\n firstname\n lastname\n email\n group {\n uid\n }\n }",
1791
+ "fragmentDependencies": [],
1792
+ "exported": true
1793
+ }
1794
+ ]
1795
+ },
1796
+ "storefront-account": {
1797
+ "version": "3.3.0",
1798
+ "operationCount": 16,
1799
+ "fragmentCount": 4,
1800
+ "operations": [
1801
+ {
1802
+ "name": "CHANGE_CUSTOMER_PASSWORD",
1803
+ "type": "mutation",
1804
+ "exportName": "CHANGE_CUSTOMER_PASSWORD",
1805
+ "variables": [
1806
+ {
1807
+ "name": "currentPassword",
1808
+ "type": "String!"
1809
+ },
1810
+ {
1811
+ "name": "newPassword",
1812
+ "type": "String!"
1813
+ }
1814
+ ],
1815
+ "fragmentDependencies": []
1816
+ },
1817
+ {
1818
+ "name": "CREATE_CUSTOMER_ADDRESS",
1819
+ "type": "mutation",
1820
+ "exportName": "CREATE_CUSTOMER_ADDRESS",
1821
+ "variables": [
1822
+ {
1823
+ "name": "input",
1824
+ "type": "CustomerAddressInput!"
1825
+ }
1826
+ ],
1827
+ "fragmentDependencies": []
1828
+ },
1829
+ {
1830
+ "name": "deletePaymentToken",
1831
+ "type": "mutation",
1832
+ "exportName": "DELETE_PAYMENT_TOKEN",
1833
+ "variables": [
1834
+ {
1835
+ "name": "public_hash",
1836
+ "type": "String!"
1837
+ }
1838
+ ],
1839
+ "fragmentDependencies": []
1840
+ },
1841
+ {
1842
+ "name": "GET_ATTRIBUTES_FORM",
1843
+ "type": "query",
1844
+ "exportName": "GET_ATTRIBUTES_FORM",
1845
+ "variables": [
1846
+ {
1847
+ "name": "formCode",
1848
+ "type": "String!"
1849
+ }
1850
+ ],
1851
+ "fragmentDependencies": []
1852
+ },
1853
+ {
1854
+ "name": "GET_ATTRIBUTES_FORM_SHORT",
1855
+ "type": "query",
1856
+ "exportName": "GET_ATTRIBUTES_FORM_SHORT",
1857
+ "variables": [],
1858
+ "fragmentDependencies": []
1859
+ },
1860
+ {
1861
+ "name": "GET_COUNTRIES_QUERY",
1862
+ "type": "query",
1863
+ "exportName": "GET_COUNTRIES_QUERY",
1864
+ "variables": [],
1865
+ "fragmentDependencies": []
1866
+ },
1867
+ {
1868
+ "name": "GET_CUSTOMER",
1869
+ "type": "query",
1870
+ "exportName": "GET_CUSTOMER",
1871
+ "variables": [],
1872
+ "fragmentDependencies": [
1873
+ "BASIC_CUSTOMER_INFO_FRAGMENT"
1874
+ ]
1875
+ },
1876
+ {
1877
+ "name": "GET_CUSTOMER_ADDRESS",
1878
+ "type": "query",
1879
+ "exportName": "GET_CUSTOMER_ADDRESS",
1880
+ "variables": [],
1881
+ "fragmentDependencies": []
1882
+ },
1883
+ {
1884
+ "name": "GET_CUSTOMER_ORDERS_LIST",
1885
+ "type": "query",
1886
+ "exportName": "GET_CUSTOMER_ORDERS_LIST",
1887
+ "variables": [
1888
+ {
1889
+ "name": "currentPage",
1890
+ "type": "Int"
1891
+ },
1892
+ {
1893
+ "name": "pageSize",
1894
+ "type": "Int"
1895
+ },
1896
+ {
1897
+ "name": "filter",
1898
+ "type": "CustomerOrdersFilterInput"
1899
+ },
1900
+ {
1901
+ "name": "sort",
1902
+ "type": "CustomerOrderSortInput"
1903
+ }
1904
+ ],
1905
+ "fragmentDependencies": [
1906
+ "CUSTOMER_ORDER_FRAGMENT",
1907
+ "ADDRESS_FRAGMENT",
1908
+ "ORDER_SUMMARY_FRAGMENT"
1909
+ ]
1910
+ },
1911
+ {
1912
+ "name": "GET_REGIONS",
1913
+ "type": "query",
1914
+ "exportName": "GET_REGIONS",
1915
+ "variables": [
1916
+ {
1917
+ "name": "countryCode",
1918
+ "type": "String!"
1919
+ }
1920
+ ],
1921
+ "fragmentDependencies": []
1922
+ },
1923
+ {
1924
+ "name": "GET_STORE_CONFIG",
1925
+ "type": "query",
1926
+ "exportName": "GET_STORE_CONFIG",
1927
+ "variables": [],
1928
+ "fragmentDependencies": []
1929
+ },
1930
+ {
1931
+ "name": "getCustomerPaymentTokens",
1932
+ "type": "query",
1933
+ "exportName": "GET_CUSTOMER_PAYMENT_TOKENS",
1934
+ "variables": [],
1935
+ "fragmentDependencies": []
1936
+ },
1937
+ {
1938
+ "name": "REMOVE_CUSTOMER_ADDRESS",
1939
+ "type": "mutation",
1940
+ "exportName": "REMOVE_CUSTOMER_ADDRESS",
1941
+ "variables": [
1942
+ {
1943
+ "name": "id",
1944
+ "type": "Int!"
1945
+ }
1946
+ ],
1947
+ "fragmentDependencies": []
1948
+ },
1949
+ {
1950
+ "name": "UPDATE_CUSTOMER_ADDRESS",
1951
+ "type": "mutation",
1952
+ "exportName": "UPDATE_CUSTOMER_ADDRESS",
1953
+ "variables": [
1954
+ {
1955
+ "name": "id",
1956
+ "type": "Int!"
1957
+ },
1958
+ {
1959
+ "name": "input",
1960
+ "type": "CustomerAddressInput"
1961
+ }
1962
+ ],
1963
+ "fragmentDependencies": []
1964
+ },
1965
+ {
1966
+ "name": "UPDATE_CUSTOMER_EMAIL",
1967
+ "type": "mutation",
1968
+ "exportName": "UPDATE_CUSTOMER_EMAIL",
1969
+ "variables": [
1970
+ {
1971
+ "name": "email",
1972
+ "type": "String!"
1973
+ },
1974
+ {
1975
+ "name": "password",
1976
+ "type": "String!"
1977
+ }
1978
+ ],
1979
+ "fragmentDependencies": []
1980
+ },
1981
+ {
1982
+ "name": "UPDATE_CUSTOMER_V2",
1983
+ "type": "mutation",
1984
+ "exportName": "UPDATE_CUSTOMER_V2",
1985
+ "variables": [
1986
+ {
1987
+ "name": "input",
1988
+ "type": "CustomerUpdateInput!"
1989
+ }
1990
+ ],
1991
+ "fragmentDependencies": []
1992
+ }
1993
+ ],
1994
+ "fragments": [
1995
+ {
1996
+ "name": "ADDRESS_FRAGMENT",
1997
+ "exportName": "ADDRESS_FRAGMENT",
1998
+ "onType": "OrderAddress",
1999
+ "source": "fragment ADDRESS_FRAGMENT on OrderAddress {\n city\n company\n country_code\n fax\n firstname\n lastname\n middlename\n postcode\n prefix\n region\n region_id\n street\n suffix\n telephone\n vat_id\n }",
2000
+ "fragmentDependencies": [],
2001
+ "exported": true
2002
+ },
2003
+ {
2004
+ "name": "BASIC_CUSTOMER_INFO_FRAGMENT",
2005
+ "exportName": "BASIC_CUSTOMER_INFO_FRAGMENT",
2006
+ "onType": "Customer",
2007
+ "source": "fragment BASIC_CUSTOMER_INFO_FRAGMENT on Customer {\n date_of_birth\n email\n firstname\n gender\n lastname\n middlename\n prefix\n suffix\n created_at\n }",
2008
+ "fragmentDependencies": [],
2009
+ "exported": true
2010
+ },
2011
+ {
2012
+ "name": "CUSTOMER_ORDER_FRAGMENT",
2013
+ "exportName": "CUSTOMER_ORDER_FRAGMENT",
2014
+ "onType": "CustomerOrder",
2015
+ "source": "fragment CUSTOMER_ORDER_FRAGMENT on CustomerOrder {\n token\n email\n shipping_method\n payment_methods {\n name\n type\n }\n shipments {\n id\n number\n tracking {\n title\n number\n carrier\n }\n }\n number\n id\n order_date\n carrier\n status\n items {\n status\n product_name\n id\n quantity_ordered\n quantity_shipped\n quantity_invoiced\n product_sku\n product_url_key\n product {\n sku\n small_image {\n url\n }\n }\n }\n }",
2016
+ "fragmentDependencies": [],
2017
+ "exported": true
2018
+ },
2019
+ {
2020
+ "name": "ORDER_SUMMARY_FRAGMENT",
2021
+ "exportName": "ORDER_SUMMARY_FRAGMENT",
2022
+ "onType": "OrderTotal",
2023
+ "source": "fragment ORDER_SUMMARY_FRAGMENT on OrderTotal {\n grand_total {\n value\n currency\n }\n grand_total_excl_tax {\n value\n currency\n }\n total_giftcard {\n currency\n value\n }\n subtotal_excl_tax {\n currency\n value\n }\n subtotal_incl_tax {\n currency\n value\n }\n taxes {\n amount {\n currency\n value\n }\n rate\n title\n }\n total_tax {\n currency\n value\n }\n total_shipping {\n currency\n value\n }\n discounts {\n amount {\n currency\n value\n }\n label\n }\n }",
2024
+ "fragmentDependencies": [],
2025
+ "exported": true
2026
+ }
2027
+ ]
2028
+ },
2029
+ "storefront-pdp": {
2030
+ "version": "3.1.0",
2031
+ "operationCount": 3,
2032
+ "fragmentCount": 3,
2033
+ "operations": [
2034
+ {
2035
+ "name": "GET_PRODUCT_DATA",
2036
+ "type": "query",
2037
+ "exportName": "GET_PRODUCT_DATA",
2038
+ "variables": [
2039
+ {
2040
+ "name": "skus",
2041
+ "type": "[String]"
2042
+ }
2043
+ ],
2044
+ "fragmentDependencies": [
2045
+ "PRODUCT_FRAGMENT",
2046
+ "PRODUCT_OPTION_FRAGMENT",
2047
+ "PRICE_RANGE_FRAGMENT"
2048
+ ]
2049
+ },
2050
+ {
2051
+ "name": "GET_PRODUCTS_DATA",
2052
+ "type": "query",
2053
+ "exportName": "GET_PRODUCTS_DATA",
2054
+ "variables": [
2055
+ {
2056
+ "name": "skus",
2057
+ "type": "[String]"
2058
+ }
2059
+ ],
2060
+ "fragmentDependencies": [
2061
+ "PRODUCT_FRAGMENT",
2062
+ "PRODUCT_OPTION_FRAGMENT",
2063
+ "PRICE_RANGE_FRAGMENT"
2064
+ ]
2065
+ },
2066
+ {
2067
+ "name": "REFINE_PRODUCT_QUERY",
2068
+ "type": "query",
2069
+ "exportName": "REFINE_PRODUCT_QUERY",
2070
+ "variables": [
2071
+ {
2072
+ "name": "optionIds",
2073
+ "type": "[String!]!"
2074
+ },
2075
+ {
2076
+ "name": "sku",
2077
+ "type": "String!"
2078
+ }
2079
+ ],
2080
+ "fragmentDependencies": [
2081
+ "PRODUCT_FRAGMENT",
2082
+ "PRODUCT_OPTION_FRAGMENT",
2083
+ "PRICE_RANGE_FRAGMENT"
2084
+ ]
2085
+ }
2086
+ ],
2087
+ "fragments": [
2088
+ {
2089
+ "name": "PRICE_RANGE_FRAGMENT",
2090
+ "exportName": "PRICE_RANGE_FRAGMENT",
2091
+ "onType": "ComplexProductView",
2092
+ "source": "fragment PRICE_RANGE_FRAGMENT on ComplexProductView {\n priceRange {\n maximum {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n roles\n }\n minimum {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n roles\n }\n }\n }",
2093
+ "fragmentDependencies": [],
2094
+ "exported": true
2095
+ },
2096
+ {
2097
+ "name": "PRODUCT_FRAGMENT",
2098
+ "exportName": "PRODUCT_FRAGMENT",
2099
+ "onType": "ProductView",
2100
+ "source": "fragment PRODUCT_FRAGMENT on ProductView {\n __typename\n id\n sku\n name\n shortDescription\n metaDescription\n metaKeyword\n metaTitle\n description\n inStock\n addToCartAllowed\n url\n urlKey\n externalId\n\n images(roles: []) {\n url\n label\n roles\n }\n\n videos {\n\t\tdescription\n\t\turl\n\t\ttitle\n\t\tpreview {\n\t\t\tlabel\n\t\t\troles\n\t\t\turl\n\t\t}\n\t}\n\n attributes(roles: []) {\n name\n label\n value\n roles\n }\n\n... on SimpleProductView {\n price {\n roles\n\n regular {\n amount {\n value\n currency\n }\n }\n\n final {\n amount {\n value\n currency\n }\n }\n tiers {\n tier {\n amount {\n value\n currency\n }\n }\n quantity {\n ... on ProductViewTierRangeCondition {\n gte\n lt\n }\n }\n }\n }\n }\n\n ... on ComplexProductView {\n options {\n ...PRODUCT_OPTION_FRAGMENT\n }\n\n ...PRICE_RANGE_FRAGMENT\n }\n}\n\nfragment PRODUCT_OPTION_FRAGMENT on ProductViewOption {\n id\n title\n required\n multi\n values {\n id\n title\n inStock\n __typename\n ... on ProductViewOptionValueProduct {\n title\n quantity\n isDefault\n __typename\n product {\n sku\n shortDescription\n metaDescription\n metaKeyword\n metaTitle\n name\n price {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n roles\n }\n }\n }\n ... on ProductViewOptionValueSwatch {\n id\n title\n type\n value\n inStock\n }\n }\n }\n\nfragment PRICE_RANGE_FRAGMENT on ComplexProductView {\n priceRange {\n maximum {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n roles\n }\n minimum {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n roles\n }\n }\n }",
2101
+ "fragmentDependencies": [
2102
+ "PRODUCT_OPTION_FRAGMENT",
2103
+ "PRICE_RANGE_FRAGMENT"
2104
+ ],
2105
+ "exported": true
2106
+ },
2107
+ {
2108
+ "name": "PRODUCT_OPTION_FRAGMENT",
2109
+ "exportName": "PRODUCT_OPTION_FRAGMENT",
2110
+ "onType": "ProductViewOption",
2111
+ "source": "fragment PRODUCT_OPTION_FRAGMENT on ProductViewOption {\n id\n title\n required\n multi\n values {\n id\n title\n inStock\n __typename\n ... on ProductViewOptionValueProduct {\n title\n quantity\n isDefault\n __typename\n product {\n sku\n shortDescription\n metaDescription\n metaKeyword\n metaTitle\n name\n price {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n roles\n }\n }\n }\n ... on ProductViewOptionValueSwatch {\n id\n title\n type\n value\n inStock\n }\n }\n }",
2112
+ "fragmentDependencies": [],
2113
+ "exported": true
2114
+ }
2115
+ ]
2116
+ },
2117
+ "storefront-quote-management": {
2118
+ "version": "1.1.2",
2119
+ "operationCount": 15,
2120
+ "fragmentCount": 7,
2121
+ "operations": [
2122
+ {
2123
+ "name": "CLOSE_NEGOTIABLE_QUOTE_MUTATION",
2124
+ "type": "mutation",
2125
+ "exportName": "CLOSE_NEGOTIABLE_QUOTE_MUTATION",
2126
+ "variables": [
2127
+ {
2128
+ "name": "quoteUids",
2129
+ "type": "[ID!]!"
2130
+ }
2131
+ ],
2132
+ "fragmentDependencies": []
2133
+ },
2134
+ {
2135
+ "name": "DELETE_QUOTE_MUTATION",
2136
+ "type": "mutation",
2137
+ "exportName": "DELETE_QUOTE_MUTATION",
2138
+ "variables": [
2139
+ {
2140
+ "name": "quoteUids",
2141
+ "type": "[ID!]!"
2142
+ }
2143
+ ],
2144
+ "fragmentDependencies": []
2145
+ },
2146
+ {
2147
+ "name": "DUPLICATE_NEGOTIABLE_QUOTE_MUTATION",
2148
+ "type": "mutation",
2149
+ "exportName": "DUPLICATE_NEGOTIABLE_QUOTE_MUTATION",
2150
+ "variables": [
2151
+ {
2152
+ "name": "quoteUid",
2153
+ "type": "ID!"
2154
+ },
2155
+ {
2156
+ "name": "duplicatedQuoteUid",
2157
+ "type": "ID!"
2158
+ }
2159
+ ],
2160
+ "fragmentDependencies": [
2161
+ "NegotiableQuoteFragment",
2162
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2163
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2164
+ ]
2165
+ },
2166
+ {
2167
+ "name": "FINISH_UPLOAD_MUTATION",
2168
+ "type": "mutation",
2169
+ "exportName": "FINISH_UPLOAD_MUTATION",
2170
+ "variables": [
2171
+ {
2172
+ "name": "input",
2173
+ "type": "finishUploadInput!"
2174
+ }
2175
+ ],
2176
+ "fragmentDependencies": []
2177
+ },
2178
+ {
2179
+ "name": "INITIATE_UPLOAD_MUTATION",
2180
+ "type": "mutation",
2181
+ "exportName": "INITIATE_UPLOAD_MUTATION",
2182
+ "variables": [
2183
+ {
2184
+ "name": "input",
2185
+ "type": "initiateUploadInput!"
2186
+ }
2187
+ ],
2188
+ "fragmentDependencies": []
2189
+ },
2190
+ {
2191
+ "name": "negotiableQuotes",
2192
+ "type": "query",
2193
+ "exportName": "NEGOTIABLE_QUOTES_QUERY",
2194
+ "variables": [
2195
+ {
2196
+ "name": "filter",
2197
+ "type": "NegotiableQuoteFilterInput"
2198
+ },
2199
+ {
2200
+ "name": "pageSize",
2201
+ "type": "Int"
2202
+ },
2203
+ {
2204
+ "name": "currentPage",
2205
+ "type": "Int"
2206
+ },
2207
+ {
2208
+ "name": "sort",
2209
+ "type": "NegotiableQuoteSortInput"
2210
+ }
2211
+ ],
2212
+ "fragmentDependencies": [
2213
+ "NegotiableQuoteListFragment",
2214
+ "SearchResultPageInfoFragment",
2215
+ "SortFieldsFragment"
2216
+ ]
2217
+ },
2218
+ {
2219
+ "name": "QUOTE_DATA_QUERY",
2220
+ "type": "query",
2221
+ "exportName": "QUOTE_DATA_QUERY",
2222
+ "variables": [
2223
+ {
2224
+ "name": "quoteId",
2225
+ "type": "ID!"
2226
+ }
2227
+ ],
2228
+ "fragmentDependencies": [
2229
+ "NegotiableQuoteFragment",
2230
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2231
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2232
+ ]
2233
+ },
2234
+ {
2235
+ "name": "REMOVE_NEGOTIABLE_QUOTE_ITEMS_MUTATION",
2236
+ "type": "mutation",
2237
+ "exportName": "REMOVE_NEGOTIABLE_QUOTE_ITEMS_MUTATION",
2238
+ "variables": [
2239
+ {
2240
+ "name": "quoteUid",
2241
+ "type": "ID!"
2242
+ },
2243
+ {
2244
+ "name": "quoteItemUids",
2245
+ "type": "[ID!]!"
2246
+ }
2247
+ ],
2248
+ "fragmentDependencies": [
2249
+ "NegotiableQuoteFragment",
2250
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2251
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2252
+ ]
2253
+ },
2254
+ {
2255
+ "name": "renameNegotiableQuote",
2256
+ "type": "mutation",
2257
+ "exportName": "RENAME_NEGOTIABLE_QUOTE_MUTATION",
2258
+ "variables": [
2259
+ {
2260
+ "name": "input",
2261
+ "type": "RenameNegotiableQuoteInput!"
2262
+ }
2263
+ ],
2264
+ "fragmentDependencies": [
2265
+ "NegotiableQuoteFragment",
2266
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2267
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2268
+ ]
2269
+ },
2270
+ {
2271
+ "name": "REQUEST_NEGOTIABLE_QUOTE_MUTATION",
2272
+ "type": "mutation",
2273
+ "exportName": "REQUEST_NEGOTIABLE_QUOTE_MUTATION",
2274
+ "variables": [
2275
+ {
2276
+ "name": "cartId",
2277
+ "type": "ID!"
2278
+ },
2279
+ {
2280
+ "name": "quoteName",
2281
+ "type": "String!"
2282
+ },
2283
+ {
2284
+ "name": "comment",
2285
+ "type": "NegotiableQuoteCommentInput!"
2286
+ },
2287
+ {
2288
+ "name": "isDraft",
2289
+ "type": "Boolean"
2290
+ }
2291
+ ],
2292
+ "fragmentDependencies": [
2293
+ "NegotiableQuoteFragment",
2294
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2295
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2296
+ ]
2297
+ },
2298
+ {
2299
+ "name": "SEND_NEGOTIABLE_QUOTE_FOR_REVIEW_MUTATION",
2300
+ "type": "mutation",
2301
+ "exportName": "SEND_NEGOTIABLE_QUOTE_FOR_REVIEW_MUTATION",
2302
+ "variables": [
2303
+ {
2304
+ "name": "quoteUid",
2305
+ "type": "ID!"
2306
+ },
2307
+ {
2308
+ "name": "comment",
2309
+ "type": "NegotiableQuoteCommentInput"
2310
+ }
2311
+ ],
2312
+ "fragmentDependencies": [
2313
+ "NegotiableQuoteFragment",
2314
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2315
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2316
+ ]
2317
+ },
2318
+ {
2319
+ "name": "SET_LINE_ITEM_NOTE_MUTATION",
2320
+ "type": "mutation",
2321
+ "exportName": "SET_LINE_ITEM_NOTE_MUTATION",
2322
+ "variables": [
2323
+ {
2324
+ "name": "input",
2325
+ "type": "LineItemNoteInput!"
2326
+ }
2327
+ ],
2328
+ "fragmentDependencies": [
2329
+ "NegotiableQuoteFragment",
2330
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2331
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2332
+ ]
2333
+ },
2334
+ {
2335
+ "name": "SET_NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_MUTATION",
2336
+ "type": "mutation",
2337
+ "exportName": "SET_NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_MUTATION",
2338
+ "variables": [
2339
+ {
2340
+ "name": "quoteUid",
2341
+ "type": "ID!"
2342
+ },
2343
+ {
2344
+ "name": "addressId",
2345
+ "type": "ID"
2346
+ },
2347
+ {
2348
+ "name": "addressData",
2349
+ "type": "NegotiableQuoteAddressInput"
2350
+ }
2351
+ ],
2352
+ "fragmentDependencies": [
2353
+ "NegotiableQuoteFragment",
2354
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2355
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2356
+ ]
2357
+ },
2358
+ {
2359
+ "name": "STORE_CONFIG_QUERY",
2360
+ "type": "query",
2361
+ "exportName": "STORE_CONFIG_QUERY",
2362
+ "variables": [],
2363
+ "fragmentDependencies": []
2364
+ },
2365
+ {
2366
+ "name": "UPDATE_NEGOTIABLE_QUOTE_QUANTITIES_MUTATION",
2367
+ "type": "mutation",
2368
+ "exportName": "UPDATE_NEGOTIABLE_QUOTE_QUANTITIES_MUTATION",
2369
+ "variables": [
2370
+ {
2371
+ "name": "quoteUid",
2372
+ "type": "ID!"
2373
+ },
2374
+ {
2375
+ "name": "items",
2376
+ "type": "[NegotiableQuoteItemQuantityInput!]!"
2377
+ }
2378
+ ],
2379
+ "fragmentDependencies": [
2380
+ "NegotiableQuoteFragment",
2381
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2382
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2383
+ ]
2384
+ }
2385
+ ],
2386
+ "fragments": [
2387
+ {
2388
+ "name": "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2389
+ "exportName": "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2390
+ "onType": "NegotiableQuoteShippingAddress",
2391
+ "fragmentDependencies": [
2392
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2393
+ ],
2394
+ "exported": false
2395
+ },
2396
+ {
2397
+ "name": "NegotiableQuoteFragment",
2398
+ "exportName": "NEGOTIABLE_QUOTE_FRAGMENT",
2399
+ "onType": "NegotiableQuote",
2400
+ "fragmentDependencies": [
2401
+ "NEGOTIABLE_QUOTE_SHIPPING_ADDRESS_FRAGMENT",
2402
+ "SELECTED_SHIPPING_METHOD_FRAGMENT"
2403
+ ],
2404
+ "exported": false
2405
+ },
2406
+ {
2407
+ "name": "NegotiableQuoteListFragment",
2408
+ "exportName": "NEGOTIABLE_QUOTE_LIST_FRAGMENT",
2409
+ "onType": "NegotiableQuote",
2410
+ "fragmentDependencies": [],
2411
+ "exported": false
2412
+ },
2413
+ {
2414
+ "name": "NegotiableQuoteTemplateFragment",
2415
+ "exportName": "NEGOTIABLE_QUOTE_TEMPLATE_FRAGMENT",
2416
+ "onType": "NegotiableQuoteTemplate",
2417
+ "fragmentDependencies": [],
2418
+ "exported": false
2419
+ },
2420
+ {
2421
+ "name": "SearchResultPageInfoFragment",
2422
+ "exportName": "SEARCH_RESULT_PAGE_INFO_FRAGMENT",
2423
+ "onType": "SearchResultPageInfo",
2424
+ "fragmentDependencies": [],
2425
+ "exported": false
2426
+ },
2427
+ {
2428
+ "name": "SELECTED_SHIPPING_METHOD_FRAGMENT",
2429
+ "exportName": "SELECTED_SHIPPING_METHOD_FRAGMENT",
2430
+ "onType": "SelectedShippingMethod",
2431
+ "fragmentDependencies": [],
2432
+ "exported": false
2433
+ },
2434
+ {
2435
+ "name": "SortFieldsFragment",
2436
+ "exportName": "SORT_FIELDS_FRAGMENT",
2437
+ "onType": "SortFields",
2438
+ "fragmentDependencies": [],
2439
+ "exported": false
2440
+ }
2441
+ ]
2442
+ },
2443
+ "storefront-requisition-list": {
2444
+ "version": "1.3.0",
2445
+ "operationCount": 1,
2446
+ "fragmentCount": 2,
2447
+ "operations": [
2448
+ {
2449
+ "name": "STORE_CONFIG_QUERY",
2450
+ "type": "query",
2451
+ "exportName": "STORE_CONFIG_QUERY",
2452
+ "variables": [],
2453
+ "fragmentDependencies": []
2454
+ }
2455
+ ],
2456
+ "fragments": [
2457
+ {
2458
+ "name": "REQUISITION_LIST_FRAGMENT",
2459
+ "exportName": "REQUISITION_LIST_FRAGMENT",
2460
+ "onType": "RequisitionList",
2461
+ "source": "fragment REQUISITION_LIST_FRAGMENT on RequisitionList {\n uid\n name\n description\n items_count\n updated_at\n }",
2462
+ "fragmentDependencies": [],
2463
+ "exported": true
2464
+ },
2465
+ {
2466
+ "name": "REQUISITION_LIST_ITEMS_FRAGMENT",
2467
+ "exportName": "REQUISITION_LIST_ITEMS_FRAGMENT",
2468
+ "onType": "RequistionListItems",
2469
+ "source": "fragment REQUISITION_LIST_ITEMS_FRAGMENT on RequistionListItems {\n items {\n uid\n quantity\n product {\n sku\n stock_status\n only_x_left_in_stock\n }\n customizable_options {\n customizable_option_uid\n is_required\n label\n sort_order\n type\n values {\n customizable_option_value_uid\n label\n value\n price {\n type\n units\n value\n }\n }\n }\n ... on ConfigurableRequisitionListItem {\n configurable_options {\n configurable_product_option_uid\n configurable_product_option_value_uid\n option_label\n value_label\n }\n }\n ... on DownloadableRequisitionListItem {\n links {\n price\n sample_url\n sort_order\n title\n uid\n }\n samples {\n sample_url\n sort_order\n title\n }\n }\n ... on BundleRequisitionListItem {\n bundle_options {\n uid\n type\n label\n values {\n uid\n label\n quantity\n priceV2 {\n value\n currency\n }\n original_price {\n value\n currency\n }\n }\n }\n }\n ... on GiftCardRequisitionListItem {\n gift_card_options {\n amount {\n currency\n value\n }\n custom_giftcard_amount {\n currency\n value\n }\n message\n recipient_email\n recipient_name\n sender_name\n sender_email\n }\n }\n }\n page_info {\n page_size\n current_page\n total_pages\n }\n}",
2470
+ "fragmentDependencies": [],
2471
+ "exported": true
2472
+ }
2473
+ ]
2474
+ },
2475
+ "storefront-wishlist": {
2476
+ "version": "3.2.0",
2477
+ "operationCount": 6,
2478
+ "fragmentCount": 3,
2479
+ "operations": [
2480
+ {
2481
+ "name": "ADD_PRODUCTS_TO_WISHLIST_MUTATION",
2482
+ "type": "mutation",
2483
+ "exportName": "ADD_PRODUCTS_TO_WISHLIST_MUTATION",
2484
+ "variables": [
2485
+ {
2486
+ "name": "wishlistId",
2487
+ "type": "ID!"
2488
+ },
2489
+ {
2490
+ "name": "wishlistItems",
2491
+ "type": "[WishlistItemInput!]!"
2492
+ }
2493
+ ],
2494
+ "fragmentDependencies": [
2495
+ "WISHLIST_FRAGMENT",
2496
+ "WISHLIST_ITEM_FRAGMENT",
2497
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT"
2498
+ ]
2499
+ },
2500
+ {
2501
+ "name": "GET_WISHLIST_BY_ID_QUERY",
2502
+ "type": "query",
2503
+ "exportName": "GET_WISHLIST_BY_ID_QUERY",
2504
+ "variables": [
2505
+ {
2506
+ "name": "wishlistId",
2507
+ "type": "ID!"
2508
+ }
2509
+ ],
2510
+ "fragmentDependencies": [
2511
+ "WISHLIST_ITEM_FRAGMENT",
2512
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT"
2513
+ ]
2514
+ },
2515
+ {
2516
+ "name": "GET_WISHLISTS_QUERY",
2517
+ "type": "query",
2518
+ "exportName": "GET_WISHLISTS_QUERY",
2519
+ "variables": [],
2520
+ "fragmentDependencies": [
2521
+ "WISHLIST_FRAGMENT",
2522
+ "WISHLIST_ITEM_FRAGMENT",
2523
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT"
2524
+ ]
2525
+ },
2526
+ {
2527
+ "name": "REMOVE_PRODUCTS_FROM_WISHLIST_MUTATION",
2528
+ "type": "mutation",
2529
+ "exportName": "REMOVE_PRODUCTS_FROM_WISHLIST_MUTATION",
2530
+ "variables": [
2531
+ {
2532
+ "name": "wishlistId",
2533
+ "type": "ID!"
2534
+ },
2535
+ {
2536
+ "name": "wishlistItemsIds",
2537
+ "type": "[ID!]!"
2538
+ }
2539
+ ],
2540
+ "fragmentDependencies": []
2541
+ },
2542
+ {
2543
+ "name": "STORE_CONFIG_QUERY",
2544
+ "type": "query",
2545
+ "exportName": "STORE_CONFIG_QUERY",
2546
+ "variables": [],
2547
+ "fragmentDependencies": []
2548
+ },
2549
+ {
2550
+ "name": "UPDATE_PRODUCTS_IN_WISHLIST_MUTATION",
2551
+ "type": "mutation",
2552
+ "exportName": "UPDATE_PRODUCTS_IN_WISHLIST_MUTATION",
2553
+ "variables": [
2554
+ {
2555
+ "name": "wishlistId",
2556
+ "type": "ID!"
2557
+ },
2558
+ {
2559
+ "name": "wishlistItems",
2560
+ "type": "[WishlistItemUpdateInput!]!"
2561
+ }
2562
+ ],
2563
+ "fragmentDependencies": [
2564
+ "WISHLIST_FRAGMENT",
2565
+ "WISHLIST_ITEM_FRAGMENT",
2566
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT"
2567
+ ]
2568
+ }
2569
+ ],
2570
+ "fragments": [
2571
+ {
2572
+ "name": "CUSTOMIZABLE_OPTIONS_FRAGMENT",
2573
+ "exportName": "CUSTOMIZABLE_OPTIONS_FRAGMENT",
2574
+ "onType": "SelectedCustomizableOption",
2575
+ "fragmentDependencies": [],
2576
+ "exported": false
2577
+ },
2578
+ {
2579
+ "name": "WISHLIST_FRAGMENT",
2580
+ "exportName": "WISHLIST_FRAGMENT",
2581
+ "onType": "Wishlist",
2582
+ "source": "fragment WISHLIST_FRAGMENT on Wishlist {\n id\n updated_at\n sharing_code\n items_count\n items_v2 {\n items {\n ...WISHLIST_ITEM_FRAGMENT\n }\n }\n }\n\nfragment WISHLIST_ITEM_FRAGMENT on WishlistItemInterface {\n __typename\n id\n quantity\n description\n added_at\n product {\n sku\n }\n \n \n \n \n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n\nfragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price{\n type\n units\n value\n }\n }\n }",
2583
+ "fragmentDependencies": [
2584
+ "WISHLIST_ITEM_FRAGMENT",
2585
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT"
2586
+ ],
2587
+ "exported": true
2588
+ },
2589
+ {
2590
+ "name": "WISHLIST_ITEM_FRAGMENT",
2591
+ "exportName": "WISHLIST_ITEM_FRAGMENT",
2592
+ "onType": "WishlistItemInterface",
2593
+ "source": "fragment WISHLIST_ITEM_FRAGMENT on WishlistItemInterface {\n __typename\n id\n quantity\n description\n added_at\n product {\n sku\n }\n \n \n \n \n customizable_options {\n ...CUSTOMIZABLE_OPTIONS_FRAGMENT\n }\n }\n\nfragment CUSTOMIZABLE_OPTIONS_FRAGMENT on SelectedCustomizableOption {\n type\n customizable_option_uid\n label\n is_required\n values {\n label\n value\n price{\n type\n units\n value\n }\n }\n }",
2594
+ "fragmentDependencies": [
2595
+ "CUSTOMIZABLE_OPTIONS_FRAGMENT"
2596
+ ],
2597
+ "exported": true
2598
+ }
2599
+ ]
2600
+ },
2601
+ "storefront-recommendations": {
2602
+ "version": "4.0.0",
2603
+ "operationCount": 2,
2604
+ "fragmentCount": 2,
2605
+ "operations": [
2606
+ {
2607
+ "name": "GetRecommendationsByUnitIds",
2608
+ "type": "query",
2609
+ "exportName": "GET_RECOMMENDATIONS_BY_UNIT_IDS_QUERY",
2610
+ "variables": [
2611
+ {
2612
+ "name": "unitIds",
2613
+ "type": "[String!]!"
2614
+ },
2615
+ {
2616
+ "name": "currentSku",
2617
+ "type": "String!"
2618
+ },
2619
+ {
2620
+ "name": "cartSkus",
2621
+ "type": "[String]"
2622
+ },
2623
+ {
2624
+ "name": "userPurchaseHistory",
2625
+ "type": "[PurchaseHistory]"
2626
+ },
2627
+ {
2628
+ "name": "userViewHistory",
2629
+ "type": "[ViewHistory]"
2630
+ }
2631
+ ],
2632
+ "fragmentDependencies": [
2633
+ "RECOMMENDATION_UNIT_FRAGMENT",
2634
+ "PRODUCTS_VIEW_FRAGMENT"
2635
+ ]
2636
+ },
2637
+ {
2638
+ "name": "GetRecommendationsByUnitIdsWithCurrentProduct",
2639
+ "type": "query",
2640
+ "exportName": "GET_RECOMMENDATIONS_BY_UNIT_IDS_WITH_PRODUCT_QUERY",
2641
+ "variables": [
2642
+ {
2643
+ "name": "unitIds",
2644
+ "type": "[String!]!"
2645
+ },
2646
+ {
2647
+ "name": "currentSku",
2648
+ "type": "String!"
2649
+ },
2650
+ {
2651
+ "name": "cartSkus",
2652
+ "type": "[String]"
2653
+ },
2654
+ {
2655
+ "name": "userPurchaseHistory",
2656
+ "type": "[PurchaseHistory]"
2657
+ },
2658
+ {
2659
+ "name": "userViewHistory",
2660
+ "type": "[ViewHistory]"
2661
+ },
2662
+ {
2663
+ "name": "currentProduct",
2664
+ "type": "CurrentProductInput"
2665
+ }
2666
+ ],
2667
+ "fragmentDependencies": [
2668
+ "RECOMMENDATION_UNIT_FRAGMENT",
2669
+ "PRODUCTS_VIEW_FRAGMENT"
2670
+ ]
2671
+ }
2672
+ ],
2673
+ "fragments": [
2674
+ {
2675
+ "name": "PRODUCTS_VIEW_FRAGMENT",
2676
+ "exportName": "PRODUCTS_VIEW_FRAGMENT",
2677
+ "onType": "ProductView",
2678
+ "source": "fragment PRODUCTS_VIEW_FRAGMENT on ProductView {\n __typename\n name\n sku\n queryType\n visibility\n inStock\n images {\n url\n }\n urlKey\n ... on SimpleProductView {\n price {\n final {\n amount {\n currency\n value\n }\n }\n }\n }\n ... on ComplexProductView {\n priceRange {\n maximum {\n final {\n amount {\n currency\n value\n }\n }\n }\n minimum {\n final {\n amount {\n currency\n value\n }\n }\n }\n }\n }\n }",
2679
+ "fragmentDependencies": [],
2680
+ "exported": true
2681
+ },
2682
+ {
2683
+ "name": "RECOMMENDATION_UNIT_FRAGMENT",
2684
+ "exportName": "RECOMMENDATION_UNIT_FRAGMENT",
2685
+ "onType": "RecommendationUnit",
2686
+ "source": "fragment RECOMMENDATION_UNIT_FRAGMENT on RecommendationUnit {\n displayOrder\n productsView {\n ...PRODUCTS_VIEW_FRAGMENT\n }\n storefrontLabel\n totalProducts\n typeId\n unitId\n unitName\n userError\n }\n\nfragment PRODUCTS_VIEW_FRAGMENT on ProductView {\n __typename\n name\n sku\n queryType\n visibility\n inStock\n images {\n url\n }\n urlKey\n ... on SimpleProductView {\n price {\n final {\n amount {\n currency\n value\n }\n }\n }\n }\n ... on ComplexProductView {\n priceRange {\n maximum {\n final {\n amount {\n currency\n value\n }\n }\n }\n minimum {\n final {\n amount {\n currency\n value\n }\n }\n }\n }\n }\n }",
2687
+ "fragmentDependencies": [
2688
+ "PRODUCTS_VIEW_FRAGMENT"
2689
+ ],
2690
+ "exported": true
2691
+ }
2692
+ ]
2693
+ },
2694
+ "storefront-company-management": {
2695
+ "version": "1.2.0",
2696
+ "operationCount": 30,
2697
+ "fragmentCount": 6,
2698
+ "operations": [
2699
+ {
2700
+ "name": "acceptCompanyInvitation",
2701
+ "type": "mutation",
2702
+ "exportName": "ACCEPT_COMPANY_INVITATION",
2703
+ "variables": [
2704
+ {
2705
+ "name": "input",
2706
+ "type": "CompanyInvitationInput!"
2707
+ }
2708
+ ],
2709
+ "fragmentDependencies": []
2710
+ },
2711
+ {
2712
+ "name": "CHECK_COMPANY_CREDIT_ENABLED",
2713
+ "type": "query",
2714
+ "exportName": "CHECK_COMPANY_CREDIT_ENABLED",
2715
+ "variables": [],
2716
+ "fragmentDependencies": []
2717
+ },
2718
+ {
2719
+ "name": "COMPANY_USERS",
2720
+ "type": "query",
2721
+ "exportName": "COMPANY_USERS_QUERY",
2722
+ "variables": [
2723
+ {
2724
+ "name": "pageSize",
2725
+ "type": "Int!"
2726
+ },
2727
+ {
2728
+ "name": "currentPage",
2729
+ "type": "Int!"
2730
+ },
2731
+ {
2732
+ "name": "filter",
2733
+ "type": "CompanyUsersFilterInput"
2734
+ }
2735
+ ],
2736
+ "fragmentDependencies": []
2737
+ },
2738
+ {
2739
+ "name": "CreateCompany",
2740
+ "type": "mutation",
2741
+ "exportName": "CREATE_COMPANY_MUTATION",
2742
+ "variables": [
2743
+ {
2744
+ "name": "input",
2745
+ "type": "CompanyCreateInput!"
2746
+ }
2747
+ ],
2748
+ "fragmentDependencies": []
2749
+ },
2750
+ {
2751
+ "name": "CreateCompanyRole",
2752
+ "type": "mutation",
2753
+ "exportName": "CREATE_COMPANY_ROLE",
2754
+ "variables": [
2755
+ {
2756
+ "name": "input",
2757
+ "type": "CompanyRoleCreateInput!"
2758
+ }
2759
+ ],
2760
+ "fragmentDependencies": [
2761
+ "CompanyRoleFragment"
2762
+ ]
2763
+ },
2764
+ {
2765
+ "name": "createCompanyTeam",
2766
+ "type": "mutation",
2767
+ "exportName": "CREATE_COMPANY_TEAM",
2768
+ "variables": [
2769
+ {
2770
+ "name": "input",
2771
+ "type": "CompanyTeamCreateInput!"
2772
+ }
2773
+ ],
2774
+ "fragmentDependencies": []
2775
+ },
2776
+ {
2777
+ "name": "createCompanyUser",
2778
+ "type": "mutation",
2779
+ "exportName": "CREATE_COMPANY_USER",
2780
+ "variables": [
2781
+ {
2782
+ "name": "input",
2783
+ "type": "CompanyUserCreateInput!"
2784
+ }
2785
+ ],
2786
+ "fragmentDependencies": []
2787
+ },
2788
+ {
2789
+ "name": "DELETE_COMPANY_USER",
2790
+ "type": "mutation",
2791
+ "exportName": "DELETE_COMPANY_USER_MUTATION",
2792
+ "variables": [
2793
+ {
2794
+ "name": "id",
2795
+ "type": "ID!"
2796
+ }
2797
+ ],
2798
+ "fragmentDependencies": []
2799
+ },
2800
+ {
2801
+ "name": "DeleteCompanyRole",
2802
+ "type": "mutation",
2803
+ "exportName": "DELETE_COMPANY_ROLE",
2804
+ "variables": [
2805
+ {
2806
+ "name": "id",
2807
+ "type": "ID!"
2808
+ }
2809
+ ],
2810
+ "fragmentDependencies": []
2811
+ },
2812
+ {
2813
+ "name": "deleteCompanyTeam",
2814
+ "type": "mutation",
2815
+ "exportName": "DELETE_COMPANY_TEAM",
2816
+ "variables": [
2817
+ {
2818
+ "name": "id",
2819
+ "type": "ID!"
2820
+ }
2821
+ ],
2822
+ "fragmentDependencies": []
2823
+ },
2824
+ {
2825
+ "name": "GET_ALLOW_COMPANY_REGISTRATION",
2826
+ "type": "query",
2827
+ "exportName": "GET_ALLOW_COMPANY_REGISTRATION",
2828
+ "variables": [],
2829
+ "fragmentDependencies": []
2830
+ },
2831
+ {
2832
+ "name": "GET_COMPANY_CREDIT",
2833
+ "type": "query",
2834
+ "exportName": "GET_COMPANY_CREDIT",
2835
+ "variables": [],
2836
+ "fragmentDependencies": []
2837
+ },
2838
+ {
2839
+ "name": "GET_COMPANY_CREDIT_HISTORY",
2840
+ "type": "query",
2841
+ "exportName": "GET_COMPANY_CREDIT_HISTORY",
2842
+ "variables": [
2843
+ {
2844
+ "name": "filter",
2845
+ "type": "CompanyCreditHistoryFilterInput"
2846
+ },
2847
+ {
2848
+ "name": "pageSize",
2849
+ "type": "Int"
2850
+ },
2851
+ {
2852
+ "name": "currentPage",
2853
+ "type": "Int"
2854
+ }
2855
+ ],
2856
+ "fragmentDependencies": []
2857
+ },
2858
+ {
2859
+ "name": "GET_COMPANY_ENABLED",
2860
+ "type": "query",
2861
+ "exportName": "GET_COMPANY_ENABLED",
2862
+ "variables": [],
2863
+ "fragmentDependencies": []
2864
+ },
2865
+ {
2866
+ "name": "GET_CUSTOMER_COMPANIES",
2867
+ "type": "query",
2868
+ "exportName": "GET_CUSTOMER_COMPANIES",
2869
+ "variables": [],
2870
+ "fragmentDependencies": []
2871
+ },
2872
+ {
2873
+ "name": "GET_CUSTOMER_COMPANIES_WITH_ROLES",
2874
+ "type": "query",
2875
+ "exportName": "GET_CUSTOMER_COMPANIES_WITH_ROLES",
2876
+ "variables": [],
2877
+ "fragmentDependencies": []
2878
+ },
2879
+ {
2880
+ "name": "GET_CUSTOMER_COMPANY_INFO",
2881
+ "type": "query",
2882
+ "exportName": "GET_CUSTOMER_COMPANY_INFO",
2883
+ "variables": [],
2884
+ "fragmentDependencies": []
2885
+ },
2886
+ {
2887
+ "name": "GET_CUSTOMER_ROLE_PERMISSIONS",
2888
+ "type": "query",
2889
+ "exportName": "GET_CUSTOMER_ROLE_PERMISSIONS",
2890
+ "variables": [],
2891
+ "fragmentDependencies": []
2892
+ },
2893
+ {
2894
+ "name": "getCompanyStructure",
2895
+ "type": "query",
2896
+ "exportName": "GET_COMPANY_STRUCTURE",
2897
+ "variables": [],
2898
+ "fragmentDependencies": []
2899
+ },
2900
+ {
2901
+ "name": "getCompanyTeam",
2902
+ "type": "query",
2903
+ "exportName": "GET_COMPANY_TEAM",
2904
+ "variables": [
2905
+ {
2906
+ "name": "id",
2907
+ "type": "ID!"
2908
+ }
2909
+ ],
2910
+ "fragmentDependencies": []
2911
+ },
2912
+ {
2913
+ "name": "getCompanyUser",
2914
+ "type": "query",
2915
+ "exportName": "GET_COMPANY_USER",
2916
+ "variables": [
2917
+ {
2918
+ "name": "id",
2919
+ "type": "ID!"
2920
+ }
2921
+ ],
2922
+ "fragmentDependencies": []
2923
+ },
2924
+ {
2925
+ "name": "getCountries",
2926
+ "type": "query",
2927
+ "exportName": "GET_COUNTRIES_QUERY",
2928
+ "variables": [],
2929
+ "fragmentDependencies": []
2930
+ },
2931
+ {
2932
+ "name": "getStoreConfig",
2933
+ "type": "query",
2934
+ "exportName": "GET_STORE_CONFIG_QUERY",
2935
+ "variables": [],
2936
+ "fragmentDependencies": []
2937
+ },
2938
+ {
2939
+ "name": "isCompanyUserEmailAvailable",
2940
+ "type": "query",
2941
+ "exportName": "IS_COMPANY_USER_EMAIL_AVAILABLE",
2942
+ "variables": [
2943
+ {
2944
+ "name": "email",
2945
+ "type": "String!"
2946
+ }
2947
+ ],
2948
+ "fragmentDependencies": []
2949
+ },
2950
+ {
2951
+ "name": "UPDATE_COMPANY_USER_STATUS",
2952
+ "type": "mutation",
2953
+ "exportName": "UPDATE_COMPANY_USER_STATUS_MUTATION",
2954
+ "variables": [
2955
+ {
2956
+ "name": "input",
2957
+ "type": "CompanyUserUpdateInput!"
2958
+ }
2959
+ ],
2960
+ "fragmentDependencies": []
2961
+ },
2962
+ {
2963
+ "name": "UpdateCompanyRole",
2964
+ "type": "mutation",
2965
+ "exportName": "UPDATE_COMPANY_ROLE",
2966
+ "variables": [
2967
+ {
2968
+ "name": "input",
2969
+ "type": "CompanyRoleUpdateInput!"
2970
+ }
2971
+ ],
2972
+ "fragmentDependencies": [
2973
+ "CompanyRoleFragment"
2974
+ ]
2975
+ },
2976
+ {
2977
+ "name": "updateCompanyStructure",
2978
+ "type": "mutation",
2979
+ "exportName": "UPDATE_COMPANY_STRUCTURE",
2980
+ "variables": [
2981
+ {
2982
+ "name": "treeId",
2983
+ "type": "ID!"
2984
+ },
2985
+ {
2986
+ "name": "parentTreeId",
2987
+ "type": "ID!"
2988
+ }
2989
+ ],
2990
+ "fragmentDependencies": []
2991
+ },
2992
+ {
2993
+ "name": "updateCompanyTeam",
2994
+ "type": "mutation",
2995
+ "exportName": "UPDATE_COMPANY_TEAM",
2996
+ "variables": [
2997
+ {
2998
+ "name": "input",
2999
+ "type": "CompanyTeamUpdateInput!"
3000
+ }
3001
+ ],
3002
+ "fragmentDependencies": []
3003
+ },
3004
+ {
3005
+ "name": "updateCompanyUser",
3006
+ "type": "mutation",
3007
+ "exportName": "UPDATE_COMPANY_USER",
3008
+ "variables": [
3009
+ {
3010
+ "name": "input",
3011
+ "type": "CompanyUserUpdateInput!"
3012
+ }
3013
+ ],
3014
+ "fragmentDependencies": []
3015
+ },
3016
+ {
3017
+ "name": "validateCompanyEmail",
3018
+ "type": "query",
3019
+ "exportName": "VALIDATE_COMPANY_EMAIL_QUERY",
3020
+ "variables": [
3021
+ {
3022
+ "name": "email",
3023
+ "type": "String!"
3024
+ }
3025
+ ],
3026
+ "fragmentDependencies": []
3027
+ }
3028
+ ],
3029
+ "fragments": [
3030
+ {
3031
+ "name": "COMPANY_ADMIN_FRAGMENT",
3032
+ "exportName": "COMPANY_ADMIN_FRAGMENT",
3033
+ "onType": "Customer",
3034
+ "fragmentDependencies": [],
3035
+ "exported": false
3036
+ },
3037
+ {
3038
+ "name": "COMPANY_BASIC_INFO_FRAGMENT",
3039
+ "exportName": "COMPANY_BASIC_INFO_FRAGMENT",
3040
+ "onType": "Company",
3041
+ "fragmentDependencies": [],
3042
+ "exported": false
3043
+ },
3044
+ {
3045
+ "name": "COMPANY_FULL_FRAGMENT",
3046
+ "exportName": "COMPANY_FULL_FRAGMENT",
3047
+ "onType": "Company",
3048
+ "fragmentDependencies": [
3049
+ "COMPANY_BASIC_INFO_FRAGMENT",
3050
+ "COMPANY_LEGAL_ADDRESS_FRAGMENT",
3051
+ "COMPANY_ADMIN_FRAGMENT",
3052
+ "COMPANY_SALES_REPRESENTATIVE_FRAGMENT"
3053
+ ],
3054
+ "exported": false
3055
+ },
3056
+ {
3057
+ "name": "COMPANY_LEGAL_ADDRESS_FRAGMENT",
3058
+ "exportName": "COMPANY_LEGAL_ADDRESS_FRAGMENT",
3059
+ "onType": "CompanyLegalAddress",
3060
+ "fragmentDependencies": [],
3061
+ "exported": false
3062
+ },
3063
+ {
3064
+ "name": "COMPANY_SALES_REPRESENTATIVE_FRAGMENT",
3065
+ "exportName": "COMPANY_SALES_REPRESENTATIVE_FRAGMENT",
3066
+ "onType": "CompanySalesRepresentative",
3067
+ "fragmentDependencies": [],
3068
+ "exported": false
3069
+ },
3070
+ {
3071
+ "name": "CompanyRoleFragment",
3072
+ "exportName": "COMPANY_ROLE_FRAGMENT",
3073
+ "onType": "CompanyRole",
3074
+ "fragmentDependencies": [],
3075
+ "exported": false
3076
+ }
3077
+ ]
3078
+ },
3079
+ "storefront-company-switcher": {
3080
+ "version": "1.1.1",
3081
+ "operationCount": 2,
3082
+ "fragmentCount": 0,
3083
+ "operations": [
3084
+ {
3085
+ "name": "GET_CUSTOMER_COMPANIES",
3086
+ "type": "query",
3087
+ "exportName": "GET_CUSTOMER_COMPANY_CONTEXT",
3088
+ "variables": [],
3089
+ "fragmentDependencies": []
3090
+ },
3091
+ {
3092
+ "name": "GET_CUSTOMER_GROUP",
3093
+ "type": "query",
3094
+ "exportName": "GET_CUSTOMER_GROUP_CONTEXT",
3095
+ "variables": [],
3096
+ "fragmentDependencies": []
3097
+ }
3098
+ ],
3099
+ "fragments": []
3100
+ },
3101
+ "storefront-purchase-order": {
3102
+ "version": "1.1.1",
3103
+ "operationCount": 17,
3104
+ "fragmentCount": 2,
3105
+ "operations": [
3106
+ {
3107
+ "name": "ADD_PURCHASE_ORDER_COMMENT",
3108
+ "type": "mutation",
3109
+ "exportName": "ADD_PURCHASE_ORDER_COMMENT",
3110
+ "variables": [
3111
+ {
3112
+ "name": "purchaseOrderUid",
3113
+ "type": "ID!"
3114
+ },
3115
+ {
3116
+ "name": "comment",
3117
+ "type": "String!"
3118
+ }
3119
+ ],
3120
+ "fragmentDependencies": []
3121
+ },
3122
+ {
3123
+ "name": "ADD_PURCHASE_ORDER_ITEMS_TO_CART",
3124
+ "type": "mutation",
3125
+ "exportName": "ADD_PURCHASE_ORDER_ITEMS_TO_CART",
3126
+ "variables": [
3127
+ {
3128
+ "name": "purchaseOrderUid",
3129
+ "type": "ID!"
3130
+ },
3131
+ {
3132
+ "name": "cartId",
3133
+ "type": "String!"
3134
+ },
3135
+ {
3136
+ "name": "replaceExistingCartItems",
3137
+ "type": "Boolean!"
3138
+ }
3139
+ ],
3140
+ "fragmentDependencies": []
3141
+ },
3142
+ {
3143
+ "name": "APPROVE_PURCHASE_ORDERS",
3144
+ "type": "mutation",
3145
+ "exportName": "APPROVE_PURCHASE_ORDERS",
3146
+ "variables": [
3147
+ {
3148
+ "name": "input",
3149
+ "type": "PurchaseOrdersActionInput!"
3150
+ }
3151
+ ],
3152
+ "fragmentDependencies": [
3153
+ "PURCHASE_ORDERS_FRAGMENT",
3154
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3155
+ ]
3156
+ },
3157
+ {
3158
+ "name": "CANCEL_PURCHASE_ORDERS",
3159
+ "type": "mutation",
3160
+ "exportName": "CANCEL_PURCHASE_ORDERS",
3161
+ "variables": [
3162
+ {
3163
+ "name": "input",
3164
+ "type": "PurchaseOrdersActionInput!"
3165
+ }
3166
+ ],
3167
+ "fragmentDependencies": [
3168
+ "PURCHASE_ORDERS_FRAGMENT",
3169
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3170
+ ]
3171
+ },
3172
+ {
3173
+ "name": "CREATE_PURCHASE_ORDER_APPROVAL_RULE",
3174
+ "type": "mutation",
3175
+ "exportName": "CREATE_PURCHASE_ORDER_APPROVAL_RULE",
3176
+ "variables": [
3177
+ {
3178
+ "name": "input",
3179
+ "type": "PurchaseOrderApprovalRuleInput!"
3180
+ }
3181
+ ],
3182
+ "fragmentDependencies": []
3183
+ },
3184
+ {
3185
+ "name": "DELETE_PURCHASE_ORDER_APPROVAL_RULE",
3186
+ "type": "mutation",
3187
+ "exportName": "DELETE_PURCHASE_ORDER_APPROVAL_RULE",
3188
+ "variables": [
3189
+ {
3190
+ "name": "input",
3191
+ "type": "DeletePurchaseOrderApprovalRuleInput!"
3192
+ }
3193
+ ],
3194
+ "fragmentDependencies": []
3195
+ },
3196
+ {
3197
+ "name": "GET_CURRENCY_INFO",
3198
+ "type": "query",
3199
+ "exportName": "GET_CURRENCY_INFO",
3200
+ "variables": [],
3201
+ "fragmentDependencies": []
3202
+ },
3203
+ {
3204
+ "name": "GET_PURCHASE_ORDER",
3205
+ "type": "query",
3206
+ "exportName": "GET_PURCHASE_ORDER",
3207
+ "variables": [
3208
+ {
3209
+ "name": "uid",
3210
+ "type": "ID!"
3211
+ }
3212
+ ],
3213
+ "fragmentDependencies": [
3214
+ "PURCHASE_ORDERS_FRAGMENT",
3215
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3216
+ ]
3217
+ },
3218
+ {
3219
+ "name": "GET_PURCHASE_ORDER_APPROVAL_RULE",
3220
+ "type": "query",
3221
+ "exportName": "GET_PURCHASE_ORDER_APPROVAL_RULE",
3222
+ "variables": [
3223
+ {
3224
+ "name": "uid",
3225
+ "type": "ID!"
3226
+ }
3227
+ ],
3228
+ "fragmentDependencies": []
3229
+ },
3230
+ {
3231
+ "name": "GET_PURCHASE_ORDER_APPROVAL_RULE_METADATA",
3232
+ "type": "query",
3233
+ "exportName": "GET_PURCHASE_ORDER_APPROVAL_RULE_METADATA",
3234
+ "variables": [],
3235
+ "fragmentDependencies": []
3236
+ },
3237
+ {
3238
+ "name": "GET_PURCHASE_ORDER_APPROVAL_RULES",
3239
+ "type": "query",
3240
+ "exportName": "GET_PURCHASE_ORDER_APPROVAL_RULES",
3241
+ "variables": [
3242
+ {
3243
+ "name": "currentPage",
3244
+ "type": "Int!"
3245
+ },
3246
+ {
3247
+ "name": "pageSize",
3248
+ "type": "Int!"
3249
+ }
3250
+ ],
3251
+ "fragmentDependencies": []
3252
+ },
3253
+ {
3254
+ "name": "GET_PURCHASE_ORDERS",
3255
+ "type": "query",
3256
+ "exportName": "GET_PURCHASE_ORDERS",
3257
+ "variables": [
3258
+ {
3259
+ "name": "filter",
3260
+ "type": "PurchaseOrdersFilterInput"
3261
+ },
3262
+ {
3263
+ "name": "pageSize",
3264
+ "type": "Int"
3265
+ },
3266
+ {
3267
+ "name": "currentPage",
3268
+ "type": "Int"
3269
+ }
3270
+ ],
3271
+ "fragmentDependencies": [
3272
+ "PURCHASE_ORDERS_FRAGMENT",
3273
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3274
+ ]
3275
+ },
3276
+ {
3277
+ "name": "PLACE_ORDER_FOR_PURCHASE_ORDER",
3278
+ "type": "mutation",
3279
+ "exportName": "PLACE_ORDER_FOR_PURCHASE_ORDER",
3280
+ "variables": [
3281
+ {
3282
+ "name": "input",
3283
+ "type": "PlaceOrderForPurchaseOrderInput!"
3284
+ }
3285
+ ],
3286
+ "fragmentDependencies": []
3287
+ },
3288
+ {
3289
+ "name": "PLACE_PURCHASE_ORDER",
3290
+ "type": "mutation",
3291
+ "exportName": "PLACE_PURCHASE_ORDER",
3292
+ "variables": [
3293
+ {
3294
+ "name": "input",
3295
+ "type": "PlacePurchaseOrderInput!"
3296
+ }
3297
+ ],
3298
+ "fragmentDependencies": [
3299
+ "PURCHASE_ORDERS_FRAGMENT",
3300
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3301
+ ]
3302
+ },
3303
+ {
3304
+ "name": "REJECT_PURCHASE_ORDERS",
3305
+ "type": "mutation",
3306
+ "exportName": "REJECT_PURCHASE_ORDERS",
3307
+ "variables": [
3308
+ {
3309
+ "name": "input",
3310
+ "type": "PurchaseOrdersActionInput!"
3311
+ }
3312
+ ],
3313
+ "fragmentDependencies": [
3314
+ "PURCHASE_ORDERS_FRAGMENT",
3315
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3316
+ ]
3317
+ },
3318
+ {
3319
+ "name": "UPDATE_PURCHASE_ORDER_APPROVAL_RULE",
3320
+ "type": "mutation",
3321
+ "exportName": "UPDATE_PURCHASE_ORDER_APPROVAL_RULE",
3322
+ "variables": [
3323
+ {
3324
+ "name": "input",
3325
+ "type": "UpdatePurchaseOrderApprovalRuleInput!"
3326
+ }
3327
+ ],
3328
+ "fragmentDependencies": []
3329
+ },
3330
+ {
3331
+ "name": "VALIDATE_PURCHASE_ORDERS",
3332
+ "type": "mutation",
3333
+ "exportName": "VALIDATE_PURCHASE_ORDERS",
3334
+ "variables": [
3335
+ {
3336
+ "name": "input",
3337
+ "type": "ValidatePurchaseOrdersInput!"
3338
+ }
3339
+ ],
3340
+ "fragmentDependencies": [
3341
+ "PURCHASE_ORDERS_FRAGMENT",
3342
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3343
+ ]
3344
+ }
3345
+ ],
3346
+ "fragments": [
3347
+ {
3348
+ "name": "PURCHASE_ORDER_QUOTE_FRAGMENT",
3349
+ "exportName": "PURCHASE_ORDER_QUOTE_FRAGMENT",
3350
+ "onType": "Cart",
3351
+ "fragmentDependencies": [],
3352
+ "exported": false
3353
+ },
3354
+ {
3355
+ "name": "PURCHASE_ORDERS_FRAGMENT",
3356
+ "exportName": "PURCHASE_ORDERS_FRAGMENT",
3357
+ "onType": "PurchaseOrder",
3358
+ "source": "fragment PURCHASE_ORDERS_FRAGMENT on PurchaseOrder {\n __typename\n uid\n number\n status\n available_actions\n approval_flow {\n events {\n name\n role\n message\n status\n updated_at\n }\n rule_name\n }\n comments {\n created_at\n author {\n firstname\n lastname\n email\n }\n text\n }\n created_at\n updated_at\n created_by {\n firstname\n lastname\n email\n }\n history_log {\n message\n created_at\n activity\n __typename\n uid\n }\n order {\n number\n }\n quote {\n ...PURCHASE_ORDER_QUOTE_FRAGMENT\n }\n }\n\nfragment PURCHASE_ORDER_QUOTE_FRAGMENT on Cart {\n __typename\n id\n email\n is_virtual\n total_quantity\n applied_coupons {\n code\n }\n applied_gift_cards {\n code\n applied_balance {\n value\n currency\n }\n current_balance {\n value\n currency\n }\n expiration_date\n }\n applied_reward_points {\n money {\n value\n currency\n }\n points\n }\n applied_store_credit {\n applied_balance {\n value\n currency\n }\n current_balance {\n value\n currency\n }\n }\n available_gift_wrappings {\n uid\n design\n price {\n value\n currency\n }\n image {\n url\n label\n }\n }\n gift_message {\n from\n to\n message\n }\n gift_receipt_included\n gift_wrapping {\n uid\n design\n price {\n value\n currency\n }\n image {\n url\n label\n }\n }\n printed_card_included\n available_payment_methods {\n code\n title\n is_deferred\n }\n selected_payment_method {\n code\n title\n }\n billing_address {\n city\n company\n country {\n code\n label\n }\n firstname\n lastname\n postcode\n region {\n code\n label\n }\n street\n telephone\n custom_attributes {\n code\n }\n fax\n id\n middlename\n prefix\n suffix\n uid\n vat_id\n }\n shipping_addresses {\n city\n company\n country {\n code\n label\n }\n firstname\n lastname\n postcode\n region {\n code\n label\n }\n street\n telephone\n custom_attributes {\n code\n }\n fax\n id\n middlename\n prefix\n suffix\n uid\n vat_id\n available_shipping_methods {\n amount {\n value\n currency\n }\n carrier_code\n carrier_title\n method_code\n method_title\n }\n selected_shipping_method {\n amount {\n value\n currency\n }\n carrier_code\n carrier_title\n method_code\n method_title\n }\n }\n rules {\n uid\n }\n itemsV2(pageSize: 100, currentPage: 1) {\n items {\n uid\n quantity\n product {\n __typename\n uid\n name\n sku\n url_key\n canonical_url\n stock_status\n only_x_left_in_stock\n image {\n url\n label\n }\n small_image {\n url\n label\n }\n thumbnail {\n url\n label\n }\n price_range {\n maximum_price {\n regular_price {\n value\n currency\n }\n final_price {\n value\n currency\n }\n }\n }\n }\n prices {\n price {\n value\n currency\n }\n price_including_tax {\n value\n currency\n }\n original_item_price {\n value\n currency\n }\n original_row_total {\n value\n currency\n }\n row_total {\n value\n currency\n }\n row_total_including_tax {\n value\n currency\n }\n total_item_discount {\n value\n currency\n }\n discounts {\n label\n amount {\n value\n currency\n }\n }\n fixed_product_taxes {\n label\n amount {\n value\n currency\n }\n }\n }\n ... on SimpleCartItem {\n customizable_options {\n label\n values {\n label\n value\n }\n }\n }\n ... on ConfigurableCartItem {\n configurable_options {\n option_label\n value_label\n }\n }\n ... on BundleCartItem {\n bundle_options {\n uid\n label\n type\n values {\n uid\n label\n quantity\n }\n }\n }\n ... on DownloadableCartItem {\n links {\n uid\n title\n }\n }\n ... on GiftCardCartItem {\n sender_name\n sender_email\n recipient_name\n recipient_email\n message\n amount {\n value\n currency\n }\n }\n errors {\n code\n message\n }\n is_available\n max_qty\n min_qty\n not_available_message\n note_from_buyer {\n note_uid\n note\n created_at\n }\n note_from_seller {\n note_uid\n note\n created_at\n }\n }\n page_info {\n current_page\n page_size\n total_pages\n }\n total_count\n }\n prices {\n grand_total {\n value\n currency\n }\n grand_total_excluding_tax {\n value\n currency\n }\n subtotal_excluding_tax {\n value\n currency\n }\n subtotal_including_tax {\n value\n currency\n }\n subtotal_with_discount_excluding_tax {\n value\n currency\n }\n applied_taxes {\n label\n amount {\n value\n currency\n }\n }\n discounts {\n label\n amount {\n value\n currency\n }\n }\n gift_options {\n gift_wrapping_for_items {\n value\n currency\n }\n gift_wrapping_for_items_incl_tax {\n value\n currency\n }\n gift_wrapping_for_order {\n value\n currency\n }\n gift_wrapping_for_order_incl_tax {\n value\n currency\n }\n printed_card {\n value\n currency\n }\n printed_card_incl_tax {\n value\n currency\n }\n }\n }\n }",
3359
+ "fragmentDependencies": [
3360
+ "PURCHASE_ORDER_QUOTE_FRAGMENT"
3361
+ ],
3362
+ "exported": true
3363
+ }
3364
+ ]
3365
+ },
3366
+ "storefront-quick-order": {
3367
+ "version": "1.0.0-beta.3",
3368
+ "operationCount": 1,
3369
+ "fragmentCount": 0,
3370
+ "operations": [
3371
+ {
3372
+ "name": "GET_STORE_CONFIG",
3373
+ "type": "query",
3374
+ "exportName": "GET_STORE_CONFIG",
3375
+ "variables": [],
3376
+ "fragmentDependencies": []
3377
+ }
3378
+ ],
3379
+ "fragments": []
3380
+ },
3381
+ "storefront-product-discovery": {
3382
+ "version": "3.1.0",
3383
+ "operationCount": 1,
3384
+ "fragmentCount": 2,
3385
+ "operations": [
3386
+ {
3387
+ "name": "productSearch",
3388
+ "type": "query",
3389
+ "exportName": "PRODUCT_SEARCH_QUERY",
3390
+ "variables": [
3391
+ {
3392
+ "name": "phrase",
3393
+ "type": "String!"
3394
+ },
3395
+ {
3396
+ "name": "pageSize",
3397
+ "type": "Int"
3398
+ },
3399
+ {
3400
+ "name": "currentPage",
3401
+ "type": "Int"
3402
+ },
3403
+ {
3404
+ "name": "filter",
3405
+ "type": "[SearchClauseInput!]"
3406
+ },
3407
+ {
3408
+ "name": "sort",
3409
+ "type": "[ProductSearchSortInput!]"
3410
+ },
3411
+ {
3412
+ "name": "context",
3413
+ "type": "QueryContextInput"
3414
+ }
3415
+ ],
3416
+ "fragmentDependencies": [
3417
+ "ProductView",
3418
+ "Facet"
3419
+ ]
3420
+ }
3421
+ ],
3422
+ "fragments": [
3423
+ {
3424
+ "name": "Facet",
3425
+ "exportName": "Facet",
3426
+ "onType": "Aggregation",
3427
+ "source": "fragment Facet on Aggregation {\n title\n attribute\n buckets {\n title\n __typename\n ... on CategoryView {\n name\n count\n path\n }\n ... on ScalarBucket {\n count\n }\n ... on RangeBucket {\n from\n to\n count\n }\n ... on StatsBucket {\n min\n max\n }\n }\n }",
3428
+ "fragmentDependencies": [],
3429
+ "exported": true
3430
+ },
3431
+ {
3432
+ "name": "ProductView",
3433
+ "exportName": "ProductView",
3434
+ "onType": "ProductSearchItem",
3435
+ "source": "fragment ProductView on ProductSearchItem {\n productView {\n __typename\n sku\n name\n inStock\n url\n urlKey\n attributes(roles: []) {\n name\n label\n value\n roles\n }\n images {\n label\n url\n roles\n }\n ... on ComplexProductView {\n priceRange {\n maximum {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n }\n minimum {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n }\n }\n options {\n id\n title\n values {\n title\n ... on ProductViewOptionValueSwatch {\n id\n inStock\n type\n value\n }\n }\n }\n }\n ... on SimpleProductView {\n price {\n final {\n amount {\n value\n currency\n }\n }\n regular {\n amount {\n value\n currency\n }\n }\n }\n }\n }\n highlights {\n attribute\n value\n matched_words\n }\n }",
3436
+ "fragmentDependencies": [],
3437
+ "exported": true
3438
+ }
3439
+ ]
3440
+ },
3441
+ "storefront-personalization": {
3442
+ "version": "3.1.1",
3443
+ "operationCount": 2,
3444
+ "fragmentCount": 0,
3445
+ "operations": [
3446
+ {
3447
+ "name": "PERSONALIZATION_DATA",
3448
+ "type": "query",
3449
+ "exportName": "PERSONALIZATION_DATA_QUERY",
3450
+ "variables": [
3451
+ {
3452
+ "name": "cartId",
3453
+ "type": "String!"
3454
+ }
3455
+ ],
3456
+ "fragmentDependencies": []
3457
+ },
3458
+ {
3459
+ "name": "STORE_CONFIG_QUERY",
3460
+ "type": "query",
3461
+ "exportName": "STORE_CONFIG_QUERY",
3462
+ "variables": [],
3463
+ "fragmentDependencies": []
3464
+ }
3465
+ ],
3466
+ "fragments": []
3467
+ }
3468
+ }
3469
+ }