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