@ikas/api-client 0.0.1-canary.5 → 1.0.1-alpha.1
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 +21 -0
- package/README.md +1 -1
- package/dist/api/admin/admin-client.d.ts +10 -0
- package/dist/api/admin/admin-client.js +35 -0
- package/dist/api/admin/admin-client.js.map +1 -0
- package/dist/api/admin/common-gql.d.ts +4 -0
- package/dist/api/admin/common-gql.js +14 -0
- package/dist/api/admin/common-gql.js.map +1 -0
- package/dist/api/admin/generated/index.d.ts +3008 -0
- package/dist/api/admin/generated/index.js +319 -0
- package/dist/api/admin/generated/index.js.map +1 -0
- package/{src/api/admin/index.ts → dist/api/admin/index.d.ts} +0 -0
- package/dist/api/admin/index.js +17 -0
- package/dist/api/admin/index.js.map +1 -0
- package/dist/api/admin/mutation-gql.d.ts +6 -0
- package/dist/api/admin/mutation-gql.js +40 -0
- package/dist/api/admin/mutation-gql.js.map +1 -0
- package/dist/api/admin/mutation.d.ts +41 -0
- package/dist/api/admin/mutation.js +268 -0
- package/dist/api/admin/mutation.js.map +1 -0
- package/dist/api/admin/query-gql.d.ts +6 -0
- package/dist/api/admin/query-gql.js +39 -0
- package/dist/api/admin/query-gql.js.map +1 -0
- package/dist/api/admin/query.d.ts +38 -0
- package/dist/api/admin/query.js +220 -0
- package/dist/api/admin/query.js.map +1 -0
- package/dist/api/admin/rest.d.ts +21 -0
- package/dist/api/admin/rest.js +75 -0
- package/dist/api/admin/rest.js.map +1 -0
- package/dist/api/base.d.ts +47 -0
- package/dist/api/base.js +182 -0
- package/dist/api/base.js.map +1 -0
- package/{src/api/index.ts → dist/api/index.d.ts} +0 -0
- package/dist/api/index.js +15 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/oauth/index.d.ts +12 -0
- package/dist/api/oauth/index.js +111 -0
- package/dist/api/oauth/index.js.map +1 -0
- package/dist/api/oauth/models.d.ts +40 -0
- package/dist/api/oauth/models.js +23 -0
- package/dist/api/oauth/models.js.map +1 -0
- package/dist/globals/constants.d.ts +22 -0
- package/dist/globals/constants.js +25 -0
- package/dist/globals/constants.js.map +1 -0
- package/{src/globals/index.ts → dist/globals/index.d.ts} +0 -0
- package/dist/globals/index.js +14 -0
- package/dist/globals/index.js.map +1 -0
- package/dist/helpers/index.d.ts +1 -0
- package/dist/helpers/index.js +14 -0
- package/dist/helpers/index.js.map +1 -0
- package/dist/helpers/webhook-helpers.d.ts +4 -0
- package/dist/helpers/webhook-helpers.js +80 -0
- package/dist/helpers/webhook-helpers.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -0
- package/dist/models/base.d.ts +7 -0
- package/dist/models/base.js +3 -0
- package/dist/models/base.js.map +1 -0
- package/{src/models/index.ts → dist/models/index.d.ts} +0 -0
- package/dist/models/index.js +14 -0
- package/dist/models/index.js.map +1 -0
- package/{src/models/webhook/index.ts → dist/models/webhook/index.d.ts} +0 -0
- package/dist/models/webhook/index.js +14 -0
- package/dist/models/webhook/index.js.map +1 -0
- package/dist/models/webhook/models.d.ts +69 -0
- package/dist/models/webhook/models.js +19 -0
- package/dist/models/webhook/models.js.map +1 -0
- package/package.json +6 -5
- package/Jenkinsfile +0 -92
- package/codegen/admin.yml +0 -9
- package/src/api/admin/admin-client.ts +0 -15
- package/src/api/admin/common-gql.ts +0 -425
- package/src/api/admin/generated/index.ts +0 -2706
- package/src/api/admin/mutation-gql.ts +0 -255
- package/src/api/admin/mutation.ts +0 -195
- package/src/api/admin/query-gql.ts +0 -434
- package/src/api/admin/query.ts +0 -144
- package/src/api/base.ts +0 -134
- package/src/api/oauth/index.ts +0 -47
- package/src/api/oauth/models.ts +0 -37
- package/src/globals/constants.ts +0 -19
- package/src/helpers/index.ts +0 -1
- package/src/helpers/webhook-validate.ts +0 -17
- package/src/index.ts +0 -34
- package/src/models/base.ts +0 -7
- package/src/models/webhook/models.ts +0 -90
- package/tsconfig.json +0 -25
|
@@ -1,2706 +0,0 @@
|
|
|
1
|
-
export type Maybe<T> = T | null;
|
|
2
|
-
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
-
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
4
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
5
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
6
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
7
|
-
export type Scalars = {
|
|
8
|
-
ID: string;
|
|
9
|
-
String: string;
|
|
10
|
-
Boolean: boolean;
|
|
11
|
-
Int: number;
|
|
12
|
-
Float: number;
|
|
13
|
-
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
|
|
14
|
-
JSON: any;
|
|
15
|
-
/** The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch. */
|
|
16
|
-
Timestamp: any;
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export type AddOrderInvoiceInput = {
|
|
20
|
-
appId: Scalars['String'];
|
|
21
|
-
base64: Scalars['String'];
|
|
22
|
-
invoiceNumber: Scalars['String'];
|
|
23
|
-
orderId: Scalars['String'];
|
|
24
|
-
sendNotificationToCustomer: Scalars['Boolean'];
|
|
25
|
-
type: InvoiceTypeEnum;
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
/** OrderAdjustment Enum */
|
|
29
|
-
export enum AdjustmentEnum {
|
|
30
|
-
DECREMENT = 'DECREMENT',
|
|
31
|
-
INCREMENT = 'INCREMENT'
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/** Amount Type Enum */
|
|
35
|
-
export enum AmountTypeEnum {
|
|
36
|
-
AMOUNT = 'AMOUNT',
|
|
37
|
-
RATIO = 'RATIO'
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/** Scope Enum for Apps */
|
|
41
|
-
export enum AppScopeEnum {
|
|
42
|
-
READ_CAMPAIGNS = 'READ_CAMPAIGNS',
|
|
43
|
-
READ_CUSTOMERS = 'READ_CUSTOMERS',
|
|
44
|
-
READ_INVENTORIES = 'READ_INVENTORIES',
|
|
45
|
-
READ_ORDERS = 'READ_ORDERS',
|
|
46
|
-
READ_PRODUCTS = 'READ_PRODUCTS',
|
|
47
|
-
WRITE_CAMPAIGNS = 'WRITE_CAMPAIGNS',
|
|
48
|
-
WRITE_CUSTOMERS = 'WRITE_CUSTOMERS',
|
|
49
|
-
WRITE_INVENTORIES = 'WRITE_INVENTORIES',
|
|
50
|
-
WRITE_ORDERS = 'WRITE_ORDERS',
|
|
51
|
-
WRITE_PRODUCTS = 'WRITE_PRODUCTS',
|
|
52
|
-
WRITE_STOREFRONT = 'WRITE_STOREFRONT'
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export type AuthorizedApp = {
|
|
56
|
-
__typename?: 'AuthorizedApp';
|
|
57
|
-
/** The date the app was added. */
|
|
58
|
-
addedDate: Scalars['Timestamp'];
|
|
59
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
60
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
61
|
-
id: Scalars['ID'];
|
|
62
|
-
partnerId: Scalars['String'];
|
|
63
|
-
/** The id of the sales channel owned by the merchant. */
|
|
64
|
-
salesChannelId?: Maybe<Scalars['String']>;
|
|
65
|
-
/** It keeps the information of the operations that this application can access and perform.Valid scopes are `store/order/created` `store/order/updated` `store/product/created` `store/product/updated` `store/customer/created` `store/customer/updated` `store/customerFavoriteProducts/created` `store/customerFavoriteProducts/updated` `store/stock/created` `store/stock/updated`. */
|
|
66
|
-
scope: Scalars['String'];
|
|
67
|
-
/** The application's id in the store. */
|
|
68
|
-
storeAppId: Scalars['String'];
|
|
69
|
-
/** It keeps the information that a merchant cn install more than one application. If ```true```, merchant can add more than one application. */
|
|
70
|
-
supportsMultipleInstallation?: Maybe<Scalars['Boolean']>;
|
|
71
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
export type BulkUpdateProductBrandInput = {
|
|
75
|
-
description?: InputMaybe<Scalars['String']>;
|
|
76
|
-
imageId?: InputMaybe<Scalars['String']>;
|
|
77
|
-
name: Scalars['String'];
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
export type BulkUpdateProductCategoryInput = {
|
|
81
|
-
name: Array<Scalars['String']>;
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
export type BulkUpdateProductHTMLMetaDataInput = {
|
|
85
|
-
description?: InputMaybe<Scalars['String']>;
|
|
86
|
-
id?: InputMaybe<Scalars['String']>;
|
|
87
|
-
metadataOverrides?: InputMaybe<Array<BulkUpdateProductHTMLMetaDataOverrideInput>>;
|
|
88
|
-
pageTitle?: InputMaybe<Scalars['String']>;
|
|
89
|
-
redirectTo?: InputMaybe<Scalars['String']>;
|
|
90
|
-
slug: Scalars['String'];
|
|
91
|
-
target?: InputMaybe<Scalars['String']>;
|
|
92
|
-
targetType?: InputMaybe<Scalars['String']>;
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
export type BulkUpdateProductHTMLMetaDataOverrideInput = {
|
|
96
|
-
description: Scalars['String'];
|
|
97
|
-
language?: InputMaybe<Scalars['String']>;
|
|
98
|
-
pageTitle: Scalars['String'];
|
|
99
|
-
};
|
|
100
|
-
|
|
101
|
-
export type BulkUpdateProductImageInput = {
|
|
102
|
-
imageUrl: Scalars['String'];
|
|
103
|
-
isMain: Scalars['Boolean'];
|
|
104
|
-
order: Scalars['Float'];
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
export type BulkUpdateProductPriceInput = {
|
|
108
|
-
buyPrice?: InputMaybe<Scalars['Float']>;
|
|
109
|
-
currencyCode?: InputMaybe<Scalars['String']>;
|
|
110
|
-
discountPrice?: InputMaybe<Scalars['Float']>;
|
|
111
|
-
priceListId?: InputMaybe<Scalars['String']>;
|
|
112
|
-
sellPrice: Scalars['Float'];
|
|
113
|
-
};
|
|
114
|
-
|
|
115
|
-
export type BulkUpdateProductStockInput = {
|
|
116
|
-
stockCount: Scalars['Float'];
|
|
117
|
-
stockLocationId: Scalars['String'];
|
|
118
|
-
};
|
|
119
|
-
|
|
120
|
-
export type BulkUpdateProductTagInput = {
|
|
121
|
-
name: Scalars['String'];
|
|
122
|
-
};
|
|
123
|
-
|
|
124
|
-
export type BulkUpdateProductVariantInput = {
|
|
125
|
-
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
126
|
-
deleted: Scalars['Boolean'];
|
|
127
|
-
id?: InputMaybe<Scalars['String']>;
|
|
128
|
-
images?: InputMaybe<Array<BulkUpdateProductImageInput>>;
|
|
129
|
-
isActive: Scalars['Boolean'];
|
|
130
|
-
prices: Array<BulkUpdateProductPriceInput>;
|
|
131
|
-
sku?: InputMaybe<Scalars['String']>;
|
|
132
|
-
sourceId?: InputMaybe<Scalars['String']>;
|
|
133
|
-
stocks?: InputMaybe<Array<BulkUpdateProductStockInput>>;
|
|
134
|
-
variantValues: Array<BulkUpdateProductVariationValueRelationInput>;
|
|
135
|
-
weight?: InputMaybe<Scalars['Float']>;
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
export type BulkUpdateProductVariantTypeImportInput = {
|
|
139
|
-
order: Scalars['Float'];
|
|
140
|
-
variantTypeName?: InputMaybe<Scalars['String']>;
|
|
141
|
-
variantValues: Array<BulkUpdateProductVariantValueImportInput>;
|
|
142
|
-
};
|
|
143
|
-
|
|
144
|
-
export type BulkUpdateProductVariantValueImportInput = {
|
|
145
|
-
colorCode?: InputMaybe<Scalars['String']>;
|
|
146
|
-
name: Scalars['String'];
|
|
147
|
-
sourceId?: InputMaybe<Scalars['String']>;
|
|
148
|
-
thumbnailImageUrl?: InputMaybe<Scalars['String']>;
|
|
149
|
-
};
|
|
150
|
-
|
|
151
|
-
export type BulkUpdateProductVariationValueRelationInput = {
|
|
152
|
-
variantTypeName: Scalars['String'];
|
|
153
|
-
variantValueName: Scalars['String'];
|
|
154
|
-
};
|
|
155
|
-
|
|
156
|
-
export type BulkUpdateProductsInput = {
|
|
157
|
-
brand?: InputMaybe<BulkUpdateProductBrandInput>;
|
|
158
|
-
categories: Array<BulkUpdateProductCategoryInput>;
|
|
159
|
-
deleted: Scalars['Boolean'];
|
|
160
|
-
description?: InputMaybe<Scalars['String']>;
|
|
161
|
-
id?: InputMaybe<Scalars['String']>;
|
|
162
|
-
metaData?: InputMaybe<BulkUpdateProductHTMLMetaDataInput>;
|
|
163
|
-
name: Scalars['String'];
|
|
164
|
-
productVariantTypes: Array<BulkUpdateProductVariantTypeImportInput>;
|
|
165
|
-
shortDescription?: InputMaybe<Scalars['String']>;
|
|
166
|
-
sourceId?: InputMaybe<Scalars['String']>;
|
|
167
|
-
tags?: InputMaybe<Array<BulkUpdateProductTagInput>>;
|
|
168
|
-
type: ProductTypeEnum;
|
|
169
|
-
variants: Array<BulkUpdateProductVariantInput>;
|
|
170
|
-
vendor?: InputMaybe<Scalars['String']>;
|
|
171
|
-
weight?: InputMaybe<Scalars['String']>;
|
|
172
|
-
};
|
|
173
|
-
|
|
174
|
-
export type CancelFulfillmentInput = {
|
|
175
|
-
orderId: Scalars['String'];
|
|
176
|
-
orderPackageId: Scalars['String'];
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
/** Cancelled Reason Enum */
|
|
180
|
-
export enum CancelledReasonEnum {
|
|
181
|
-
CUSTOMER = 'CUSTOMER',
|
|
182
|
-
DECLINED = 'DECLINED',
|
|
183
|
-
INVENTORY = 'INVENTORY',
|
|
184
|
-
OTHER = 'OTHER'
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
export type Category = {
|
|
188
|
-
__typename?: 'Category';
|
|
189
|
-
categoryPath?: Maybe<Array<Scalars['String']>>;
|
|
190
|
-
conditions?: Maybe<Array<CategoryCondition>>;
|
|
191
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
192
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
193
|
-
description?: Maybe<Scalars['String']>;
|
|
194
|
-
id: Scalars['ID'];
|
|
195
|
-
imageId?: Maybe<Scalars['String']>;
|
|
196
|
-
isAutomated?: Maybe<Scalars['Boolean']>;
|
|
197
|
-
metaData?: Maybe<HTMLMetaData>;
|
|
198
|
-
name: Scalars['String'];
|
|
199
|
-
orderType?: Maybe<CategoryProductsOrderTypeEnum>;
|
|
200
|
-
parentId?: Maybe<Scalars['String']>;
|
|
201
|
-
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
202
|
-
shouldMatchAllConditions?: Maybe<Scalars['Boolean']>;
|
|
203
|
-
translations?: Maybe<Array<CategoryTranslation>>;
|
|
204
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
205
|
-
};
|
|
206
|
-
|
|
207
|
-
export type CategoryCondition = {
|
|
208
|
-
__typename?: 'CategoryCondition';
|
|
209
|
-
conditionType: CategoryConditionTypeEnum;
|
|
210
|
-
valueList: Array<Scalars['String']>;
|
|
211
|
-
};
|
|
212
|
-
|
|
213
|
-
export type CategoryConditionInput = {
|
|
214
|
-
conditionType: CategoryConditionTypeEnum;
|
|
215
|
-
valueList: Array<Scalars['String']>;
|
|
216
|
-
};
|
|
217
|
-
|
|
218
|
-
/** CategoryCondition Types */
|
|
219
|
-
export enum CategoryConditionTypeEnum {
|
|
220
|
-
DISCOUNTED_PRODUCTS = 'DISCOUNTED_PRODUCTS',
|
|
221
|
-
PRODUCT_BRAND = 'PRODUCT_BRAND',
|
|
222
|
-
PRODUCT_TAG = 'PRODUCT_TAG',
|
|
223
|
-
VARIANT_VALUE = 'VARIANT_VALUE'
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
export type CategoryInput = {
|
|
227
|
-
conditions?: InputMaybe<Array<CategoryConditionInput>>;
|
|
228
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
229
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
230
|
-
description?: InputMaybe<Scalars['String']>;
|
|
231
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
232
|
-
imageId?: InputMaybe<Scalars['String']>;
|
|
233
|
-
isAutomated?: InputMaybe<Scalars['Boolean']>;
|
|
234
|
-
metaData?: InputMaybe<HTMLMetaDataInput>;
|
|
235
|
-
name: Scalars['String'];
|
|
236
|
-
orderType?: InputMaybe<CategoryProductsOrderTypeEnum>;
|
|
237
|
-
parentId?: InputMaybe<Scalars['String']>;
|
|
238
|
-
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
239
|
-
shouldMatchAllConditions?: InputMaybe<Scalars['Boolean']>;
|
|
240
|
-
translations?: InputMaybe<Array<CategoryTranslationInput>>;
|
|
241
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
242
|
-
};
|
|
243
|
-
|
|
244
|
-
export type CategoryPathFilterInput = {
|
|
245
|
-
in?: InputMaybe<Array<Scalars['String']>>;
|
|
246
|
-
};
|
|
247
|
-
|
|
248
|
-
/** CategoryProductsOrder Types */
|
|
249
|
-
export enum CategoryProductsOrderTypeEnum {
|
|
250
|
-
BEST_SELLER = 'BEST_SELLER',
|
|
251
|
-
HIGHEST_DISCOUNT_RATIO = 'HIGHEST_DISCOUNT_RATIO',
|
|
252
|
-
HIGHEST_PRICE = 'HIGHEST_PRICE',
|
|
253
|
-
LOWEST_DISCOUNT_RATIO = 'LOWEST_DISCOUNT_RATIO',
|
|
254
|
-
LOWEST_PRICE = 'LOWEST_PRICE',
|
|
255
|
-
MANUALLY = 'MANUALLY',
|
|
256
|
-
NEWEST = 'NEWEST',
|
|
257
|
-
OLDEST = 'OLDEST'
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
export type CategoryTranslation = {
|
|
261
|
-
__typename?: 'CategoryTranslation';
|
|
262
|
-
description?: Maybe<Scalars['String']>;
|
|
263
|
-
locale: Scalars['String'];
|
|
264
|
-
name?: Maybe<Scalars['String']>;
|
|
265
|
-
};
|
|
266
|
-
|
|
267
|
-
export type CategoryTranslationInput = {
|
|
268
|
-
description?: InputMaybe<Scalars['String']>;
|
|
269
|
-
locale: Scalars['String'];
|
|
270
|
-
name?: InputMaybe<Scalars['String']>;
|
|
271
|
-
};
|
|
272
|
-
|
|
273
|
-
export type City = {
|
|
274
|
-
__typename?: 'City';
|
|
275
|
-
/** The two-letter city code corresponding to the city. */
|
|
276
|
-
cityCode?: Maybe<Scalars['String']>;
|
|
277
|
-
/** ID indicating which country the city belongs to. */
|
|
278
|
-
countryId: Scalars['String'];
|
|
279
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
280
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
281
|
-
id: Scalars['ID'];
|
|
282
|
-
/** Indicates the latitude of the city. */
|
|
283
|
-
latitude?: Maybe<Scalars['String']>;
|
|
284
|
-
/** Indicates the longitude of the city. */
|
|
285
|
-
longitude?: Maybe<Scalars['String']>;
|
|
286
|
-
/** City's name. */
|
|
287
|
-
name: Scalars['String'];
|
|
288
|
-
/** Specifies the order of cities. */
|
|
289
|
-
order?: Maybe<Scalars['Float']>;
|
|
290
|
-
/** ID indicating which state the city belongs to. */
|
|
291
|
-
stateId: Scalars['String'];
|
|
292
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
293
|
-
};
|
|
294
|
-
|
|
295
|
-
export type Country = {
|
|
296
|
-
__typename?: 'Country';
|
|
297
|
-
/** Indicates the capital of the county. */
|
|
298
|
-
capital?: Maybe<Scalars['String']>;
|
|
299
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
300
|
-
/** Indicates the currency of the county. */
|
|
301
|
-
currency?: Maybe<Scalars['String']>;
|
|
302
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
303
|
-
/** Indicates the flag emoji of the county. */
|
|
304
|
-
emoji?: Maybe<Scalars['String']>;
|
|
305
|
-
/** Indicates the flag emoji code of the county. */
|
|
306
|
-
emojiString?: Maybe<Scalars['String']>;
|
|
307
|
-
id: Scalars['ID'];
|
|
308
|
-
/** The two-letter country code corresponding to the country. */
|
|
309
|
-
iso2?: Maybe<Scalars['String']>;
|
|
310
|
-
/** The three-letter country code corresponding to the country. */
|
|
311
|
-
iso3?: Maybe<Scalars['String']>;
|
|
312
|
-
/** Shows spellings of country name in different languages. */
|
|
313
|
-
locationTranslations: LocationTranslations;
|
|
314
|
-
/** Country's name. */
|
|
315
|
-
name: Scalars['String'];
|
|
316
|
-
/** Indicates the name of the country in the local language. */
|
|
317
|
-
native?: Maybe<Scalars['String']>;
|
|
318
|
-
/** The phone code corresponding to the country. */
|
|
319
|
-
phoneCode?: Maybe<Scalars['String']>;
|
|
320
|
-
/** Indicates the region of the county. */
|
|
321
|
-
region?: Maybe<Scalars['String']>;
|
|
322
|
-
/** Indicates the subregion of the county. */
|
|
323
|
-
subregion?: Maybe<Scalars['String']>;
|
|
324
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
325
|
-
};
|
|
326
|
-
|
|
327
|
-
export type CreateOrderInput = {
|
|
328
|
-
billingAddress?: InputMaybe<OrderAddressInput>;
|
|
329
|
-
branchSessionId?: InputMaybe<Scalars['String']>;
|
|
330
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
331
|
-
currencyCode?: InputMaybe<Scalars['String']>;
|
|
332
|
-
customer?: InputMaybe<OrderCustomerInput>;
|
|
333
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
334
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
335
|
-
note?: InputMaybe<Scalars['String']>;
|
|
336
|
-
orderAdjustments?: InputMaybe<Array<OrderAdjustmentInput>>;
|
|
337
|
-
orderLineItems: Array<OrderLineItemInput>;
|
|
338
|
-
orderTagIds?: InputMaybe<Array<Scalars['String']>>;
|
|
339
|
-
orderedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
340
|
-
priceListId?: InputMaybe<Scalars['String']>;
|
|
341
|
-
salesChannelId?: InputMaybe<Scalars['String']>;
|
|
342
|
-
shippingAddress?: InputMaybe<OrderAddressInput>;
|
|
343
|
-
shippingLines?: InputMaybe<Array<OrderShippingLineInput>>;
|
|
344
|
-
shippingMethod?: InputMaybe<ShippingMethodEnum>;
|
|
345
|
-
terminalId?: InputMaybe<Scalars['String']>;
|
|
346
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
347
|
-
};
|
|
348
|
-
|
|
349
|
-
export type CreateOrderWithTransactionsInput = {
|
|
350
|
-
disableAutoCreateCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
351
|
-
order: CreateOrderInput;
|
|
352
|
-
transactions: Array<OrderTransactionInput>;
|
|
353
|
-
};
|
|
354
|
-
|
|
355
|
-
export type Customer = {
|
|
356
|
-
__typename?: 'Customer';
|
|
357
|
-
/** CustomerAccountStatusEnum */
|
|
358
|
-
accountStatus?: Maybe<CustomerAccountStatusEnum>;
|
|
359
|
-
accountStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
360
|
-
/** A list of the ten most recently updated addresses for the customer. */
|
|
361
|
-
addresses?: Maybe<Array<CustomerAddress>>;
|
|
362
|
-
attributes?: Maybe<Array<CustomerAttributeValue>>;
|
|
363
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
364
|
-
/** Groups that the store owner attaches to the customer. */
|
|
365
|
-
customerGroupIds?: Maybe<Array<Scalars['String']>>;
|
|
366
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
367
|
-
/** The unique email address of the customer. Attempting to assign the same email address to multiple customers returns an error. */
|
|
368
|
-
email?: Maybe<Scalars['String']>;
|
|
369
|
-
/** The date the ***email*** was verified. */
|
|
370
|
-
emailVerifiedDate?: Maybe<Scalars['Timestamp']>;
|
|
371
|
-
/** The customer's first name. */
|
|
372
|
-
firstName: Scalars['String'];
|
|
373
|
-
/** Customer's full name. Firstname plus lastname if firstname and lastname exist. Otherwise, it is saved as firstname only. */
|
|
374
|
-
fullName?: Maybe<Scalars['String']>;
|
|
375
|
-
id: Scalars['ID'];
|
|
376
|
-
/** Email verification status. ***isEmailVerified*** returns ```true``` if the email is verified. */
|
|
377
|
-
isEmailVerified?: Maybe<Scalars['Boolean']>;
|
|
378
|
-
/** Phone verification status. ***isPhoneVerified*** returns ```true``` if the email is verified. */
|
|
379
|
-
isPhoneVerified?: Maybe<Scalars['Boolean']>;
|
|
380
|
-
/** The customer's last name. */
|
|
381
|
-
lastName?: Maybe<Scalars['String']>;
|
|
382
|
-
/** A note about the customer. */
|
|
383
|
-
note?: Maybe<Scalars['String']>;
|
|
384
|
-
/** Number of orders placed by the customer. */
|
|
385
|
-
orderCount?: Maybe<Scalars['Float']>;
|
|
386
|
-
/** Date the customer last changed their password. */
|
|
387
|
-
passwordUpdateDate?: Maybe<Scalars['Timestamp']>;
|
|
388
|
-
/** The customer's phone number */
|
|
389
|
-
phone?: Maybe<Scalars['String']>;
|
|
390
|
-
/** The date the ***email*** was verified. */
|
|
391
|
-
phoneVerifiedDate?: Maybe<Scalars['Timestamp']>;
|
|
392
|
-
/** CustomerEmailSubscriptionStatusesEnum */
|
|
393
|
-
subscriptionStatus?: Maybe<CustomerEmailSubscriptionStatusesEnum>;
|
|
394
|
-
subscriptionStatusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
395
|
-
/** Tags that the store owner attaches to the customer. */
|
|
396
|
-
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
397
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
398
|
-
};
|
|
399
|
-
|
|
400
|
-
/** Customer Account Statuses */
|
|
401
|
-
export enum CustomerAccountStatusEnum {
|
|
402
|
-
ACTIVE_ACCOUNT = 'ACTIVE_ACCOUNT',
|
|
403
|
-
DECLINED_ACCOUNT_INVITATION = 'DECLINED_ACCOUNT_INVITATION',
|
|
404
|
-
DISABLED_ACCOUNT = 'DISABLED_ACCOUNT',
|
|
405
|
-
INVITED_TO_CREATE_ACCOUNT = 'INVITED_TO_CREATE_ACCOUNT'
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
export type CustomerAddress = {
|
|
409
|
-
__typename?: 'CustomerAddress';
|
|
410
|
-
/** The customer's mailing address. */
|
|
411
|
-
addressLine1: Scalars['String'];
|
|
412
|
-
/** An additional field for the customer's mailing address. */
|
|
413
|
-
addressLine2?: Maybe<Scalars['String']>;
|
|
414
|
-
attributes?: Maybe<Array<CustomerAttributeValue>>;
|
|
415
|
-
/** The customer's city. */
|
|
416
|
-
city: CustomerAddressCity;
|
|
417
|
-
/** The customer's company. */
|
|
418
|
-
company?: Maybe<Scalars['String']>;
|
|
419
|
-
/** The customer's country. */
|
|
420
|
-
country: CustomerAddressCountry;
|
|
421
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
422
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
423
|
-
/** The customer's district in city. */
|
|
424
|
-
district?: Maybe<CustomerAddressDistrict>;
|
|
425
|
-
/** The customer's first name. */
|
|
426
|
-
firstName: Scalars['String'];
|
|
427
|
-
id: Scalars['ID'];
|
|
428
|
-
/** The customer's identity numbers. */
|
|
429
|
-
identityNumber?: Maybe<Scalars['String']>;
|
|
430
|
-
/** Whether this address is the default address for the customer. Returns ```true``` for each default address. */
|
|
431
|
-
isDefault?: Maybe<Scalars['Boolean']>;
|
|
432
|
-
/** The customer's last name. */
|
|
433
|
-
lastName: Scalars['String'];
|
|
434
|
-
/** The customer's phone number at this address */
|
|
435
|
-
phone?: Maybe<Scalars['String']>;
|
|
436
|
-
/** The customer's postal code, also known as zip, postcode, etc. */
|
|
437
|
-
postalCode?: Maybe<Scalars['String']>;
|
|
438
|
-
state?: Maybe<CustomerAddressState>;
|
|
439
|
-
/** Tax number that the customer will use for orders */
|
|
440
|
-
taxNumber?: Maybe<Scalars['String']>;
|
|
441
|
-
/** If customer is corporate, customer can use that field to fill their Tax Office name. */
|
|
442
|
-
taxOffice?: Maybe<Scalars['String']>;
|
|
443
|
-
title: Scalars['String'];
|
|
444
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
445
|
-
};
|
|
446
|
-
|
|
447
|
-
export type CustomerAddressCity = {
|
|
448
|
-
__typename?: 'CustomerAddressCity';
|
|
449
|
-
/** The two-letter country code corresponding to the customer's country. */
|
|
450
|
-
code?: Maybe<Scalars['String']>;
|
|
451
|
-
id?: Maybe<Scalars['String']>;
|
|
452
|
-
/** The customer's normalized city name. */
|
|
453
|
-
name: Scalars['String'];
|
|
454
|
-
};
|
|
455
|
-
|
|
456
|
-
export type CustomerAddressCountry = {
|
|
457
|
-
__typename?: 'CustomerAddressCountry';
|
|
458
|
-
/** The two-letter country code corresponding to the customer's country. */
|
|
459
|
-
code?: Maybe<Scalars['String']>;
|
|
460
|
-
id?: Maybe<Scalars['String']>;
|
|
461
|
-
/** The customer's normalized country name. */
|
|
462
|
-
name: Scalars['String'];
|
|
463
|
-
};
|
|
464
|
-
|
|
465
|
-
export type CustomerAddressDistrict = {
|
|
466
|
-
__typename?: 'CustomerAddressDistrict';
|
|
467
|
-
/** The two-letter district code corresponding to the customer's district. */
|
|
468
|
-
code?: Maybe<Scalars['String']>;
|
|
469
|
-
id?: Maybe<Scalars['String']>;
|
|
470
|
-
/** The customer's normalized district name. */
|
|
471
|
-
name?: Maybe<Scalars['String']>;
|
|
472
|
-
};
|
|
473
|
-
|
|
474
|
-
export type CustomerAddressState = {
|
|
475
|
-
__typename?: 'CustomerAddressState';
|
|
476
|
-
code?: Maybe<Scalars['String']>;
|
|
477
|
-
id?: Maybe<Scalars['String']>;
|
|
478
|
-
name?: Maybe<Scalars['String']>;
|
|
479
|
-
};
|
|
480
|
-
|
|
481
|
-
export type CustomerAttributeValue = {
|
|
482
|
-
__typename?: 'CustomerAttributeValue';
|
|
483
|
-
customerAttributeId: Scalars['String'];
|
|
484
|
-
customerAttributeOptionId: Scalars['String'];
|
|
485
|
-
value?: Maybe<Scalars['String']>;
|
|
486
|
-
};
|
|
487
|
-
|
|
488
|
-
/** Customer Email Subscription Statuses */
|
|
489
|
-
export enum CustomerEmailSubscriptionStatusesEnum {
|
|
490
|
-
NOT_SUBSCRIBED = 'NOT_SUBSCRIBED',
|
|
491
|
-
PENDING_CONFIRMATION = 'PENDING_CONFIRMATION',
|
|
492
|
-
SUBSCRIBED = 'SUBSCRIBED'
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
export type CustomerPaginationResponse = {
|
|
496
|
-
__typename?: 'CustomerPaginationResponse';
|
|
497
|
-
/** Returns the first three records of each page in the records returned as a response. For example, ***let's say page = 3, limit = 30, count = 3.*** The records that will return as a response are the records ***between 60-62.*** */
|
|
498
|
-
count: Scalars['Int'];
|
|
499
|
-
data: Array<Customer>;
|
|
500
|
-
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
501
|
-
hasNext: Scalars['Boolean'];
|
|
502
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
503
|
-
limit: Scalars['Int'];
|
|
504
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
505
|
-
page: Scalars['Int'];
|
|
506
|
-
};
|
|
507
|
-
|
|
508
|
-
export type DateFilterInput = {
|
|
509
|
-
/** ```equal```. The filter used for equality. */
|
|
510
|
-
eq?: InputMaybe<Scalars['Timestamp']>;
|
|
511
|
-
/** ```greater than``` selects the documents where the value of the ```input``` is greater than to (i.e. ```>```) a specified value (e.g. value.) */
|
|
512
|
-
gt?: InputMaybe<Scalars['Timestamp']>;
|
|
513
|
-
/** ```greater than or equals``` selects the documents where the value of the ```input``` is greater than or equal to (i.e. ```>=```) a specified value (e.g. value.) */
|
|
514
|
-
gte?: InputMaybe<Scalars['Timestamp']>;
|
|
515
|
-
/** Returns a boolean indicating whether a specified value is in an array. */
|
|
516
|
-
in?: InputMaybe<Array<Scalars['Timestamp']>>;
|
|
517
|
-
/** ```less than``` selects the documents where the value of the ```input``` is less than or equal to (i.e. ```<```) a specified value (e.g. value.) */
|
|
518
|
-
lt?: InputMaybe<Scalars['Timestamp']>;
|
|
519
|
-
/** ```less than or equals``` selects the documents where the value of the ```input``` is less than or equal to (i.e. ```<=```) a specified value (e.g. value.) */
|
|
520
|
-
lte?: InputMaybe<Scalars['Timestamp']>;
|
|
521
|
-
};
|
|
522
|
-
|
|
523
|
-
export type District = {
|
|
524
|
-
__typename?: 'District';
|
|
525
|
-
/** ID indicating which city the district belongs to. */
|
|
526
|
-
cityId: Scalars['String'];
|
|
527
|
-
/** ID indicating which country the district belongs to. */
|
|
528
|
-
countryId: Scalars['String'];
|
|
529
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
530
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
531
|
-
id: Scalars['ID'];
|
|
532
|
-
/** Indicates the latitude of the city. */
|
|
533
|
-
latitude?: Maybe<Scalars['String']>;
|
|
534
|
-
/** Indicates the longitude of the city. */
|
|
535
|
-
longitude?: Maybe<Scalars['String']>;
|
|
536
|
-
/** District's name. */
|
|
537
|
-
name: Scalars['String'];
|
|
538
|
-
/** Specifies the order of districts. */
|
|
539
|
-
order?: Maybe<Scalars['Float']>;
|
|
540
|
-
/** ID indicating which state the district belongs to. */
|
|
541
|
-
stateId: Scalars['String'];
|
|
542
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
543
|
-
};
|
|
544
|
-
|
|
545
|
-
export type FulFillOrderInput = {
|
|
546
|
-
lines: Array<FulfillOrderLineInput>;
|
|
547
|
-
markAsReadyForShipment?: InputMaybe<Scalars['Boolean']>;
|
|
548
|
-
orderId: Scalars['String'];
|
|
549
|
-
sendNotificationToCustomer?: InputMaybe<Scalars['Boolean']>;
|
|
550
|
-
trackingInfoDetail?: InputMaybe<TrackingInfoDetailInput>;
|
|
551
|
-
};
|
|
552
|
-
|
|
553
|
-
export type FulfillOrderLineInput = {
|
|
554
|
-
orderLineItemId: Scalars['String'];
|
|
555
|
-
quantity: Scalars['Float'];
|
|
556
|
-
};
|
|
557
|
-
|
|
558
|
-
export type HTMLMetaData = {
|
|
559
|
-
__typename?: 'HTMLMetaData';
|
|
560
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
561
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
562
|
-
description?: Maybe<Scalars['String']>;
|
|
563
|
-
id: Scalars['ID'];
|
|
564
|
-
metadataOverrides?: Maybe<Array<HTMLMetaDataOverride>>;
|
|
565
|
-
pageTitle?: Maybe<Scalars['String']>;
|
|
566
|
-
redirectTo?: Maybe<Scalars['String']>;
|
|
567
|
-
slug: Scalars['String'];
|
|
568
|
-
targetId?: Maybe<Scalars['String']>;
|
|
569
|
-
targetType?: Maybe<HTMLMetaDataTargetTypeEnum>;
|
|
570
|
-
translations?: Maybe<Array<HTMLMetaDataTranslation>>;
|
|
571
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
572
|
-
};
|
|
573
|
-
|
|
574
|
-
export type HTMLMetaDataInput = {
|
|
575
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
576
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
577
|
-
description?: InputMaybe<Scalars['String']>;
|
|
578
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
579
|
-
metadataOverrides?: InputMaybe<Array<HTMLMetaDataOverrideInput>>;
|
|
580
|
-
pageTitle?: InputMaybe<Scalars['String']>;
|
|
581
|
-
slug: Scalars['String'];
|
|
582
|
-
targetId?: InputMaybe<Scalars['String']>;
|
|
583
|
-
targetType?: InputMaybe<HTMLMetaDataTargetTypeEnum>;
|
|
584
|
-
translations?: InputMaybe<Array<HTMLMetaDataTranslationInput>>;
|
|
585
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
586
|
-
};
|
|
587
|
-
|
|
588
|
-
export type HTMLMetaDataOverride = {
|
|
589
|
-
__typename?: 'HTMLMetaDataOverride';
|
|
590
|
-
description: Scalars['String'];
|
|
591
|
-
language?: Maybe<Scalars['String']>;
|
|
592
|
-
pageTitle: Scalars['String'];
|
|
593
|
-
storefrontId?: Maybe<Scalars['String']>;
|
|
594
|
-
storefrontRegionId?: Maybe<Scalars['String']>;
|
|
595
|
-
};
|
|
596
|
-
|
|
597
|
-
export type HTMLMetaDataOverrideInput = {
|
|
598
|
-
description: Scalars['String'];
|
|
599
|
-
language?: InputMaybe<Scalars['String']>;
|
|
600
|
-
pageTitle: Scalars['String'];
|
|
601
|
-
storefrontId?: InputMaybe<Scalars['String']>;
|
|
602
|
-
storefrontRegionId?: InputMaybe<Scalars['String']>;
|
|
603
|
-
};
|
|
604
|
-
|
|
605
|
-
/** Url Slug Target Type Enum Codes */
|
|
606
|
-
export enum HTMLMetaDataTargetTypeEnum {
|
|
607
|
-
BRAND = 'BRAND',
|
|
608
|
-
CATEGORY = 'CATEGORY',
|
|
609
|
-
PAGE = 'PAGE',
|
|
610
|
-
PRODUCT = 'PRODUCT'
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
export type HTMLMetaDataTranslation = {
|
|
614
|
-
__typename?: 'HTMLMetaDataTranslation';
|
|
615
|
-
description?: Maybe<Scalars['String']>;
|
|
616
|
-
locale: Scalars['String'];
|
|
617
|
-
pageTitle?: Maybe<Scalars['String']>;
|
|
618
|
-
};
|
|
619
|
-
|
|
620
|
-
export type HTMLMetaDataTranslationInput = {
|
|
621
|
-
description?: InputMaybe<Scalars['String']>;
|
|
622
|
-
locale: Scalars['String'];
|
|
623
|
-
pageTitle?: InputMaybe<Scalars['String']>;
|
|
624
|
-
};
|
|
625
|
-
|
|
626
|
-
export type Invoice = {
|
|
627
|
-
__typename?: 'Invoice';
|
|
628
|
-
appId: Scalars['String'];
|
|
629
|
-
appName: Scalars['String'];
|
|
630
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
631
|
-
id: Scalars['String'];
|
|
632
|
-
invoiceNumber: Scalars['String'];
|
|
633
|
-
storeAppId: Scalars['String'];
|
|
634
|
-
type: InvoiceTypeEnum;
|
|
635
|
-
};
|
|
636
|
-
|
|
637
|
-
/** Invoice Type Enum */
|
|
638
|
-
export enum InvoiceTypeEnum {
|
|
639
|
-
COMPANY = 'COMPANY',
|
|
640
|
-
INDIVIDUAL = 'INDIVIDUAL',
|
|
641
|
-
OTHER = 'OTHER'
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
export type LocationTranslations = {
|
|
645
|
-
__typename?: 'LocationTranslations';
|
|
646
|
-
en: Scalars['String'];
|
|
647
|
-
tr: Scalars['String'];
|
|
648
|
-
};
|
|
649
|
-
|
|
650
|
-
export type MeResponse = {
|
|
651
|
-
__typename?: 'MeResponse';
|
|
652
|
-
/** The date the app was added. */
|
|
653
|
-
addedDate?: Maybe<Scalars['Timestamp']>;
|
|
654
|
-
/** The merchant staff's email address. */
|
|
655
|
-
email?: Maybe<Scalars['String']>;
|
|
656
|
-
id?: Maybe<Scalars['String']>;
|
|
657
|
-
name?: Maybe<Scalars['String']>;
|
|
658
|
-
partnerId?: Maybe<Scalars['String']>;
|
|
659
|
-
/** The id of the sales channel owned by the merchant. */
|
|
660
|
-
salesChannelId?: Maybe<Scalars['String']>;
|
|
661
|
-
/** It keeps the information of the operations that this application can access and perform.Valid scopes are `store/order/created` `store/order/updated` `store/product/created` `store/product/updated` `store/customer/created` `store/customer/updated` `store/customerFavoriteProducts/created` `store/customerFavoriteProducts/updated` `store/stock/created` `store/stock/updated`. */
|
|
662
|
-
scope?: Maybe<Scalars['String']>;
|
|
663
|
-
scopes?: Maybe<Array<AppScopeEnum>>;
|
|
664
|
-
/** The application's id in the store. */
|
|
665
|
-
storeAppId?: Maybe<Scalars['String']>;
|
|
666
|
-
/** It keeps the information that a merchant cn install more than one application. If ```true```, merchant can add more than one application. */
|
|
667
|
-
supportsMultipleInstallation?: Maybe<Scalars['Boolean']>;
|
|
668
|
-
};
|
|
669
|
-
|
|
670
|
-
export type MerchantAddress = {
|
|
671
|
-
__typename?: 'MerchantAddress';
|
|
672
|
-
/** The merchant's mailing address. */
|
|
673
|
-
addressLine1?: Maybe<Scalars['String']>;
|
|
674
|
-
/** An additional field for the merchant's mailing address. */
|
|
675
|
-
addressLine2?: Maybe<Scalars['String']>;
|
|
676
|
-
/** The merchant's city. */
|
|
677
|
-
city?: Maybe<MerchantAddressCity>;
|
|
678
|
-
/** The merchant's country. */
|
|
679
|
-
country?: Maybe<MerchantAddressCountry>;
|
|
680
|
-
/** The merchant's district in city. */
|
|
681
|
-
district?: Maybe<MerchantAddressDistrict>;
|
|
682
|
-
/** The merchant staff's first name. */
|
|
683
|
-
firstName?: Maybe<Scalars['String']>;
|
|
684
|
-
/** The merchant's identity numbers. */
|
|
685
|
-
identityNumber?: Maybe<Scalars['String']>;
|
|
686
|
-
/** The merchant staff's last name. */
|
|
687
|
-
lastName?: Maybe<Scalars['String']>;
|
|
688
|
-
/** The merchant's postal code, also known as zip, postcode, etc. */
|
|
689
|
-
postalCode?: Maybe<Scalars['String']>;
|
|
690
|
-
state?: Maybe<MerchantAddressState>;
|
|
691
|
-
/** If merchant is corporate, merchant can use that field to fill their Tax Office name. */
|
|
692
|
-
taxOffice?: Maybe<Scalars['String']>;
|
|
693
|
-
title?: Maybe<Scalars['String']>;
|
|
694
|
-
type?: Maybe<MerchantSettingsAddressTypeEnum>;
|
|
695
|
-
vkn?: Maybe<Scalars['String']>;
|
|
696
|
-
};
|
|
697
|
-
|
|
698
|
-
export type MerchantAddressCity = {
|
|
699
|
-
__typename?: 'MerchantAddressCity';
|
|
700
|
-
/** The two-letter city code corresponding to the merchant's city. */
|
|
701
|
-
code?: Maybe<Scalars['String']>;
|
|
702
|
-
id?: Maybe<Scalars['String']>;
|
|
703
|
-
/** The merchant's normalized city name. */
|
|
704
|
-
name?: Maybe<Scalars['String']>;
|
|
705
|
-
};
|
|
706
|
-
|
|
707
|
-
export type MerchantAddressCountry = {
|
|
708
|
-
__typename?: 'MerchantAddressCountry';
|
|
709
|
-
/** The two-letter country code corresponding to the merchant's country. */
|
|
710
|
-
code?: Maybe<Scalars['String']>;
|
|
711
|
-
id?: Maybe<Scalars['String']>;
|
|
712
|
-
/** The merchant's normalized country name. */
|
|
713
|
-
name?: Maybe<Scalars['String']>;
|
|
714
|
-
};
|
|
715
|
-
|
|
716
|
-
export type MerchantAddressDistrict = {
|
|
717
|
-
__typename?: 'MerchantAddressDistrict';
|
|
718
|
-
/** The two-letter district code corresponding to the merchant's district. */
|
|
719
|
-
code?: Maybe<Scalars['String']>;
|
|
720
|
-
id?: Maybe<Scalars['String']>;
|
|
721
|
-
/** The merchant's normalized district name. */
|
|
722
|
-
name?: Maybe<Scalars['String']>;
|
|
723
|
-
};
|
|
724
|
-
|
|
725
|
-
export type MerchantAddressState = {
|
|
726
|
-
__typename?: 'MerchantAddressState';
|
|
727
|
-
code?: Maybe<Scalars['String']>;
|
|
728
|
-
id?: Maybe<Scalars['String']>;
|
|
729
|
-
name?: Maybe<Scalars['String']>;
|
|
730
|
-
};
|
|
731
|
-
|
|
732
|
-
export type MerchantAppPayment = {
|
|
733
|
-
__typename?: 'MerchantAppPayment';
|
|
734
|
-
appPaymentKey: Scalars['String'];
|
|
735
|
-
authorizedAppId?: Maybe<Scalars['String']>;
|
|
736
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
737
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
738
|
-
id: Scalars['ID'];
|
|
739
|
-
merchantPaymentUrl: Scalars['String'];
|
|
740
|
-
name: Scalars['String'];
|
|
741
|
-
paymentDate?: Maybe<Scalars['Timestamp']>;
|
|
742
|
-
prices: Array<MerchantAppPaymentPrice>;
|
|
743
|
-
status: MerchantAppPaymentStatusEnum;
|
|
744
|
-
storeAppId: Scalars['String'];
|
|
745
|
-
type: MerchantAppPaymentTypeEnum;
|
|
746
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
747
|
-
};
|
|
748
|
-
|
|
749
|
-
export type MerchantAppPaymentInput = {
|
|
750
|
-
appPaymentKey: Scalars['String'];
|
|
751
|
-
name: Scalars['String'];
|
|
752
|
-
prices: Array<MerchantAppPaymentPriceInput>;
|
|
753
|
-
type: MerchantAppPaymentTypeEnum;
|
|
754
|
-
};
|
|
755
|
-
|
|
756
|
-
export type MerchantAppPaymentPaginationResponse = {
|
|
757
|
-
__typename?: 'MerchantAppPaymentPaginationResponse';
|
|
758
|
-
/** Returns the first three records of each page in the records returned as a response. For example, ***let's say page = 3, limit = 30, count = 3.*** The records that will return as a response are the records ***between 60-62.*** */
|
|
759
|
-
count: Scalars['Int'];
|
|
760
|
-
data: Array<MerchantAppPayment>;
|
|
761
|
-
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
762
|
-
hasNext: Scalars['Boolean'];
|
|
763
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
764
|
-
limit: Scalars['Int'];
|
|
765
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
766
|
-
page: Scalars['Int'];
|
|
767
|
-
};
|
|
768
|
-
|
|
769
|
-
export type MerchantAppPaymentPrice = {
|
|
770
|
-
__typename?: 'MerchantAppPaymentPrice';
|
|
771
|
-
period: SubscriptionPeriodEnum;
|
|
772
|
-
price: Scalars['Float'];
|
|
773
|
-
};
|
|
774
|
-
|
|
775
|
-
export type MerchantAppPaymentPriceInput = {
|
|
776
|
-
period: SubscriptionPeriodEnum;
|
|
777
|
-
price: Scalars['Float'];
|
|
778
|
-
};
|
|
779
|
-
|
|
780
|
-
export enum MerchantAppPaymentStatusEnum {
|
|
781
|
-
PAID = 'PAID',
|
|
782
|
-
PAYMENT_FAILED = 'PAYMENT_FAILED',
|
|
783
|
-
WAITING_FOR_PAYMENT = 'WAITING_FOR_PAYMENT'
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
export enum MerchantAppPaymentTypeEnum {
|
|
787
|
-
ONE_TIME = 'ONE_TIME',
|
|
788
|
-
SUBSCRIPTION = 'SUBSCRIPTION'
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
export type MerchantAppSubscription = {
|
|
792
|
-
__typename?: 'MerchantAppSubscription';
|
|
793
|
-
addedDate?: Maybe<Scalars['Timestamp']>;
|
|
794
|
-
appPaymentKey: Scalars['String'];
|
|
795
|
-
authorizedAppId?: Maybe<Scalars['String']>;
|
|
796
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
797
|
-
currency?: Maybe<SubscriptionPriceCurrencyEnum>;
|
|
798
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
799
|
-
id: Scalars['ID'];
|
|
800
|
-
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
801
|
-
lastPaymentDiscountRatio?: Maybe<Scalars['Float']>;
|
|
802
|
-
lastPaymentPeriod: SubscriptionPeriodEnum;
|
|
803
|
-
lastPaymentPeriodInDays: Scalars['Float'];
|
|
804
|
-
lastPaymentPrice: Scalars['Float'];
|
|
805
|
-
lastPaymentPriceWithTax: Scalars['Float'];
|
|
806
|
-
merchantAppPaymentId: Scalars['String'];
|
|
807
|
-
name: Scalars['String'];
|
|
808
|
-
status: MerchantSubscriptionStatusEnum;
|
|
809
|
-
storeAppId: Scalars['String'];
|
|
810
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
811
|
-
};
|
|
812
|
-
|
|
813
|
-
export type MerchantLicence = {
|
|
814
|
-
__typename?: 'MerchantLicence';
|
|
815
|
-
activeSubscriptionCode: SubscriptionCodeEnum;
|
|
816
|
-
activeSubscriptionId: Scalars['String'];
|
|
817
|
-
appSubscriptions?: Maybe<Array<MerchantAppSubscription>>;
|
|
818
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
819
|
-
customSubscriptionIds?: Maybe<Array<Scalars['String']>>;
|
|
820
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
821
|
-
fromDate?: Maybe<Scalars['Timestamp']>;
|
|
822
|
-
id: Scalars['ID'];
|
|
823
|
-
licenceActivationDate?: Maybe<Scalars['Timestamp']>;
|
|
824
|
-
limits: Array<MerchantLimit>;
|
|
825
|
-
period?: Maybe<SubscriptionPeriodEnum>;
|
|
826
|
-
region: MerchantRegionEnum;
|
|
827
|
-
status: MerchantLicenceStatusEnum;
|
|
828
|
-
statusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
829
|
-
subscriptions: Array<MerchantSubscription>;
|
|
830
|
-
toDate?: Maybe<Scalars['Timestamp']>;
|
|
831
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
832
|
-
};
|
|
833
|
-
|
|
834
|
-
export enum MerchantLicenceStatusEnum {
|
|
835
|
-
CHURN = 'CHURN',
|
|
836
|
-
CONTRACTION = 'CONTRACTION',
|
|
837
|
-
EXPANSION = 'EXPANSION',
|
|
838
|
-
FREEMIUM = 'FREEMIUM',
|
|
839
|
-
NEW = 'NEW',
|
|
840
|
-
REACTIVATION = 'REACTIVATION',
|
|
841
|
-
RENEWAL = 'RENEWAL'
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
export type MerchantLimit = {
|
|
845
|
-
__typename?: 'MerchantLimit';
|
|
846
|
-
code: MerchantLimitCodeEnum;
|
|
847
|
-
value: Scalars['Float'];
|
|
848
|
-
};
|
|
849
|
-
|
|
850
|
-
export enum MerchantLimitCodeEnum {
|
|
851
|
-
ABANDONED_CHECKOUT_SUPPORT = 'ABANDONED_CHECKOUT_SUPPORT',
|
|
852
|
-
ADDITIONAL_POS_BRANCH = 'ADDITIONAL_POS_BRANCH',
|
|
853
|
-
ADDITIONAL_STOREFRONT = 'ADDITIONAL_STOREFRONT',
|
|
854
|
-
CAMPAIGN_SUPPORT = 'CAMPAIGN_SUPPORT',
|
|
855
|
-
CROSS_SELL_SUPPORT = 'CROSS_SELL_SUPPORT',
|
|
856
|
-
DOMAIN_SUPPORT = 'DOMAIN_SUPPORT',
|
|
857
|
-
LOCALIZATION_ROUTING_SUPPORT = 'LOCALIZATION_ROUTING_SUPPORT',
|
|
858
|
-
OMNI_CHANNEL_SUPPORT = 'OMNI_CHANNEL_SUPPORT',
|
|
859
|
-
PAYMENT_GATEWAY_RATE = 'PAYMENT_GATEWAY_RATE',
|
|
860
|
-
PRICE_LISTS_SUPPORT = 'PRICE_LISTS_SUPPORT',
|
|
861
|
-
PRODUCT_LIMIT = 'PRODUCT_LIMIT',
|
|
862
|
-
PRODUCT_SUBSCRIPTIONS_SUPPORT = 'PRODUCT_SUBSCRIPTIONS_SUPPORT',
|
|
863
|
-
REFUND_SUPPORT = 'REFUND_SUPPORT',
|
|
864
|
-
STAFF_LIMIT = 'STAFF_LIMIT',
|
|
865
|
-
STOCK_LOCATION_LIMIT = 'STOCK_LOCATION_LIMIT',
|
|
866
|
-
THEME_SUPPORT = 'THEME_SUPPORT',
|
|
867
|
-
UP_SELL_SUPPORT = 'UP_SELL_SUPPORT'
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
export enum MerchantRegionEnum {
|
|
871
|
-
AF = 'AF',
|
|
872
|
-
AN = 'AN',
|
|
873
|
-
AS = 'AS',
|
|
874
|
-
EU = 'EU',
|
|
875
|
-
OC = 'OC',
|
|
876
|
-
PL = 'PL',
|
|
877
|
-
TR = 'TR',
|
|
878
|
-
US = 'US'
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
export type MerchantResponse = {
|
|
882
|
-
__typename?: 'MerchantResponse';
|
|
883
|
-
/** Merchant's address information. */
|
|
884
|
-
address?: Maybe<MerchantAddress>;
|
|
885
|
-
/** The merchant staff's email address. */
|
|
886
|
-
email: Scalars['String'];
|
|
887
|
-
/** The merchant's first name. */
|
|
888
|
-
firstName: Scalars['String'];
|
|
889
|
-
id: Scalars['String'];
|
|
890
|
-
/** The merchant's last name. */
|
|
891
|
-
lastName: Scalars['String'];
|
|
892
|
-
/** The merchant staff's last name. */
|
|
893
|
-
merchantName?: Maybe<Scalars['String']>;
|
|
894
|
-
merchantSequence?: Maybe<Scalars['Float']>;
|
|
895
|
-
/** The merchant's phone number. */
|
|
896
|
-
phoneNumber?: Maybe<Scalars['String']>;
|
|
897
|
-
/** The merchant's store name. */
|
|
898
|
-
storeName?: Maybe<Scalars['String']>;
|
|
899
|
-
};
|
|
900
|
-
|
|
901
|
-
export enum MerchantSettingsAddressTypeEnum {
|
|
902
|
-
CORPORATE = 'CORPORATE',
|
|
903
|
-
INDIVIDUAL = 'INDIVIDUAL'
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
export type MerchantSubscription = {
|
|
907
|
-
__typename?: 'MerchantSubscription';
|
|
908
|
-
code: SubscriptionCodeEnum;
|
|
909
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
910
|
-
currency?: Maybe<SubscriptionPriceCurrencyEnum>;
|
|
911
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
912
|
-
id: Scalars['ID'];
|
|
913
|
-
lastPaymentDate?: Maybe<Scalars['Timestamp']>;
|
|
914
|
-
lastPaymentDiscountRatio?: Maybe<Scalars['Float']>;
|
|
915
|
-
lastPaymentPeriod: SubscriptionPeriodEnum;
|
|
916
|
-
lastPaymentPeriodInDays: Scalars['Float'];
|
|
917
|
-
lastPaymentPrice: Scalars['Float'];
|
|
918
|
-
lastPaymentPriceWithTax: Scalars['Float'];
|
|
919
|
-
limits: Array<MerchantLimit>;
|
|
920
|
-
name?: Maybe<Scalars['String']>;
|
|
921
|
-
salesChannelId?: Maybe<Scalars['String']>;
|
|
922
|
-
status: MerchantSubscriptionStatusEnum;
|
|
923
|
-
subscriptionId: Scalars['String'];
|
|
924
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
925
|
-
};
|
|
926
|
-
|
|
927
|
-
export enum MerchantSubscriptionStatusEnum {
|
|
928
|
-
ACTIVE = 'ACTIVE',
|
|
929
|
-
REMOVED = 'REMOVED',
|
|
930
|
-
WILL_BE_REMOVED = 'WILL_BE_REMOVED'
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
export type Mutation = {
|
|
934
|
-
__typename?: 'Mutation';
|
|
935
|
-
addCustomTimelineEntry: Scalars['Boolean'];
|
|
936
|
-
addOrderInvoice: Order;
|
|
937
|
-
bulkUpdateProducts: Scalars['Boolean'];
|
|
938
|
-
cancelFulfillment: Order;
|
|
939
|
-
createMerchantAppPayment: MerchantAppPayment;
|
|
940
|
-
createOrderWithTransactions: Order;
|
|
941
|
-
deleteCategoryList: Scalars['Boolean'];
|
|
942
|
-
deleteProductAttributeList: Scalars['Boolean'];
|
|
943
|
-
deleteProductBrandList: Scalars['Boolean'];
|
|
944
|
-
deleteProductList: Scalars['Boolean'];
|
|
945
|
-
deleteProductTagList: Scalars['Boolean'];
|
|
946
|
-
deleteStorefrontJSScript: Scalars['Boolean'];
|
|
947
|
-
deleteVariantTypeList: Scalars['Boolean'];
|
|
948
|
-
/** Use this mutation to delete webhooks by giving `scope` list. */
|
|
949
|
-
deleteWebhook: Scalars['Boolean'];
|
|
950
|
-
fulfillOrder: Order;
|
|
951
|
-
refundOrderLine: Order;
|
|
952
|
-
saveCategory: Category;
|
|
953
|
-
saveProduct: Product;
|
|
954
|
-
saveProductAttribute: ProductAttribute;
|
|
955
|
-
saveProductBrand: ProductBrand;
|
|
956
|
-
saveProductStockLocations: Scalars['Boolean'];
|
|
957
|
-
saveProductTag: ProductTag;
|
|
958
|
-
/** Using this api you can update the sales channel name, priceList Id and stockLocations properties. */
|
|
959
|
-
saveSalesChannel?: Maybe<SalesChannel>;
|
|
960
|
-
saveStorefrontJSScript: StorefrontJSScript;
|
|
961
|
-
saveVariantType: VariantType;
|
|
962
|
-
/** Use this mutation to save webhooks by using multiple `scope` variables. After saving a webhook, **ikas** will start to push new webhooks to given url `endpoint`. If **endpoint** is unreachable or returns an error code other than `HTTP 200` **ikas** will try to push webhook for 3 times then stops sending webhook. */
|
|
963
|
-
saveWebhook?: Maybe<Array<Webhook>>;
|
|
964
|
-
updateOrderAddresses: Order;
|
|
965
|
-
updateOrderLine: Order;
|
|
966
|
-
updateOrderPackageStatus: Order;
|
|
967
|
-
updateProductSalesChannelStatus: Scalars['Boolean'];
|
|
968
|
-
};
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
export type MutationaddCustomTimelineEntryArgs = {
|
|
972
|
-
input: TimelineInput;
|
|
973
|
-
};
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
export type MutationaddOrderInvoiceArgs = {
|
|
977
|
-
input: AddOrderInvoiceInput;
|
|
978
|
-
};
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
export type MutationbulkUpdateProductsArgs = {
|
|
982
|
-
input: Array<BulkUpdateProductsInput>;
|
|
983
|
-
};
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
export type MutationcancelFulfillmentArgs = {
|
|
987
|
-
input: CancelFulfillmentInput;
|
|
988
|
-
};
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
export type MutationcreateMerchantAppPaymentArgs = {
|
|
992
|
-
input: MerchantAppPaymentInput;
|
|
993
|
-
};
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
export type MutationcreateOrderWithTransactionsArgs = {
|
|
997
|
-
input: CreateOrderWithTransactionsInput;
|
|
998
|
-
};
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
export type MutationdeleteCategoryListArgs = {
|
|
1002
|
-
idList: Array<Scalars['String']>;
|
|
1003
|
-
};
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
export type MutationdeleteProductAttributeListArgs = {
|
|
1007
|
-
idList: Array<Scalars['String']>;
|
|
1008
|
-
};
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
export type MutationdeleteProductBrandListArgs = {
|
|
1012
|
-
idList: Array<Scalars['String']>;
|
|
1013
|
-
};
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
export type MutationdeleteProductListArgs = {
|
|
1017
|
-
idList: Array<Scalars['String']>;
|
|
1018
|
-
};
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
export type MutationdeleteProductTagListArgs = {
|
|
1022
|
-
idList: Array<Scalars['String']>;
|
|
1023
|
-
};
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
export type MutationdeleteStorefrontJSScriptArgs = {
|
|
1027
|
-
storefrontIdList: Array<Scalars['String']>;
|
|
1028
|
-
};
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
export type MutationdeleteVariantTypeListArgs = {
|
|
1032
|
-
idList: Array<Scalars['String']>;
|
|
1033
|
-
};
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
export type MutationdeleteWebhookArgs = {
|
|
1037
|
-
scopes: Array<Scalars['String']>;
|
|
1038
|
-
};
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
export type MutationfulfillOrderArgs = {
|
|
1042
|
-
input: FulFillOrderInput;
|
|
1043
|
-
};
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
export type MutationrefundOrderLineArgs = {
|
|
1047
|
-
input: OrderRefundInput;
|
|
1048
|
-
};
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
export type MutationsaveCategoryArgs = {
|
|
1052
|
-
input: CategoryInput;
|
|
1053
|
-
};
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
export type MutationsaveProductArgs = {
|
|
1057
|
-
input: ProductInput;
|
|
1058
|
-
};
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
export type MutationsaveProductAttributeArgs = {
|
|
1062
|
-
input: ProductAttributeInput;
|
|
1063
|
-
};
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
export type MutationsaveProductBrandArgs = {
|
|
1067
|
-
input: ProductBrandInput;
|
|
1068
|
-
};
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
export type MutationsaveProductStockLocationsArgs = {
|
|
1072
|
-
input: SaveStockLocationsInput;
|
|
1073
|
-
};
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
export type MutationsaveProductTagArgs = {
|
|
1077
|
-
input: ProductTagInput;
|
|
1078
|
-
};
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
export type MutationsaveSalesChannelArgs = {
|
|
1082
|
-
input: SalesChannelInput;
|
|
1083
|
-
};
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
export type MutationsaveStorefrontJSScriptArgs = {
|
|
1087
|
-
input: StorefrontJSScriptInput;
|
|
1088
|
-
};
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
export type MutationsaveVariantTypeArgs = {
|
|
1092
|
-
input: VariantTypeInput;
|
|
1093
|
-
};
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
export type MutationsaveWebhookArgs = {
|
|
1097
|
-
input: WebhookInput;
|
|
1098
|
-
};
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
export type MutationupdateOrderAddressesArgs = {
|
|
1102
|
-
input: UpdateOrderAddressesInput;
|
|
1103
|
-
};
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
export type MutationupdateOrderLineArgs = {
|
|
1107
|
-
input: UpdateOrderInput;
|
|
1108
|
-
};
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
export type MutationupdateOrderPackageStatusArgs = {
|
|
1112
|
-
input: UpdateOrderPackageStatusInput;
|
|
1113
|
-
};
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
export type MutationupdateProductSalesChannelStatusArgs = {
|
|
1117
|
-
input: Array<UpdateProductSalesChannelStatusInput>;
|
|
1118
|
-
};
|
|
1119
|
-
|
|
1120
|
-
export type NumberFilterInput = {
|
|
1121
|
-
eq?: InputMaybe<Scalars['Float']>;
|
|
1122
|
-
gt?: InputMaybe<Scalars['Float']>;
|
|
1123
|
-
gte?: InputMaybe<Scalars['Float']>;
|
|
1124
|
-
in?: InputMaybe<Array<Scalars['Float']>>;
|
|
1125
|
-
lt?: InputMaybe<Scalars['Float']>;
|
|
1126
|
-
lte?: InputMaybe<Scalars['Float']>;
|
|
1127
|
-
};
|
|
1128
|
-
|
|
1129
|
-
export type Order = {
|
|
1130
|
-
__typename?: 'Order';
|
|
1131
|
-
billingAddress?: Maybe<OrderAddress>;
|
|
1132
|
-
branch?: Maybe<OrderBranch>;
|
|
1133
|
-
branchSessionId?: Maybe<Scalars['String']>;
|
|
1134
|
-
cancelReason?: Maybe<CancelledReasonEnum>;
|
|
1135
|
-
cancelledAt?: Maybe<Scalars['Timestamp']>;
|
|
1136
|
-
clientIp?: Maybe<Scalars['String']>;
|
|
1137
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1138
|
-
currencyCode: Scalars['String'];
|
|
1139
|
-
currencyRates: Array<OrderCurrencyRate>;
|
|
1140
|
-
customer?: Maybe<OrderCustomer>;
|
|
1141
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1142
|
-
giftPackageLines?: Maybe<Array<OrderGiftPackageLine>>;
|
|
1143
|
-
giftPackageNote?: Maybe<Scalars['String']>;
|
|
1144
|
-
host?: Maybe<Scalars['String']>;
|
|
1145
|
-
id: Scalars['ID'];
|
|
1146
|
-
invoices?: Maybe<Array<Invoice>>;
|
|
1147
|
-
isGiftPackage?: Maybe<Scalars['Boolean']>;
|
|
1148
|
-
merchantId: Scalars['String'];
|
|
1149
|
-
note?: Maybe<Scalars['String']>;
|
|
1150
|
-
orderAdjustments?: Maybe<Array<OrderAdjustment>>;
|
|
1151
|
-
orderLineItems: Array<OrderLineItem>;
|
|
1152
|
-
orderNumber?: Maybe<Scalars['String']>;
|
|
1153
|
-
orderPackageSequence?: Maybe<Scalars['Float']>;
|
|
1154
|
-
orderPackageStatus?: Maybe<OrderPackageStatusEnum>;
|
|
1155
|
-
orderPackages?: Maybe<Array<OrderPackage>>;
|
|
1156
|
-
orderPaymentStatus?: Maybe<OrderPaymentStatusEnum>;
|
|
1157
|
-
orderSequence?: Maybe<Scalars['Float']>;
|
|
1158
|
-
orderTagIds?: Maybe<Array<Scalars['String']>>;
|
|
1159
|
-
orderedAt?: Maybe<Scalars['Timestamp']>;
|
|
1160
|
-
paymentMethods?: Maybe<Array<OrderPaymentMethod>>;
|
|
1161
|
-
priceList?: Maybe<OrderPriceList>;
|
|
1162
|
-
salesChannel: OrderSalesChannel;
|
|
1163
|
-
shippingAddress?: Maybe<OrderAddress>;
|
|
1164
|
-
shippingLines?: Maybe<Array<OrderShippingLine>>;
|
|
1165
|
-
shippingMethod: ShippingMethodEnum;
|
|
1166
|
-
staff?: Maybe<OrderStaff>;
|
|
1167
|
-
status: OrderStatusEnum;
|
|
1168
|
-
storefront?: Maybe<OrderStorefront>;
|
|
1169
|
-
storefrontRouting?: Maybe<OrderStorefrontRouting>;
|
|
1170
|
-
storefrontTheme?: Maybe<OrderStorefrontTheme>;
|
|
1171
|
-
taxLines?: Maybe<Array<OrderTaxLine>>;
|
|
1172
|
-
terminalId?: Maybe<Scalars['String']>;
|
|
1173
|
-
totalFinalPrice: Scalars['Float'];
|
|
1174
|
-
totalPrice: Scalars['Float'];
|
|
1175
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1176
|
-
userAgent?: Maybe<Scalars['String']>;
|
|
1177
|
-
};
|
|
1178
|
-
|
|
1179
|
-
export type OrderAddress = {
|
|
1180
|
-
__typename?: 'OrderAddress';
|
|
1181
|
-
addressLine1: Scalars['String'];
|
|
1182
|
-
addressLine2?: Maybe<Scalars['String']>;
|
|
1183
|
-
city: OrderAddressCity;
|
|
1184
|
-
company?: Maybe<Scalars['String']>;
|
|
1185
|
-
country: OrderAddressCountry;
|
|
1186
|
-
district?: Maybe<OrderAddressDistrict>;
|
|
1187
|
-
firstName: Scalars['String'];
|
|
1188
|
-
id?: Maybe<Scalars['String']>;
|
|
1189
|
-
identityNumber?: Maybe<Scalars['String']>;
|
|
1190
|
-
isDefault: Scalars['Boolean'];
|
|
1191
|
-
lastName: Scalars['String'];
|
|
1192
|
-
phone?: Maybe<Scalars['String']>;
|
|
1193
|
-
postalCode?: Maybe<Scalars['String']>;
|
|
1194
|
-
state?: Maybe<OrderAddressState>;
|
|
1195
|
-
taxNumber?: Maybe<Scalars['String']>;
|
|
1196
|
-
taxOffice?: Maybe<Scalars['String']>;
|
|
1197
|
-
};
|
|
1198
|
-
|
|
1199
|
-
export type OrderAddressCity = {
|
|
1200
|
-
__typename?: 'OrderAddressCity';
|
|
1201
|
-
code?: Maybe<Scalars['String']>;
|
|
1202
|
-
id?: Maybe<Scalars['String']>;
|
|
1203
|
-
name: Scalars['String'];
|
|
1204
|
-
};
|
|
1205
|
-
|
|
1206
|
-
export type OrderAddressCityInput = {
|
|
1207
|
-
code?: InputMaybe<Scalars['String']>;
|
|
1208
|
-
id?: InputMaybe<Scalars['String']>;
|
|
1209
|
-
name: Scalars['String'];
|
|
1210
|
-
};
|
|
1211
|
-
|
|
1212
|
-
export type OrderAddressCountry = {
|
|
1213
|
-
__typename?: 'OrderAddressCountry';
|
|
1214
|
-
code?: Maybe<Scalars['String']>;
|
|
1215
|
-
id?: Maybe<Scalars['String']>;
|
|
1216
|
-
iso2?: Maybe<Scalars['String']>;
|
|
1217
|
-
iso3?: Maybe<Scalars['String']>;
|
|
1218
|
-
name: Scalars['String'];
|
|
1219
|
-
};
|
|
1220
|
-
|
|
1221
|
-
export type OrderAddressCountryInput = {
|
|
1222
|
-
code?: InputMaybe<Scalars['String']>;
|
|
1223
|
-
id?: InputMaybe<Scalars['String']>;
|
|
1224
|
-
iso2?: InputMaybe<Scalars['String']>;
|
|
1225
|
-
iso3?: InputMaybe<Scalars['String']>;
|
|
1226
|
-
name: Scalars['String'];
|
|
1227
|
-
};
|
|
1228
|
-
|
|
1229
|
-
export type OrderAddressDistrict = {
|
|
1230
|
-
__typename?: 'OrderAddressDistrict';
|
|
1231
|
-
code?: Maybe<Scalars['String']>;
|
|
1232
|
-
id?: Maybe<Scalars['String']>;
|
|
1233
|
-
name?: Maybe<Scalars['String']>;
|
|
1234
|
-
};
|
|
1235
|
-
|
|
1236
|
-
export type OrderAddressDistrictInput = {
|
|
1237
|
-
code?: InputMaybe<Scalars['String']>;
|
|
1238
|
-
id?: InputMaybe<Scalars['String']>;
|
|
1239
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1240
|
-
};
|
|
1241
|
-
|
|
1242
|
-
export type OrderAddressInput = {
|
|
1243
|
-
addressLine1: Scalars['String'];
|
|
1244
|
-
addressLine2?: InputMaybe<Scalars['String']>;
|
|
1245
|
-
city: OrderAddressCityInput;
|
|
1246
|
-
company?: InputMaybe<Scalars['String']>;
|
|
1247
|
-
country: OrderAddressCountryInput;
|
|
1248
|
-
district?: InputMaybe<OrderAddressDistrictInput>;
|
|
1249
|
-
firstName: Scalars['String'];
|
|
1250
|
-
id?: InputMaybe<Scalars['String']>;
|
|
1251
|
-
identityNumber?: InputMaybe<Scalars['String']>;
|
|
1252
|
-
isDefault: Scalars['Boolean'];
|
|
1253
|
-
lastName: Scalars['String'];
|
|
1254
|
-
phone?: InputMaybe<Scalars['String']>;
|
|
1255
|
-
postalCode?: InputMaybe<Scalars['String']>;
|
|
1256
|
-
state?: InputMaybe<OrderAddressStateInput>;
|
|
1257
|
-
taxNumber?: InputMaybe<Scalars['String']>;
|
|
1258
|
-
taxOffice?: InputMaybe<Scalars['String']>;
|
|
1259
|
-
};
|
|
1260
|
-
|
|
1261
|
-
export type OrderAddressState = {
|
|
1262
|
-
__typename?: 'OrderAddressState';
|
|
1263
|
-
code?: Maybe<Scalars['String']>;
|
|
1264
|
-
id?: Maybe<Scalars['String']>;
|
|
1265
|
-
name?: Maybe<Scalars['String']>;
|
|
1266
|
-
};
|
|
1267
|
-
|
|
1268
|
-
export type OrderAddressStateInput = {
|
|
1269
|
-
code?: InputMaybe<Scalars['String']>;
|
|
1270
|
-
id?: InputMaybe<Scalars['String']>;
|
|
1271
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1272
|
-
};
|
|
1273
|
-
|
|
1274
|
-
export type OrderAdjustment = {
|
|
1275
|
-
__typename?: 'OrderAdjustment';
|
|
1276
|
-
amount: Scalars['Float'];
|
|
1277
|
-
amountType: AmountTypeEnum;
|
|
1278
|
-
appliedOrderLines?: Maybe<Array<OrderAdjustmentAppliedOrderLine>>;
|
|
1279
|
-
campaignId?: Maybe<Scalars['String']>;
|
|
1280
|
-
couponId?: Maybe<Scalars['String']>;
|
|
1281
|
-
name: Scalars['String'];
|
|
1282
|
-
order: Scalars['Float'];
|
|
1283
|
-
type: AdjustmentEnum;
|
|
1284
|
-
};
|
|
1285
|
-
|
|
1286
|
-
export type OrderAdjustmentAppliedOrderLine = {
|
|
1287
|
-
__typename?: 'OrderAdjustmentAppliedOrderLine';
|
|
1288
|
-
amount: Scalars['Float'];
|
|
1289
|
-
appliedQuantity: Scalars['Float'];
|
|
1290
|
-
orderLineId: Scalars['String'];
|
|
1291
|
-
};
|
|
1292
|
-
|
|
1293
|
-
export type OrderAdjustmentInput = {
|
|
1294
|
-
amount: Scalars['Float'];
|
|
1295
|
-
amountType: AmountTypeEnum;
|
|
1296
|
-
campaignId?: InputMaybe<Scalars['String']>;
|
|
1297
|
-
couponId?: InputMaybe<Scalars['String']>;
|
|
1298
|
-
name: Scalars['String'];
|
|
1299
|
-
order: Scalars['Float'];
|
|
1300
|
-
type: AdjustmentEnum;
|
|
1301
|
-
};
|
|
1302
|
-
|
|
1303
|
-
export type OrderBranch = {
|
|
1304
|
-
__typename?: 'OrderBranch';
|
|
1305
|
-
id: Scalars['String'];
|
|
1306
|
-
name?: Maybe<Scalars['String']>;
|
|
1307
|
-
};
|
|
1308
|
-
|
|
1309
|
-
export type OrderCurrencyRate = {
|
|
1310
|
-
__typename?: 'OrderCurrencyRate';
|
|
1311
|
-
code: Scalars['String'];
|
|
1312
|
-
originalRate: Scalars['Float'];
|
|
1313
|
-
rate: Scalars['Float'];
|
|
1314
|
-
};
|
|
1315
|
-
|
|
1316
|
-
export type OrderCustomer = {
|
|
1317
|
-
__typename?: 'OrderCustomer';
|
|
1318
|
-
email?: Maybe<Scalars['String']>;
|
|
1319
|
-
firstName?: Maybe<Scalars['String']>;
|
|
1320
|
-
id?: Maybe<Scalars['String']>;
|
|
1321
|
-
identityNumber?: Maybe<Scalars['String']>;
|
|
1322
|
-
isGuestCheckout?: Maybe<Scalars['Boolean']>;
|
|
1323
|
-
lastName?: Maybe<Scalars['String']>;
|
|
1324
|
-
phone?: Maybe<Scalars['String']>;
|
|
1325
|
-
};
|
|
1326
|
-
|
|
1327
|
-
export type OrderCustomerInput = {
|
|
1328
|
-
email?: InputMaybe<Scalars['String']>;
|
|
1329
|
-
firstName?: InputMaybe<Scalars['String']>;
|
|
1330
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1331
|
-
lastName?: InputMaybe<Scalars['String']>;
|
|
1332
|
-
};
|
|
1333
|
-
|
|
1334
|
-
export type OrderGiftPackageLine = {
|
|
1335
|
-
__typename?: 'OrderGiftPackageLine';
|
|
1336
|
-
price: Scalars['Float'];
|
|
1337
|
-
taxValue?: Maybe<Scalars['Float']>;
|
|
1338
|
-
};
|
|
1339
|
-
|
|
1340
|
-
export type OrderLineDiscount = {
|
|
1341
|
-
__typename?: 'OrderLineDiscount';
|
|
1342
|
-
amount: Scalars['Float'];
|
|
1343
|
-
amountType: AmountTypeEnum;
|
|
1344
|
-
reason?: Maybe<Scalars['String']>;
|
|
1345
|
-
};
|
|
1346
|
-
|
|
1347
|
-
export type OrderLineDiscountInput = {
|
|
1348
|
-
amount: Scalars['Float'];
|
|
1349
|
-
amountType: AmountTypeEnum;
|
|
1350
|
-
reason?: InputMaybe<Scalars['String']>;
|
|
1351
|
-
};
|
|
1352
|
-
|
|
1353
|
-
export type OrderLineItem = {
|
|
1354
|
-
__typename?: 'OrderLineItem';
|
|
1355
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1356
|
-
currencyCode?: Maybe<Scalars['String']>;
|
|
1357
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1358
|
-
discount?: Maybe<OrderLineDiscount>;
|
|
1359
|
-
discountPrice?: Maybe<Scalars['Float']>;
|
|
1360
|
-
finalPrice?: Maybe<Scalars['Float']>;
|
|
1361
|
-
id: Scalars['ID'];
|
|
1362
|
-
options?: Maybe<Array<OrderLineOption>>;
|
|
1363
|
-
originalOrderLineItemId?: Maybe<Scalars['String']>;
|
|
1364
|
-
price: Scalars['Float'];
|
|
1365
|
-
quantity: Scalars['Float'];
|
|
1366
|
-
status: OrderLineItemStatusEnum;
|
|
1367
|
-
statusUpdatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1368
|
-
stockLocationId?: Maybe<Scalars['String']>;
|
|
1369
|
-
taxValue?: Maybe<Scalars['Float']>;
|
|
1370
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1371
|
-
variant: OrderLineVariant;
|
|
1372
|
-
};
|
|
1373
|
-
|
|
1374
|
-
export type OrderLineItemInput = {
|
|
1375
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1376
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1377
|
-
discount?: InputMaybe<OrderLineDiscountInput>;
|
|
1378
|
-
discountPrice?: InputMaybe<Scalars['Float']>;
|
|
1379
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1380
|
-
options?: InputMaybe<Array<OrderLineOptionInput>>;
|
|
1381
|
-
price: Scalars['Float'];
|
|
1382
|
-
quantity: Scalars['Float'];
|
|
1383
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1384
|
-
variant: OrderLineVariantInput;
|
|
1385
|
-
};
|
|
1386
|
-
|
|
1387
|
-
/** Order Line Item Status Enum */
|
|
1388
|
-
export enum OrderLineItemStatusEnum {
|
|
1389
|
-
CANCELLED = 'CANCELLED',
|
|
1390
|
-
CANCEL_REJECTED = 'CANCEL_REJECTED',
|
|
1391
|
-
CANCEL_REQUESTED = 'CANCEL_REQUESTED',
|
|
1392
|
-
DELIVERED = 'DELIVERED',
|
|
1393
|
-
FULFILLED = 'FULFILLED',
|
|
1394
|
-
REFUNDED = 'REFUNDED',
|
|
1395
|
-
REFUND_REJECTED = 'REFUND_REJECTED',
|
|
1396
|
-
REFUND_REQUESTED = 'REFUND_REQUESTED',
|
|
1397
|
-
REFUND_REQUEST_ACCEPTED = 'REFUND_REQUEST_ACCEPTED',
|
|
1398
|
-
UNFULFILLED = 'UNFULFILLED'
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
export type OrderLineOption = {
|
|
1402
|
-
__typename?: 'OrderLineOption';
|
|
1403
|
-
name: Scalars['String'];
|
|
1404
|
-
productOptionId: Scalars['String'];
|
|
1405
|
-
productOptionsSetId: Scalars['String'];
|
|
1406
|
-
type: ProductOptionTypeEnum;
|
|
1407
|
-
values: Array<OrderLineOptionValue>;
|
|
1408
|
-
};
|
|
1409
|
-
|
|
1410
|
-
export type OrderLineOptionInput = {
|
|
1411
|
-
productOptionId: Scalars['String'];
|
|
1412
|
-
productOptionsSetId: Scalars['String'];
|
|
1413
|
-
values: Array<OrderLineOptionValueInput>;
|
|
1414
|
-
};
|
|
1415
|
-
|
|
1416
|
-
export type OrderLineOptionValue = {
|
|
1417
|
-
__typename?: 'OrderLineOptionValue';
|
|
1418
|
-
name?: Maybe<Scalars['String']>;
|
|
1419
|
-
price?: Maybe<Scalars['Float']>;
|
|
1420
|
-
value: Scalars['String'];
|
|
1421
|
-
};
|
|
1422
|
-
|
|
1423
|
-
export type OrderLineOptionValueInput = {
|
|
1424
|
-
price?: InputMaybe<Scalars['Float']>;
|
|
1425
|
-
value: Scalars['String'];
|
|
1426
|
-
};
|
|
1427
|
-
|
|
1428
|
-
export type OrderLineVariant = {
|
|
1429
|
-
__typename?: 'OrderLineVariant';
|
|
1430
|
-
barcodeList?: Maybe<Array<Scalars['String']>>;
|
|
1431
|
-
brand?: Maybe<OrderLineVariantBrand>;
|
|
1432
|
-
categories?: Maybe<Array<OrderLineVariantCategory>>;
|
|
1433
|
-
id?: Maybe<Scalars['String']>;
|
|
1434
|
-
mainImageId?: Maybe<Scalars['String']>;
|
|
1435
|
-
name: Scalars['String'];
|
|
1436
|
-
prices?: Maybe<Array<OrderLineVariantPrice>>;
|
|
1437
|
-
productId?: Maybe<Scalars['String']>;
|
|
1438
|
-
sku?: Maybe<Scalars['String']>;
|
|
1439
|
-
slug?: Maybe<Scalars['String']>;
|
|
1440
|
-
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1441
|
-
/** @deprecated Will be removed use OrderLineItem.taxValue */
|
|
1442
|
-
taxValue?: Maybe<Scalars['Float']>;
|
|
1443
|
-
type?: Maybe<Scalars['Float']>;
|
|
1444
|
-
variantValues?: Maybe<Array<OrderLineVariantVariantValues>>;
|
|
1445
|
-
};
|
|
1446
|
-
|
|
1447
|
-
export type OrderLineVariantBrand = {
|
|
1448
|
-
__typename?: 'OrderLineVariantBrand';
|
|
1449
|
-
id: Scalars['String'];
|
|
1450
|
-
name: Scalars['String'];
|
|
1451
|
-
};
|
|
1452
|
-
|
|
1453
|
-
export type OrderLineVariantCategory = {
|
|
1454
|
-
__typename?: 'OrderLineVariantCategory';
|
|
1455
|
-
categoryPath?: Maybe<Array<OrderLineVariantCategory>>;
|
|
1456
|
-
id: Scalars['String'];
|
|
1457
|
-
name: Scalars['String'];
|
|
1458
|
-
};
|
|
1459
|
-
|
|
1460
|
-
export type OrderLineVariantInput = {
|
|
1461
|
-
id?: InputMaybe<Scalars['String']>;
|
|
1462
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1463
|
-
};
|
|
1464
|
-
|
|
1465
|
-
export type OrderLineVariantPrice = {
|
|
1466
|
-
__typename?: 'OrderLineVariantPrice';
|
|
1467
|
-
buyPrice?: Maybe<Scalars['Float']>;
|
|
1468
|
-
currency?: Maybe<Scalars['String']>;
|
|
1469
|
-
discountPrice?: Maybe<Scalars['Float']>;
|
|
1470
|
-
priceListId?: Maybe<Scalars['String']>;
|
|
1471
|
-
sellPrice: Scalars['Float'];
|
|
1472
|
-
};
|
|
1473
|
-
|
|
1474
|
-
export type OrderLineVariantVariantValues = {
|
|
1475
|
-
__typename?: 'OrderLineVariantVariantValues';
|
|
1476
|
-
order: Scalars['Float'];
|
|
1477
|
-
variantTypeId: Scalars['String'];
|
|
1478
|
-
variantTypeName?: Maybe<Scalars['String']>;
|
|
1479
|
-
variantValueId: Scalars['String'];
|
|
1480
|
-
variantValueName?: Maybe<Scalars['String']>;
|
|
1481
|
-
};
|
|
1482
|
-
|
|
1483
|
-
export type OrderPackage = {
|
|
1484
|
-
__typename?: 'OrderPackage';
|
|
1485
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1486
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1487
|
-
errorMessage?: Maybe<Scalars['String']>;
|
|
1488
|
-
id: Scalars['ID'];
|
|
1489
|
-
note?: Maybe<Scalars['String']>;
|
|
1490
|
-
orderLineItemIds: Array<Scalars['String']>;
|
|
1491
|
-
orderPackageFulfillStatus: OrderPackageFulfillStatusEnum;
|
|
1492
|
-
orderPackageNumber: Scalars['String'];
|
|
1493
|
-
stockLocationId: Scalars['String'];
|
|
1494
|
-
trackingInfo?: Maybe<TrackingInfo>;
|
|
1495
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1496
|
-
};
|
|
1497
|
-
|
|
1498
|
-
/** Order Package Fulfill Status Enum */
|
|
1499
|
-
export enum OrderPackageFulfillStatusEnum {
|
|
1500
|
-
CANCELLED = 'CANCELLED',
|
|
1501
|
-
CANCEL_REJECTED = 'CANCEL_REJECTED',
|
|
1502
|
-
CANCEL_REQUESTED = 'CANCEL_REQUESTED',
|
|
1503
|
-
DELIVERED = 'DELIVERED',
|
|
1504
|
-
ERROR = 'ERROR',
|
|
1505
|
-
FULFILLED = 'FULFILLED',
|
|
1506
|
-
READY_FOR_SHIPMENT = 'READY_FOR_SHIPMENT',
|
|
1507
|
-
REFUNDED = 'REFUNDED',
|
|
1508
|
-
REFUND_REJECTED = 'REFUND_REJECTED',
|
|
1509
|
-
REFUND_REQUESTED = 'REFUND_REQUESTED',
|
|
1510
|
-
REFUND_REQUEST_ACCEPTED = 'REFUND_REQUEST_ACCEPTED'
|
|
1511
|
-
}
|
|
1512
|
-
|
|
1513
|
-
/** Order Package Status Enum */
|
|
1514
|
-
export enum OrderPackageStatusEnum {
|
|
1515
|
-
CANCELLED = 'CANCELLED',
|
|
1516
|
-
CANCEL_REJECTED = 'CANCEL_REJECTED',
|
|
1517
|
-
CANCEL_REQUESTED = 'CANCEL_REQUESTED',
|
|
1518
|
-
DELIVERED = 'DELIVERED',
|
|
1519
|
-
FULFILLED = 'FULFILLED',
|
|
1520
|
-
PARTIALLY_CANCELLED = 'PARTIALLY_CANCELLED',
|
|
1521
|
-
PARTIALLY_DELIVERED = 'PARTIALLY_DELIVERED',
|
|
1522
|
-
PARTIALLY_FULFILLED = 'PARTIALLY_FULFILLED',
|
|
1523
|
-
PARTIALLY_REFUNDED = 'PARTIALLY_REFUNDED',
|
|
1524
|
-
READY_FOR_SHIPMENT = 'READY_FOR_SHIPMENT',
|
|
1525
|
-
REFUNDED = 'REFUNDED',
|
|
1526
|
-
REFUND_REJECTED = 'REFUND_REJECTED',
|
|
1527
|
-
REFUND_REQUESTED = 'REFUND_REQUESTED',
|
|
1528
|
-
REFUND_REQUEST_ACCEPTED = 'REFUND_REQUEST_ACCEPTED',
|
|
1529
|
-
UNABLE_TO_DELIVER = 'UNABLE_TO_DELIVER',
|
|
1530
|
-
UNFULFILLED = 'UNFULFILLED'
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
|
-
export type OrderPaginationResponse = {
|
|
1534
|
-
__typename?: 'OrderPaginationResponse';
|
|
1535
|
-
count: Scalars['Int'];
|
|
1536
|
-
data: Array<Order>;
|
|
1537
|
-
hasNext: Scalars['Boolean'];
|
|
1538
|
-
limit: Scalars['Int'];
|
|
1539
|
-
page: Scalars['Int'];
|
|
1540
|
-
};
|
|
1541
|
-
|
|
1542
|
-
export type OrderPaymentMethod = {
|
|
1543
|
-
__typename?: 'OrderPaymentMethod';
|
|
1544
|
-
price: Scalars['Float'];
|
|
1545
|
-
type: PaymentMethodTypeEnum;
|
|
1546
|
-
};
|
|
1547
|
-
|
|
1548
|
-
/** Order Payment Status Enum */
|
|
1549
|
-
export enum OrderPaymentStatusEnum {
|
|
1550
|
-
PAID = 'PAID',
|
|
1551
|
-
PARTIALLY_PAID = 'PARTIALLY_PAID',
|
|
1552
|
-
WAITING = 'WAITING'
|
|
1553
|
-
}
|
|
1554
|
-
|
|
1555
|
-
export type OrderPriceList = {
|
|
1556
|
-
__typename?: 'OrderPriceList';
|
|
1557
|
-
id: Scalars['String'];
|
|
1558
|
-
name?: Maybe<Scalars['String']>;
|
|
1559
|
-
};
|
|
1560
|
-
|
|
1561
|
-
export type OrderRefundInput = {
|
|
1562
|
-
orderId: Scalars['String'];
|
|
1563
|
-
orderRefundLines: Array<OrderRefundLineInput>;
|
|
1564
|
-
paymentGatewayId: Scalars['String'];
|
|
1565
|
-
reason?: InputMaybe<Scalars['String']>;
|
|
1566
|
-
refundShipping?: InputMaybe<Scalars['Boolean']>;
|
|
1567
|
-
stockLocationId: Scalars['String'];
|
|
1568
|
-
};
|
|
1569
|
-
|
|
1570
|
-
export type OrderRefundLineInput = {
|
|
1571
|
-
orderLineItemId: Scalars['String'];
|
|
1572
|
-
quantity: Scalars['Float'];
|
|
1573
|
-
restockItems?: InputMaybe<Scalars['Boolean']>;
|
|
1574
|
-
};
|
|
1575
|
-
|
|
1576
|
-
export type OrderSalesChannel = {
|
|
1577
|
-
__typename?: 'OrderSalesChannel';
|
|
1578
|
-
id: Scalars['String'];
|
|
1579
|
-
name?: Maybe<Scalars['String']>;
|
|
1580
|
-
type?: Maybe<Scalars['Float']>;
|
|
1581
|
-
};
|
|
1582
|
-
|
|
1583
|
-
export type OrderShippingLine = {
|
|
1584
|
-
__typename?: 'OrderShippingLine';
|
|
1585
|
-
isRefunded?: Maybe<Scalars['Boolean']>;
|
|
1586
|
-
price: Scalars['Float'];
|
|
1587
|
-
shippingSettingsId?: Maybe<Scalars['String']>;
|
|
1588
|
-
shippingZoneRateId?: Maybe<Scalars['String']>;
|
|
1589
|
-
taxValue?: Maybe<Scalars['Float']>;
|
|
1590
|
-
title: Scalars['String'];
|
|
1591
|
-
};
|
|
1592
|
-
|
|
1593
|
-
export type OrderShippingLineInput = {
|
|
1594
|
-
price: Scalars['Float'];
|
|
1595
|
-
taxValue?: InputMaybe<Scalars['Float']>;
|
|
1596
|
-
title: Scalars['String'];
|
|
1597
|
-
};
|
|
1598
|
-
|
|
1599
|
-
export type OrderStaff = {
|
|
1600
|
-
__typename?: 'OrderStaff';
|
|
1601
|
-
email: Scalars['String'];
|
|
1602
|
-
firstName: Scalars['String'];
|
|
1603
|
-
lastName: Scalars['String'];
|
|
1604
|
-
};
|
|
1605
|
-
|
|
1606
|
-
/** Order Status Enum */
|
|
1607
|
-
export enum OrderStatusEnum {
|
|
1608
|
-
CANCELLED = 'CANCELLED',
|
|
1609
|
-
CREATED = 'CREATED',
|
|
1610
|
-
DRAFT = 'DRAFT',
|
|
1611
|
-
PARTIALLY_CANCELLED = 'PARTIALLY_CANCELLED',
|
|
1612
|
-
PARTIALLY_REFUNDED = 'PARTIALLY_REFUNDED',
|
|
1613
|
-
REFUNDED = 'REFUNDED',
|
|
1614
|
-
REFUND_REJECTED = 'REFUND_REJECTED',
|
|
1615
|
-
REFUND_REQUESTED = 'REFUND_REQUESTED'
|
|
1616
|
-
}
|
|
1617
|
-
|
|
1618
|
-
export type OrderStorefront = {
|
|
1619
|
-
__typename?: 'OrderStorefront';
|
|
1620
|
-
id: Scalars['String'];
|
|
1621
|
-
name?: Maybe<Scalars['String']>;
|
|
1622
|
-
};
|
|
1623
|
-
|
|
1624
|
-
export type OrderStorefrontRouting = {
|
|
1625
|
-
__typename?: 'OrderStorefrontRouting';
|
|
1626
|
-
domain?: Maybe<Scalars['String']>;
|
|
1627
|
-
id: Scalars['String'];
|
|
1628
|
-
locale?: Maybe<Scalars['String']>;
|
|
1629
|
-
path?: Maybe<Scalars['String']>;
|
|
1630
|
-
priceListId?: Maybe<Scalars['String']>;
|
|
1631
|
-
};
|
|
1632
|
-
|
|
1633
|
-
export type OrderStorefrontTheme = {
|
|
1634
|
-
__typename?: 'OrderStorefrontTheme';
|
|
1635
|
-
id: Scalars['String'];
|
|
1636
|
-
name?: Maybe<Scalars['String']>;
|
|
1637
|
-
themeId?: Maybe<Scalars['String']>;
|
|
1638
|
-
themeVersionId?: Maybe<Scalars['String']>;
|
|
1639
|
-
};
|
|
1640
|
-
|
|
1641
|
-
export type OrderTaxLine = {
|
|
1642
|
-
__typename?: 'OrderTaxLine';
|
|
1643
|
-
price: Scalars['Float'];
|
|
1644
|
-
rate: Scalars['Float'];
|
|
1645
|
-
};
|
|
1646
|
-
|
|
1647
|
-
export type OrderTransactionInput = {
|
|
1648
|
-
amount: Scalars['Float'];
|
|
1649
|
-
paymentGatewayId?: InputMaybe<Scalars['String']>;
|
|
1650
|
-
};
|
|
1651
|
-
|
|
1652
|
-
export type PaginationInput = {
|
|
1653
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***<br />:::note<br />min 1, max 200 values can be given. If no value is entered, default 50 is accepted.<br />::: */
|
|
1654
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
1655
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***<br />:::note<br />If no value is entered, default 1 is accepted.<br /> ::: */
|
|
1656
|
-
page?: InputMaybe<Scalars['Int']>;
|
|
1657
|
-
};
|
|
1658
|
-
|
|
1659
|
-
export enum PaymentMethodTypeEnum {
|
|
1660
|
-
APP_PAYMENT = 'APP_PAYMENT',
|
|
1661
|
-
BUY_ONLINE_PAY_AT_STORE = 'BUY_ONLINE_PAY_AT_STORE',
|
|
1662
|
-
CASH = 'CASH',
|
|
1663
|
-
CASH_ON_DELIVERY = 'CASH_ON_DELIVERY',
|
|
1664
|
-
CREDIT_CARD = 'CREDIT_CARD',
|
|
1665
|
-
CREDIT_CARD_ON_DELIVERY = 'CREDIT_CARD_ON_DELIVERY',
|
|
1666
|
-
GIFT_CARD = 'GIFT_CARD',
|
|
1667
|
-
MONEY_ORDER = 'MONEY_ORDER',
|
|
1668
|
-
OTHER = 'OTHER'
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
export type PriceList = {
|
|
1672
|
-
__typename?: 'PriceList';
|
|
1673
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1674
|
-
currency: Scalars['String'];
|
|
1675
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1676
|
-
id: Scalars['ID'];
|
|
1677
|
-
name: Scalars['String'];
|
|
1678
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1679
|
-
};
|
|
1680
|
-
|
|
1681
|
-
export type Product = {
|
|
1682
|
-
__typename?: 'Product';
|
|
1683
|
-
attributes?: Maybe<Array<ProductAttributeValue>>;
|
|
1684
|
-
brand?: Maybe<ProductBrand>;
|
|
1685
|
-
brandId?: Maybe<Scalars['String']>;
|
|
1686
|
-
categories?: Maybe<Array<Category>>;
|
|
1687
|
-
categoryIds?: Maybe<Array<Scalars['String']>>;
|
|
1688
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1689
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1690
|
-
description?: Maybe<Scalars['String']>;
|
|
1691
|
-
groupVariantsByVariantTypeId?: Maybe<Scalars['String']>;
|
|
1692
|
-
id: Scalars['ID'];
|
|
1693
|
-
metaData?: Maybe<HTMLMetaData>;
|
|
1694
|
-
name: Scalars['String'];
|
|
1695
|
-
productOptionSetId?: Maybe<Scalars['String']>;
|
|
1696
|
-
productVariantTypes?: Maybe<Array<ProductVariantType>>;
|
|
1697
|
-
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
1698
|
-
shortDescription?: Maybe<Scalars['String']>;
|
|
1699
|
-
tagIds?: Maybe<Array<Scalars['String']>>;
|
|
1700
|
-
tags?: Maybe<Array<ProductTag>>;
|
|
1701
|
-
translations?: Maybe<Array<ProductTranslation>>;
|
|
1702
|
-
type: ProductTypeEnum;
|
|
1703
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1704
|
-
variants: Array<Variant>;
|
|
1705
|
-
vendorId?: Maybe<Scalars['String']>;
|
|
1706
|
-
weight?: Maybe<Scalars['Float']>;
|
|
1707
|
-
};
|
|
1708
|
-
|
|
1709
|
-
export type ProductAttribute = {
|
|
1710
|
-
__typename?: 'ProductAttribute';
|
|
1711
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1712
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1713
|
-
description?: Maybe<Scalars['String']>;
|
|
1714
|
-
id: Scalars['ID'];
|
|
1715
|
-
name: Scalars['String'];
|
|
1716
|
-
options?: Maybe<Array<ProductAttributeOption>>;
|
|
1717
|
-
tableTemplate?: Maybe<ProductAttributeTableTemplate>;
|
|
1718
|
-
translations?: Maybe<Array<ProductAttributeTranslation>>;
|
|
1719
|
-
type: ProductAttributeTypeEnum;
|
|
1720
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1721
|
-
};
|
|
1722
|
-
|
|
1723
|
-
export type ProductAttributeInput = {
|
|
1724
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1725
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1726
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1727
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1728
|
-
name: Scalars['String'];
|
|
1729
|
-
options?: InputMaybe<Array<ProductAttributeOptionInput>>;
|
|
1730
|
-
tableTemplate?: InputMaybe<ProductAttributeTableTemplateInput>;
|
|
1731
|
-
translations?: InputMaybe<Array<ProductAttributeTranslationInput>>;
|
|
1732
|
-
type: ProductAttributeTypeEnum;
|
|
1733
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1734
|
-
};
|
|
1735
|
-
|
|
1736
|
-
export type ProductAttributeOption = {
|
|
1737
|
-
__typename?: 'ProductAttributeOption';
|
|
1738
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1739
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1740
|
-
id: Scalars['ID'];
|
|
1741
|
-
name: Scalars['String'];
|
|
1742
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1743
|
-
};
|
|
1744
|
-
|
|
1745
|
-
export type ProductAttributeOptionInput = {
|
|
1746
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1747
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1748
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1749
|
-
name: Scalars['String'];
|
|
1750
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1751
|
-
};
|
|
1752
|
-
|
|
1753
|
-
export type ProductAttributeOptionTranslation = {
|
|
1754
|
-
__typename?: 'ProductAttributeOptionTranslation';
|
|
1755
|
-
id: Scalars['String'];
|
|
1756
|
-
name?: Maybe<Scalars['String']>;
|
|
1757
|
-
};
|
|
1758
|
-
|
|
1759
|
-
export type ProductAttributeOptionTranslationInput = {
|
|
1760
|
-
id: Scalars['String'];
|
|
1761
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1762
|
-
};
|
|
1763
|
-
|
|
1764
|
-
export type ProductAttributeTableCellData = {
|
|
1765
|
-
__typename?: 'ProductAttributeTableCellData';
|
|
1766
|
-
id: Scalars['String'];
|
|
1767
|
-
name: Scalars['String'];
|
|
1768
|
-
};
|
|
1769
|
-
|
|
1770
|
-
export type ProductAttributeTableCellDataInput = {
|
|
1771
|
-
id: Scalars['String'];
|
|
1772
|
-
name: Scalars['String'];
|
|
1773
|
-
};
|
|
1774
|
-
|
|
1775
|
-
export type ProductAttributeTableTemplate = {
|
|
1776
|
-
__typename?: 'ProductAttributeTableTemplate';
|
|
1777
|
-
columns: Array<ProductAttributeTableCellData>;
|
|
1778
|
-
rows: Array<ProductAttributeTableCellData>;
|
|
1779
|
-
};
|
|
1780
|
-
|
|
1781
|
-
export type ProductAttributeTableTemplateInput = {
|
|
1782
|
-
columns: Array<ProductAttributeTableCellDataInput>;
|
|
1783
|
-
rows: Array<ProductAttributeTableCellDataInput>;
|
|
1784
|
-
};
|
|
1785
|
-
|
|
1786
|
-
export type ProductAttributeTranslation = {
|
|
1787
|
-
__typename?: 'ProductAttributeTranslation';
|
|
1788
|
-
description?: Maybe<Scalars['String']>;
|
|
1789
|
-
locale: Scalars['String'];
|
|
1790
|
-
name?: Maybe<Scalars['String']>;
|
|
1791
|
-
options?: Maybe<Array<ProductAttributeOptionTranslation>>;
|
|
1792
|
-
};
|
|
1793
|
-
|
|
1794
|
-
export type ProductAttributeTranslationInput = {
|
|
1795
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1796
|
-
locale: Scalars['String'];
|
|
1797
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1798
|
-
options?: InputMaybe<Array<ProductAttributeOptionTranslationInput>>;
|
|
1799
|
-
};
|
|
1800
|
-
|
|
1801
|
-
/** ProductAttribute Types */
|
|
1802
|
-
export enum ProductAttributeTypeEnum {
|
|
1803
|
-
BOOLEAN = 'BOOLEAN',
|
|
1804
|
-
CHOICE = 'CHOICE',
|
|
1805
|
-
DATETIME = 'DATETIME',
|
|
1806
|
-
HTML = 'HTML',
|
|
1807
|
-
MULTIPLE_CHOICE = 'MULTIPLE_CHOICE',
|
|
1808
|
-
NUMERIC = 'NUMERIC',
|
|
1809
|
-
PRODUCT = 'PRODUCT',
|
|
1810
|
-
TABLE = 'TABLE',
|
|
1811
|
-
TEXT = 'TEXT'
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
export type ProductAttributeValue = {
|
|
1815
|
-
__typename?: 'ProductAttributeValue';
|
|
1816
|
-
productAttributeId?: Maybe<Scalars['String']>;
|
|
1817
|
-
productAttributeOptionId?: Maybe<Scalars['String']>;
|
|
1818
|
-
value?: Maybe<Scalars['String']>;
|
|
1819
|
-
};
|
|
1820
|
-
|
|
1821
|
-
export type ProductAttributeValueInput = {
|
|
1822
|
-
productAttributeId?: InputMaybe<Scalars['String']>;
|
|
1823
|
-
productAttributeOptionId?: InputMaybe<Scalars['String']>;
|
|
1824
|
-
value?: InputMaybe<Scalars['String']>;
|
|
1825
|
-
};
|
|
1826
|
-
|
|
1827
|
-
export type ProductBrand = {
|
|
1828
|
-
__typename?: 'ProductBrand';
|
|
1829
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1830
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1831
|
-
description?: Maybe<Scalars['String']>;
|
|
1832
|
-
id: Scalars['ID'];
|
|
1833
|
-
imageId?: Maybe<Scalars['String']>;
|
|
1834
|
-
metaData?: Maybe<HTMLMetaData>;
|
|
1835
|
-
name: Scalars['String'];
|
|
1836
|
-
orderType?: Maybe<CategoryProductsOrderTypeEnum>;
|
|
1837
|
-
salesChannelIds?: Maybe<Array<Scalars['String']>>;
|
|
1838
|
-
translations?: Maybe<Array<ProductBrandTranslation>>;
|
|
1839
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1840
|
-
};
|
|
1841
|
-
|
|
1842
|
-
export type ProductBrandInput = {
|
|
1843
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1844
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1845
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1846
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1847
|
-
imageId?: InputMaybe<Scalars['String']>;
|
|
1848
|
-
metaData?: InputMaybe<HTMLMetaDataInput>;
|
|
1849
|
-
name: Scalars['String'];
|
|
1850
|
-
orderType?: InputMaybe<CategoryProductsOrderTypeEnum>;
|
|
1851
|
-
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
1852
|
-
translations?: InputMaybe<Array<ProductBrandTranslationInput>>;
|
|
1853
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1854
|
-
};
|
|
1855
|
-
|
|
1856
|
-
export type ProductBrandTranslation = {
|
|
1857
|
-
__typename?: 'ProductBrandTranslation';
|
|
1858
|
-
description?: Maybe<Scalars['String']>;
|
|
1859
|
-
locale: Scalars['String'];
|
|
1860
|
-
name?: Maybe<Scalars['String']>;
|
|
1861
|
-
};
|
|
1862
|
-
|
|
1863
|
-
export type ProductBrandTranslationInput = {
|
|
1864
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1865
|
-
locale: Scalars['String'];
|
|
1866
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1867
|
-
};
|
|
1868
|
-
|
|
1869
|
-
export type ProductImage = {
|
|
1870
|
-
__typename?: 'ProductImage';
|
|
1871
|
-
imageId?: Maybe<Scalars['String']>;
|
|
1872
|
-
isMain: Scalars['Boolean'];
|
|
1873
|
-
order: Scalars['Float'];
|
|
1874
|
-
};
|
|
1875
|
-
|
|
1876
|
-
export type ProductImageInput = {
|
|
1877
|
-
imageId: Scalars['String'];
|
|
1878
|
-
isMain: Scalars['Boolean'];
|
|
1879
|
-
order: Scalars['Float'];
|
|
1880
|
-
};
|
|
1881
|
-
|
|
1882
|
-
export type ProductInput = {
|
|
1883
|
-
attributes?: InputMaybe<Array<ProductAttributeValueInput>>;
|
|
1884
|
-
brandId?: InputMaybe<Scalars['String']>;
|
|
1885
|
-
categoryIds?: InputMaybe<Array<Scalars['String']>>;
|
|
1886
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1887
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1888
|
-
description?: InputMaybe<Scalars['String']>;
|
|
1889
|
-
groupVariantsByVariantTypeId?: InputMaybe<Scalars['String']>;
|
|
1890
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1891
|
-
metaData?: InputMaybe<HTMLMetaDataInput>;
|
|
1892
|
-
name: Scalars['String'];
|
|
1893
|
-
productOptionSetId?: InputMaybe<Scalars['String']>;
|
|
1894
|
-
productVariantTypes?: InputMaybe<Array<ProductVariantTypeInput>>;
|
|
1895
|
-
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
1896
|
-
shortDescription?: InputMaybe<Scalars['String']>;
|
|
1897
|
-
tagIds?: InputMaybe<Array<Scalars['String']>>;
|
|
1898
|
-
translations?: InputMaybe<Array<ProductTranslationInput>>;
|
|
1899
|
-
type: ProductTypeEnum;
|
|
1900
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1901
|
-
variants: Array<VariantInput>;
|
|
1902
|
-
vendorId?: InputMaybe<Scalars['String']>;
|
|
1903
|
-
weight?: InputMaybe<Scalars['Float']>;
|
|
1904
|
-
};
|
|
1905
|
-
|
|
1906
|
-
export enum ProductOptionTypeEnum {
|
|
1907
|
-
CHECKBOX = 'CHECKBOX',
|
|
1908
|
-
CHOICE = 'CHOICE',
|
|
1909
|
-
COLOR_PICKER = 'COLOR_PICKER',
|
|
1910
|
-
DATE_PICKER = 'DATE_PICKER',
|
|
1911
|
-
FILE = 'FILE',
|
|
1912
|
-
IMAGE = 'IMAGE',
|
|
1913
|
-
TEXT = 'TEXT',
|
|
1914
|
-
TEXT_AREA = 'TEXT_AREA'
|
|
1915
|
-
}
|
|
1916
|
-
|
|
1917
|
-
export type ProductPaginationResponse = {
|
|
1918
|
-
__typename?: 'ProductPaginationResponse';
|
|
1919
|
-
/** Returns the first three records of each page in the records returned as a response. For example, ***let's say page = 3, limit = 30, count = 3.*** The records that will return as a response are the records ***between 60-62.*** */
|
|
1920
|
-
count: Scalars['Int'];
|
|
1921
|
-
data: Array<Product>;
|
|
1922
|
-
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1923
|
-
hasNext: Scalars['Boolean'];
|
|
1924
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***:::notemin 1, max 200 values can be given. If no value is entered, default 50 is accepted.::: */
|
|
1925
|
-
limit: Scalars['Int'];
|
|
1926
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***:::noteIf no value is entered, default 1 is accepted.::: */
|
|
1927
|
-
page: Scalars['Int'];
|
|
1928
|
-
};
|
|
1929
|
-
|
|
1930
|
-
export type ProductPrice = {
|
|
1931
|
-
__typename?: 'ProductPrice';
|
|
1932
|
-
buyPrice?: Maybe<Scalars['Float']>;
|
|
1933
|
-
currency?: Maybe<Scalars['String']>;
|
|
1934
|
-
discountPrice?: Maybe<Scalars['Float']>;
|
|
1935
|
-
priceListId?: Maybe<Scalars['String']>;
|
|
1936
|
-
sellPrice: Scalars['Float'];
|
|
1937
|
-
};
|
|
1938
|
-
|
|
1939
|
-
export type ProductPriceInput = {
|
|
1940
|
-
buyPrice?: InputMaybe<Scalars['Float']>;
|
|
1941
|
-
currency?: InputMaybe<Scalars['String']>;
|
|
1942
|
-
discountPrice?: InputMaybe<Scalars['Float']>;
|
|
1943
|
-
priceListId?: InputMaybe<Scalars['String']>;
|
|
1944
|
-
sellPrice: Scalars['Float'];
|
|
1945
|
-
};
|
|
1946
|
-
|
|
1947
|
-
export type ProductSearchResponse = {
|
|
1948
|
-
__typename?: 'ProductSearchResponse';
|
|
1949
|
-
count: Scalars['Float'];
|
|
1950
|
-
data: Scalars['JSON'];
|
|
1951
|
-
limit: Scalars['Float'];
|
|
1952
|
-
page: Scalars['Float'];
|
|
1953
|
-
totalCount: Scalars['Float'];
|
|
1954
|
-
};
|
|
1955
|
-
|
|
1956
|
-
export type ProductStockLocation = {
|
|
1957
|
-
__typename?: 'ProductStockLocation';
|
|
1958
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1959
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1960
|
-
id: Scalars['ID'];
|
|
1961
|
-
productId: Scalars['String'];
|
|
1962
|
-
stockCount: Scalars['Float'];
|
|
1963
|
-
stockLocationId: Scalars['String'];
|
|
1964
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
1965
|
-
variantId: Scalars['String'];
|
|
1966
|
-
};
|
|
1967
|
-
|
|
1968
|
-
export type ProductStockLocationInput = {
|
|
1969
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1970
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
1971
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1972
|
-
productId: Scalars['String'];
|
|
1973
|
-
stockCount: Scalars['Float'];
|
|
1974
|
-
stockLocationId: Scalars['String'];
|
|
1975
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
1976
|
-
variantId: Scalars['String'];
|
|
1977
|
-
};
|
|
1978
|
-
|
|
1979
|
-
export type ProductStockLocationPaginationResponse = {
|
|
1980
|
-
__typename?: 'ProductStockLocationPaginationResponse';
|
|
1981
|
-
/** Returns the first three records of each page in the records returned as a response. For example, ***let's say page = 3, limit = 30, count = 3.*** The records that will return as a response are the records ***between 60-62.*** */
|
|
1982
|
-
count: Scalars['Int'];
|
|
1983
|
-
data: Array<ProductStockLocation>;
|
|
1984
|
-
/** In the records returned as Response, it shows whether there are any more records or not. For example, let's say our page field is three and our limit field is thirty. Records between 60 and 90 will be returned. If hasNext is ```true``` despite these records, ***it means there are more records.*** If hasNext is ```false```, it means there are a total of ***90 records.*** */
|
|
1985
|
-
hasNext: Scalars['Boolean'];
|
|
1986
|
-
/** The maximum number of data you want to see on a page in the records returned as a response. For example, if the limit is ***20***, the data will be displayed ***as 20 each.***:::notemin 1, max 200 values can be given. If no value is entered, default 50 is accepted.::: */
|
|
1987
|
-
limit: Scalars['Int'];
|
|
1988
|
-
/** The number of the page you want to see in the records that return as response. For example: We entered the page field as ***3***.And let our limit field be ***30***. The records that will return as a response are the records ***between 60-90.***:::noteIf no value is entered, default 1 is accepted.::: */
|
|
1989
|
-
page: Scalars['Int'];
|
|
1990
|
-
};
|
|
1991
|
-
|
|
1992
|
-
export type ProductTag = {
|
|
1993
|
-
__typename?: 'ProductTag';
|
|
1994
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
1995
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
1996
|
-
id: Scalars['ID'];
|
|
1997
|
-
name: Scalars['String'];
|
|
1998
|
-
translations?: Maybe<Array<ProductTagTranslation>>;
|
|
1999
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2000
|
-
};
|
|
2001
|
-
|
|
2002
|
-
export type ProductTagInput = {
|
|
2003
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2004
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2005
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2006
|
-
name: Scalars['String'];
|
|
2007
|
-
translations?: InputMaybe<Array<ProductTagTranslationInput>>;
|
|
2008
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2009
|
-
};
|
|
2010
|
-
|
|
2011
|
-
export type ProductTagTranslation = {
|
|
2012
|
-
__typename?: 'ProductTagTranslation';
|
|
2013
|
-
description?: Maybe<Scalars['String']>;
|
|
2014
|
-
locale: Scalars['String'];
|
|
2015
|
-
name?: Maybe<Scalars['String']>;
|
|
2016
|
-
};
|
|
2017
|
-
|
|
2018
|
-
export type ProductTagTranslationInput = {
|
|
2019
|
-
description?: InputMaybe<Scalars['String']>;
|
|
2020
|
-
locale: Scalars['String'];
|
|
2021
|
-
name?: InputMaybe<Scalars['String']>;
|
|
2022
|
-
};
|
|
2023
|
-
|
|
2024
|
-
export type ProductTranslation = {
|
|
2025
|
-
__typename?: 'ProductTranslation';
|
|
2026
|
-
description?: Maybe<Scalars['String']>;
|
|
2027
|
-
locale: Scalars['String'];
|
|
2028
|
-
name?: Maybe<Scalars['String']>;
|
|
2029
|
-
};
|
|
2030
|
-
|
|
2031
|
-
export type ProductTranslationInput = {
|
|
2032
|
-
description?: InputMaybe<Scalars['String']>;
|
|
2033
|
-
locale: Scalars['String'];
|
|
2034
|
-
name?: InputMaybe<Scalars['String']>;
|
|
2035
|
-
};
|
|
2036
|
-
|
|
2037
|
-
/** Product Types */
|
|
2038
|
-
export enum ProductTypeEnum {
|
|
2039
|
-
DIGITAL = 'DIGITAL',
|
|
2040
|
-
MEMBERSHIP = 'MEMBERSHIP',
|
|
2041
|
-
PHYSICAL = 'PHYSICAL'
|
|
2042
|
-
}
|
|
2043
|
-
|
|
2044
|
-
export type ProductVariantType = {
|
|
2045
|
-
__typename?: 'ProductVariantType';
|
|
2046
|
-
order: Scalars['Float'];
|
|
2047
|
-
variantTypeId: Scalars['String'];
|
|
2048
|
-
variantValueIds?: Maybe<Array<Scalars['String']>>;
|
|
2049
|
-
};
|
|
2050
|
-
|
|
2051
|
-
export type ProductVariantTypeInput = {
|
|
2052
|
-
order: Scalars['Float'];
|
|
2053
|
-
variantTypeId: Scalars['String'];
|
|
2054
|
-
variantValueIds: Array<Scalars['String']>;
|
|
2055
|
-
};
|
|
2056
|
-
|
|
2057
|
-
export type Query = {
|
|
2058
|
-
__typename?: 'Query';
|
|
2059
|
-
/** By using this api you can get properties of merchant and merchant staff. */
|
|
2060
|
-
getAuthorizedApp?: Maybe<AuthorizedApp>;
|
|
2061
|
-
getImageUploadUrl: Scalars['String'];
|
|
2062
|
-
/** By using this api you can get properties of merchant and merchant staff. */
|
|
2063
|
-
getMerchant: MerchantResponse;
|
|
2064
|
-
getMerchantLicence: MerchantLicence;
|
|
2065
|
-
/** Using this api, you can view your sales channel. */
|
|
2066
|
-
getSalesChannel?: Maybe<SalesChannel>;
|
|
2067
|
-
/**
|
|
2068
|
-
* undefined
|
|
2069
|
-
*
|
|
2070
|
-
* Search applies to following fields: `name`
|
|
2071
|
-
*/
|
|
2072
|
-
listCategory: Array<Category>;
|
|
2073
|
-
listCity: Array<City>;
|
|
2074
|
-
listCountry: Array<Country>;
|
|
2075
|
-
listCustomer: CustomerPaginationResponse;
|
|
2076
|
-
listDistrict: Array<District>;
|
|
2077
|
-
listMerchantAppPayment: MerchantAppPaymentPaginationResponse;
|
|
2078
|
-
listOrder: OrderPaginationResponse;
|
|
2079
|
-
listPriceList: Array<PriceList>;
|
|
2080
|
-
/** undefined */
|
|
2081
|
-
listProduct: ProductPaginationResponse;
|
|
2082
|
-
/** undefined */
|
|
2083
|
-
listProductAttribute: Array<ProductAttribute>;
|
|
2084
|
-
/**
|
|
2085
|
-
* undefined
|
|
2086
|
-
*
|
|
2087
|
-
* Search applies to following fields: `name`
|
|
2088
|
-
*/
|
|
2089
|
-
listProductBrand: Array<ProductBrand>;
|
|
2090
|
-
listProductStockLocation: ProductStockLocationPaginationResponse;
|
|
2091
|
-
/** undefined */
|
|
2092
|
-
listProductTag: Array<ProductTag>;
|
|
2093
|
-
listSalesChannel: Array<SalesChannel>;
|
|
2094
|
-
listState: Array<State>;
|
|
2095
|
-
listStockLocation: Array<StockLocation>;
|
|
2096
|
-
listStorefront: Array<Storefront>;
|
|
2097
|
-
listStorefrontJSScript: Array<StorefrontJSScript>;
|
|
2098
|
-
listTown: Array<Town>;
|
|
2099
|
-
/** undefined */
|
|
2100
|
-
listVariantType: Array<VariantType>;
|
|
2101
|
-
/** Use this query to list active webhooks of your application. */
|
|
2102
|
-
listWebhook: Array<Webhook>;
|
|
2103
|
-
me?: Maybe<MeResponse>;
|
|
2104
|
-
searchProducts: ProductSearchResponse;
|
|
2105
|
-
};
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
export type QuerygetImageUploadUrlArgs = {
|
|
2109
|
-
imageDir?: InputMaybe<Scalars['String']>;
|
|
2110
|
-
imageId: Scalars['String'];
|
|
2111
|
-
};
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
export type QuerylistCategoryArgs = {
|
|
2115
|
-
categoryPath?: InputMaybe<CategoryPathFilterInput>;
|
|
2116
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2117
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2118
|
-
name?: InputMaybe<StringFilterInput>;
|
|
2119
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2120
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2121
|
-
};
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
export type QuerylistCityArgs = {
|
|
2125
|
-
countryId?: InputMaybe<StringFilterInput>;
|
|
2126
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2127
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2128
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2129
|
-
stateId: StringFilterInput;
|
|
2130
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2131
|
-
};
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
export type QuerylistCountryArgs = {
|
|
2135
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2136
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2137
|
-
iso2?: InputMaybe<StringFilterInput>;
|
|
2138
|
-
iso3?: InputMaybe<StringFilterInput>;
|
|
2139
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2140
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2141
|
-
};
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
export type QuerylistCustomerArgs = {
|
|
2145
|
-
email?: InputMaybe<StringFilterInput>;
|
|
2146
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2147
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2148
|
-
merchantId?: InputMaybe<StringFilterInput>;
|
|
2149
|
-
pagination?: InputMaybe<PaginationInput>;
|
|
2150
|
-
phone?: InputMaybe<StringFilterInput>;
|
|
2151
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2152
|
-
sort?: InputMaybe<Scalars['String']>;
|
|
2153
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2154
|
-
};
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
export type QuerylistDistrictArgs = {
|
|
2158
|
-
cityId: StringFilterInput;
|
|
2159
|
-
countryId?: InputMaybe<StringFilterInput>;
|
|
2160
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2161
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2162
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2163
|
-
stateId?: InputMaybe<StringFilterInput>;
|
|
2164
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2165
|
-
};
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
export type QuerylistMerchantAppPaymentArgs = {
|
|
2169
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2170
|
-
pagination?: InputMaybe<PaginationInput>;
|
|
2171
|
-
};
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
export type QuerylistOrderArgs = {
|
|
2175
|
-
closedAt?: InputMaybe<DateFilterInput>;
|
|
2176
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2177
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2178
|
-
orderNumber?: InputMaybe<StringFilterInput>;
|
|
2179
|
-
orderedAt?: InputMaybe<DateFilterInput>;
|
|
2180
|
-
pagination?: InputMaybe<PaginationInput>;
|
|
2181
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2182
|
-
sort?: InputMaybe<Scalars['String']>;
|
|
2183
|
-
status?: InputMaybe<NumberFilterInput>;
|
|
2184
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2185
|
-
};
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
export type QuerylistPriceListArgs = {
|
|
2189
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2190
|
-
};
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
export type QuerylistProductArgs = {
|
|
2194
|
-
barcodeList?: InputMaybe<StringFilterInput>;
|
|
2195
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2196
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2197
|
-
pagination?: InputMaybe<PaginationInput>;
|
|
2198
|
-
sku?: InputMaybe<StringFilterInput>;
|
|
2199
|
-
};
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
export type QuerylistProductAttributeArgs = {
|
|
2203
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2204
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2205
|
-
name?: InputMaybe<StringFilterInput>;
|
|
2206
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2207
|
-
};
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
export type QuerylistProductBrandArgs = {
|
|
2211
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2212
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2213
|
-
name?: InputMaybe<StringFilterInput>;
|
|
2214
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2215
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2216
|
-
};
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
export type QuerylistProductStockLocationArgs = {
|
|
2220
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2221
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2222
|
-
pagination?: InputMaybe<PaginationInput>;
|
|
2223
|
-
productId?: InputMaybe<StringFilterInput>;
|
|
2224
|
-
sort?: InputMaybe<Scalars['String']>;
|
|
2225
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2226
|
-
variantId?: InputMaybe<StringFilterInput>;
|
|
2227
|
-
};
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
export type QuerylistProductTagArgs = {
|
|
2231
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2232
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2233
|
-
name?: InputMaybe<StringFilterInput>;
|
|
2234
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2235
|
-
};
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
export type QuerylistSalesChannelArgs = {
|
|
2239
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2240
|
-
};
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
export type QuerylistStateArgs = {
|
|
2244
|
-
countryId: StringFilterInput;
|
|
2245
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2246
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2247
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2248
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2249
|
-
};
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
export type QuerylistStockLocationArgs = {
|
|
2253
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2254
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2255
|
-
name?: InputMaybe<StringFilterInput>;
|
|
2256
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2257
|
-
};
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
export type QuerylistStorefrontArgs = {
|
|
2261
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2262
|
-
};
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
export type QuerylistStorefrontJSScriptArgs = {
|
|
2266
|
-
storefrontId?: InputMaybe<Scalars['String']>;
|
|
2267
|
-
};
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
export type QuerylistTownArgs = {
|
|
2271
|
-
districtId: StringFilterInput;
|
|
2272
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2273
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2274
|
-
search?: InputMaybe<Scalars['String']>;
|
|
2275
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2276
|
-
};
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
export type QuerylistVariantTypeArgs = {
|
|
2280
|
-
id?: InputMaybe<StringFilterInput>;
|
|
2281
|
-
includeDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
2282
|
-
name?: InputMaybe<StringFilterInput>;
|
|
2283
|
-
updatedAt?: InputMaybe<DateFilterInput>;
|
|
2284
|
-
};
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
export type QuerysearchProductsArgs = {
|
|
2288
|
-
input: SearchInput;
|
|
2289
|
-
};
|
|
2290
|
-
|
|
2291
|
-
export type SalesChannel = {
|
|
2292
|
-
__typename?: 'SalesChannel';
|
|
2293
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2294
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2295
|
-
id: Scalars['ID'];
|
|
2296
|
-
/** The sales channel name field. */
|
|
2297
|
-
name: Scalars['String'];
|
|
2298
|
-
/** The sales channel payment gateway field. */
|
|
2299
|
-
paymentGateways?: Maybe<Array<SalesChannelPaymentGateway>>;
|
|
2300
|
-
/** The sales channel priceList field. */
|
|
2301
|
-
priceListId?: Maybe<Scalars['String']>;
|
|
2302
|
-
/** The sales channel stock locations field. */
|
|
2303
|
-
stockLocations?: Maybe<Array<SalesChannelStockLocation>>;
|
|
2304
|
-
type: SalesChannelTypeEnum;
|
|
2305
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2306
|
-
};
|
|
2307
|
-
|
|
2308
|
-
export type SalesChannelInput = {
|
|
2309
|
-
name?: InputMaybe<Scalars['String']>;
|
|
2310
|
-
priceListId?: InputMaybe<Scalars['String']>;
|
|
2311
|
-
stockLocations: Array<SalesChannelStockLocationInput>;
|
|
2312
|
-
};
|
|
2313
|
-
|
|
2314
|
-
export type SalesChannelPaymentGateway = {
|
|
2315
|
-
__typename?: 'SalesChannelPaymentGateway';
|
|
2316
|
-
id: Scalars['String'];
|
|
2317
|
-
/** The field where the Sales Channel Stock Position order is kept. */
|
|
2318
|
-
order: Scalars['Float'];
|
|
2319
|
-
};
|
|
2320
|
-
|
|
2321
|
-
export type SalesChannelStockLocation = {
|
|
2322
|
-
__typename?: 'SalesChannelStockLocation';
|
|
2323
|
-
id: Scalars['String'];
|
|
2324
|
-
/** The field where the Sales Channel Stock Position order is kept. */
|
|
2325
|
-
order: Scalars['Float'];
|
|
2326
|
-
};
|
|
2327
|
-
|
|
2328
|
-
export type SalesChannelStockLocationInput = {
|
|
2329
|
-
id: Scalars['String'];
|
|
2330
|
-
/** The field where the Sales Channel Stock Position order is kept. */
|
|
2331
|
-
order: Scalars['Float'];
|
|
2332
|
-
};
|
|
2333
|
-
|
|
2334
|
-
/** Sales Channel Type */
|
|
2335
|
-
export enum SalesChannelTypeEnum {
|
|
2336
|
-
APP = 'APP',
|
|
2337
|
-
FACEBOOK = 'FACEBOOK',
|
|
2338
|
-
GOOGLE = 'GOOGLE',
|
|
2339
|
-
POS = 'POS',
|
|
2340
|
-
STOREFRONT = 'STOREFRONT'
|
|
2341
|
-
}
|
|
2342
|
-
|
|
2343
|
-
export type SaveStockLocationsInput = {
|
|
2344
|
-
productStockLocationInputs?: InputMaybe<Array<ProductStockLocationInput>>;
|
|
2345
|
-
};
|
|
2346
|
-
|
|
2347
|
-
export type SearchInput = {
|
|
2348
|
-
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
2349
|
-
pagination?: InputMaybe<PaginationInput>;
|
|
2350
|
-
query?: InputMaybe<Scalars['String']>;
|
|
2351
|
-
skuList?: InputMaybe<Array<Scalars['String']>>;
|
|
2352
|
-
};
|
|
2353
|
-
|
|
2354
|
-
/** Shipping Method Enum */
|
|
2355
|
-
export enum ShippingMethodEnum {
|
|
2356
|
-
CLICK_AND_COLLECT = 'CLICK_AND_COLLECT',
|
|
2357
|
-
NO_SHIPMENT = 'NO_SHIPMENT',
|
|
2358
|
-
SHIPMENT = 'SHIPMENT'
|
|
2359
|
-
}
|
|
2360
|
-
|
|
2361
|
-
/** Timeline Source Types */
|
|
2362
|
-
export enum SourceTypeEnum {
|
|
2363
|
-
CUSTOMER = 'CUSTOMER',
|
|
2364
|
-
EMAIL = 'EMAIL',
|
|
2365
|
-
ORDER = 'ORDER'
|
|
2366
|
-
}
|
|
2367
|
-
|
|
2368
|
-
export type State = {
|
|
2369
|
-
__typename?: 'State';
|
|
2370
|
-
/** ID indicating which country the state belongs to. */
|
|
2371
|
-
countryId: Scalars['String'];
|
|
2372
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2373
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2374
|
-
id: Scalars['ID'];
|
|
2375
|
-
/** State's name. */
|
|
2376
|
-
name: Scalars['String'];
|
|
2377
|
-
/** The two-letter state code corresponding to the state. */
|
|
2378
|
-
stateCode?: Maybe<Scalars['String']>;
|
|
2379
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2380
|
-
};
|
|
2381
|
-
|
|
2382
|
-
export type StockLocation = {
|
|
2383
|
-
__typename?: 'StockLocation';
|
|
2384
|
-
address?: Maybe<StockLocationAddress>;
|
|
2385
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2386
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2387
|
-
id: Scalars['ID'];
|
|
2388
|
-
name: Scalars['String'];
|
|
2389
|
-
type?: Maybe<StockLocationTypeEnum>;
|
|
2390
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2391
|
-
};
|
|
2392
|
-
|
|
2393
|
-
export type StockLocationAddress = {
|
|
2394
|
-
__typename?: 'StockLocationAddress';
|
|
2395
|
-
address?: Maybe<Scalars['String']>;
|
|
2396
|
-
city?: Maybe<StockLocationAddressCity>;
|
|
2397
|
-
country?: Maybe<StockLocationAddressCountry>;
|
|
2398
|
-
district?: Maybe<StockLocationAddressDistrict>;
|
|
2399
|
-
phone?: Maybe<Scalars['String']>;
|
|
2400
|
-
postalCode?: Maybe<Scalars['String']>;
|
|
2401
|
-
state?: Maybe<StockLocationAddressState>;
|
|
2402
|
-
};
|
|
2403
|
-
|
|
2404
|
-
export type StockLocationAddressCity = {
|
|
2405
|
-
__typename?: 'StockLocationAddressCity';
|
|
2406
|
-
code?: Maybe<Scalars['String']>;
|
|
2407
|
-
id?: Maybe<Scalars['String']>;
|
|
2408
|
-
name: Scalars['String'];
|
|
2409
|
-
};
|
|
2410
|
-
|
|
2411
|
-
export type StockLocationAddressCountry = {
|
|
2412
|
-
__typename?: 'StockLocationAddressCountry';
|
|
2413
|
-
code?: Maybe<Scalars['String']>;
|
|
2414
|
-
id?: Maybe<Scalars['String']>;
|
|
2415
|
-
name: Scalars['String'];
|
|
2416
|
-
};
|
|
2417
|
-
|
|
2418
|
-
export type StockLocationAddressDistrict = {
|
|
2419
|
-
__typename?: 'StockLocationAddressDistrict';
|
|
2420
|
-
code?: Maybe<Scalars['String']>;
|
|
2421
|
-
id?: Maybe<Scalars['String']>;
|
|
2422
|
-
name?: Maybe<Scalars['String']>;
|
|
2423
|
-
};
|
|
2424
|
-
|
|
2425
|
-
export type StockLocationAddressState = {
|
|
2426
|
-
__typename?: 'StockLocationAddressState';
|
|
2427
|
-
code?: Maybe<Scalars['String']>;
|
|
2428
|
-
id?: Maybe<Scalars['String']>;
|
|
2429
|
-
name?: Maybe<Scalars['String']>;
|
|
2430
|
-
};
|
|
2431
|
-
|
|
2432
|
-
/** Stock Location Types */
|
|
2433
|
-
export enum StockLocationTypeEnum {
|
|
2434
|
-
PHYSICAL = 'PHYSICAL',
|
|
2435
|
-
VIRTUAL = 'VIRTUAL'
|
|
2436
|
-
}
|
|
2437
|
-
|
|
2438
|
-
export type Storefront = {
|
|
2439
|
-
__typename?: 'Storefront';
|
|
2440
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2441
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2442
|
-
id: Scalars['ID'];
|
|
2443
|
-
name: Scalars['String'];
|
|
2444
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2445
|
-
};
|
|
2446
|
-
|
|
2447
|
-
export type StorefrontJSScript = {
|
|
2448
|
-
__typename?: 'StorefrontJSScript';
|
|
2449
|
-
authorizedAppId?: Maybe<Scalars['String']>;
|
|
2450
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2451
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2452
|
-
id: Scalars['ID'];
|
|
2453
|
-
isActive: Scalars['Boolean'];
|
|
2454
|
-
name: Scalars['String'];
|
|
2455
|
-
scriptContent: Scalars['String'];
|
|
2456
|
-
storeAppId?: Maybe<Scalars['String']>;
|
|
2457
|
-
storefrontId: Scalars['String'];
|
|
2458
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2459
|
-
};
|
|
2460
|
-
|
|
2461
|
-
export type StorefrontJSScriptInput = {
|
|
2462
|
-
name: Scalars['String'];
|
|
2463
|
-
scriptContent: Scalars['String'];
|
|
2464
|
-
storefrontId: Scalars['String'];
|
|
2465
|
-
};
|
|
2466
|
-
|
|
2467
|
-
export type StringFilterInput = {
|
|
2468
|
-
/** ```equal```. The filter used for equality. */
|
|
2469
|
-
eq?: InputMaybe<Scalars['String']>;
|
|
2470
|
-
/** Returns a boolean indicating whether a specified value is in an array. */
|
|
2471
|
-
in?: InputMaybe<Array<Scalars['String']>>;
|
|
2472
|
-
/** It allows using regex code in queries.The following example matches all documents where the name field is like "%AAA":example usage: ````merchantId: { like: AAA }```` */
|
|
2473
|
-
like?: InputMaybe<Scalars['String']>;
|
|
2474
|
-
};
|
|
2475
|
-
|
|
2476
|
-
export enum SubscriptionCodeEnum {
|
|
2477
|
-
CUSTOM = 'CUSTOM',
|
|
2478
|
-
EXTENSION = 'EXTENSION',
|
|
2479
|
-
FREEMIUM = 'FREEMIUM',
|
|
2480
|
-
GROW = 'GROW',
|
|
2481
|
-
SCALE = 'SCALE',
|
|
2482
|
-
START = 'START'
|
|
2483
|
-
}
|
|
2484
|
-
|
|
2485
|
-
export enum SubscriptionPeriodEnum {
|
|
2486
|
-
MONTHLY = 'MONTHLY',
|
|
2487
|
-
ONE_TIME = 'ONE_TIME',
|
|
2488
|
-
YEARLY = 'YEARLY'
|
|
2489
|
-
}
|
|
2490
|
-
|
|
2491
|
-
export enum SubscriptionPriceCurrencyEnum {
|
|
2492
|
-
EUR = 'EUR',
|
|
2493
|
-
TRY = 'TRY',
|
|
2494
|
-
USD = 'USD'
|
|
2495
|
-
}
|
|
2496
|
-
|
|
2497
|
-
export type TimelineInput = {
|
|
2498
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2499
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2500
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2501
|
-
message: Scalars['String'];
|
|
2502
|
-
sourceId: Scalars['String'];
|
|
2503
|
-
sourceType: SourceTypeEnum;
|
|
2504
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2505
|
-
};
|
|
2506
|
-
|
|
2507
|
-
export type Town = {
|
|
2508
|
-
__typename?: 'Town';
|
|
2509
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2510
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2511
|
-
/** ID indicating which district the town belongs to. */
|
|
2512
|
-
districtId: Scalars['String'];
|
|
2513
|
-
id: Scalars['ID'];
|
|
2514
|
-
/** Town's name. */
|
|
2515
|
-
name: Scalars['String'];
|
|
2516
|
-
/** Specifies the order of towns. */
|
|
2517
|
-
order?: Maybe<Scalars['Float']>;
|
|
2518
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2519
|
-
};
|
|
2520
|
-
|
|
2521
|
-
export type TrackingInfo = {
|
|
2522
|
-
__typename?: 'TrackingInfo';
|
|
2523
|
-
barcode?: Maybe<Scalars['String']>;
|
|
2524
|
-
cargoCompany?: Maybe<Scalars['String']>;
|
|
2525
|
-
isSendNotification?: Maybe<Scalars['Boolean']>;
|
|
2526
|
-
trackingLink?: Maybe<Scalars['String']>;
|
|
2527
|
-
trackingNumber?: Maybe<Scalars['String']>;
|
|
2528
|
-
};
|
|
2529
|
-
|
|
2530
|
-
export type TrackingInfoDetailInput = {
|
|
2531
|
-
barcode?: InputMaybe<Scalars['String']>;
|
|
2532
|
-
cargoCompany?: InputMaybe<Scalars['String']>;
|
|
2533
|
-
isSendNotification?: InputMaybe<Scalars['Boolean']>;
|
|
2534
|
-
trackingLink?: InputMaybe<Scalars['String']>;
|
|
2535
|
-
trackingNumber?: InputMaybe<Scalars['String']>;
|
|
2536
|
-
};
|
|
2537
|
-
|
|
2538
|
-
export type UpdateOrderAddressesInput = {
|
|
2539
|
-
billingAddress?: InputMaybe<OrderAddressInput>;
|
|
2540
|
-
orderId: Scalars['String'];
|
|
2541
|
-
shippingAddress?: InputMaybe<OrderAddressInput>;
|
|
2542
|
-
};
|
|
2543
|
-
|
|
2544
|
-
export type UpdateOrderInput = {
|
|
2545
|
-
editReason: Scalars['String'];
|
|
2546
|
-
orderId: Scalars['String'];
|
|
2547
|
-
orderLineItems: Array<OrderLineItemInput>;
|
|
2548
|
-
restockItems?: InputMaybe<Scalars['Boolean']>;
|
|
2549
|
-
};
|
|
2550
|
-
|
|
2551
|
-
export type UpdateOrderPackageStatusInput = {
|
|
2552
|
-
orderId: Scalars['String'];
|
|
2553
|
-
packages: Array<UpdateOrderPackageStatusPackagesInput>;
|
|
2554
|
-
};
|
|
2555
|
-
|
|
2556
|
-
export type UpdateOrderPackageStatusPackagesInput = {
|
|
2557
|
-
errorMessage?: InputMaybe<Scalars['String']>;
|
|
2558
|
-
packageId: Scalars['String'];
|
|
2559
|
-
status: OrderPackageFulfillStatusEnum;
|
|
2560
|
-
trackingInfo?: InputMaybe<TrackingInfoDetailInput>;
|
|
2561
|
-
};
|
|
2562
|
-
|
|
2563
|
-
export type UpdateProductSalesChannelStatusInput = {
|
|
2564
|
-
active: Scalars['Boolean'];
|
|
2565
|
-
productId: Scalars['String'];
|
|
2566
|
-
};
|
|
2567
|
-
|
|
2568
|
-
export type Variant = {
|
|
2569
|
-
__typename?: 'Variant';
|
|
2570
|
-
attributes?: Maybe<Array<ProductAttributeValue>>;
|
|
2571
|
-
barcodeList?: Maybe<Array<Scalars['String']>>;
|
|
2572
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2573
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2574
|
-
id: Scalars['ID'];
|
|
2575
|
-
images?: Maybe<Array<ProductImage>>;
|
|
2576
|
-
isActive?: Maybe<Scalars['Boolean']>;
|
|
2577
|
-
prices: Array<ProductPrice>;
|
|
2578
|
-
sellIfOutOfStock?: Maybe<Scalars['Boolean']>;
|
|
2579
|
-
sku?: Maybe<Scalars['String']>;
|
|
2580
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2581
|
-
variantValueIds?: Maybe<Array<VariantValueRelation>>;
|
|
2582
|
-
weight?: Maybe<Scalars['Float']>;
|
|
2583
|
-
};
|
|
2584
|
-
|
|
2585
|
-
export type VariantInput = {
|
|
2586
|
-
attributes?: InputMaybe<Array<ProductAttributeValueInput>>;
|
|
2587
|
-
barcodeList?: InputMaybe<Array<Scalars['String']>>;
|
|
2588
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2589
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2590
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2591
|
-
images?: InputMaybe<Array<ProductImageInput>>;
|
|
2592
|
-
isActive?: InputMaybe<Scalars['Boolean']>;
|
|
2593
|
-
prices: Array<ProductPriceInput>;
|
|
2594
|
-
sellIfOutOfStock?: InputMaybe<Scalars['Boolean']>;
|
|
2595
|
-
sku?: InputMaybe<Scalars['String']>;
|
|
2596
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2597
|
-
variantValueIds?: InputMaybe<Array<VariantValueRelationInput>>;
|
|
2598
|
-
weight?: InputMaybe<Scalars['Float']>;
|
|
2599
|
-
};
|
|
2600
|
-
|
|
2601
|
-
/** Variant Selection Types */
|
|
2602
|
-
export enum VariantSelectionTypeEnum {
|
|
2603
|
-
CHOICE = 'CHOICE',
|
|
2604
|
-
COLOR = 'COLOR'
|
|
2605
|
-
}
|
|
2606
|
-
|
|
2607
|
-
export type VariantType = {
|
|
2608
|
-
__typename?: 'VariantType';
|
|
2609
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2610
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2611
|
-
id: Scalars['ID'];
|
|
2612
|
-
name: Scalars['String'];
|
|
2613
|
-
selectionType: VariantSelectionTypeEnum;
|
|
2614
|
-
translations?: Maybe<Array<VariantTypeTranslation>>;
|
|
2615
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2616
|
-
values: Array<VariantValue>;
|
|
2617
|
-
};
|
|
2618
|
-
|
|
2619
|
-
export type VariantTypeInput = {
|
|
2620
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2621
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2622
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2623
|
-
name: Scalars['String'];
|
|
2624
|
-
selectionType: VariantSelectionTypeEnum;
|
|
2625
|
-
translations?: InputMaybe<Array<VariantTypeTranslationInput>>;
|
|
2626
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2627
|
-
values: Array<VariantValueInput>;
|
|
2628
|
-
};
|
|
2629
|
-
|
|
2630
|
-
export type VariantTypeTranslation = {
|
|
2631
|
-
__typename?: 'VariantTypeTranslation';
|
|
2632
|
-
locale: Scalars['String'];
|
|
2633
|
-
name?: Maybe<Scalars['String']>;
|
|
2634
|
-
values?: Maybe<Array<VariantValueTranslation>>;
|
|
2635
|
-
};
|
|
2636
|
-
|
|
2637
|
-
export type VariantTypeTranslationInput = {
|
|
2638
|
-
locale: Scalars['String'];
|
|
2639
|
-
name?: InputMaybe<Scalars['String']>;
|
|
2640
|
-
values?: InputMaybe<Array<VariantValueTranslationInput>>;
|
|
2641
|
-
};
|
|
2642
|
-
|
|
2643
|
-
export type VariantValue = {
|
|
2644
|
-
__typename?: 'VariantValue';
|
|
2645
|
-
colorCode?: Maybe<Scalars['String']>;
|
|
2646
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2647
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2648
|
-
id: Scalars['ID'];
|
|
2649
|
-
name: Scalars['String'];
|
|
2650
|
-
thumbnailImageId?: Maybe<Scalars['String']>;
|
|
2651
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2652
|
-
};
|
|
2653
|
-
|
|
2654
|
-
export type VariantValueInput = {
|
|
2655
|
-
colorCode?: InputMaybe<Scalars['String']>;
|
|
2656
|
-
createdAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2657
|
-
deleted?: InputMaybe<Scalars['Boolean']>;
|
|
2658
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2659
|
-
name: Scalars['String'];
|
|
2660
|
-
thumbnailImageId?: InputMaybe<Scalars['String']>;
|
|
2661
|
-
updatedAt?: InputMaybe<Scalars['Timestamp']>;
|
|
2662
|
-
};
|
|
2663
|
-
|
|
2664
|
-
export type VariantValueRelation = {
|
|
2665
|
-
__typename?: 'VariantValueRelation';
|
|
2666
|
-
variantTypeId: Scalars['String'];
|
|
2667
|
-
variantValueId: Scalars['String'];
|
|
2668
|
-
};
|
|
2669
|
-
|
|
2670
|
-
export type VariantValueRelationInput = {
|
|
2671
|
-
variantTypeId: Scalars['String'];
|
|
2672
|
-
variantValueId: Scalars['String'];
|
|
2673
|
-
};
|
|
2674
|
-
|
|
2675
|
-
export type VariantValueTranslation = {
|
|
2676
|
-
__typename?: 'VariantValueTranslation';
|
|
2677
|
-
id: Scalars['String'];
|
|
2678
|
-
name?: Maybe<Scalars['String']>;
|
|
2679
|
-
};
|
|
2680
|
-
|
|
2681
|
-
export type VariantValueTranslationInput = {
|
|
2682
|
-
id: Scalars['String'];
|
|
2683
|
-
name?: InputMaybe<Scalars['String']>;
|
|
2684
|
-
};
|
|
2685
|
-
|
|
2686
|
-
/** **Webhook** model description. */
|
|
2687
|
-
export type Webhook = {
|
|
2688
|
-
__typename?: 'Webhook';
|
|
2689
|
-
createdAt?: Maybe<Scalars['Timestamp']>;
|
|
2690
|
-
deleted?: Maybe<Scalars['Boolean']>;
|
|
2691
|
-
/** URL address that webhooks will be pushed. */
|
|
2692
|
-
endpoint: Scalars['String'];
|
|
2693
|
-
id: Scalars['ID'];
|
|
2694
|
-
/** Scope of webhook that defines content of webhook. */
|
|
2695
|
-
scope: Scalars['String'];
|
|
2696
|
-
updatedAt?: Maybe<Scalars['Timestamp']>;
|
|
2697
|
-
};
|
|
2698
|
-
|
|
2699
|
-
export type WebhookInput = {
|
|
2700
|
-
/** `endpoint` must be a valid `URL` address. */
|
|
2701
|
-
endpoint: Scalars['String'];
|
|
2702
|
-
/** You can filter webhooks by using specific **SalesChannel** id. Please check `listSalesChannel` query to retrieve active sales channel ids. */
|
|
2703
|
-
salesChannelIds?: InputMaybe<Array<Scalars['String']>>;
|
|
2704
|
-
/** Valid scopes are `store/order/created` `store/order/updated` `store/product/created` `store/product/updated` `store/customer/created` `store/customer/updated` `store/customerFavoriteProducts/created` `store/customerFavoriteProducts/updated` `store/stock/created` `store/stock/updated`. */
|
|
2705
|
-
scopes: Array<Scalars['String']>;
|
|
2706
|
-
};
|