@vendure/dashboard 3.2.0 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (381) hide show
  1. package/LICENSE.md +42 -0
  2. package/README.md +12 -12
  3. package/index.html +15 -15
  4. package/lingui.config.js +12 -12
  5. package/package.json +11 -2
  6. package/src/app/app-providers.tsx +30 -30
  7. package/src/app/main.tsx +97 -97
  8. package/src/app/routes/__root.tsx +24 -24
  9. package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +79 -79
  10. package/src/app/routes/_authenticated/_administrators/administrators.tsx +86 -86
  11. package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +155 -155
  12. package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +133 -133
  13. package/src/app/routes/_authenticated/_assets/assets.tsx +19 -19
  14. package/src/app/routes/_authenticated/_channels/channels.graphql.ts +93 -93
  15. package/src/app/routes/_authenticated/_channels/channels.tsx +60 -60
  16. package/src/app/routes/_authenticated/_channels/channels_.$id.tsx +248 -248
  17. package/src/app/routes/_authenticated/_collections/collections.graphql.ts +133 -133
  18. package/src/app/routes/_authenticated/_collections/collections.tsx +195 -195
  19. package/src/app/routes/_authenticated/_collections/collections_.$id.tsx +224 -224
  20. package/src/app/routes/_authenticated/_collections/components/collection-contents-preview-table.tsx +127 -127
  21. package/src/app/routes/_authenticated/_collections/components/collection-contents-sheet.tsx +46 -46
  22. package/src/app/routes/_authenticated/_collections/components/collection-contents-table.tsx +82 -82
  23. package/src/app/routes/_authenticated/_collections/components/collection-filters-selector.tsx +91 -91
  24. package/src/app/routes/_authenticated/_countries/countries.graphql.ts +69 -69
  25. package/src/app/routes/_authenticated/_countries/countries.tsx +67 -67
  26. package/src/app/routes/_authenticated/_countries/countries_.$id.tsx +122 -122
  27. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-sheet.tsx +44 -44
  28. package/src/app/routes/_authenticated/_customer-groups/components/customer-group-members-table.tsx +129 -129
  29. package/src/app/routes/_authenticated/_customer-groups/customer-groups.graphql.ts +71 -71
  30. package/src/app/routes/_authenticated/_customer-groups/customer-groups.tsx +68 -68
  31. package/src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx +111 -111
  32. package/src/app/routes/_authenticated/_customers/components/customer-address-card.tsx +155 -155
  33. package/src/app/routes/_authenticated/_customers/components/customer-address-form.tsx +344 -344
  34. package/src/app/routes/_authenticated/_customers/components/customer-group-controls.tsx +4 -4
  35. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history-container.tsx +78 -78
  36. package/src/app/routes/_authenticated/_customers/components/customer-history/customer-history.tsx +77 -77
  37. package/src/app/routes/_authenticated/_customers/components/customer-history/index.ts +3 -3
  38. package/src/app/routes/_authenticated/_customers/components/customer-history/use-customer-history.ts +169 -169
  39. package/src/app/routes/_authenticated/_customers/components/customer-order-table.tsx +88 -88
  40. package/src/app/routes/_authenticated/_customers/components/customer-status-badge.tsx +33 -33
  41. package/src/app/routes/_authenticated/_customers/customers.graphql.ts +204 -204
  42. package/src/app/routes/_authenticated/_customers/customers.tsx +82 -82
  43. package/src/app/routes/_authenticated/_customers/customers_.$id.tsx +274 -274
  44. package/src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx +129 -129
  45. package/src/app/routes/_authenticated/_facets/components/facet-values-sheet.tsx +46 -46
  46. package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +97 -97
  47. package/src/app/routes/_authenticated/_facets/facets.graphql.ts +104 -104
  48. package/src/app/routes/_authenticated/_facets/facets.tsx +97 -97
  49. package/src/app/routes/_authenticated/_facets/facets_.$id.tsx +139 -139
  50. package/src/app/routes/_authenticated/_global-settings/global-settings.graphql.ts +28 -28
  51. package/src/app/routes/_authenticated/_global-settings/global-settings.tsx +161 -161
  52. package/src/app/routes/_authenticated/_orders/components/order-address.tsx +58 -58
  53. package/src/app/routes/_authenticated/_orders/components/order-history/index.ts +3 -3
  54. package/src/app/routes/_authenticated/_orders/components/order-history/order-history-container.tsx +72 -72
  55. package/src/app/routes/_authenticated/_orders/components/order-history/order-history.tsx +96 -96
  56. package/src/app/routes/_authenticated/_orders/components/order-history/use-order-history.ts +171 -171
  57. package/src/app/routes/_authenticated/_orders/components/order-table.tsx +169 -169
  58. package/src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx +38 -38
  59. package/src/app/routes/_authenticated/_orders/components/payment-details.tsx +61 -61
  60. package/src/app/routes/_authenticated/_orders/orders.graphql.ts +325 -325
  61. package/src/app/routes/_authenticated/_orders/orders.tsx +120 -120
  62. package/src/app/routes/_authenticated/_orders/orders_.$id.tsx +133 -133
  63. package/src/app/routes/_authenticated/_payment-methods/components/payment-eligibility-checker-selector.tsx +104 -104
  64. package/src/app/routes/_authenticated/_payment-methods/components/payment-handler-selector.tsx +100 -100
  65. package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +83 -83
  66. package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +64 -64
  67. package/src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx +183 -183
  68. package/src/app/routes/_authenticated/_product-variants/components/variant-price-detail.tsx +87 -87
  69. package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +123 -123
  70. package/src/app/routes/_authenticated/_product-variants/product-variants.tsx +78 -78
  71. package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +331 -331
  72. package/src/app/routes/_authenticated/_products/components/create-product-variants-dialog.tsx +228 -228
  73. package/src/app/routes/_authenticated/_products/components/create-product-variants.tsx +462 -462
  74. package/src/app/routes/_authenticated/_products/components/option-value-input.tsx +95 -95
  75. package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +87 -87
  76. package/src/app/routes/_authenticated/_products/products.graphql.ts +116 -116
  77. package/src/app/routes/_authenticated/_products/products.tsx +48 -48
  78. package/src/app/routes/_authenticated/_products/products_.$id.tsx +196 -196
  79. package/src/app/routes/_authenticated/_profile/profile.graphql.ts +23 -23
  80. package/src/app/routes/_authenticated/_profile/profile.tsx +122 -122
  81. package/src/app/routes/_authenticated/_promotions/components/promotion-actions-selector.tsx +107 -107
  82. package/src/app/routes/_authenticated/_promotions/components/promotion-conditions-selector.tsx +107 -107
  83. package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +96 -96
  84. package/src/app/routes/_authenticated/_promotions/promotions.tsx +61 -61
  85. package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +235 -235
  86. package/src/app/routes/_authenticated/_roles/components/expandable-permissions.tsx +54 -54
  87. package/src/app/routes/_authenticated/_roles/components/permissions-grid.tsx +116 -116
  88. package/src/app/routes/_authenticated/_roles/roles.graphql.ts +67 -67
  89. package/src/app/routes/_authenticated/_roles/roles.tsx +96 -96
  90. package/src/app/routes/_authenticated/_roles/roles_.$id.tsx +142 -142
  91. package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +61 -61
  92. package/src/app/routes/_authenticated/_sellers/sellers.tsx +51 -51
  93. package/src/app/routes/_authenticated/_sellers/sellers_.$id.tsx +111 -111
  94. package/src/app/routes/_authenticated/_shipping-methods/components/fulfillment-handler-selector.tsx +56 -56
  95. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-calculator-selector.tsx +101 -101
  96. package/src/app/routes/_authenticated/_shipping-methods/components/shipping-eligibility-checker-selector.tsx +101 -101
  97. package/src/app/routes/_authenticated/_shipping-methods/components/test-shipping-method-dialog.tsx +32 -32
  98. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +83 -83
  99. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +55 -55
  100. package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +171 -171
  101. package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +62 -62
  102. package/src/app/routes/_authenticated/_stock-locations/stock-locations.tsx +48 -48
  103. package/src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx +115 -115
  104. package/src/app/routes/_authenticated/_system/components/payload-dialog.tsx +34 -34
  105. package/src/app/routes/_authenticated/_system/healthchecks.tsx +93 -93
  106. package/src/app/routes/_authenticated/_system/job-queue.graphql.ts +43 -43
  107. package/src/app/routes/_authenticated/_system/job-queue.tsx +161 -161
  108. package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +63 -63
  109. package/src/app/routes/_authenticated/_tax-categories/tax-categories.tsx +65 -65
  110. package/src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx +115 -115
  111. package/src/app/routes/_authenticated/_tax-rates/tax-rates.graphql.ts +75 -75
  112. package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +108 -108
  113. package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +148 -148
  114. package/src/app/routes/_authenticated/_zones/components/zone-countries-sheet.tsx +31 -31
  115. package/src/app/routes/_authenticated/_zones/components/zone-countries-table.tsx +79 -79
  116. package/src/app/routes/_authenticated/_zones/zones.graphql.ts +96 -96
  117. package/src/app/routes/_authenticated/_zones/zones.tsx +57 -57
  118. package/src/app/routes/_authenticated/_zones/zones_.$id.tsx +103 -103
  119. package/src/app/routes/_authenticated/index.tsx +194 -194
  120. package/src/app/routes/_authenticated.tsx +25 -25
  121. package/src/app/routes/login.tsx +48 -48
  122. package/src/app/styles.css +82 -82
  123. package/src/app/tailwindcss-animate.css +275 -275
  124. package/src/i18n/locales/de.po +1579 -1579
  125. package/src/i18n/locales/en.po +1579 -1579
  126. package/src/lib/components/data-display/boolean.tsx +23 -23
  127. package/src/lib/components/data-display/date-time.tsx +13 -13
  128. package/src/lib/components/data-display/json.tsx +5 -5
  129. package/src/lib/components/data-display/money.tsx +15 -15
  130. package/src/lib/components/data-input/affixed-input.tsx +49 -49
  131. package/src/lib/components/data-input/customer-group-input.tsx +72 -72
  132. package/src/lib/components/data-input/datetime-input.tsx +149 -149
  133. package/src/lib/components/data-input/facet-value-input.tsx +68 -68
  134. package/src/lib/components/data-input/money-input.tsx +112 -112
  135. package/src/lib/components/data-input/richt-text-input.tsx +99 -99
  136. package/src/lib/components/data-table/data-table-column-header.tsx +73 -73
  137. package/src/lib/components/data-table/data-table-faceted-filter.tsx +172 -172
  138. package/src/lib/components/data-table/data-table-filter-dialog.tsx +73 -73
  139. package/src/lib/components/data-table/data-table-pagination.tsx +87 -87
  140. package/src/lib/components/data-table/data-table-view-options.tsx +53 -53
  141. package/src/lib/components/data-table/data-table.tsx +218 -218
  142. package/src/lib/components/layout/app-layout.tsx +42 -42
  143. package/src/lib/components/layout/app-sidebar.tsx +34 -34
  144. package/src/lib/components/layout/channel-switcher.tsx +87 -87
  145. package/src/lib/components/layout/content-language-selector.tsx +41 -41
  146. package/src/lib/components/layout/generated-breadcrumbs.tsx +82 -82
  147. package/src/lib/components/layout/language-dialog.tsx +104 -104
  148. package/src/lib/components/layout/nav-main.tsx +178 -178
  149. package/src/lib/components/layout/nav-projects.tsx +81 -81
  150. package/src/lib/components/layout/nav-user.tsx +176 -176
  151. package/src/lib/components/layout/prerelease-popup.tsx +38 -38
  152. package/src/lib/components/login/login-form.tsx +173 -173
  153. package/src/lib/components/shared/alerts.tsx +20 -20
  154. package/src/lib/components/shared/animated-number.tsx +49 -49
  155. package/src/lib/components/shared/asset-gallery.tsx +433 -433
  156. package/src/lib/components/shared/asset-picker-dialog.tsx +71 -71
  157. package/src/lib/components/shared/asset-preview-dialog.tsx +48 -48
  158. package/src/lib/components/shared/asset-preview.tsx +345 -345
  159. package/src/lib/components/shared/assigned-facet-values.tsx +68 -68
  160. package/src/lib/components/shared/channel-code-label.tsx +7 -7
  161. package/src/lib/components/shared/channel-selector.tsx +51 -51
  162. package/src/lib/components/shared/configurable-operation-arg-input.tsx +51 -51
  163. package/src/lib/components/shared/configurable-operation-input.tsx +133 -133
  164. package/src/lib/components/shared/confirmation-dialog.tsx +58 -58
  165. package/src/lib/components/shared/copyable-text.tsx +31 -31
  166. package/src/lib/components/shared/country-selector.tsx +105 -105
  167. package/src/lib/components/shared/currency-selector.tsx +33 -33
  168. package/src/lib/components/shared/custom-fields-form.tsx +86 -86
  169. package/src/lib/components/shared/customer-address-form.tsx +330 -330
  170. package/src/lib/components/shared/customer-group-chip.tsx +30 -30
  171. package/src/lib/components/shared/customer-group-selector.tsx +62 -62
  172. package/src/lib/components/shared/customer-selector.tsx +107 -107
  173. package/src/lib/components/shared/detail-page-button.tsx +22 -22
  174. package/src/lib/components/shared/entity-assets.tsx +340 -340
  175. package/src/lib/components/shared/error-page.tsx +31 -31
  176. package/src/lib/components/shared/facet-value-chip.tsx +44 -44
  177. package/src/lib/components/shared/facet-value-selector.tsx +306 -306
  178. package/src/lib/components/shared/focal-point-control.tsx +64 -64
  179. package/src/lib/components/shared/form-field-wrapper.tsx +37 -37
  180. package/src/lib/components/shared/history-timeline/history-entry.tsx +112 -112
  181. package/src/lib/components/shared/history-timeline/history-note-checkbox.tsx +28 -28
  182. package/src/lib/components/shared/history-timeline/history-note-editor.tsx +60 -60
  183. package/src/lib/components/shared/history-timeline/history-note-input.tsx +39 -39
  184. package/src/lib/components/shared/history-timeline/history-timeline.tsx +56 -56
  185. package/src/lib/components/shared/icon-mark.tsx +18 -18
  186. package/src/lib/components/shared/language-selector.tsx +48 -48
  187. package/src/lib/components/shared/logo-mark.tsx +24 -24
  188. package/src/lib/components/shared/multi-select.tsx +159 -159
  189. package/src/lib/components/shared/option-value-input.tsx +94 -94
  190. package/src/lib/components/shared/paginated-list-data-table.tsx +520 -520
  191. package/src/lib/components/shared/permission-guard.tsx +20 -20
  192. package/src/lib/components/shared/role-code-label.tsx +8 -8
  193. package/src/lib/components/shared/role-selector.tsx +56 -56
  194. package/src/lib/components/shared/seller-selector.tsx +107 -107
  195. package/src/lib/components/shared/tax-category-selector.tsx +65 -65
  196. package/src/lib/components/shared/translatable-form-field.tsx +74 -74
  197. package/src/lib/components/shared/vendure-image.tsx +159 -159
  198. package/src/lib/components/shared/zone-selector.tsx +66 -66
  199. package/src/lib/components/ui/accordion.tsx +59 -59
  200. package/src/lib/components/ui/alert-dialog.tsx +128 -128
  201. package/src/lib/components/ui/alert.tsx +60 -60
  202. package/src/lib/components/ui/avatar.tsx +38 -38
  203. package/src/lib/components/ui/badge.tsx +38 -38
  204. package/src/lib/components/ui/breadcrumb.tsx +102 -102
  205. package/src/lib/components/ui/button.tsx +51 -51
  206. package/src/lib/components/ui/calendar.tsx +69 -69
  207. package/src/lib/components/ui/card.tsx +47 -47
  208. package/src/lib/components/ui/checkbox.tsx +27 -27
  209. package/src/lib/components/ui/collapsible.tsx +33 -33
  210. package/src/lib/components/ui/command.tsx +133 -133
  211. package/src/lib/components/ui/dialog.tsx +116 -116
  212. package/src/lib/components/ui/dropdown-menu.tsx +220 -220
  213. package/src/lib/components/ui/form.tsx +141 -141
  214. package/src/lib/components/ui/hover-card.tsx +36 -36
  215. package/src/lib/components/ui/input.tsx +19 -19
  216. package/src/lib/components/ui/label.tsx +21 -21
  217. package/src/lib/components/ui/pagination.tsx +127 -127
  218. package/src/lib/components/ui/popover.tsx +40 -40
  219. package/src/lib/components/ui/scroll-area.tsx +50 -50
  220. package/src/lib/components/ui/select.tsx +161 -161
  221. package/src/lib/components/ui/separator.tsx +26 -26
  222. package/src/lib/components/ui/sheet.tsx +118 -118
  223. package/src/lib/components/ui/sidebar.tsx +696 -696
  224. package/src/lib/components/ui/skeleton.tsx +13 -13
  225. package/src/lib/components/ui/sonner.tsx +27 -27
  226. package/src/lib/components/ui/switch.tsx +26 -26
  227. package/src/lib/components/ui/table.tsx +82 -82
  228. package/src/lib/components/ui/tabs.tsx +48 -48
  229. package/src/lib/components/ui/textarea.tsx +18 -18
  230. package/src/lib/components/ui/tooltip.tsx +51 -51
  231. package/src/lib/constants.ts +326 -326
  232. package/src/lib/framework/component-registry/component-registry.tsx +70 -70
  233. package/src/lib/framework/component-registry/dynamic-component.tsx +58 -58
  234. package/src/lib/framework/dashboard-widget/base-widget.tsx +97 -97
  235. package/src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx +96 -96
  236. package/src/lib/framework/dashboard-widget/latest-orders-widget/latest-orders-widget.graphql.ts +35 -35
  237. package/src/lib/framework/dashboard-widget/metrics-widget/chart.tsx +24 -24
  238. package/src/lib/framework/dashboard-widget/metrics-widget/index.tsx +82 -82
  239. package/src/lib/framework/dashboard-widget/metrics-widget/metrics-widget.graphql.ts +14 -14
  240. package/src/lib/framework/dashboard-widget/orders-summary/index.tsx +167 -167
  241. package/src/lib/framework/dashboard-widget/orders-summary/order-summary-widget.graphql.ts +14 -14
  242. package/src/lib/framework/dashboard-widget/types.ts +22 -22
  243. package/src/lib/framework/dashboard-widget/widget-extensions.tsx +19 -19
  244. package/src/lib/framework/defaults.ts +219 -219
  245. package/src/lib/framework/document-introspection/add-custom-fields.spec.ts +242 -242
  246. package/src/lib/framework/document-introspection/add-custom-fields.ts +246 -246
  247. package/src/lib/framework/document-introspection/get-document-structure.spec.ts +310 -310
  248. package/src/lib/framework/document-introspection/get-document-structure.ts +460 -460
  249. package/src/lib/framework/document-introspection/hooks.ts +10 -10
  250. package/src/lib/framework/extension-api/define-dashboard-extension.ts +66 -66
  251. package/src/lib/framework/extension-api/extension-api-types.ts +58 -58
  252. package/src/lib/framework/extension-api/use-dashboard-extensions.ts +26 -26
  253. package/src/lib/framework/form-engine/form-schema-tools.ts +98 -98
  254. package/src/lib/framework/form-engine/use-generated-form.tsx +116 -116
  255. package/src/lib/framework/layout-engine/layout-extensions.ts +30 -30
  256. package/src/lib/framework/layout-engine/location-wrapper.tsx +96 -96
  257. package/src/lib/framework/layout-engine/page-layout.tsx +272 -272
  258. package/src/lib/framework/nav-menu/nav-menu-extensions.ts +66 -66
  259. package/src/lib/framework/page/detail-page-route-loader.tsx +48 -48
  260. package/src/lib/framework/page/detail-page.tsx +131 -131
  261. package/src/lib/framework/page/list-page.tsx +166 -166
  262. package/src/lib/framework/page/page-api.ts +9 -9
  263. package/src/lib/framework/page/page-types.ts +51 -51
  264. package/src/lib/framework/page/use-detail-page.ts +217 -217
  265. package/src/lib/framework/page/use-extended-router.tsx +69 -69
  266. package/src/lib/framework/registry/global-registry.ts +46 -46
  267. package/src/lib/framework/registry/registry-types.ts +15 -15
  268. package/src/lib/graphql/api.ts +61 -61
  269. package/src/lib/graphql/fragments.tsx +54 -54
  270. package/src/lib/graphql/graphql-env.d.ts +499 -499
  271. package/src/lib/graphql/graphql.ts +15 -15
  272. package/src/lib/hooks/use-auth.tsx +11 -11
  273. package/src/lib/hooks/use-channel.ts +12 -12
  274. package/src/lib/hooks/use-custom-field-config.ts +10 -10
  275. package/src/lib/hooks/use-grouped-permissions.ts +54 -54
  276. package/src/lib/hooks/use-local-format.ts +119 -119
  277. package/src/lib/hooks/use-mobile.ts +19 -19
  278. package/src/lib/hooks/use-page.tsx +10 -10
  279. package/src/lib/hooks/use-permissions.ts +22 -22
  280. package/src/lib/hooks/use-server-config.ts +4 -4
  281. package/src/lib/hooks/use-theme.ts +10 -10
  282. package/src/lib/hooks/use-user-settings.tsx +12 -12
  283. package/src/lib/index.ts +149 -149
  284. package/src/lib/lib/trans.tsx +16 -16
  285. package/src/lib/lib/utils.ts +60 -60
  286. package/src/lib/providers/auth.tsx +152 -152
  287. package/src/lib/providers/channel-provider.tsx +121 -121
  288. package/src/lib/providers/i18n-provider.tsx +28 -28
  289. package/src/lib/providers/server-config.tsx +279 -279
  290. package/src/lib/providers/theme-provider.tsx +54 -54
  291. package/src/lib/providers/user-settings.tsx +89 -89
  292. package/src/lib/virtual.d.ts +12 -12
  293. package/vite/config-loader.ts +181 -181
  294. package/vite/constants.ts +280 -280
  295. package/vite/index.ts +1 -1
  296. package/vite/schema-generator.ts +40 -40
  297. package/vite/ui-config.ts +60 -60
  298. package/vite/vite-plugin-admin-api-schema.ts +141 -141
  299. package/vite/vite-plugin-config-loader.ts +64 -64
  300. package/vite/vite-plugin-config.ts +42 -42
  301. package/vite/vite-plugin-dashboard-metadata.ts +58 -58
  302. package/vite/vite-plugin-gql-tada.ts +62 -62
  303. package/vite/vite-plugin-theme.ts +195 -195
  304. package/vite/vite-plugin-ui-config.ts +60 -60
  305. package/vite/vite-plugin-vendure-dashboard.ts +118 -118
  306. package/dist/plugin/.vendure-dashboard-temp/dev-config.js +0 -227
  307. package/dist/plugin/.vendure-dashboard-temp/dev-config.js.map +0 -1
  308. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js +0 -33
  309. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/api-extensions.js.map +0 -1
  310. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js +0 -69
  311. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/api/mv.resolver.js.map +0 -1
  312. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js +0 -110
  313. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-process.js.map +0 -1
  314. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js +0 -134
  315. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-order-seller-strategy.js.map +0 -1
  316. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js +0 -86
  317. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-payment-handler.js.map +0 -1
  318. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js +0 -49
  319. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-eligibility-checker.js.map +0 -1
  320. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js +0 -57
  321. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/config/mv-shipping-line-assignment-strategy.js.map +0 -1
  322. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js +0 -20
  323. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/constants.js.map +0 -1
  324. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js +0 -151
  325. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/multivendor.plugin.js.map +0 -1
  326. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js +0 -47
  327. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/payment/mv-connect-sdk.js.map +0 -1
  328. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js +0 -222
  329. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/service/mv.service.js.map +0 -1
  330. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js +0 -4
  331. package/dist/plugin/.vendure-dashboard-temp/example-plugins/multivendor-plugin/types.js.map +0 -1
  332. package/dist/plugin/.vendure-dashboard-temp/package.json +0 -3
  333. package/dist/plugin/.vendure-dashboard-temp/schema.graphql +0 -6378
  334. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js +0 -103
  335. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/api-extensions.js.map +0 -1
  336. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js +0 -105
  337. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-entity.resolver.js.map +0 -1
  338. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js +0 -183
  339. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-admin.resolver.js.map +0 -1
  340. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js +0 -113
  341. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-entity.resolver.js.map +0 -1
  342. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js +0 -112
  343. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/api/product-review-shop.resolver.js.map +0 -1
  344. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js +0 -111
  345. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/entities/product-review.entity.js.map +0 -1
  346. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js +0 -616
  347. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-admin-types.js.map +0 -1
  348. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js +0 -563
  349. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/generated-shop-types.js.map +0 -1
  350. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js +0 -135
  351. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/reviews-plugin.js.map +0 -1
  352. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js +0 -4
  353. package/dist/plugin/.vendure-dashboard-temp/test-plugins/reviews/types.js.map +0 -1
  354. package/dist/plugin/.vendure-dashboard-temp/tsconfig.json +0 -10
  355. package/dist/plugin/config-loader.d.ts +0 -27
  356. package/dist/plugin/config-loader.js +0 -141
  357. package/dist/plugin/constants.d.ts +0 -5
  358. package/dist/plugin/constants.js +0 -277
  359. package/dist/plugin/index.d.ts +0 -1
  360. package/dist/plugin/index.js +0 -1
  361. package/dist/plugin/schema-generator.d.ts +0 -5
  362. package/dist/plugin/schema-generator.js +0 -24
  363. package/dist/plugin/ui-config.d.ts +0 -3
  364. package/dist/plugin/ui-config.js +0 -35
  365. package/dist/plugin/vite-plugin-admin-api-schema.d.ts +0 -24
  366. package/dist/plugin/vite-plugin-admin-api-schema.js +0 -82
  367. package/dist/plugin/vite-plugin-config-loader.d.ts +0 -17
  368. package/dist/plugin/vite-plugin-config-loader.js +0 -56
  369. package/dist/plugin/vite-plugin-config.d.ts +0 -4
  370. package/dist/plugin/vite-plugin-config.js +0 -38
  371. package/dist/plugin/vite-plugin-dashboard-metadata.d.ts +0 -9
  372. package/dist/plugin/vite-plugin-dashboard-metadata.js +0 -52
  373. package/dist/plugin/vite-plugin-gql-tada.d.ts +0 -6
  374. package/dist/plugin/vite-plugin-gql-tada.js +0 -51
  375. package/dist/plugin/vite-plugin-set-root.d.ts +0 -4
  376. package/dist/plugin/vite-plugin-set-root.js +0 -15
  377. package/dist/plugin/vite-plugin-ui-config.d.ts +0 -15
  378. package/dist/plugin/vite-plugin-ui-config.js +0 -43
  379. package/dist/plugin/vite-plugin-vendure-dashboard.d.ts +0 -35
  380. package/dist/plugin/vite-plugin-vendure-dashboard.js +0 -81
  381. package/src/app/routeTree.gen.ts +0 -1372
@@ -1 +0,0 @@
1
- "{\"version\":3,\"sources\":[\"C:\\\\Development\\\\vendure\\\\vendure\\\\packages\\\\dev-server\\\\test-plugins\\\\reviews\\\\generated-admin-types.ts\"],\"sourcesContent\":[\"/* eslint-disable */\\r\\nexport type Maybe<T> = T;\\r\\nexport type InputMaybe<T> = T;\\r\\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\\r\\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\\r\\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\\r\\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\\r\\nexport type Incremental<T> =\\r\\n | T\\r\\n | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\\r\\n/** All built-in and custom scalars, mapped to their actual values */\\r\\nexport type Scalars = {\\r\\n ID: { input: string | number; output: string | number };\\r\\n String: { input: string; output: string };\\r\\n Boolean: { input: boolean; output: boolean };\\r\\n Int: { input: number; output: number };\\r\\n Float: { input: number; output: number };\\r\\n DateTime: { input: any; output: any };\\r\\n JSON: { input: any; output: any };\\r\\n Money: { input: any; output: any };\\r\\n Upload: { input: any; output: any };\\r\\n};\\r\\n\\r\\nexport type AddFulfillmentToOrderResult =\\r\\n | CreateFulfillmentError\\r\\n | EmptyOrderLineSelectionError\\r\\n | Fulfillment\\r\\n | FulfillmentStateTransitionError\\r\\n | InsufficientStockOnHandError\\r\\n | InvalidFulfillmentHandlerError\\r\\n | ItemsAlreadyFulfilledError;\\r\\n\\r\\nexport type AddItemInput = {\\r\\n productVariantId: Scalars['ID']['input'];\\r\\n quantity: Scalars['Int']['input'];\\r\\n};\\r\\n\\r\\nexport type AddItemToDraftOrderInput = {\\r\\n productVariantId: Scalars['ID']['input'];\\r\\n quantity: Scalars['Int']['input'];\\r\\n};\\r\\n\\r\\nexport type AddManualPaymentToOrderResult = ManualPaymentStateError | Order;\\r\\n\\r\\nexport type AddNoteToCustomerInput = {\\r\\n id: Scalars['ID']['input'];\\r\\n isPublic: Scalars['Boolean']['input'];\\r\\n note: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type AddNoteToOrderInput = {\\r\\n id: Scalars['ID']['input'];\\r\\n isPublic: Scalars['Boolean']['input'];\\r\\n note: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type Address = Node & {\\r\\n __typename?: 'Address';\\r\\n city?: Maybe<Scalars['String']['output']>;\\r\\n company?: Maybe<Scalars['String']['output']>;\\r\\n country: Country;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n defaultBillingAddress?: Maybe<Scalars['Boolean']['output']>;\\r\\n defaultShippingAddress?: Maybe<Scalars['Boolean']['output']>;\\r\\n fullName?: Maybe<Scalars['String']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n phoneNumber?: Maybe<Scalars['String']['output']>;\\r\\n postalCode?: Maybe<Scalars['String']['output']>;\\r\\n province?: Maybe<Scalars['String']['output']>;\\r\\n streetLine1: Scalars['String']['output'];\\r\\n streetLine2?: Maybe<Scalars['String']['output']>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type AdjustDraftOrderLineInput = {\\r\\n orderLineId: Scalars['ID']['input'];\\r\\n quantity: Scalars['Int']['input'];\\r\\n};\\r\\n\\r\\nexport type Adjustment = {\\r\\n __typename?: 'Adjustment';\\r\\n adjustmentSource: Scalars['String']['output'];\\r\\n amount: Scalars['Money']['output'];\\r\\n data?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n type: AdjustmentType;\\r\\n};\\r\\n\\r\\nexport enum AdjustmentType {\\r\\n DISTRIBUTED_ORDER_PROMOTION = 'DISTRIBUTED_ORDER_PROMOTION',\\r\\n OTHER = 'OTHER',\\r\\n PROMOTION = 'PROMOTION',\\r\\n}\\r\\n\\r\\nexport type Administrator = Node & {\\r\\n __typename?: 'Administrator';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n emailAddress: Scalars['String']['output'];\\r\\n firstName: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n lastName: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n user: User;\\r\\n};\\r\\n\\r\\nexport type AdministratorFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n emailAddress?: InputMaybe<StringOperators>;\\r\\n firstName?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n lastName?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type AdministratorList = PaginatedList & {\\r\\n __typename?: 'AdministratorList';\\r\\n items: Array<Administrator>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type AdministratorListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<AdministratorFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<AdministratorSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type AdministratorPaymentInput = {\\r\\n metadata?: InputMaybe<Scalars['JSON']['input']>;\\r\\n paymentMethod?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type AdministratorRefundInput = {\\r\\n paymentId: Scalars['ID']['input'];\\r\\n reason?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type AdministratorSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n emailAddress?: InputMaybe<SortOrder>;\\r\\n firstName?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n lastName?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type Allocation = Node &\\r\\n StockMovement & {\\r\\n __typename?: 'Allocation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n orderLine: OrderLine;\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\n/** Returned if an attempting to refund an OrderItem which has already been refunded */\\r\\nexport type AlreadyRefundedError = ErrorResult & {\\r\\n __typename?: 'AlreadyRefundedError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n refundId: Scalars['ID']['output'];\\r\\n};\\r\\n\\r\\nexport type ApplyCouponCodeResult =\\r\\n | CouponCodeExpiredError\\r\\n | CouponCodeInvalidError\\r\\n | CouponCodeLimitError\\r\\n | Order;\\r\\n\\r\\nexport type Asset = Node & {\\r\\n __typename?: 'Asset';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n fileSize: Scalars['Int']['output'];\\r\\n focalPoint?: Maybe<Coordinate>;\\r\\n height: Scalars['Int']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n mimeType: Scalars['String']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n preview: Scalars['String']['output'];\\r\\n source: Scalars['String']['output'];\\r\\n tags: Array<Tag>;\\r\\n type: AssetType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n width: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type AssetFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n fileSize?: InputMaybe<NumberOperators>;\\r\\n height?: InputMaybe<NumberOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n mimeType?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n preview?: InputMaybe<StringOperators>;\\r\\n source?: InputMaybe<StringOperators>;\\r\\n type?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n width?: InputMaybe<NumberOperators>;\\r\\n};\\r\\n\\r\\nexport type AssetList = PaginatedList & {\\r\\n __typename?: 'AssetList';\\r\\n items: Array<Asset>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type AssetListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<AssetFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<AssetSortParameter>;\\r\\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n tagsOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssetSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n fileSize?: InputMaybe<SortOrder>;\\r\\n height?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n mimeType?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n preview?: InputMaybe<SortOrder>;\\r\\n source?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n width?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport enum AssetType {\\r\\n BINARY = 'BINARY',\\r\\n IMAGE = 'IMAGE',\\r\\n VIDEO = 'VIDEO',\\r\\n}\\r\\n\\r\\nexport type AssignAssetsToChannelInput = {\\r\\n assetIds: Array<Scalars['ID']['input']>;\\r\\n channelId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type AssignCollectionsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n collectionIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignFacetsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n facetIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignPaymentMethodsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n paymentMethodIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignProductVariantsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n priceFactor?: InputMaybe<Scalars['Float']['input']>;\\r\\n productVariantIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignProductsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n priceFactor?: InputMaybe<Scalars['Float']['input']>;\\r\\n productIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignPromotionsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n promotionIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignShippingMethodsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n shippingMethodIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AssignStockLocationsToChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n stockLocationIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type AuthenticationInput = {\\r\\n native?: InputMaybe<NativeAuthInput>;\\r\\n};\\r\\n\\r\\nexport type AuthenticationMethod = Node & {\\r\\n __typename?: 'AuthenticationMethod';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n strategy: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type AuthenticationResult = CurrentUser | InvalidCredentialsError;\\r\\n\\r\\nexport type BooleanCustomFieldConfig = CustomField & {\\r\\n __typename?: 'BooleanCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a list of Boolean fields */\\r\\nexport type BooleanListOperators = {\\r\\n inList: Scalars['Boolean']['input'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a Boolean field */\\r\\nexport type BooleanOperators = {\\r\\n eq?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n isNull?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\n/** Returned if an attempting to cancel lines from an Order which is still active */\\r\\nexport type CancelActiveOrderError = ErrorResult & {\\r\\n __typename?: 'CancelActiveOrderError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n orderState: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CancelOrderInput = {\\r\\n /** Specify whether the shipping charges should also be cancelled. Defaults to false */\\r\\n cancelShipping?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n /** Optionally specify which OrderLines to cancel. If not provided, all OrderLines will be cancelled */\\r\\n lines?: InputMaybe<Array<OrderLineInput>>;\\r\\n /** The id of the order to be cancelled */\\r\\n orderId: Scalars['ID']['input'];\\r\\n reason?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type CancelOrderResult =\\r\\n | CancelActiveOrderError\\r\\n | EmptyOrderLineSelectionError\\r\\n | MultipleOrderError\\r\\n | Order\\r\\n | OrderStateTransitionError\\r\\n | QuantityTooGreatError;\\r\\n\\r\\n/** Returned if the Payment cancellation fails */\\r\\nexport type CancelPaymentError = ErrorResult & {\\r\\n __typename?: 'CancelPaymentError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n paymentErrorMessage: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CancelPaymentResult = CancelPaymentError | Payment | PaymentStateTransitionError;\\r\\n\\r\\nexport type Cancellation = Node &\\r\\n StockMovement & {\\r\\n __typename?: 'Cancellation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n orderLine: OrderLine;\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type Channel = Node & {\\r\\n __typename?: 'Channel';\\r\\n availableCurrencyCodes: Array<CurrencyCode>;\\r\\n availableLanguageCodes?: Maybe<Array<LanguageCode>>;\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n /** @deprecated Use defaultCurrencyCode instead */\\r\\n currencyCode: CurrencyCode;\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n defaultCurrencyCode: CurrencyCode;\\r\\n defaultLanguageCode: LanguageCode;\\r\\n defaultShippingZone?: Maybe<Zone>;\\r\\n defaultTaxZone?: Maybe<Zone>;\\r\\n id: Scalars['ID']['output'];\\r\\n /** Not yet used - will be implemented in a future release. */\\r\\n outOfStockThreshold?: Maybe<Scalars['Int']['output']>;\\r\\n pricesIncludeTax: Scalars['Boolean']['output'];\\r\\n seller?: Maybe<Seller>;\\r\\n token: Scalars['String']['output'];\\r\\n /** Not yet used - will be implemented in a future release. */\\r\\n trackInventory?: Maybe<Scalars['Boolean']['output']>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Returned when the default LanguageCode of a Channel is no longer found in the `availableLanguages`\\r\\n * of the GlobalSettings\\r\\n */\\r\\nexport type ChannelDefaultLanguageError = ErrorResult & {\\r\\n __typename?: 'ChannelDefaultLanguageError';\\r\\n channelCode: Scalars['String']['output'];\\r\\n errorCode: ErrorCode;\\r\\n language: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type ChannelFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n currencyCode?: InputMaybe<StringOperators>;\\r\\n defaultCurrencyCode?: InputMaybe<StringOperators>;\\r\\n defaultLanguageCode?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n outOfStockThreshold?: InputMaybe<NumberOperators>;\\r\\n pricesIncludeTax?: InputMaybe<BooleanOperators>;\\r\\n token?: InputMaybe<StringOperators>;\\r\\n trackInventory?: InputMaybe<BooleanOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type ChannelList = PaginatedList & {\\r\\n __typename?: 'ChannelList';\\r\\n items: Array<Channel>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ChannelListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ChannelFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ChannelSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ChannelSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n outOfStockThreshold?: InputMaybe<SortOrder>;\\r\\n token?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type Collection = Node & {\\r\\n __typename?: 'Collection';\\r\\n assets: Array<Asset>;\\r\\n breadcrumbs: Array<CollectionBreadcrumb>;\\r\\n children?: Maybe<Array<Collection>>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n featuredAsset?: Maybe<Asset>;\\r\\n filters: Array<ConfigurableOperation>;\\r\\n id: Scalars['ID']['output'];\\r\\n inheritFilters: Scalars['Boolean']['output'];\\r\\n isPrivate: Scalars['Boolean']['output'];\\r\\n languageCode?: Maybe<LanguageCode>;\\r\\n name: Scalars['String']['output'];\\r\\n parent?: Maybe<Collection>;\\r\\n parentId: Scalars['ID']['output'];\\r\\n position: Scalars['Int']['output'];\\r\\n productVariants: ProductVariantList;\\r\\n slug: Scalars['String']['output'];\\r\\n translations: Array<CollectionTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type CollectionProductVariantsArgs = {\\r\\n options?: InputMaybe<ProductVariantListOptions>;\\r\\n};\\r\\n\\r\\nexport type CollectionBreadcrumb = {\\r\\n __typename?: 'CollectionBreadcrumb';\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n slug: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CollectionFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n inheritFilters?: InputMaybe<BooleanOperators>;\\r\\n isPrivate?: InputMaybe<BooleanOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n parentId?: InputMaybe<IdOperators>;\\r\\n position?: InputMaybe<NumberOperators>;\\r\\n slug?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type CollectionList = PaginatedList & {\\r\\n __typename?: 'CollectionList';\\r\\n items: Array<Collection>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type CollectionListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<CollectionFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<CollectionSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n topLevelOnly?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\n/**\\r\\n * Which Collections are present in the products returned\\r\\n * by the search, and in what quantity.\\r\\n */\\r\\nexport type CollectionResult = {\\r\\n __typename?: 'CollectionResult';\\r\\n collection: Collection;\\r\\n count: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type CollectionSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n parentId?: InputMaybe<SortOrder>;\\r\\n position?: InputMaybe<SortOrder>;\\r\\n slug?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type CollectionTranslation = {\\r\\n __typename?: 'CollectionTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n slug: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ConfigArg = {\\r\\n __typename?: 'ConfigArg';\\r\\n name: Scalars['String']['output'];\\r\\n value: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type ConfigArgDefinition = {\\r\\n __typename?: 'ConfigArgDefinition';\\r\\n defaultValue?: Maybe<Scalars['JSON']['output']>;\\r\\n description?: Maybe<Scalars['String']['output']>;\\r\\n label?: Maybe<Scalars['String']['output']>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n required: Scalars['Boolean']['output'];\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type ConfigArgInput = {\\r\\n name: Scalars['String']['input'];\\r\\n /** A JSON stringified representation of the actual value */\\r\\n value: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type ConfigurableOperation = {\\r\\n __typename?: 'ConfigurableOperation';\\r\\n args: Array<ConfigArg>;\\r\\n code: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type ConfigurableOperationDefinition = {\\r\\n __typename?: 'ConfigurableOperationDefinition';\\r\\n args: Array<ConfigArgDefinition>;\\r\\n code: Scalars['String']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type ConfigurableOperationInput = {\\r\\n arguments: Array<ConfigArgInput>;\\r\\n code: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type Coordinate = {\\r\\n __typename?: 'Coordinate';\\r\\n x: Scalars['Float']['output'];\\r\\n y: Scalars['Float']['output'];\\r\\n};\\r\\n\\r\\nexport type CoordinateInput = {\\r\\n x: Scalars['Float']['input'];\\r\\n y: Scalars['Float']['input'];\\r\\n};\\r\\n\\r\\nexport type Country = Node &\\r\\n Region & {\\r\\n __typename?: 'Country';\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n parent?: Maybe<Region>;\\r\\n parentId?: Maybe<Scalars['ID']['output']>;\\r\\n translations: Array<RegionTranslation>;\\r\\n type: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type CountryFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n parentId?: InputMaybe<IdOperators>;\\r\\n type?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type CountryList = PaginatedList & {\\r\\n __typename?: 'CountryList';\\r\\n items: Array<Country>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type CountryListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<CountryFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<CountrySortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type CountrySortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n parentId?: InputMaybe<SortOrder>;\\r\\n type?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type CountryTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\n/** Returned if the provided coupon code is invalid */\\r\\nexport type CouponCodeExpiredError = ErrorResult & {\\r\\n __typename?: 'CouponCodeExpiredError';\\r\\n couponCode: Scalars['String']['output'];\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if the provided coupon code is invalid */\\r\\nexport type CouponCodeInvalidError = ErrorResult & {\\r\\n __typename?: 'CouponCodeInvalidError';\\r\\n couponCode: Scalars['String']['output'];\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if the provided coupon code is invalid */\\r\\nexport type CouponCodeLimitError = ErrorResult & {\\r\\n __typename?: 'CouponCodeLimitError';\\r\\n couponCode: Scalars['String']['output'];\\r\\n errorCode: ErrorCode;\\r\\n limit: Scalars['Int']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CreateAddressInput = {\\r\\n city?: InputMaybe<Scalars['String']['input']>;\\r\\n company?: InputMaybe<Scalars['String']['input']>;\\r\\n countryCode: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n defaultBillingAddress?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n defaultShippingAddress?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n fullName?: InputMaybe<Scalars['String']['input']>;\\r\\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\\r\\n postalCode?: InputMaybe<Scalars['String']['input']>;\\r\\n province?: InputMaybe<Scalars['String']['input']>;\\r\\n streetLine1: Scalars['String']['input'];\\r\\n streetLine2?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type CreateAdministratorInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n emailAddress: Scalars['String']['input'];\\r\\n firstName: Scalars['String']['input'];\\r\\n lastName: Scalars['String']['input'];\\r\\n password: Scalars['String']['input'];\\r\\n roleIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type CreateAssetInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n file: Scalars['Upload']['input'];\\r\\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n};\\r\\n\\r\\nexport type CreateAssetResult = Asset | MimeTypeError;\\r\\n\\r\\nexport type CreateChannelInput = {\\r\\n availableCurrencyCodes?: InputMaybe<Array<CurrencyCode>>;\\r\\n availableLanguageCodes?: InputMaybe<Array<LanguageCode>>;\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n defaultCurrencyCode?: InputMaybe<CurrencyCode>;\\r\\n defaultLanguageCode: LanguageCode;\\r\\n defaultShippingZoneId: Scalars['ID']['input'];\\r\\n defaultTaxZoneId: Scalars['ID']['input'];\\r\\n outOfStockThreshold?: InputMaybe<Scalars['Int']['input']>;\\r\\n pricesIncludeTax: Scalars['Boolean']['input'];\\r\\n sellerId?: InputMaybe<Scalars['ID']['input']>;\\r\\n token: Scalars['String']['input'];\\r\\n trackInventory?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type CreateChannelResult = Channel | LanguageNotAvailableError;\\r\\n\\r\\nexport type CreateCollectionInput = {\\r\\n assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n featuredAssetId?: InputMaybe<Scalars['ID']['input']>;\\r\\n filters: Array<ConfigurableOperationInput>;\\r\\n inheritFilters?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n isPrivate?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n parentId?: InputMaybe<Scalars['ID']['input']>;\\r\\n translations: Array<CreateCollectionTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateCollectionTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description: Scalars['String']['input'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['input'];\\r\\n slug: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateCountryInput = {\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled: Scalars['Boolean']['input'];\\r\\n translations: Array<CountryTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateCustomerGroupInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n name: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateCustomerInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n emailAddress: Scalars['String']['input'];\\r\\n firstName: Scalars['String']['input'];\\r\\n lastName: Scalars['String']['input'];\\r\\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\\r\\n title?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type CreateCustomerResult = Customer | EmailAddressConflictError;\\r\\n\\r\\nexport type CreateFacetInput = {\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n isPrivate: Scalars['Boolean']['input'];\\r\\n translations: Array<FacetTranslationInput>;\\r\\n values?: InputMaybe<Array<CreateFacetValueWithFacetInput>>;\\r\\n};\\r\\n\\r\\nexport type CreateFacetValueInput = {\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n facetId: Scalars['ID']['input'];\\r\\n translations: Array<FacetValueTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateFacetValueWithFacetInput = {\\r\\n code: Scalars['String']['input'];\\r\\n translations: Array<FacetValueTranslationInput>;\\r\\n};\\r\\n\\r\\n/** Returned if an error is thrown in a FulfillmentHandler's createFulfillment method */\\r\\nexport type CreateFulfillmentError = ErrorResult & {\\r\\n __typename?: 'CreateFulfillmentError';\\r\\n errorCode: ErrorCode;\\r\\n fulfillmentHandlerError: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CreateGroupOptionInput = {\\r\\n code: Scalars['String']['input'];\\r\\n translations: Array<ProductOptionGroupTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreatePaymentMethodInput = {\\r\\n checker?: InputMaybe<ConfigurableOperationInput>;\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled: Scalars['Boolean']['input'];\\r\\n handler: ConfigurableOperationInput;\\r\\n translations: Array<PaymentMethodTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateProductCustomFieldsInput = {\\r\\n featuredReviewId?: InputMaybe<Scalars['ID']['input']>;\\r\\n reviewCount?: InputMaybe<Scalars['Float']['input']>;\\r\\n reviewRating?: InputMaybe<Scalars['Float']['input']>;\\r\\n};\\r\\n\\r\\nexport type CreateProductInput = {\\r\\n assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n customFields?: InputMaybe<CreateProductCustomFieldsInput>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n facetValueIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n featuredAssetId?: InputMaybe<Scalars['ID']['input']>;\\r\\n translations: Array<ProductTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateProductOptionGroupInput = {\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n options: Array<CreateGroupOptionInput>;\\r\\n translations: Array<ProductOptionGroupTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateProductOptionInput = {\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n productOptionGroupId: Scalars['ID']['input'];\\r\\n translations: Array<ProductOptionGroupTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateProductVariantInput = {\\r\\n assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n facetValueIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n featuredAssetId?: InputMaybe<Scalars['ID']['input']>;\\r\\n optionIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n outOfStockThreshold?: InputMaybe<Scalars['Int']['input']>;\\r\\n price?: InputMaybe<Scalars['Money']['input']>;\\r\\n productId: Scalars['ID']['input'];\\r\\n sku: Scalars['String']['input'];\\r\\n stockLevels?: InputMaybe<Array<StockLevelInput>>;\\r\\n stockOnHand?: InputMaybe<Scalars['Int']['input']>;\\r\\n taxCategoryId?: InputMaybe<Scalars['ID']['input']>;\\r\\n trackInventory?: InputMaybe<GlobalFlag>;\\r\\n translations: Array<ProductVariantTranslationInput>;\\r\\n useGlobalOutOfStockThreshold?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type CreateProductVariantOptionInput = {\\r\\n code: Scalars['String']['input'];\\r\\n optionGroupId: Scalars['ID']['input'];\\r\\n translations: Array<ProductOptionTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreatePromotionInput = {\\r\\n actions: Array<ConfigurableOperationInput>;\\r\\n conditions: Array<ConfigurableOperationInput>;\\r\\n couponCode?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled: Scalars['Boolean']['input'];\\r\\n endsAt?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n perCustomerUsageLimit?: InputMaybe<Scalars['Int']['input']>;\\r\\n startsAt?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n translations: Array<PromotionTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreatePromotionResult = MissingConditionsError | Promotion;\\r\\n\\r\\nexport type CreateProvinceInput = {\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled: Scalars['Boolean']['input'];\\r\\n translations: Array<ProvinceTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateRoleInput = {\\r\\n channelIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n code: Scalars['String']['input'];\\r\\n description: Scalars['String']['input'];\\r\\n permissions: Array<Permission>;\\r\\n};\\r\\n\\r\\nexport type CreateSellerInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n name: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateShippingMethodInput = {\\r\\n calculator: ConfigurableOperationInput;\\r\\n checker: ConfigurableOperationInput;\\r\\n code: Scalars['String']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n fulfillmentHandler: Scalars['String']['input'];\\r\\n translations: Array<ShippingMethodTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type CreateStockLocationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n name: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateTagInput = {\\r\\n value: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateTaxCategoryInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n name: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateTaxRateInput = {\\r\\n categoryId: Scalars['ID']['input'];\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n customerGroupId?: InputMaybe<Scalars['ID']['input']>;\\r\\n enabled: Scalars['Boolean']['input'];\\r\\n name: Scalars['String']['input'];\\r\\n value: Scalars['Float']['input'];\\r\\n zoneId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type CreateZoneInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n memberIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n name: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * @description\\r\\n * ISO 4217 currency code\\r\\n *\\r\\n * @docsCategory common\\r\\n */\\r\\nexport enum CurrencyCode {\\r\\n /** United Arab Emirates dirham */\\r\\n AED = 'AED',\\r\\n /** Afghan afghani */\\r\\n AFN = 'AFN',\\r\\n /** Albanian lek */\\r\\n ALL = 'ALL',\\r\\n /** Armenian dram */\\r\\n AMD = 'AMD',\\r\\n /** Netherlands Antillean guilder */\\r\\n ANG = 'ANG',\\r\\n /** Angolan kwanza */\\r\\n AOA = 'AOA',\\r\\n /** Argentine peso */\\r\\n ARS = 'ARS',\\r\\n /** Australian dollar */\\r\\n AUD = 'AUD',\\r\\n /** Aruban florin */\\r\\n AWG = 'AWG',\\r\\n /** Azerbaijani manat */\\r\\n AZN = 'AZN',\\r\\n /** Bosnia and Herzegovina convertible mark */\\r\\n BAM = 'BAM',\\r\\n /** Barbados dollar */\\r\\n BBD = 'BBD',\\r\\n /** Bangladeshi taka */\\r\\n BDT = 'BDT',\\r\\n /** Bulgarian lev */\\r\\n BGN = 'BGN',\\r\\n /** Bahraini dinar */\\r\\n BHD = 'BHD',\\r\\n /** Burundian franc */\\r\\n BIF = 'BIF',\\r\\n /** Bermudian dollar */\\r\\n BMD = 'BMD',\\r\\n /** Brunei dollar */\\r\\n BND = 'BND',\\r\\n /** Boliviano */\\r\\n BOB = 'BOB',\\r\\n /** Brazilian real */\\r\\n BRL = 'BRL',\\r\\n /** Bahamian dollar */\\r\\n BSD = 'BSD',\\r\\n /** Bhutanese ngultrum */\\r\\n BTN = 'BTN',\\r\\n /** Botswana pula */\\r\\n BWP = 'BWP',\\r\\n /** Belarusian ruble */\\r\\n BYN = 'BYN',\\r\\n /** Belize dollar */\\r\\n BZD = 'BZD',\\r\\n /** Canadian dollar */\\r\\n CAD = 'CAD',\\r\\n /** Congolese franc */\\r\\n CDF = 'CDF',\\r\\n /** Swiss franc */\\r\\n CHF = 'CHF',\\r\\n /** Chilean peso */\\r\\n CLP = 'CLP',\\r\\n /** Renminbi (Chinese) yuan */\\r\\n CNY = 'CNY',\\r\\n /** Colombian peso */\\r\\n COP = 'COP',\\r\\n /** Costa Rican colon */\\r\\n CRC = 'CRC',\\r\\n /** Cuban convertible peso */\\r\\n CUC = 'CUC',\\r\\n /** Cuban peso */\\r\\n CUP = 'CUP',\\r\\n /** Cape Verde escudo */\\r\\n CVE = 'CVE',\\r\\n /** Czech koruna */\\r\\n CZK = 'CZK',\\r\\n /** Djiboutian franc */\\r\\n DJF = 'DJF',\\r\\n /** Danish krone */\\r\\n DKK = 'DKK',\\r\\n /** Dominican peso */\\r\\n DOP = 'DOP',\\r\\n /** Algerian dinar */\\r\\n DZD = 'DZD',\\r\\n /** Egyptian pound */\\r\\n EGP = 'EGP',\\r\\n /** Eritrean nakfa */\\r\\n ERN = 'ERN',\\r\\n /** Ethiopian birr */\\r\\n ETB = 'ETB',\\r\\n /** Euro */\\r\\n EUR = 'EUR',\\r\\n /** Fiji dollar */\\r\\n FJD = 'FJD',\\r\\n /** Falkland Islands pound */\\r\\n FKP = 'FKP',\\r\\n /** Pound sterling */\\r\\n GBP = 'GBP',\\r\\n /** Georgian lari */\\r\\n GEL = 'GEL',\\r\\n /** Ghanaian cedi */\\r\\n GHS = 'GHS',\\r\\n /** Gibraltar pound */\\r\\n GIP = 'GIP',\\r\\n /** Gambian dalasi */\\r\\n GMD = 'GMD',\\r\\n /** Guinean franc */\\r\\n GNF = 'GNF',\\r\\n /** Guatemalan quetzal */\\r\\n GTQ = 'GTQ',\\r\\n /** Guyanese dollar */\\r\\n GYD = 'GYD',\\r\\n /** Hong Kong dollar */\\r\\n HKD = 'HKD',\\r\\n /** Honduran lempira */\\r\\n HNL = 'HNL',\\r\\n /** Croatian kuna */\\r\\n HRK = 'HRK',\\r\\n /** Haitian gourde */\\r\\n HTG = 'HTG',\\r\\n /** Hungarian forint */\\r\\n HUF = 'HUF',\\r\\n /** Indonesian rupiah */\\r\\n IDR = 'IDR',\\r\\n /** Israeli new shekel */\\r\\n ILS = 'ILS',\\r\\n /** Indian rupee */\\r\\n INR = 'INR',\\r\\n /** Iraqi dinar */\\r\\n IQD = 'IQD',\\r\\n /** Iranian rial */\\r\\n IRR = 'IRR',\\r\\n /** Icelandic króna */\\r\\n ISK = 'ISK',\\r\\n /** Jamaican dollar */\\r\\n JMD = 'JMD',\\r\\n /** Jordanian dinar */\\r\\n JOD = 'JOD',\\r\\n /** Japanese yen */\\r\\n JPY = 'JPY',\\r\\n /** Kenyan shilling */\\r\\n KES = 'KES',\\r\\n /** Kyrgyzstani som */\\r\\n KGS = 'KGS',\\r\\n /** Cambodian riel */\\r\\n KHR = 'KHR',\\r\\n /** Comoro franc */\\r\\n KMF = 'KMF',\\r\\n /** North Korean won */\\r\\n KPW = 'KPW',\\r\\n /** South Korean won */\\r\\n KRW = 'KRW',\\r\\n /** Kuwaiti dinar */\\r\\n KWD = 'KWD',\\r\\n /** Cayman Islands dollar */\\r\\n KYD = 'KYD',\\r\\n /** Kazakhstani tenge */\\r\\n KZT = 'KZT',\\r\\n /** Lao kip */\\r\\n LAK = 'LAK',\\r\\n /** Lebanese pound */\\r\\n LBP = 'LBP',\\r\\n /** Sri Lankan rupee */\\r\\n LKR = 'LKR',\\r\\n /** Liberian dollar */\\r\\n LRD = 'LRD',\\r\\n /** Lesotho loti */\\r\\n LSL = 'LSL',\\r\\n /** Libyan dinar */\\r\\n LYD = 'LYD',\\r\\n /** Moroccan dirham */\\r\\n MAD = 'MAD',\\r\\n /** Moldovan leu */\\r\\n MDL = 'MDL',\\r\\n /** Malagasy ariary */\\r\\n MGA = 'MGA',\\r\\n /** Macedonian denar */\\r\\n MKD = 'MKD',\\r\\n /** Myanmar kyat */\\r\\n MMK = 'MMK',\\r\\n /** Mongolian tögrög */\\r\\n MNT = 'MNT',\\r\\n /** Macanese pataca */\\r\\n MOP = 'MOP',\\r\\n /** Mauritanian ouguiya */\\r\\n MRU = 'MRU',\\r\\n /** Mauritian rupee */\\r\\n MUR = 'MUR',\\r\\n /** Maldivian rufiyaa */\\r\\n MVR = 'MVR',\\r\\n /** Malawian kwacha */\\r\\n MWK = 'MWK',\\r\\n /** Mexican peso */\\r\\n MXN = 'MXN',\\r\\n /** Malaysian ringgit */\\r\\n MYR = 'MYR',\\r\\n /** Mozambican metical */\\r\\n MZN = 'MZN',\\r\\n /** Namibian dollar */\\r\\n NAD = 'NAD',\\r\\n /** Nigerian naira */\\r\\n NGN = 'NGN',\\r\\n /** Nicaraguan córdoba */\\r\\n NIO = 'NIO',\\r\\n /** Norwegian krone */\\r\\n NOK = 'NOK',\\r\\n /** Nepalese rupee */\\r\\n NPR = 'NPR',\\r\\n /** New Zealand dollar */\\r\\n NZD = 'NZD',\\r\\n /** Omani rial */\\r\\n OMR = 'OMR',\\r\\n /** Panamanian balboa */\\r\\n PAB = 'PAB',\\r\\n /** Peruvian sol */\\r\\n PEN = 'PEN',\\r\\n /** Papua New Guinean kina */\\r\\n PGK = 'PGK',\\r\\n /** Philippine peso */\\r\\n PHP = 'PHP',\\r\\n /** Pakistani rupee */\\r\\n PKR = 'PKR',\\r\\n /** Polish złoty */\\r\\n PLN = 'PLN',\\r\\n /** Paraguayan guaraní */\\r\\n PYG = 'PYG',\\r\\n /** Qatari riyal */\\r\\n QAR = 'QAR',\\r\\n /** Romanian leu */\\r\\n RON = 'RON',\\r\\n /** Serbian dinar */\\r\\n RSD = 'RSD',\\r\\n /** Russian ruble */\\r\\n RUB = 'RUB',\\r\\n /** Rwandan franc */\\r\\n RWF = 'RWF',\\r\\n /** Saudi riyal */\\r\\n SAR = 'SAR',\\r\\n /** Solomon Islands dollar */\\r\\n SBD = 'SBD',\\r\\n /** Seychelles rupee */\\r\\n SCR = 'SCR',\\r\\n /** Sudanese pound */\\r\\n SDG = 'SDG',\\r\\n /** Swedish krona/kronor */\\r\\n SEK = 'SEK',\\r\\n /** Singapore dollar */\\r\\n SGD = 'SGD',\\r\\n /** Saint Helena pound */\\r\\n SHP = 'SHP',\\r\\n /** Sierra Leonean leone */\\r\\n SLL = 'SLL',\\r\\n /** Somali shilling */\\r\\n SOS = 'SOS',\\r\\n /** Surinamese dollar */\\r\\n SRD = 'SRD',\\r\\n /** South Sudanese pound */\\r\\n SSP = 'SSP',\\r\\n /** São Tomé and Príncipe dobra */\\r\\n STN = 'STN',\\r\\n /** Salvadoran colón */\\r\\n SVC = 'SVC',\\r\\n /** Syrian pound */\\r\\n SYP = 'SYP',\\r\\n /** Swazi lilangeni */\\r\\n SZL = 'SZL',\\r\\n /** Thai baht */\\r\\n THB = 'THB',\\r\\n /** Tajikistani somoni */\\r\\n TJS = 'TJS',\\r\\n /** Turkmenistan manat */\\r\\n TMT = 'TMT',\\r\\n /** Tunisian dinar */\\r\\n TND = 'TND',\\r\\n /** Tongan paʻanga */\\r\\n TOP = 'TOP',\\r\\n /** Turkish lira */\\r\\n TRY = 'TRY',\\r\\n /** Trinidad and Tobago dollar */\\r\\n TTD = 'TTD',\\r\\n /** New Taiwan dollar */\\r\\n TWD = 'TWD',\\r\\n /** Tanzanian shilling */\\r\\n TZS = 'TZS',\\r\\n /** Ukrainian hryvnia */\\r\\n UAH = 'UAH',\\r\\n /** Ugandan shilling */\\r\\n UGX = 'UGX',\\r\\n /** United States dollar */\\r\\n USD = 'USD',\\r\\n /** Uruguayan peso */\\r\\n UYU = 'UYU',\\r\\n /** Uzbekistan som */\\r\\n UZS = 'UZS',\\r\\n /** Venezuelan bolívar soberano */\\r\\n VES = 'VES',\\r\\n /** Vietnamese đồng */\\r\\n VND = 'VND',\\r\\n /** Vanuatu vatu */\\r\\n VUV = 'VUV',\\r\\n /** Samoan tala */\\r\\n WST = 'WST',\\r\\n /** CFA franc BEAC */\\r\\n XAF = 'XAF',\\r\\n /** East Caribbean dollar */\\r\\n XCD = 'XCD',\\r\\n /** CFA franc BCEAO */\\r\\n XOF = 'XOF',\\r\\n /** CFP franc (franc Pacifique) */\\r\\n XPF = 'XPF',\\r\\n /** Yemeni rial */\\r\\n YER = 'YER',\\r\\n /** South African rand */\\r\\n ZAR = 'ZAR',\\r\\n /** Zambian kwacha */\\r\\n ZMW = 'ZMW',\\r\\n /** Zimbabwean dollar */\\r\\n ZWL = 'ZWL',\\r\\n}\\r\\n\\r\\nexport type CurrentUser = {\\r\\n __typename?: 'CurrentUser';\\r\\n channels: Array<CurrentUserChannel>;\\r\\n id: Scalars['ID']['output'];\\r\\n identifier: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CurrentUserChannel = {\\r\\n __typename?: 'CurrentUserChannel';\\r\\n code: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n permissions: Array<Permission>;\\r\\n token: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type CustomField = {\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type CustomFieldConfig =\\r\\n | BooleanCustomFieldConfig\\r\\n | DateTimeCustomFieldConfig\\r\\n | FloatCustomFieldConfig\\r\\n | IntCustomFieldConfig\\r\\n | LocaleStringCustomFieldConfig\\r\\n | LocaleTextCustomFieldConfig\\r\\n | RelationCustomFieldConfig\\r\\n | StringCustomFieldConfig\\r\\n | TextCustomFieldConfig;\\r\\n\\r\\nexport type CustomFields = {\\r\\n __typename?: 'CustomFields';\\r\\n Address: Array<CustomFieldConfig>;\\r\\n Administrator: Array<CustomFieldConfig>;\\r\\n Asset: Array<CustomFieldConfig>;\\r\\n Channel: Array<CustomFieldConfig>;\\r\\n Collection: Array<CustomFieldConfig>;\\r\\n Customer: Array<CustomFieldConfig>;\\r\\n CustomerGroup: Array<CustomFieldConfig>;\\r\\n Facet: Array<CustomFieldConfig>;\\r\\n FacetValue: Array<CustomFieldConfig>;\\r\\n Fulfillment: Array<CustomFieldConfig>;\\r\\n GlobalSettings: Array<CustomFieldConfig>;\\r\\n Order: Array<CustomFieldConfig>;\\r\\n OrderLine: Array<CustomFieldConfig>;\\r\\n PaymentMethod: Array<CustomFieldConfig>;\\r\\n Product: Array<CustomFieldConfig>;\\r\\n ProductOption: Array<CustomFieldConfig>;\\r\\n ProductOptionGroup: Array<CustomFieldConfig>;\\r\\n ProductVariant: Array<CustomFieldConfig>;\\r\\n Promotion: Array<CustomFieldConfig>;\\r\\n Region: Array<CustomFieldConfig>;\\r\\n Seller: Array<CustomFieldConfig>;\\r\\n ShippingMethod: Array<CustomFieldConfig>;\\r\\n StockLocation: Array<CustomFieldConfig>;\\r\\n TaxCategory: Array<CustomFieldConfig>;\\r\\n TaxRate: Array<CustomFieldConfig>;\\r\\n User: Array<CustomFieldConfig>;\\r\\n Zone: Array<CustomFieldConfig>;\\r\\n};\\r\\n\\r\\nexport type Customer = Node & {\\r\\n __typename?: 'Customer';\\r\\n addresses?: Maybe<Array<Address>>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n emailAddress: Scalars['String']['output'];\\r\\n firstName: Scalars['String']['output'];\\r\\n groups: Array<CustomerGroup>;\\r\\n history: HistoryEntryList;\\r\\n id: Scalars['ID']['output'];\\r\\n lastName: Scalars['String']['output'];\\r\\n orders: OrderList;\\r\\n phoneNumber?: Maybe<Scalars['String']['output']>;\\r\\n title?: Maybe<Scalars['String']['output']>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n user?: Maybe<User>;\\r\\n};\\r\\n\\r\\nexport type CustomerHistoryArgs = {\\r\\n options?: InputMaybe<HistoryEntryListOptions>;\\r\\n};\\r\\n\\r\\nexport type CustomerOrdersArgs = {\\r\\n options?: InputMaybe<OrderListOptions>;\\r\\n};\\r\\n\\r\\nexport type CustomerFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n emailAddress?: InputMaybe<StringOperators>;\\r\\n firstName?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n lastName?: InputMaybe<StringOperators>;\\r\\n phoneNumber?: InputMaybe<StringOperators>;\\r\\n postalCode?: InputMaybe<StringOperators>;\\r\\n title?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type CustomerGroup = Node & {\\r\\n __typename?: 'CustomerGroup';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n customers: CustomerList;\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type CustomerGroupCustomersArgs = {\\r\\n options?: InputMaybe<CustomerListOptions>;\\r\\n};\\r\\n\\r\\nexport type CustomerGroupFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type CustomerGroupList = PaginatedList & {\\r\\n __typename?: 'CustomerGroupList';\\r\\n items: Array<CustomerGroup>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type CustomerGroupListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<CustomerGroupFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<CustomerGroupSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type CustomerGroupSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type CustomerList = PaginatedList & {\\r\\n __typename?: 'CustomerList';\\r\\n items: Array<Customer>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type CustomerListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<CustomerFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<CustomerSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type CustomerSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n emailAddress?: InputMaybe<SortOrder>;\\r\\n firstName?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n lastName?: InputMaybe<SortOrder>;\\r\\n phoneNumber?: InputMaybe<SortOrder>;\\r\\n title?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a list of Date fields */\\r\\nexport type DateListOperators = {\\r\\n inList: Scalars['DateTime']['input'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a DateTime field */\\r\\nexport type DateOperators = {\\r\\n after?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n before?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n between?: InputMaybe<DateRange>;\\r\\n eq?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n isNull?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type DateRange = {\\r\\n end: Scalars['DateTime']['input'];\\r\\n start: Scalars['DateTime']['input'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Expects the same validation formats as the `<input type=\\\"datetime-local\\\">` HTML element.\\r\\n * See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/datetime-local#Additional_attributes\\r\\n */\\r\\nexport type DateTimeCustomFieldConfig = CustomField & {\\r\\n __typename?: 'DateTimeCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n max?: Maybe<Scalars['String']['output']>;\\r\\n min?: Maybe<Scalars['String']['output']>;\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n step?: Maybe<Scalars['Int']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type DeleteAssetInput = {\\r\\n assetId: Scalars['ID']['input'];\\r\\n deleteFromAllChannels?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type DeleteAssetsInput = {\\r\\n assetIds: Array<Scalars['ID']['input']>;\\r\\n deleteFromAllChannels?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type DeleteStockLocationInput = {\\r\\n id: Scalars['ID']['input'];\\r\\n transferToLocationId?: InputMaybe<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type DeletionResponse = {\\r\\n __typename?: 'DeletionResponse';\\r\\n message?: Maybe<Scalars['String']['output']>;\\r\\n result: DeletionResult;\\r\\n};\\r\\n\\r\\nexport enum DeletionResult {\\r\\n /** The entity was successfully deleted */\\r\\n DELETED = 'DELETED',\\r\\n /** Deletion did not take place, reason given in message */\\r\\n NOT_DELETED = 'NOT_DELETED',\\r\\n}\\r\\n\\r\\nexport type Discount = {\\r\\n __typename?: 'Discount';\\r\\n adjustmentSource: Scalars['String']['output'];\\r\\n amount: Scalars['Money']['output'];\\r\\n amountWithTax: Scalars['Money']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n type: AdjustmentType;\\r\\n};\\r\\n\\r\\n/** Returned when attempting to create a Customer with an email address already registered to an existing User. */\\r\\nexport type EmailAddressConflictError = ErrorResult & {\\r\\n __typename?: 'EmailAddressConflictError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if no OrderLines have been specified for the operation */\\r\\nexport type EmptyOrderLineSelectionError = ErrorResult & {\\r\\n __typename?: 'EmptyOrderLineSelectionError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport enum ErrorCode {\\r\\n ALREADY_REFUNDED_ERROR = 'ALREADY_REFUNDED_ERROR',\\r\\n CANCEL_ACTIVE_ORDER_ERROR = 'CANCEL_ACTIVE_ORDER_ERROR',\\r\\n CANCEL_PAYMENT_ERROR = 'CANCEL_PAYMENT_ERROR',\\r\\n CHANNEL_DEFAULT_LANGUAGE_ERROR = 'CHANNEL_DEFAULT_LANGUAGE_ERROR',\\r\\n COUPON_CODE_EXPIRED_ERROR = 'COUPON_CODE_EXPIRED_ERROR',\\r\\n COUPON_CODE_INVALID_ERROR = 'COUPON_CODE_INVALID_ERROR',\\r\\n COUPON_CODE_LIMIT_ERROR = 'COUPON_CODE_LIMIT_ERROR',\\r\\n CREATE_FULFILLMENT_ERROR = 'CREATE_FULFILLMENT_ERROR',\\r\\n EMAIL_ADDRESS_CONFLICT_ERROR = 'EMAIL_ADDRESS_CONFLICT_ERROR',\\r\\n EMPTY_ORDER_LINE_SELECTION_ERROR = 'EMPTY_ORDER_LINE_SELECTION_ERROR',\\r\\n FACET_IN_USE_ERROR = 'FACET_IN_USE_ERROR',\\r\\n FULFILLMENT_STATE_TRANSITION_ERROR = 'FULFILLMENT_STATE_TRANSITION_ERROR',\\r\\n GUEST_CHECKOUT_ERROR = 'GUEST_CHECKOUT_ERROR',\\r\\n INELIGIBLE_SHIPPING_METHOD_ERROR = 'INELIGIBLE_SHIPPING_METHOD_ERROR',\\r\\n INSUFFICIENT_STOCK_ERROR = 'INSUFFICIENT_STOCK_ERROR',\\r\\n INSUFFICIENT_STOCK_ON_HAND_ERROR = 'INSUFFICIENT_STOCK_ON_HAND_ERROR',\\r\\n INVALID_CREDENTIALS_ERROR = 'INVALID_CREDENTIALS_ERROR',\\r\\n INVALID_FULFILLMENT_HANDLER_ERROR = 'INVALID_FULFILLMENT_HANDLER_ERROR',\\r\\n ITEMS_ALREADY_FULFILLED_ERROR = 'ITEMS_ALREADY_FULFILLED_ERROR',\\r\\n LANGUAGE_NOT_AVAILABLE_ERROR = 'LANGUAGE_NOT_AVAILABLE_ERROR',\\r\\n MANUAL_PAYMENT_STATE_ERROR = 'MANUAL_PAYMENT_STATE_ERROR',\\r\\n MIME_TYPE_ERROR = 'MIME_TYPE_ERROR',\\r\\n MISSING_CONDITIONS_ERROR = 'MISSING_CONDITIONS_ERROR',\\r\\n MULTIPLE_ORDER_ERROR = 'MULTIPLE_ORDER_ERROR',\\r\\n NATIVE_AUTH_STRATEGY_ERROR = 'NATIVE_AUTH_STRATEGY_ERROR',\\r\\n NEGATIVE_QUANTITY_ERROR = 'NEGATIVE_QUANTITY_ERROR',\\r\\n NOTHING_TO_REFUND_ERROR = 'NOTHING_TO_REFUND_ERROR',\\r\\n NO_ACTIVE_ORDER_ERROR = 'NO_ACTIVE_ORDER_ERROR',\\r\\n NO_CHANGES_SPECIFIED_ERROR = 'NO_CHANGES_SPECIFIED_ERROR',\\r\\n ORDER_LIMIT_ERROR = 'ORDER_LIMIT_ERROR',\\r\\n ORDER_MODIFICATION_ERROR = 'ORDER_MODIFICATION_ERROR',\\r\\n ORDER_MODIFICATION_STATE_ERROR = 'ORDER_MODIFICATION_STATE_ERROR',\\r\\n ORDER_STATE_TRANSITION_ERROR = 'ORDER_STATE_TRANSITION_ERROR',\\r\\n PAYMENT_METHOD_MISSING_ERROR = 'PAYMENT_METHOD_MISSING_ERROR',\\r\\n PAYMENT_ORDER_MISMATCH_ERROR = 'PAYMENT_ORDER_MISMATCH_ERROR',\\r\\n PAYMENT_STATE_TRANSITION_ERROR = 'PAYMENT_STATE_TRANSITION_ERROR',\\r\\n PRODUCT_OPTION_IN_USE_ERROR = 'PRODUCT_OPTION_IN_USE_ERROR',\\r\\n QUANTITY_TOO_GREAT_ERROR = 'QUANTITY_TOO_GREAT_ERROR',\\r\\n REFUND_ORDER_STATE_ERROR = 'REFUND_ORDER_STATE_ERROR',\\r\\n REFUND_PAYMENT_ID_MISSING_ERROR = 'REFUND_PAYMENT_ID_MISSING_ERROR',\\r\\n REFUND_STATE_TRANSITION_ERROR = 'REFUND_STATE_TRANSITION_ERROR',\\r\\n SETTLE_PAYMENT_ERROR = 'SETTLE_PAYMENT_ERROR',\\r\\n UNKNOWN_ERROR = 'UNKNOWN_ERROR',\\r\\n}\\r\\n\\r\\nexport type ErrorResult = {\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type Facet = Node & {\\r\\n __typename?: 'Facet';\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n isPrivate: Scalars['Boolean']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n translations: Array<FacetTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n values: Array<FacetValue>;\\r\\n};\\r\\n\\r\\nexport type FacetFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n isPrivate?: InputMaybe<BooleanOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type FacetInUseError = ErrorResult & {\\r\\n __typename?: 'FacetInUseError';\\r\\n errorCode: ErrorCode;\\r\\n facetCode: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n productCount: Scalars['Int']['output'];\\r\\n variantCount: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type FacetList = PaginatedList & {\\r\\n __typename?: 'FacetList';\\r\\n items: Array<Facet>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type FacetListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<FacetFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<FacetSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type FacetSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type FacetTranslation = {\\r\\n __typename?: 'FacetTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type FacetTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type FacetValue = Node & {\\r\\n __typename?: 'FacetValue';\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n facet: Facet;\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n translations: Array<FacetValueTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Used to construct boolean expressions for filtering search results\\r\\n * by FacetValue ID. Examples:\\r\\n *\\r\\n * * ID=1 OR ID=2: `{ facetValueFilters: [{ or: [1,2] }] }`\\r\\n * * ID=1 AND ID=2: `{ facetValueFilters: [{ and: 1 }, { and: 2 }] }`\\r\\n * * ID=1 AND (ID=2 OR ID=3): `{ facetValueFilters: [{ and: 1 }, { or: [2,3] }] }`\\r\\n */\\r\\nexport type FacetValueFilterInput = {\\r\\n and?: InputMaybe<Scalars['ID']['input']>;\\r\\n or?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n};\\r\\n\\r\\nexport type FacetValueFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type FacetValueList = PaginatedList & {\\r\\n __typename?: 'FacetValueList';\\r\\n items: Array<FacetValue>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type FacetValueListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<FacetValueFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<FacetValueSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\n/**\\r\\n * Which FacetValues are present in the products returned\\r\\n * by the search, and in what quantity.\\r\\n */\\r\\nexport type FacetValueResult = {\\r\\n __typename?: 'FacetValueResult';\\r\\n count: Scalars['Int']['output'];\\r\\n facetValue: FacetValue;\\r\\n};\\r\\n\\r\\nexport type FacetValueSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type FacetValueTranslation = {\\r\\n __typename?: 'FacetValueTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type FacetValueTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type FloatCustomFieldConfig = CustomField & {\\r\\n __typename?: 'FloatCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n max?: Maybe<Scalars['Float']['output']>;\\r\\n min?: Maybe<Scalars['Float']['output']>;\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n step?: Maybe<Scalars['Float']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type FulfillOrderInput = {\\r\\n handler: ConfigurableOperationInput;\\r\\n lines: Array<OrderLineInput>;\\r\\n};\\r\\n\\r\\nexport type Fulfillment = Node & {\\r\\n __typename?: 'Fulfillment';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n lines: Array<FulfillmentLine>;\\r\\n method: Scalars['String']['output'];\\r\\n nextStates: Array<Scalars['String']['output']>;\\r\\n state: Scalars['String']['output'];\\r\\n /** @deprecated Use the `lines` field instead */\\r\\n summary: Array<FulfillmentLine>;\\r\\n trackingCode?: Maybe<Scalars['String']['output']>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type FulfillmentLine = {\\r\\n __typename?: 'FulfillmentLine';\\r\\n fulfillment: Fulfillment;\\r\\n fulfillmentId: Scalars['ID']['output'];\\r\\n orderLine: OrderLine;\\r\\n orderLineId: Scalars['ID']['output'];\\r\\n quantity: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when there is an error in transitioning the Fulfillment state */\\r\\nexport type FulfillmentStateTransitionError = ErrorResult & {\\r\\n __typename?: 'FulfillmentStateTransitionError';\\r\\n errorCode: ErrorCode;\\r\\n fromState: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n toState: Scalars['String']['output'];\\r\\n transitionError: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport enum GlobalFlag {\\r\\n FALSE = 'FALSE',\\r\\n INHERIT = 'INHERIT',\\r\\n TRUE = 'TRUE',\\r\\n}\\r\\n\\r\\nexport type GlobalSettings = {\\r\\n __typename?: 'GlobalSettings';\\r\\n availableLanguages: Array<LanguageCode>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n outOfStockThreshold: Scalars['Int']['output'];\\r\\n serverConfig: ServerConfig;\\r\\n trackInventory: Scalars['Boolean']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when attempting to set the Customer on a guest checkout when the configured GuestCheckoutStrategy does not allow it. */\\r\\nexport type GuestCheckoutError = ErrorResult & {\\r\\n __typename?: 'GuestCheckoutError';\\r\\n errorCode: ErrorCode;\\r\\n errorDetail: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type HistoryEntry = Node & {\\r\\n __typename?: 'HistoryEntry';\\r\\n administrator?: Maybe<Administrator>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n data: Scalars['JSON']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n isPublic: Scalars['Boolean']['output'];\\r\\n type: HistoryEntryType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type HistoryEntryFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n isPublic?: InputMaybe<BooleanOperators>;\\r\\n type?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type HistoryEntryList = PaginatedList & {\\r\\n __typename?: 'HistoryEntryList';\\r\\n items: Array<HistoryEntry>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type HistoryEntryListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<HistoryEntryFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<HistoryEntrySortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type HistoryEntrySortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport enum HistoryEntryType {\\r\\n CUSTOMER_ADDED_TO_GROUP = 'CUSTOMER_ADDED_TO_GROUP',\\r\\n CUSTOMER_ADDRESS_CREATED = 'CUSTOMER_ADDRESS_CREATED',\\r\\n CUSTOMER_ADDRESS_DELETED = 'CUSTOMER_ADDRESS_DELETED',\\r\\n CUSTOMER_ADDRESS_UPDATED = 'CUSTOMER_ADDRESS_UPDATED',\\r\\n CUSTOMER_DETAIL_UPDATED = 'CUSTOMER_DETAIL_UPDATED',\\r\\n CUSTOMER_EMAIL_UPDATE_REQUESTED = 'CUSTOMER_EMAIL_UPDATE_REQUESTED',\\r\\n CUSTOMER_EMAIL_UPDATE_VERIFIED = 'CUSTOMER_EMAIL_UPDATE_VERIFIED',\\r\\n CUSTOMER_NOTE = 'CUSTOMER_NOTE',\\r\\n CUSTOMER_PASSWORD_RESET_REQUESTED = 'CUSTOMER_PASSWORD_RESET_REQUESTED',\\r\\n CUSTOMER_PASSWORD_RESET_VERIFIED = 'CUSTOMER_PASSWORD_RESET_VERIFIED',\\r\\n CUSTOMER_PASSWORD_UPDATED = 'CUSTOMER_PASSWORD_UPDATED',\\r\\n CUSTOMER_REGISTERED = 'CUSTOMER_REGISTERED',\\r\\n CUSTOMER_REMOVED_FROM_GROUP = 'CUSTOMER_REMOVED_FROM_GROUP',\\r\\n CUSTOMER_VERIFIED = 'CUSTOMER_VERIFIED',\\r\\n ORDER_CANCELLATION = 'ORDER_CANCELLATION',\\r\\n ORDER_COUPON_APPLIED = 'ORDER_COUPON_APPLIED',\\r\\n ORDER_COUPON_REMOVED = 'ORDER_COUPON_REMOVED',\\r\\n ORDER_FULFILLMENT = 'ORDER_FULFILLMENT',\\r\\n ORDER_FULFILLMENT_TRANSITION = 'ORDER_FULFILLMENT_TRANSITION',\\r\\n ORDER_MODIFIED = 'ORDER_MODIFIED',\\r\\n ORDER_NOTE = 'ORDER_NOTE',\\r\\n ORDER_PAYMENT_TRANSITION = 'ORDER_PAYMENT_TRANSITION',\\r\\n ORDER_REFUND_TRANSITION = 'ORDER_REFUND_TRANSITION',\\r\\n ORDER_STATE_TRANSITION = 'ORDER_STATE_TRANSITION',\\r\\n}\\r\\n\\r\\n/** Operators for filtering on a list of ID fields */\\r\\nexport type IdListOperators = {\\r\\n inList: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on an ID field */\\r\\nexport type IdOperators = {\\r\\n eq?: InputMaybe<Scalars['String']['input']>;\\r\\n in?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n isNull?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n notEq?: InputMaybe<Scalars['String']['input']>;\\r\\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n};\\r\\n\\r\\nexport type ImportInfo = {\\r\\n __typename?: 'ImportInfo';\\r\\n errors?: Maybe<Array<Scalars['String']['output']>>;\\r\\n imported: Scalars['Int']['output'];\\r\\n processed: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when attempting to set a ShippingMethod for which the Order is not eligible */\\r\\nexport type IneligibleShippingMethodError = ErrorResult & {\\r\\n __typename?: 'IneligibleShippingMethodError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when attempting to add more items to the Order than are available */\\r\\nexport type InsufficientStockError = ErrorResult & {\\r\\n __typename?: 'InsufficientStockError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n order: Order;\\r\\n quantityAvailable: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Returned if attempting to create a Fulfillment when there is insufficient\\r\\n * stockOnHand of a ProductVariant to satisfy the requested quantity.\\r\\n */\\r\\nexport type InsufficientStockOnHandError = ErrorResult & {\\r\\n __typename?: 'InsufficientStockOnHandError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n productVariantId: Scalars['ID']['output'];\\r\\n productVariantName: Scalars['String']['output'];\\r\\n stockOnHand: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type IntCustomFieldConfig = CustomField & {\\r\\n __typename?: 'IntCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n max?: Maybe<Scalars['Int']['output']>;\\r\\n min?: Maybe<Scalars['Int']['output']>;\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n step?: Maybe<Scalars['Int']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\n/** Returned if the user authentication credentials are not valid */\\r\\nexport type InvalidCredentialsError = ErrorResult & {\\r\\n __typename?: 'InvalidCredentialsError';\\r\\n authenticationError: Scalars['String']['output'];\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if the specified FulfillmentHandler code is not valid */\\r\\nexport type InvalidFulfillmentHandlerError = ErrorResult & {\\r\\n __typename?: 'InvalidFulfillmentHandlerError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if the specified items are already part of a Fulfillment */\\r\\nexport type ItemsAlreadyFulfilledError = ErrorResult & {\\r\\n __typename?: 'ItemsAlreadyFulfilledError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type Job = Node & {\\r\\n __typename?: 'Job';\\r\\n attempts: Scalars['Int']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n data?: Maybe<Scalars['JSON']['output']>;\\r\\n duration: Scalars['Int']['output'];\\r\\n error?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n isSettled: Scalars['Boolean']['output'];\\r\\n progress: Scalars['Float']['output'];\\r\\n queueName: Scalars['String']['output'];\\r\\n result?: Maybe<Scalars['JSON']['output']>;\\r\\n retries: Scalars['Int']['output'];\\r\\n settledAt?: Maybe<Scalars['DateTime']['output']>;\\r\\n startedAt?: Maybe<Scalars['DateTime']['output']>;\\r\\n state: JobState;\\r\\n};\\r\\n\\r\\nexport type JobBufferSize = {\\r\\n __typename?: 'JobBufferSize';\\r\\n bufferId: Scalars['String']['output'];\\r\\n size: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type JobFilterParameter = {\\r\\n attempts?: InputMaybe<NumberOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n duration?: InputMaybe<NumberOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n isSettled?: InputMaybe<BooleanOperators>;\\r\\n progress?: InputMaybe<NumberOperators>;\\r\\n queueName?: InputMaybe<StringOperators>;\\r\\n retries?: InputMaybe<NumberOperators>;\\r\\n settledAt?: InputMaybe<DateOperators>;\\r\\n startedAt?: InputMaybe<DateOperators>;\\r\\n state?: InputMaybe<StringOperators>;\\r\\n};\\r\\n\\r\\nexport type JobList = PaginatedList & {\\r\\n __typename?: 'JobList';\\r\\n items: Array<Job>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type JobListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<JobFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<JobSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type JobQueue = {\\r\\n __typename?: 'JobQueue';\\r\\n name: Scalars['String']['output'];\\r\\n running: Scalars['Boolean']['output'];\\r\\n};\\r\\n\\r\\nexport type JobSortParameter = {\\r\\n attempts?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n duration?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n progress?: InputMaybe<SortOrder>;\\r\\n queueName?: InputMaybe<SortOrder>;\\r\\n retries?: InputMaybe<SortOrder>;\\r\\n settledAt?: InputMaybe<SortOrder>;\\r\\n startedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\n/**\\r\\n * @description\\r\\n * The state of a Job in the JobQueue\\r\\n *\\r\\n * @docsCategory common\\r\\n */\\r\\nexport enum JobState {\\r\\n CANCELLED = 'CANCELLED',\\r\\n COMPLETED = 'COMPLETED',\\r\\n FAILED = 'FAILED',\\r\\n PENDING = 'PENDING',\\r\\n RETRYING = 'RETRYING',\\r\\n RUNNING = 'RUNNING',\\r\\n}\\r\\n\\r\\n/**\\r\\n * @description\\r\\n * Languages in the form of a ISO 639-1 language code with optional\\r\\n * region or script modifier (e.g. de_AT). The selection available is based\\r\\n * on the [Unicode CLDR summary list](https://unicode-org.github.io/cldr-staging/charts/37/summary/root.html)\\r\\n * and includes the major spoken languages of the world and any widely-used variants.\\r\\n *\\r\\n * @docsCategory common\\r\\n */\\r\\nexport enum LanguageCode {\\r\\n /** Afrikaans */\\r\\n af = 'af',\\r\\n /** Akan */\\r\\n ak = 'ak',\\r\\n /** Amharic */\\r\\n am = 'am',\\r\\n /** Arabic */\\r\\n ar = 'ar',\\r\\n /** Assamese */\\r\\n as = 'as',\\r\\n /** Azerbaijani */\\r\\n az = 'az',\\r\\n /** Belarusian */\\r\\n be = 'be',\\r\\n /** Bulgarian */\\r\\n bg = 'bg',\\r\\n /** Bambara */\\r\\n bm = 'bm',\\r\\n /** Bangla */\\r\\n bn = 'bn',\\r\\n /** Tibetan */\\r\\n bo = 'bo',\\r\\n /** Breton */\\r\\n br = 'br',\\r\\n /** Bosnian */\\r\\n bs = 'bs',\\r\\n /** Catalan */\\r\\n ca = 'ca',\\r\\n /** Chechen */\\r\\n ce = 'ce',\\r\\n /** Corsican */\\r\\n co = 'co',\\r\\n /** Czech */\\r\\n cs = 'cs',\\r\\n /** Church Slavic */\\r\\n cu = 'cu',\\r\\n /** Welsh */\\r\\n cy = 'cy',\\r\\n /** Danish */\\r\\n da = 'da',\\r\\n /** German */\\r\\n de = 'de',\\r\\n /** Austrian German */\\r\\n de_AT = 'de_AT',\\r\\n /** Swiss High German */\\r\\n de_CH = 'de_CH',\\r\\n /** Dzongkha */\\r\\n dz = 'dz',\\r\\n /** Ewe */\\r\\n ee = 'ee',\\r\\n /** Greek */\\r\\n el = 'el',\\r\\n /** English */\\r\\n en = 'en',\\r\\n /** Australian English */\\r\\n en_AU = 'en_AU',\\r\\n /** Canadian English */\\r\\n en_CA = 'en_CA',\\r\\n /** British English */\\r\\n en_GB = 'en_GB',\\r\\n /** American English */\\r\\n en_US = 'en_US',\\r\\n /** Esperanto */\\r\\n eo = 'eo',\\r\\n /** Spanish */\\r\\n es = 'es',\\r\\n /** European Spanish */\\r\\n es_ES = 'es_ES',\\r\\n /** Mexican Spanish */\\r\\n es_MX = 'es_MX',\\r\\n /** Estonian */\\r\\n et = 'et',\\r\\n /** Basque */\\r\\n eu = 'eu',\\r\\n /** Persian */\\r\\n fa = 'fa',\\r\\n /** Dari */\\r\\n fa_AF = 'fa_AF',\\r\\n /** Fulah */\\r\\n ff = 'ff',\\r\\n /** Finnish */\\r\\n fi = 'fi',\\r\\n /** Faroese */\\r\\n fo = 'fo',\\r\\n /** French */\\r\\n fr = 'fr',\\r\\n /** Canadian French */\\r\\n fr_CA = 'fr_CA',\\r\\n /** Swiss French */\\r\\n fr_CH = 'fr_CH',\\r\\n /** Western Frisian */\\r\\n fy = 'fy',\\r\\n /** Irish */\\r\\n ga = 'ga',\\r\\n /** Scottish Gaelic */\\r\\n gd = 'gd',\\r\\n /** Galician */\\r\\n gl = 'gl',\\r\\n /** Gujarati */\\r\\n gu = 'gu',\\r\\n /** Manx */\\r\\n gv = 'gv',\\r\\n /** Hausa */\\r\\n ha = 'ha',\\r\\n /** Hebrew */\\r\\n he = 'he',\\r\\n /** Hindi */\\r\\n hi = 'hi',\\r\\n /** Croatian */\\r\\n hr = 'hr',\\r\\n /** Haitian Creole */\\r\\n ht = 'ht',\\r\\n /** Hungarian */\\r\\n hu = 'hu',\\r\\n /** Armenian */\\r\\n hy = 'hy',\\r\\n /** Interlingua */\\r\\n ia = 'ia',\\r\\n /** Indonesian */\\r\\n id = 'id',\\r\\n /** Igbo */\\r\\n ig = 'ig',\\r\\n /** Sichuan Yi */\\r\\n ii = 'ii',\\r\\n /** Icelandic */\\r\\n is = 'is',\\r\\n /** Italian */\\r\\n it = 'it',\\r\\n /** Japanese */\\r\\n ja = 'ja',\\r\\n /** Javanese */\\r\\n jv = 'jv',\\r\\n /** Georgian */\\r\\n ka = 'ka',\\r\\n /** Kikuyu */\\r\\n ki = 'ki',\\r\\n /** Kazakh */\\r\\n kk = 'kk',\\r\\n /** Kalaallisut */\\r\\n kl = 'kl',\\r\\n /** Khmer */\\r\\n km = 'km',\\r\\n /** Kannada */\\r\\n kn = 'kn',\\r\\n /** Korean */\\r\\n ko = 'ko',\\r\\n /** Kashmiri */\\r\\n ks = 'ks',\\r\\n /** Kurdish */\\r\\n ku = 'ku',\\r\\n /** Cornish */\\r\\n kw = 'kw',\\r\\n /** Kyrgyz */\\r\\n ky = 'ky',\\r\\n /** Latin */\\r\\n la = 'la',\\r\\n /** Luxembourgish */\\r\\n lb = 'lb',\\r\\n /** Ganda */\\r\\n lg = 'lg',\\r\\n /** Lingala */\\r\\n ln = 'ln',\\r\\n /** Lao */\\r\\n lo = 'lo',\\r\\n /** Lithuanian */\\r\\n lt = 'lt',\\r\\n /** Luba-Katanga */\\r\\n lu = 'lu',\\r\\n /** Latvian */\\r\\n lv = 'lv',\\r\\n /** Malagasy */\\r\\n mg = 'mg',\\r\\n /** Maori */\\r\\n mi = 'mi',\\r\\n /** Macedonian */\\r\\n mk = 'mk',\\r\\n /** Malayalam */\\r\\n ml = 'ml',\\r\\n /** Mongolian */\\r\\n mn = 'mn',\\r\\n /** Marathi */\\r\\n mr = 'mr',\\r\\n /** Malay */\\r\\n ms = 'ms',\\r\\n /** Maltese */\\r\\n mt = 'mt',\\r\\n /** Burmese */\\r\\n my = 'my',\\r\\n /** Norwegian Bokmål */\\r\\n nb = 'nb',\\r\\n /** North Ndebele */\\r\\n nd = 'nd',\\r\\n /** Nepali */\\r\\n ne = 'ne',\\r\\n /** Dutch */\\r\\n nl = 'nl',\\r\\n /** Flemish */\\r\\n nl_BE = 'nl_BE',\\r\\n /** Norwegian Nynorsk */\\r\\n nn = 'nn',\\r\\n /** Nyanja */\\r\\n ny = 'ny',\\r\\n /** Oromo */\\r\\n om = 'om',\\r\\n /** Odia */\\r\\n or = 'or',\\r\\n /** Ossetic */\\r\\n os = 'os',\\r\\n /** Punjabi */\\r\\n pa = 'pa',\\r\\n /** Polish */\\r\\n pl = 'pl',\\r\\n /** Pashto */\\r\\n ps = 'ps',\\r\\n /** Portuguese */\\r\\n pt = 'pt',\\r\\n /** Brazilian Portuguese */\\r\\n pt_BR = 'pt_BR',\\r\\n /** European Portuguese */\\r\\n pt_PT = 'pt_PT',\\r\\n /** Quechua */\\r\\n qu = 'qu',\\r\\n /** Romansh */\\r\\n rm = 'rm',\\r\\n /** Rundi */\\r\\n rn = 'rn',\\r\\n /** Romanian */\\r\\n ro = 'ro',\\r\\n /** Moldavian */\\r\\n ro_MD = 'ro_MD',\\r\\n /** Russian */\\r\\n ru = 'ru',\\r\\n /** Kinyarwanda */\\r\\n rw = 'rw',\\r\\n /** Sanskrit */\\r\\n sa = 'sa',\\r\\n /** Sindhi */\\r\\n sd = 'sd',\\r\\n /** Northern Sami */\\r\\n se = 'se',\\r\\n /** Sango */\\r\\n sg = 'sg',\\r\\n /** Sinhala */\\r\\n si = 'si',\\r\\n /** Slovak */\\r\\n sk = 'sk',\\r\\n /** Slovenian */\\r\\n sl = 'sl',\\r\\n /** Samoan */\\r\\n sm = 'sm',\\r\\n /** Shona */\\r\\n sn = 'sn',\\r\\n /** Somali */\\r\\n so = 'so',\\r\\n /** Albanian */\\r\\n sq = 'sq',\\r\\n /** Serbian */\\r\\n sr = 'sr',\\r\\n /** Southern Sotho */\\r\\n st = 'st',\\r\\n /** Sundanese */\\r\\n su = 'su',\\r\\n /** Swedish */\\r\\n sv = 'sv',\\r\\n /** Swahili */\\r\\n sw = 'sw',\\r\\n /** Congo Swahili */\\r\\n sw_CD = 'sw_CD',\\r\\n /** Tamil */\\r\\n ta = 'ta',\\r\\n /** Telugu */\\r\\n te = 'te',\\r\\n /** Tajik */\\r\\n tg = 'tg',\\r\\n /** Thai */\\r\\n th = 'th',\\r\\n /** Tigrinya */\\r\\n ti = 'ti',\\r\\n /** Turkmen */\\r\\n tk = 'tk',\\r\\n /** Tongan */\\r\\n to = 'to',\\r\\n /** Turkish */\\r\\n tr = 'tr',\\r\\n /** Tatar */\\r\\n tt = 'tt',\\r\\n /** Uyghur */\\r\\n ug = 'ug',\\r\\n /** Ukrainian */\\r\\n uk = 'uk',\\r\\n /** Urdu */\\r\\n ur = 'ur',\\r\\n /** Uzbek */\\r\\n uz = 'uz',\\r\\n /** Vietnamese */\\r\\n vi = 'vi',\\r\\n /** Volapük */\\r\\n vo = 'vo',\\r\\n /** Wolof */\\r\\n wo = 'wo',\\r\\n /** Xhosa */\\r\\n xh = 'xh',\\r\\n /** Yiddish */\\r\\n yi = 'yi',\\r\\n /** Yoruba */\\r\\n yo = 'yo',\\r\\n /** Chinese */\\r\\n zh = 'zh',\\r\\n /** Simplified Chinese */\\r\\n zh_Hans = 'zh_Hans',\\r\\n /** Traditional Chinese */\\r\\n zh_Hant = 'zh_Hant',\\r\\n /** Zulu */\\r\\n zu = 'zu',\\r\\n}\\r\\n\\r\\n/** Returned if attempting to set a Channel's defaultLanguageCode to a language which is not enabled in GlobalSettings */\\r\\nexport type LanguageNotAvailableError = ErrorResult & {\\r\\n __typename?: 'LanguageNotAvailableError';\\r\\n errorCode: ErrorCode;\\r\\n languageCode: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type LocaleStringCustomFieldConfig = CustomField & {\\r\\n __typename?: 'LocaleStringCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n length?: Maybe<Scalars['Int']['output']>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n pattern?: Maybe<Scalars['String']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type LocaleTextCustomFieldConfig = CustomField & {\\r\\n __typename?: 'LocaleTextCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type LocalizedString = {\\r\\n __typename?: 'LocalizedString';\\r\\n languageCode: LanguageCode;\\r\\n value: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport enum LogicalOperator {\\r\\n AND = 'AND',\\r\\n OR = 'OR',\\r\\n}\\r\\n\\r\\nexport type ManualPaymentInput = {\\r\\n metadata?: InputMaybe<Scalars['JSON']['input']>;\\r\\n method: Scalars['String']['input'];\\r\\n orderId: Scalars['ID']['input'];\\r\\n transactionId?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\n/**\\r\\n * Returned when a call to addManualPaymentToOrder is made but the Order\\r\\n * is not in the required state.\\r\\n */\\r\\nexport type ManualPaymentStateError = ErrorResult & {\\r\\n __typename?: 'ManualPaymentStateError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport enum MetricInterval {\\r\\n Daily = 'Daily',\\r\\n}\\r\\n\\r\\nexport type MetricSummary = {\\r\\n __typename?: 'MetricSummary';\\r\\n entries: Array<MetricSummaryEntry>;\\r\\n interval: MetricInterval;\\r\\n title: Scalars['String']['output'];\\r\\n type: MetricType;\\r\\n};\\r\\n\\r\\nexport type MetricSummaryEntry = {\\r\\n __typename?: 'MetricSummaryEntry';\\r\\n label: Scalars['String']['output'];\\r\\n value: Scalars['Float']['output'];\\r\\n};\\r\\n\\r\\nexport type MetricSummaryInput = {\\r\\n interval: MetricInterval;\\r\\n refresh?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n types: Array<MetricType>;\\r\\n};\\r\\n\\r\\nexport enum MetricType {\\r\\n AverageOrderValue = 'AverageOrderValue',\\r\\n OrderCount = 'OrderCount',\\r\\n OrderTotal = 'OrderTotal',\\r\\n}\\r\\n\\r\\nexport type MimeTypeError = ErrorResult & {\\r\\n __typename?: 'MimeTypeError';\\r\\n errorCode: ErrorCode;\\r\\n fileName: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n mimeType: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if a PromotionCondition has neither a couponCode nor any conditions set */\\r\\nexport type MissingConditionsError = ErrorResult & {\\r\\n __typename?: 'MissingConditionsError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type ModifyOrderInput = {\\r\\n addItems?: InputMaybe<Array<AddItemInput>>;\\r\\n adjustOrderLines?: InputMaybe<Array<OrderLineInput>>;\\r\\n couponCodes?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n dryRun: Scalars['Boolean']['input'];\\r\\n note?: InputMaybe<Scalars['String']['input']>;\\r\\n options?: InputMaybe<ModifyOrderOptions>;\\r\\n orderId: Scalars['ID']['input'];\\r\\n refund?: InputMaybe<AdministratorRefundInput>;\\r\\n surcharges?: InputMaybe<Array<SurchargeInput>>;\\r\\n updateBillingAddress?: InputMaybe<UpdateOrderAddressInput>;\\r\\n updateShippingAddress?: InputMaybe<UpdateOrderAddressInput>;\\r\\n};\\r\\n\\r\\nexport type ModifyOrderOptions = {\\r\\n freezePromotions?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n recalculateShipping?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type ModifyOrderResult =\\r\\n | CouponCodeExpiredError\\r\\n | CouponCodeInvalidError\\r\\n | CouponCodeLimitError\\r\\n | InsufficientStockError\\r\\n | NegativeQuantityError\\r\\n | NoChangesSpecifiedError\\r\\n | Order\\r\\n | OrderLimitError\\r\\n | OrderModificationStateError\\r\\n | PaymentMethodMissingError\\r\\n | RefundPaymentIdMissingError;\\r\\n\\r\\nexport type MoveCollectionInput = {\\r\\n collectionId: Scalars['ID']['input'];\\r\\n index: Scalars['Int']['input'];\\r\\n parentId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\n/** Returned if an operation has specified OrderLines from multiple Orders */\\r\\nexport type MultipleOrderError = ErrorResult & {\\r\\n __typename?: 'MultipleOrderError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type Mutation = {\\r\\n __typename?: 'Mutation';\\r\\n /** Add Customers to a CustomerGroup */\\r\\n addCustomersToGroup: CustomerGroup;\\r\\n addFulfillmentToOrder: AddFulfillmentToOrderResult;\\r\\n /** Adds an item to the draft Order. */\\r\\n addItemToDraftOrder: UpdateOrderItemsResult;\\r\\n /**\\r\\n * Used to manually create a new Payment against an Order.\\r\\n * This can be used by an Administrator when an Order is in the ArrangingPayment state.\\r\\n *\\r\\n * It is also used when a completed Order\\r\\n * has been modified (using `modifyOrder`) and the price has increased. The extra payment\\r\\n * can then be manually arranged by the administrator, and the details used to create a new\\r\\n * Payment.\\r\\n */\\r\\n addManualPaymentToOrder: AddManualPaymentToOrderResult;\\r\\n /** Add members to a Zone */\\r\\n addMembersToZone: Zone;\\r\\n addNoteToCustomer: Customer;\\r\\n addNoteToOrder: Order;\\r\\n /** Add an OptionGroup to a Product */\\r\\n addOptionGroupToProduct: Product;\\r\\n /** Adjusts a draft OrderLine. If custom fields are defined on the OrderLine entity, a third argument 'customFields' of type `OrderLineCustomFieldsInput` will be available. */\\r\\n adjustDraftOrderLine: UpdateOrderItemsResult;\\r\\n /** Applies the given coupon code to the draft Order */\\r\\n applyCouponCodeToDraftOrder: ApplyCouponCodeResult;\\r\\n approveProductReview?: Maybe<ProductReview>;\\r\\n /** Assign assets to channel */\\r\\n assignAssetsToChannel: Array<Asset>;\\r\\n /** Assigns Collections to the specified Channel */\\r\\n assignCollectionsToChannel: Array<Collection>;\\r\\n /** Assigns Facets to the specified Channel */\\r\\n assignFacetsToChannel: Array<Facet>;\\r\\n /** Assigns PaymentMethods to the specified Channel */\\r\\n assignPaymentMethodsToChannel: Array<PaymentMethod>;\\r\\n /** Assigns ProductVariants to the specified Channel */\\r\\n assignProductVariantsToChannel: Array<ProductVariant>;\\r\\n /** Assigns all ProductVariants of Product to the specified Channel */\\r\\n assignProductsToChannel: Array<Product>;\\r\\n /** Assigns Promotions to the specified Channel */\\r\\n assignPromotionsToChannel: Array<Promotion>;\\r\\n /** Assign a Role to an Administrator */\\r\\n assignRoleToAdministrator: Administrator;\\r\\n /** Assigns ShippingMethods to the specified Channel */\\r\\n assignShippingMethodsToChannel: Array<ShippingMethod>;\\r\\n /** Assigns StockLocations to the specified Channel */\\r\\n assignStockLocationsToChannel: Array<StockLocation>;\\r\\n /** Authenticates the user using a named authentication strategy */\\r\\n authenticate: AuthenticationResult;\\r\\n cancelJob: Job;\\r\\n cancelOrder: CancelOrderResult;\\r\\n cancelPayment: CancelPaymentResult;\\r\\n /** Create a new Administrator */\\r\\n createAdministrator: Administrator;\\r\\n /** Create a new Asset */\\r\\n createAssets: Array<CreateAssetResult>;\\r\\n /** Create a new Channel */\\r\\n createChannel: CreateChannelResult;\\r\\n /** Create a new Collection */\\r\\n createCollection: Collection;\\r\\n /** Create a new Country */\\r\\n createCountry: Country;\\r\\n /** Create a new Customer. If a password is provided, a new User will also be created an linked to the Customer. */\\r\\n createCustomer: CreateCustomerResult;\\r\\n /** Create a new Address and associate it with the Customer specified by customerId */\\r\\n createCustomerAddress: Address;\\r\\n /** Create a new CustomerGroup */\\r\\n createCustomerGroup: CustomerGroup;\\r\\n /** Creates a draft Order */\\r\\n createDraftOrder: Order;\\r\\n /** Create a new Facet */\\r\\n createFacet: Facet;\\r\\n /** Create one or more FacetValues */\\r\\n createFacetValues: Array<FacetValue>;\\r\\n /** Create existing PaymentMethod */\\r\\n createPaymentMethod: PaymentMethod;\\r\\n /** Create a new Product */\\r\\n createProduct: Product;\\r\\n /** Create a new ProductOption within a ProductOptionGroup */\\r\\n createProductOption: ProductOption;\\r\\n /** Create a new ProductOptionGroup */\\r\\n createProductOptionGroup: ProductOptionGroup;\\r\\n /** Create a set of ProductVariants based on the OptionGroups assigned to the given Product */\\r\\n createProductVariants: Array<Maybe<ProductVariant>>;\\r\\n createPromotion: CreatePromotionResult;\\r\\n /** Create a new Province */\\r\\n createProvince: Province;\\r\\n /** Create a new Role */\\r\\n createRole: Role;\\r\\n /** Create a new Seller */\\r\\n createSeller: Seller;\\r\\n /** Create a new ShippingMethod */\\r\\n createShippingMethod: ShippingMethod;\\r\\n createStockLocation: StockLocation;\\r\\n /** Create a new Tag */\\r\\n createTag: Tag;\\r\\n /** Create a new TaxCategory */\\r\\n createTaxCategory: TaxCategory;\\r\\n /** Create a new TaxRate */\\r\\n createTaxRate: TaxRate;\\r\\n /** Create a new Zone */\\r\\n createZone: Zone;\\r\\n /** Delete an Administrator */\\r\\n deleteAdministrator: DeletionResponse;\\r\\n /** Delete multiple Administrators */\\r\\n deleteAdministrators: Array<DeletionResponse>;\\r\\n /** Delete an Asset */\\r\\n deleteAsset: DeletionResponse;\\r\\n /** Delete multiple Assets */\\r\\n deleteAssets: DeletionResponse;\\r\\n /** Delete a Channel */\\r\\n deleteChannel: DeletionResponse;\\r\\n /** Delete multiple Channels */\\r\\n deleteChannels: Array<DeletionResponse>;\\r\\n /** Delete a Collection and all of its descendants */\\r\\n deleteCollection: DeletionResponse;\\r\\n /** Delete multiple Collections and all of their descendants */\\r\\n deleteCollections: Array<DeletionResponse>;\\r\\n /** Delete multiple Countries */\\r\\n deleteCountries: Array<DeletionResponse>;\\r\\n /** Delete a Country */\\r\\n deleteCountry: DeletionResponse;\\r\\n /** Delete a Customer */\\r\\n deleteCustomer: DeletionResponse;\\r\\n /** Update an existing Address */\\r\\n deleteCustomerAddress: Success;\\r\\n /** Delete a CustomerGroup */\\r\\n deleteCustomerGroup: DeletionResponse;\\r\\n /** Delete multiple CustomerGroups */\\r\\n deleteCustomerGroups: Array<DeletionResponse>;\\r\\n deleteCustomerNote: DeletionResponse;\\r\\n /** Deletes Customers */\\r\\n deleteCustomers: Array<DeletionResponse>;\\r\\n /** Deletes a draft Order */\\r\\n deleteDraftOrder: DeletionResponse;\\r\\n /** Delete an existing Facet */\\r\\n deleteFacet: DeletionResponse;\\r\\n /** Delete one or more FacetValues */\\r\\n deleteFacetValues: Array<DeletionResponse>;\\r\\n /** Delete multiple existing Facets */\\r\\n deleteFacets: Array<DeletionResponse>;\\r\\n deleteOrderNote: DeletionResponse;\\r\\n /** Delete a PaymentMethod */\\r\\n deletePaymentMethod: DeletionResponse;\\r\\n /** Delete multiple PaymentMethods */\\r\\n deletePaymentMethods: Array<DeletionResponse>;\\r\\n /** Delete a Product */\\r\\n deleteProduct: DeletionResponse;\\r\\n /** Delete a ProductOption */\\r\\n deleteProductOption: DeletionResponse;\\r\\n /** Delete a ProductVariant */\\r\\n deleteProductVariant: DeletionResponse;\\r\\n /** Delete multiple ProductVariants */\\r\\n deleteProductVariants: Array<DeletionResponse>;\\r\\n /** Delete multiple Products */\\r\\n deleteProducts: Array<DeletionResponse>;\\r\\n deletePromotion: DeletionResponse;\\r\\n deletePromotions: Array<DeletionResponse>;\\r\\n /** Delete a Province */\\r\\n deleteProvince: DeletionResponse;\\r\\n /** Delete an existing Role */\\r\\n deleteRole: DeletionResponse;\\r\\n /** Delete multiple Roles */\\r\\n deleteRoles: Array<DeletionResponse>;\\r\\n /** Delete a Seller */\\r\\n deleteSeller: DeletionResponse;\\r\\n /** Delete multiple Sellers */\\r\\n deleteSellers: Array<DeletionResponse>;\\r\\n /** Delete a ShippingMethod */\\r\\n deleteShippingMethod: DeletionResponse;\\r\\n /** Delete multiple ShippingMethods */\\r\\n deleteShippingMethods: Array<DeletionResponse>;\\r\\n deleteStockLocation: DeletionResponse;\\r\\n deleteStockLocations: Array<DeletionResponse>;\\r\\n /** Delete an existing Tag */\\r\\n deleteTag: DeletionResponse;\\r\\n /** Deletes multiple TaxCategories */\\r\\n deleteTaxCategories: Array<DeletionResponse>;\\r\\n /** Deletes a TaxCategory */\\r\\n deleteTaxCategory: DeletionResponse;\\r\\n /** Delete a TaxRate */\\r\\n deleteTaxRate: DeletionResponse;\\r\\n /** Delete multiple TaxRates */\\r\\n deleteTaxRates: Array<DeletionResponse>;\\r\\n /** Delete a Zone */\\r\\n deleteZone: DeletionResponse;\\r\\n /** Delete a Zone */\\r\\n deleteZones: Array<DeletionResponse>;\\r\\n flushBufferedJobs: Success;\\r\\n importProducts?: Maybe<ImportInfo>;\\r\\n /** Authenticates the user using the native authentication strategy. This mutation is an alias for `authenticate({ native: { ... }})` */\\r\\n login: NativeAuthenticationResult;\\r\\n logout: Success;\\r\\n /**\\r\\n * Allows an Order to be modified after it has been completed by the Customer. The Order must first\\r\\n * be in the `Modifying` state.\\r\\n */\\r\\n modifyOrder: ModifyOrderResult;\\r\\n /** Move a Collection to a different parent or index */\\r\\n moveCollection: Collection;\\r\\n refundOrder: RefundOrderResult;\\r\\n reindex: Job;\\r\\n rejectProductReview?: Maybe<ProductReview>;\\r\\n /** Removes Collections from the specified Channel */\\r\\n removeCollectionsFromChannel: Array<Collection>;\\r\\n /** Removes the given coupon code from the draft Order */\\r\\n removeCouponCodeFromDraftOrder?: Maybe<Order>;\\r\\n /** Remove Customers from a CustomerGroup */\\r\\n removeCustomersFromGroup: CustomerGroup;\\r\\n /** Remove an OrderLine from the draft Order */\\r\\n removeDraftOrderLine: RemoveOrderItemsResult;\\r\\n /** Removes Facets from the specified Channel */\\r\\n removeFacetsFromChannel: Array<RemoveFacetFromChannelResult>;\\r\\n /** Remove members from a Zone */\\r\\n removeMembersFromZone: Zone;\\r\\n /**\\r\\n * Remove an OptionGroup from a Product. If the OptionGroup is in use by any ProductVariants\\r\\n * the mutation will return a ProductOptionInUseError, and the OptionGroup will not be removed.\\r\\n * Setting the `force` argument to `true` will override this and remove the OptionGroup anyway,\\r\\n * as well as removing any of the group's options from the Product's ProductVariants.\\r\\n */\\r\\n removeOptionGroupFromProduct: RemoveOptionGroupFromProductResult;\\r\\n /** Removes PaymentMethods from the specified Channel */\\r\\n removePaymentMethodsFromChannel: Array<PaymentMethod>;\\r\\n /** Removes ProductVariants from the specified Channel */\\r\\n removeProductVariantsFromChannel: Array<ProductVariant>;\\r\\n /** Removes all ProductVariants of Product from the specified Channel */\\r\\n removeProductsFromChannel: Array<Product>;\\r\\n /** Removes Promotions from the specified Channel */\\r\\n removePromotionsFromChannel: Array<Promotion>;\\r\\n /** Remove all settled jobs in the given queues older than the given date. Returns the number of jobs deleted. */\\r\\n removeSettledJobs: Scalars['Int']['output'];\\r\\n /** Removes ShippingMethods from the specified Channel */\\r\\n removeShippingMethodsFromChannel: Array<ShippingMethod>;\\r\\n /** Removes StockLocations from the specified Channel */\\r\\n removeStockLocationsFromChannel: Array<StockLocation>;\\r\\n runPendingSearchIndexUpdates: Success;\\r\\n setCustomerForDraftOrder: SetCustomerForDraftOrderResult;\\r\\n /** Sets the billing address for a draft Order */\\r\\n setDraftOrderBillingAddress: Order;\\r\\n /** Allows any custom fields to be set for the active order */\\r\\n setDraftOrderCustomFields: Order;\\r\\n /** Sets the shipping address for a draft Order */\\r\\n setDraftOrderShippingAddress: Order;\\r\\n /** Sets the shipping method by id, which can be obtained with the `eligibleShippingMethodsForDraftOrder` query */\\r\\n setDraftOrderShippingMethod: SetOrderShippingMethodResult;\\r\\n setOrderCustomFields?: Maybe<Order>;\\r\\n settlePayment: SettlePaymentResult;\\r\\n settleRefund: SettleRefundResult;\\r\\n transitionFulfillmentToState: TransitionFulfillmentToStateResult;\\r\\n transitionOrderToState?: Maybe<TransitionOrderToStateResult>;\\r\\n transitionPaymentToState: TransitionPaymentToStateResult;\\r\\n /** Update the active (currently logged-in) Administrator */\\r\\n updateActiveAdministrator: Administrator;\\r\\n /** Update an existing Administrator */\\r\\n updateAdministrator: Administrator;\\r\\n /** Update an existing Asset */\\r\\n updateAsset: Asset;\\r\\n /** Update an existing Channel */\\r\\n updateChannel: UpdateChannelResult;\\r\\n /** Update an existing Collection */\\r\\n updateCollection: Collection;\\r\\n /** Update an existing Country */\\r\\n updateCountry: Country;\\r\\n /** Update an existing Customer */\\r\\n updateCustomer: UpdateCustomerResult;\\r\\n /** Update an existing Address */\\r\\n updateCustomerAddress: Address;\\r\\n /** Update an existing CustomerGroup */\\r\\n updateCustomerGroup: CustomerGroup;\\r\\n updateCustomerNote: HistoryEntry;\\r\\n /** Update an existing Facet */\\r\\n updateFacet: Facet;\\r\\n /** Update one or more FacetValues */\\r\\n updateFacetValues: Array<FacetValue>;\\r\\n updateGlobalSettings: UpdateGlobalSettingsResult;\\r\\n updateOrderNote: HistoryEntry;\\r\\n /** Update an existing PaymentMethod */\\r\\n updatePaymentMethod: PaymentMethod;\\r\\n /** Update an existing Product */\\r\\n updateProduct: Product;\\r\\n /** Create a new ProductOption within a ProductOptionGroup */\\r\\n updateProductOption: ProductOption;\\r\\n /** Update an existing ProductOptionGroup */\\r\\n updateProductOptionGroup: ProductOptionGroup;\\r\\n updateProductReview: ProductReview;\\r\\n /** Update existing ProductVariants */\\r\\n updateProductVariants: Array<Maybe<ProductVariant>>;\\r\\n /** Update multiple existing Products */\\r\\n updateProducts: Array<Product>;\\r\\n updatePromotion: UpdatePromotionResult;\\r\\n /** Update an existing Province */\\r\\n updateProvince: Province;\\r\\n /** Update an existing Role */\\r\\n updateRole: Role;\\r\\n /** Update an existing Seller */\\r\\n updateSeller: Seller;\\r\\n /** Update an existing ShippingMethod */\\r\\n updateShippingMethod: ShippingMethod;\\r\\n updateStockLocation: StockLocation;\\r\\n /** Update an existing Tag */\\r\\n updateTag: Tag;\\r\\n /** Update an existing TaxCategory */\\r\\n updateTaxCategory: TaxCategory;\\r\\n /** Update an existing TaxRate */\\r\\n updateTaxRate: TaxRate;\\r\\n /** Update an existing Zone */\\r\\n updateZone: Zone;\\r\\n};\\r\\n\\r\\nexport type MutationAddCustomersToGroupArgs = {\\r\\n customerGroupId: Scalars['ID']['input'];\\r\\n customerIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationAddFulfillmentToOrderArgs = {\\r\\n input: FulfillOrderInput;\\r\\n};\\r\\n\\r\\nexport type MutationAddItemToDraftOrderArgs = {\\r\\n input: AddItemToDraftOrderInput;\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationAddManualPaymentToOrderArgs = {\\r\\n input: ManualPaymentInput;\\r\\n};\\r\\n\\r\\nexport type MutationAddMembersToZoneArgs = {\\r\\n memberIds: Array<Scalars['ID']['input']>;\\r\\n zoneId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationAddNoteToCustomerArgs = {\\r\\n input: AddNoteToCustomerInput;\\r\\n};\\r\\n\\r\\nexport type MutationAddNoteToOrderArgs = {\\r\\n input: AddNoteToOrderInput;\\r\\n};\\r\\n\\r\\nexport type MutationAddOptionGroupToProductArgs = {\\r\\n optionGroupId: Scalars['ID']['input'];\\r\\n productId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationAdjustDraftOrderLineArgs = {\\r\\n input: AdjustDraftOrderLineInput;\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationApplyCouponCodeToDraftOrderArgs = {\\r\\n couponCode: Scalars['String']['input'];\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationApproveProductReviewArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationAssignAssetsToChannelArgs = {\\r\\n input: AssignAssetsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignCollectionsToChannelArgs = {\\r\\n input: AssignCollectionsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignFacetsToChannelArgs = {\\r\\n input: AssignFacetsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignPaymentMethodsToChannelArgs = {\\r\\n input: AssignPaymentMethodsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignProductVariantsToChannelArgs = {\\r\\n input: AssignProductVariantsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignProductsToChannelArgs = {\\r\\n input: AssignProductsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignPromotionsToChannelArgs = {\\r\\n input: AssignPromotionsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignRoleToAdministratorArgs = {\\r\\n administratorId: Scalars['ID']['input'];\\r\\n roleId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationAssignShippingMethodsToChannelArgs = {\\r\\n input: AssignShippingMethodsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAssignStockLocationsToChannelArgs = {\\r\\n input: AssignStockLocationsToChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationAuthenticateArgs = {\\r\\n input: AuthenticationInput;\\r\\n rememberMe?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationCancelJobArgs = {\\r\\n jobId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationCancelOrderArgs = {\\r\\n input: CancelOrderInput;\\r\\n};\\r\\n\\r\\nexport type MutationCancelPaymentArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationCreateAdministratorArgs = {\\r\\n input: CreateAdministratorInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateAssetsArgs = {\\r\\n input: Array<CreateAssetInput>;\\r\\n};\\r\\n\\r\\nexport type MutationCreateChannelArgs = {\\r\\n input: CreateChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateCollectionArgs = {\\r\\n input: CreateCollectionInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateCountryArgs = {\\r\\n input: CreateCountryInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateCustomerArgs = {\\r\\n input: CreateCustomerInput;\\r\\n password?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationCreateCustomerAddressArgs = {\\r\\n customerId: Scalars['ID']['input'];\\r\\n input: CreateAddressInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateCustomerGroupArgs = {\\r\\n input: CreateCustomerGroupInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateFacetArgs = {\\r\\n input: CreateFacetInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateFacetValuesArgs = {\\r\\n input: Array<CreateFacetValueInput>;\\r\\n};\\r\\n\\r\\nexport type MutationCreatePaymentMethodArgs = {\\r\\n input: CreatePaymentMethodInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateProductArgs = {\\r\\n input: CreateProductInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateProductOptionArgs = {\\r\\n input: CreateProductOptionInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateProductOptionGroupArgs = {\\r\\n input: CreateProductOptionGroupInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateProductVariantsArgs = {\\r\\n input: Array<CreateProductVariantInput>;\\r\\n};\\r\\n\\r\\nexport type MutationCreatePromotionArgs = {\\r\\n input: CreatePromotionInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateProvinceArgs = {\\r\\n input: CreateProvinceInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateRoleArgs = {\\r\\n input: CreateRoleInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateSellerArgs = {\\r\\n input: CreateSellerInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateShippingMethodArgs = {\\r\\n input: CreateShippingMethodInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateStockLocationArgs = {\\r\\n input: CreateStockLocationInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateTagArgs = {\\r\\n input: CreateTagInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateTaxCategoryArgs = {\\r\\n input: CreateTaxCategoryInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateTaxRateArgs = {\\r\\n input: CreateTaxRateInput;\\r\\n};\\r\\n\\r\\nexport type MutationCreateZoneArgs = {\\r\\n input: CreateZoneInput;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteAdministratorArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteAdministratorsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteAssetArgs = {\\r\\n input: DeleteAssetInput;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteAssetsArgs = {\\r\\n input: DeleteAssetsInput;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteChannelArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteChannelsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCollectionArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCollectionsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCountriesArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCountryArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCustomerArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCustomerAddressArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCustomerGroupArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCustomerGroupsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCustomerNoteArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteCustomersArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteDraftOrderArgs = {\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteFacetArgs = {\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteFacetValuesArgs = {\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteFacetsArgs = {\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteOrderNoteArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeletePaymentMethodArgs = {\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeletePaymentMethodsArgs = {\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteProductArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteProductOptionArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteProductVariantArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteProductVariantsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteProductsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeletePromotionArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeletePromotionsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteProvinceArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteRoleArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteRolesArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteSellerArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteSellersArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteShippingMethodArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteShippingMethodsArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteStockLocationArgs = {\\r\\n input: DeleteStockLocationInput;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteStockLocationsArgs = {\\r\\n input: Array<DeleteStockLocationInput>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteTagArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteTaxCategoriesArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteTaxCategoryArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteTaxRateArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteTaxRatesArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationDeleteZoneArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationDeleteZonesArgs = {\\r\\n ids: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationFlushBufferedJobsArgs = {\\r\\n bufferIds?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n};\\r\\n\\r\\nexport type MutationImportProductsArgs = {\\r\\n csvFile: Scalars['Upload']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationLoginArgs = {\\r\\n password: Scalars['String']['input'];\\r\\n rememberMe?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n username: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationModifyOrderArgs = {\\r\\n input: ModifyOrderInput;\\r\\n};\\r\\n\\r\\nexport type MutationMoveCollectionArgs = {\\r\\n input: MoveCollectionInput;\\r\\n};\\r\\n\\r\\nexport type MutationRefundOrderArgs = {\\r\\n input: RefundOrderInput;\\r\\n};\\r\\n\\r\\nexport type MutationRejectProductReviewArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationRemoveCollectionsFromChannelArgs = {\\r\\n input: RemoveCollectionsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveCouponCodeFromDraftOrderArgs = {\\r\\n couponCode: Scalars['String']['input'];\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationRemoveCustomersFromGroupArgs = {\\r\\n customerGroupId: Scalars['ID']['input'];\\r\\n customerIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveDraftOrderLineArgs = {\\r\\n orderId: Scalars['ID']['input'];\\r\\n orderLineId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationRemoveFacetsFromChannelArgs = {\\r\\n input: RemoveFacetsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveMembersFromZoneArgs = {\\r\\n memberIds: Array<Scalars['ID']['input']>;\\r\\n zoneId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationRemoveOptionGroupFromProductArgs = {\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n optionGroupId: Scalars['ID']['input'];\\r\\n productId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationRemovePaymentMethodsFromChannelArgs = {\\r\\n input: RemovePaymentMethodsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveProductVariantsFromChannelArgs = {\\r\\n input: RemoveProductVariantsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveProductsFromChannelArgs = {\\r\\n input: RemoveProductsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemovePromotionsFromChannelArgs = {\\r\\n input: RemovePromotionsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveSettledJobsArgs = {\\r\\n olderThan?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n queueNames?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveShippingMethodsFromChannelArgs = {\\r\\n input: RemoveShippingMethodsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationRemoveStockLocationsFromChannelArgs = {\\r\\n input: RemoveStockLocationsFromChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationSetCustomerForDraftOrderArgs = {\\r\\n customerId?: InputMaybe<Scalars['ID']['input']>;\\r\\n input?: InputMaybe<CreateCustomerInput>;\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationSetDraftOrderBillingAddressArgs = {\\r\\n input: CreateAddressInput;\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationSetDraftOrderCustomFieldsArgs = {\\r\\n input: UpdateOrderInput;\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationSetDraftOrderShippingAddressArgs = {\\r\\n input: CreateAddressInput;\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationSetDraftOrderShippingMethodArgs = {\\r\\n orderId: Scalars['ID']['input'];\\r\\n shippingMethodId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationSetOrderCustomFieldsArgs = {\\r\\n input: UpdateOrderInput;\\r\\n};\\r\\n\\r\\nexport type MutationSettlePaymentArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationSettleRefundArgs = {\\r\\n input: SettleRefundInput;\\r\\n};\\r\\n\\r\\nexport type MutationTransitionFulfillmentToStateArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n state: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationTransitionOrderToStateArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n state: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationTransitionPaymentToStateArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n state: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type MutationUpdateActiveAdministratorArgs = {\\r\\n input: UpdateActiveAdministratorInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateAdministratorArgs = {\\r\\n input: UpdateAdministratorInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateAssetArgs = {\\r\\n input: UpdateAssetInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateChannelArgs = {\\r\\n input: UpdateChannelInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateCollectionArgs = {\\r\\n input: UpdateCollectionInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateCountryArgs = {\\r\\n input: UpdateCountryInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateCustomerArgs = {\\r\\n input: UpdateCustomerInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateCustomerAddressArgs = {\\r\\n input: UpdateAddressInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateCustomerGroupArgs = {\\r\\n input: UpdateCustomerGroupInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateCustomerNoteArgs = {\\r\\n input: UpdateCustomerNoteInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateFacetArgs = {\\r\\n input: UpdateFacetInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateFacetValuesArgs = {\\r\\n input: Array<UpdateFacetValueInput>;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateGlobalSettingsArgs = {\\r\\n input: UpdateGlobalSettingsInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateOrderNoteArgs = {\\r\\n input: UpdateOrderNoteInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdatePaymentMethodArgs = {\\r\\n input: UpdatePaymentMethodInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProductArgs = {\\r\\n input: UpdateProductInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProductOptionArgs = {\\r\\n input: UpdateProductOptionInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProductOptionGroupArgs = {\\r\\n input: UpdateProductOptionGroupInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProductReviewArgs = {\\r\\n input: UpdateProductReviewInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProductVariantsArgs = {\\r\\n input: Array<UpdateProductVariantInput>;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProductsArgs = {\\r\\n input: Array<UpdateProductInput>;\\r\\n};\\r\\n\\r\\nexport type MutationUpdatePromotionArgs = {\\r\\n input: UpdatePromotionInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateProvinceArgs = {\\r\\n input: UpdateProvinceInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateRoleArgs = {\\r\\n input: UpdateRoleInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateSellerArgs = {\\r\\n input: UpdateSellerInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateShippingMethodArgs = {\\r\\n input: UpdateShippingMethodInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateStockLocationArgs = {\\r\\n input: UpdateStockLocationInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateTagArgs = {\\r\\n input: UpdateTagInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateTaxCategoryArgs = {\\r\\n input: UpdateTaxCategoryInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateTaxRateArgs = {\\r\\n input: UpdateTaxRateInput;\\r\\n};\\r\\n\\r\\nexport type MutationUpdateZoneArgs = {\\r\\n input: UpdateZoneInput;\\r\\n};\\r\\n\\r\\nexport type NativeAuthInput = {\\r\\n password: Scalars['String']['input'];\\r\\n username: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\n/** Returned when attempting an operation that relies on the NativeAuthStrategy, if that strategy is not configured. */\\r\\nexport type NativeAuthStrategyError = ErrorResult & {\\r\\n __typename?: 'NativeAuthStrategyError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type NativeAuthenticationResult = CurrentUser | InvalidCredentialsError | NativeAuthStrategyError;\\r\\n\\r\\n/** Returned when attempting to set a negative OrderLine quantity. */\\r\\nexport type NegativeQuantityError = ErrorResult & {\\r\\n __typename?: 'NegativeQuantityError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Returned when invoking a mutation which depends on there being an active Order on the\\r\\n * current session.\\r\\n */\\r\\nexport type NoActiveOrderError = ErrorResult & {\\r\\n __typename?: 'NoActiveOrderError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when a call to modifyOrder fails to specify any changes */\\r\\nexport type NoChangesSpecifiedError = ErrorResult & {\\r\\n __typename?: 'NoChangesSpecifiedError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type Node = {\\r\\n id: Scalars['ID']['output'];\\r\\n};\\r\\n\\r\\n/** Returned if an attempting to refund an Order but neither items nor shipping refund was specified */\\r\\nexport type NothingToRefundError = ErrorResult & {\\r\\n __typename?: 'NothingToRefundError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a list of Number fields */\\r\\nexport type NumberListOperators = {\\r\\n inList: Scalars['Float']['input'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a Int or Float field */\\r\\nexport type NumberOperators = {\\r\\n between?: InputMaybe<NumberRange>;\\r\\n eq?: InputMaybe<Scalars['Float']['input']>;\\r\\n gt?: InputMaybe<Scalars['Float']['input']>;\\r\\n gte?: InputMaybe<Scalars['Float']['input']>;\\r\\n isNull?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n lt?: InputMaybe<Scalars['Float']['input']>;\\r\\n lte?: InputMaybe<Scalars['Float']['input']>;\\r\\n};\\r\\n\\r\\nexport type NumberRange = {\\r\\n end: Scalars['Float']['input'];\\r\\n start: Scalars['Float']['input'];\\r\\n};\\r\\n\\r\\nexport type Order = Node & {\\r\\n __typename?: 'Order';\\r\\n /** An order is active as long as the payment process has not been completed */\\r\\n active: Scalars['Boolean']['output'];\\r\\n aggregateOrder?: Maybe<Order>;\\r\\n aggregateOrderId?: Maybe<Scalars['ID']['output']>;\\r\\n billingAddress?: Maybe<OrderAddress>;\\r\\n channels: Array<Channel>;\\r\\n /** A unique code for the Order */\\r\\n code: Scalars['String']['output'];\\r\\n /** An array of all coupon codes applied to the Order */\\r\\n couponCodes: Array<Scalars['String']['output']>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n currencyCode: CurrencyCode;\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n customer?: Maybe<Customer>;\\r\\n discounts: Array<Discount>;\\r\\n fulfillments?: Maybe<Array<Fulfillment>>;\\r\\n history: HistoryEntryList;\\r\\n id: Scalars['ID']['output'];\\r\\n lines: Array<OrderLine>;\\r\\n modifications: Array<OrderModification>;\\r\\n nextStates: Array<Scalars['String']['output']>;\\r\\n /**\\r\\n * The date & time that the Order was placed, i.e. the Customer\\r\\n * completed the checkout and the Order is no longer \\\"active\\\"\\r\\n */\\r\\n orderPlacedAt?: Maybe<Scalars['DateTime']['output']>;\\r\\n payments?: Maybe<Array<Payment>>;\\r\\n /** Promotions applied to the order. Only gets populated after the payment process has completed. */\\r\\n promotions: Array<Promotion>;\\r\\n sellerOrders?: Maybe<Array<Order>>;\\r\\n shipping: Scalars['Money']['output'];\\r\\n shippingAddress?: Maybe<OrderAddress>;\\r\\n shippingLines: Array<ShippingLine>;\\r\\n shippingWithTax: Scalars['Money']['output'];\\r\\n state: Scalars['String']['output'];\\r\\n /**\\r\\n * The subTotal is the total of all OrderLines in the Order. This figure also includes any Order-level\\r\\n * discounts which have been prorated (proportionally distributed) amongst the items of each OrderLine.\\r\\n * To get a total of all OrderLines which does not account for prorated discounts, use the\\r\\n * sum of `OrderLine.discountedLinePrice` values.\\r\\n */\\r\\n subTotal: Scalars['Money']['output'];\\r\\n /** Same as subTotal, but inclusive of tax */\\r\\n subTotalWithTax: Scalars['Money']['output'];\\r\\n /**\\r\\n * Surcharges are arbitrary modifications to the Order total which are neither\\r\\n * ProductVariants nor discounts resulting from applied Promotions. For example,\\r\\n * one-off discounts based on customer interaction, or surcharges based on payment\\r\\n * methods.\\r\\n */\\r\\n surcharges: Array<Surcharge>;\\r\\n /** A summary of the taxes being applied to this Order */\\r\\n taxSummary: Array<OrderTaxSummary>;\\r\\n /** Equal to subTotal plus shipping */\\r\\n total: Scalars['Money']['output'];\\r\\n totalQuantity: Scalars['Int']['output'];\\r\\n /** The final payable amount. Equal to subTotalWithTax plus shippingWithTax */\\r\\n totalWithTax: Scalars['Money']['output'];\\r\\n type: OrderType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type OrderHistoryArgs = {\\r\\n options?: InputMaybe<HistoryEntryListOptions>;\\r\\n};\\r\\n\\r\\nexport type OrderAddress = {\\r\\n __typename?: 'OrderAddress';\\r\\n city?: Maybe<Scalars['String']['output']>;\\r\\n company?: Maybe<Scalars['String']['output']>;\\r\\n country?: Maybe<Scalars['String']['output']>;\\r\\n countryCode?: Maybe<Scalars['String']['output']>;\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n fullName?: Maybe<Scalars['String']['output']>;\\r\\n phoneNumber?: Maybe<Scalars['String']['output']>;\\r\\n postalCode?: Maybe<Scalars['String']['output']>;\\r\\n province?: Maybe<Scalars['String']['output']>;\\r\\n streetLine1?: Maybe<Scalars['String']['output']>;\\r\\n streetLine2?: Maybe<Scalars['String']['output']>;\\r\\n};\\r\\n\\r\\nexport type OrderFilterParameter = {\\r\\n active?: InputMaybe<BooleanOperators>;\\r\\n aggregateOrderId?: InputMaybe<IdOperators>;\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n currencyCode?: InputMaybe<StringOperators>;\\r\\n customerLastName?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n orderPlacedAt?: InputMaybe<DateOperators>;\\r\\n shipping?: InputMaybe<NumberOperators>;\\r\\n shippingWithTax?: InputMaybe<NumberOperators>;\\r\\n state?: InputMaybe<StringOperators>;\\r\\n subTotal?: InputMaybe<NumberOperators>;\\r\\n subTotalWithTax?: InputMaybe<NumberOperators>;\\r\\n total?: InputMaybe<NumberOperators>;\\r\\n totalQuantity?: InputMaybe<NumberOperators>;\\r\\n totalWithTax?: InputMaybe<NumberOperators>;\\r\\n transactionId?: InputMaybe<StringOperators>;\\r\\n type?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\n/** Returned when the maximum order size limit has been reached. */\\r\\nexport type OrderLimitError = ErrorResult & {\\r\\n __typename?: 'OrderLimitError';\\r\\n errorCode: ErrorCode;\\r\\n maxItems: Scalars['Int']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type OrderLine = Node & {\\r\\n __typename?: 'OrderLine';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n /** The price of the line including discounts, excluding tax */\\r\\n discountedLinePrice: Scalars['Money']['output'];\\r\\n /** The price of the line including discounts and tax */\\r\\n discountedLinePriceWithTax: Scalars['Money']['output'];\\r\\n /**\\r\\n * The price of a single unit including discounts, excluding tax.\\r\\n *\\r\\n * If Order-level discounts have been applied, this will not be the\\r\\n * actual taxable unit price (see `proratedUnitPrice`), but is generally the\\r\\n * correct price to display to customers to avoid confusion\\r\\n * about the internal handling of distributed Order-level discounts.\\r\\n */\\r\\n discountedUnitPrice: Scalars['Money']['output'];\\r\\n /** The price of a single unit including discounts and tax */\\r\\n discountedUnitPriceWithTax: Scalars['Money']['output'];\\r\\n discounts: Array<Discount>;\\r\\n featuredAsset?: Maybe<Asset>;\\r\\n fulfillmentLines?: Maybe<Array<FulfillmentLine>>;\\r\\n id: Scalars['ID']['output'];\\r\\n /** The total price of the line excluding tax and discounts. */\\r\\n linePrice: Scalars['Money']['output'];\\r\\n /** The total price of the line including tax but excluding discounts. */\\r\\n linePriceWithTax: Scalars['Money']['output'];\\r\\n /** The total tax on this line */\\r\\n lineTax: Scalars['Money']['output'];\\r\\n order: Order;\\r\\n /** The quantity at the time the Order was placed */\\r\\n orderPlacedQuantity: Scalars['Int']['output'];\\r\\n productVariant: ProductVariant;\\r\\n /**\\r\\n * The actual line price, taking into account both item discounts _and_ prorated (proportionally-distributed)\\r\\n * Order-level discounts. This value is the true economic value of the OrderLine, and is used in tax\\r\\n * and refund calculations.\\r\\n */\\r\\n proratedLinePrice: Scalars['Money']['output'];\\r\\n /** The proratedLinePrice including tax */\\r\\n proratedLinePriceWithTax: Scalars['Money']['output'];\\r\\n /**\\r\\n * The actual unit price, taking into account both item discounts _and_ prorated (proportionally-distributed)\\r\\n * Order-level discounts. This value is the true economic value of the OrderItem, and is used in tax\\r\\n * and refund calculations.\\r\\n */\\r\\n proratedUnitPrice: Scalars['Money']['output'];\\r\\n /** The proratedUnitPrice including tax */\\r\\n proratedUnitPriceWithTax: Scalars['Money']['output'];\\r\\n quantity: Scalars['Int']['output'];\\r\\n taxLines: Array<TaxLine>;\\r\\n taxRate: Scalars['Float']['output'];\\r\\n /** The price of a single unit, excluding tax and discounts */\\r\\n unitPrice: Scalars['Money']['output'];\\r\\n /** Non-zero if the unitPrice has changed since it was initially added to Order */\\r\\n unitPriceChangeSinceAdded: Scalars['Money']['output'];\\r\\n /** The price of a single unit, including tax but excluding discounts */\\r\\n unitPriceWithTax: Scalars['Money']['output'];\\r\\n /** Non-zero if the unitPriceWithTax has changed since it was initially added to Order */\\r\\n unitPriceWithTaxChangeSinceAdded: Scalars['Money']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type OrderLineInput = {\\r\\n orderLineId: Scalars['ID']['input'];\\r\\n quantity: Scalars['Int']['input'];\\r\\n};\\r\\n\\r\\nexport type OrderList = PaginatedList & {\\r\\n __typename?: 'OrderList';\\r\\n items: Array<Order>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type OrderListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<OrderFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<OrderSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type OrderModification = Node & {\\r\\n __typename?: 'OrderModification';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n isSettled: Scalars['Boolean']['output'];\\r\\n lines: Array<OrderModificationLine>;\\r\\n note: Scalars['String']['output'];\\r\\n payment?: Maybe<Payment>;\\r\\n priceChange: Scalars['Money']['output'];\\r\\n refund?: Maybe<Refund>;\\r\\n surcharges?: Maybe<Array<Surcharge>>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when attempting to modify the contents of an Order that is not in the `AddingItems` state. */\\r\\nexport type OrderModificationError = ErrorResult & {\\r\\n __typename?: 'OrderModificationError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type OrderModificationLine = {\\r\\n __typename?: 'OrderModificationLine';\\r\\n modification: OrderModification;\\r\\n modificationId: Scalars['ID']['output'];\\r\\n orderLine: OrderLine;\\r\\n orderLineId: Scalars['ID']['output'];\\r\\n quantity: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when attempting to modify the contents of an Order that is not in the `Modifying` state. */\\r\\nexport type OrderModificationStateError = ErrorResult & {\\r\\n __typename?: 'OrderModificationStateError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type OrderProcessState = {\\r\\n __typename?: 'OrderProcessState';\\r\\n name: Scalars['String']['output'];\\r\\n to: Array<Scalars['String']['output']>;\\r\\n};\\r\\n\\r\\nexport type OrderSortParameter = {\\r\\n aggregateOrderId?: InputMaybe<SortOrder>;\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n customerLastName?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n orderPlacedAt?: InputMaybe<SortOrder>;\\r\\n shipping?: InputMaybe<SortOrder>;\\r\\n shippingWithTax?: InputMaybe<SortOrder>;\\r\\n state?: InputMaybe<SortOrder>;\\r\\n subTotal?: InputMaybe<SortOrder>;\\r\\n subTotalWithTax?: InputMaybe<SortOrder>;\\r\\n total?: InputMaybe<SortOrder>;\\r\\n totalQuantity?: InputMaybe<SortOrder>;\\r\\n totalWithTax?: InputMaybe<SortOrder>;\\r\\n transactionId?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\n/** Returned if there is an error in transitioning the Order state */\\r\\nexport type OrderStateTransitionError = ErrorResult & {\\r\\n __typename?: 'OrderStateTransitionError';\\r\\n errorCode: ErrorCode;\\r\\n fromState: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n toState: Scalars['String']['output'];\\r\\n transitionError: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * A summary of the taxes being applied to this order, grouped\\r\\n * by taxRate.\\r\\n */\\r\\nexport type OrderTaxSummary = {\\r\\n __typename?: 'OrderTaxSummary';\\r\\n /** A description of this tax */\\r\\n description: Scalars['String']['output'];\\r\\n /** The total net price of OrderLines to which this taxRate applies */\\r\\n taxBase: Scalars['Money']['output'];\\r\\n /** The taxRate as a percentage */\\r\\n taxRate: Scalars['Float']['output'];\\r\\n /** The total tax being applied to the Order at this taxRate */\\r\\n taxTotal: Scalars['Money']['output'];\\r\\n};\\r\\n\\r\\nexport enum OrderType {\\r\\n Aggregate = 'Aggregate',\\r\\n Regular = 'Regular',\\r\\n Seller = 'Seller',\\r\\n}\\r\\n\\r\\nexport type PaginatedList = {\\r\\n items: Array<Node>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type Payment = Node & {\\r\\n __typename?: 'Payment';\\r\\n amount: Scalars['Money']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n errorMessage?: Maybe<Scalars['String']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n metadata?: Maybe<Scalars['JSON']['output']>;\\r\\n method: Scalars['String']['output'];\\r\\n nextStates: Array<Scalars['String']['output']>;\\r\\n refunds: Array<Refund>;\\r\\n state: Scalars['String']['output'];\\r\\n transactionId?: Maybe<Scalars['String']['output']>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type PaymentMethod = Node & {\\r\\n __typename?: 'PaymentMethod';\\r\\n checker?: Maybe<ConfigurableOperation>;\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n handler: ConfigurableOperation;\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n translations: Array<PaymentMethodTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type PaymentMethodFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type PaymentMethodList = PaginatedList & {\\r\\n __typename?: 'PaymentMethodList';\\r\\n items: Array<PaymentMethod>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type PaymentMethodListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<PaymentMethodFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<PaymentMethodSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\n/**\\r\\n * Returned when a call to modifyOrder fails to include a paymentMethod even\\r\\n * though the price has increased as a result of the changes.\\r\\n */\\r\\nexport type PaymentMethodMissingError = ErrorResult & {\\r\\n __typename?: 'PaymentMethodMissingError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type PaymentMethodQuote = {\\r\\n __typename?: 'PaymentMethodQuote';\\r\\n code: Scalars['String']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n eligibilityMessage?: Maybe<Scalars['String']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n isEligible: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type PaymentMethodSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type PaymentMethodTranslation = {\\r\\n __typename?: 'PaymentMethodTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type PaymentMethodTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\n/** Returned if an attempting to refund a Payment against OrderLines from a different Order */\\r\\nexport type PaymentOrderMismatchError = ErrorResult & {\\r\\n __typename?: 'PaymentOrderMismatchError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when there is an error in transitioning the Payment state */\\r\\nexport type PaymentStateTransitionError = ErrorResult & {\\r\\n __typename?: 'PaymentStateTransitionError';\\r\\n errorCode: ErrorCode;\\r\\n fromState: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n toState: Scalars['String']['output'];\\r\\n transitionError: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * @description\\r\\n * Permissions for administrators and customers. Used to control access to\\r\\n * GraphQL resolvers via the {@link Allow} decorator.\\r\\n *\\r\\n * ## Understanding Permission.Owner\\r\\n *\\r\\n * `Permission.Owner` is a special permission which is used in some Vendure resolvers to indicate that that resolver should only\\r\\n * be accessible to the \\\"owner\\\" of that resource.\\r\\n *\\r\\n * For example, the Shop API `activeCustomer` query resolver should only return the Customer object for the \\\"owner\\\" of that Customer, i.e.\\r\\n * based on the activeUserId of the current session. As a result, the resolver code looks like this:\\r\\n *\\r\\n * @example\\r\\n * ```ts\\r\\n * \\\\@Query()\\r\\n * \\\\@Allow(Permission.Owner)\\r\\n * async activeCustomer(\\\\@Ctx() ctx: RequestContext): Promise<Customer | undefined> {\\r\\n * const userId = ctx.activeUserId;\\r\\n * if (userId) {\\r\\n * return this.customerService.findOneByUserId(ctx, userId);\\r\\n * }\\r\\n * }\\r\\n * ```\\r\\n *\\r\\n * Here we can see that the \\\"ownership\\\" must be enforced by custom logic inside the resolver. Since \\\"ownership\\\" cannot be defined generally\\r\\n * nor statically encoded at build-time, any resolvers using `Permission.Owner` **must** include logic to enforce that only the owner\\r\\n * of the resource has access. If not, then it is the equivalent of using `Permission.Public`.\\r\\n *\\r\\n *\\r\\n * @docsCategory common\\r\\n */\\r\\nexport enum Permission {\\r\\n /** Authenticated means simply that the user is logged in */\\r\\n Authenticated = 'Authenticated',\\r\\n /** Grants permission to create Administrator */\\r\\n CreateAdministrator = 'CreateAdministrator',\\r\\n /** Grants permission to create Asset */\\r\\n CreateAsset = 'CreateAsset',\\r\\n /** Grants permission to create Products, Facets, Assets, Collections */\\r\\n CreateCatalog = 'CreateCatalog',\\r\\n /** Grants permission to create Channel */\\r\\n CreateChannel = 'CreateChannel',\\r\\n /** Grants permission to create Collection */\\r\\n CreateCollection = 'CreateCollection',\\r\\n /** Grants permission to create Country */\\r\\n CreateCountry = 'CreateCountry',\\r\\n /** Grants permission to create Customer */\\r\\n CreateCustomer = 'CreateCustomer',\\r\\n /** Grants permission to create CustomerGroup */\\r\\n CreateCustomerGroup = 'CreateCustomerGroup',\\r\\n /** Grants permission to create Facet */\\r\\n CreateFacet = 'CreateFacet',\\r\\n /** Grants permission to create Order */\\r\\n CreateOrder = 'CreateOrder',\\r\\n /** Grants permission to create PaymentMethod */\\r\\n CreatePaymentMethod = 'CreatePaymentMethod',\\r\\n /** Grants permission to create Product */\\r\\n CreateProduct = 'CreateProduct',\\r\\n /** Grants permission to create Promotion */\\r\\n CreatePromotion = 'CreatePromotion',\\r\\n /** Grants permission to create Seller */\\r\\n CreateSeller = 'CreateSeller',\\r\\n /** Grants permission to create PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */\\r\\n CreateSettings = 'CreateSettings',\\r\\n /** Grants permission to create ShippingMethod */\\r\\n CreateShippingMethod = 'CreateShippingMethod',\\r\\n /** Grants permission to create StockLocation */\\r\\n CreateStockLocation = 'CreateStockLocation',\\r\\n /** Grants permission to create System */\\r\\n CreateSystem = 'CreateSystem',\\r\\n /** Grants permission to create Tag */\\r\\n CreateTag = 'CreateTag',\\r\\n /** Grants permission to create TaxCategory */\\r\\n CreateTaxCategory = 'CreateTaxCategory',\\r\\n /** Grants permission to create TaxRate */\\r\\n CreateTaxRate = 'CreateTaxRate',\\r\\n /** Grants permission to create Zone */\\r\\n CreateZone = 'CreateZone',\\r\\n /** Grants permission to delete Administrator */\\r\\n DeleteAdministrator = 'DeleteAdministrator',\\r\\n /** Grants permission to delete Asset */\\r\\n DeleteAsset = 'DeleteAsset',\\r\\n /** Grants permission to delete Products, Facets, Assets, Collections */\\r\\n DeleteCatalog = 'DeleteCatalog',\\r\\n /** Grants permission to delete Channel */\\r\\n DeleteChannel = 'DeleteChannel',\\r\\n /** Grants permission to delete Collection */\\r\\n DeleteCollection = 'DeleteCollection',\\r\\n /** Grants permission to delete Country */\\r\\n DeleteCountry = 'DeleteCountry',\\r\\n /** Grants permission to delete Customer */\\r\\n DeleteCustomer = 'DeleteCustomer',\\r\\n /** Grants permission to delete CustomerGroup */\\r\\n DeleteCustomerGroup = 'DeleteCustomerGroup',\\r\\n /** Grants permission to delete Facet */\\r\\n DeleteFacet = 'DeleteFacet',\\r\\n /** Grants permission to delete Order */\\r\\n DeleteOrder = 'DeleteOrder',\\r\\n /** Grants permission to delete PaymentMethod */\\r\\n DeletePaymentMethod = 'DeletePaymentMethod',\\r\\n /** Grants permission to delete Product */\\r\\n DeleteProduct = 'DeleteProduct',\\r\\n /** Grants permission to delete Promotion */\\r\\n DeletePromotion = 'DeletePromotion',\\r\\n /** Grants permission to delete Seller */\\r\\n DeleteSeller = 'DeleteSeller',\\r\\n /** Grants permission to delete PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */\\r\\n DeleteSettings = 'DeleteSettings',\\r\\n /** Grants permission to delete ShippingMethod */\\r\\n DeleteShippingMethod = 'DeleteShippingMethod',\\r\\n /** Grants permission to delete StockLocation */\\r\\n DeleteStockLocation = 'DeleteStockLocation',\\r\\n /** Grants permission to delete System */\\r\\n DeleteSystem = 'DeleteSystem',\\r\\n /** Grants permission to delete Tag */\\r\\n DeleteTag = 'DeleteTag',\\r\\n /** Grants permission to delete TaxCategory */\\r\\n DeleteTaxCategory = 'DeleteTaxCategory',\\r\\n /** Grants permission to delete TaxRate */\\r\\n DeleteTaxRate = 'DeleteTaxRate',\\r\\n /** Grants permission to delete Zone */\\r\\n DeleteZone = 'DeleteZone',\\r\\n /** Owner means the user owns this entity, e.g. a Customer's own Order */\\r\\n Owner = 'Owner',\\r\\n /** Public means any unauthenticated user may perform the operation */\\r\\n Public = 'Public',\\r\\n /** Grants permission to read Administrator */\\r\\n ReadAdministrator = 'ReadAdministrator',\\r\\n /** Grants permission to read Asset */\\r\\n ReadAsset = 'ReadAsset',\\r\\n /** Grants permission to read Products, Facets, Assets, Collections */\\r\\n ReadCatalog = 'ReadCatalog',\\r\\n /** Grants permission to read Channel */\\r\\n ReadChannel = 'ReadChannel',\\r\\n /** Grants permission to read Collection */\\r\\n ReadCollection = 'ReadCollection',\\r\\n /** Grants permission to read Country */\\r\\n ReadCountry = 'ReadCountry',\\r\\n /** Grants permission to read Customer */\\r\\n ReadCustomer = 'ReadCustomer',\\r\\n /** Grants permission to read CustomerGroup */\\r\\n ReadCustomerGroup = 'ReadCustomerGroup',\\r\\n /** Grants permission to read Facet */\\r\\n ReadFacet = 'ReadFacet',\\r\\n /** Grants permission to read Order */\\r\\n ReadOrder = 'ReadOrder',\\r\\n /** Grants permission to read PaymentMethod */\\r\\n ReadPaymentMethod = 'ReadPaymentMethod',\\r\\n /** Grants permission to read Product */\\r\\n ReadProduct = 'ReadProduct',\\r\\n /** Grants permission to read Promotion */\\r\\n ReadPromotion = 'ReadPromotion',\\r\\n /** Grants permission to read Seller */\\r\\n ReadSeller = 'ReadSeller',\\r\\n /** Grants permission to read PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */\\r\\n ReadSettings = 'ReadSettings',\\r\\n /** Grants permission to read ShippingMethod */\\r\\n ReadShippingMethod = 'ReadShippingMethod',\\r\\n /** Grants permission to read StockLocation */\\r\\n ReadStockLocation = 'ReadStockLocation',\\r\\n /** Grants permission to read System */\\r\\n ReadSystem = 'ReadSystem',\\r\\n /** Grants permission to read Tag */\\r\\n ReadTag = 'ReadTag',\\r\\n /** Grants permission to read TaxCategory */\\r\\n ReadTaxCategory = 'ReadTaxCategory',\\r\\n /** Grants permission to read TaxRate */\\r\\n ReadTaxRate = 'ReadTaxRate',\\r\\n /** Grants permission to read Zone */\\r\\n ReadZone = 'ReadZone',\\r\\n /** SuperAdmin has unrestricted access to all operations */\\r\\n SuperAdmin = 'SuperAdmin',\\r\\n /** Grants permission to update Administrator */\\r\\n UpdateAdministrator = 'UpdateAdministrator',\\r\\n /** Grants permission to update Asset */\\r\\n UpdateAsset = 'UpdateAsset',\\r\\n /** Grants permission to update Products, Facets, Assets, Collections */\\r\\n UpdateCatalog = 'UpdateCatalog',\\r\\n /** Grants permission to update Channel */\\r\\n UpdateChannel = 'UpdateChannel',\\r\\n /** Grants permission to update Collection */\\r\\n UpdateCollection = 'UpdateCollection',\\r\\n /** Grants permission to update Country */\\r\\n UpdateCountry = 'UpdateCountry',\\r\\n /** Grants permission to update Customer */\\r\\n UpdateCustomer = 'UpdateCustomer',\\r\\n /** Grants permission to update CustomerGroup */\\r\\n UpdateCustomerGroup = 'UpdateCustomerGroup',\\r\\n /** Grants permission to update Facet */\\r\\n UpdateFacet = 'UpdateFacet',\\r\\n /** Grants permission to update GlobalSettings */\\r\\n UpdateGlobalSettings = 'UpdateGlobalSettings',\\r\\n /** Grants permission to update Order */\\r\\n UpdateOrder = 'UpdateOrder',\\r\\n /** Grants permission to update PaymentMethod */\\r\\n UpdatePaymentMethod = 'UpdatePaymentMethod',\\r\\n /** Grants permission to update Product */\\r\\n UpdateProduct = 'UpdateProduct',\\r\\n /** Grants permission to update Promotion */\\r\\n UpdatePromotion = 'UpdatePromotion',\\r\\n /** Grants permission to update Seller */\\r\\n UpdateSeller = 'UpdateSeller',\\r\\n /** Grants permission to update PaymentMethods, ShippingMethods, TaxCategories, TaxRates, Zones, Countries, System & GlobalSettings */\\r\\n UpdateSettings = 'UpdateSettings',\\r\\n /** Grants permission to update ShippingMethod */\\r\\n UpdateShippingMethod = 'UpdateShippingMethod',\\r\\n /** Grants permission to update StockLocation */\\r\\n UpdateStockLocation = 'UpdateStockLocation',\\r\\n /** Grants permission to update System */\\r\\n UpdateSystem = 'UpdateSystem',\\r\\n /** Grants permission to update Tag */\\r\\n UpdateTag = 'UpdateTag',\\r\\n /** Grants permission to update TaxCategory */\\r\\n UpdateTaxCategory = 'UpdateTaxCategory',\\r\\n /** Grants permission to update TaxRate */\\r\\n UpdateTaxRate = 'UpdateTaxRate',\\r\\n /** Grants permission to update Zone */\\r\\n UpdateZone = 'UpdateZone',\\r\\n}\\r\\n\\r\\nexport type PermissionDefinition = {\\r\\n __typename?: 'PermissionDefinition';\\r\\n assignable: Scalars['Boolean']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type PreviewCollectionVariantsInput = {\\r\\n filters: Array<ConfigurableOperationInput>;\\r\\n inheritFilters: Scalars['Boolean']['input'];\\r\\n parentId?: InputMaybe<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\n/** The price range where the result has more than one price */\\r\\nexport type PriceRange = {\\r\\n __typename?: 'PriceRange';\\r\\n max: Scalars['Money']['output'];\\r\\n min: Scalars['Money']['output'];\\r\\n};\\r\\n\\r\\nexport type Product = Node & {\\r\\n __typename?: 'Product';\\r\\n assets: Array<Asset>;\\r\\n channels: Array<Channel>;\\r\\n collections: Array<Collection>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<ProductCustomFields>;\\r\\n description: Scalars['String']['output'];\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n facetValues: Array<FacetValue>;\\r\\n featuredAsset?: Maybe<Asset>;\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n optionGroups: Array<ProductOptionGroup>;\\r\\n reviews: ProductReviewList;\\r\\n reviewsHistogram: Array<ProductReviewHistogramItem>;\\r\\n slug: Scalars['String']['output'];\\r\\n translations: Array<ProductTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n /** Returns a paginated, sortable, filterable list of ProductVariants */\\r\\n variantList: ProductVariantList;\\r\\n /** Returns all ProductVariants */\\r\\n variants: Array<ProductVariant>;\\r\\n};\\r\\n\\r\\nexport type ProductReviewsArgs = {\\r\\n options?: InputMaybe<ProductReviewListOptions>;\\r\\n};\\r\\n\\r\\nexport type ProductVariantListArgs = {\\r\\n options?: InputMaybe<ProductVariantListOptions>;\\r\\n};\\r\\n\\r\\nexport type ProductCustomFields = {\\r\\n __typename?: 'ProductCustomFields';\\r\\n featuredReview?: Maybe<ProductReview>;\\r\\n reviewCount?: Maybe<Scalars['Float']['output']>;\\r\\n reviewRating?: Maybe<Scalars['Float']['output']>;\\r\\n};\\r\\n\\r\\nexport type ProductFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n facetValueId?: InputMaybe<IdOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n reviewCount?: InputMaybe<NumberOperators>;\\r\\n reviewRating?: InputMaybe<NumberOperators>;\\r\\n slug?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type ProductList = PaginatedList & {\\r\\n __typename?: 'ProductList';\\r\\n items: Array<Product>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ProductFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ProductSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProductOption = Node & {\\r\\n __typename?: 'ProductOption';\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n group: ProductOptionGroup;\\r\\n groupId: Scalars['ID']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n translations: Array<ProductOptionTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductOptionGroup = Node & {\\r\\n __typename?: 'ProductOptionGroup';\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n options: Array<ProductOption>;\\r\\n translations: Array<ProductOptionGroupTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductOptionGroupTranslation = {\\r\\n __typename?: 'ProductOptionGroupTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductOptionGroupTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProductOptionInUseError = ErrorResult & {\\r\\n __typename?: 'ProductOptionInUseError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n optionGroupCode: Scalars['String']['output'];\\r\\n productVariantCount: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductOptionTranslation = {\\r\\n __typename?: 'ProductOptionTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductOptionTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProductReview = Node & {\\r\\n __typename?: 'ProductReview';\\r\\n author?: Maybe<Customer>;\\r\\n authorLocation?: Maybe<Scalars['String']['output']>;\\r\\n authorName: Scalars['String']['output'];\\r\\n body?: Maybe<Scalars['String']['output']>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n downvotes: Scalars['Int']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n product: Product;\\r\\n productVariant?: Maybe<ProductVariant>;\\r\\n rating: Scalars['Float']['output'];\\r\\n response?: Maybe<Scalars['String']['output']>;\\r\\n responseCreatedAt?: Maybe<Scalars['DateTime']['output']>;\\r\\n state: Scalars['String']['output'];\\r\\n summary: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n upvotes: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductReviewFilterParameter = {\\r\\n authorLocation?: InputMaybe<StringOperators>;\\r\\n authorName?: InputMaybe<StringOperators>;\\r\\n body?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n downvotes?: InputMaybe<NumberOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n rating?: InputMaybe<NumberOperators>;\\r\\n response?: InputMaybe<StringOperators>;\\r\\n responseCreatedAt?: InputMaybe<DateOperators>;\\r\\n state?: InputMaybe<StringOperators>;\\r\\n summary?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n upvotes?: InputMaybe<NumberOperators>;\\r\\n};\\r\\n\\r\\nexport type ProductReviewHistogramItem = {\\r\\n __typename?: 'ProductReviewHistogramItem';\\r\\n bin: Scalars['Int']['output'];\\r\\n frequency: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductReviewList = PaginatedList & {\\r\\n __typename?: 'ProductReviewList';\\r\\n items: Array<ProductReview>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductReviewListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ProductReviewFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ProductReviewSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProductReviewSortParameter = {\\r\\n authorLocation?: InputMaybe<SortOrder>;\\r\\n authorName?: InputMaybe<SortOrder>;\\r\\n body?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n downvotes?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n rating?: InputMaybe<SortOrder>;\\r\\n response?: InputMaybe<SortOrder>;\\r\\n responseCreatedAt?: InputMaybe<SortOrder>;\\r\\n state?: InputMaybe<SortOrder>;\\r\\n summary?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n upvotes?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type ProductSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n featuredReview?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n reviewCount?: InputMaybe<SortOrder>;\\r\\n reviewRating?: InputMaybe<SortOrder>;\\r\\n slug?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type ProductTranslation = {\\r\\n __typename?: 'ProductTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n slug: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n slug?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProductVariant = Node & {\\r\\n __typename?: 'ProductVariant';\\r\\n assets: Array<Asset>;\\r\\n channels: Array<Channel>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n currencyCode: CurrencyCode;\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n facetValues: Array<FacetValue>;\\r\\n featuredAsset?: Maybe<Asset>;\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n options: Array<ProductOption>;\\r\\n outOfStockThreshold: Scalars['Int']['output'];\\r\\n price: Scalars['Money']['output'];\\r\\n priceWithTax: Scalars['Money']['output'];\\r\\n prices: Array<ProductVariantPrice>;\\r\\n product: Product;\\r\\n productId: Scalars['ID']['output'];\\r\\n sku: Scalars['String']['output'];\\r\\n /** @deprecated use stockLevels */\\r\\n stockAllocated: Scalars['Int']['output'];\\r\\n stockLevel: Scalars['String']['output'];\\r\\n stockLevels: Array<StockLevel>;\\r\\n stockMovements: StockMovementList;\\r\\n /** @deprecated use stockLevels */\\r\\n stockOnHand: Scalars['Int']['output'];\\r\\n taxCategory: TaxCategory;\\r\\n taxRateApplied: TaxRate;\\r\\n trackInventory: GlobalFlag;\\r\\n translations: Array<ProductVariantTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n useGlobalOutOfStockThreshold: Scalars['Boolean']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductVariantStockMovementsArgs = {\\r\\n options?: InputMaybe<StockMovementListOptions>;\\r\\n};\\r\\n\\r\\nexport type ProductVariantFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n currencyCode?: InputMaybe<StringOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n facetValueId?: InputMaybe<IdOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n outOfStockThreshold?: InputMaybe<NumberOperators>;\\r\\n price?: InputMaybe<NumberOperators>;\\r\\n priceWithTax?: InputMaybe<NumberOperators>;\\r\\n productId?: InputMaybe<IdOperators>;\\r\\n sku?: InputMaybe<StringOperators>;\\r\\n stockAllocated?: InputMaybe<NumberOperators>;\\r\\n stockLevel?: InputMaybe<StringOperators>;\\r\\n stockOnHand?: InputMaybe<NumberOperators>;\\r\\n trackInventory?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n useGlobalOutOfStockThreshold?: InputMaybe<BooleanOperators>;\\r\\n};\\r\\n\\r\\nexport type ProductVariantList = PaginatedList & {\\r\\n __typename?: 'ProductVariantList';\\r\\n items: Array<ProductVariant>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductVariantListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ProductVariantFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ProductVariantSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProductVariantPrice = {\\r\\n __typename?: 'ProductVariantPrice';\\r\\n currencyCode: CurrencyCode;\\r\\n price: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Used to set up update the price of a ProductVariant in a particular Channel.\\r\\n * If the `delete` flag is `true`, the price will be deleted for the given Channel.\\r\\n */\\r\\nexport type ProductVariantPriceInput = {\\r\\n currencyCode: CurrencyCode;\\r\\n delete?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n price: Scalars['Money']['input'];\\r\\n};\\r\\n\\r\\nexport type ProductVariantSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n outOfStockThreshold?: InputMaybe<SortOrder>;\\r\\n price?: InputMaybe<SortOrder>;\\r\\n priceWithTax?: InputMaybe<SortOrder>;\\r\\n productId?: InputMaybe<SortOrder>;\\r\\n sku?: InputMaybe<SortOrder>;\\r\\n stockAllocated?: InputMaybe<SortOrder>;\\r\\n stockLevel?: InputMaybe<SortOrder>;\\r\\n stockOnHand?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type ProductVariantTranslation = {\\r\\n __typename?: 'ProductVariantTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ProductVariantTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type Promotion = Node & {\\r\\n __typename?: 'Promotion';\\r\\n actions: Array<ConfigurableOperation>;\\r\\n conditions: Array<ConfigurableOperation>;\\r\\n couponCode?: Maybe<Scalars['String']['output']>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n endsAt?: Maybe<Scalars['DateTime']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n perCustomerUsageLimit?: Maybe<Scalars['Int']['output']>;\\r\\n startsAt?: Maybe<Scalars['DateTime']['output']>;\\r\\n translations: Array<PromotionTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type PromotionFilterParameter = {\\r\\n couponCode?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n endsAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n perCustomerUsageLimit?: InputMaybe<NumberOperators>;\\r\\n startsAt?: InputMaybe<DateOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type PromotionList = PaginatedList & {\\r\\n __typename?: 'PromotionList';\\r\\n items: Array<Promotion>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type PromotionListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<PromotionFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<PromotionSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type PromotionSortParameter = {\\r\\n couponCode?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n endsAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n perCustomerUsageLimit?: InputMaybe<SortOrder>;\\r\\n startsAt?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type PromotionTranslation = {\\r\\n __typename?: 'PromotionTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type PromotionTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type Province = Node &\\r\\n Region & {\\r\\n __typename?: 'Province';\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n parent?: Maybe<Region>;\\r\\n parentId?: Maybe<Scalars['ID']['output']>;\\r\\n translations: Array<RegionTranslation>;\\r\\n type: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type ProvinceFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n parentId?: InputMaybe<IdOperators>;\\r\\n type?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type ProvinceList = PaginatedList & {\\r\\n __typename?: 'ProvinceList';\\r\\n items: Array<Province>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ProvinceListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ProvinceFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ProvinceSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ProvinceSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n parentId?: InputMaybe<SortOrder>;\\r\\n type?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type ProvinceTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\n/** Returned if the specified quantity of an OrderLine is greater than the number of items in that line */\\r\\nexport type QuantityTooGreatError = ErrorResult & {\\r\\n __typename?: 'QuantityTooGreatError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type Query = {\\r\\n __typename?: 'Query';\\r\\n activeAdministrator?: Maybe<Administrator>;\\r\\n activeChannel: Channel;\\r\\n administrator?: Maybe<Administrator>;\\r\\n administrators: AdministratorList;\\r\\n /** Get a single Asset by id */\\r\\n asset?: Maybe<Asset>;\\r\\n /** Get a list of Assets */\\r\\n assets: AssetList;\\r\\n channel?: Maybe<Channel>;\\r\\n channels: ChannelList;\\r\\n /** Get a Collection either by id or slug. If neither id nor slug is specified, an error will result. */\\r\\n collection?: Maybe<Collection>;\\r\\n collectionFilters: Array<ConfigurableOperationDefinition>;\\r\\n collections: CollectionList;\\r\\n countries: CountryList;\\r\\n country?: Maybe<Country>;\\r\\n customer?: Maybe<Customer>;\\r\\n customerGroup?: Maybe<CustomerGroup>;\\r\\n customerGroups: CustomerGroupList;\\r\\n customers: CustomerList;\\r\\n /** Returns a list of eligible shipping methods for the draft Order */\\r\\n eligibleShippingMethodsForDraftOrder: Array<ShippingMethodQuote>;\\r\\n facet?: Maybe<Facet>;\\r\\n facetValues: FacetValueList;\\r\\n facets: FacetList;\\r\\n fulfillmentHandlers: Array<ConfigurableOperationDefinition>;\\r\\n globalSettings: GlobalSettings;\\r\\n job?: Maybe<Job>;\\r\\n jobBufferSize: Array<JobBufferSize>;\\r\\n jobQueues: Array<JobQueue>;\\r\\n jobs: JobList;\\r\\n jobsById: Array<Job>;\\r\\n me?: Maybe<CurrentUser>;\\r\\n /** Get metrics for the given interval and metric types. */\\r\\n metricSummary: Array<MetricSummary>;\\r\\n order?: Maybe<Order>;\\r\\n orders: OrderList;\\r\\n paymentMethod?: Maybe<PaymentMethod>;\\r\\n paymentMethodEligibilityCheckers: Array<ConfigurableOperationDefinition>;\\r\\n paymentMethodHandlers: Array<ConfigurableOperationDefinition>;\\r\\n paymentMethods: PaymentMethodList;\\r\\n pendingSearchIndexUpdates: Scalars['Int']['output'];\\r\\n /** Used for real-time previews of the contents of a Collection */\\r\\n previewCollectionVariants: ProductVariantList;\\r\\n /** Get a Product either by id or slug. If neither id nor slug is specified, an error will result. */\\r\\n product?: Maybe<Product>;\\r\\n productOptionGroup?: Maybe<ProductOptionGroup>;\\r\\n productOptionGroups: Array<ProductOptionGroup>;\\r\\n productReview?: Maybe<ProductReview>;\\r\\n productReviews: ProductReviewList;\\r\\n /** Get a ProductVariant by id */\\r\\n productVariant?: Maybe<ProductVariant>;\\r\\n /** List ProductVariants either all or for the specific product. */\\r\\n productVariants: ProductVariantList;\\r\\n /** List Products */\\r\\n products: ProductList;\\r\\n promotion?: Maybe<Promotion>;\\r\\n promotionActions: Array<ConfigurableOperationDefinition>;\\r\\n promotionConditions: Array<ConfigurableOperationDefinition>;\\r\\n promotions: PromotionList;\\r\\n province?: Maybe<Province>;\\r\\n provinces: ProvinceList;\\r\\n role?: Maybe<Role>;\\r\\n roles: RoleList;\\r\\n search: SearchResponse;\\r\\n seller?: Maybe<Seller>;\\r\\n sellers: SellerList;\\r\\n shippingCalculators: Array<ConfigurableOperationDefinition>;\\r\\n shippingEligibilityCheckers: Array<ConfigurableOperationDefinition>;\\r\\n shippingMethod?: Maybe<ShippingMethod>;\\r\\n shippingMethods: ShippingMethodList;\\r\\n stockLocation?: Maybe<StockLocation>;\\r\\n stockLocations: StockLocationList;\\r\\n tag: Tag;\\r\\n tags: TagList;\\r\\n taxCategories: TaxCategoryList;\\r\\n taxCategory?: Maybe<TaxCategory>;\\r\\n taxRate?: Maybe<TaxRate>;\\r\\n taxRates: TaxRateList;\\r\\n testEligibleShippingMethods: Array<ShippingMethodQuote>;\\r\\n testShippingMethod: TestShippingMethodResult;\\r\\n zone?: Maybe<Zone>;\\r\\n zones: ZoneList;\\r\\n};\\r\\n\\r\\nexport type QueryAdministratorArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryAdministratorsArgs = {\\r\\n options?: InputMaybe<AdministratorListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryAssetArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryAssetsArgs = {\\r\\n options?: InputMaybe<AssetListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryChannelArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryChannelsArgs = {\\r\\n options?: InputMaybe<ChannelListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryCollectionArgs = {\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n slug?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type QueryCollectionsArgs = {\\r\\n options?: InputMaybe<CollectionListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryCountriesArgs = {\\r\\n options?: InputMaybe<CountryListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryCountryArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryCustomerArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryCustomerGroupArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryCustomerGroupsArgs = {\\r\\n options?: InputMaybe<CustomerGroupListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryCustomersArgs = {\\r\\n options?: InputMaybe<CustomerListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryEligibleShippingMethodsForDraftOrderArgs = {\\r\\n orderId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryFacetArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryFacetValuesArgs = {\\r\\n options?: InputMaybe<FacetValueListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryFacetsArgs = {\\r\\n options?: InputMaybe<FacetListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryJobArgs = {\\r\\n jobId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryJobBufferSizeArgs = {\\r\\n bufferIds?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n};\\r\\n\\r\\nexport type QueryJobsArgs = {\\r\\n options?: InputMaybe<JobListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryJobsByIdArgs = {\\r\\n jobIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type QueryMetricSummaryArgs = {\\r\\n input?: InputMaybe<MetricSummaryInput>;\\r\\n};\\r\\n\\r\\nexport type QueryOrderArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryOrdersArgs = {\\r\\n options?: InputMaybe<OrderListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryPaymentMethodArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryPaymentMethodsArgs = {\\r\\n options?: InputMaybe<PaymentMethodListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryPreviewCollectionVariantsArgs = {\\r\\n input: PreviewCollectionVariantsInput;\\r\\n options?: InputMaybe<ProductVariantListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryProductArgs = {\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n slug?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type QueryProductOptionGroupArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryProductOptionGroupsArgs = {\\r\\n filterTerm?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type QueryProductReviewArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryProductReviewsArgs = {\\r\\n options?: InputMaybe<ProductReviewListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryProductVariantArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryProductVariantsArgs = {\\r\\n options?: InputMaybe<ProductVariantListOptions>;\\r\\n productId?: InputMaybe<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type QueryProductsArgs = {\\r\\n options?: InputMaybe<ProductListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryPromotionArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryPromotionsArgs = {\\r\\n options?: InputMaybe<PromotionListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryProvinceArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryProvincesArgs = {\\r\\n options?: InputMaybe<ProvinceListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryRoleArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryRolesArgs = {\\r\\n options?: InputMaybe<RoleListOptions>;\\r\\n};\\r\\n\\r\\nexport type QuerySearchArgs = {\\r\\n input: SearchInput;\\r\\n};\\r\\n\\r\\nexport type QuerySellerArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QuerySellersArgs = {\\r\\n options?: InputMaybe<SellerListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryShippingMethodArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryShippingMethodsArgs = {\\r\\n options?: InputMaybe<ShippingMethodListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryStockLocationArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryStockLocationsArgs = {\\r\\n options?: InputMaybe<StockLocationListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryTagArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryTagsArgs = {\\r\\n options?: InputMaybe<TagListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryTaxCategoriesArgs = {\\r\\n options?: InputMaybe<TaxCategoryListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryTaxCategoryArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryTaxRateArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryTaxRatesArgs = {\\r\\n options?: InputMaybe<TaxRateListOptions>;\\r\\n};\\r\\n\\r\\nexport type QueryTestEligibleShippingMethodsArgs = {\\r\\n input: TestEligibleShippingMethodsInput;\\r\\n};\\r\\n\\r\\nexport type QueryTestShippingMethodArgs = {\\r\\n input: TestShippingMethodInput;\\r\\n};\\r\\n\\r\\nexport type QueryZoneArgs = {\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type QueryZonesArgs = {\\r\\n options?: InputMaybe<ZoneListOptions>;\\r\\n};\\r\\n\\r\\nexport type Refund = Node & {\\r\\n __typename?: 'Refund';\\r\\n adjustment: Scalars['Money']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n items: Scalars['Money']['output'];\\r\\n lines: Array<RefundLine>;\\r\\n metadata?: Maybe<Scalars['JSON']['output']>;\\r\\n method?: Maybe<Scalars['String']['output']>;\\r\\n paymentId: Scalars['ID']['output'];\\r\\n reason?: Maybe<Scalars['String']['output']>;\\r\\n shipping: Scalars['Money']['output'];\\r\\n state: Scalars['String']['output'];\\r\\n total: Scalars['Money']['output'];\\r\\n transactionId?: Maybe<Scalars['String']['output']>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type RefundLine = {\\r\\n __typename?: 'RefundLine';\\r\\n orderLine: OrderLine;\\r\\n orderLineId: Scalars['ID']['output'];\\r\\n quantity: Scalars['Int']['output'];\\r\\n refund: Refund;\\r\\n refundId: Scalars['ID']['output'];\\r\\n};\\r\\n\\r\\nexport type RefundOrderInput = {\\r\\n adjustment: Scalars['Money']['input'];\\r\\n lines: Array<OrderLineInput>;\\r\\n paymentId: Scalars['ID']['input'];\\r\\n reason?: InputMaybe<Scalars['String']['input']>;\\r\\n shipping: Scalars['Money']['input'];\\r\\n};\\r\\n\\r\\nexport type RefundOrderResult =\\r\\n | AlreadyRefundedError\\r\\n | MultipleOrderError\\r\\n | NothingToRefundError\\r\\n | OrderStateTransitionError\\r\\n | PaymentOrderMismatchError\\r\\n | QuantityTooGreatError\\r\\n | Refund\\r\\n | RefundOrderStateError\\r\\n | RefundStateTransitionError;\\r\\n\\r\\n/** Returned if an attempting to refund an Order which is not in the expected state */\\r\\nexport type RefundOrderStateError = ErrorResult & {\\r\\n __typename?: 'RefundOrderStateError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n orderState: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/**\\r\\n * Returned when a call to modifyOrder fails to include a refundPaymentId even\\r\\n * though the price has decreased as a result of the changes.\\r\\n */\\r\\nexport type RefundPaymentIdMissingError = ErrorResult & {\\r\\n __typename?: 'RefundPaymentIdMissingError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Returned when there is an error in transitioning the Refund state */\\r\\nexport type RefundStateTransitionError = ErrorResult & {\\r\\n __typename?: 'RefundStateTransitionError';\\r\\n errorCode: ErrorCode;\\r\\n fromState: Scalars['String']['output'];\\r\\n message: Scalars['String']['output'];\\r\\n toState: Scalars['String']['output'];\\r\\n transitionError: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type Region = {\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n parent?: Maybe<Region>;\\r\\n parentId?: Maybe<Scalars['ID']['output']>;\\r\\n translations: Array<RegionTranslation>;\\r\\n type: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type RegionTranslation = {\\r\\n __typename?: 'RegionTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type RelationCustomFieldConfig = CustomField & {\\r\\n __typename?: 'RelationCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n entity: Scalars['String']['output'];\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n scalarFields: Array<Scalars['String']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type Release = Node &\\r\\n StockMovement & {\\r\\n __typename?: 'Release';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type RemoveCollectionsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n collectionIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemoveFacetFromChannelResult = Facet | FacetInUseError;\\r\\n\\r\\nexport type RemoveFacetsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n facetIds: Array<Scalars['ID']['input']>;\\r\\n force?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemoveOptionGroupFromProductResult = Product | ProductOptionInUseError;\\r\\n\\r\\nexport type RemoveOrderItemsResult = Order | OrderModificationError;\\r\\n\\r\\nexport type RemovePaymentMethodsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n paymentMethodIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemoveProductVariantsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n productVariantIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemoveProductsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n productIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemovePromotionsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n promotionIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemoveShippingMethodsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n shippingMethodIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type RemoveStockLocationsFromChannelInput = {\\r\\n channelId: Scalars['ID']['input'];\\r\\n stockLocationIds: Array<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type Return = Node &\\r\\n StockMovement & {\\r\\n __typename?: 'Return';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type Role = Node & {\\r\\n __typename?: 'Role';\\r\\n channels: Array<Channel>;\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n permissions: Array<Permission>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type RoleFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type RoleList = PaginatedList & {\\r\\n __typename?: 'RoleList';\\r\\n items: Array<Role>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type RoleListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<RoleFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<RoleSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type RoleSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type Sale = Node &\\r\\n StockMovement & {\\r\\n __typename?: 'Sale';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type SearchInput = {\\r\\n collectionId?: InputMaybe<Scalars['ID']['input']>;\\r\\n collectionSlug?: InputMaybe<Scalars['String']['input']>;\\r\\n facetValueFilters?: InputMaybe<Array<FacetValueFilterInput>>;\\r\\n groupByProduct?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n sort?: InputMaybe<SearchResultSortParameter>;\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n term?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type SearchReindexResponse = {\\r\\n __typename?: 'SearchReindexResponse';\\r\\n success: Scalars['Boolean']['output'];\\r\\n};\\r\\n\\r\\nexport type SearchResponse = {\\r\\n __typename?: 'SearchResponse';\\r\\n collections: Array<CollectionResult>;\\r\\n facetValues: Array<FacetValueResult>;\\r\\n items: Array<SearchResult>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type SearchResult = {\\r\\n __typename?: 'SearchResult';\\r\\n /** An array of ids of the Channels in which this result appears */\\r\\n channelIds: Array<Scalars['ID']['output']>;\\r\\n /** An array of ids of the Collections in which this result appears */\\r\\n collectionIds: Array<Scalars['ID']['output']>;\\r\\n currencyCode: CurrencyCode;\\r\\n description: Scalars['String']['output'];\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n facetIds: Array<Scalars['ID']['output']>;\\r\\n facetValueIds: Array<Scalars['ID']['output']>;\\r\\n price: SearchResultPrice;\\r\\n priceWithTax: SearchResultPrice;\\r\\n productAsset?: Maybe<SearchResultAsset>;\\r\\n productId: Scalars['ID']['output'];\\r\\n productName: Scalars['String']['output'];\\r\\n productVariantAsset?: Maybe<SearchResultAsset>;\\r\\n productVariantId: Scalars['ID']['output'];\\r\\n productVariantName: Scalars['String']['output'];\\r\\n /** A relevance score for the result. Differs between database implementations */\\r\\n score: Scalars['Float']['output'];\\r\\n sku: Scalars['String']['output'];\\r\\n slug: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type SearchResultAsset = {\\r\\n __typename?: 'SearchResultAsset';\\r\\n focalPoint?: Maybe<Coordinate>;\\r\\n id: Scalars['ID']['output'];\\r\\n preview: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** The price of a search result product, either as a range or as a single price */\\r\\nexport type SearchResultPrice = PriceRange | SinglePrice;\\r\\n\\r\\nexport type SearchResultSortParameter = {\\r\\n name?: InputMaybe<SortOrder>;\\r\\n price?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type Seller = Node & {\\r\\n __typename?: 'Seller';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type SellerFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type SellerList = PaginatedList & {\\r\\n __typename?: 'SellerList';\\r\\n items: Array<Seller>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type SellerListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<SellerFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<SellerSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type SellerSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type ServerConfig = {\\r\\n __typename?: 'ServerConfig';\\r\\n customFieldConfig: CustomFields;\\r\\n orderProcess: Array<OrderProcessState>;\\r\\n permissions: Array<PermissionDefinition>;\\r\\n permittedAssetTypes: Array<Scalars['String']['output']>;\\r\\n};\\r\\n\\r\\nexport type SetCustomerForDraftOrderResult = EmailAddressConflictError | Order;\\r\\n\\r\\nexport type SetOrderShippingMethodResult =\\r\\n | IneligibleShippingMethodError\\r\\n | NoActiveOrderError\\r\\n | Order\\r\\n | OrderModificationError;\\r\\n\\r\\n/** Returned if the Payment settlement fails */\\r\\nexport type SettlePaymentError = ErrorResult & {\\r\\n __typename?: 'SettlePaymentError';\\r\\n errorCode: ErrorCode;\\r\\n message: Scalars['String']['output'];\\r\\n paymentErrorMessage: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type SettlePaymentResult =\\r\\n | OrderStateTransitionError\\r\\n | Payment\\r\\n | PaymentStateTransitionError\\r\\n | SettlePaymentError;\\r\\n\\r\\nexport type SettleRefundInput = {\\r\\n id: Scalars['ID']['input'];\\r\\n transactionId: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\nexport type SettleRefundResult = Refund | RefundStateTransitionError;\\r\\n\\r\\nexport type ShippingLine = {\\r\\n __typename?: 'ShippingLine';\\r\\n discountedPrice: Scalars['Money']['output'];\\r\\n discountedPriceWithTax: Scalars['Money']['output'];\\r\\n discounts: Array<Discount>;\\r\\n id: Scalars['ID']['output'];\\r\\n price: Scalars['Money']['output'];\\r\\n priceWithTax: Scalars['Money']['output'];\\r\\n shippingMethod: ShippingMethod;\\r\\n};\\r\\n\\r\\nexport type ShippingMethod = Node & {\\r\\n __typename?: 'ShippingMethod';\\r\\n calculator: ConfigurableOperation;\\r\\n checker: ConfigurableOperation;\\r\\n code: Scalars['String']['output'];\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n fulfillmentHandlerCode: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n translations: Array<ShippingMethodTranslation>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ShippingMethodFilterParameter = {\\r\\n code?: InputMaybe<StringOperators>;\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n fulfillmentHandlerCode?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n languageCode?: InputMaybe<StringOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type ShippingMethodList = PaginatedList & {\\r\\n __typename?: 'ShippingMethodList';\\r\\n items: Array<ShippingMethod>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ShippingMethodListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ShippingMethodFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ShippingMethodSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ShippingMethodQuote = {\\r\\n __typename?: 'ShippingMethodQuote';\\r\\n code: Scalars['String']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n /** Any optional metadata returned by the ShippingCalculator in the ShippingCalculationResult */\\r\\n metadata?: Maybe<Scalars['JSON']['output']>;\\r\\n name: Scalars['String']['output'];\\r\\n price: Scalars['Money']['output'];\\r\\n priceWithTax: Scalars['Money']['output'];\\r\\n};\\r\\n\\r\\nexport type ShippingMethodSortParameter = {\\r\\n code?: InputMaybe<SortOrder>;\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n fulfillmentHandlerCode?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type ShippingMethodTranslation = {\\r\\n __typename?: 'ShippingMethodTranslation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n languageCode: LanguageCode;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ShippingMethodTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\n/** The price value where the result has a single price */\\r\\nexport type SinglePrice = {\\r\\n __typename?: 'SinglePrice';\\r\\n value: Scalars['Money']['output'];\\r\\n};\\r\\n\\r\\nexport enum SortOrder {\\r\\n ASC = 'ASC',\\r\\n DESC = 'DESC',\\r\\n}\\r\\n\\r\\nexport type StockAdjustment = Node &\\r\\n StockMovement & {\\r\\n __typename?: 'StockAdjustment';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n };\\r\\n\\r\\nexport type StockLevel = Node & {\\r\\n __typename?: 'StockLevel';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n stockAllocated: Scalars['Int']['output'];\\r\\n stockLocation: StockLocation;\\r\\n stockLocationId: Scalars['ID']['output'];\\r\\n stockOnHand: Scalars['Int']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type StockLevelInput = {\\r\\n stockLocationId: Scalars['ID']['input'];\\r\\n stockOnHand: Scalars['Int']['input'];\\r\\n};\\r\\n\\r\\nexport type StockLocation = Node & {\\r\\n __typename?: 'StockLocation';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type StockLocationFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n description?: InputMaybe<StringOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type StockLocationList = PaginatedList & {\\r\\n __typename?: 'StockLocationList';\\r\\n items: Array<StockLocation>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type StockLocationListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<StockLocationFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<StockLocationSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type StockLocationSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n description?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type StockMovement = {\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n productVariant: ProductVariant;\\r\\n quantity: Scalars['Int']['output'];\\r\\n type: StockMovementType;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type StockMovementItem = Allocation | Cancellation | Release | Return | Sale | StockAdjustment;\\r\\n\\r\\nexport type StockMovementList = {\\r\\n __typename?: 'StockMovementList';\\r\\n items: Array<StockMovementItem>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type StockMovementListOptions = {\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n type?: InputMaybe<StockMovementType>;\\r\\n};\\r\\n\\r\\nexport enum StockMovementType {\\r\\n ADJUSTMENT = 'ADJUSTMENT',\\r\\n ALLOCATION = 'ALLOCATION',\\r\\n CANCELLATION = 'CANCELLATION',\\r\\n RELEASE = 'RELEASE',\\r\\n RETURN = 'RETURN',\\r\\n SALE = 'SALE',\\r\\n}\\r\\n\\r\\nexport type StringCustomFieldConfig = CustomField & {\\r\\n __typename?: 'StringCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n length?: Maybe<Scalars['Int']['output']>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n options?: Maybe<Array<StringFieldOption>>;\\r\\n pattern?: Maybe<Scalars['String']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type StringFieldOption = {\\r\\n __typename?: 'StringFieldOption';\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n value: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a list of String fields */\\r\\nexport type StringListOperators = {\\r\\n inList: Scalars['String']['input'];\\r\\n};\\r\\n\\r\\n/** Operators for filtering on a String field */\\r\\nexport type StringOperators = {\\r\\n contains?: InputMaybe<Scalars['String']['input']>;\\r\\n eq?: InputMaybe<Scalars['String']['input']>;\\r\\n in?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n isNull?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n notContains?: InputMaybe<Scalars['String']['input']>;\\r\\n notEq?: InputMaybe<Scalars['String']['input']>;\\r\\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n regex?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\n/** Indicates that an operation succeeded, where we do not want to return any more specific information. */\\r\\nexport type Success = {\\r\\n __typename?: 'Success';\\r\\n success: Scalars['Boolean']['output'];\\r\\n};\\r\\n\\r\\nexport type Surcharge = Node & {\\r\\n __typename?: 'Surcharge';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n description: Scalars['String']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n price: Scalars['Money']['output'];\\r\\n priceWithTax: Scalars['Money']['output'];\\r\\n sku?: Maybe<Scalars['String']['output']>;\\r\\n taxLines: Array<TaxLine>;\\r\\n taxRate: Scalars['Float']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type SurchargeInput = {\\r\\n description: Scalars['String']['input'];\\r\\n price: Scalars['Money']['input'];\\r\\n priceIncludesTax: Scalars['Boolean']['input'];\\r\\n sku?: InputMaybe<Scalars['String']['input']>;\\r\\n taxDescription?: InputMaybe<Scalars['String']['input']>;\\r\\n taxRate?: InputMaybe<Scalars['Float']['input']>;\\r\\n};\\r\\n\\r\\nexport type Tag = Node & {\\r\\n __typename?: 'Tag';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n value: Scalars['String']['output'];\\r\\n};\\r\\n\\r\\nexport type TagFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n value?: InputMaybe<StringOperators>;\\r\\n};\\r\\n\\r\\nexport type TagList = PaginatedList & {\\r\\n __typename?: 'TagList';\\r\\n items: Array<Tag>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type TagListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<TagFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<TagSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type TagSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n value?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type TaxCategory = Node & {\\r\\n __typename?: 'TaxCategory';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n isDefault: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type TaxCategoryFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n isDefault?: InputMaybe<BooleanOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type TaxCategoryList = PaginatedList & {\\r\\n __typename?: 'TaxCategoryList';\\r\\n items: Array<TaxCategory>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type TaxCategoryListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<TaxCategoryFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<TaxCategorySortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type TaxCategorySortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type TaxLine = {\\r\\n __typename?: 'TaxLine';\\r\\n description: Scalars['String']['output'];\\r\\n taxRate: Scalars['Float']['output'];\\r\\n};\\r\\n\\r\\nexport type TaxRate = Node & {\\r\\n __typename?: 'TaxRate';\\r\\n category: TaxCategory;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n customerGroup?: Maybe<CustomerGroup>;\\r\\n enabled: Scalars['Boolean']['output'];\\r\\n id: Scalars['ID']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n value: Scalars['Float']['output'];\\r\\n zone: Zone;\\r\\n};\\r\\n\\r\\nexport type TaxRateFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n enabled?: InputMaybe<BooleanOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n value?: InputMaybe<NumberOperators>;\\r\\n};\\r\\n\\r\\nexport type TaxRateList = PaginatedList & {\\r\\n __typename?: 'TaxRateList';\\r\\n items: Array<TaxRate>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type TaxRateListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<TaxRateFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<TaxRateSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type TaxRateSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n value?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\\r\\nexport type TestEligibleShippingMethodsInput = {\\r\\n lines: Array<TestShippingMethodOrderLineInput>;\\r\\n shippingAddress: CreateAddressInput;\\r\\n};\\r\\n\\r\\nexport type TestShippingMethodInput = {\\r\\n calculator: ConfigurableOperationInput;\\r\\n checker: ConfigurableOperationInput;\\r\\n lines: Array<TestShippingMethodOrderLineInput>;\\r\\n shippingAddress: CreateAddressInput;\\r\\n};\\r\\n\\r\\nexport type TestShippingMethodOrderLineInput = {\\r\\n productVariantId: Scalars['ID']['input'];\\r\\n quantity: Scalars['Int']['input'];\\r\\n};\\r\\n\\r\\nexport type TestShippingMethodQuote = {\\r\\n __typename?: 'TestShippingMethodQuote';\\r\\n metadata?: Maybe<Scalars['JSON']['output']>;\\r\\n price: Scalars['Money']['output'];\\r\\n priceWithTax: Scalars['Money']['output'];\\r\\n};\\r\\n\\r\\nexport type TestShippingMethodResult = {\\r\\n __typename?: 'TestShippingMethodResult';\\r\\n eligible: Scalars['Boolean']['output'];\\r\\n quote?: Maybe<TestShippingMethodQuote>;\\r\\n};\\r\\n\\r\\nexport type TextCustomFieldConfig = CustomField & {\\r\\n __typename?: 'TextCustomFieldConfig';\\r\\n description?: Maybe<Array<LocalizedString>>;\\r\\n internal?: Maybe<Scalars['Boolean']['output']>;\\r\\n label?: Maybe<Array<LocalizedString>>;\\r\\n list: Scalars['Boolean']['output'];\\r\\n name: Scalars['String']['output'];\\r\\n nullable?: Maybe<Scalars['Boolean']['output']>;\\r\\n readonly?: Maybe<Scalars['Boolean']['output']>;\\r\\n type: Scalars['String']['output'];\\r\\n ui?: Maybe<Scalars['JSON']['output']>;\\r\\n};\\r\\n\\r\\nexport type TransitionFulfillmentToStateResult = Fulfillment | FulfillmentStateTransitionError;\\r\\n\\r\\nexport type TransitionOrderToStateResult = Order | OrderStateTransitionError;\\r\\n\\r\\nexport type TransitionPaymentToStateResult = Payment | PaymentStateTransitionError;\\r\\n\\r\\nexport type UpdateActiveAdministratorInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n emailAddress?: InputMaybe<Scalars['String']['input']>;\\r\\n firstName?: InputMaybe<Scalars['String']['input']>;\\r\\n lastName?: InputMaybe<Scalars['String']['input']>;\\r\\n password?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateAddressInput = {\\r\\n city?: InputMaybe<Scalars['String']['input']>;\\r\\n company?: InputMaybe<Scalars['String']['input']>;\\r\\n countryCode?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n defaultBillingAddress?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n defaultShippingAddress?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n fullName?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\\r\\n postalCode?: InputMaybe<Scalars['String']['input']>;\\r\\n province?: InputMaybe<Scalars['String']['input']>;\\r\\n streetLine1?: InputMaybe<Scalars['String']['input']>;\\r\\n streetLine2?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateAdministratorInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n emailAddress?: InputMaybe<Scalars['String']['input']>;\\r\\n firstName?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n lastName?: InputMaybe<Scalars['String']['input']>;\\r\\n password?: InputMaybe<Scalars['String']['input']>;\\r\\n roleIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n};\\r\\n\\r\\nexport type UpdateAssetInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n focalPoint?: InputMaybe<CoordinateInput>;\\r\\n id: Scalars['ID']['input'];\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\\r\\n};\\r\\n\\r\\nexport type UpdateChannelInput = {\\r\\n availableCurrencyCodes?: InputMaybe<Array<CurrencyCode>>;\\r\\n availableLanguageCodes?: InputMaybe<Array<LanguageCode>>;\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n defaultCurrencyCode?: InputMaybe<CurrencyCode>;\\r\\n defaultLanguageCode?: InputMaybe<LanguageCode>;\\r\\n defaultShippingZoneId?: InputMaybe<Scalars['ID']['input']>;\\r\\n defaultTaxZoneId?: InputMaybe<Scalars['ID']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n outOfStockThreshold?: InputMaybe<Scalars['Int']['input']>;\\r\\n pricesIncludeTax?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n sellerId?: InputMaybe<Scalars['ID']['input']>;\\r\\n token?: InputMaybe<Scalars['String']['input']>;\\r\\n trackInventory?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateChannelResult = Channel | LanguageNotAvailableError;\\r\\n\\r\\nexport type UpdateCollectionInput = {\\r\\n assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n featuredAssetId?: InputMaybe<Scalars['ID']['input']>;\\r\\n filters?: InputMaybe<Array<ConfigurableOperationInput>>;\\r\\n id: Scalars['ID']['input'];\\r\\n inheritFilters?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n isPrivate?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n parentId?: InputMaybe<Scalars['ID']['input']>;\\r\\n translations?: InputMaybe<Array<UpdateCollectionTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateCollectionTranslationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id?: InputMaybe<Scalars['ID']['input']>;\\r\\n languageCode: LanguageCode;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n slug?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateCountryInput = {\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<CountryTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateCustomerGroupInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateCustomerInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n emailAddress?: InputMaybe<Scalars['String']['input']>;\\r\\n firstName?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n lastName?: InputMaybe<Scalars['String']['input']>;\\r\\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\\r\\n title?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateCustomerNoteInput = {\\r\\n note: Scalars['String']['input'];\\r\\n noteId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type UpdateCustomerResult = Customer | EmailAddressConflictError;\\r\\n\\r\\nexport type UpdateFacetInput = {\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n isPrivate?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n translations?: InputMaybe<Array<FacetTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateFacetValueInput = {\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<FacetValueTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateGlobalSettingsInput = {\\r\\n availableLanguages?: InputMaybe<Array<LanguageCode>>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n outOfStockThreshold?: InputMaybe<Scalars['Int']['input']>;\\r\\n trackInventory?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateGlobalSettingsResult = ChannelDefaultLanguageError | GlobalSettings;\\r\\n\\r\\nexport type UpdateOrderAddressInput = {\\r\\n city?: InputMaybe<Scalars['String']['input']>;\\r\\n company?: InputMaybe<Scalars['String']['input']>;\\r\\n countryCode?: InputMaybe<Scalars['String']['input']>;\\r\\n fullName?: InputMaybe<Scalars['String']['input']>;\\r\\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\\r\\n postalCode?: InputMaybe<Scalars['String']['input']>;\\r\\n province?: InputMaybe<Scalars['String']['input']>;\\r\\n streetLine1?: InputMaybe<Scalars['String']['input']>;\\r\\n streetLine2?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateOrderInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type UpdateOrderItemsResult =\\r\\n | InsufficientStockError\\r\\n | NegativeQuantityError\\r\\n | Order\\r\\n | OrderLimitError\\r\\n | OrderModificationError;\\r\\n\\r\\nexport type UpdateOrderNoteInput = {\\r\\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n note?: InputMaybe<Scalars['String']['input']>;\\r\\n noteId: Scalars['ID']['input'];\\r\\n};\\r\\n\\r\\nexport type UpdatePaymentMethodInput = {\\r\\n checker?: InputMaybe<ConfigurableOperationInput>;\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n handler?: InputMaybe<ConfigurableOperationInput>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<PaymentMethodTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateProductCustomFieldsInput = {\\r\\n featuredReviewId?: InputMaybe<Scalars['ID']['input']>;\\r\\n reviewCount?: InputMaybe<Scalars['Float']['input']>;\\r\\n reviewRating?: InputMaybe<Scalars['Float']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateProductInput = {\\r\\n assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n customFields?: InputMaybe<UpdateProductCustomFieldsInput>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n facetValueIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n featuredAssetId?: InputMaybe<Scalars['ID']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<ProductTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateProductOptionGroupInput = {\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<ProductOptionGroupTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateProductOptionInput = {\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<ProductOptionGroupTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateProductReviewInput = {\\r\\n body?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n response?: InputMaybe<Scalars['String']['input']>;\\r\\n summary?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateProductVariantInput = {\\r\\n assetIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n facetValueIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n featuredAssetId?: InputMaybe<Scalars['ID']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n optionIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n outOfStockThreshold?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Sets the price for the ProductVariant in the Channel's default currency */\\r\\n price?: InputMaybe<Scalars['Money']['input']>;\\r\\n /** Allows multiple prices to be set for the ProductVariant in different currencies. */\\r\\n prices?: InputMaybe<Array<ProductVariantPriceInput>>;\\r\\n sku?: InputMaybe<Scalars['String']['input']>;\\r\\n stockLevels?: InputMaybe<Array<StockLevelInput>>;\\r\\n stockOnHand?: InputMaybe<Scalars['Int']['input']>;\\r\\n taxCategoryId?: InputMaybe<Scalars['ID']['input']>;\\r\\n trackInventory?: InputMaybe<GlobalFlag>;\\r\\n translations?: InputMaybe<Array<ProductVariantTranslationInput>>;\\r\\n useGlobalOutOfStockThreshold?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdatePromotionInput = {\\r\\n actions?: InputMaybe<Array<ConfigurableOperationInput>>;\\r\\n conditions?: InputMaybe<Array<ConfigurableOperationInput>>;\\r\\n couponCode?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n endsAt?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n perCustomerUsageLimit?: InputMaybe<Scalars['Int']['input']>;\\r\\n startsAt?: InputMaybe<Scalars['DateTime']['input']>;\\r\\n translations?: InputMaybe<Array<PromotionTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdatePromotionResult = MissingConditionsError | Promotion;\\r\\n\\r\\nexport type UpdateProvinceInput = {\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations?: InputMaybe<Array<ProvinceTranslationInput>>;\\r\\n};\\r\\n\\r\\nexport type UpdateRoleInput = {\\r\\n channelIds?: InputMaybe<Array<Scalars['ID']['input']>>;\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n permissions?: InputMaybe<Array<Permission>>;\\r\\n};\\r\\n\\r\\nexport type UpdateSellerInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateShippingMethodInput = {\\r\\n calculator?: InputMaybe<ConfigurableOperationInput>;\\r\\n checker?: InputMaybe<ConfigurableOperationInput>;\\r\\n code?: InputMaybe<Scalars['String']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n fulfillmentHandler?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n translations: Array<ShippingMethodTranslationInput>;\\r\\n};\\r\\n\\r\\nexport type UpdateStockLocationInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n description?: InputMaybe<Scalars['String']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateTagInput = {\\r\\n id: Scalars['ID']['input'];\\r\\n value?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateTaxCategoryInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateTaxRateInput = {\\r\\n categoryId?: InputMaybe<Scalars['ID']['input']>;\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n customerGroupId?: InputMaybe<Scalars['ID']['input']>;\\r\\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n value?: InputMaybe<Scalars['Float']['input']>;\\r\\n zoneId?: InputMaybe<Scalars['ID']['input']>;\\r\\n};\\r\\n\\r\\nexport type UpdateZoneInput = {\\r\\n customFields?: InputMaybe<Scalars['JSON']['input']>;\\r\\n id: Scalars['ID']['input'];\\r\\n name?: InputMaybe<Scalars['String']['input']>;\\r\\n};\\r\\n\\r\\nexport type User = Node & {\\r\\n __typename?: 'User';\\r\\n authenticationMethods: Array<AuthenticationMethod>;\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n identifier: Scalars['String']['output'];\\r\\n lastLogin?: Maybe<Scalars['DateTime']['output']>;\\r\\n roles: Array<Role>;\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n verified: Scalars['Boolean']['output'];\\r\\n};\\r\\n\\r\\nexport type Zone = Node & {\\r\\n __typename?: 'Zone';\\r\\n createdAt: Scalars['DateTime']['output'];\\r\\n customFields?: Maybe<Scalars['JSON']['output']>;\\r\\n id: Scalars['ID']['output'];\\r\\n members: Array<Region>;\\r\\n name: Scalars['String']['output'];\\r\\n updatedAt: Scalars['DateTime']['output'];\\r\\n};\\r\\n\\r\\nexport type ZoneFilterParameter = {\\r\\n createdAt?: InputMaybe<DateOperators>;\\r\\n id?: InputMaybe<IdOperators>;\\r\\n name?: InputMaybe<StringOperators>;\\r\\n updatedAt?: InputMaybe<DateOperators>;\\r\\n};\\r\\n\\r\\nexport type ZoneList = PaginatedList & {\\r\\n __typename?: 'ZoneList';\\r\\n items: Array<Zone>;\\r\\n totalItems: Scalars['Int']['output'];\\r\\n};\\r\\n\\r\\nexport type ZoneListOptions = {\\r\\n /** Allows the results to be filtered */\\r\\n filter?: InputMaybe<ZoneFilterParameter>;\\r\\n /** Specifies whether multiple \\\"filter\\\" arguments should be combines with a logical AND or OR operation. Defaults to AND. */\\r\\n filterOperator?: InputMaybe<LogicalOperator>;\\r\\n /** Skips the first n results, for use in pagination */\\r\\n skip?: InputMaybe<Scalars['Int']['input']>;\\r\\n /** Specifies which properties to sort the results by */\\r\\n sort?: InputMaybe<ZoneSortParameter>;\\r\\n /** Takes n results, for use in pagination */\\r\\n take?: InputMaybe<Scalars['Int']['input']>;\\r\\n};\\r\\n\\r\\nexport type ZoneSortParameter = {\\r\\n createdAt?: InputMaybe<SortOrder>;\\r\\n id?: InputMaybe<SortOrder>;\\r\\n name?: InputMaybe<SortOrder>;\\r\\n updatedAt?: InputMaybe<SortOrder>;\\r\\n};\\r\\n\"],\"names\":[\"AdjustmentType\",\"AssetType\",\"CurrencyCode\",\"DeletionResult\",\"ErrorCode\",\"GlobalFlag\",\"HistoryEntryType\",\"JobState\",\"LanguageCode\",\"LogicalOperator\",\"MetricInterval\",\"MetricType\",\"OrderType\",\"Permission\",\"SortOrder\",\"StockMovementType\"],\"mappings\":\"AAAA,kBAAkB;;;;;;;;;;;IAyFNA,cAAc;eAAdA;;IA6JAC,SAAS;eAATA;;IAytBAC,YAAY;eAAZA;;IAmjBAC,cAAc;eAAdA;;IA8BAC,SAAS;eAATA;;IA8QAC,UAAU;eAAVA;;IAsEAC,gBAAgB;eAAhBA;;IAoMAC,QAAQ;eAARA;;IAkBAC,YAAY;eAAZA;;IAuWAC,eAAe;eAAfA;;IAsBAC,cAAc;eAAdA;;IAwBAC,UAAU;eAAVA;;IA43CAC,SAAS;eAATA;;IAuKAC,UAAU;eAAVA;;IA8gDAC,SAAS;eAATA;;IAoGAC,iBAAiB;eAAjBA;;;AA3hLL,IAAA,AAAKf,wCAAAA;;;;WAAAA;;AA6JL,IAAA,AAAKC,mCAAAA;;;;WAAAA;;AAytBL,IAAA,AAAKC,sCAAAA;IACR,gCAAgC;IAEhC,mBAAmB;IAEnB,iBAAiB;IAEjB,kBAAkB;IAElB,kCAAkC;IAElC,mBAAmB;IAEnB,mBAAmB;IAEnB,sBAAsB;IAEtB,kBAAkB;IAElB,sBAAsB;IAEtB,4CAA4C;IAE5C,oBAAoB;IAEpB,qBAAqB;IAErB,kBAAkB;IAElB,mBAAmB;IAEnB,oBAAoB;IAEpB,qBAAqB;IAErB,kBAAkB;IAElB,cAAc;IAEd,mBAAmB;IAEnB,oBAAoB;IAEpB,uBAAuB;IAEvB,kBAAkB;IAElB,qBAAqB;IAErB,kBAAkB;IAElB,oBAAoB;IAEpB,oBAAoB;IAEpB,gBAAgB;IAEhB,iBAAiB;IAEjB,4BAA4B;IAE5B,mBAAmB;IAEnB,sBAAsB;IAEtB,2BAA2B;IAE3B,eAAe;IAEf,sBAAsB;IAEtB,iBAAiB;IAEjB,qBAAqB;IAErB,iBAAiB;IAEjB,mBAAmB;IAEnB,mBAAmB;IAEnB,mBAAmB;IAEnB,mBAAmB;IAEnB,mBAAmB;IAEnB,SAAS;IAET,gBAAgB;IAEhB,2BAA2B;IAE3B,mBAAmB;IAEnB,kBAAkB;IAElB,kBAAkB;IAElB,oBAAoB;IAEpB,mBAAmB;IAEnB,kBAAkB;IAElB,uBAAuB;IAEvB,oBAAoB;IAEpB,qBAAqB;IAErB,qBAAqB;IAErB,kBAAkB;IAElB,mBAAmB;IAEnB,qBAAqB;IAErB,sBAAsB;IAEtB,uBAAuB;IAEvB,iBAAiB;IAEjB,gBAAgB;IAEhB,iBAAiB;IAEjB,oBAAoB;IAEpB,oBAAoB;IAEpB,oBAAoB;IAEpB,iBAAiB;IAEjB,oBAAoB;IAEpB,oBAAoB;IAEpB,mBAAmB;IAEnB,iBAAiB;IAEjB,qBAAqB;IAErB,qBAAqB;IAErB,kBAAkB;IAElB,0BAA0B;IAE1B,sBAAsB;IAEtB,YAAY;IAEZ,mBAAmB;IAEnB,qBAAqB;IAErB,oBAAoB;IAEpB,iBAAiB;IAEjB,iBAAiB;IAEjB,oBAAoB;IAEpB,iBAAiB;IAEjB,oBAAoB;IAEpB,qBAAqB;IAErB,iBAAiB;IAEjB,qBAAqB;IAErB,oBAAoB;IAEpB,wBAAwB;IAExB,oBAAoB;IAEpB,sBAAsB;IAEtB,oBAAoB;IAEpB,iBAAiB;IAEjB,sBAAsB;IAEtB,uBAAuB;IAEvB,oBAAoB;IAEpB,mBAAmB;IAEnB,uBAAuB;IAEvB,oBAAoB;IAEpB,mBAAmB;IAEnB,uBAAuB;IAEvB,eAAe;IAEf,sBAAsB;IAEtB,iBAAiB;IAEjB,2BAA2B;IAE3B,oBAAoB;IAEpB,oBAAoB;IAEpB,iBAAiB;IAEjB,uBAAuB;IAEvB,iBAAiB;IAEjB,iBAAiB;IAEjB,kBAAkB;IAElB,kBAAkB;IAElB,kBAAkB;IAElB,gBAAgB;IAEhB,2BAA2B;IAE3B,qBAAqB;IAErB,mBAAmB;IAEnB,yBAAyB;IAEzB,qBAAqB;IAErB,uBAAuB;IAEvB,yBAAyB;IAEzB,oBAAoB;IAEpB,sBAAsB;IAEtB,yBAAyB;IAEzB,gCAAgC;IAEhC,qBAAqB;IAErB,iBAAiB;IAEjB,oBAAoB;IAEpB,cAAc;IAEd,uBAAuB;IAEvB,uBAAuB;IAEvB,mBAAmB;IAEnB,mBAAmB;IAEnB,iBAAiB;IAEjB,+BAA+B;IAE/B,sBAAsB;IAEtB,uBAAuB;IAEvB,sBAAsB;IAEtB,qBAAqB;IAErB,yBAAyB;IAEzB,mBAAmB;IAEnB,mBAAmB;IAEnB,gCAAgC;IAEhC,oBAAoB;IAEpB,iBAAiB;IAEjB,gBAAgB;IAEhB,mBAAmB;IAEnB,0BAA0B;IAE1B,oBAAoB;IAEpB,gCAAgC;IAEhC,gBAAgB;IAEhB,uBAAuB;IAEvB,mBAAmB;IAEnB,sBAAsB;WAzTdA;;AAmjBL,IAAA,AAAKC,wCAAAA;IACR,wCAAwC;IAExC,yDAAyD;WAHjDA;;AA8BL,IAAA,AAAKC,mCAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAAA;;AA8QL,IAAA,AAAKC,oCAAAA;;;;WAAAA;;AAsEL,IAAA,AAAKC,0CAAAA;;;;;;;;;;;;;;;;;;;;;;;;;WAAAA;;AAoML,IAAA,AAAKC,kCAAAA;;;;;;;WAAAA;;AAkBL,IAAA,AAAKC,sCAAAA;IACR,cAAc;IAEd,SAAS;IAET,YAAY;IAEZ,WAAW;IAEX,aAAa;IAEb,gBAAgB;IAEhB,eAAe;IAEf,cAAc;IAEd,YAAY;IAEZ,WAAW;IAEX,YAAY;IAEZ,WAAW;IAEX,YAAY;IAEZ,YAAY;IAEZ,YAAY;IAEZ,aAAa;IAEb,UAAU;IAEV,kBAAkB;IAElB,UAAU;IAEV,WAAW;IAEX,WAAW;IAEX,oBAAoB;IAEpB,sBAAsB;IAEtB,aAAa;IAEb,QAAQ;IAER,UAAU;IAEV,YAAY;IAEZ,uBAAuB;IAEvB,qBAAqB;IAErB,oBAAoB;IAEpB,qBAAqB;IAErB,cAAc;IAEd,YAAY;IAEZ,qBAAqB;IAErB,oBAAoB;IAEpB,aAAa;IAEb,WAAW;IAEX,YAAY;IAEZ,SAAS;IAET,UAAU;IAEV,YAAY;IAEZ,YAAY;IAEZ,WAAW;IAEX,oBAAoB;IAEpB,iBAAiB;IAEjB,oBAAoB;IAEpB,UAAU;IAEV,oBAAoB;IAEpB,aAAa;IAEb,aAAa;IAEb,SAAS;IAET,UAAU;IAEV,WAAW;IAEX,UAAU;IAEV,aAAa;IAEb,mBAAmB;IAEnB,cAAc;IAEd,aAAa;IAEb,gBAAgB;IAEhB,eAAe;IAEf,SAAS;IAET,eAAe;IAEf,cAAc;IAEd,YAAY;IAEZ,aAAa;IAEb,aAAa;IAEb,aAAa;IAEb,WAAW;IAEX,WAAW;IAEX,gBAAgB;IAEhB,UAAU;IAEV,YAAY;IAEZ,WAAW;IAEX,aAAa;IAEb,YAAY;IAEZ,YAAY;IAEZ,WAAW;IAEX,UAAU;IAEV,kBAAkB;IAElB,UAAU;IAEV,YAAY;IAEZ,QAAQ;IAER,eAAe;IAEf,iBAAiB;IAEjB,YAAY;IAEZ,aAAa;IAEb,UAAU;IAEV,eAAe;IAEf,cAAc;IAEd,cAAc;IAEd,YAAY;IAEZ,UAAU;IAEV,YAAY;IAEZ,YAAY;IAEZ,qBAAqB;IAErB,kBAAkB;IAElB,WAAW;IAEX,UAAU;IAEV,YAAY;IAEZ,sBAAsB;IAEtB,WAAW;IAEX,UAAU;IAEV,SAAS;IAET,YAAY;IAEZ,YAAY;IAEZ,WAAW;IAEX,WAAW;IAEX,eAAe;IAEf,yBAAyB;IAEzB,wBAAwB;IAExB,YAAY;IAEZ,YAAY;IAEZ,UAAU;IAEV,aAAa;IAEb,cAAc;IAEd,YAAY;IAEZ,gBAAgB;IAEhB,aAAa;IAEb,WAAW;IAEX,kBAAkB;IAElB,UAAU;IAEV,YAAY;IAEZ,WAAW;IAEX,cAAc;IAEd,WAAW;IAEX,UAAU;IAEV,WAAW;IAEX,aAAa;IAEb,YAAY;IAEZ,mBAAmB;IAEnB,cAAc;IAEd,YAAY;IAEZ,YAAY;IAEZ,kBAAkB;IAElB,UAAU;IAEV,WAAW;IAEX,UAAU;IAEV,SAAS;IAET,aAAa;IAEb,YAAY;IAEZ,WAAW;IAEX,YAAY;IAEZ,UAAU;IAEV,WAAW;IAEX,cAAc;IAEd,SAAS;IAET,UAAU;IAEV,eAAe;IAEf,YAAY;IAEZ,UAAU;IAEV,UAAU;IAEV,YAAY;IAEZ,WAAW;IAEX,YAAY;IAEZ,uBAAuB;IAEvB,wBAAwB;IAExB,SAAS;WAzTDA;;AAuWL,IAAA,AAAKC,yCAAAA;;;WAAAA;;AAsBL,IAAA,AAAKC,wCAAAA;;WAAAA;;AAwBL,IAAA,AAAKC,oCAAAA;;;;WAAAA;;AA43CL,IAAA,AAAKC,mCAAAA;;;;WAAAA;;AAuKL,IAAA,AAAKC,oCAAAA;IACR,0DAA0D;IAE1D,8CAA8C;IAE9C,sCAAsC;IAEtC,sEAAsE;IAEtE,wCAAwC;IAExC,2CAA2C;IAE3C,wCAAwC;IAExC,yCAAyC;IAEzC,8CAA8C;IAE9C,sCAAsC;IAEtC,sCAAsC;IAEtC,8CAA8C;IAE9C,wCAAwC;IAExC,0CAA0C;IAE1C,uCAAuC;IAEvC,oIAAoI;IAEpI,+CAA+C;IAE/C,8CAA8C;IAE9C,uCAAuC;IAEvC,oCAAoC;IAEpC,4CAA4C;IAE5C,wCAAwC;IAExC,qCAAqC;IAErC,8CAA8C;IAE9C,sCAAsC;IAEtC,sEAAsE;IAEtE,wCAAwC;IAExC,2CAA2C;IAE3C,wCAAwC;IAExC,yCAAyC;IAEzC,8CAA8C;IAE9C,sCAAsC;IAEtC,sCAAsC;IAEtC,8CAA8C;IAE9C,wCAAwC;IAExC,0CAA0C;IAE1C,uCAAuC;IAEvC,oIAAoI;IAEpI,+CAA+C;IAE/C,8CAA8C;IAE9C,uCAAuC;IAEvC,oCAAoC;IAEpC,4CAA4C;IAE5C,wCAAwC;IAExC,qCAAqC;IAErC,uEAAuE;IAEvE,oEAAoE;IAEpE,4CAA4C;IAE5C,oCAAoC;IAEpC,oEAAoE;IAEpE,sCAAsC;IAEtC,yCAAyC;IAEzC,sCAAsC;IAEtC,uCAAuC;IAEvC,4CAA4C;IAE5C,oCAAoC;IAEpC,oCAAoC;IAEpC,4CAA4C;IAE5C,sCAAsC;IAEtC,wCAAwC;IAExC,qCAAqC;IAErC,kIAAkI;IAElI,6CAA6C;IAE7C,4CAA4C;IAE5C,qCAAqC;IAErC,kCAAkC;IAElC,0CAA0C;IAE1C,sCAAsC;IAEtC,mCAAmC;IAEnC,yDAAyD;IAEzD,8CAA8C;IAE9C,sCAAsC;IAEtC,sEAAsE;IAEtE,wCAAwC;IAExC,2CAA2C;IAE3C,wCAAwC;IAExC,yCAAyC;IAEzC,8CAA8C;IAE9C,sCAAsC;IAEtC,+CAA+C;IAE/C,sCAAsC;IAEtC,8CAA8C;IAE9C,wCAAwC;IAExC,0CAA0C;IAE1C,uCAAuC;IAEvC,oIAAoI;IAEpI,+CAA+C;IAE/C,8CAA8C;IAE9C,uCAAuC;IAEvC,oCAAoC;IAEpC,4CAA4C;IAE5C,wCAAwC;IAExC,qCAAqC;WAzL7BA;;AA8gDL,IAAA,AAAKC,mCAAAA;;;WAAAA;;AAoGL,IAAA,AAAKC,2CAAAA;;;;;;;WAAAA\"}"