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