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