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