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