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