@deenruv/dashboard-widgets-plugin 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/LICENSE +23 -0
  2. package/README.md +58 -0
  3. package/dist/plugin-server/constants.d.ts +4 -0
  4. package/dist/plugin-server/constants.js +12 -0
  5. package/dist/plugin-server/controllers/admin-ui-controller.d.ts +4 -0
  6. package/dist/plugin-server/controllers/admin-ui-controller.js +46 -0
  7. package/dist/plugin-server/controllers/refresh-view-controller.d.ts +8 -0
  8. package/dist/plugin-server/controllers/refresh-view-controller.js +41 -0
  9. package/dist/plugin-server/index.d.ts +1 -0
  10. package/dist/plugin-server/index.js +17 -0
  11. package/dist/plugin-server/materialisedViewEntities/order_summary.d.ts +9 -0
  12. package/dist/plugin-server/materialisedViewEntities/order_summary.js +79 -0
  13. package/dist/plugin-server/materialisedViewEntities/orders_summary_with_state.d.ts +10 -0
  14. package/dist/plugin-server/materialisedViewEntities/orders_summary_with_state.js +79 -0
  15. package/dist/plugin-server/materialisedViewEntities/total_products.d.ts +7 -0
  16. package/dist/plugin-server/materialisedViewEntities/total_products.js +62 -0
  17. package/dist/plugin-server/materialisedViewEntities/total_products_with_state.d.ts +9 -0
  18. package/dist/plugin-server/materialisedViewEntities/total_products_with_state.js +62 -0
  19. package/dist/plugin-server/plugin.d.ts +6 -0
  20. package/dist/plugin-server/plugin.js +149 -0
  21. package/dist/plugin-server/raw-sql.d.ts +8 -0
  22. package/dist/plugin-server/raw-sql.js +48 -0
  23. package/dist/plugin-server/resolvers/admin.resolver.d.ts +47 -0
  24. package/dist/plugin-server/resolvers/admin.resolver.js +63 -0
  25. package/dist/plugin-server/services/metrics.service.d.ts +30 -0
  26. package/dist/plugin-server/services/metrics.service.js +272 -0
  27. package/dist/plugin-server/types.d.ts +20 -0
  28. package/dist/plugin-server/types.js +2 -0
  29. package/dist/plugin-server/utils.d.ts +1 -0
  30. package/dist/plugin-server/utils.js +12 -0
  31. package/dist/plugin-server/zeus/const.d.ts +6 -0
  32. package/dist/plugin-server/zeus/const.js +3675 -0
  33. package/dist/plugin-server/zeus/index.d.ts +18709 -0
  34. package/dist/plugin-server/zeus/index.js +1122 -0
  35. package/dist/plugin-server/zeus/typedDocumentNode.d.ts +3 -0
  36. package/dist/plugin-server/zeus/typedDocumentNode.js +16 -0
  37. package/dist/plugin-ui/components/CategoriesChartWidget/dashCaseToSpaces.d.ts +1 -0
  38. package/dist/plugin-ui/components/CategoriesChartWidget/dashCaseToSpaces.js +6 -0
  39. package/dist/plugin-ui/components/CategoriesChartWidget/index.d.ts +2 -0
  40. package/dist/plugin-ui/components/CategoriesChartWidget/index.js +100 -0
  41. package/dist/plugin-ui/components/LatestOrdersWidget/index.d.ts +4 -0
  42. package/dist/plugin-ui/components/LatestOrdersWidget/index.js +96 -0
  43. package/dist/plugin-ui/components/LatestOrdersWidget/paymentMethod.d.ts +6 -0
  44. package/dist/plugin-ui/components/LatestOrdersWidget/paymentMethod.js +7 -0
  45. package/dist/plugin-ui/components/OrdersWidget/CustomTooltip.d.ts +18 -0
  46. package/dist/plugin-ui/components/OrdersWidget/CustomTooltip.js +92 -0
  47. package/dist/plugin-ui/components/OrdersWidget/GroupBySelect.d.ts +8 -0
  48. package/dist/plugin-ui/components/OrdersWidget/GroupBySelect.js +17 -0
  49. package/dist/plugin-ui/components/OrdersWidget/MetricCustomDates.d.ts +9 -0
  50. package/dist/plugin-ui/components/OrdersWidget/MetricCustomDates.js +27 -0
  51. package/dist/plugin-ui/components/OrdersWidget/MetricTypeSelect.d.ts +9 -0
  52. package/dist/plugin-ui/components/OrdersWidget/MetricTypeSelect.js +17 -0
  53. package/dist/plugin-ui/components/OrdersWidget/OrdersChart.d.ts +24 -0
  54. package/dist/plugin-ui/components/OrdersWidget/OrdersChart.js +46 -0
  55. package/dist/plugin-ui/components/OrdersWidget/OrdersSummaryTile.d.ts +13 -0
  56. package/dist/plugin-ui/components/OrdersWidget/OrdersSummaryTile.js +115 -0
  57. package/dist/plugin-ui/components/OrdersWidget/ProductSelector.d.ts +17 -0
  58. package/dist/plugin-ui/components/OrdersWidget/ProductSelector.js +37 -0
  59. package/dist/plugin-ui/components/OrdersWidget/RatioBadge.d.ts +6 -0
  60. package/dist/plugin-ui/components/OrdersWidget/RatioBadge.js +12 -0
  61. package/dist/plugin-ui/components/OrdersWidget/index.d.ts +2 -0
  62. package/dist/plugin-ui/components/OrdersWidget/index.js +229 -0
  63. package/dist/plugin-ui/components/ProductsChartWidget/CustomBarChartTooltip.d.ts +9 -0
  64. package/dist/plugin-ui/components/ProductsChartWidget/CustomBarChartTooltip.js +14 -0
  65. package/dist/plugin-ui/components/ProductsChartWidget/index.d.ts +2 -0
  66. package/dist/plugin-ui/components/ProductsChartWidget/index.js +116 -0
  67. package/dist/plugin-ui/components/index.d.ts +4 -0
  68. package/dist/plugin-ui/components/index.js +4 -0
  69. package/dist/plugin-ui/components/shared/EmptyData.d.ts +6 -0
  70. package/dist/plugin-ui/components/shared/EmptyData.js +8 -0
  71. package/dist/plugin-ui/components/shared/MetricsRangeSelect.d.ts +10 -0
  72. package/dist/plugin-ui/components/shared/MetricsRangeSelect.js +26 -0
  73. package/dist/plugin-ui/components/shared/OrderStatesSelect.d.ts +8 -0
  74. package/dist/plugin-ui/components/shared/OrderStatesSelect.js +28 -0
  75. package/dist/plugin-ui/components/shared/PeriodSelect.d.ts +20 -0
  76. package/dist/plugin-ui/components/shared/PeriodSelect.js +56 -0
  77. package/dist/plugin-ui/components/shared/colors.d.ts +1 -0
  78. package/dist/plugin-ui/components/shared/colors.js +1 -0
  79. package/dist/plugin-ui/components/shared/index.d.ts +3 -0
  80. package/dist/plugin-ui/components/shared/index.js +3 -0
  81. package/dist/plugin-ui/graphql/index.d.ts +2 -0
  82. package/dist/plugin-ui/graphql/index.js +2 -0
  83. package/dist/plugin-ui/graphql/queries.d.ts +425 -0
  84. package/dist/plugin-ui/graphql/queries.js +182 -0
  85. package/dist/plugin-ui/graphql/selectors.d.ts +19 -0
  86. package/dist/plugin-ui/graphql/selectors.js +21 -0
  87. package/dist/plugin-ui/index.d.ts +9 -0
  88. package/dist/plugin-ui/index.js +21 -0
  89. package/dist/plugin-ui/locales/en/index.d.ts +72 -0
  90. package/dist/plugin-ui/locales/en/index.js +2 -0
  91. package/dist/plugin-ui/locales/en/test.json +71 -0
  92. package/dist/plugin-ui/locales/pl/index.d.ts +71 -0
  93. package/dist/plugin-ui/locales/pl/index.js +2 -0
  94. package/dist/plugin-ui/locales/pl/test.json +70 -0
  95. package/dist/plugin-ui/tsconfig.json +18 -0
  96. package/dist/plugin-ui/types.d.ts +64 -0
  97. package/dist/plugin-ui/types.js +14 -0
  98. package/dist/plugin-ui/utils.d.ts +70 -0
  99. package/dist/plugin-ui/utils.js +366 -0
  100. package/dist/plugin-ui/widgets.d.ts +15 -0
  101. package/dist/plugin-ui/widgets.js +36 -0
  102. package/dist/plugin-ui/zeus/const.d.ts +6 -0
  103. package/dist/plugin-ui/zeus/const.js +3672 -0
  104. package/dist/plugin-ui/zeus/index.d.ts +18709 -0
  105. package/dist/plugin-ui/zeus/index.js +1114 -0
  106. package/dist/plugin-ui/zeus/typedDocumentNode.d.ts +3 -0
  107. package/dist/plugin-ui/zeus/typedDocumentNode.js +9 -0
  108. package/package.json +52 -0
@@ -0,0 +1,3672 @@
1
+ /* eslint-disable */
2
+ export const AllTypesProps = {
3
+ Query: {
4
+ administrators: {
5
+ options: "AdministratorListOptions"
6
+ },
7
+ administrator: {},
8
+ assets: {
9
+ options: "AssetListOptions"
10
+ },
11
+ asset: {},
12
+ channels: {
13
+ options: "ChannelListOptions"
14
+ },
15
+ channel: {},
16
+ collections: {
17
+ options: "CollectionListOptions"
18
+ },
19
+ collection: {},
20
+ previewCollectionVariants: {
21
+ input: "PreviewCollectionVariantsInput",
22
+ options: "ProductVariantListOptions"
23
+ },
24
+ countries: {
25
+ options: "CountryListOptions"
26
+ },
27
+ country: {},
28
+ customerGroups: {
29
+ options: "CustomerGroupListOptions"
30
+ },
31
+ customerGroup: {},
32
+ customers: {
33
+ options: "CustomerListOptions"
34
+ },
35
+ customer: {},
36
+ facets: {
37
+ options: "FacetListOptions"
38
+ },
39
+ facet: {},
40
+ facetValues: {
41
+ options: "FacetValueListOptions"
42
+ },
43
+ job: {},
44
+ jobs: {
45
+ options: "JobListOptions"
46
+ },
47
+ jobsById: {},
48
+ jobBufferSize: {},
49
+ order: {},
50
+ orders: {
51
+ options: "OrderListOptions"
52
+ },
53
+ eligibleShippingMethodsForDraftOrder: {},
54
+ paymentMethods: {
55
+ options: "PaymentMethodListOptions"
56
+ },
57
+ paymentMethod: {},
58
+ productOptionGroups: {},
59
+ productOptionGroup: {},
60
+ search: {
61
+ input: "SearchInput"
62
+ },
63
+ products: {
64
+ options: "ProductListOptions"
65
+ },
66
+ product: {},
67
+ productVariants: {
68
+ options: "ProductVariantListOptions"
69
+ },
70
+ productVariant: {},
71
+ promotion: {},
72
+ promotions: {
73
+ options: "PromotionListOptions"
74
+ },
75
+ provinces: {
76
+ options: "ProvinceListOptions"
77
+ },
78
+ province: {},
79
+ roles: {
80
+ options: "RoleListOptions"
81
+ },
82
+ role: {},
83
+ sellers: {
84
+ options: "SellerListOptions"
85
+ },
86
+ seller: {},
87
+ shippingMethods: {
88
+ options: "ShippingMethodListOptions"
89
+ },
90
+ shippingMethod: {},
91
+ testShippingMethod: {
92
+ input: "TestShippingMethodInput"
93
+ },
94
+ testEligibleShippingMethods: {
95
+ input: "TestEligibleShippingMethodsInput"
96
+ },
97
+ stockLocation: {},
98
+ stockLocations: {
99
+ options: "StockLocationListOptions"
100
+ },
101
+ tag: {},
102
+ tags: {
103
+ options: "TagListOptions"
104
+ },
105
+ taxCategories: {
106
+ options: "TaxCategoryListOptions"
107
+ },
108
+ taxCategory: {},
109
+ taxRates: {
110
+ options: "TaxRateListOptions"
111
+ },
112
+ taxRate: {},
113
+ zones: {
114
+ options: "ZoneListOptions"
115
+ },
116
+ zone: {},
117
+ chartMetric: {
118
+ input: "ChartMetricInput"
119
+ },
120
+ orderSummaryMetric: {
121
+ input: "OrderSummaryMetricInput"
122
+ },
123
+ metricSummary: {
124
+ input: "MetricSummaryInput"
125
+ }
126
+ },
127
+ Mutation: {
128
+ createAdministrator: {
129
+ input: "CreateAdministratorInput"
130
+ },
131
+ updateAdministrator: {
132
+ input: "UpdateAdministratorInput"
133
+ },
134
+ updateActiveAdministrator: {
135
+ input: "UpdateActiveAdministratorInput"
136
+ },
137
+ deleteAdministrator: {},
138
+ deleteAdministrators: {},
139
+ assignRoleToAdministrator: {},
140
+ createAssets: {
141
+ input: "CreateAssetInput"
142
+ },
143
+ updateAsset: {
144
+ input: "UpdateAssetInput"
145
+ },
146
+ deleteAsset: {
147
+ input: "DeleteAssetInput"
148
+ },
149
+ deleteAssets: {
150
+ input: "DeleteAssetsInput"
151
+ },
152
+ assignAssetsToChannel: {
153
+ input: "AssignAssetsToChannelInput"
154
+ },
155
+ login: {},
156
+ authenticate: {
157
+ input: "AuthenticationInput"
158
+ },
159
+ createChannel: {
160
+ input: "CreateChannelInput"
161
+ },
162
+ updateChannel: {
163
+ input: "UpdateChannelInput"
164
+ },
165
+ deleteChannel: {},
166
+ deleteChannels: {},
167
+ createCollection: {
168
+ input: "CreateCollectionInput"
169
+ },
170
+ updateCollection: {
171
+ input: "UpdateCollectionInput"
172
+ },
173
+ deleteCollection: {},
174
+ deleteCollections: {},
175
+ moveCollection: {
176
+ input: "MoveCollectionInput"
177
+ },
178
+ assignCollectionsToChannel: {
179
+ input: "AssignCollectionsToChannelInput"
180
+ },
181
+ removeCollectionsFromChannel: {
182
+ input: "RemoveCollectionsFromChannelInput"
183
+ },
184
+ createCountry: {
185
+ input: "CreateCountryInput"
186
+ },
187
+ updateCountry: {
188
+ input: "UpdateCountryInput"
189
+ },
190
+ deleteCountry: {},
191
+ deleteCountries: {},
192
+ createCustomerGroup: {
193
+ input: "CreateCustomerGroupInput"
194
+ },
195
+ updateCustomerGroup: {
196
+ input: "UpdateCustomerGroupInput"
197
+ },
198
+ deleteCustomerGroup: {},
199
+ deleteCustomerGroups: {},
200
+ addCustomersToGroup: {},
201
+ removeCustomersFromGroup: {},
202
+ createCustomer: {
203
+ input: "CreateCustomerInput"
204
+ },
205
+ updateCustomer: {
206
+ input: "UpdateCustomerInput"
207
+ },
208
+ deleteCustomer: {},
209
+ deleteCustomers: {},
210
+ createCustomerAddress: {
211
+ input: "CreateAddressInput"
212
+ },
213
+ updateCustomerAddress: {
214
+ input: "UpdateAddressInput"
215
+ },
216
+ deleteCustomerAddress: {},
217
+ addNoteToCustomer: {
218
+ input: "AddNoteToCustomerInput"
219
+ },
220
+ updateCustomerNote: {
221
+ input: "UpdateCustomerNoteInput"
222
+ },
223
+ deleteCustomerNote: {},
224
+ duplicateEntity: {
225
+ input: "DuplicateEntityInput"
226
+ },
227
+ createFacet: {
228
+ input: "CreateFacetInput"
229
+ },
230
+ updateFacet: {
231
+ input: "UpdateFacetInput"
232
+ },
233
+ deleteFacet: {},
234
+ deleteFacets: {},
235
+ createFacetValues: {
236
+ input: "CreateFacetValueInput"
237
+ },
238
+ updateFacetValues: {
239
+ input: "UpdateFacetValueInput"
240
+ },
241
+ deleteFacetValues: {},
242
+ assignFacetsToChannel: {
243
+ input: "AssignFacetsToChannelInput"
244
+ },
245
+ removeFacetsFromChannel: {
246
+ input: "RemoveFacetsFromChannelInput"
247
+ },
248
+ updateGlobalSettings: {
249
+ input: "UpdateGlobalSettingsInput"
250
+ },
251
+ importProducts: {
252
+ csvFile: "Upload"
253
+ },
254
+ removeSettledJobs: {
255
+ olderThan: "DateTime"
256
+ },
257
+ cancelJob: {},
258
+ flushBufferedJobs: {},
259
+ settlePayment: {},
260
+ cancelPayment: {},
261
+ addFulfillmentToOrder: {
262
+ input: "FulfillOrderInput"
263
+ },
264
+ cancelOrder: {
265
+ input: "CancelOrderInput"
266
+ },
267
+ refundOrder: {
268
+ input: "RefundOrderInput"
269
+ },
270
+ settleRefund: {
271
+ input: "SettleRefundInput"
272
+ },
273
+ addNoteToOrder: {
274
+ input: "AddNoteToOrderInput"
275
+ },
276
+ updateOrderNote: {
277
+ input: "UpdateOrderNoteInput"
278
+ },
279
+ deleteOrderNote: {},
280
+ transitionOrderToState: {},
281
+ transitionFulfillmentToState: {},
282
+ transitionPaymentToState: {},
283
+ setOrderCustomFields: {
284
+ input: "UpdateOrderInput"
285
+ },
286
+ setOrderCustomer: {
287
+ input: "SetOrderCustomerInput"
288
+ },
289
+ modifyOrder: {
290
+ input: "ModifyOrderInput"
291
+ },
292
+ addManualPaymentToOrder: {
293
+ input: "ManualPaymentInput"
294
+ },
295
+ deleteDraftOrder: {},
296
+ addItemToDraftOrder: {
297
+ input: "AddItemToDraftOrderInput"
298
+ },
299
+ adjustDraftOrderLine: {
300
+ input: "AdjustDraftOrderLineInput"
301
+ },
302
+ removeDraftOrderLine: {},
303
+ setCustomerForDraftOrder: {
304
+ input: "CreateCustomerInput"
305
+ },
306
+ setDraftOrderShippingAddress: {
307
+ input: "CreateAddressInput"
308
+ },
309
+ setDraftOrderBillingAddress: {
310
+ input: "CreateAddressInput"
311
+ },
312
+ setDraftOrderCustomFields: {
313
+ input: "UpdateOrderInput"
314
+ },
315
+ applyCouponCodeToDraftOrder: {},
316
+ toggleExcludePromotionInOrder: {},
317
+ removeCouponCodeFromDraftOrder: {},
318
+ setDraftOrderShippingMethod: {},
319
+ createPaymentMethod: {
320
+ input: "CreatePaymentMethodInput"
321
+ },
322
+ updatePaymentMethod: {
323
+ input: "UpdatePaymentMethodInput"
324
+ },
325
+ deletePaymentMethod: {},
326
+ deletePaymentMethods: {},
327
+ assignPaymentMethodsToChannel: {
328
+ input: "AssignPaymentMethodsToChannelInput"
329
+ },
330
+ removePaymentMethodsFromChannel: {
331
+ input: "RemovePaymentMethodsFromChannelInput"
332
+ },
333
+ createProductOptionGroup: {
334
+ input: "CreateProductOptionGroupInput"
335
+ },
336
+ updateProductOptionGroup: {
337
+ input: "UpdateProductOptionGroupInput"
338
+ },
339
+ createProductOption: {
340
+ input: "CreateProductOptionInput"
341
+ },
342
+ updateProductOption: {
343
+ input: "UpdateProductOptionInput"
344
+ },
345
+ deleteProductOption: {},
346
+ createProduct: {
347
+ input: "CreateProductInput"
348
+ },
349
+ updateProduct: {
350
+ input: "UpdateProductInput"
351
+ },
352
+ updateProducts: {
353
+ input: "UpdateProductInput"
354
+ },
355
+ deleteProduct: {},
356
+ deleteProducts: {},
357
+ addOptionGroupToProduct: {},
358
+ removeOptionGroupFromProduct: {},
359
+ createProductVariants: {
360
+ input: "CreateProductVariantInput"
361
+ },
362
+ updateProductVariants: {
363
+ input: "UpdateProductVariantInput"
364
+ },
365
+ deleteProductVariant: {},
366
+ deleteProductVariants: {},
367
+ assignProductsToChannel: {
368
+ input: "AssignProductsToChannelInput"
369
+ },
370
+ removeProductsFromChannel: {
371
+ input: "RemoveProductsFromChannelInput"
372
+ },
373
+ assignProductVariantsToChannel: {
374
+ input: "AssignProductVariantsToChannelInput"
375
+ },
376
+ removeProductVariantsFromChannel: {
377
+ input: "RemoveProductVariantsFromChannelInput"
378
+ },
379
+ createPromotion: {
380
+ input: "CreatePromotionInput"
381
+ },
382
+ updatePromotion: {
383
+ input: "UpdatePromotionInput"
384
+ },
385
+ deletePromotion: {},
386
+ deletePromotions: {},
387
+ assignPromotionsToChannel: {
388
+ input: "AssignPromotionsToChannelInput"
389
+ },
390
+ removePromotionsFromChannel: {
391
+ input: "RemovePromotionsFromChannelInput"
392
+ },
393
+ createProvince: {
394
+ input: "CreateProvinceInput"
395
+ },
396
+ updateProvince: {
397
+ input: "UpdateProvinceInput"
398
+ },
399
+ deleteProvince: {},
400
+ createRole: {
401
+ input: "CreateRoleInput"
402
+ },
403
+ updateRole: {
404
+ input: "UpdateRoleInput"
405
+ },
406
+ deleteRole: {},
407
+ deleteRoles: {},
408
+ createSeller: {
409
+ input: "CreateSellerInput"
410
+ },
411
+ updateSeller: {
412
+ input: "UpdateSellerInput"
413
+ },
414
+ deleteSeller: {},
415
+ deleteSellers: {},
416
+ createShippingMethod: {
417
+ input: "CreateShippingMethodInput"
418
+ },
419
+ updateShippingMethod: {
420
+ input: "UpdateShippingMethodInput"
421
+ },
422
+ deleteShippingMethod: {},
423
+ deleteShippingMethods: {},
424
+ assignShippingMethodsToChannel: {
425
+ input: "AssignShippingMethodsToChannelInput"
426
+ },
427
+ removeShippingMethodsFromChannel: {
428
+ input: "RemoveShippingMethodsFromChannelInput"
429
+ },
430
+ createStockLocation: {
431
+ input: "CreateStockLocationInput"
432
+ },
433
+ updateStockLocation: {
434
+ input: "UpdateStockLocationInput"
435
+ },
436
+ deleteStockLocation: {
437
+ input: "DeleteStockLocationInput"
438
+ },
439
+ deleteStockLocations: {
440
+ input: "DeleteStockLocationInput"
441
+ },
442
+ assignStockLocationsToChannel: {
443
+ input: "AssignStockLocationsToChannelInput"
444
+ },
445
+ removeStockLocationsFromChannel: {
446
+ input: "RemoveStockLocationsFromChannelInput"
447
+ },
448
+ createTag: {
449
+ input: "CreateTagInput"
450
+ },
451
+ updateTag: {
452
+ input: "UpdateTagInput"
453
+ },
454
+ deleteTag: {},
455
+ createTaxCategory: {
456
+ input: "CreateTaxCategoryInput"
457
+ },
458
+ updateTaxCategory: {
459
+ input: "UpdateTaxCategoryInput"
460
+ },
461
+ deleteTaxCategory: {},
462
+ deleteTaxCategories: {},
463
+ createTaxRate: {
464
+ input: "CreateTaxRateInput"
465
+ },
466
+ updateTaxRate: {
467
+ input: "UpdateTaxRateInput"
468
+ },
469
+ deleteTaxRate: {},
470
+ deleteTaxRates: {},
471
+ createZone: {
472
+ input: "CreateZoneInput"
473
+ },
474
+ updateZone: {
475
+ input: "UpdateZoneInput"
476
+ },
477
+ deleteZone: {},
478
+ deleteZones: {},
479
+ addMembersToZone: {},
480
+ removeMembersFromZone: {}
481
+ },
482
+ AdministratorListOptions: {
483
+ sort: "AdministratorSortParameter",
484
+ filter: "AdministratorFilterParameter",
485
+ filterOperator: "LogicalOperator"
486
+ },
487
+ CreateAdministratorInput: {
488
+ customFields: "JSON"
489
+ },
490
+ UpdateAdministratorInput: {
491
+ customFields: "JSON"
492
+ },
493
+ UpdateActiveAdministratorInput: {
494
+ customFields: "JSON"
495
+ },
496
+ AssetListOptions: {
497
+ tagsOperator: "LogicalOperator",
498
+ sort: "AssetSortParameter",
499
+ filter: "AssetFilterParameter",
500
+ filterOperator: "LogicalOperator"
501
+ },
502
+ CreateAssetInput: {
503
+ file: "Upload",
504
+ customFields: "JSON"
505
+ },
506
+ CoordinateInput: {},
507
+ DeleteAssetInput: {},
508
+ DeleteAssetsInput: {},
509
+ UpdateAssetInput: {
510
+ focalPoint: "CoordinateInput",
511
+ customFields: "JSON"
512
+ },
513
+ AssignAssetsToChannelInput: {},
514
+ AuthenticationInput: {
515
+ native: "NativeAuthInput"
516
+ },
517
+ ChannelListOptions: {
518
+ sort: "ChannelSortParameter",
519
+ filter: "ChannelFilterParameter",
520
+ filterOperator: "LogicalOperator"
521
+ },
522
+ CreateChannelInput: {
523
+ defaultLanguageCode: "LanguageCode",
524
+ availableLanguageCodes: "LanguageCode",
525
+ defaultCurrencyCode: "CurrencyCode",
526
+ availableCurrencyCodes: "CurrencyCode",
527
+ customFields: "JSON"
528
+ },
529
+ UpdateChannelInput: {
530
+ defaultLanguageCode: "LanguageCode",
531
+ availableLanguageCodes: "LanguageCode",
532
+ defaultCurrencyCode: "CurrencyCode",
533
+ availableCurrencyCodes: "CurrencyCode",
534
+ customFields: "JSON"
535
+ },
536
+ Collection: {
537
+ productVariants: {
538
+ options: "ProductVariantListOptions"
539
+ }
540
+ },
541
+ CollectionListOptions: {
542
+ sort: "CollectionSortParameter",
543
+ filter: "CollectionFilterParameter",
544
+ filterOperator: "LogicalOperator"
545
+ },
546
+ MoveCollectionInput: {},
547
+ CreateCollectionTranslationInput: {
548
+ languageCode: "LanguageCode",
549
+ customFields: "JSON"
550
+ },
551
+ UpdateCollectionTranslationInput: {
552
+ languageCode: "LanguageCode",
553
+ customFields: "JSON"
554
+ },
555
+ CreateCollectionInput: {
556
+ filters: "ConfigurableOperationInput",
557
+ translations: "CreateCollectionTranslationInput",
558
+ customFields: "JSON"
559
+ },
560
+ PreviewCollectionVariantsInput: {
561
+ filters: "ConfigurableOperationInput"
562
+ },
563
+ UpdateCollectionInput: {
564
+ filters: "ConfigurableOperationInput",
565
+ translations: "UpdateCollectionTranslationInput",
566
+ customFields: "JSON"
567
+ },
568
+ AssignCollectionsToChannelInput: {},
569
+ RemoveCollectionsFromChannelInput: {},
570
+ CountryTranslationInput: {
571
+ languageCode: "LanguageCode",
572
+ customFields: "JSON"
573
+ },
574
+ CreateCountryInput: {
575
+ translations: "CountryTranslationInput",
576
+ customFields: "JSON"
577
+ },
578
+ UpdateCountryInput: {
579
+ translations: "CountryTranslationInput",
580
+ customFields: "JSON"
581
+ },
582
+ CountryListOptions: {
583
+ sort: "CountrySortParameter",
584
+ filter: "CountryFilterParameter",
585
+ filterOperator: "LogicalOperator"
586
+ },
587
+ Customer: {
588
+ history: {
589
+ options: "HistoryEntryListOptions"
590
+ },
591
+ orders: {
592
+ options: "OrderListOptions"
593
+ }
594
+ },
595
+ CustomerGroupListOptions: {
596
+ sort: "CustomerGroupSortParameter",
597
+ filter: "CustomerGroupFilterParameter",
598
+ filterOperator: "LogicalOperator"
599
+ },
600
+ CreateCustomerGroupInput: {
601
+ customFields: "JSON"
602
+ },
603
+ UpdateCustomerGroupInput: {
604
+ customFields: "JSON"
605
+ },
606
+ UpdateCustomerInput: {
607
+ customFields: "JSON"
608
+ },
609
+ CustomerFilterParameter: {
610
+ postalCode: "StringOperators",
611
+ id: "IDOperators",
612
+ createdAt: "DateOperators",
613
+ updatedAt: "DateOperators",
614
+ title: "StringOperators",
615
+ firstName: "StringOperators",
616
+ lastName: "StringOperators",
617
+ phoneNumber: "StringOperators",
618
+ emailAddress: "StringOperators",
619
+ _and: "CustomerFilterParameter",
620
+ _or: "CustomerFilterParameter"
621
+ },
622
+ CustomerListOptions: {
623
+ sort: "CustomerSortParameter",
624
+ filter: "CustomerFilterParameter",
625
+ filterOperator: "LogicalOperator"
626
+ },
627
+ AddNoteToCustomerInput: {},
628
+ UpdateCustomerNoteInput: {},
629
+ DuplicateEntityInput: {
630
+ duplicatorInput: "ConfigurableOperationInput"
631
+ },
632
+ Facet: {
633
+ valueList: {
634
+ options: "FacetValueListOptions"
635
+ }
636
+ },
637
+ FacetListOptions: {
638
+ sort: "FacetSortParameter",
639
+ filter: "FacetFilterParameter",
640
+ filterOperator: "LogicalOperator"
641
+ },
642
+ FacetTranslationInput: {
643
+ languageCode: "LanguageCode",
644
+ customFields: "JSON"
645
+ },
646
+ CreateFacetInput: {
647
+ translations: "FacetTranslationInput",
648
+ values: "CreateFacetValueWithFacetInput",
649
+ customFields: "JSON"
650
+ },
651
+ UpdateFacetInput: {
652
+ translations: "FacetTranslationInput",
653
+ customFields: "JSON"
654
+ },
655
+ FacetValueTranslationInput: {
656
+ languageCode: "LanguageCode",
657
+ customFields: "JSON"
658
+ },
659
+ CreateFacetValueWithFacetInput: {
660
+ translations: "FacetValueTranslationInput"
661
+ },
662
+ CreateFacetValueInput: {
663
+ translations: "FacetValueTranslationInput",
664
+ customFields: "JSON"
665
+ },
666
+ UpdateFacetValueInput: {
667
+ translations: "FacetValueTranslationInput",
668
+ customFields: "JSON"
669
+ },
670
+ AssignFacetsToChannelInput: {},
671
+ RemoveFacetsFromChannelInput: {},
672
+ UpdateGlobalSettingsInput: {
673
+ availableLanguages: "LanguageCode",
674
+ customFields: "JSON"
675
+ },
676
+ JobState: "enum",
677
+ JobListOptions: {
678
+ sort: "JobSortParameter",
679
+ filter: "JobFilterParameter",
680
+ filterOperator: "LogicalOperator"
681
+ },
682
+ Order: {
683
+ history: {
684
+ options: "HistoryEntryListOptions"
685
+ }
686
+ },
687
+ OrderFilterParameter: {
688
+ customerLastName: "StringOperators",
689
+ transactionId: "StringOperators",
690
+ aggregateOrderId: "IDOperators",
691
+ id: "IDOperators",
692
+ createdAt: "DateOperators",
693
+ updatedAt: "DateOperators",
694
+ type: "StringOperators",
695
+ orderPlacedAt: "DateOperators",
696
+ code: "StringOperators",
697
+ state: "StringOperators",
698
+ active: "BooleanOperators",
699
+ totalQuantity: "NumberOperators",
700
+ subTotal: "NumberOperators",
701
+ subTotalWithTax: "NumberOperators",
702
+ currencyCode: "StringOperators",
703
+ shipping: "NumberOperators",
704
+ shippingWithTax: "NumberOperators",
705
+ total: "NumberOperators",
706
+ totalWithTax: "NumberOperators",
707
+ _and: "OrderFilterParameter",
708
+ _or: "OrderFilterParameter"
709
+ },
710
+ OrderSortParameter: {
711
+ customerLastName: "SortOrder",
712
+ transactionId: "SortOrder",
713
+ aggregateOrderId: "SortOrder",
714
+ id: "SortOrder",
715
+ createdAt: "SortOrder",
716
+ updatedAt: "SortOrder",
717
+ orderPlacedAt: "SortOrder",
718
+ code: "SortOrder",
719
+ state: "SortOrder",
720
+ totalQuantity: "SortOrder",
721
+ subTotal: "SortOrder",
722
+ subTotalWithTax: "SortOrder",
723
+ shipping: "SortOrder",
724
+ shippingWithTax: "SortOrder",
725
+ total: "SortOrder",
726
+ totalWithTax: "SortOrder"
727
+ },
728
+ OrderListOptions: {
729
+ sort: "OrderSortParameter",
730
+ filter: "OrderFilterParameter",
731
+ filterOperator: "LogicalOperator"
732
+ },
733
+ SetOrderCustomerInput: {},
734
+ UpdateOrderInput: {
735
+ customFields: "JSON"
736
+ },
737
+ FulfillOrderInput: {
738
+ lines: "OrderLineInput",
739
+ handler: "ConfigurableOperationInput"
740
+ },
741
+ CancelOrderInput: {
742
+ lines: "OrderLineInput"
743
+ },
744
+ RefundOrderInput: {
745
+ lines: "OrderLineInput",
746
+ shipping: "Money",
747
+ adjustment: "Money",
748
+ amount: "Money"
749
+ },
750
+ OrderLineInput: {},
751
+ SettleRefundInput: {},
752
+ AddNoteToOrderInput: {},
753
+ UpdateOrderNoteInput: {},
754
+ AdministratorPaymentInput: {
755
+ metadata: "JSON"
756
+ },
757
+ AdministratorRefundInput: {
758
+ amount: "Money"
759
+ },
760
+ ModifyOrderOptions: {},
761
+ UpdateOrderAddressInput: {},
762
+ ModifyOrderInput: {
763
+ addItems: "AddItemInput",
764
+ adjustOrderLines: "OrderLineInput",
765
+ surcharges: "SurchargeInput",
766
+ updateShippingAddress: "UpdateOrderAddressInput",
767
+ updateBillingAddress: "UpdateOrderAddressInput",
768
+ refund: "AdministratorRefundInput",
769
+ refunds: "AdministratorRefundInput",
770
+ options: "ModifyOrderOptions"
771
+ },
772
+ AddItemInput: {},
773
+ SurchargeInput: {
774
+ price: "Money"
775
+ },
776
+ ManualPaymentInput: {
777
+ metadata: "JSON"
778
+ },
779
+ AddItemToDraftOrderInput: {},
780
+ AdjustDraftOrderLineInput: {},
781
+ PaymentMethodListOptions: {
782
+ sort: "PaymentMethodSortParameter",
783
+ filter: "PaymentMethodFilterParameter",
784
+ filterOperator: "LogicalOperator"
785
+ },
786
+ PaymentMethodTranslationInput: {
787
+ languageCode: "LanguageCode",
788
+ customFields: "JSON"
789
+ },
790
+ CreatePaymentMethodInput: {
791
+ checker: "ConfigurableOperationInput",
792
+ handler: "ConfigurableOperationInput",
793
+ translations: "PaymentMethodTranslationInput",
794
+ customFields: "JSON"
795
+ },
796
+ UpdatePaymentMethodInput: {
797
+ checker: "ConfigurableOperationInput",
798
+ handler: "ConfigurableOperationInput",
799
+ translations: "PaymentMethodTranslationInput",
800
+ customFields: "JSON"
801
+ },
802
+ AssignPaymentMethodsToChannelInput: {},
803
+ RemovePaymentMethodsFromChannelInput: {},
804
+ Product: {
805
+ variantList: {
806
+ options: "ProductVariantListOptions"
807
+ }
808
+ },
809
+ ProductVariant: {
810
+ stockMovements: {
811
+ options: "StockMovementListOptions"
812
+ }
813
+ },
814
+ ProductOptionGroupTranslationInput: {
815
+ languageCode: "LanguageCode",
816
+ customFields: "JSON"
817
+ },
818
+ CreateProductOptionGroupInput: {
819
+ translations: "ProductOptionGroupTranslationInput",
820
+ options: "CreateGroupOptionInput",
821
+ customFields: "JSON"
822
+ },
823
+ UpdateProductOptionGroupInput: {
824
+ translations: "ProductOptionGroupTranslationInput",
825
+ customFields: "JSON"
826
+ },
827
+ ProductOptionTranslationInput: {
828
+ languageCode: "LanguageCode",
829
+ customFields: "JSON"
830
+ },
831
+ CreateGroupOptionInput: {
832
+ translations: "ProductOptionGroupTranslationInput"
833
+ },
834
+ CreateProductOptionInput: {
835
+ translations: "ProductOptionGroupTranslationInput",
836
+ customFields: "JSON"
837
+ },
838
+ UpdateProductOptionInput: {
839
+ translations: "ProductOptionGroupTranslationInput",
840
+ customFields: "JSON"
841
+ },
842
+ StockMovementListOptions: {
843
+ type: "StockMovementType"
844
+ },
845
+ ProductListOptions: {
846
+ sort: "ProductSortParameter",
847
+ filter: "ProductFilterParameter",
848
+ filterOperator: "LogicalOperator"
849
+ },
850
+ ProductFilterParameter: {
851
+ facetValueId: "IDOperators",
852
+ sku: "StringOperators",
853
+ id: "IDOperators",
854
+ createdAt: "DateOperators",
855
+ updatedAt: "DateOperators",
856
+ languageCode: "StringOperators",
857
+ name: "StringOperators",
858
+ slug: "StringOperators",
859
+ description: "StringOperators",
860
+ enabled: "BooleanOperators",
861
+ _and: "ProductFilterParameter",
862
+ _or: "ProductFilterParameter"
863
+ },
864
+ ProductVariantListOptions: {
865
+ sort: "ProductVariantSortParameter",
866
+ filter: "ProductVariantFilterParameter",
867
+ filterOperator: "LogicalOperator"
868
+ },
869
+ ProductVariantFilterParameter: {
870
+ facetValueId: "IDOperators",
871
+ enabled: "BooleanOperators",
872
+ trackInventory: "StringOperators",
873
+ stockOnHand: "NumberOperators",
874
+ stockAllocated: "NumberOperators",
875
+ outOfStockThreshold: "NumberOperators",
876
+ useGlobalOutOfStockThreshold: "BooleanOperators",
877
+ id: "IDOperators",
878
+ productId: "IDOperators",
879
+ createdAt: "DateOperators",
880
+ updatedAt: "DateOperators",
881
+ languageCode: "StringOperators",
882
+ sku: "StringOperators",
883
+ name: "StringOperators",
884
+ price: "NumberOperators",
885
+ currencyCode: "StringOperators",
886
+ priceWithTax: "NumberOperators",
887
+ stockLevel: "StringOperators",
888
+ _and: "ProductVariantFilterParameter",
889
+ _or: "ProductVariantFilterParameter"
890
+ },
891
+ ProductTranslationInput: {
892
+ languageCode: "LanguageCode",
893
+ customFields: "JSON"
894
+ },
895
+ CreateProductInput: {
896
+ translations: "ProductTranslationInput",
897
+ customFields: "JSON"
898
+ },
899
+ UpdateProductInput: {
900
+ translations: "ProductTranslationInput",
901
+ customFields: "JSON"
902
+ },
903
+ ProductVariantTranslationInput: {
904
+ languageCode: "LanguageCode",
905
+ customFields: "JSON"
906
+ },
907
+ CreateProductVariantOptionInput: {
908
+ translations: "ProductOptionTranslationInput"
909
+ },
910
+ StockLevelInput: {},
911
+ ProductVariantPriceInput: {
912
+ currencyCode: "CurrencyCode",
913
+ price: "Money"
914
+ },
915
+ CreateProductVariantInput: {
916
+ translations: "ProductVariantTranslationInput",
917
+ price: "Money",
918
+ stockLevels: "StockLevelInput",
919
+ trackInventory: "GlobalFlag",
920
+ customFields: "JSON"
921
+ },
922
+ UpdateProductVariantInput: {
923
+ translations: "ProductVariantTranslationInput",
924
+ price: "Money",
925
+ prices: "ProductVariantPriceInput",
926
+ stockLevels: "StockLevelInput",
927
+ trackInventory: "GlobalFlag",
928
+ customFields: "JSON"
929
+ },
930
+ AssignProductsToChannelInput: {},
931
+ RemoveProductsFromChannelInput: {},
932
+ AssignProductVariantsToChannelInput: {},
933
+ RemoveProductVariantsFromChannelInput: {},
934
+ PromotionListOptions: {
935
+ sort: "PromotionSortParameter",
936
+ filter: "PromotionFilterParameter",
937
+ filterOperator: "LogicalOperator"
938
+ },
939
+ PromotionTranslationInput: {
940
+ languageCode: "LanguageCode",
941
+ customFields: "JSON"
942
+ },
943
+ CreatePromotionInput: {
944
+ startsAt: "DateTime",
945
+ endsAt: "DateTime",
946
+ conditions: "ConfigurableOperationInput",
947
+ actions: "ConfigurableOperationInput",
948
+ translations: "PromotionTranslationInput",
949
+ customFields: "JSON"
950
+ },
951
+ UpdatePromotionInput: {
952
+ startsAt: "DateTime",
953
+ endsAt: "DateTime",
954
+ conditions: "ConfigurableOperationInput",
955
+ actions: "ConfigurableOperationInput",
956
+ translations: "PromotionTranslationInput",
957
+ customFields: "JSON"
958
+ },
959
+ AssignPromotionsToChannelInput: {},
960
+ RemovePromotionsFromChannelInput: {},
961
+ ProvinceTranslationInput: {
962
+ languageCode: "LanguageCode",
963
+ customFields: "JSON"
964
+ },
965
+ CreateProvinceInput: {
966
+ translations: "ProvinceTranslationInput",
967
+ customFields: "JSON"
968
+ },
969
+ UpdateProvinceInput: {
970
+ translations: "ProvinceTranslationInput",
971
+ customFields: "JSON"
972
+ },
973
+ ProvinceListOptions: {
974
+ sort: "ProvinceSortParameter",
975
+ filter: "ProvinceFilterParameter",
976
+ filterOperator: "LogicalOperator"
977
+ },
978
+ RoleListOptions: {
979
+ sort: "RoleSortParameter",
980
+ filter: "RoleFilterParameter",
981
+ filterOperator: "LogicalOperator"
982
+ },
983
+ CreateRoleInput: {
984
+ permissions: "Permission"
985
+ },
986
+ UpdateRoleInput: {
987
+ permissions: "Permission"
988
+ },
989
+ SellerListOptions: {
990
+ sort: "SellerSortParameter",
991
+ filter: "SellerFilterParameter",
992
+ filterOperator: "LogicalOperator"
993
+ },
994
+ CreateSellerInput: {
995
+ customFields: "JSON"
996
+ },
997
+ UpdateSellerInput: {
998
+ customFields: "JSON"
999
+ },
1000
+ ShippingMethodListOptions: {
1001
+ sort: "ShippingMethodSortParameter",
1002
+ filter: "ShippingMethodFilterParameter",
1003
+ filterOperator: "LogicalOperator"
1004
+ },
1005
+ ShippingMethodTranslationInput: {
1006
+ languageCode: "LanguageCode",
1007
+ customFields: "JSON"
1008
+ },
1009
+ CreateShippingMethodInput: {
1010
+ checker: "ConfigurableOperationInput",
1011
+ calculator: "ConfigurableOperationInput",
1012
+ translations: "ShippingMethodTranslationInput",
1013
+ customFields: "JSON"
1014
+ },
1015
+ UpdateShippingMethodInput: {
1016
+ checker: "ConfigurableOperationInput",
1017
+ calculator: "ConfigurableOperationInput",
1018
+ translations: "ShippingMethodTranslationInput",
1019
+ customFields: "JSON"
1020
+ },
1021
+ TestShippingMethodInput: {
1022
+ checker: "ConfigurableOperationInput",
1023
+ calculator: "ConfigurableOperationInput",
1024
+ shippingAddress: "CreateAddressInput",
1025
+ lines: "TestShippingMethodOrderLineInput"
1026
+ },
1027
+ TestEligibleShippingMethodsInput: {
1028
+ shippingAddress: "CreateAddressInput",
1029
+ lines: "TestShippingMethodOrderLineInput"
1030
+ },
1031
+ TestShippingMethodOrderLineInput: {},
1032
+ AssignShippingMethodsToChannelInput: {},
1033
+ RemoveShippingMethodsFromChannelInput: {},
1034
+ StockLocationListOptions: {
1035
+ sort: "StockLocationSortParameter",
1036
+ filter: "StockLocationFilterParameter",
1037
+ filterOperator: "LogicalOperator"
1038
+ },
1039
+ CreateStockLocationInput: {
1040
+ customFields: "JSON"
1041
+ },
1042
+ UpdateStockLocationInput: {
1043
+ customFields: "JSON"
1044
+ },
1045
+ DeleteStockLocationInput: {},
1046
+ AssignStockLocationsToChannelInput: {},
1047
+ RemoveStockLocationsFromChannelInput: {},
1048
+ StockMovementType: "enum",
1049
+ TagListOptions: {
1050
+ sort: "TagSortParameter",
1051
+ filter: "TagFilterParameter",
1052
+ filterOperator: "LogicalOperator"
1053
+ },
1054
+ CreateTagInput: {},
1055
+ UpdateTagInput: {},
1056
+ TaxCategoryListOptions: {
1057
+ sort: "TaxCategorySortParameter",
1058
+ filter: "TaxCategoryFilterParameter",
1059
+ filterOperator: "LogicalOperator"
1060
+ },
1061
+ CreateTaxCategoryInput: {
1062
+ customFields: "JSON"
1063
+ },
1064
+ UpdateTaxCategoryInput: {
1065
+ customFields: "JSON"
1066
+ },
1067
+ TaxRateListOptions: {
1068
+ sort: "TaxRateSortParameter",
1069
+ filter: "TaxRateFilterParameter",
1070
+ filterOperator: "LogicalOperator"
1071
+ },
1072
+ CreateTaxRateInput: {
1073
+ customFields: "JSON"
1074
+ },
1075
+ UpdateTaxRateInput: {
1076
+ customFields: "JSON"
1077
+ },
1078
+ ZoneListOptions: {
1079
+ sort: "ZoneSortParameter",
1080
+ filter: "ZoneFilterParameter",
1081
+ filterOperator: "LogicalOperator"
1082
+ },
1083
+ CreateZoneInput: {
1084
+ customFields: "JSON"
1085
+ },
1086
+ UpdateZoneInput: {
1087
+ customFields: "JSON"
1088
+ },
1089
+ AssetType: "enum",
1090
+ GlobalFlag: "enum",
1091
+ AdjustmentType: "enum",
1092
+ DeletionResult: "enum",
1093
+ Permission: "enum",
1094
+ SortOrder: "enum",
1095
+ ErrorCode: "enum",
1096
+ LogicalOperator: "enum",
1097
+ JSON: `scalar.JSON`,
1098
+ DateTime: `scalar.DateTime`,
1099
+ Upload: `scalar.Upload`,
1100
+ Money: `scalar.Money`,
1101
+ ConfigArgInput: {},
1102
+ ConfigurableOperationInput: {
1103
+ arguments: "ConfigArgInput"
1104
+ },
1105
+ StringOperators: {},
1106
+ IDOperators: {},
1107
+ BooleanOperators: {},
1108
+ NumberRange: {},
1109
+ NumberOperators: {
1110
+ between: "NumberRange"
1111
+ },
1112
+ DateRange: {
1113
+ start: "DateTime",
1114
+ end: "DateTime"
1115
+ },
1116
+ DateOperators: {
1117
+ eq: "DateTime",
1118
+ before: "DateTime",
1119
+ after: "DateTime",
1120
+ between: "DateRange"
1121
+ },
1122
+ StringListOperators: {},
1123
+ NumberListOperators: {},
1124
+ BooleanListOperators: {},
1125
+ IDListOperators: {},
1126
+ DateListOperators: {
1127
+ inList: "DateTime"
1128
+ },
1129
+ FacetValueFilterInput: {},
1130
+ SearchInput: {
1131
+ facetValueFilters: "FacetValueFilterInput",
1132
+ sort: "SearchResultSortParameter"
1133
+ },
1134
+ SearchResultSortParameter: {
1135
+ name: "SortOrder",
1136
+ price: "SortOrder"
1137
+ },
1138
+ CreateCustomerInput: {
1139
+ customFields: "JSON"
1140
+ },
1141
+ CreateAddressInput: {
1142
+ customFields: "JSON"
1143
+ },
1144
+ UpdateAddressInput: {
1145
+ customFields: "JSON"
1146
+ },
1147
+ CurrencyCode: "enum",
1148
+ CustomerGroup: {
1149
+ customers: {
1150
+ options: "CustomerListOptions"
1151
+ }
1152
+ },
1153
+ FacetValueListOptions: {
1154
+ sort: "FacetValueSortParameter",
1155
+ filter: "FacetValueFilterParameter",
1156
+ filterOperator: "LogicalOperator"
1157
+ },
1158
+ HistoryEntryType: "enum",
1159
+ HistoryEntryListOptions: {
1160
+ sort: "HistoryEntrySortParameter",
1161
+ filter: "HistoryEntryFilterParameter",
1162
+ filterOperator: "LogicalOperator"
1163
+ },
1164
+ LanguageCode: "enum",
1165
+ OrderType: "enum",
1166
+ MetricRangeType: "enum",
1167
+ MetricIntervalType: "enum",
1168
+ ChartMetricType: "enum",
1169
+ BetterMetricRangeInput: {
1170
+ start: "DateTime",
1171
+ end: "DateTime"
1172
+ },
1173
+ OrderSummaryMetricInput: {
1174
+ range: "BetterMetricRangeInput"
1175
+ },
1176
+ ChartMetricInput: {
1177
+ range: "BetterMetricRangeInput",
1178
+ interval: "MetricIntervalType",
1179
+ types: "ChartMetricType"
1180
+ },
1181
+ MetricInterval: "enum",
1182
+ MetricType: "enum",
1183
+ MetricSummaryInput: {
1184
+ interval: "MetricInterval",
1185
+ types: "MetricType"
1186
+ },
1187
+ AdministratorFilterParameter: {
1188
+ id: "IDOperators",
1189
+ createdAt: "DateOperators",
1190
+ updatedAt: "DateOperators",
1191
+ firstName: "StringOperators",
1192
+ lastName: "StringOperators",
1193
+ emailAddress: "StringOperators",
1194
+ _and: "AdministratorFilterParameter",
1195
+ _or: "AdministratorFilterParameter"
1196
+ },
1197
+ AdministratorSortParameter: {
1198
+ id: "SortOrder",
1199
+ createdAt: "SortOrder",
1200
+ updatedAt: "SortOrder",
1201
+ firstName: "SortOrder",
1202
+ lastName: "SortOrder",
1203
+ emailAddress: "SortOrder"
1204
+ },
1205
+ AssetFilterParameter: {
1206
+ id: "IDOperators",
1207
+ createdAt: "DateOperators",
1208
+ updatedAt: "DateOperators",
1209
+ name: "StringOperators",
1210
+ type: "StringOperators",
1211
+ fileSize: "NumberOperators",
1212
+ mimeType: "StringOperators",
1213
+ width: "NumberOperators",
1214
+ height: "NumberOperators",
1215
+ source: "StringOperators",
1216
+ preview: "StringOperators",
1217
+ _and: "AssetFilterParameter",
1218
+ _or: "AssetFilterParameter"
1219
+ },
1220
+ AssetSortParameter: {
1221
+ id: "SortOrder",
1222
+ createdAt: "SortOrder",
1223
+ updatedAt: "SortOrder",
1224
+ name: "SortOrder",
1225
+ fileSize: "SortOrder",
1226
+ mimeType: "SortOrder",
1227
+ width: "SortOrder",
1228
+ height: "SortOrder",
1229
+ source: "SortOrder",
1230
+ preview: "SortOrder"
1231
+ },
1232
+ ChannelFilterParameter: {
1233
+ id: "IDOperators",
1234
+ createdAt: "DateOperators",
1235
+ updatedAt: "DateOperators",
1236
+ code: "StringOperators",
1237
+ token: "StringOperators",
1238
+ defaultLanguageCode: "StringOperators",
1239
+ currencyCode: "StringOperators",
1240
+ defaultCurrencyCode: "StringOperators",
1241
+ trackInventory: "BooleanOperators",
1242
+ outOfStockThreshold: "NumberOperators",
1243
+ pricesIncludeTax: "BooleanOperators",
1244
+ _and: "ChannelFilterParameter",
1245
+ _or: "ChannelFilterParameter"
1246
+ },
1247
+ ChannelSortParameter: {
1248
+ id: "SortOrder",
1249
+ createdAt: "SortOrder",
1250
+ updatedAt: "SortOrder",
1251
+ code: "SortOrder",
1252
+ token: "SortOrder",
1253
+ outOfStockThreshold: "SortOrder"
1254
+ },
1255
+ CollectionFilterParameter: {
1256
+ isPrivate: "BooleanOperators",
1257
+ inheritFilters: "BooleanOperators",
1258
+ id: "IDOperators",
1259
+ createdAt: "DateOperators",
1260
+ updatedAt: "DateOperators",
1261
+ languageCode: "StringOperators",
1262
+ name: "StringOperators",
1263
+ slug: "StringOperators",
1264
+ position: "NumberOperators",
1265
+ description: "StringOperators",
1266
+ parentId: "IDOperators",
1267
+ _and: "CollectionFilterParameter",
1268
+ _or: "CollectionFilterParameter"
1269
+ },
1270
+ CollectionSortParameter: {
1271
+ id: "SortOrder",
1272
+ createdAt: "SortOrder",
1273
+ updatedAt: "SortOrder",
1274
+ name: "SortOrder",
1275
+ slug: "SortOrder",
1276
+ position: "SortOrder",
1277
+ description: "SortOrder",
1278
+ parentId: "SortOrder"
1279
+ },
1280
+ ProductVariantSortParameter: {
1281
+ stockOnHand: "SortOrder",
1282
+ stockAllocated: "SortOrder",
1283
+ outOfStockThreshold: "SortOrder",
1284
+ id: "SortOrder",
1285
+ productId: "SortOrder",
1286
+ createdAt: "SortOrder",
1287
+ updatedAt: "SortOrder",
1288
+ sku: "SortOrder",
1289
+ name: "SortOrder",
1290
+ price: "SortOrder",
1291
+ priceWithTax: "SortOrder",
1292
+ stockLevel: "SortOrder"
1293
+ },
1294
+ CountryFilterParameter: {
1295
+ id: "IDOperators",
1296
+ createdAt: "DateOperators",
1297
+ updatedAt: "DateOperators",
1298
+ languageCode: "StringOperators",
1299
+ code: "StringOperators",
1300
+ type: "StringOperators",
1301
+ name: "StringOperators",
1302
+ enabled: "BooleanOperators",
1303
+ parentId: "IDOperators",
1304
+ _and: "CountryFilterParameter",
1305
+ _or: "CountryFilterParameter"
1306
+ },
1307
+ CountrySortParameter: {
1308
+ id: "SortOrder",
1309
+ createdAt: "SortOrder",
1310
+ updatedAt: "SortOrder",
1311
+ code: "SortOrder",
1312
+ type: "SortOrder",
1313
+ name: "SortOrder",
1314
+ parentId: "SortOrder"
1315
+ },
1316
+ CustomerGroupFilterParameter: {
1317
+ id: "IDOperators",
1318
+ createdAt: "DateOperators",
1319
+ updatedAt: "DateOperators",
1320
+ name: "StringOperators",
1321
+ _and: "CustomerGroupFilterParameter",
1322
+ _or: "CustomerGroupFilterParameter"
1323
+ },
1324
+ CustomerGroupSortParameter: {
1325
+ id: "SortOrder",
1326
+ createdAt: "SortOrder",
1327
+ updatedAt: "SortOrder",
1328
+ name: "SortOrder"
1329
+ },
1330
+ CustomerSortParameter: {
1331
+ id: "SortOrder",
1332
+ createdAt: "SortOrder",
1333
+ updatedAt: "SortOrder",
1334
+ title: "SortOrder",
1335
+ firstName: "SortOrder",
1336
+ lastName: "SortOrder",
1337
+ phoneNumber: "SortOrder",
1338
+ emailAddress: "SortOrder"
1339
+ },
1340
+ FacetFilterParameter: {
1341
+ isPrivate: "BooleanOperators",
1342
+ id: "IDOperators",
1343
+ createdAt: "DateOperators",
1344
+ updatedAt: "DateOperators",
1345
+ languageCode: "StringOperators",
1346
+ name: "StringOperators",
1347
+ code: "StringOperators",
1348
+ _and: "FacetFilterParameter",
1349
+ _or: "FacetFilterParameter"
1350
+ },
1351
+ FacetSortParameter: {
1352
+ id: "SortOrder",
1353
+ createdAt: "SortOrder",
1354
+ updatedAt: "SortOrder",
1355
+ name: "SortOrder",
1356
+ code: "SortOrder"
1357
+ },
1358
+ FacetValueFilterParameter: {
1359
+ id: "IDOperators",
1360
+ createdAt: "DateOperators",
1361
+ updatedAt: "DateOperators",
1362
+ languageCode: "StringOperators",
1363
+ facetId: "IDOperators",
1364
+ name: "StringOperators",
1365
+ code: "StringOperators",
1366
+ _and: "FacetValueFilterParameter",
1367
+ _or: "FacetValueFilterParameter"
1368
+ },
1369
+ FacetValueSortParameter: {
1370
+ id: "SortOrder",
1371
+ createdAt: "SortOrder",
1372
+ updatedAt: "SortOrder",
1373
+ facetId: "SortOrder",
1374
+ name: "SortOrder",
1375
+ code: "SortOrder"
1376
+ },
1377
+ JobFilterParameter: {
1378
+ id: "IDOperators",
1379
+ createdAt: "DateOperators",
1380
+ startedAt: "DateOperators",
1381
+ settledAt: "DateOperators",
1382
+ queueName: "StringOperators",
1383
+ state: "StringOperators",
1384
+ progress: "NumberOperators",
1385
+ isSettled: "BooleanOperators",
1386
+ duration: "NumberOperators",
1387
+ retries: "NumberOperators",
1388
+ attempts: "NumberOperators",
1389
+ _and: "JobFilterParameter",
1390
+ _or: "JobFilterParameter"
1391
+ },
1392
+ JobSortParameter: {
1393
+ id: "SortOrder",
1394
+ createdAt: "SortOrder",
1395
+ startedAt: "SortOrder",
1396
+ settledAt: "SortOrder",
1397
+ queueName: "SortOrder",
1398
+ progress: "SortOrder",
1399
+ duration: "SortOrder",
1400
+ retries: "SortOrder",
1401
+ attempts: "SortOrder"
1402
+ },
1403
+ PaymentMethodFilterParameter: {
1404
+ id: "IDOperators",
1405
+ createdAt: "DateOperators",
1406
+ updatedAt: "DateOperators",
1407
+ name: "StringOperators",
1408
+ code: "StringOperators",
1409
+ description: "StringOperators",
1410
+ enabled: "BooleanOperators",
1411
+ _and: "PaymentMethodFilterParameter",
1412
+ _or: "PaymentMethodFilterParameter"
1413
+ },
1414
+ PaymentMethodSortParameter: {
1415
+ id: "SortOrder",
1416
+ createdAt: "SortOrder",
1417
+ updatedAt: "SortOrder",
1418
+ name: "SortOrder",
1419
+ code: "SortOrder",
1420
+ description: "SortOrder"
1421
+ },
1422
+ ProductSortParameter: {
1423
+ id: "SortOrder",
1424
+ createdAt: "SortOrder",
1425
+ updatedAt: "SortOrder",
1426
+ name: "SortOrder",
1427
+ slug: "SortOrder",
1428
+ description: "SortOrder"
1429
+ },
1430
+ PromotionFilterParameter: {
1431
+ id: "IDOperators",
1432
+ createdAt: "DateOperators",
1433
+ updatedAt: "DateOperators",
1434
+ startsAt: "DateOperators",
1435
+ endsAt: "DateOperators",
1436
+ couponCode: "StringOperators",
1437
+ perCustomerUsageLimit: "NumberOperators",
1438
+ usageLimit: "NumberOperators",
1439
+ name: "StringOperators",
1440
+ description: "StringOperators",
1441
+ enabled: "BooleanOperators",
1442
+ _and: "PromotionFilterParameter",
1443
+ _or: "PromotionFilterParameter"
1444
+ },
1445
+ PromotionSortParameter: {
1446
+ id: "SortOrder",
1447
+ createdAt: "SortOrder",
1448
+ updatedAt: "SortOrder",
1449
+ startsAt: "SortOrder",
1450
+ endsAt: "SortOrder",
1451
+ couponCode: "SortOrder",
1452
+ perCustomerUsageLimit: "SortOrder",
1453
+ usageLimit: "SortOrder",
1454
+ name: "SortOrder",
1455
+ description: "SortOrder"
1456
+ },
1457
+ ProvinceFilterParameter: {
1458
+ id: "IDOperators",
1459
+ createdAt: "DateOperators",
1460
+ updatedAt: "DateOperators",
1461
+ languageCode: "StringOperators",
1462
+ code: "StringOperators",
1463
+ type: "StringOperators",
1464
+ name: "StringOperators",
1465
+ enabled: "BooleanOperators",
1466
+ parentId: "IDOperators",
1467
+ _and: "ProvinceFilterParameter",
1468
+ _or: "ProvinceFilterParameter"
1469
+ },
1470
+ ProvinceSortParameter: {
1471
+ id: "SortOrder",
1472
+ createdAt: "SortOrder",
1473
+ updatedAt: "SortOrder",
1474
+ code: "SortOrder",
1475
+ type: "SortOrder",
1476
+ name: "SortOrder",
1477
+ parentId: "SortOrder"
1478
+ },
1479
+ RoleFilterParameter: {
1480
+ id: "IDOperators",
1481
+ createdAt: "DateOperators",
1482
+ updatedAt: "DateOperators",
1483
+ code: "StringOperators",
1484
+ description: "StringOperators",
1485
+ _and: "RoleFilterParameter",
1486
+ _or: "RoleFilterParameter"
1487
+ },
1488
+ RoleSortParameter: {
1489
+ id: "SortOrder",
1490
+ createdAt: "SortOrder",
1491
+ updatedAt: "SortOrder",
1492
+ code: "SortOrder",
1493
+ description: "SortOrder"
1494
+ },
1495
+ SellerFilterParameter: {
1496
+ id: "IDOperators",
1497
+ createdAt: "DateOperators",
1498
+ updatedAt: "DateOperators",
1499
+ name: "StringOperators",
1500
+ _and: "SellerFilterParameter",
1501
+ _or: "SellerFilterParameter"
1502
+ },
1503
+ SellerSortParameter: {
1504
+ id: "SortOrder",
1505
+ createdAt: "SortOrder",
1506
+ updatedAt: "SortOrder",
1507
+ name: "SortOrder"
1508
+ },
1509
+ ShippingMethodFilterParameter: {
1510
+ id: "IDOperators",
1511
+ createdAt: "DateOperators",
1512
+ updatedAt: "DateOperators",
1513
+ languageCode: "StringOperators",
1514
+ code: "StringOperators",
1515
+ name: "StringOperators",
1516
+ description: "StringOperators",
1517
+ fulfillmentHandlerCode: "StringOperators",
1518
+ _and: "ShippingMethodFilterParameter",
1519
+ _or: "ShippingMethodFilterParameter"
1520
+ },
1521
+ ShippingMethodSortParameter: {
1522
+ id: "SortOrder",
1523
+ createdAt: "SortOrder",
1524
+ updatedAt: "SortOrder",
1525
+ code: "SortOrder",
1526
+ name: "SortOrder",
1527
+ description: "SortOrder",
1528
+ fulfillmentHandlerCode: "SortOrder"
1529
+ },
1530
+ StockLocationFilterParameter: {
1531
+ id: "IDOperators",
1532
+ createdAt: "DateOperators",
1533
+ updatedAt: "DateOperators",
1534
+ name: "StringOperators",
1535
+ description: "StringOperators",
1536
+ _and: "StockLocationFilterParameter",
1537
+ _or: "StockLocationFilterParameter"
1538
+ },
1539
+ StockLocationSortParameter: {
1540
+ id: "SortOrder",
1541
+ createdAt: "SortOrder",
1542
+ updatedAt: "SortOrder",
1543
+ name: "SortOrder",
1544
+ description: "SortOrder"
1545
+ },
1546
+ TagFilterParameter: {
1547
+ id: "IDOperators",
1548
+ createdAt: "DateOperators",
1549
+ updatedAt: "DateOperators",
1550
+ value: "StringOperators",
1551
+ _and: "TagFilterParameter",
1552
+ _or: "TagFilterParameter"
1553
+ },
1554
+ TagSortParameter: {
1555
+ id: "SortOrder",
1556
+ createdAt: "SortOrder",
1557
+ updatedAt: "SortOrder",
1558
+ value: "SortOrder"
1559
+ },
1560
+ TaxCategoryFilterParameter: {
1561
+ id: "IDOperators",
1562
+ createdAt: "DateOperators",
1563
+ updatedAt: "DateOperators",
1564
+ name: "StringOperators",
1565
+ isDefault: "BooleanOperators",
1566
+ _and: "TaxCategoryFilterParameter",
1567
+ _or: "TaxCategoryFilterParameter"
1568
+ },
1569
+ TaxCategorySortParameter: {
1570
+ id: "SortOrder",
1571
+ createdAt: "SortOrder",
1572
+ updatedAt: "SortOrder",
1573
+ name: "SortOrder"
1574
+ },
1575
+ TaxRateFilterParameter: {
1576
+ id: "IDOperators",
1577
+ createdAt: "DateOperators",
1578
+ updatedAt: "DateOperators",
1579
+ name: "StringOperators",
1580
+ enabled: "BooleanOperators",
1581
+ value: "NumberOperators",
1582
+ _and: "TaxRateFilterParameter",
1583
+ _or: "TaxRateFilterParameter"
1584
+ },
1585
+ TaxRateSortParameter: {
1586
+ id: "SortOrder",
1587
+ createdAt: "SortOrder",
1588
+ updatedAt: "SortOrder",
1589
+ name: "SortOrder",
1590
+ value: "SortOrder"
1591
+ },
1592
+ ZoneFilterParameter: {
1593
+ id: "IDOperators",
1594
+ createdAt: "DateOperators",
1595
+ updatedAt: "DateOperators",
1596
+ name: "StringOperators",
1597
+ _and: "ZoneFilterParameter",
1598
+ _or: "ZoneFilterParameter"
1599
+ },
1600
+ ZoneSortParameter: {
1601
+ id: "SortOrder",
1602
+ createdAt: "SortOrder",
1603
+ updatedAt: "SortOrder",
1604
+ name: "SortOrder"
1605
+ },
1606
+ HistoryEntryFilterParameter: {
1607
+ isPublic: "BooleanOperators",
1608
+ id: "IDOperators",
1609
+ createdAt: "DateOperators",
1610
+ updatedAt: "DateOperators",
1611
+ type: "StringOperators",
1612
+ _and: "HistoryEntryFilterParameter",
1613
+ _or: "HistoryEntryFilterParameter"
1614
+ },
1615
+ HistoryEntrySortParameter: {
1616
+ id: "SortOrder",
1617
+ createdAt: "SortOrder",
1618
+ updatedAt: "SortOrder"
1619
+ },
1620
+ NativeAuthInput: {},
1621
+ ID: `scalar.ID`
1622
+ };
1623
+ export const ReturnTypes = {
1624
+ Query: {
1625
+ administrators: "AdministratorList",
1626
+ administrator: "Administrator",
1627
+ activeAdministrator: "Administrator",
1628
+ assets: "AssetList",
1629
+ asset: "Asset",
1630
+ me: "CurrentUser",
1631
+ channels: "ChannelList",
1632
+ channel: "Channel",
1633
+ activeChannel: "Channel",
1634
+ collections: "CollectionList",
1635
+ collection: "Collection",
1636
+ collectionFilters: "ConfigurableOperationDefinition",
1637
+ previewCollectionVariants: "ProductVariantList",
1638
+ countries: "CountryList",
1639
+ country: "Country",
1640
+ customerGroups: "CustomerGroupList",
1641
+ customerGroup: "CustomerGroup",
1642
+ customers: "CustomerList",
1643
+ customer: "Customer",
1644
+ entityDuplicators: "EntityDuplicatorDefinition",
1645
+ facets: "FacetList",
1646
+ facet: "Facet",
1647
+ facetValues: "FacetValueList",
1648
+ globalSettings: "GlobalSettings",
1649
+ job: "Job",
1650
+ jobs: "JobList",
1651
+ jobsById: "Job",
1652
+ jobQueues: "JobQueue",
1653
+ jobBufferSize: "JobBufferSize",
1654
+ order: "Order",
1655
+ orders: "OrderList",
1656
+ eligibleShippingMethodsForDraftOrder: "ShippingMethodQuote",
1657
+ paymentMethods: "PaymentMethodList",
1658
+ paymentMethod: "PaymentMethod",
1659
+ paymentMethodEligibilityCheckers: "ConfigurableOperationDefinition",
1660
+ paymentMethodHandlers: "ConfigurableOperationDefinition",
1661
+ productOptionGroups: "ProductOptionGroup",
1662
+ productOptionGroup: "ProductOptionGroup",
1663
+ search: "SearchResponse",
1664
+ pendingSearchIndexUpdates: "Int",
1665
+ products: "ProductList",
1666
+ product: "Product",
1667
+ productVariants: "ProductVariantList",
1668
+ productVariant: "ProductVariant",
1669
+ promotion: "Promotion",
1670
+ promotions: "PromotionList",
1671
+ promotionConditions: "ConfigurableOperationDefinition",
1672
+ promotionActions: "ConfigurableOperationDefinition",
1673
+ provinces: "ProvinceList",
1674
+ province: "Province",
1675
+ roles: "RoleList",
1676
+ role: "Role",
1677
+ sellers: "SellerList",
1678
+ seller: "Seller",
1679
+ shippingMethods: "ShippingMethodList",
1680
+ shippingMethod: "ShippingMethod",
1681
+ shippingEligibilityCheckers: "ConfigurableOperationDefinition",
1682
+ shippingCalculators: "ConfigurableOperationDefinition",
1683
+ fulfillmentHandlers: "ConfigurableOperationDefinition",
1684
+ testShippingMethod: "TestShippingMethodResult",
1685
+ testEligibleShippingMethods: "ShippingMethodQuote",
1686
+ stockLocation: "StockLocation",
1687
+ stockLocations: "StockLocationList",
1688
+ tag: "Tag",
1689
+ tags: "TagList",
1690
+ taxCategories: "TaxCategoryList",
1691
+ taxCategory: "TaxCategory",
1692
+ taxRates: "TaxRateList",
1693
+ taxRate: "TaxRate",
1694
+ zones: "ZoneList",
1695
+ zone: "Zone",
1696
+ additionalOrderStates: "AdditionalOrderState",
1697
+ chartMetric: "ChartMetrics",
1698
+ orderSummaryMetric: "OrderSummaryMetrics",
1699
+ metricSummary: "MetricSummary"
1700
+ },
1701
+ Mutation: {
1702
+ createAdministrator: "Administrator",
1703
+ updateAdministrator: "Administrator",
1704
+ updateActiveAdministrator: "Administrator",
1705
+ deleteAdministrator: "DeletionResponse",
1706
+ deleteAdministrators: "DeletionResponse",
1707
+ assignRoleToAdministrator: "Administrator",
1708
+ createAssets: "CreateAssetResult",
1709
+ updateAsset: "Asset",
1710
+ deleteAsset: "DeletionResponse",
1711
+ deleteAssets: "DeletionResponse",
1712
+ assignAssetsToChannel: "Asset",
1713
+ login: "NativeAuthenticationResult",
1714
+ authenticate: "AuthenticationResult",
1715
+ logout: "Success",
1716
+ createChannel: "CreateChannelResult",
1717
+ updateChannel: "UpdateChannelResult",
1718
+ deleteChannel: "DeletionResponse",
1719
+ deleteChannels: "DeletionResponse",
1720
+ createCollection: "Collection",
1721
+ updateCollection: "Collection",
1722
+ deleteCollection: "DeletionResponse",
1723
+ deleteCollections: "DeletionResponse",
1724
+ moveCollection: "Collection",
1725
+ assignCollectionsToChannel: "Collection",
1726
+ removeCollectionsFromChannel: "Collection",
1727
+ createCountry: "Country",
1728
+ updateCountry: "Country",
1729
+ deleteCountry: "DeletionResponse",
1730
+ deleteCountries: "DeletionResponse",
1731
+ createCustomerGroup: "CustomerGroup",
1732
+ updateCustomerGroup: "CustomerGroup",
1733
+ deleteCustomerGroup: "DeletionResponse",
1734
+ deleteCustomerGroups: "DeletionResponse",
1735
+ addCustomersToGroup: "CustomerGroup",
1736
+ removeCustomersFromGroup: "CustomerGroup",
1737
+ createCustomer: "CreateCustomerResult",
1738
+ updateCustomer: "UpdateCustomerResult",
1739
+ deleteCustomer: "DeletionResponse",
1740
+ deleteCustomers: "DeletionResponse",
1741
+ createCustomerAddress: "Address",
1742
+ updateCustomerAddress: "Address",
1743
+ deleteCustomerAddress: "Success",
1744
+ addNoteToCustomer: "Customer",
1745
+ updateCustomerNote: "HistoryEntry",
1746
+ deleteCustomerNote: "DeletionResponse",
1747
+ duplicateEntity: "DuplicateEntityResult",
1748
+ createFacet: "Facet",
1749
+ updateFacet: "Facet",
1750
+ deleteFacet: "DeletionResponse",
1751
+ deleteFacets: "DeletionResponse",
1752
+ createFacetValues: "FacetValue",
1753
+ updateFacetValues: "FacetValue",
1754
+ deleteFacetValues: "DeletionResponse",
1755
+ assignFacetsToChannel: "Facet",
1756
+ removeFacetsFromChannel: "RemoveFacetFromChannelResult",
1757
+ updateGlobalSettings: "UpdateGlobalSettingsResult",
1758
+ importProducts: "ImportInfo",
1759
+ removeSettledJobs: "Int",
1760
+ cancelJob: "Job",
1761
+ flushBufferedJobs: "Success",
1762
+ settlePayment: "SettlePaymentResult",
1763
+ cancelPayment: "CancelPaymentResult",
1764
+ addFulfillmentToOrder: "AddFulfillmentToOrderResult",
1765
+ cancelOrder: "CancelOrderResult",
1766
+ refundOrder: "RefundOrderResult",
1767
+ settleRefund: "SettleRefundResult",
1768
+ addNoteToOrder: "Order",
1769
+ updateOrderNote: "HistoryEntry",
1770
+ deleteOrderNote: "DeletionResponse",
1771
+ transitionOrderToState: "TransitionOrderToStateResult",
1772
+ transitionFulfillmentToState: "TransitionFulfillmentToStateResult",
1773
+ transitionPaymentToState: "TransitionPaymentToStateResult",
1774
+ setOrderCustomFields: "Order",
1775
+ setOrderCustomer: "Order",
1776
+ modifyOrder: "ModifyOrderResult",
1777
+ addManualPaymentToOrder: "AddManualPaymentToOrderResult",
1778
+ createDraftOrder: "Order",
1779
+ deleteDraftOrder: "DeletionResponse",
1780
+ addItemToDraftOrder: "UpdateOrderItemsResult",
1781
+ adjustDraftOrderLine: "UpdateOrderItemsResult",
1782
+ removeDraftOrderLine: "RemoveOrderItemsResult",
1783
+ setCustomerForDraftOrder: "SetCustomerForDraftOrderResult",
1784
+ setDraftOrderShippingAddress: "Order",
1785
+ setDraftOrderBillingAddress: "Order",
1786
+ setDraftOrderCustomFields: "Order",
1787
+ applyCouponCodeToDraftOrder: "ApplyCouponCodeResult",
1788
+ toggleExcludePromotionInOrder: "Order",
1789
+ removeCouponCodeFromDraftOrder: "Order",
1790
+ setDraftOrderShippingMethod: "SetOrderShippingMethodResult",
1791
+ createPaymentMethod: "PaymentMethod",
1792
+ updatePaymentMethod: "PaymentMethod",
1793
+ deletePaymentMethod: "DeletionResponse",
1794
+ deletePaymentMethods: "DeletionResponse",
1795
+ assignPaymentMethodsToChannel: "PaymentMethod",
1796
+ removePaymentMethodsFromChannel: "PaymentMethod",
1797
+ createProductOptionGroup: "ProductOptionGroup",
1798
+ updateProductOptionGroup: "ProductOptionGroup",
1799
+ createProductOption: "ProductOption",
1800
+ updateProductOption: "ProductOption",
1801
+ deleteProductOption: "DeletionResponse",
1802
+ reindex: "Job",
1803
+ runPendingSearchIndexUpdates: "Success",
1804
+ createProduct: "Product",
1805
+ updateProduct: "Product",
1806
+ updateProducts: "Product",
1807
+ deleteProduct: "DeletionResponse",
1808
+ deleteProducts: "DeletionResponse",
1809
+ addOptionGroupToProduct: "Product",
1810
+ removeOptionGroupFromProduct: "RemoveOptionGroupFromProductResult",
1811
+ createProductVariants: "ProductVariant",
1812
+ updateProductVariants: "ProductVariant",
1813
+ deleteProductVariant: "DeletionResponse",
1814
+ deleteProductVariants: "DeletionResponse",
1815
+ assignProductsToChannel: "Product",
1816
+ removeProductsFromChannel: "Product",
1817
+ assignProductVariantsToChannel: "ProductVariant",
1818
+ removeProductVariantsFromChannel: "ProductVariant",
1819
+ createPromotion: "CreatePromotionResult",
1820
+ updatePromotion: "UpdatePromotionResult",
1821
+ deletePromotion: "DeletionResponse",
1822
+ deletePromotions: "DeletionResponse",
1823
+ assignPromotionsToChannel: "Promotion",
1824
+ removePromotionsFromChannel: "Promotion",
1825
+ createProvince: "Province",
1826
+ updateProvince: "Province",
1827
+ deleteProvince: "DeletionResponse",
1828
+ createRole: "Role",
1829
+ updateRole: "Role",
1830
+ deleteRole: "DeletionResponse",
1831
+ deleteRoles: "DeletionResponse",
1832
+ createSeller: "Seller",
1833
+ updateSeller: "Seller",
1834
+ deleteSeller: "DeletionResponse",
1835
+ deleteSellers: "DeletionResponse",
1836
+ createShippingMethod: "ShippingMethod",
1837
+ updateShippingMethod: "ShippingMethod",
1838
+ deleteShippingMethod: "DeletionResponse",
1839
+ deleteShippingMethods: "DeletionResponse",
1840
+ assignShippingMethodsToChannel: "ShippingMethod",
1841
+ removeShippingMethodsFromChannel: "ShippingMethod",
1842
+ createStockLocation: "StockLocation",
1843
+ updateStockLocation: "StockLocation",
1844
+ deleteStockLocation: "DeletionResponse",
1845
+ deleteStockLocations: "DeletionResponse",
1846
+ assignStockLocationsToChannel: "StockLocation",
1847
+ removeStockLocationsFromChannel: "StockLocation",
1848
+ createTag: "Tag",
1849
+ updateTag: "Tag",
1850
+ deleteTag: "DeletionResponse",
1851
+ createTaxCategory: "TaxCategory",
1852
+ updateTaxCategory: "TaxCategory",
1853
+ deleteTaxCategory: "DeletionResponse",
1854
+ deleteTaxCategories: "DeletionResponse",
1855
+ createTaxRate: "TaxRate",
1856
+ updateTaxRate: "TaxRate",
1857
+ deleteTaxRate: "DeletionResponse",
1858
+ deleteTaxRates: "DeletionResponse",
1859
+ createZone: "Zone",
1860
+ updateZone: "Zone",
1861
+ deleteZone: "DeletionResponse",
1862
+ deleteZones: "DeletionResponse",
1863
+ addMembersToZone: "Zone",
1864
+ removeMembersFromZone: "Zone"
1865
+ },
1866
+ Administrator: {
1867
+ id: "ID",
1868
+ createdAt: "DateTime",
1869
+ updatedAt: "DateTime",
1870
+ firstName: "String",
1871
+ lastName: "String",
1872
+ emailAddress: "String",
1873
+ user: "User",
1874
+ customFields: "JSON"
1875
+ },
1876
+ AdministratorList: {
1877
+ items: "Administrator",
1878
+ totalItems: "Int"
1879
+ },
1880
+ MimeTypeError: {
1881
+ errorCode: "ErrorCode",
1882
+ message: "String",
1883
+ fileName: "String",
1884
+ mimeType: "String"
1885
+ },
1886
+ CreateAssetResult: {
1887
+ "...on Asset": "Asset",
1888
+ "...on MimeTypeError": "MimeTypeError"
1889
+ },
1890
+ NativeAuthenticationResult: {
1891
+ "...on CurrentUser": "CurrentUser",
1892
+ "...on InvalidCredentialsError": "InvalidCredentialsError",
1893
+ "...on NativeAuthStrategyError": "NativeAuthStrategyError"
1894
+ },
1895
+ AuthenticationResult: {
1896
+ "...on CurrentUser": "CurrentUser",
1897
+ "...on InvalidCredentialsError": "InvalidCredentialsError"
1898
+ },
1899
+ ChannelList: {
1900
+ items: "Channel",
1901
+ totalItems: "Int"
1902
+ },
1903
+ LanguageNotAvailableError: {
1904
+ errorCode: "ErrorCode",
1905
+ message: "String",
1906
+ languageCode: "String"
1907
+ },
1908
+ CreateChannelResult: {
1909
+ "...on Channel": "Channel",
1910
+ "...on LanguageNotAvailableError": "LanguageNotAvailableError"
1911
+ },
1912
+ UpdateChannelResult: {
1913
+ "...on Channel": "Channel",
1914
+ "...on LanguageNotAvailableError": "LanguageNotAvailableError"
1915
+ },
1916
+ Collection: {
1917
+ isPrivate: "Boolean",
1918
+ inheritFilters: "Boolean",
1919
+ id: "ID",
1920
+ createdAt: "DateTime",
1921
+ updatedAt: "DateTime",
1922
+ languageCode: "LanguageCode",
1923
+ name: "String",
1924
+ slug: "String",
1925
+ breadcrumbs: "CollectionBreadcrumb",
1926
+ position: "Int",
1927
+ description: "String",
1928
+ featuredAsset: "Asset",
1929
+ assets: "Asset",
1930
+ parent: "Collection",
1931
+ parentId: "ID",
1932
+ children: "Collection",
1933
+ filters: "ConfigurableOperation",
1934
+ translations: "CollectionTranslation",
1935
+ productVariants: "ProductVariantList",
1936
+ customFields: "JSON"
1937
+ },
1938
+ Customer: {
1939
+ groups: "CustomerGroup",
1940
+ history: "HistoryEntryList",
1941
+ id: "ID",
1942
+ createdAt: "DateTime",
1943
+ updatedAt: "DateTime",
1944
+ title: "String",
1945
+ firstName: "String",
1946
+ lastName: "String",
1947
+ phoneNumber: "String",
1948
+ emailAddress: "String",
1949
+ addresses: "Address",
1950
+ orders: "OrderList",
1951
+ user: "User",
1952
+ customFields: "JSON"
1953
+ },
1954
+ CustomerGroupList: {
1955
+ items: "CustomerGroup",
1956
+ totalItems: "Int"
1957
+ },
1958
+ CreateCustomerResult: {
1959
+ "...on Customer": "Customer",
1960
+ "...on EmailAddressConflictError": "EmailAddressConflictError"
1961
+ },
1962
+ UpdateCustomerResult: {
1963
+ "...on Customer": "Customer",
1964
+ "...on EmailAddressConflictError": "EmailAddressConflictError"
1965
+ },
1966
+ EntityDuplicatorDefinition: {
1967
+ code: "String",
1968
+ args: "ConfigArgDefinition",
1969
+ description: "String",
1970
+ forEntities: "String",
1971
+ requiresPermission: "Permission"
1972
+ },
1973
+ DuplicateEntitySuccess: {
1974
+ newEntityId: "ID"
1975
+ },
1976
+ DuplicateEntityError: {
1977
+ errorCode: "ErrorCode",
1978
+ message: "String",
1979
+ duplicationError: "String"
1980
+ },
1981
+ DuplicateEntityResult: {
1982
+ "...on DuplicateEntitySuccess": "DuplicateEntitySuccess",
1983
+ "...on DuplicateEntityError": "DuplicateEntityError"
1984
+ },
1985
+ Facet: {
1986
+ isPrivate: "Boolean",
1987
+ id: "ID",
1988
+ createdAt: "DateTime",
1989
+ updatedAt: "DateTime",
1990
+ languageCode: "LanguageCode",
1991
+ name: "String",
1992
+ code: "String",
1993
+ values: "FacetValue",
1994
+ valueList: "FacetValueList",
1995
+ translations: "FacetTranslation",
1996
+ customFields: "JSON"
1997
+ },
1998
+ FacetInUseError: {
1999
+ errorCode: "ErrorCode",
2000
+ message: "String",
2001
+ facetCode: "String",
2002
+ productCount: "Int",
2003
+ variantCount: "Int"
2004
+ },
2005
+ RemoveFacetFromChannelResult: {
2006
+ "...on Facet": "Facet",
2007
+ "...on FacetInUseError": "FacetInUseError"
2008
+ },
2009
+ ChannelDefaultLanguageError: {
2010
+ errorCode: "ErrorCode",
2011
+ message: "String",
2012
+ language: "String",
2013
+ channelCode: "String"
2014
+ },
2015
+ UpdateGlobalSettingsResult: {
2016
+ "...on GlobalSettings": "GlobalSettings",
2017
+ "...on ChannelDefaultLanguageError": "ChannelDefaultLanguageError"
2018
+ },
2019
+ GlobalSettings: {
2020
+ id: "ID",
2021
+ createdAt: "DateTime",
2022
+ updatedAt: "DateTime",
2023
+ availableLanguages: "LanguageCode",
2024
+ trackInventory: "Boolean",
2025
+ outOfStockThreshold: "Int",
2026
+ serverConfig: "ServerConfig",
2027
+ customFields: "JSON"
2028
+ },
2029
+ OrderProcessState: {
2030
+ name: "String",
2031
+ to: "String"
2032
+ },
2033
+ PermissionDefinition: {
2034
+ name: "String",
2035
+ description: "String",
2036
+ assignable: "Boolean"
2037
+ },
2038
+ ServerConfig: {
2039
+ orderProcess: "OrderProcessState",
2040
+ permittedAssetTypes: "String",
2041
+ permissions: "PermissionDefinition",
2042
+ moneyStrategyPrecision: "Int",
2043
+ customFieldConfig: "CustomFields",
2044
+ entityCustomFields: "EntityCustomFields"
2045
+ },
2046
+ HistoryEntry: {
2047
+ isPublic: "Boolean",
2048
+ administrator: "Administrator",
2049
+ id: "ID",
2050
+ createdAt: "DateTime",
2051
+ updatedAt: "DateTime",
2052
+ type: "HistoryEntryType",
2053
+ data: "JSON"
2054
+ },
2055
+ ImportInfo: {
2056
+ errors: "String",
2057
+ processed: "Int",
2058
+ imported: "Int"
2059
+ },
2060
+ JobBufferSize: {
2061
+ bufferId: "String",
2062
+ size: "Int"
2063
+ },
2064
+ JobList: {
2065
+ items: "Job",
2066
+ totalItems: "Int"
2067
+ },
2068
+ Job: {
2069
+ id: "ID",
2070
+ createdAt: "DateTime",
2071
+ startedAt: "DateTime",
2072
+ settledAt: "DateTime",
2073
+ queueName: "String",
2074
+ state: "JobState",
2075
+ progress: "Float",
2076
+ data: "JSON",
2077
+ result: "JSON",
2078
+ error: "JSON",
2079
+ isSettled: "Boolean",
2080
+ duration: "Int",
2081
+ retries: "Int",
2082
+ attempts: "Int"
2083
+ },
2084
+ JobQueue: {
2085
+ name: "String",
2086
+ running: "Boolean"
2087
+ },
2088
+ Order: {
2089
+ nextStates: "String",
2090
+ modifications: "OrderModification",
2091
+ sellerOrders: "Order",
2092
+ aggregateOrder: "Order",
2093
+ aggregateOrderId: "ID",
2094
+ channels: "Channel",
2095
+ id: "ID",
2096
+ createdAt: "DateTime",
2097
+ updatedAt: "DateTime",
2098
+ type: "OrderType",
2099
+ orderPlacedAt: "DateTime",
2100
+ code: "String",
2101
+ state: "String",
2102
+ active: "Boolean",
2103
+ customer: "Customer",
2104
+ shippingAddress: "OrderAddress",
2105
+ billingAddress: "OrderAddress",
2106
+ lines: "OrderLine",
2107
+ surcharges: "Surcharge",
2108
+ discounts: "Discount",
2109
+ couponCodes: "String",
2110
+ excludedPromotionIds: "String",
2111
+ promotions: "Promotion",
2112
+ payments: "Payment",
2113
+ fulfillments: "Fulfillment",
2114
+ totalQuantity: "Int",
2115
+ subTotal: "Money",
2116
+ subTotalWithTax: "Money",
2117
+ currencyCode: "CurrencyCode",
2118
+ shippingLines: "ShippingLine",
2119
+ shipping: "Money",
2120
+ shippingWithTax: "Money",
2121
+ total: "Money",
2122
+ totalWithTax: "Money",
2123
+ taxSummary: "OrderTaxSummary",
2124
+ history: "HistoryEntryList",
2125
+ customFields: "JSON"
2126
+ },
2127
+ Fulfillment: {
2128
+ nextStates: "String",
2129
+ id: "ID",
2130
+ createdAt: "DateTime",
2131
+ updatedAt: "DateTime",
2132
+ lines: "FulfillmentLine",
2133
+ summary: "FulfillmentLine",
2134
+ state: "String",
2135
+ method: "String",
2136
+ trackingCode: "String",
2137
+ customFields: "JSON"
2138
+ },
2139
+ Payment: {
2140
+ nextStates: "String",
2141
+ id: "ID",
2142
+ createdAt: "DateTime",
2143
+ updatedAt: "DateTime",
2144
+ method: "String",
2145
+ amount: "Money",
2146
+ state: "String",
2147
+ transactionId: "String",
2148
+ errorMessage: "String",
2149
+ refunds: "Refund",
2150
+ metadata: "JSON"
2151
+ },
2152
+ OrderModificationLine: {
2153
+ orderLine: "OrderLine",
2154
+ orderLineId: "ID",
2155
+ quantity: "Int",
2156
+ modification: "OrderModification",
2157
+ modificationId: "ID"
2158
+ },
2159
+ OrderModification: {
2160
+ id: "ID",
2161
+ createdAt: "DateTime",
2162
+ updatedAt: "DateTime",
2163
+ priceChange: "Money",
2164
+ note: "String",
2165
+ lines: "OrderModificationLine",
2166
+ surcharges: "Surcharge",
2167
+ payment: "Payment",
2168
+ refund: "Refund",
2169
+ isSettled: "Boolean"
2170
+ },
2171
+ SettlePaymentError: {
2172
+ errorCode: "ErrorCode",
2173
+ message: "String",
2174
+ paymentErrorMessage: "String"
2175
+ },
2176
+ CancelPaymentError: {
2177
+ errorCode: "ErrorCode",
2178
+ message: "String",
2179
+ paymentErrorMessage: "String"
2180
+ },
2181
+ EmptyOrderLineSelectionError: {
2182
+ errorCode: "ErrorCode",
2183
+ message: "String"
2184
+ },
2185
+ ItemsAlreadyFulfilledError: {
2186
+ errorCode: "ErrorCode",
2187
+ message: "String"
2188
+ },
2189
+ InvalidFulfillmentHandlerError: {
2190
+ errorCode: "ErrorCode",
2191
+ message: "String"
2192
+ },
2193
+ CreateFulfillmentError: {
2194
+ errorCode: "ErrorCode",
2195
+ message: "String",
2196
+ fulfillmentHandlerError: "String"
2197
+ },
2198
+ InsufficientStockOnHandError: {
2199
+ errorCode: "ErrorCode",
2200
+ message: "String",
2201
+ productVariantId: "ID",
2202
+ productVariantName: "String",
2203
+ stockOnHand: "Int"
2204
+ },
2205
+ MultipleOrderError: {
2206
+ errorCode: "ErrorCode",
2207
+ message: "String"
2208
+ },
2209
+ CancelActiveOrderError: {
2210
+ errorCode: "ErrorCode",
2211
+ message: "String",
2212
+ orderState: "String"
2213
+ },
2214
+ PaymentOrderMismatchError: {
2215
+ errorCode: "ErrorCode",
2216
+ message: "String"
2217
+ },
2218
+ RefundOrderStateError: {
2219
+ errorCode: "ErrorCode",
2220
+ message: "String",
2221
+ orderState: "String"
2222
+ },
2223
+ NothingToRefundError: {
2224
+ errorCode: "ErrorCode",
2225
+ message: "String"
2226
+ },
2227
+ AlreadyRefundedError: {
2228
+ errorCode: "ErrorCode",
2229
+ message: "String",
2230
+ refundId: "ID"
2231
+ },
2232
+ QuantityTooGreatError: {
2233
+ errorCode: "ErrorCode",
2234
+ message: "String"
2235
+ },
2236
+ RefundAmountError: {
2237
+ errorCode: "ErrorCode",
2238
+ message: "String",
2239
+ maximumRefundable: "Int"
2240
+ },
2241
+ RefundStateTransitionError: {
2242
+ errorCode: "ErrorCode",
2243
+ message: "String",
2244
+ transitionError: "String",
2245
+ fromState: "String",
2246
+ toState: "String"
2247
+ },
2248
+ PaymentStateTransitionError: {
2249
+ errorCode: "ErrorCode",
2250
+ message: "String",
2251
+ transitionError: "String",
2252
+ fromState: "String",
2253
+ toState: "String"
2254
+ },
2255
+ FulfillmentStateTransitionError: {
2256
+ errorCode: "ErrorCode",
2257
+ message: "String",
2258
+ transitionError: "String",
2259
+ fromState: "String",
2260
+ toState: "String"
2261
+ },
2262
+ OrderModificationStateError: {
2263
+ errorCode: "ErrorCode",
2264
+ message: "String"
2265
+ },
2266
+ NoChangesSpecifiedError: {
2267
+ errorCode: "ErrorCode",
2268
+ message: "String"
2269
+ },
2270
+ PaymentMethodMissingError: {
2271
+ errorCode: "ErrorCode",
2272
+ message: "String"
2273
+ },
2274
+ RefundPaymentIdMissingError: {
2275
+ errorCode: "ErrorCode",
2276
+ message: "String"
2277
+ },
2278
+ ManualPaymentStateError: {
2279
+ errorCode: "ErrorCode",
2280
+ message: "String"
2281
+ },
2282
+ TransitionOrderToStateResult: {
2283
+ "...on Order": "Order",
2284
+ "...on OrderStateTransitionError": "OrderStateTransitionError"
2285
+ },
2286
+ SettlePaymentResult: {
2287
+ "...on Payment": "Payment",
2288
+ "...on SettlePaymentError": "SettlePaymentError",
2289
+ "...on PaymentStateTransitionError": "PaymentStateTransitionError",
2290
+ "...on OrderStateTransitionError": "OrderStateTransitionError"
2291
+ },
2292
+ CancelPaymentResult: {
2293
+ "...on Payment": "Payment",
2294
+ "...on CancelPaymentError": "CancelPaymentError",
2295
+ "...on PaymentStateTransitionError": "PaymentStateTransitionError"
2296
+ },
2297
+ AddFulfillmentToOrderResult: {
2298
+ "...on Fulfillment": "Fulfillment",
2299
+ "...on EmptyOrderLineSelectionError": "EmptyOrderLineSelectionError",
2300
+ "...on ItemsAlreadyFulfilledError": "ItemsAlreadyFulfilledError",
2301
+ "...on InsufficientStockOnHandError": "InsufficientStockOnHandError",
2302
+ "...on InvalidFulfillmentHandlerError": "InvalidFulfillmentHandlerError",
2303
+ "...on FulfillmentStateTransitionError": "FulfillmentStateTransitionError",
2304
+ "...on CreateFulfillmentError": "CreateFulfillmentError"
2305
+ },
2306
+ CancelOrderResult: {
2307
+ "...on Order": "Order",
2308
+ "...on EmptyOrderLineSelectionError": "EmptyOrderLineSelectionError",
2309
+ "...on QuantityTooGreatError": "QuantityTooGreatError",
2310
+ "...on MultipleOrderError": "MultipleOrderError",
2311
+ "...on CancelActiveOrderError": "CancelActiveOrderError",
2312
+ "...on OrderStateTransitionError": "OrderStateTransitionError"
2313
+ },
2314
+ RefundOrderResult: {
2315
+ "...on Refund": "Refund",
2316
+ "...on QuantityTooGreatError": "QuantityTooGreatError",
2317
+ "...on NothingToRefundError": "NothingToRefundError",
2318
+ "...on OrderStateTransitionError": "OrderStateTransitionError",
2319
+ "...on MultipleOrderError": "MultipleOrderError",
2320
+ "...on PaymentOrderMismatchError": "PaymentOrderMismatchError",
2321
+ "...on RefundOrderStateError": "RefundOrderStateError",
2322
+ "...on AlreadyRefundedError": "AlreadyRefundedError",
2323
+ "...on RefundStateTransitionError": "RefundStateTransitionError",
2324
+ "...on RefundAmountError": "RefundAmountError"
2325
+ },
2326
+ SettleRefundResult: {
2327
+ "...on Refund": "Refund",
2328
+ "...on RefundStateTransitionError": "RefundStateTransitionError"
2329
+ },
2330
+ TransitionFulfillmentToStateResult: {
2331
+ "...on Fulfillment": "Fulfillment",
2332
+ "...on FulfillmentStateTransitionError": "FulfillmentStateTransitionError"
2333
+ },
2334
+ TransitionPaymentToStateResult: {
2335
+ "...on Payment": "Payment",
2336
+ "...on PaymentStateTransitionError": "PaymentStateTransitionError"
2337
+ },
2338
+ ModifyOrderResult: {
2339
+ "...on Order": "Order",
2340
+ "...on NoChangesSpecifiedError": "NoChangesSpecifiedError",
2341
+ "...on OrderModificationStateError": "OrderModificationStateError",
2342
+ "...on PaymentMethodMissingError": "PaymentMethodMissingError",
2343
+ "...on RefundPaymentIdMissingError": "RefundPaymentIdMissingError",
2344
+ "...on OrderLimitError": "OrderLimitError",
2345
+ "...on NegativeQuantityError": "NegativeQuantityError",
2346
+ "...on InsufficientStockError": "InsufficientStockError",
2347
+ "...on CouponCodeExpiredError": "CouponCodeExpiredError",
2348
+ "...on CouponCodeInvalidError": "CouponCodeInvalidError",
2349
+ "...on CouponCodeLimitError": "CouponCodeLimitError",
2350
+ "...on IneligibleShippingMethodError": "IneligibleShippingMethodError"
2351
+ },
2352
+ AddManualPaymentToOrderResult: {
2353
+ "...on Order": "Order",
2354
+ "...on ManualPaymentStateError": "ManualPaymentStateError"
2355
+ },
2356
+ SetCustomerForDraftOrderResult: {
2357
+ "...on Order": "Order",
2358
+ "...on EmailAddressConflictError": "EmailAddressConflictError"
2359
+ },
2360
+ PaymentMethodList: {
2361
+ items: "PaymentMethod",
2362
+ totalItems: "Int"
2363
+ },
2364
+ Product: {
2365
+ channels: "Channel",
2366
+ id: "ID",
2367
+ createdAt: "DateTime",
2368
+ updatedAt: "DateTime",
2369
+ languageCode: "LanguageCode",
2370
+ name: "String",
2371
+ slug: "String",
2372
+ description: "String",
2373
+ enabled: "Boolean",
2374
+ featuredAsset: "Asset",
2375
+ assets: "Asset",
2376
+ variants: "ProductVariant",
2377
+ variantList: "ProductVariantList",
2378
+ optionGroups: "ProductOptionGroup",
2379
+ facetValues: "FacetValue",
2380
+ translations: "ProductTranslation",
2381
+ collections: "Collection",
2382
+ customFields: "JSON"
2383
+ },
2384
+ ProductVariantPrice: {
2385
+ currencyCode: "CurrencyCode",
2386
+ price: "Money",
2387
+ customFields: "JSON"
2388
+ },
2389
+ ProductVariant: {
2390
+ enabled: "Boolean",
2391
+ trackInventory: "GlobalFlag",
2392
+ stockOnHand: "Int",
2393
+ stockAllocated: "Int",
2394
+ outOfStockThreshold: "Int",
2395
+ useGlobalOutOfStockThreshold: "Boolean",
2396
+ prices: "ProductVariantPrice",
2397
+ stockLevels: "StockLevel",
2398
+ stockMovements: "StockMovementList",
2399
+ channels: "Channel",
2400
+ id: "ID",
2401
+ product: "Product",
2402
+ productId: "ID",
2403
+ createdAt: "DateTime",
2404
+ updatedAt: "DateTime",
2405
+ languageCode: "LanguageCode",
2406
+ sku: "String",
2407
+ name: "String",
2408
+ featuredAsset: "Asset",
2409
+ assets: "Asset",
2410
+ price: "Money",
2411
+ currencyCode: "CurrencyCode",
2412
+ priceWithTax: "Money",
2413
+ stockLevel: "String",
2414
+ taxRateApplied: "TaxRate",
2415
+ taxCategory: "TaxCategory",
2416
+ options: "ProductOption",
2417
+ facetValues: "FacetValue",
2418
+ translations: "ProductVariantTranslation",
2419
+ customFields: "JSON"
2420
+ },
2421
+ SearchResult: {
2422
+ enabled: "Boolean",
2423
+ channelIds: "ID",
2424
+ sku: "String",
2425
+ slug: "String",
2426
+ productId: "ID",
2427
+ productName: "String",
2428
+ productAsset: "SearchResultAsset",
2429
+ productVariantId: "ID",
2430
+ productVariantName: "String",
2431
+ productVariantAsset: "SearchResultAsset",
2432
+ price: "SearchResultPrice",
2433
+ priceWithTax: "SearchResultPrice",
2434
+ currencyCode: "CurrencyCode",
2435
+ description: "String",
2436
+ facetIds: "ID",
2437
+ facetValueIds: "ID",
2438
+ collectionIds: "ID",
2439
+ score: "Float"
2440
+ },
2441
+ ProductOptionInUseError: {
2442
+ errorCode: "ErrorCode",
2443
+ message: "String",
2444
+ optionGroupCode: "String",
2445
+ productVariantCount: "Int"
2446
+ },
2447
+ RemoveOptionGroupFromProductResult: {
2448
+ "...on Product": "Product",
2449
+ "...on ProductOptionInUseError": "ProductOptionInUseError"
2450
+ },
2451
+ MissingConditionsError: {
2452
+ errorCode: "ErrorCode",
2453
+ message: "String"
2454
+ },
2455
+ CreatePromotionResult: {
2456
+ "...on Promotion": "Promotion",
2457
+ "...on MissingConditionsError": "MissingConditionsError"
2458
+ },
2459
+ UpdatePromotionResult: {
2460
+ "...on Promotion": "Promotion",
2461
+ "...on MissingConditionsError": "MissingConditionsError"
2462
+ },
2463
+ SellerList: {
2464
+ items: "Seller",
2465
+ totalItems: "Int"
2466
+ },
2467
+ TestShippingMethodResult: {
2468
+ eligible: "Boolean",
2469
+ quote: "TestShippingMethodQuote"
2470
+ },
2471
+ TestShippingMethodQuote: {
2472
+ price: "Money",
2473
+ priceWithTax: "Money",
2474
+ metadata: "JSON"
2475
+ },
2476
+ StockLevel: {
2477
+ id: "ID",
2478
+ createdAt: "DateTime",
2479
+ updatedAt: "DateTime",
2480
+ stockLocationId: "ID",
2481
+ stockOnHand: "Int",
2482
+ stockAllocated: "Int",
2483
+ stockLocation: "StockLocation"
2484
+ },
2485
+ StockLocationList: {
2486
+ items: "StockLocation",
2487
+ totalItems: "Int"
2488
+ },
2489
+ StockLocation: {
2490
+ id: "ID",
2491
+ createdAt: "DateTime",
2492
+ updatedAt: "DateTime",
2493
+ name: "String",
2494
+ description: "String",
2495
+ customFields: "JSON"
2496
+ },
2497
+ StockMovement: {
2498
+ "...on StockAdjustment": "StockAdjustment",
2499
+ "...on Allocation": "Allocation",
2500
+ "...on Sale": "Sale",
2501
+ "...on Cancellation": "Cancellation",
2502
+ "...on Return": "Return",
2503
+ "...on Release": "Release",
2504
+ id: "ID",
2505
+ createdAt: "DateTime",
2506
+ updatedAt: "DateTime",
2507
+ productVariant: "ProductVariant",
2508
+ type: "StockMovementType",
2509
+ quantity: "Int"
2510
+ },
2511
+ StockAdjustment: {
2512
+ id: "ID",
2513
+ createdAt: "DateTime",
2514
+ updatedAt: "DateTime",
2515
+ productVariant: "ProductVariant",
2516
+ type: "StockMovementType",
2517
+ quantity: "Int"
2518
+ },
2519
+ Allocation: {
2520
+ id: "ID",
2521
+ createdAt: "DateTime",
2522
+ updatedAt: "DateTime",
2523
+ productVariant: "ProductVariant",
2524
+ type: "StockMovementType",
2525
+ quantity: "Int",
2526
+ orderLine: "OrderLine"
2527
+ },
2528
+ Sale: {
2529
+ id: "ID",
2530
+ createdAt: "DateTime",
2531
+ updatedAt: "DateTime",
2532
+ productVariant: "ProductVariant",
2533
+ type: "StockMovementType",
2534
+ quantity: "Int"
2535
+ },
2536
+ Cancellation: {
2537
+ id: "ID",
2538
+ createdAt: "DateTime",
2539
+ updatedAt: "DateTime",
2540
+ productVariant: "ProductVariant",
2541
+ type: "StockMovementType",
2542
+ quantity: "Int",
2543
+ orderLine: "OrderLine"
2544
+ },
2545
+ Return: {
2546
+ id: "ID",
2547
+ createdAt: "DateTime",
2548
+ updatedAt: "DateTime",
2549
+ productVariant: "ProductVariant",
2550
+ type: "StockMovementType",
2551
+ quantity: "Int"
2552
+ },
2553
+ Release: {
2554
+ id: "ID",
2555
+ createdAt: "DateTime",
2556
+ updatedAt: "DateTime",
2557
+ productVariant: "ProductVariant",
2558
+ type: "StockMovementType",
2559
+ quantity: "Int"
2560
+ },
2561
+ StockMovementItem: {
2562
+ "...on StockAdjustment": "StockAdjustment",
2563
+ "...on Allocation": "Allocation",
2564
+ "...on Sale": "Sale",
2565
+ "...on Cancellation": "Cancellation",
2566
+ "...on Return": "Return",
2567
+ "...on Release": "Release"
2568
+ },
2569
+ StockMovementList: {
2570
+ items: "StockMovementItem",
2571
+ totalItems: "Int"
2572
+ },
2573
+ TaxCategoryList: {
2574
+ items: "TaxCategory",
2575
+ totalItems: "Int"
2576
+ },
2577
+ ZoneList: {
2578
+ items: "Zone",
2579
+ totalItems: "Int"
2580
+ },
2581
+ Address: {
2582
+ id: "ID",
2583
+ createdAt: "DateTime",
2584
+ updatedAt: "DateTime",
2585
+ fullName: "String",
2586
+ company: "String",
2587
+ streetLine1: "String",
2588
+ streetLine2: "String",
2589
+ city: "String",
2590
+ province: "String",
2591
+ postalCode: "String",
2592
+ country: "Country",
2593
+ phoneNumber: "String",
2594
+ defaultShippingAddress: "Boolean",
2595
+ defaultBillingAddress: "Boolean",
2596
+ customFields: "JSON"
2597
+ },
2598
+ Asset: {
2599
+ id: "ID",
2600
+ createdAt: "DateTime",
2601
+ updatedAt: "DateTime",
2602
+ name: "String",
2603
+ type: "AssetType",
2604
+ fileSize: "Int",
2605
+ mimeType: "String",
2606
+ width: "Int",
2607
+ height: "Int",
2608
+ source: "String",
2609
+ preview: "String",
2610
+ focalPoint: "Coordinate",
2611
+ tags: "Tag",
2612
+ customFields: "JSON"
2613
+ },
2614
+ Coordinate: {
2615
+ x: "Float",
2616
+ y: "Float"
2617
+ },
2618
+ AssetList: {
2619
+ items: "Asset",
2620
+ totalItems: "Int"
2621
+ },
2622
+ CurrentUser: {
2623
+ id: "ID",
2624
+ identifier: "String",
2625
+ channels: "CurrentUserChannel"
2626
+ },
2627
+ CurrentUserChannel: {
2628
+ id: "ID",
2629
+ token: "String",
2630
+ code: "String",
2631
+ permissions: "Permission"
2632
+ },
2633
+ Channel: {
2634
+ id: "ID",
2635
+ createdAt: "DateTime",
2636
+ updatedAt: "DateTime",
2637
+ code: "String",
2638
+ token: "String",
2639
+ defaultTaxZone: "Zone",
2640
+ defaultShippingZone: "Zone",
2641
+ defaultLanguageCode: "LanguageCode",
2642
+ availableLanguageCodes: "LanguageCode",
2643
+ currencyCode: "CurrencyCode",
2644
+ defaultCurrencyCode: "CurrencyCode",
2645
+ availableCurrencyCodes: "CurrencyCode",
2646
+ trackInventory: "Boolean",
2647
+ outOfStockThreshold: "Int",
2648
+ pricesIncludeTax: "Boolean",
2649
+ seller: "Seller",
2650
+ customFields: "JSON"
2651
+ },
2652
+ CollectionBreadcrumb: {
2653
+ id: "ID",
2654
+ name: "String",
2655
+ slug: "String"
2656
+ },
2657
+ CollectionTranslation: {
2658
+ id: "ID",
2659
+ createdAt: "DateTime",
2660
+ updatedAt: "DateTime",
2661
+ languageCode: "LanguageCode",
2662
+ name: "String",
2663
+ slug: "String",
2664
+ description: "String"
2665
+ },
2666
+ CollectionList: {
2667
+ items: "Collection",
2668
+ totalItems: "Int"
2669
+ },
2670
+ NativeAuthStrategyError: {
2671
+ errorCode: "ErrorCode",
2672
+ message: "String"
2673
+ },
2674
+ InvalidCredentialsError: {
2675
+ errorCode: "ErrorCode",
2676
+ message: "String",
2677
+ authenticationError: "String"
2678
+ },
2679
+ OrderStateTransitionError: {
2680
+ errorCode: "ErrorCode",
2681
+ message: "String",
2682
+ transitionError: "String",
2683
+ fromState: "String",
2684
+ toState: "String"
2685
+ },
2686
+ EmailAddressConflictError: {
2687
+ errorCode: "ErrorCode",
2688
+ message: "String"
2689
+ },
2690
+ GuestCheckoutError: {
2691
+ errorCode: "ErrorCode",
2692
+ message: "String",
2693
+ errorDetail: "String"
2694
+ },
2695
+ OrderLimitError: {
2696
+ errorCode: "ErrorCode",
2697
+ message: "String",
2698
+ maxItems: "Int"
2699
+ },
2700
+ NegativeQuantityError: {
2701
+ errorCode: "ErrorCode",
2702
+ message: "String"
2703
+ },
2704
+ InsufficientStockError: {
2705
+ errorCode: "ErrorCode",
2706
+ message: "String",
2707
+ quantityAvailable: "Int",
2708
+ order: "Order"
2709
+ },
2710
+ CouponCodeInvalidError: {
2711
+ errorCode: "ErrorCode",
2712
+ message: "String",
2713
+ couponCode: "String"
2714
+ },
2715
+ CouponCodeExpiredError: {
2716
+ errorCode: "ErrorCode",
2717
+ message: "String",
2718
+ couponCode: "String"
2719
+ },
2720
+ CouponCodeLimitError: {
2721
+ errorCode: "ErrorCode",
2722
+ message: "String",
2723
+ couponCode: "String",
2724
+ limit: "Int"
2725
+ },
2726
+ OrderModificationError: {
2727
+ errorCode: "ErrorCode",
2728
+ message: "String"
2729
+ },
2730
+ IneligibleShippingMethodError: {
2731
+ errorCode: "ErrorCode",
2732
+ message: "String"
2733
+ },
2734
+ NoActiveOrderError: {
2735
+ errorCode: "ErrorCode",
2736
+ message: "String"
2737
+ },
2738
+ OrderMiddlewareError: {
2739
+ errorCode: "ErrorCode",
2740
+ message: "String",
2741
+ middlewareError: "String"
2742
+ },
2743
+ JSON: `scalar.JSON`,
2744
+ DateTime: `scalar.DateTime`,
2745
+ Upload: `scalar.Upload`,
2746
+ Money: `scalar.Money`,
2747
+ PaginatedList: {
2748
+ "...on AdministratorList": "AdministratorList",
2749
+ "...on ChannelList": "ChannelList",
2750
+ "...on CustomerGroupList": "CustomerGroupList",
2751
+ "...on JobList": "JobList",
2752
+ "...on PaymentMethodList": "PaymentMethodList",
2753
+ "...on SellerList": "SellerList",
2754
+ "...on StockLocationList": "StockLocationList",
2755
+ "...on TaxCategoryList": "TaxCategoryList",
2756
+ "...on ZoneList": "ZoneList",
2757
+ "...on AssetList": "AssetList",
2758
+ "...on CollectionList": "CollectionList",
2759
+ "...on CustomerList": "CustomerList",
2760
+ "...on FacetList": "FacetList",
2761
+ "...on FacetValueList": "FacetValueList",
2762
+ "...on HistoryEntryList": "HistoryEntryList",
2763
+ "...on OrderList": "OrderList",
2764
+ "...on ProductList": "ProductList",
2765
+ "...on ProductVariantList": "ProductVariantList",
2766
+ "...on PromotionList": "PromotionList",
2767
+ "...on CountryList": "CountryList",
2768
+ "...on ProvinceList": "ProvinceList",
2769
+ "...on RoleList": "RoleList",
2770
+ "...on ShippingMethodList": "ShippingMethodList",
2771
+ "...on TagList": "TagList",
2772
+ "...on TaxRateList": "TaxRateList",
2773
+ items: "Node",
2774
+ totalItems: "Int"
2775
+ },
2776
+ Node: {
2777
+ "...on Administrator": "Administrator",
2778
+ "...on Collection": "Collection",
2779
+ "...on Customer": "Customer",
2780
+ "...on Facet": "Facet",
2781
+ "...on HistoryEntry": "HistoryEntry",
2782
+ "...on Job": "Job",
2783
+ "...on Order": "Order",
2784
+ "...on Fulfillment": "Fulfillment",
2785
+ "...on Payment": "Payment",
2786
+ "...on OrderModification": "OrderModification",
2787
+ "...on Product": "Product",
2788
+ "...on ProductVariant": "ProductVariant",
2789
+ "...on StockLevel": "StockLevel",
2790
+ "...on StockLocation": "StockLocation",
2791
+ "...on StockAdjustment": "StockAdjustment",
2792
+ "...on Allocation": "Allocation",
2793
+ "...on Sale": "Sale",
2794
+ "...on Cancellation": "Cancellation",
2795
+ "...on Return": "Return",
2796
+ "...on Release": "Release",
2797
+ "...on Address": "Address",
2798
+ "...on Asset": "Asset",
2799
+ "...on Channel": "Channel",
2800
+ "...on CustomerGroup": "CustomerGroup",
2801
+ "...on FacetValue": "FacetValue",
2802
+ "...on OrderLine": "OrderLine",
2803
+ "...on Refund": "Refund",
2804
+ "...on Surcharge": "Surcharge",
2805
+ "...on PaymentMethod": "PaymentMethod",
2806
+ "...on ProductOptionGroup": "ProductOptionGroup",
2807
+ "...on ProductOption": "ProductOption",
2808
+ "...on Promotion": "Promotion",
2809
+ "...on Region": "Region",
2810
+ "...on Country": "Country",
2811
+ "...on Province": "Province",
2812
+ "...on Role": "Role",
2813
+ "...on Seller": "Seller",
2814
+ "...on ShippingMethod": "ShippingMethod",
2815
+ "...on Tag": "Tag",
2816
+ "...on TaxCategory": "TaxCategory",
2817
+ "...on TaxRate": "TaxRate",
2818
+ "...on User": "User",
2819
+ "...on AuthenticationMethod": "AuthenticationMethod",
2820
+ "...on Zone": "Zone",
2821
+ id: "ID"
2822
+ },
2823
+ ErrorResult: {
2824
+ "...on MimeTypeError": "MimeTypeError",
2825
+ "...on LanguageNotAvailableError": "LanguageNotAvailableError",
2826
+ "...on DuplicateEntityError": "DuplicateEntityError",
2827
+ "...on FacetInUseError": "FacetInUseError",
2828
+ "...on ChannelDefaultLanguageError": "ChannelDefaultLanguageError",
2829
+ "...on SettlePaymentError": "SettlePaymentError",
2830
+ "...on CancelPaymentError": "CancelPaymentError",
2831
+ "...on EmptyOrderLineSelectionError": "EmptyOrderLineSelectionError",
2832
+ "...on ItemsAlreadyFulfilledError": "ItemsAlreadyFulfilledError",
2833
+ "...on InvalidFulfillmentHandlerError": "InvalidFulfillmentHandlerError",
2834
+ "...on CreateFulfillmentError": "CreateFulfillmentError",
2835
+ "...on InsufficientStockOnHandError": "InsufficientStockOnHandError",
2836
+ "...on MultipleOrderError": "MultipleOrderError",
2837
+ "...on CancelActiveOrderError": "CancelActiveOrderError",
2838
+ "...on PaymentOrderMismatchError": "PaymentOrderMismatchError",
2839
+ "...on RefundOrderStateError": "RefundOrderStateError",
2840
+ "...on NothingToRefundError": "NothingToRefundError",
2841
+ "...on AlreadyRefundedError": "AlreadyRefundedError",
2842
+ "...on QuantityTooGreatError": "QuantityTooGreatError",
2843
+ "...on RefundAmountError": "RefundAmountError",
2844
+ "...on RefundStateTransitionError": "RefundStateTransitionError",
2845
+ "...on PaymentStateTransitionError": "PaymentStateTransitionError",
2846
+ "...on FulfillmentStateTransitionError": "FulfillmentStateTransitionError",
2847
+ "...on OrderModificationStateError": "OrderModificationStateError",
2848
+ "...on NoChangesSpecifiedError": "NoChangesSpecifiedError",
2849
+ "...on PaymentMethodMissingError": "PaymentMethodMissingError",
2850
+ "...on RefundPaymentIdMissingError": "RefundPaymentIdMissingError",
2851
+ "...on ManualPaymentStateError": "ManualPaymentStateError",
2852
+ "...on ProductOptionInUseError": "ProductOptionInUseError",
2853
+ "...on MissingConditionsError": "MissingConditionsError",
2854
+ "...on NativeAuthStrategyError": "NativeAuthStrategyError",
2855
+ "...on InvalidCredentialsError": "InvalidCredentialsError",
2856
+ "...on OrderStateTransitionError": "OrderStateTransitionError",
2857
+ "...on EmailAddressConflictError": "EmailAddressConflictError",
2858
+ "...on GuestCheckoutError": "GuestCheckoutError",
2859
+ "...on OrderLimitError": "OrderLimitError",
2860
+ "...on NegativeQuantityError": "NegativeQuantityError",
2861
+ "...on InsufficientStockError": "InsufficientStockError",
2862
+ "...on CouponCodeInvalidError": "CouponCodeInvalidError",
2863
+ "...on CouponCodeExpiredError": "CouponCodeExpiredError",
2864
+ "...on CouponCodeLimitError": "CouponCodeLimitError",
2865
+ "...on OrderModificationError": "OrderModificationError",
2866
+ "...on IneligibleShippingMethodError": "IneligibleShippingMethodError",
2867
+ "...on NoActiveOrderError": "NoActiveOrderError",
2868
+ "...on OrderMiddlewareError": "OrderMiddlewareError",
2869
+ errorCode: "ErrorCode",
2870
+ message: "String"
2871
+ },
2872
+ Adjustment: {
2873
+ adjustmentSource: "String",
2874
+ type: "AdjustmentType",
2875
+ description: "String",
2876
+ amount: "Money",
2877
+ data: "JSON"
2878
+ },
2879
+ TaxLine: {
2880
+ description: "String",
2881
+ taxRate: "Float"
2882
+ },
2883
+ ConfigArg: {
2884
+ name: "String",
2885
+ value: "String"
2886
+ },
2887
+ ConfigArgDefinition: {
2888
+ name: "String",
2889
+ type: "String",
2890
+ list: "Boolean",
2891
+ required: "Boolean",
2892
+ defaultValue: "JSON",
2893
+ label: "String",
2894
+ description: "String",
2895
+ ui: "JSON"
2896
+ },
2897
+ ConfigurableOperation: {
2898
+ code: "String",
2899
+ args: "ConfigArg"
2900
+ },
2901
+ ConfigurableOperationDefinition: {
2902
+ code: "String",
2903
+ args: "ConfigArgDefinition",
2904
+ description: "String"
2905
+ },
2906
+ DeletionResponse: {
2907
+ result: "DeletionResult",
2908
+ message: "String"
2909
+ },
2910
+ Success: {
2911
+ success: "Boolean"
2912
+ },
2913
+ ShippingMethodQuote: {
2914
+ id: "ID",
2915
+ price: "Money",
2916
+ priceWithTax: "Money",
2917
+ code: "String",
2918
+ name: "String",
2919
+ description: "String",
2920
+ metadata: "JSON",
2921
+ customFields: "JSON"
2922
+ },
2923
+ PaymentMethodQuote: {
2924
+ id: "ID",
2925
+ code: "String",
2926
+ name: "String",
2927
+ description: "String",
2928
+ isEligible: "Boolean",
2929
+ eligibilityMessage: "String",
2930
+ customFields: "JSON"
2931
+ },
2932
+ UpdateOrderItemsResult: {
2933
+ "...on Order": "Order",
2934
+ "...on OrderModificationError": "OrderModificationError",
2935
+ "...on OrderLimitError": "OrderLimitError",
2936
+ "...on NegativeQuantityError": "NegativeQuantityError",
2937
+ "...on InsufficientStockError": "InsufficientStockError",
2938
+ "...on OrderMiddlewareError": "OrderMiddlewareError"
2939
+ },
2940
+ RemoveOrderItemsResult: {
2941
+ "...on Order": "Order",
2942
+ "...on OrderModificationError": "OrderModificationError",
2943
+ "...on OrderMiddlewareError": "OrderMiddlewareError"
2944
+ },
2945
+ SetOrderShippingMethodResult: {
2946
+ "...on Order": "Order",
2947
+ "...on OrderModificationError": "OrderModificationError",
2948
+ "...on IneligibleShippingMethodError": "IneligibleShippingMethodError",
2949
+ "...on NoActiveOrderError": "NoActiveOrderError"
2950
+ },
2951
+ ApplyCouponCodeResult: {
2952
+ "...on Order": "Order",
2953
+ "...on CouponCodeExpiredError": "CouponCodeExpiredError",
2954
+ "...on CouponCodeInvalidError": "CouponCodeInvalidError",
2955
+ "...on CouponCodeLimitError": "CouponCodeLimitError",
2956
+ "...on OrderMiddlewareError": "OrderMiddlewareError"
2957
+ },
2958
+ CustomField: {
2959
+ "...on StringCustomFieldConfig": "StringCustomFieldConfig",
2960
+ "...on LocaleStringCustomFieldConfig": "LocaleStringCustomFieldConfig",
2961
+ "...on IntCustomFieldConfig": "IntCustomFieldConfig",
2962
+ "...on FloatCustomFieldConfig": "FloatCustomFieldConfig",
2963
+ "...on BooleanCustomFieldConfig": "BooleanCustomFieldConfig",
2964
+ "...on DateTimeCustomFieldConfig": "DateTimeCustomFieldConfig",
2965
+ "...on RelationCustomFieldConfig": "RelationCustomFieldConfig",
2966
+ "...on TextCustomFieldConfig": "TextCustomFieldConfig",
2967
+ "...on LocaleTextCustomFieldConfig": "LocaleTextCustomFieldConfig",
2968
+ name: "String",
2969
+ type: "String",
2970
+ list: "Boolean",
2971
+ label: "LocalizedString",
2972
+ description: "LocalizedString",
2973
+ readonly: "Boolean",
2974
+ internal: "Boolean",
2975
+ nullable: "Boolean",
2976
+ requiresPermission: "Permission",
2977
+ ui: "JSON"
2978
+ },
2979
+ StringCustomFieldConfig: {
2980
+ name: "String",
2981
+ type: "String",
2982
+ list: "Boolean",
2983
+ length: "Int",
2984
+ label: "LocalizedString",
2985
+ description: "LocalizedString",
2986
+ readonly: "Boolean",
2987
+ internal: "Boolean",
2988
+ nullable: "Boolean",
2989
+ requiresPermission: "Permission",
2990
+ pattern: "String",
2991
+ options: "StringFieldOption",
2992
+ ui: "JSON"
2993
+ },
2994
+ StringFieldOption: {
2995
+ value: "String",
2996
+ label: "LocalizedString"
2997
+ },
2998
+ LocaleStringCustomFieldConfig: {
2999
+ name: "String",
3000
+ type: "String",
3001
+ list: "Boolean",
3002
+ length: "Int",
3003
+ label: "LocalizedString",
3004
+ description: "LocalizedString",
3005
+ readonly: "Boolean",
3006
+ internal: "Boolean",
3007
+ nullable: "Boolean",
3008
+ requiresPermission: "Permission",
3009
+ pattern: "String",
3010
+ ui: "JSON"
3011
+ },
3012
+ IntCustomFieldConfig: {
3013
+ name: "String",
3014
+ type: "String",
3015
+ list: "Boolean",
3016
+ label: "LocalizedString",
3017
+ description: "LocalizedString",
3018
+ readonly: "Boolean",
3019
+ internal: "Boolean",
3020
+ nullable: "Boolean",
3021
+ requiresPermission: "Permission",
3022
+ min: "Int",
3023
+ max: "Int",
3024
+ step: "Int",
3025
+ ui: "JSON"
3026
+ },
3027
+ FloatCustomFieldConfig: {
3028
+ name: "String",
3029
+ type: "String",
3030
+ list: "Boolean",
3031
+ label: "LocalizedString",
3032
+ description: "LocalizedString",
3033
+ readonly: "Boolean",
3034
+ internal: "Boolean",
3035
+ nullable: "Boolean",
3036
+ requiresPermission: "Permission",
3037
+ min: "Float",
3038
+ max: "Float",
3039
+ step: "Float",
3040
+ ui: "JSON"
3041
+ },
3042
+ BooleanCustomFieldConfig: {
3043
+ name: "String",
3044
+ type: "String",
3045
+ list: "Boolean",
3046
+ label: "LocalizedString",
3047
+ description: "LocalizedString",
3048
+ readonly: "Boolean",
3049
+ internal: "Boolean",
3050
+ nullable: "Boolean",
3051
+ requiresPermission: "Permission",
3052
+ ui: "JSON"
3053
+ },
3054
+ DateTimeCustomFieldConfig: {
3055
+ name: "String",
3056
+ type: "String",
3057
+ list: "Boolean",
3058
+ label: "LocalizedString",
3059
+ description: "LocalizedString",
3060
+ readonly: "Boolean",
3061
+ internal: "Boolean",
3062
+ nullable: "Boolean",
3063
+ requiresPermission: "Permission",
3064
+ min: "String",
3065
+ max: "String",
3066
+ step: "Int",
3067
+ ui: "JSON"
3068
+ },
3069
+ RelationCustomFieldConfig: {
3070
+ name: "String",
3071
+ type: "String",
3072
+ list: "Boolean",
3073
+ label: "LocalizedString",
3074
+ description: "LocalizedString",
3075
+ readonly: "Boolean",
3076
+ internal: "Boolean",
3077
+ nullable: "Boolean",
3078
+ requiresPermission: "Permission",
3079
+ entity: "String",
3080
+ scalarFields: "String",
3081
+ ui: "JSON"
3082
+ },
3083
+ TextCustomFieldConfig: {
3084
+ name: "String",
3085
+ type: "String",
3086
+ list: "Boolean",
3087
+ label: "LocalizedString",
3088
+ description: "LocalizedString",
3089
+ readonly: "Boolean",
3090
+ internal: "Boolean",
3091
+ nullable: "Boolean",
3092
+ requiresPermission: "Permission",
3093
+ ui: "JSON"
3094
+ },
3095
+ LocaleTextCustomFieldConfig: {
3096
+ name: "String",
3097
+ type: "String",
3098
+ list: "Boolean",
3099
+ label: "LocalizedString",
3100
+ description: "LocalizedString",
3101
+ readonly: "Boolean",
3102
+ internal: "Boolean",
3103
+ nullable: "Boolean",
3104
+ requiresPermission: "Permission",
3105
+ ui: "JSON"
3106
+ },
3107
+ LocalizedString: {
3108
+ languageCode: "LanguageCode",
3109
+ value: "String"
3110
+ },
3111
+ CustomFieldConfig: {
3112
+ "...on StringCustomFieldConfig": "StringCustomFieldConfig",
3113
+ "...on LocaleStringCustomFieldConfig": "LocaleStringCustomFieldConfig",
3114
+ "...on IntCustomFieldConfig": "IntCustomFieldConfig",
3115
+ "...on FloatCustomFieldConfig": "FloatCustomFieldConfig",
3116
+ "...on BooleanCustomFieldConfig": "BooleanCustomFieldConfig",
3117
+ "...on DateTimeCustomFieldConfig": "DateTimeCustomFieldConfig",
3118
+ "...on RelationCustomFieldConfig": "RelationCustomFieldConfig",
3119
+ "...on TextCustomFieldConfig": "TextCustomFieldConfig",
3120
+ "...on LocaleTextCustomFieldConfig": "LocaleTextCustomFieldConfig"
3121
+ },
3122
+ CustomerGroup: {
3123
+ id: "ID",
3124
+ createdAt: "DateTime",
3125
+ updatedAt: "DateTime",
3126
+ name: "String",
3127
+ customers: "CustomerList",
3128
+ customFields: "JSON"
3129
+ },
3130
+ CustomerList: {
3131
+ items: "Customer",
3132
+ totalItems: "Int"
3133
+ },
3134
+ FacetValue: {
3135
+ id: "ID",
3136
+ createdAt: "DateTime",
3137
+ updatedAt: "DateTime",
3138
+ languageCode: "LanguageCode",
3139
+ facet: "Facet",
3140
+ facetId: "ID",
3141
+ name: "String",
3142
+ code: "String",
3143
+ translations: "FacetValueTranslation",
3144
+ customFields: "JSON"
3145
+ },
3146
+ FacetValueTranslation: {
3147
+ id: "ID",
3148
+ createdAt: "DateTime",
3149
+ updatedAt: "DateTime",
3150
+ languageCode: "LanguageCode",
3151
+ name: "String"
3152
+ },
3153
+ FacetTranslation: {
3154
+ id: "ID",
3155
+ createdAt: "DateTime",
3156
+ updatedAt: "DateTime",
3157
+ languageCode: "LanguageCode",
3158
+ name: "String"
3159
+ },
3160
+ FacetList: {
3161
+ items: "Facet",
3162
+ totalItems: "Int"
3163
+ },
3164
+ FacetValueList: {
3165
+ items: "FacetValue",
3166
+ totalItems: "Int"
3167
+ },
3168
+ HistoryEntryList: {
3169
+ items: "HistoryEntry",
3170
+ totalItems: "Int"
3171
+ },
3172
+ OrderTaxSummary: {
3173
+ description: "String",
3174
+ taxRate: "Float",
3175
+ taxBase: "Money",
3176
+ taxTotal: "Money"
3177
+ },
3178
+ OrderAddress: {
3179
+ fullName: "String",
3180
+ company: "String",
3181
+ streetLine1: "String",
3182
+ streetLine2: "String",
3183
+ city: "String",
3184
+ province: "String",
3185
+ postalCode: "String",
3186
+ country: "String",
3187
+ countryCode: "String",
3188
+ phoneNumber: "String",
3189
+ customFields: "JSON"
3190
+ },
3191
+ OrderList: {
3192
+ items: "Order",
3193
+ totalItems: "Int"
3194
+ },
3195
+ ShippingLine: {
3196
+ id: "ID",
3197
+ shippingMethod: "ShippingMethod",
3198
+ price: "Money",
3199
+ priceWithTax: "Money",
3200
+ discountedPrice: "Money",
3201
+ discountedPriceWithTax: "Money",
3202
+ discounts: "Discount"
3203
+ },
3204
+ Discount: {
3205
+ adjustmentSource: "String",
3206
+ type: "AdjustmentType",
3207
+ description: "String",
3208
+ amount: "Money",
3209
+ amountWithTax: "Money"
3210
+ },
3211
+ OrderLine: {
3212
+ id: "ID",
3213
+ createdAt: "DateTime",
3214
+ updatedAt: "DateTime",
3215
+ productVariant: "ProductVariant",
3216
+ featuredAsset: "Asset",
3217
+ unitPrice: "Money",
3218
+ unitPriceWithTax: "Money",
3219
+ unitPriceChangeSinceAdded: "Money",
3220
+ unitPriceWithTaxChangeSinceAdded: "Money",
3221
+ discountedUnitPrice: "Money",
3222
+ discountedUnitPriceWithTax: "Money",
3223
+ proratedUnitPrice: "Money",
3224
+ proratedUnitPriceWithTax: "Money",
3225
+ quantity: "Int",
3226
+ orderPlacedQuantity: "Int",
3227
+ taxRate: "Float",
3228
+ linePrice: "Money",
3229
+ linePriceWithTax: "Money",
3230
+ discountedLinePrice: "Money",
3231
+ discountedLinePriceWithTax: "Money",
3232
+ proratedLinePrice: "Money",
3233
+ proratedLinePriceWithTax: "Money",
3234
+ lineTax: "Money",
3235
+ discounts: "Discount",
3236
+ taxLines: "TaxLine",
3237
+ order: "Order",
3238
+ fulfillmentLines: "FulfillmentLine",
3239
+ customFields: "JSON"
3240
+ },
3241
+ RefundLine: {
3242
+ orderLine: "OrderLine",
3243
+ orderLineId: "ID",
3244
+ quantity: "Int",
3245
+ refund: "Refund",
3246
+ refundId: "ID"
3247
+ },
3248
+ Refund: {
3249
+ id: "ID",
3250
+ createdAt: "DateTime",
3251
+ updatedAt: "DateTime",
3252
+ items: "Money",
3253
+ shipping: "Money",
3254
+ adjustment: "Money",
3255
+ total: "Money",
3256
+ method: "String",
3257
+ state: "String",
3258
+ transactionId: "String",
3259
+ reason: "String",
3260
+ lines: "RefundLine",
3261
+ paymentId: "ID",
3262
+ metadata: "JSON"
3263
+ },
3264
+ FulfillmentLine: {
3265
+ orderLine: "OrderLine",
3266
+ orderLineId: "ID",
3267
+ quantity: "Int",
3268
+ fulfillment: "Fulfillment",
3269
+ fulfillmentId: "ID"
3270
+ },
3271
+ Surcharge: {
3272
+ id: "ID",
3273
+ createdAt: "DateTime",
3274
+ updatedAt: "DateTime",
3275
+ description: "String",
3276
+ sku: "String",
3277
+ taxLines: "TaxLine",
3278
+ price: "Money",
3279
+ priceWithTax: "Money",
3280
+ taxRate: "Float"
3281
+ },
3282
+ PaymentMethod: {
3283
+ id: "ID",
3284
+ createdAt: "DateTime",
3285
+ updatedAt: "DateTime",
3286
+ name: "String",
3287
+ code: "String",
3288
+ description: "String",
3289
+ enabled: "Boolean",
3290
+ checker: "ConfigurableOperation",
3291
+ handler: "ConfigurableOperation",
3292
+ translations: "PaymentMethodTranslation",
3293
+ customFields: "JSON"
3294
+ },
3295
+ PaymentMethodTranslation: {
3296
+ id: "ID",
3297
+ createdAt: "DateTime",
3298
+ updatedAt: "DateTime",
3299
+ languageCode: "LanguageCode",
3300
+ name: "String",
3301
+ description: "String"
3302
+ },
3303
+ ProductOptionGroup: {
3304
+ id: "ID",
3305
+ createdAt: "DateTime",
3306
+ updatedAt: "DateTime",
3307
+ languageCode: "LanguageCode",
3308
+ code: "String",
3309
+ name: "String",
3310
+ options: "ProductOption",
3311
+ translations: "ProductOptionGroupTranslation",
3312
+ customFields: "JSON"
3313
+ },
3314
+ ProductOptionGroupTranslation: {
3315
+ id: "ID",
3316
+ createdAt: "DateTime",
3317
+ updatedAt: "DateTime",
3318
+ languageCode: "LanguageCode",
3319
+ name: "String"
3320
+ },
3321
+ ProductOption: {
3322
+ id: "ID",
3323
+ createdAt: "DateTime",
3324
+ updatedAt: "DateTime",
3325
+ languageCode: "LanguageCode",
3326
+ code: "String",
3327
+ name: "String",
3328
+ groupId: "ID",
3329
+ group: "ProductOptionGroup",
3330
+ translations: "ProductOptionTranslation",
3331
+ customFields: "JSON"
3332
+ },
3333
+ ProductOptionTranslation: {
3334
+ id: "ID",
3335
+ createdAt: "DateTime",
3336
+ updatedAt: "DateTime",
3337
+ languageCode: "LanguageCode",
3338
+ name: "String"
3339
+ },
3340
+ SearchReindexResponse: {
3341
+ success: "Boolean"
3342
+ },
3343
+ SearchResponse: {
3344
+ items: "SearchResult",
3345
+ totalItems: "Int",
3346
+ facetValues: "FacetValueResult",
3347
+ collections: "CollectionResult"
3348
+ },
3349
+ FacetValueResult: {
3350
+ facetValue: "FacetValue",
3351
+ count: "Int"
3352
+ },
3353
+ CollectionResult: {
3354
+ collection: "Collection",
3355
+ count: "Int"
3356
+ },
3357
+ SearchResultAsset: {
3358
+ id: "ID",
3359
+ preview: "String",
3360
+ focalPoint: "Coordinate"
3361
+ },
3362
+ SearchResultPrice: {
3363
+ "...on PriceRange": "PriceRange",
3364
+ "...on SinglePrice": "SinglePrice"
3365
+ },
3366
+ SinglePrice: {
3367
+ value: "Money"
3368
+ },
3369
+ PriceRange: {
3370
+ min: "Money",
3371
+ max: "Money"
3372
+ },
3373
+ ProductTranslation: {
3374
+ id: "ID",
3375
+ createdAt: "DateTime",
3376
+ updatedAt: "DateTime",
3377
+ languageCode: "LanguageCode",
3378
+ name: "String",
3379
+ slug: "String",
3380
+ description: "String"
3381
+ },
3382
+ ProductList: {
3383
+ items: "Product",
3384
+ totalItems: "Int"
3385
+ },
3386
+ ProductVariantList: {
3387
+ items: "ProductVariant",
3388
+ totalItems: "Int"
3389
+ },
3390
+ ProductVariantTranslation: {
3391
+ id: "ID",
3392
+ createdAt: "DateTime",
3393
+ updatedAt: "DateTime",
3394
+ languageCode: "LanguageCode",
3395
+ name: "String"
3396
+ },
3397
+ Promotion: {
3398
+ id: "ID",
3399
+ createdAt: "DateTime",
3400
+ updatedAt: "DateTime",
3401
+ startsAt: "DateTime",
3402
+ endsAt: "DateTime",
3403
+ couponCode: "String",
3404
+ perCustomerUsageLimit: "Int",
3405
+ usageLimit: "Int",
3406
+ name: "String",
3407
+ description: "String",
3408
+ enabled: "Boolean",
3409
+ conditions: "ConfigurableOperation",
3410
+ actions: "ConfigurableOperation",
3411
+ translations: "PromotionTranslation",
3412
+ customFields: "JSON"
3413
+ },
3414
+ PromotionTranslation: {
3415
+ id: "ID",
3416
+ createdAt: "DateTime",
3417
+ updatedAt: "DateTime",
3418
+ languageCode: "LanguageCode",
3419
+ name: "String",
3420
+ description: "String"
3421
+ },
3422
+ PromotionList: {
3423
+ items: "Promotion",
3424
+ totalItems: "Int"
3425
+ },
3426
+ Region: {
3427
+ "...on Country": "Country",
3428
+ "...on Province": "Province",
3429
+ id: "ID",
3430
+ createdAt: "DateTime",
3431
+ updatedAt: "DateTime",
3432
+ languageCode: "LanguageCode",
3433
+ code: "String",
3434
+ type: "String",
3435
+ name: "String",
3436
+ enabled: "Boolean",
3437
+ parent: "Region",
3438
+ parentId: "ID",
3439
+ translations: "RegionTranslation"
3440
+ },
3441
+ RegionTranslation: {
3442
+ id: "ID",
3443
+ createdAt: "DateTime",
3444
+ updatedAt: "DateTime",
3445
+ languageCode: "LanguageCode",
3446
+ name: "String"
3447
+ },
3448
+ Country: {
3449
+ id: "ID",
3450
+ createdAt: "DateTime",
3451
+ updatedAt: "DateTime",
3452
+ languageCode: "LanguageCode",
3453
+ code: "String",
3454
+ type: "String",
3455
+ name: "String",
3456
+ enabled: "Boolean",
3457
+ parent: "Region",
3458
+ parentId: "ID",
3459
+ translations: "RegionTranslation",
3460
+ customFields: "JSON"
3461
+ },
3462
+ CountryList: {
3463
+ items: "Country",
3464
+ totalItems: "Int"
3465
+ },
3466
+ Province: {
3467
+ id: "ID",
3468
+ createdAt: "DateTime",
3469
+ updatedAt: "DateTime",
3470
+ languageCode: "LanguageCode",
3471
+ code: "String",
3472
+ type: "String",
3473
+ name: "String",
3474
+ enabled: "Boolean",
3475
+ parent: "Region",
3476
+ parentId: "ID",
3477
+ translations: "RegionTranslation",
3478
+ customFields: "JSON"
3479
+ },
3480
+ ProvinceList: {
3481
+ items: "Province",
3482
+ totalItems: "Int"
3483
+ },
3484
+ Role: {
3485
+ id: "ID",
3486
+ createdAt: "DateTime",
3487
+ updatedAt: "DateTime",
3488
+ code: "String",
3489
+ description: "String",
3490
+ permissions: "Permission",
3491
+ channels: "Channel"
3492
+ },
3493
+ RoleList: {
3494
+ items: "Role",
3495
+ totalItems: "Int"
3496
+ },
3497
+ Seller: {
3498
+ id: "ID",
3499
+ createdAt: "DateTime",
3500
+ updatedAt: "DateTime",
3501
+ name: "String",
3502
+ customFields: "JSON"
3503
+ },
3504
+ ShippingMethod: {
3505
+ id: "ID",
3506
+ createdAt: "DateTime",
3507
+ updatedAt: "DateTime",
3508
+ languageCode: "LanguageCode",
3509
+ code: "String",
3510
+ name: "String",
3511
+ description: "String",
3512
+ fulfillmentHandlerCode: "String",
3513
+ checker: "ConfigurableOperation",
3514
+ calculator: "ConfigurableOperation",
3515
+ translations: "ShippingMethodTranslation",
3516
+ customFields: "JSON"
3517
+ },
3518
+ ShippingMethodTranslation: {
3519
+ id: "ID",
3520
+ createdAt: "DateTime",
3521
+ updatedAt: "DateTime",
3522
+ languageCode: "LanguageCode",
3523
+ name: "String",
3524
+ description: "String"
3525
+ },
3526
+ ShippingMethodList: {
3527
+ items: "ShippingMethod",
3528
+ totalItems: "Int"
3529
+ },
3530
+ Tag: {
3531
+ id: "ID",
3532
+ createdAt: "DateTime",
3533
+ updatedAt: "DateTime",
3534
+ value: "String"
3535
+ },
3536
+ TagList: {
3537
+ items: "Tag",
3538
+ totalItems: "Int"
3539
+ },
3540
+ TaxCategory: {
3541
+ id: "ID",
3542
+ createdAt: "DateTime",
3543
+ updatedAt: "DateTime",
3544
+ name: "String",
3545
+ isDefault: "Boolean",
3546
+ customFields: "JSON"
3547
+ },
3548
+ TaxRate: {
3549
+ id: "ID",
3550
+ createdAt: "DateTime",
3551
+ updatedAt: "DateTime",
3552
+ name: "String",
3553
+ enabled: "Boolean",
3554
+ value: "Float",
3555
+ category: "TaxCategory",
3556
+ zone: "Zone",
3557
+ customerGroup: "CustomerGroup",
3558
+ customFields: "JSON"
3559
+ },
3560
+ TaxRateList: {
3561
+ items: "TaxRate",
3562
+ totalItems: "Int"
3563
+ },
3564
+ User: {
3565
+ id: "ID",
3566
+ createdAt: "DateTime",
3567
+ updatedAt: "DateTime",
3568
+ identifier: "String",
3569
+ verified: "Boolean",
3570
+ roles: "Role",
3571
+ lastLogin: "DateTime",
3572
+ authenticationMethods: "AuthenticationMethod",
3573
+ customFields: "JSON"
3574
+ },
3575
+ AuthenticationMethod: {
3576
+ id: "ID",
3577
+ createdAt: "DateTime",
3578
+ updatedAt: "DateTime",
3579
+ strategy: "String"
3580
+ },
3581
+ Zone: {
3582
+ id: "ID",
3583
+ createdAt: "DateTime",
3584
+ updatedAt: "DateTime",
3585
+ name: "String",
3586
+ members: "Region",
3587
+ customFields: "JSON"
3588
+ },
3589
+ AdditionalOrderState: {
3590
+ state: "String",
3591
+ selectedByDefault: "Boolean"
3592
+ },
3593
+ ChartDataType: {
3594
+ type: "ChartMetricType",
3595
+ title: "String",
3596
+ entries: "ChartEntry"
3597
+ },
3598
+ ChartMetrics: {
3599
+ data: "ChartDataType"
3600
+ },
3601
+ OrderSummaryMetrics: {
3602
+ data: "OrderSummaryDataMetric"
3603
+ },
3604
+ OrderSummaryDataMetric: {
3605
+ currencyCode: "CurrencyCode",
3606
+ total: "Float",
3607
+ totalWithTax: "Float",
3608
+ orderCount: "Float",
3609
+ averageOrderValue: "Float",
3610
+ averageOrderValueWithTax: "Float",
3611
+ productCount: "Float"
3612
+ },
3613
+ ChartEntryAdditionalData: {
3614
+ id: "String",
3615
+ name: "String",
3616
+ quantity: "Float"
3617
+ },
3618
+ ChartEntry: {
3619
+ intervalTick: "Int",
3620
+ value: "Float",
3621
+ additionalData: "ChartEntryAdditionalData"
3622
+ },
3623
+ MetricSummary: {
3624
+ interval: "MetricInterval",
3625
+ type: "MetricType",
3626
+ title: "String",
3627
+ entries: "MetricSummaryEntry"
3628
+ },
3629
+ MetricSummaryEntry: {
3630
+ label: "String",
3631
+ value: "Float"
3632
+ },
3633
+ CustomFields: {
3634
+ Address: "CustomFieldConfig",
3635
+ Administrator: "CustomFieldConfig",
3636
+ Asset: "CustomFieldConfig",
3637
+ Channel: "CustomFieldConfig",
3638
+ Collection: "CustomFieldConfig",
3639
+ Customer: "CustomFieldConfig",
3640
+ CustomerGroup: "CustomFieldConfig",
3641
+ Facet: "CustomFieldConfig",
3642
+ FacetValue: "CustomFieldConfig",
3643
+ Fulfillment: "CustomFieldConfig",
3644
+ GlobalSettings: "CustomFieldConfig",
3645
+ Order: "CustomFieldConfig",
3646
+ OrderLine: "CustomFieldConfig",
3647
+ PaymentMethod: "CustomFieldConfig",
3648
+ Product: "CustomFieldConfig",
3649
+ ProductOption: "CustomFieldConfig",
3650
+ ProductOptionGroup: "CustomFieldConfig",
3651
+ ProductVariant: "CustomFieldConfig",
3652
+ ProductVariantPrice: "CustomFieldConfig",
3653
+ Promotion: "CustomFieldConfig",
3654
+ Region: "CustomFieldConfig",
3655
+ Seller: "CustomFieldConfig",
3656
+ ShippingMethod: "CustomFieldConfig",
3657
+ StockLocation: "CustomFieldConfig",
3658
+ TaxCategory: "CustomFieldConfig",
3659
+ TaxRate: "CustomFieldConfig",
3660
+ User: "CustomFieldConfig",
3661
+ Zone: "CustomFieldConfig"
3662
+ },
3663
+ EntityCustomFields: {
3664
+ entityName: "String",
3665
+ customFields: "CustomFieldConfig"
3666
+ },
3667
+ ID: `scalar.ID`
3668
+ };
3669
+ export const Ops = {
3670
+ query: "Query",
3671
+ mutation: "Mutation"
3672
+ };