@soppiya/app-bridge 1.0.7 → 1.0.9
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/dist/components/articles-picker/api/query.d.ts +8 -0
- package/dist/components/articles-picker/api/query.js +22 -0
- package/dist/components/articles-picker/model/useArticles.d.ts +30 -0
- package/dist/components/articles-picker/model/useArticles.js +46 -0
- package/dist/components/articles-picker/ui/ArticlesPicker.d.ts +9 -0
- package/dist/components/articles-picker/ui/ArticlesPicker.js +107 -0
- package/dist/components/articles-picker/ui/ProductPicker.stories.d.ts +17 -0
- package/dist/components/articles-picker/ui/ProductPicker.stories.js +13 -0
- package/dist/components/blogs-picker/api/query.d.ts +8 -0
- package/dist/components/blogs-picker/api/query.js +22 -0
- package/dist/components/blogs-picker/model/useBlogs.d.ts +30 -0
- package/dist/components/blogs-picker/model/useBlogs.js +46 -0
- package/dist/components/blogs-picker/ui/BlogsPicker.d.ts +9 -0
- package/dist/components/blogs-picker/ui/BlogsPicker.js +107 -0
- package/dist/components/blogs-picker/ui/BlogsPicker.stories.d.ts +17 -0
- package/dist/components/blogs-picker/ui/BlogsPicker.stories.js +13 -0
- package/dist/components/collections-pciker/api/query.d.ts +5 -0
- package/dist/components/collections-pciker/api/query.js +22 -0
- package/dist/components/collections-pciker/model/useCollections.d.ts +29 -0
- package/dist/components/collections-pciker/model/useCollections.js +32 -0
- package/dist/components/collections-pciker/ui/CollectionPicker.d.ts +9 -0
- package/dist/components/collections-pciker/ui/CollectionPicker.js +105 -0
- package/dist/components/collections-pciker/ui/CollectionPicker.stories.d.ts +17 -0
- package/dist/components/collections-pciker/ui/CollectionPicker.stories.js +13 -0
- package/dist/components/index.d.ts +4 -3
- package/dist/components/index.js +4 -4
- package/dist/components/meta-data/api/query.d.ts +4 -0
- package/dist/components/meta-data/api/query.js +14 -0
- package/dist/components/meta-data/index.d.ts +0 -0
- package/dist/components/meta-data/index.js +0 -0
- package/dist/components/meta-data/model/meta.types.d.ts +7 -0
- package/dist/components/meta-data/model/meta.types.js +33 -0
- package/dist/components/meta-data/model/schema.d.ts +0 -0
- package/dist/components/meta-data/model/schema.js +0 -0
- package/dist/components/meta-data/model/useGetMetaFields.d.ts +12 -0
- package/dist/components/meta-data/model/useGetMetaFields.js +18 -0
- package/dist/components/meta-data/ui/ArticleRefMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/ArticleRefMetaField.js +37 -0
- package/dist/components/meta-data/ui/BlogRefMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/BlogRefMetaField.js +37 -0
- package/dist/components/meta-data/ui/BooleanMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/BooleanMetaField.js +27 -0
- package/dist/components/meta-data/ui/CollectionRefMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/CollectionRefMetaField.js +36 -0
- package/dist/components/meta-data/ui/ColorMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/ColorMetaField.js +17 -0
- package/dist/components/meta-data/ui/DateAndTimeMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/DateAndTimeMetaField.js +34 -0
- package/dist/components/meta-data/ui/DateMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/DateMetaField.js +33 -0
- package/dist/components/meta-data/ui/FloatMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/FloatMetaField.js +23 -0
- package/dist/components/meta-data/ui/MetaData.d.ts +13 -0
- package/dist/components/meta-data/ui/MetaData.js +45 -0
- package/dist/components/meta-data/ui/MetaData.stories.d.ts +10 -0
- package/dist/components/meta-data/ui/MetaData.stories.js +136 -0
- package/dist/components/meta-data/ui/MetaDataItem.d.ts +16 -0
- package/dist/components/meta-data/ui/MetaDataItem.js +247 -0
- package/dist/components/meta-data/ui/MetaDataTypePopup.d.ts +11 -0
- package/dist/components/meta-data/ui/MetaDataTypePopup.js +62 -0
- package/dist/components/meta-data/ui/MultilineTextMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/MultilineTextMetaField.js +15 -0
- package/dist/components/meta-data/ui/NumberMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/NumberMetaField.js +19 -0
- package/dist/components/meta-data/ui/PageRefMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/PageRefMetaField.js +6 -0
- package/dist/components/meta-data/ui/ProductRefMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/ProductRefMetaField.js +37 -0
- package/dist/components/meta-data/ui/SingleLineTextMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/SingleLineTextMetaField.js +18 -0
- package/dist/components/meta-data/ui/VariantRefMetaField.d.ts +3 -0
- package/dist/components/meta-data/ui/VariantRefMetaField.js +45 -0
- package/dist/components/products-picker/api/query.d.ts +8 -0
- package/dist/components/products-picker/api/query.js +24 -0
- package/dist/components/products-picker/index.d.ts +1 -0
- package/dist/components/products-picker/index.js +2 -0
- package/dist/components/products-picker/model/useProducts.d.ts +30 -0
- package/dist/components/products-picker/model/useProducts.js +46 -0
- package/dist/components/products-picker/ui/ProductPicker.d.ts +9 -0
- package/dist/components/products-picker/ui/ProductPicker.js +107 -0
- package/dist/components/products-picker/ui/ProductsPicker.stories.d.ts +17 -0
- package/dist/components/products-picker/ui/ProductsPicker.stories.js +13 -0
- package/dist/components/savebar/SaveBar.d.ts +2 -1
- package/dist/components/savebar/SaveBar.js +2 -1
- package/dist/components/variants-picker/api/query.d.ts +1 -0
- package/dist/components/variants-picker/api/query.js +2 -2
- package/dist/components/variants-picker/model/useVariants.d.ts +3 -0
- package/dist/components/variants-picker/model/useVariants.js +6 -3
- package/dist/components/variants-picker/ui/VariantsPicker.d.ts +2 -1
- package/dist/components/variants-picker/ui/VariantsPicker.js +3 -2
- package/dist/components/variants-picker/ui/VariantsPicker.stories.d.ts +2 -1
- package/dist/index.d.ts +2 -2
- package/dist/shared/graphql/gql.d.ts +27 -2
- package/dist/shared/graphql/gql.js +7 -2
- package/dist/shared/graphql/graphql.d.ts +2270 -108
- package/dist/shared/graphql/graphql.js +2058 -297
- package/dist/shared/loading/Loading.d.ts +2 -0
- package/dist/shared/loading/Loading.js +11 -0
- package/dist/shared/loading/index.d.ts +1 -0
- package/dist/shared/loading/index.js +2 -0
- package/dist/styles.css +85 -0
- package/package.json +4 -2
|
@@ -67,8 +67,7 @@ export type AccountSecurity = {
|
|
|
67
67
|
two_factor_authentication?: Maybe<TwoFactorAuthentication>;
|
|
68
68
|
};
|
|
69
69
|
export type AddArticle = {
|
|
70
|
-
blog
|
|
71
|
-
comment_permission?: InputMaybe<ArticleCommentPermission>;
|
|
70
|
+
blog: Scalars['ID']['input'];
|
|
72
71
|
content?: InputMaybe<Scalars['String']['input']>;
|
|
73
72
|
excerpt?: InputMaybe<Scalars['String']['input']>;
|
|
74
73
|
handle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -80,6 +79,25 @@ export type AddArticle = {
|
|
|
80
79
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
81
80
|
title: Scalars['String']['input'];
|
|
82
81
|
};
|
|
82
|
+
export type AddBlog = {
|
|
83
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
84
|
+
image?: InputMaybe<Scalars['ID']['input']>;
|
|
85
|
+
meta_description?: InputMaybe<Scalars['String']['input']>;
|
|
86
|
+
meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87
|
+
meta_title?: InputMaybe<Scalars['String']['input']>;
|
|
88
|
+
metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
|
|
89
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
90
|
+
title: Scalars['String']['input'];
|
|
91
|
+
};
|
|
92
|
+
export type AddCart = {
|
|
93
|
+
customer?: InputMaybe<Scalars['ID']['input']>;
|
|
94
|
+
ip?: InputMaybe<Scalars['String']['input']>;
|
|
95
|
+
line_items?: InputMaybe<Array<CartLineItemInput>>;
|
|
96
|
+
market: Scalars['ID']['input'];
|
|
97
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
98
|
+
shipping_address?: InputMaybe<CartShippingAddressInput>;
|
|
99
|
+
user_agent?: InputMaybe<Scalars['String']['input']>;
|
|
100
|
+
};
|
|
83
101
|
export type AddCollection = {
|
|
84
102
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
85
103
|
handle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96,6 +114,63 @@ export type AddCollectionProduct = {
|
|
|
96
114
|
collection: Scalars['ID']['input'];
|
|
97
115
|
product: Scalars['ID']['input'];
|
|
98
116
|
};
|
|
117
|
+
export type AddCustomer = {
|
|
118
|
+
email?: InputMaybe<CustomerEmailInput>;
|
|
119
|
+
first_name: Scalars['String']['input'];
|
|
120
|
+
is_tax_collectable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
121
|
+
language?: InputMaybe<Scalars['ID']['input']>;
|
|
122
|
+
last_name: Scalars['String']['input'];
|
|
123
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
124
|
+
phone?: InputMaybe<CustomerPhoneInput>;
|
|
125
|
+
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
126
|
+
};
|
|
127
|
+
export type AddCustomerAddress = {
|
|
128
|
+
address1?: InputMaybe<Scalars['String']['input']>;
|
|
129
|
+
address2?: InputMaybe<Scalars['String']['input']>;
|
|
130
|
+
city?: InputMaybe<Scalars['String']['input']>;
|
|
131
|
+
company?: InputMaybe<Scalars['String']['input']>;
|
|
132
|
+
country: Scalars['ID']['input'];
|
|
133
|
+
customer: Scalars['ID']['input'];
|
|
134
|
+
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
135
|
+
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
136
|
+
phone?: InputMaybe<Scalars['String']['input']>;
|
|
137
|
+
postal_code?: InputMaybe<Scalars['String']['input']>;
|
|
138
|
+
region?: InputMaybe<Scalars['ID']['input']>;
|
|
139
|
+
};
|
|
140
|
+
export type AddCustomerSegment = {
|
|
141
|
+
conditions: Array<CustomerSegmentConditionInput>;
|
|
142
|
+
match_type: CustomerSegmentCombine;
|
|
143
|
+
title: Scalars['String']['input'];
|
|
144
|
+
};
|
|
145
|
+
export type AddDeliveryProfile = {
|
|
146
|
+
name: Scalars['String']['input'];
|
|
147
|
+
origin: Scalars['ID']['input'];
|
|
148
|
+
};
|
|
149
|
+
export type AddDeliveryZone = {
|
|
150
|
+
locations: Array<DeliveryZoneLocationInput>;
|
|
151
|
+
name: Scalars['String']['input'];
|
|
152
|
+
profile: Scalars['ID']['input'];
|
|
153
|
+
rates: Array<DeliveryZoneRateInput>;
|
|
154
|
+
};
|
|
155
|
+
export type AddDiscount = {
|
|
156
|
+
amount_off_order?: InputMaybe<DiscountAooInput>;
|
|
157
|
+
amount_off_products?: InputMaybe<DiscountAopInput>;
|
|
158
|
+
application?: InputMaybe<DiscountApplication>;
|
|
159
|
+
buy_x_get_y?: InputMaybe<DiscountBxgyInput>;
|
|
160
|
+
code: Scalars['String']['input'];
|
|
161
|
+
combines_with_order_discounts: Scalars['Boolean']['input'];
|
|
162
|
+
combines_with_product_discounts: Scalars['Boolean']['input'];
|
|
163
|
+
combines_with_shipping_discounts: Scalars['Boolean']['input'];
|
|
164
|
+
customer_usage_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
165
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
166
|
+
eligible_customers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167
|
+
eligible_segments?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
168
|
+
ends_at?: InputMaybe<Scalars['String']['input']>;
|
|
169
|
+
free_shipping?: InputMaybe<DiscountFsInput>;
|
|
170
|
+
starts_at: Scalars['String']['input'];
|
|
171
|
+
total_usage_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
172
|
+
type: DiscountType;
|
|
173
|
+
};
|
|
99
174
|
export type AddDomain = {
|
|
100
175
|
name: Scalars['String']['input'];
|
|
101
176
|
records?: InputMaybe<Array<DomainRecordInput>>;
|
|
@@ -111,6 +186,11 @@ export type AddInventory = {
|
|
|
111
186
|
safety_stock?: InputMaybe<Scalars['Int']['input']>;
|
|
112
187
|
variant: Scalars['ID']['input'];
|
|
113
188
|
};
|
|
189
|
+
export type AddLinklist = {
|
|
190
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
191
|
+
links?: InputMaybe<Array<LinklistLayer1Input>>;
|
|
192
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
193
|
+
};
|
|
114
194
|
export type AddLocation = {
|
|
115
195
|
address1?: InputMaybe<Scalars['String']['input']>;
|
|
116
196
|
address2?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146,9 +226,39 @@ export type AddMarketVariant = {
|
|
|
146
226
|
use_wholesale?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147
227
|
variant: Scalars['ID']['input'];
|
|
148
228
|
};
|
|
229
|
+
export type AddMetafield = {
|
|
230
|
+
entry: MetafieldEntryType;
|
|
231
|
+
is_public?: InputMaybe<Scalars['Boolean']['input']>;
|
|
232
|
+
key: Scalars['String']['input'];
|
|
233
|
+
metaobject_reference?: InputMaybe<Scalars['ID']['input']>;
|
|
234
|
+
name: Scalars['String']['input'];
|
|
235
|
+
scope: MetafieldScope;
|
|
236
|
+
type: MetafieldType;
|
|
237
|
+
};
|
|
238
|
+
export type AddMetaobject = {
|
|
239
|
+
fields: Array<MetaobjectFieldInput>;
|
|
240
|
+
is_public: Scalars['Boolean']['input'];
|
|
241
|
+
name: Scalars['String']['input'];
|
|
242
|
+
};
|
|
243
|
+
export type AddMetaobjectEntry = {
|
|
244
|
+
fields: Array<MetaobjectEntryFieldInput>;
|
|
245
|
+
metaobject: Scalars['ID']['input'];
|
|
246
|
+
title: Scalars['String']['input'];
|
|
247
|
+
};
|
|
248
|
+
export type AddPage = {
|
|
249
|
+
content?: InputMaybe<Scalars['String']['input']>;
|
|
250
|
+
excerpt?: InputMaybe<Scalars['String']['input']>;
|
|
251
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
252
|
+
image?: InputMaybe<Scalars['ID']['input']>;
|
|
253
|
+
meta_description?: InputMaybe<Scalars['String']['input']>;
|
|
254
|
+
meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
255
|
+
meta_title?: InputMaybe<Scalars['String']['input']>;
|
|
256
|
+
status: PageStatus;
|
|
257
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
258
|
+
title: Scalars['String']['input'];
|
|
259
|
+
};
|
|
149
260
|
export type AddPayment = {
|
|
150
261
|
charge?: InputMaybe<PaymentChargeInput>;
|
|
151
|
-
gateways?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
152
262
|
instruction?: InputMaybe<Scalars['String']['input']>;
|
|
153
263
|
market: Scalars['ID']['input'];
|
|
154
264
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157,6 +267,13 @@ export type AddPayment = {
|
|
|
157
267
|
settings?: InputMaybe<Array<PaymentSettingInput>>;
|
|
158
268
|
type: PaymentType;
|
|
159
269
|
};
|
|
270
|
+
export type AddPickupProfile = {
|
|
271
|
+
instructions: Scalars['String']['input'];
|
|
272
|
+
name: Scalars['String']['input'];
|
|
273
|
+
origin: Scalars['ID']['input'];
|
|
274
|
+
price: Scalars['Float']['input'];
|
|
275
|
+
ready_in: PickupProfileReadyIn;
|
|
276
|
+
};
|
|
160
277
|
export type AddPreset = {
|
|
161
278
|
data: Scalars['String']['input'];
|
|
162
279
|
title: Scalars['String']['input'];
|
|
@@ -201,6 +318,16 @@ export type AddRedirect = {
|
|
|
201
318
|
from: Scalars['String']['input'];
|
|
202
319
|
to: Scalars['String']['input'];
|
|
203
320
|
};
|
|
321
|
+
export type AddShippingProfile = {
|
|
322
|
+
name: Scalars['String']['input'];
|
|
323
|
+
origins: Array<Scalars['ID']['input']>;
|
|
324
|
+
};
|
|
325
|
+
export type AddShippingZone = {
|
|
326
|
+
locations: Array<ShippingZoneLocationInput>;
|
|
327
|
+
name: Scalars['String']['input'];
|
|
328
|
+
profile: Scalars['ID']['input'];
|
|
329
|
+
rates: Array<ShippingZoneRateInput>;
|
|
330
|
+
};
|
|
204
331
|
export type AddStaff = {
|
|
205
332
|
app_permission?: InputMaybe<StaffAppPermission>;
|
|
206
333
|
email: Scalars['String']['input'];
|
|
@@ -218,6 +345,11 @@ export type AddSupplier = {
|
|
|
218
345
|
phone?: InputMaybe<Scalars['String']['input']>;
|
|
219
346
|
postal_code?: InputMaybe<Scalars['String']['input']>;
|
|
220
347
|
};
|
|
348
|
+
export type AddTaxInput = {
|
|
349
|
+
country: Scalars['ID']['input'];
|
|
350
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
351
|
+
rate?: InputMaybe<Scalars['Float']['input']>;
|
|
352
|
+
};
|
|
221
353
|
export type AddTransfer = {
|
|
222
354
|
destination: Scalars['ID']['input'];
|
|
223
355
|
expected_arrival?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -306,7 +438,6 @@ export type Article = {
|
|
|
306
438
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
307
439
|
author?: Maybe<User>;
|
|
308
440
|
blog?: Maybe<Blog>;
|
|
309
|
-
comment_permission?: Maybe<Scalars['String']['output']>;
|
|
310
441
|
content?: Maybe<Scalars['String']['output']>;
|
|
311
442
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
312
443
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -316,7 +447,7 @@ export type Article = {
|
|
|
316
447
|
meta_tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
317
448
|
meta_title?: Maybe<Scalars['String']['output']>;
|
|
318
449
|
metafields?: Maybe<Array<Maybe<MetafieldData>>>;
|
|
319
|
-
status?: Maybe<
|
|
450
|
+
status?: Maybe<ArticleStatus>;
|
|
320
451
|
store?: Maybe<Store>;
|
|
321
452
|
template?: Maybe<Scalars['String']['output']>;
|
|
322
453
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -391,13 +522,15 @@ export type BlogEdge = {
|
|
|
391
522
|
};
|
|
392
523
|
export type BlogFilterKeys = {
|
|
393
524
|
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
394
|
-
exclude_cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
395
525
|
handles?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
526
|
+
templates?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
396
527
|
titles?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
397
528
|
};
|
|
398
529
|
export declare enum BlogSortKeys {
|
|
399
530
|
_id = "_id",
|
|
400
531
|
createdAt = "createdAt",
|
|
532
|
+
handle = "handle",
|
|
533
|
+
template = "template",
|
|
401
534
|
title = "title",
|
|
402
535
|
updatedAt = "updatedAt"
|
|
403
536
|
}
|
|
@@ -422,6 +555,148 @@ export type Brand = {
|
|
|
422
555
|
whatsapp?: Maybe<Scalars['String']['output']>;
|
|
423
556
|
youtube?: Maybe<Scalars['String']['output']>;
|
|
424
557
|
};
|
|
558
|
+
export type Cart = {
|
|
559
|
+
__typename: 'Cart';
|
|
560
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
561
|
+
customer?: Maybe<Customer>;
|
|
562
|
+
discounts?: Maybe<Array<Maybe<CartDiscount>>>;
|
|
563
|
+
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
564
|
+
ip?: Maybe<Scalars['String']['output']>;
|
|
565
|
+
line_items?: Maybe<Array<Maybe<CartLineItem>>>;
|
|
566
|
+
market?: Maybe<Market>;
|
|
567
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
568
|
+
pricing?: Maybe<CartPricing>;
|
|
569
|
+
shipping_address?: Maybe<CartShippingAddress>;
|
|
570
|
+
status?: Maybe<CartStatus>;
|
|
571
|
+
store?: Maybe<Store>;
|
|
572
|
+
user_agent?: Maybe<Scalars['String']['output']>;
|
|
573
|
+
};
|
|
574
|
+
export type CartConnection = {
|
|
575
|
+
__typename: 'CartConnection';
|
|
576
|
+
edges?: Maybe<Array<Maybe<CartEdge>>>;
|
|
577
|
+
pageInfo?: Maybe<PageInfo>;
|
|
578
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
579
|
+
};
|
|
580
|
+
export type CartDiscount = {
|
|
581
|
+
__typename: 'CartDiscount';
|
|
582
|
+
app?: Maybe<_App>;
|
|
583
|
+
computed_amount?: Maybe<Scalars['Float']['output']>;
|
|
584
|
+
priority?: Maybe<Scalars['Int']['output']>;
|
|
585
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
586
|
+
scope?: Maybe<CartDiscountScope>;
|
|
587
|
+
source?: Maybe<CartDiscountSource>;
|
|
588
|
+
stackable?: Maybe<Scalars['Boolean']['output']>;
|
|
589
|
+
status?: Maybe<CartDiscountStatus>;
|
|
590
|
+
target_line_items?: Maybe<Array<Maybe<CartLineItem>>>;
|
|
591
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
592
|
+
type?: Maybe<CartDiscountType>;
|
|
593
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
594
|
+
};
|
|
595
|
+
export declare enum CartDiscountScope {
|
|
596
|
+
cart = "cart",
|
|
597
|
+
line_item = "line_item",
|
|
598
|
+
shipping = "shipping"
|
|
599
|
+
}
|
|
600
|
+
export declare enum CartDiscountSource {
|
|
601
|
+
app = "app",
|
|
602
|
+
store = "store"
|
|
603
|
+
}
|
|
604
|
+
export declare enum CartDiscountStatus {
|
|
605
|
+
applied = "applied",
|
|
606
|
+
invalid = "invalid",
|
|
607
|
+
pending = "pending"
|
|
608
|
+
}
|
|
609
|
+
export declare enum CartDiscountType {
|
|
610
|
+
amount = "amount",
|
|
611
|
+
free_item = "free_item",
|
|
612
|
+
percentage = "percentage"
|
|
613
|
+
}
|
|
614
|
+
export type CartEdge = {
|
|
615
|
+
__typename: 'CartEdge';
|
|
616
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
617
|
+
node?: Maybe<Cart>;
|
|
618
|
+
};
|
|
619
|
+
export type CartFilterKeys = {
|
|
620
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
621
|
+
is_tax_collectable?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
622
|
+
languages?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
623
|
+
};
|
|
624
|
+
export type CartLineItem = {
|
|
625
|
+
__typename: 'CartLineItem';
|
|
626
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
627
|
+
app?: Maybe<_App>;
|
|
628
|
+
base_unit_price?: Maybe<Scalars['Float']['output']>;
|
|
629
|
+
collections?: Maybe<Array<Maybe<Collection>>>;
|
|
630
|
+
final_unit_price?: Maybe<Scalars['Float']['output']>;
|
|
631
|
+
handle?: Maybe<Scalars['String']['output']>;
|
|
632
|
+
height?: Maybe<Scalars['Float']['output']>;
|
|
633
|
+
image?: Maybe<Scalars['String']['output']>;
|
|
634
|
+
is_shipping_applicable?: Maybe<Scalars['Boolean']['output']>;
|
|
635
|
+
is_tax_applicable?: Maybe<Scalars['Boolean']['output']>;
|
|
636
|
+
length?: Maybe<Scalars['Float']['output']>;
|
|
637
|
+
line_total?: Maybe<Scalars['Float']['output']>;
|
|
638
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
639
|
+
product?: Maybe<Product>;
|
|
640
|
+
product_title?: Maybe<Scalars['String']['output']>;
|
|
641
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
642
|
+
sku?: Maybe<Scalars['String']['output']>;
|
|
643
|
+
source?: Maybe<CartLineItemSource>;
|
|
644
|
+
variant?: Maybe<Variant>;
|
|
645
|
+
variant_title?: Maybe<Scalars['String']['output']>;
|
|
646
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
647
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
648
|
+
width?: Maybe<Scalars['Float']['output']>;
|
|
649
|
+
};
|
|
650
|
+
export type CartLineItemInput = {
|
|
651
|
+
quantity: Scalars['Int']['input'];
|
|
652
|
+
variant: Scalars['ID']['input'];
|
|
653
|
+
};
|
|
654
|
+
export declare enum CartLineItemSource {
|
|
655
|
+
app = "app",
|
|
656
|
+
store = "store"
|
|
657
|
+
}
|
|
658
|
+
export type CartPricing = {
|
|
659
|
+
__typename: 'CartPricing';
|
|
660
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
661
|
+
discount_total?: Maybe<Scalars['Float']['output']>;
|
|
662
|
+
line_items?: Maybe<Array<Maybe<CartPricingLineItem>>>;
|
|
663
|
+
shipping?: Maybe<Scalars['Float']['output']>;
|
|
664
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
665
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
666
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
667
|
+
};
|
|
668
|
+
export type CartPricingLineItem = {
|
|
669
|
+
__typename: 'CartPricingLineItem';
|
|
670
|
+
base_total?: Maybe<Scalars['Float']['output']>;
|
|
671
|
+
discount_total?: Maybe<Scalars['Float']['output']>;
|
|
672
|
+
final_total?: Maybe<Scalars['Float']['output']>;
|
|
673
|
+
line_item?: Maybe<Scalars['ID']['output']>;
|
|
674
|
+
};
|
|
675
|
+
export type CartShippingAddress = {
|
|
676
|
+
__typename: 'CartShippingAddress';
|
|
677
|
+
country?: Maybe<_Country>;
|
|
678
|
+
postal_code?: Maybe<Scalars['String']['output']>;
|
|
679
|
+
region?: Maybe<_Region>;
|
|
680
|
+
};
|
|
681
|
+
export type CartShippingAddressInput = {
|
|
682
|
+
country?: InputMaybe<Scalars['ID']['input']>;
|
|
683
|
+
postal_code?: InputMaybe<Scalars['ID']['input']>;
|
|
684
|
+
region?: InputMaybe<Scalars['ID']['input']>;
|
|
685
|
+
};
|
|
686
|
+
export declare enum CartSortkeys {
|
|
687
|
+
_id = "_id",
|
|
688
|
+
createdAt = "createdAt",
|
|
689
|
+
first_name = "first_name",
|
|
690
|
+
is_tax_collectable = "is_tax_collectable",
|
|
691
|
+
language = "language",
|
|
692
|
+
last_name = "last_name",
|
|
693
|
+
updatedAt = "updatedAt"
|
|
694
|
+
}
|
|
695
|
+
export declare enum CartStatus {
|
|
696
|
+
abandoned = "abandoned",
|
|
697
|
+
active = "active",
|
|
698
|
+
converted = "converted"
|
|
699
|
+
}
|
|
425
700
|
export type Checkout = {
|
|
426
701
|
__typename: 'Checkout';
|
|
427
702
|
address2_requirement?: Maybe<CheckoutExcludeRequiredOptional>;
|
|
@@ -470,6 +745,7 @@ export declare enum CheckoutNameRequirement {
|
|
|
470
745
|
export type Collection = {
|
|
471
746
|
__typename: 'Collection';
|
|
472
747
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
748
|
+
collectionProducts?: Maybe<CollectionProductConnection>;
|
|
473
749
|
description?: Maybe<Scalars['String']['output']>;
|
|
474
750
|
handle?: Maybe<Scalars['String']['output']>;
|
|
475
751
|
image?: Maybe<Media>;
|
|
@@ -481,6 +757,16 @@ export type Collection = {
|
|
|
481
757
|
template?: Maybe<Scalars['String']['output']>;
|
|
482
758
|
title?: Maybe<Scalars['String']['output']>;
|
|
483
759
|
};
|
|
760
|
+
export type CollectionCollectionProductsArgs = {
|
|
761
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
762
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
763
|
+
filterKeys?: InputMaybe<CollectionProductFilterKeys>;
|
|
764
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
765
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
766
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
767
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
768
|
+
sortKey?: InputMaybe<CollectionProductSortkey>;
|
|
769
|
+
};
|
|
484
770
|
export type CollectionConnection = {
|
|
485
771
|
__typename: 'CollectionConnection';
|
|
486
772
|
edges?: Maybe<Array<Maybe<CollectionEdge>>>;
|
|
@@ -545,16 +831,325 @@ export type CreateThemeFile = {
|
|
|
545
831
|
dir: Scalars['String']['input'];
|
|
546
832
|
filename: Scalars['String']['input'];
|
|
547
833
|
};
|
|
834
|
+
export type Customer = {
|
|
835
|
+
__typename: 'Customer';
|
|
836
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
837
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
838
|
+
email?: Maybe<CustomerEmail>;
|
|
839
|
+
first_name?: Maybe<Scalars['String']['output']>;
|
|
840
|
+
is_tax_collectable?: Maybe<Scalars['Boolean']['output']>;
|
|
841
|
+
language?: Maybe<_Language>;
|
|
842
|
+
last_name?: Maybe<Scalars['String']['output']>;
|
|
843
|
+
metafields?: Maybe<Array<Maybe<MetafieldData>>>;
|
|
844
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
845
|
+
phone?: Maybe<CustomerPhone>;
|
|
846
|
+
store?: Maybe<Store>;
|
|
847
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
848
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
849
|
+
};
|
|
850
|
+
export type CustomerAddress = {
|
|
851
|
+
__typename: 'CustomerAddress';
|
|
852
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
853
|
+
address1?: Maybe<Scalars['String']['output']>;
|
|
854
|
+
address2?: Maybe<Scalars['String']['output']>;
|
|
855
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
856
|
+
company?: Maybe<Scalars['String']['output']>;
|
|
857
|
+
country?: Maybe<_Country>;
|
|
858
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
859
|
+
customer?: Maybe<Customer>;
|
|
860
|
+
first_name?: Maybe<Scalars['String']['output']>;
|
|
861
|
+
is_default?: Maybe<Scalars['Boolean']['output']>;
|
|
862
|
+
last_name?: Maybe<Scalars['String']['output']>;
|
|
863
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
864
|
+
postal_code?: Maybe<Scalars['String']['output']>;
|
|
865
|
+
region?: Maybe<_Region>;
|
|
866
|
+
store?: Maybe<Store>;
|
|
867
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
868
|
+
};
|
|
869
|
+
export type CustomerAddressConnection = {
|
|
870
|
+
__typename: 'CustomerAddressConnection';
|
|
871
|
+
edges?: Maybe<Array<Maybe<CustomerAddressEdge>>>;
|
|
872
|
+
pageInfo?: Maybe<PageInfo>;
|
|
873
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
874
|
+
};
|
|
875
|
+
export type CustomerAddressEdge = {
|
|
876
|
+
__typename: 'CustomerAddressEdge';
|
|
877
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
878
|
+
node?: Maybe<CustomerAddress>;
|
|
879
|
+
};
|
|
880
|
+
export type CustomerAddressFilterKeys = {
|
|
881
|
+
cities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
882
|
+
countries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
883
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
884
|
+
customers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
885
|
+
is_default?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
886
|
+
postal_codes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
887
|
+
regions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
888
|
+
};
|
|
889
|
+
export declare enum CustomerAddressSortkeys {
|
|
890
|
+
_id = "_id",
|
|
891
|
+
city = "city",
|
|
892
|
+
company = "company",
|
|
893
|
+
country = "country",
|
|
894
|
+
customer = "customer",
|
|
895
|
+
first_name = "first_name",
|
|
896
|
+
is_default = "is_default",
|
|
897
|
+
last_name = "last_name",
|
|
898
|
+
postal_code = "postal_code",
|
|
899
|
+
reatedAt = "reatedAt",
|
|
900
|
+
region = "region",
|
|
901
|
+
updatedAt = "updatedAt"
|
|
902
|
+
}
|
|
903
|
+
export type CustomerConnection = {
|
|
904
|
+
__typename: 'CustomerConnection';
|
|
905
|
+
edges?: Maybe<Array<Maybe<CustomerEdge>>>;
|
|
906
|
+
pageInfo?: Maybe<PageInfo>;
|
|
907
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
908
|
+
};
|
|
909
|
+
export type CustomerEdge = {
|
|
910
|
+
__typename: 'CustomerEdge';
|
|
911
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
912
|
+
node?: Maybe<Customer>;
|
|
913
|
+
};
|
|
914
|
+
export type CustomerEmail = {
|
|
915
|
+
__typename: 'CustomerEmail';
|
|
916
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
917
|
+
has_subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
918
|
+
has_unsubscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
919
|
+
is_verified?: Maybe<Scalars['Boolean']['output']>;
|
|
920
|
+
};
|
|
921
|
+
export type CustomerEmailInput = {
|
|
922
|
+
address: Scalars['String']['input'];
|
|
923
|
+
};
|
|
924
|
+
export type CustomerFilterKeys = {
|
|
925
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
926
|
+
is_tax_collectable?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
927
|
+
languages?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
928
|
+
};
|
|
929
|
+
export type CustomerPhone = {
|
|
930
|
+
__typename: 'CustomerPhone';
|
|
931
|
+
country?: Maybe<_Country>;
|
|
932
|
+
has_subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
933
|
+
has_unsubscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
934
|
+
is_verified?: Maybe<Scalars['Boolean']['output']>;
|
|
935
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
936
|
+
};
|
|
937
|
+
export type CustomerPhoneInput = {
|
|
938
|
+
country: Scalars['ID']['input'];
|
|
939
|
+
number: Scalars['String']['input'];
|
|
940
|
+
};
|
|
941
|
+
export type CustomerSegment = {
|
|
942
|
+
__typename: 'CustomerSegment';
|
|
943
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
944
|
+
combine?: Maybe<CustomerSegmentCombine>;
|
|
945
|
+
conditions?: Maybe<Array<Maybe<CustomerSegmentCondition>>>;
|
|
946
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
947
|
+
customers?: Maybe<Array<Maybe<Customer>>>;
|
|
948
|
+
store?: Maybe<Store>;
|
|
949
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
950
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
951
|
+
};
|
|
952
|
+
export declare enum CustomerSegmentCombine {
|
|
953
|
+
all = "all",
|
|
954
|
+
any = "any"
|
|
955
|
+
}
|
|
956
|
+
export type CustomerSegmentCondition = {
|
|
957
|
+
__typename: 'CustomerSegmentCondition';
|
|
958
|
+
field?: Maybe<CustomerSegmentConditionField>;
|
|
959
|
+
operator?: Maybe<CustomerSegmentConditionOperator>;
|
|
960
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
961
|
+
};
|
|
962
|
+
export declare enum CustomerSegmentConditionField {
|
|
963
|
+
amount_spent = "amount_spent",
|
|
964
|
+
customer_cities = "customer_cities",
|
|
965
|
+
customer_countries = "customer_countries",
|
|
966
|
+
customer_created_at = "customer_created_at",
|
|
967
|
+
customer_email_domain = "customer_email_domain",
|
|
968
|
+
customer_regions = "customer_regions",
|
|
969
|
+
customer_tags = "customer_tags",
|
|
970
|
+
email_subscription_status = "email_subscription_status",
|
|
971
|
+
first_ordered_at = "first_ordered_at",
|
|
972
|
+
last_ordered_at = "last_ordered_at",
|
|
973
|
+
number_of_orders = "number_of_orders",
|
|
974
|
+
products_purchased = "products_purchased",
|
|
975
|
+
sms_subscription_status = "sms_subscription_status",
|
|
976
|
+
tax_collection_status = "tax_collection_status",
|
|
977
|
+
variants_purchased = "variants_purchased"
|
|
978
|
+
}
|
|
979
|
+
export type CustomerSegmentConditionInput = {
|
|
980
|
+
field: CustomerSegmentConditionField;
|
|
981
|
+
operator: CustomerSegmentConditionOperator;
|
|
982
|
+
value: Scalars['String']['input'];
|
|
983
|
+
};
|
|
984
|
+
export declare enum CustomerSegmentConditionOperator {
|
|
985
|
+
contains = "contains",
|
|
986
|
+
does_not_contain = "does_not_contain",
|
|
987
|
+
ends_with = "ends_with",
|
|
988
|
+
is_empty = "is_empty",
|
|
989
|
+
is_equal_to = "is_equal_to",
|
|
990
|
+
is_greater_than = "is_greater_than",
|
|
991
|
+
is_less_than = "is_less_than",
|
|
992
|
+
is_not_empty = "is_not_empty",
|
|
993
|
+
is_not_equal_to = "is_not_equal_to",
|
|
994
|
+
starts_with = "starts_with"
|
|
995
|
+
}
|
|
996
|
+
export type CustomerSegmentConnection = {
|
|
997
|
+
__typename: 'CustomerSegmentConnection';
|
|
998
|
+
edges?: Maybe<Array<Maybe<CustomerSegmentEdge>>>;
|
|
999
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1000
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
1001
|
+
};
|
|
1002
|
+
export type CustomerSegmentEdge = {
|
|
1003
|
+
__typename: 'CustomerSegmentEdge';
|
|
1004
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
1005
|
+
node?: Maybe<CustomerSegment>;
|
|
1006
|
+
};
|
|
1007
|
+
export type CustomerSegmentFilterKeys = {
|
|
1008
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1009
|
+
is_primary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1010
|
+
is_tld?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1011
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1012
|
+
};
|
|
1013
|
+
export declare enum CustomerSegmentSortkeys {
|
|
1014
|
+
_id = "_id",
|
|
1015
|
+
createdAt = "createdAt",
|
|
1016
|
+
title = "title",
|
|
1017
|
+
updatedAt = "updatedAt"
|
|
1018
|
+
}
|
|
1019
|
+
export declare enum CustomerSortkeys {
|
|
1020
|
+
_id = "_id",
|
|
1021
|
+
createdAt = "createdAt",
|
|
1022
|
+
first_name = "first_name",
|
|
1023
|
+
is_tax_collectable = "is_tax_collectable",
|
|
1024
|
+
language = "language",
|
|
1025
|
+
last_name = "last_name",
|
|
1026
|
+
updatedAt = "updatedAt"
|
|
1027
|
+
}
|
|
1028
|
+
export type CustomerTokenInput = {
|
|
1029
|
+
contact: Scalars['String']['input'];
|
|
1030
|
+
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
1031
|
+
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
1032
|
+
};
|
|
548
1033
|
export type CustomerTokenResponse = {
|
|
549
1034
|
__typename: 'CustomerTokenResponse';
|
|
550
1035
|
is_new?: Maybe<Scalars['Boolean']['output']>;
|
|
551
1036
|
token?: Maybe<Scalars['String']['output']>;
|
|
552
1037
|
};
|
|
1038
|
+
export declare enum DefaultThemeTemplateType {
|
|
1039
|
+
article = "article",
|
|
1040
|
+
articles = "articles",
|
|
1041
|
+
blog = "blog",
|
|
1042
|
+
blogs = "blogs",
|
|
1043
|
+
collection = "collection",
|
|
1044
|
+
collections = "collections",
|
|
1045
|
+
page = "page",
|
|
1046
|
+
product = "product",
|
|
1047
|
+
products = "products"
|
|
1048
|
+
}
|
|
553
1049
|
export type DeleteThemeFile = {
|
|
554
1050
|
cursor: Scalars['ID']['input'];
|
|
555
1051
|
dir: Scalars['String']['input'];
|
|
556
1052
|
filename: Scalars['String']['input'];
|
|
557
1053
|
};
|
|
1054
|
+
export type DeliveryProfile = {
|
|
1055
|
+
__typename: 'DeliveryProfile';
|
|
1056
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
1057
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1058
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1059
|
+
origin?: Maybe<Location>;
|
|
1060
|
+
store?: Maybe<Store>;
|
|
1061
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
1062
|
+
};
|
|
1063
|
+
export type DeliveryProfileConnection = {
|
|
1064
|
+
__typename: 'DeliveryProfileConnection';
|
|
1065
|
+
edges?: Maybe<Array<Maybe<DeliveryProfileEdge>>>;
|
|
1066
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1067
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
1068
|
+
};
|
|
1069
|
+
export type DeliveryProfileEdge = {
|
|
1070
|
+
__typename: 'DeliveryProfileEdge';
|
|
1071
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
1072
|
+
node?: Maybe<DeliveryProfile>;
|
|
1073
|
+
};
|
|
1074
|
+
export type DeliveryProfileFilterKeys = {
|
|
1075
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1076
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1077
|
+
origins?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1078
|
+
};
|
|
1079
|
+
export declare enum DeliveryProfileSortKeys {
|
|
1080
|
+
_id = "_id",
|
|
1081
|
+
createdAt = "createdAt",
|
|
1082
|
+
name = "name",
|
|
1083
|
+
updatedAt = "updatedAt"
|
|
1084
|
+
}
|
|
1085
|
+
export type DeliveryZone = {
|
|
1086
|
+
__typename: 'DeliveryZone';
|
|
1087
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
1088
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1089
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1090
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1091
|
+
postal_codes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1092
|
+
profile?: Maybe<DeliveryProfile>;
|
|
1093
|
+
rates?: Maybe<Array<Maybe<DeliveryZoneRate>>>;
|
|
1094
|
+
store?: Maybe<Store>;
|
|
1095
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
1096
|
+
};
|
|
1097
|
+
export type DeliveryZoneConnection = {
|
|
1098
|
+
__typename: 'DeliveryZoneConnection';
|
|
1099
|
+
edges?: Maybe<Array<Maybe<DeliveryZoneEdge>>>;
|
|
1100
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1101
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
1102
|
+
};
|
|
1103
|
+
export type DeliveryZoneEdge = {
|
|
1104
|
+
__typename: 'DeliveryZoneEdge';
|
|
1105
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
1106
|
+
node?: Maybe<DeliveryZone>;
|
|
1107
|
+
};
|
|
1108
|
+
export type DeliveryZoneFilterKeys = {
|
|
1109
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1110
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1111
|
+
profiles?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1112
|
+
};
|
|
1113
|
+
export type DeliveryZoneLocation = {
|
|
1114
|
+
__typename: 'DeliveryZoneLocation';
|
|
1115
|
+
country?: Maybe<_Country>;
|
|
1116
|
+
regions?: Maybe<Array<Maybe<_Region>>>;
|
|
1117
|
+
};
|
|
1118
|
+
export type DeliveryZoneLocationInput = {
|
|
1119
|
+
country: Scalars['ID']['input'];
|
|
1120
|
+
regions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1121
|
+
};
|
|
1122
|
+
export type DeliveryZoneRate = {
|
|
1123
|
+
__typename: 'DeliveryZoneRate';
|
|
1124
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
1125
|
+
condition_type?: Maybe<DeliveryZoneRateConditionType>;
|
|
1126
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1127
|
+
is_conditional?: Maybe<Scalars['Boolean']['output']>;
|
|
1128
|
+
max_unit?: Maybe<Scalars['Float']['output']>;
|
|
1129
|
+
min_unit?: Maybe<Scalars['Float']['output']>;
|
|
1130
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1131
|
+
price?: Maybe<Scalars['Float']['output']>;
|
|
1132
|
+
};
|
|
1133
|
+
export declare enum DeliveryZoneRateConditionType {
|
|
1134
|
+
price = "price",
|
|
1135
|
+
weight = "weight"
|
|
1136
|
+
}
|
|
1137
|
+
export type DeliveryZoneRateInput = {
|
|
1138
|
+
condition_type?: InputMaybe<DeliveryZoneRateConditionType>;
|
|
1139
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1140
|
+
is_conditional: Scalars['Boolean']['input'];
|
|
1141
|
+
max_unit?: InputMaybe<Scalars['Float']['input']>;
|
|
1142
|
+
min_unit?: InputMaybe<Scalars['Float']['input']>;
|
|
1143
|
+
name: Scalars['String']['input'];
|
|
1144
|
+
price: Scalars['Float']['input'];
|
|
1145
|
+
};
|
|
1146
|
+
export declare enum DeliveryZoneSortKeys {
|
|
1147
|
+
_id = "_id",
|
|
1148
|
+
createdAt = "createdAt",
|
|
1149
|
+
name = "name",
|
|
1150
|
+
profile = "profile",
|
|
1151
|
+
updatedAt = "updatedAt"
|
|
1152
|
+
}
|
|
558
1153
|
export type Device = {
|
|
559
1154
|
__typename: 'Device';
|
|
560
1155
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -574,6 +1169,200 @@ export type DeviceSession_HistoryArgs = {
|
|
|
574
1169
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
575
1170
|
sortKey?: InputMaybe<UserSessionSortKeys>;
|
|
576
1171
|
};
|
|
1172
|
+
export type Discount = {
|
|
1173
|
+
__typename: 'Discount';
|
|
1174
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
1175
|
+
amount_off_order?: Maybe<DiscountAoo>;
|
|
1176
|
+
amount_off_products?: Maybe<DiscountAop>;
|
|
1177
|
+
application?: Maybe<DiscountApplication>;
|
|
1178
|
+
buy_x_get_y?: Maybe<DiscountBxgy>;
|
|
1179
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1180
|
+
combines_with_order_discounts?: Maybe<Scalars['Boolean']['output']>;
|
|
1181
|
+
combines_with_product_discounts?: Maybe<Scalars['Boolean']['output']>;
|
|
1182
|
+
combines_with_shipping_discounts?: Maybe<Scalars['Boolean']['output']>;
|
|
1183
|
+
customer_usage_limit?: Maybe<Scalars['Int']['output']>;
|
|
1184
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1185
|
+
eligible_customers?: Maybe<Array<Maybe<Customer>>>;
|
|
1186
|
+
eligible_segments?: Maybe<Array<Maybe<CustomerSegment>>>;
|
|
1187
|
+
ends_at?: Maybe<Scalars['String']['output']>;
|
|
1188
|
+
free_shipping?: Maybe<DiscountFs>;
|
|
1189
|
+
starts_at?: Maybe<Scalars['String']['output']>;
|
|
1190
|
+
store?: Maybe<Store>;
|
|
1191
|
+
total_usage_limit?: Maybe<Scalars['Int']['output']>;
|
|
1192
|
+
type?: Maybe<DiscountType>;
|
|
1193
|
+
};
|
|
1194
|
+
export type DiscountAoo = {
|
|
1195
|
+
__typename: 'DiscountAOO';
|
|
1196
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
1197
|
+
minimum_purchase_amount?: Maybe<Scalars['Int']['output']>;
|
|
1198
|
+
minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
|
|
1199
|
+
minimum_purchase_type?: Maybe<DiscountAooMinimumPurchaseType>;
|
|
1200
|
+
type?: Maybe<DiscountAooType>;
|
|
1201
|
+
};
|
|
1202
|
+
export type DiscountAooInput = {
|
|
1203
|
+
amount: Scalars['Float']['input'];
|
|
1204
|
+
minimum_purchase_amount?: InputMaybe<Scalars['Int']['input']>;
|
|
1205
|
+
minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
1206
|
+
minimum_purchase_type: DiscountAooMinimumPurchaseType;
|
|
1207
|
+
type: DiscountAooType;
|
|
1208
|
+
};
|
|
1209
|
+
export declare enum DiscountAooMinimumPurchaseType {
|
|
1210
|
+
amount = "amount",
|
|
1211
|
+
none = "none",
|
|
1212
|
+
quantity = "quantity"
|
|
1213
|
+
}
|
|
1214
|
+
export declare enum DiscountAooType {
|
|
1215
|
+
fixed = "fixed",
|
|
1216
|
+
percentage = "percentage"
|
|
1217
|
+
}
|
|
1218
|
+
export type DiscountAop = {
|
|
1219
|
+
__typename: 'DiscountAOP';
|
|
1220
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
1221
|
+
application?: Maybe<DiscountAopApplication>;
|
|
1222
|
+
collections?: Maybe<Array<Maybe<Collection>>>;
|
|
1223
|
+
minimum_purchase_amount?: Maybe<Scalars['Float']['output']>;
|
|
1224
|
+
minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
|
|
1225
|
+
minimum_purchase_type?: Maybe<DiscountAopMinimunPurchaseType>;
|
|
1226
|
+
products?: Maybe<Array<Maybe<Product>>>;
|
|
1227
|
+
type?: Maybe<DiscountAopType>;
|
|
1228
|
+
};
|
|
1229
|
+
export declare enum DiscountAopApplication {
|
|
1230
|
+
collections = "collections",
|
|
1231
|
+
products = "products"
|
|
1232
|
+
}
|
|
1233
|
+
export type DiscountAopInput = {
|
|
1234
|
+
amount: Scalars['Float']['input'];
|
|
1235
|
+
application: DiscountAopApplication;
|
|
1236
|
+
collections?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1237
|
+
minimum_purchase_amount?: InputMaybe<Scalars['Float']['input']>;
|
|
1238
|
+
minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
1239
|
+
minimum_purchase_type: DiscountAopMinimunPurchaseType;
|
|
1240
|
+
products?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1241
|
+
type: DiscountAopType;
|
|
1242
|
+
};
|
|
1243
|
+
export declare enum DiscountAopMinimunPurchaseType {
|
|
1244
|
+
amount = "amount",
|
|
1245
|
+
none = "none",
|
|
1246
|
+
quantity = "quantity"
|
|
1247
|
+
}
|
|
1248
|
+
export declare enum DiscountAopType {
|
|
1249
|
+
fixed = "fixed",
|
|
1250
|
+
percentage = "percentage"
|
|
1251
|
+
}
|
|
1252
|
+
export declare enum DiscountApplication {
|
|
1253
|
+
automatic = "automatic",
|
|
1254
|
+
discount_code = "discount_code"
|
|
1255
|
+
}
|
|
1256
|
+
export type DiscountBxgy = {
|
|
1257
|
+
__typename: 'DiscountBXGY';
|
|
1258
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
1259
|
+
application?: Maybe<DiscountBxgyApplication>;
|
|
1260
|
+
collections?: Maybe<Array<Maybe<Collection>>>;
|
|
1261
|
+
max_offer_quantity?: Maybe<Scalars['Int']['output']>;
|
|
1262
|
+
minimum_purchase_amount?: Maybe<Scalars['Float']['output']>;
|
|
1263
|
+
minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
|
|
1264
|
+
minimum_purchase_type?: Maybe<DiscountBxgyMinimunPurchaseType>;
|
|
1265
|
+
offer_application?: Maybe<DiscountBxgyOfferApplication>;
|
|
1266
|
+
offer_collections?: Maybe<Array<Maybe<Collection>>>;
|
|
1267
|
+
offer_products?: Maybe<Array<Maybe<Product>>>;
|
|
1268
|
+
products?: Maybe<Array<Maybe<Product>>>;
|
|
1269
|
+
type?: Maybe<DiscountBxgyType>;
|
|
1270
|
+
usage_per_order?: Maybe<Scalars['Int']['output']>;
|
|
1271
|
+
};
|
|
1272
|
+
export declare enum DiscountBxgyApplication {
|
|
1273
|
+
collections = "collections",
|
|
1274
|
+
products = "products"
|
|
1275
|
+
}
|
|
1276
|
+
export type DiscountBxgyInput = {
|
|
1277
|
+
amount: Scalars['Float']['input'];
|
|
1278
|
+
application: DiscountBxgyApplication;
|
|
1279
|
+
collections?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1280
|
+
max_offer_quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
1281
|
+
minimum_purchase_amount?: InputMaybe<Scalars['Float']['input']>;
|
|
1282
|
+
minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
1283
|
+
minimum_purchase_type: DiscountBxgyMinimunPurchaseType;
|
|
1284
|
+
offer_application: DiscountBxgyOfferApplication;
|
|
1285
|
+
offer_collections?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1286
|
+
offer_products?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1287
|
+
products?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1288
|
+
type: DiscountBxgyType;
|
|
1289
|
+
usage_per_order?: InputMaybe<Scalars['Int']['input']>;
|
|
1290
|
+
};
|
|
1291
|
+
export declare enum DiscountBxgyMinimunPurchaseType {
|
|
1292
|
+
amount = "amount",
|
|
1293
|
+
quantity = "quantity"
|
|
1294
|
+
}
|
|
1295
|
+
export declare enum DiscountBxgyOfferApplication {
|
|
1296
|
+
collections = "collections",
|
|
1297
|
+
products = "products"
|
|
1298
|
+
}
|
|
1299
|
+
export declare enum DiscountBxgyType {
|
|
1300
|
+
amount_off = "amount_off",
|
|
1301
|
+
free = "free",
|
|
1302
|
+
percentage = "percentage"
|
|
1303
|
+
}
|
|
1304
|
+
export type DiscountConnection = {
|
|
1305
|
+
__typename: 'DiscountConnection';
|
|
1306
|
+
edges?: Maybe<Array<Maybe<DiscountEdge>>>;
|
|
1307
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1308
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
1309
|
+
};
|
|
1310
|
+
export type DiscountEdge = {
|
|
1311
|
+
__typename: 'DiscountEdge';
|
|
1312
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
1313
|
+
node?: Maybe<Discount>;
|
|
1314
|
+
};
|
|
1315
|
+
export type DiscountFs = {
|
|
1316
|
+
__typename: 'DiscountFS';
|
|
1317
|
+
countries?: Maybe<Array<Maybe<_Country>>>;
|
|
1318
|
+
exclude_after_amount?: Maybe<Scalars['Float']['output']>;
|
|
1319
|
+
minimum_purchase_amount?: Maybe<Scalars['Int']['output']>;
|
|
1320
|
+
minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
|
|
1321
|
+
minimum_purchase_type?: Maybe<DiscountFsMinimunPurchaseType>;
|
|
1322
|
+
type?: Maybe<DiscountFsType>;
|
|
1323
|
+
};
|
|
1324
|
+
export type DiscountFsInput = {
|
|
1325
|
+
countries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1326
|
+
exclude_after_amount?: InputMaybe<Scalars['Float']['input']>;
|
|
1327
|
+
minimum_purchase_amount?: InputMaybe<Scalars['Int']['input']>;
|
|
1328
|
+
minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
1329
|
+
minimum_purchase_type: DiscountFsMinimunPurchaseType;
|
|
1330
|
+
type: DiscountFsType;
|
|
1331
|
+
};
|
|
1332
|
+
export declare enum DiscountFsMinimunPurchaseType {
|
|
1333
|
+
amount = "amount",
|
|
1334
|
+
none = "none",
|
|
1335
|
+
quantity = "quantity"
|
|
1336
|
+
}
|
|
1337
|
+
export declare enum DiscountFsType {
|
|
1338
|
+
all_countries = "all_countries",
|
|
1339
|
+
countries = "countries"
|
|
1340
|
+
}
|
|
1341
|
+
export type DiscountFilterKeys = {
|
|
1342
|
+
applications?: InputMaybe<Array<DiscountApplication>>;
|
|
1343
|
+
codes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1344
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1345
|
+
types?: InputMaybe<Array<DiscountType>>;
|
|
1346
|
+
};
|
|
1347
|
+
export declare enum DiscountSortKeys {
|
|
1348
|
+
_id = "_id",
|
|
1349
|
+
available = "available",
|
|
1350
|
+
committed = "committed",
|
|
1351
|
+
createdAt = "createdAt",
|
|
1352
|
+
damaged = "damaged",
|
|
1353
|
+
incoming = "incoming",
|
|
1354
|
+
on_hand = "on_hand",
|
|
1355
|
+
quality_control = "quality_control",
|
|
1356
|
+
reserved = "reserved",
|
|
1357
|
+
safety_stock = "safety_stock",
|
|
1358
|
+
updatedAt = "updatedAt"
|
|
1359
|
+
}
|
|
1360
|
+
export declare enum DiscountType {
|
|
1361
|
+
amount_off_order = "amount_off_order",
|
|
1362
|
+
amount_off_products = "amount_off_products",
|
|
1363
|
+
buy_x_get_y = "buy_x_get_y",
|
|
1364
|
+
free_shipping = "free_shipping"
|
|
1365
|
+
}
|
|
577
1366
|
export type Domain = {
|
|
578
1367
|
__typename: 'Domain';
|
|
579
1368
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -663,10 +1452,11 @@ export declare enum DomainSortkeys {
|
|
|
663
1452
|
name = "name",
|
|
664
1453
|
updatedAt = "updatedAt"
|
|
665
1454
|
}
|
|
1455
|
+
export type EditApp = {
|
|
1456
|
+
cursor: Scalars['ID']['input'];
|
|
1457
|
+
is_pinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1458
|
+
};
|
|
666
1459
|
export type EditArticle = {
|
|
667
|
-
author?: InputMaybe<Scalars['ID']['input']>;
|
|
668
|
-
blog?: InputMaybe<Scalars['ID']['input']>;
|
|
669
|
-
comment_permission?: InputMaybe<ArticleCommentPermission>;
|
|
670
1460
|
content?: InputMaybe<Scalars['String']['input']>;
|
|
671
1461
|
cursor: Scalars['ID']['input'];
|
|
672
1462
|
excerpt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -680,6 +1470,17 @@ export type EditArticle = {
|
|
|
680
1470
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
681
1471
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
682
1472
|
};
|
|
1473
|
+
export type EditBlog = {
|
|
1474
|
+
cursor: Scalars['ID']['input'];
|
|
1475
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
1476
|
+
image?: InputMaybe<Scalars['ID']['input']>;
|
|
1477
|
+
meta_description?: InputMaybe<Scalars['String']['input']>;
|
|
1478
|
+
meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1479
|
+
meta_title?: InputMaybe<Scalars['String']['input']>;
|
|
1480
|
+
metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
|
|
1481
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
1482
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1483
|
+
};
|
|
683
1484
|
export type EditBrand = {
|
|
684
1485
|
cover_image?: InputMaybe<Scalars['ID']['input']>;
|
|
685
1486
|
default_logo?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -698,21 +1499,93 @@ export type EditBrand = {
|
|
|
698
1499
|
whatsapp?: InputMaybe<Scalars['String']['input']>;
|
|
699
1500
|
youtube?: InputMaybe<Scalars['String']['input']>;
|
|
700
1501
|
};
|
|
701
|
-
export type
|
|
1502
|
+
export type EditCart = {
|
|
1503
|
+
coupon?: InputMaybe<Scalars['String']['input']>;
|
|
1504
|
+
cursor: Scalars['ID']['input'];
|
|
1505
|
+
customer?: InputMaybe<Scalars['ID']['input']>;
|
|
1506
|
+
ip?: InputMaybe<Scalars['String']['input']>;
|
|
1507
|
+
line_items?: InputMaybe<Array<CartLineItemInput>>;
|
|
1508
|
+
market?: InputMaybe<Scalars['ID']['input']>;
|
|
1509
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
1510
|
+
shipping_address?: InputMaybe<CartShippingAddressInput>;
|
|
1511
|
+
user_agent?: InputMaybe<Scalars['String']['input']>;
|
|
1512
|
+
};
|
|
1513
|
+
export type EditCollection = {
|
|
1514
|
+
cursor: Scalars['ID']['input'];
|
|
1515
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1516
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
1517
|
+
image?: InputMaybe<Scalars['ID']['input']>;
|
|
1518
|
+
meta_description?: InputMaybe<Scalars['String']['input']>;
|
|
1519
|
+
meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1520
|
+
meta_title?: InputMaybe<Scalars['String']['input']>;
|
|
1521
|
+
metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
|
|
1522
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
1523
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1524
|
+
};
|
|
1525
|
+
export type EditCollectionProduct = {
|
|
1526
|
+
cursor: Scalars['ID']['input'];
|
|
1527
|
+
index: Scalars['Int']['input'];
|
|
1528
|
+
};
|
|
1529
|
+
export type EditCustomer = {
|
|
1530
|
+
cursor: Scalars['ID']['input'];
|
|
1531
|
+
email?: InputMaybe<CustomerEmailInput>;
|
|
1532
|
+
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
1533
|
+
is_tax_collectable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1534
|
+
language?: InputMaybe<Scalars['ID']['input']>;
|
|
1535
|
+
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
1536
|
+
metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
|
|
1537
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
1538
|
+
phone?: InputMaybe<CustomerPhoneInput>;
|
|
1539
|
+
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1540
|
+
};
|
|
1541
|
+
export type EditCustomerAddress = {
|
|
1542
|
+
address1?: InputMaybe<Scalars['String']['input']>;
|
|
1543
|
+
address2?: InputMaybe<Scalars['String']['input']>;
|
|
1544
|
+
city?: InputMaybe<Scalars['String']['input']>;
|
|
1545
|
+
company?: InputMaybe<Scalars['String']['input']>;
|
|
1546
|
+
country: Scalars['ID']['input'];
|
|
702
1547
|
cursor: Scalars['ID']['input'];
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
1548
|
+
first_name?: InputMaybe<Scalars['String']['input']>;
|
|
1549
|
+
is_default?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1550
|
+
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
1551
|
+
phone?: InputMaybe<Scalars['String']['input']>;
|
|
1552
|
+
postal_code?: InputMaybe<Scalars['String']['input']>;
|
|
1553
|
+
region?: InputMaybe<Scalars['ID']['input']>;
|
|
1554
|
+
};
|
|
1555
|
+
export type EditCustomerSegment = {
|
|
1556
|
+
conditions?: InputMaybe<Array<CustomerSegmentConditionInput>>;
|
|
1557
|
+
cursor: Scalars['ID']['input'];
|
|
1558
|
+
match_type?: InputMaybe<CustomerSegmentCombine>;
|
|
711
1559
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
712
1560
|
};
|
|
713
|
-
export type
|
|
1561
|
+
export type EditDeliveryProfile = {
|
|
714
1562
|
cursor: Scalars['ID']['input'];
|
|
715
|
-
|
|
1563
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1564
|
+
origin?: InputMaybe<Scalars['ID']['input']>;
|
|
1565
|
+
};
|
|
1566
|
+
export type EditDeliveryZone = {
|
|
1567
|
+
cursor: Scalars['ID']['input'];
|
|
1568
|
+
locations?: InputMaybe<Array<DeliveryZoneLocationInput>>;
|
|
1569
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1570
|
+
rates?: InputMaybe<Array<DeliveryZoneRateInput>>;
|
|
1571
|
+
};
|
|
1572
|
+
export type EditDiscount = {
|
|
1573
|
+
amount_off_order?: InputMaybe<DiscountAooInput>;
|
|
1574
|
+
amount_off_products?: InputMaybe<DiscountAopInput>;
|
|
1575
|
+
application?: InputMaybe<DiscountApplication>;
|
|
1576
|
+
buy_x_get_y?: InputMaybe<DiscountBxgyInput>;
|
|
1577
|
+
combines_with_order_discounts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1578
|
+
combines_with_product_discounts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1579
|
+
combines_with_shipping_discounts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1580
|
+
cursor: Scalars['ID']['input'];
|
|
1581
|
+
customer_usage_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1582
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1583
|
+
eligible_customers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1584
|
+
eligible_segments?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1585
|
+
ends_at?: InputMaybe<Scalars['String']['input']>;
|
|
1586
|
+
free_shipping?: InputMaybe<DiscountFsInput>;
|
|
1587
|
+
starts_at?: InputMaybe<Scalars['String']['input']>;
|
|
1588
|
+
total_usage_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
716
1589
|
};
|
|
717
1590
|
export type EditDomain = {
|
|
718
1591
|
cursor: Scalars['ID']['input'];
|
|
@@ -729,6 +1602,12 @@ export type EditInventory = {
|
|
|
729
1602
|
reserved?: InputMaybe<Scalars['Int']['input']>;
|
|
730
1603
|
safety_stock?: InputMaybe<Scalars['Int']['input']>;
|
|
731
1604
|
};
|
|
1605
|
+
export type EditLinklist = {
|
|
1606
|
+
cursor: Scalars['ID']['input'];
|
|
1607
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
1608
|
+
links?: InputMaybe<Array<LinklistLayer1Input>>;
|
|
1609
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1610
|
+
};
|
|
732
1611
|
export type EditLocation = {
|
|
733
1612
|
address1?: InputMaybe<Scalars['String']['input']>;
|
|
734
1613
|
address2?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -768,15 +1647,62 @@ export type EditMarketVariant = {
|
|
|
768
1647
|
track_inventory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
769
1648
|
use_wholesale?: InputMaybe<Scalars['Boolean']['input']>;
|
|
770
1649
|
};
|
|
1650
|
+
export type EditMetafield = {
|
|
1651
|
+
cursor: Scalars['ID']['input'];
|
|
1652
|
+
is_public?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1653
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1654
|
+
};
|
|
1655
|
+
export type EditMetaobject = {
|
|
1656
|
+
cursor: Scalars['ID']['input'];
|
|
1657
|
+
fields?: InputMaybe<Array<MetaobjectFieldInput>>;
|
|
1658
|
+
is_public?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1659
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1660
|
+
};
|
|
1661
|
+
export type EditMetaobjectEntry = {
|
|
1662
|
+
cursor: Scalars['ID']['input'];
|
|
1663
|
+
fields: Array<MetaobjectEntryFieldInput>;
|
|
1664
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1665
|
+
};
|
|
1666
|
+
export type EditPage = {
|
|
1667
|
+
content?: InputMaybe<Scalars['String']['input']>;
|
|
1668
|
+
cursor: Scalars['ID']['input'];
|
|
1669
|
+
excerpt?: InputMaybe<Scalars['String']['input']>;
|
|
1670
|
+
handle?: InputMaybe<Scalars['String']['input']>;
|
|
1671
|
+
image?: InputMaybe<Scalars['ID']['input']>;
|
|
1672
|
+
meta_description?: InputMaybe<Scalars['String']['input']>;
|
|
1673
|
+
meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1674
|
+
meta_title?: InputMaybe<Scalars['String']['input']>;
|
|
1675
|
+
metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
|
|
1676
|
+
status?: InputMaybe<PageStatus>;
|
|
1677
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
1678
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1679
|
+
};
|
|
771
1680
|
export type EditPayment = {
|
|
772
1681
|
charge?: InputMaybe<PaymentChargeInput>;
|
|
773
1682
|
cursor: Scalars['ID']['input'];
|
|
774
|
-
gateways?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
775
1683
|
instruction?: InputMaybe<Scalars['String']['input']>;
|
|
776
1684
|
market?: InputMaybe<Scalars['ID']['input']>;
|
|
777
1685
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
778
1686
|
settings?: InputMaybe<Array<PaymentSettingInput>>;
|
|
779
1687
|
};
|
|
1688
|
+
export type EditPickupProfile = {
|
|
1689
|
+
cursor: Scalars['ID']['input'];
|
|
1690
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
1691
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1692
|
+
origin?: InputMaybe<Scalars['ID']['input']>;
|
|
1693
|
+
price?: InputMaybe<Scalars['Float']['input']>;
|
|
1694
|
+
ready_in?: InputMaybe<PickupProfileReadyIn>;
|
|
1695
|
+
};
|
|
1696
|
+
export type EditPlan = {
|
|
1697
|
+
locations?: InputMaybe<Scalars['Int']['input']>;
|
|
1698
|
+
markets?: InputMaybe<Scalars['Int']['input']>;
|
|
1699
|
+
package?: InputMaybe<Scalars['ID']['input']>;
|
|
1700
|
+
products?: InputMaybe<Scalars['Int']['input']>;
|
|
1701
|
+
staffs?: InputMaybe<Scalars['Int']['input']>;
|
|
1702
|
+
storage?: InputMaybe<Scalars['Int']['input']>;
|
|
1703
|
+
themes?: InputMaybe<Scalars['Int']['input']>;
|
|
1704
|
+
validity?: InputMaybe<Scalars['ID']['input']>;
|
|
1705
|
+
};
|
|
780
1706
|
export type EditPolicy = {
|
|
781
1707
|
contact_information?: InputMaybe<Scalars['String']['input']>;
|
|
782
1708
|
privacy_policy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -838,6 +1764,18 @@ export type EditRedirect = {
|
|
|
838
1764
|
from?: InputMaybe<Scalars['String']['input']>;
|
|
839
1765
|
to?: InputMaybe<Scalars['String']['input']>;
|
|
840
1766
|
};
|
|
1767
|
+
export type EditShippingProfile = {
|
|
1768
|
+
cursor: Scalars['ID']['input'];
|
|
1769
|
+
is_default?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1770
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1771
|
+
origins?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1772
|
+
};
|
|
1773
|
+
export type EditShippingZone = {
|
|
1774
|
+
cursor: Scalars['ID']['input'];
|
|
1775
|
+
locations?: InputMaybe<Array<ShippingZoneLocationInput>>;
|
|
1776
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1777
|
+
rates?: InputMaybe<Array<ShippingZoneRateInput>>;
|
|
1778
|
+
};
|
|
841
1779
|
export type EditStaff = {
|
|
842
1780
|
app_permission?: InputMaybe<StaffAppPermission>;
|
|
843
1781
|
cursor: Scalars['ID']['input'];
|
|
@@ -865,6 +1803,13 @@ export type EditSupplier = {
|
|
|
865
1803
|
phone?: InputMaybe<Scalars['String']['input']>;
|
|
866
1804
|
postal_code?: InputMaybe<Scalars['String']['input']>;
|
|
867
1805
|
};
|
|
1806
|
+
export type EditTaxInput = {
|
|
1807
|
+
cursor: Scalars['ID']['input'];
|
|
1808
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1809
|
+
overrides?: InputMaybe<Array<TaxOverrideInput>>;
|
|
1810
|
+
rate?: InputMaybe<Scalars['Float']['input']>;
|
|
1811
|
+
regional_taxes?: InputMaybe<Array<RegionalTaxInput>>;
|
|
1812
|
+
};
|
|
868
1813
|
export type EditTheme = {
|
|
869
1814
|
cursor: Scalars['ID']['input'];
|
|
870
1815
|
publish?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -1017,7 +1962,7 @@ export type LinklistLayer1 = {
|
|
|
1017
1962
|
url?: Maybe<Scalars['String']['output']>;
|
|
1018
1963
|
};
|
|
1019
1964
|
export type LinklistLayer1Input = {
|
|
1020
|
-
links?: InputMaybe<Array<
|
|
1965
|
+
links?: InputMaybe<Array<LinklistLayer2Input>>;
|
|
1021
1966
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
1022
1967
|
type: LinklistType;
|
|
1023
1968
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1031,7 +1976,7 @@ export type LinklistLayer2 = {
|
|
|
1031
1976
|
url?: Maybe<Scalars['String']['output']>;
|
|
1032
1977
|
};
|
|
1033
1978
|
export type LinklistLayer2Input = {
|
|
1034
|
-
links?: InputMaybe<Array<
|
|
1979
|
+
links?: InputMaybe<Array<LinklistLayer3Input>>;
|
|
1035
1980
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
1036
1981
|
type: LinklistType;
|
|
1037
1982
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1057,18 +2002,19 @@ export declare enum LinklistSortKeys {
|
|
|
1057
2002
|
updatedAt = "updatedAt"
|
|
1058
2003
|
}
|
|
1059
2004
|
export declare enum LinklistType {
|
|
2005
|
+
account = "account",
|
|
1060
2006
|
article = "article",
|
|
1061
2007
|
blog = "blog",
|
|
1062
|
-
|
|
2008
|
+
blogs = "blogs",
|
|
2009
|
+
cart = "cart",
|
|
1063
2010
|
collection = "collection",
|
|
1064
2011
|
collections = "collections",
|
|
1065
|
-
|
|
1066
|
-
http = "http",
|
|
1067
|
-
metaobject = "metaobject",
|
|
2012
|
+
home = "home",
|
|
1068
2013
|
page = "page",
|
|
1069
|
-
policy = "policy",
|
|
1070
2014
|
product = "product",
|
|
1071
|
-
|
|
2015
|
+
products = "products",
|
|
2016
|
+
search = "search",
|
|
2017
|
+
url = "url"
|
|
1072
2018
|
}
|
|
1073
2019
|
export type Location = {
|
|
1074
2020
|
__typename: 'Location';
|
|
@@ -1339,6 +2285,10 @@ export declare enum MediaType {
|
|
|
1339
2285
|
image = "image",
|
|
1340
2286
|
video = "video"
|
|
1341
2287
|
}
|
|
2288
|
+
export type MergeCustomers = {
|
|
2289
|
+
source: Scalars['ID']['input'];
|
|
2290
|
+
target: Scalars['ID']['input'];
|
|
2291
|
+
};
|
|
1342
2292
|
export type Metafield = {
|
|
1343
2293
|
__typename: 'Metafield';
|
|
1344
2294
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -1346,6 +2296,7 @@ export type Metafield = {
|
|
|
1346
2296
|
entry?: Maybe<MetafieldEntryType>;
|
|
1347
2297
|
is_public?: Maybe<Scalars['Boolean']['output']>;
|
|
1348
2298
|
key?: Maybe<Scalars['String']['output']>;
|
|
2299
|
+
metaobject_reference?: Maybe<Metaobject>;
|
|
1349
2300
|
name?: Maybe<Scalars['String']['output']>;
|
|
1350
2301
|
scope?: Maybe<MetafieldScope>;
|
|
1351
2302
|
store?: Maybe<Store>;
|
|
@@ -1388,7 +2339,6 @@ export declare enum MetafieldScope {
|
|
|
1388
2339
|
blog = "blog",
|
|
1389
2340
|
collection = "collection",
|
|
1390
2341
|
customer = "customer",
|
|
1391
|
-
draft_order = "draft_order",
|
|
1392
2342
|
location = "location",
|
|
1393
2343
|
market = "market",
|
|
1394
2344
|
order = "order",
|
|
@@ -1404,31 +2354,129 @@ export declare enum MetafieldSortKeys {
|
|
|
1404
2354
|
}
|
|
1405
2355
|
export declare enum MetafieldType {
|
|
1406
2356
|
article_ref = "article_ref",
|
|
1407
|
-
audio = "audio",
|
|
1408
2357
|
blog_ref = "blog_ref",
|
|
1409
2358
|
boolean = "boolean",
|
|
1410
2359
|
collection_ref = "collection_ref",
|
|
1411
2360
|
color = "color",
|
|
1412
2361
|
date = "date",
|
|
1413
2362
|
date_time = "date_time",
|
|
1414
|
-
|
|
1415
|
-
file = "file",
|
|
1416
|
-
float = "float",
|
|
1417
|
-
image = "image",
|
|
1418
|
-
integer = "integer",
|
|
1419
|
-
json = "json",
|
|
1420
|
-
meta_object_ref = "meta_object_ref",
|
|
1421
|
-
money = "money",
|
|
2363
|
+
metaobject_ref = "metaobject_ref",
|
|
1422
2364
|
multiline_text = "multiline_text",
|
|
2365
|
+
number = "number",
|
|
1423
2366
|
page_ref = "page_ref",
|
|
1424
2367
|
product_ref = "product_ref",
|
|
1425
|
-
rating = "rating",
|
|
1426
|
-
rich_text = "rich_text",
|
|
1427
2368
|
single_line_text = "single_line_text",
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
2369
|
+
variant_ref = "variant_ref"
|
|
2370
|
+
}
|
|
2371
|
+
export type Metaobject = {
|
|
2372
|
+
__typename: 'Metaobject';
|
|
2373
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
2374
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2375
|
+
entries?: Maybe<MetaobjectEntryConnection>;
|
|
2376
|
+
fields?: Maybe<Array<Maybe<MetaobjectField>>>;
|
|
2377
|
+
is_public?: Maybe<Scalars['Boolean']['output']>;
|
|
2378
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2379
|
+
store?: Maybe<Store>;
|
|
2380
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2381
|
+
};
|
|
2382
|
+
export type MetaobjectEntriesArgs = {
|
|
2383
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
2384
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
2385
|
+
filterKeys?: InputMaybe<MetaobjectEntryFilterKeys>;
|
|
2386
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2387
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2388
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
2389
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2390
|
+
sortKey?: InputMaybe<MetaobjectEntrySortKeys>;
|
|
2391
|
+
};
|
|
2392
|
+
export type MetaobjectConnection = {
|
|
2393
|
+
__typename: 'MetaobjectConnection';
|
|
2394
|
+
edges?: Maybe<Array<Maybe<MetaobjectEdge>>>;
|
|
2395
|
+
pageInfo?: Maybe<PageInfo>;
|
|
2396
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
2397
|
+
};
|
|
2398
|
+
export type MetaobjectEdge = {
|
|
2399
|
+
__typename: 'MetaobjectEdge';
|
|
2400
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
2401
|
+
node?: Maybe<Metaobject>;
|
|
2402
|
+
};
|
|
2403
|
+
export type MetaobjectEntry = {
|
|
2404
|
+
__typename: 'MetaobjectEntry';
|
|
2405
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
2406
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2407
|
+
fields?: Maybe<Array<Maybe<MetaobjectEntryField>>>;
|
|
2408
|
+
metaobject?: Maybe<Metaobject>;
|
|
2409
|
+
store?: Maybe<Store>;
|
|
2410
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
2411
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2412
|
+
};
|
|
2413
|
+
export type MetaobjectEntryConnection = {
|
|
2414
|
+
__typename: 'MetaobjectEntryConnection';
|
|
2415
|
+
edges?: Maybe<Array<Maybe<MetaobjectEntryEdge>>>;
|
|
2416
|
+
pageInfo?: Maybe<PageInfo>;
|
|
2417
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
2418
|
+
};
|
|
2419
|
+
export type MetaobjectEntryEdge = {
|
|
2420
|
+
__typename: 'MetaobjectEntryEdge';
|
|
2421
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
2422
|
+
node?: Maybe<MetaobjectEntry>;
|
|
2423
|
+
};
|
|
2424
|
+
export type MetaobjectEntryField = {
|
|
2425
|
+
__typename: 'MetaobjectEntryField';
|
|
2426
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
2427
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2428
|
+
};
|
|
2429
|
+
export type MetaobjectEntryFieldInput = {
|
|
2430
|
+
key: Scalars['String']['input'];
|
|
2431
|
+
value: Scalars['String']['input'];
|
|
2432
|
+
};
|
|
2433
|
+
export type MetaobjectEntryFilterKeys = {
|
|
2434
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2435
|
+
metaobjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2436
|
+
};
|
|
2437
|
+
export declare enum MetaobjectEntrySortKeys {
|
|
2438
|
+
_id = "_id",
|
|
2439
|
+
createdAt = "createdAt",
|
|
2440
|
+
metaobject = "metaobject",
|
|
2441
|
+
updatedAt = "updatedAt"
|
|
2442
|
+
}
|
|
2443
|
+
export type MetaobjectField = {
|
|
2444
|
+
__typename: 'MetaobjectField';
|
|
2445
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
2446
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2447
|
+
type?: Maybe<MetaobjectFieldType>;
|
|
2448
|
+
};
|
|
2449
|
+
export type MetaobjectFieldInput = {
|
|
2450
|
+
key: Scalars['String']['input'];
|
|
2451
|
+
name: Scalars['String']['input'];
|
|
2452
|
+
type: MetaobjectFieldType;
|
|
2453
|
+
};
|
|
2454
|
+
export declare enum MetaobjectFieldType {
|
|
2455
|
+
article_ref = "article_ref",
|
|
2456
|
+
blog_ref = "blog_ref",
|
|
2457
|
+
boolean = "boolean",
|
|
2458
|
+
collection_ref = "collection_ref",
|
|
2459
|
+
color = "color",
|
|
2460
|
+
date = "date",
|
|
2461
|
+
date_time = "date_time",
|
|
2462
|
+
multiline_text = "multiline_text",
|
|
2463
|
+
number = "number",
|
|
2464
|
+
page_ref = "page_ref",
|
|
2465
|
+
product_ref = "product_ref",
|
|
2466
|
+
single_line_text = "single_line_text",
|
|
2467
|
+
variant_ref = "variant_ref"
|
|
2468
|
+
}
|
|
2469
|
+
export type MetaobjectFilterKeys = {
|
|
2470
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2471
|
+
is_public?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2472
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2473
|
+
};
|
|
2474
|
+
export declare enum MetaobjectSortKeys {
|
|
2475
|
+
_id = "_id",
|
|
2476
|
+
createdAt = "createdAt",
|
|
2477
|
+
is_public = "is_public",
|
|
2478
|
+
name = "name",
|
|
2479
|
+
updatedAt = "updatedAt"
|
|
1432
2480
|
}
|
|
1433
2481
|
export type Module = {
|
|
1434
2482
|
__typename: 'Module';
|
|
@@ -1446,18 +2494,35 @@ export type Mutation = {
|
|
|
1446
2494
|
acceptStoreInvitation?: Maybe<Scalars['String']['output']>;
|
|
1447
2495
|
acceptStoreOwnership?: Maybe<Scalars['String']['output']>;
|
|
1448
2496
|
accountLogin?: Maybe<Scalars['String']['output']>;
|
|
2497
|
+
addApp?: Maybe<App>;
|
|
2498
|
+
addApps?: Maybe<Array<Maybe<App>>>;
|
|
1449
2499
|
addArticle?: Maybe<Article>;
|
|
1450
2500
|
addArticles?: Maybe<Array<Maybe<Article>>>;
|
|
1451
2501
|
addBlog?: Maybe<Blog>;
|
|
2502
|
+
addBlogs?: Maybe<Array<Maybe<Blog>>>;
|
|
2503
|
+
addCart?: Maybe<Cart>;
|
|
1452
2504
|
addCollection?: Maybe<Collection>;
|
|
1453
2505
|
addCollectionProduct?: Maybe<CollectionProduct>;
|
|
1454
2506
|
addCollectionProducts?: Maybe<Array<Maybe<CollectionProduct>>>;
|
|
1455
2507
|
addCollections?: Maybe<Array<Maybe<Collection>>>;
|
|
2508
|
+
addCustomer?: Maybe<Customer>;
|
|
2509
|
+
addCustomerAddress?: Maybe<CustomerAddress>;
|
|
2510
|
+
addCustomerAddresses?: Maybe<Array<Maybe<CustomerAddress>>>;
|
|
2511
|
+
addCustomerSegment?: Maybe<CustomerSegment>;
|
|
2512
|
+
addCustomerSegments?: Maybe<Array<Maybe<CustomerSegment>>>;
|
|
2513
|
+
addCustomers?: Maybe<Array<Maybe<Customer>>>;
|
|
2514
|
+
addDeliveryProfile?: Maybe<DeliveryProfile>;
|
|
2515
|
+
addDeliveryProfiles?: Maybe<Array<Maybe<DeliveryProfile>>>;
|
|
2516
|
+
addDeliveryZone?: Maybe<DeliveryZone>;
|
|
2517
|
+
addDeliveryZones?: Maybe<Array<Maybe<DeliveryZone>>>;
|
|
2518
|
+
addDiscount?: Maybe<Discount>;
|
|
2519
|
+
addDiscounts?: Maybe<Array<Maybe<Discount>>>;
|
|
1456
2520
|
addDomain?: Maybe<Domain>;
|
|
1457
2521
|
addDomains?: Maybe<Array<Maybe<Domain>>>;
|
|
1458
2522
|
addInventories?: Maybe<Array<Maybe<Inventory>>>;
|
|
1459
2523
|
addInventory?: Maybe<Inventory>;
|
|
1460
2524
|
addLinklist?: Maybe<Linklist>;
|
|
2525
|
+
addLinklists?: Maybe<Array<Maybe<Linklist>>>;
|
|
1461
2526
|
addLocation?: Maybe<Location>;
|
|
1462
2527
|
addLocations?: Maybe<Array<Maybe<Location>>>;
|
|
1463
2528
|
addMarket?: Maybe<Market>;
|
|
@@ -1467,8 +2532,17 @@ export type Mutation = {
|
|
|
1467
2532
|
addMedia?: Maybe<Media>;
|
|
1468
2533
|
addMedias?: Maybe<Array<Maybe<Media>>>;
|
|
1469
2534
|
addMetafield?: Maybe<Metafield>;
|
|
2535
|
+
addMetafields?: Maybe<Array<Maybe<Metafield>>>;
|
|
2536
|
+
addMetaobject?: Maybe<Metaobject>;
|
|
2537
|
+
addMetaobjectEntries?: Maybe<Array<Maybe<MetaobjectEntry>>>;
|
|
2538
|
+
addMetaobjectEntry?: Maybe<MetaobjectEntry>;
|
|
2539
|
+
addMetaobjects?: Maybe<Array<Maybe<Metaobject>>>;
|
|
2540
|
+
addPage?: Maybe<Page>;
|
|
2541
|
+
addPages?: Maybe<Array<Maybe<Page>>>;
|
|
1470
2542
|
addPayment?: Maybe<Payment>;
|
|
1471
2543
|
addPayments?: Maybe<Array<Maybe<Payment>>>;
|
|
2544
|
+
addPickupProfile?: Maybe<PickupProfile>;
|
|
2545
|
+
addPickupProfiles?: Maybe<Array<Maybe<PickupProfile>>>;
|
|
1472
2546
|
addPreset?: Maybe<Preset>;
|
|
1473
2547
|
addPresets?: Maybe<Array<Maybe<Preset>>>;
|
|
1474
2548
|
addProduct?: Maybe<Product>;
|
|
@@ -1477,10 +2551,16 @@ export type Mutation = {
|
|
|
1477
2551
|
addPurchases?: Maybe<Array<Maybe<Purchase>>>;
|
|
1478
2552
|
addRedirect?: Maybe<Redirect>;
|
|
1479
2553
|
addRedirects?: Maybe<Array<Maybe<Redirect>>>;
|
|
2554
|
+
addShippingProfile?: Maybe<ShippingProfile>;
|
|
2555
|
+
addShippingProfiles?: Maybe<Array<Maybe<ShippingProfile>>>;
|
|
2556
|
+
addShippingZone?: Maybe<ShippingZone>;
|
|
2557
|
+
addShippingZones?: Maybe<Array<Maybe<ShippingZone>>>;
|
|
1480
2558
|
addStaff?: Maybe<Staff>;
|
|
1481
2559
|
addStaffs?: Maybe<Array<Maybe<Staff>>>;
|
|
1482
2560
|
addSupplier?: Maybe<Supplier>;
|
|
1483
2561
|
addSuppliers?: Maybe<Array<Maybe<Supplier>>>;
|
|
2562
|
+
addTax?: Maybe<Tax>;
|
|
2563
|
+
addTaxes?: Maybe<Array<Maybe<Tax>>>;
|
|
1484
2564
|
addTransfer?: Maybe<Transfer>;
|
|
1485
2565
|
addTransfers?: Maybe<Array<Maybe<Transfer>>>;
|
|
1486
2566
|
addVariant?: Maybe<Variant>;
|
|
@@ -1489,17 +2569,35 @@ export type Mutation = {
|
|
|
1489
2569
|
createAccountPasskey?: Maybe<Scalars['String']['output']>;
|
|
1490
2570
|
createStore?: Maybe<Scalars['String']['output']>;
|
|
1491
2571
|
createThemeFile?: Maybe<Scalars['String']['output']>;
|
|
2572
|
+
customerToken?: Maybe<CustomerTokenResponse>;
|
|
2573
|
+
deleteApp?: Maybe<SingleDelete>;
|
|
2574
|
+
deleteApps?: Maybe<MultipleDeletes>;
|
|
1492
2575
|
deleteArticle?: Maybe<SingleDelete>;
|
|
1493
|
-
deleteBlog?: Maybe<
|
|
2576
|
+
deleteBlog?: Maybe<SingleDelete>;
|
|
2577
|
+
deleteBlogs?: Maybe<MultipleDeletes>;
|
|
2578
|
+
deleteCart?: Maybe<Cart>;
|
|
1494
2579
|
deleteCollection?: Maybe<SingleDelete>;
|
|
1495
2580
|
deleteCollectionProduct?: Maybe<SingleDelete>;
|
|
1496
2581
|
deleteCollectionProducts?: Maybe<MultipleDeletes>;
|
|
1497
2582
|
deleteCollections?: Maybe<MultipleDeletes>;
|
|
2583
|
+
deleteCustomer?: Maybe<SingleDelete>;
|
|
2584
|
+
deleteCustomerAddress?: Maybe<SingleDelete>;
|
|
2585
|
+
deleteCustomerAddresses?: Maybe<MultipleDeletes>;
|
|
2586
|
+
deleteCustomerSegment?: Maybe<SingleDelete>;
|
|
2587
|
+
deleteCustomerSegments?: Maybe<MultipleDeletes>;
|
|
2588
|
+
deleteCustomers?: Maybe<MultipleDeletes>;
|
|
2589
|
+
deleteDeliveryProfile?: Maybe<SingleDelete>;
|
|
2590
|
+
deleteDeliveryProfiles?: Maybe<MultipleDeletes>;
|
|
2591
|
+
deleteDeliveryZone?: Maybe<SingleDelete>;
|
|
2592
|
+
deleteDeliveryZones?: Maybe<MultipleDeletes>;
|
|
2593
|
+
deleteDiscount?: Maybe<SingleDelete>;
|
|
2594
|
+
deleteDiscounts?: Maybe<MultipleDeletes>;
|
|
1498
2595
|
deleteDomain?: Maybe<SingleDelete>;
|
|
1499
2596
|
deleteDomains?: Maybe<MultipleDeletes>;
|
|
1500
2597
|
deleteInventories?: Maybe<MultipleDeletes>;
|
|
1501
2598
|
deleteInventory?: Maybe<SingleDelete>;
|
|
1502
|
-
deleteLinklist?: Maybe<
|
|
2599
|
+
deleteLinklist?: Maybe<SingleDelete>;
|
|
2600
|
+
deleteLinklists?: Maybe<MultipleDeletes>;
|
|
1503
2601
|
deleteLocation?: Maybe<SingleDelete>;
|
|
1504
2602
|
deleteLocations?: Maybe<MultipleDeletes>;
|
|
1505
2603
|
deleteMarket?: Maybe<SingleDelete>;
|
|
@@ -1508,19 +2606,34 @@ export type Mutation = {
|
|
|
1508
2606
|
deleteMarkets?: Maybe<MultipleDeletes>;
|
|
1509
2607
|
deleteMedia?: Maybe<SingleDelete>;
|
|
1510
2608
|
deleteMedias?: Maybe<MultipleDeletes>;
|
|
1511
|
-
deleteMetafield?: Maybe<
|
|
2609
|
+
deleteMetafield?: Maybe<SingleDelete>;
|
|
2610
|
+
deleteMetafields?: Maybe<MultipleDeletes>;
|
|
2611
|
+
deleteMetaobject?: Maybe<SingleDelete>;
|
|
2612
|
+
deleteMetaobjectEntries?: Maybe<MultipleDeletes>;
|
|
2613
|
+
deleteMetaobjectEntry?: Maybe<SingleDelete>;
|
|
2614
|
+
deleteMetaobjects?: Maybe<MultipleDeletes>;
|
|
2615
|
+
deletePage?: Maybe<SingleDelete>;
|
|
2616
|
+
deletePages?: Maybe<MultipleDeletes>;
|
|
1512
2617
|
deletePayment?: Maybe<SingleDelete>;
|
|
1513
2618
|
deletePayments?: Maybe<MultipleDeletes>;
|
|
2619
|
+
deletePickupProfile?: Maybe<SingleDelete>;
|
|
2620
|
+
deletePickupProfiles?: Maybe<MultipleDeletes>;
|
|
1514
2621
|
deletePreset?: Maybe<SingleDelete>;
|
|
1515
2622
|
deletePresets?: Maybe<MultipleDeletes>;
|
|
1516
2623
|
deleteProduct?: Maybe<SingleDelete>;
|
|
1517
2624
|
deleteProducts?: Maybe<MultipleDeletes>;
|
|
1518
2625
|
deleteRedirect?: Maybe<SingleDelete>;
|
|
1519
2626
|
deleteRedirects?: Maybe<MultipleDeletes>;
|
|
2627
|
+
deleteShippingProfile?: Maybe<SingleDelete>;
|
|
2628
|
+
deleteShippingProfiles?: Maybe<MultipleDeletes>;
|
|
2629
|
+
deleteShippingZone?: Maybe<SingleDelete>;
|
|
2630
|
+
deleteShippingZones?: Maybe<MultipleDeletes>;
|
|
1520
2631
|
deleteStaff?: Maybe<SingleDelete>;
|
|
1521
2632
|
deleteStaffs?: Maybe<MultipleDeletes>;
|
|
1522
2633
|
deleteSupplier?: Maybe<SingleDelete>;
|
|
1523
2634
|
deleteSuppliers?: Maybe<MultipleDeletes>;
|
|
2635
|
+
deleteTax?: Maybe<SingleDelete>;
|
|
2636
|
+
deleteTaxes?: Maybe<MultipleDeletes>;
|
|
1524
2637
|
deleteThemeFile?: Maybe<Scalars['String']['output']>;
|
|
1525
2638
|
deleteUserDevice?: Maybe<SingleDelete>;
|
|
1526
2639
|
deleteUserDevices?: Maybe<MultipleDeletes>;
|
|
@@ -1531,19 +2644,35 @@ export type Mutation = {
|
|
|
1531
2644
|
deleteVariant?: Maybe<SingleDelete>;
|
|
1532
2645
|
deleteVariants?: Maybe<MultipleDeletes>;
|
|
1533
2646
|
disableAccountSecurity?: Maybe<Scalars['String']['output']>;
|
|
2647
|
+
editApp?: Maybe<App>;
|
|
2648
|
+
editApps?: Maybe<Array<Maybe<App>>>;
|
|
1534
2649
|
editArticle?: Maybe<Article>;
|
|
1535
2650
|
editBlog?: Maybe<Blog>;
|
|
2651
|
+
editBlogs?: Maybe<Array<Maybe<Blog>>>;
|
|
1536
2652
|
editBrand?: Maybe<Brand>;
|
|
1537
2653
|
editCheckout?: Maybe<Checkout>;
|
|
1538
2654
|
editCollection?: Maybe<Collection>;
|
|
1539
2655
|
editCollectionProduct?: Maybe<CollectionProduct>;
|
|
1540
2656
|
editCollectionProducts?: Maybe<Array<Maybe<CollectionProduct>>>;
|
|
1541
2657
|
editCollections?: Maybe<Collection>;
|
|
2658
|
+
editCustomer?: Maybe<Customer>;
|
|
2659
|
+
editCustomerAddress?: Maybe<CustomerAddress>;
|
|
2660
|
+
editCustomerAddresses?: Maybe<Array<Maybe<CustomerAddress>>>;
|
|
2661
|
+
editCustomerSegment?: Maybe<CustomerSegment>;
|
|
2662
|
+
editCustomerSegments?: Maybe<Array<Maybe<CustomerSegment>>>;
|
|
2663
|
+
editCustomers?: Maybe<Array<Maybe<Customer>>>;
|
|
2664
|
+
editDeliveryProfile?: Maybe<DeliveryProfile>;
|
|
2665
|
+
editDeliveryProfiles?: Maybe<DeliveryProfile>;
|
|
2666
|
+
editDeliveryZone?: Maybe<DeliveryZone>;
|
|
2667
|
+
editDeliveryZones?: Maybe<DeliveryZone>;
|
|
2668
|
+
editDiscount?: Maybe<Discount>;
|
|
2669
|
+
editDiscounts?: Maybe<Array<Maybe<Discount>>>;
|
|
1542
2670
|
editDomain?: Maybe<Domain>;
|
|
1543
2671
|
editDomains?: Maybe<Array<Maybe<Domain>>>;
|
|
1544
2672
|
editInventories?: Maybe<Array<Maybe<Inventory>>>;
|
|
1545
2673
|
editInventory?: Maybe<Inventory>;
|
|
1546
2674
|
editLinklist?: Maybe<Linklist>;
|
|
2675
|
+
editLinklists?: Maybe<Array<Maybe<Linklist>>>;
|
|
1547
2676
|
editLocation?: Maybe<Location>;
|
|
1548
2677
|
editLocations?: Maybe<Array<Maybe<Location>>>;
|
|
1549
2678
|
editMarket?: Maybe<Market>;
|
|
@@ -1551,8 +2680,19 @@ export type Mutation = {
|
|
|
1551
2680
|
editMarketVariants?: Maybe<Array<Maybe<MarketVariant>>>;
|
|
1552
2681
|
editMarkets?: Maybe<Array<Maybe<Market>>>;
|
|
1553
2682
|
editMetafield?: Maybe<Metafield>;
|
|
2683
|
+
editMetafields?: Maybe<Array<Maybe<Metafield>>>;
|
|
2684
|
+
editMetaobject?: Maybe<Metaobject>;
|
|
2685
|
+
editMetaobjectEntries?: Maybe<Array<Maybe<MetaobjectEntry>>>;
|
|
2686
|
+
editMetaobjectEntry?: Maybe<MetaobjectEntry>;
|
|
2687
|
+
editMetaobjects?: Maybe<Array<Maybe<Metaobject>>>;
|
|
2688
|
+
editPage?: Maybe<Page>;
|
|
2689
|
+
editPages?: Maybe<Array<Maybe<Page>>>;
|
|
1554
2690
|
editPayment?: Maybe<Payment>;
|
|
1555
2691
|
editPayments?: Maybe<Array<Maybe<Payment>>>;
|
|
2692
|
+
editPickupProfile?: Maybe<PickupProfile>;
|
|
2693
|
+
editPickupProfiles?: Maybe<PickupProfile>;
|
|
2694
|
+
editPlan?: Maybe<StoreInvoice>;
|
|
2695
|
+
editPlanDryRun?: Maybe<StoreInvoice>;
|
|
1556
2696
|
editPolicy?: Maybe<Policy>;
|
|
1557
2697
|
editPreset?: Maybe<Preset>;
|
|
1558
2698
|
editPresets?: Maybe<Preset>;
|
|
@@ -1562,22 +2702,30 @@ export type Mutation = {
|
|
|
1562
2702
|
editPurchases?: Maybe<Array<Maybe<Purchase>>>;
|
|
1563
2703
|
editRedirect?: Maybe<Redirect>;
|
|
1564
2704
|
editRedirects?: Maybe<Array<Maybe<Redirect>>>;
|
|
2705
|
+
editShippingProfile?: Maybe<ShippingProfile>;
|
|
2706
|
+
editShippingProfiles?: Maybe<ShippingProfile>;
|
|
2707
|
+
editShippingZone?: Maybe<ShippingZone>;
|
|
2708
|
+
editShippingZones?: Maybe<ShippingZone>;
|
|
1565
2709
|
editShop?: Maybe<Shop>;
|
|
1566
2710
|
editStaff?: Maybe<Staff>;
|
|
1567
2711
|
editStaffs?: Maybe<Array<Maybe<Staff>>>;
|
|
1568
2712
|
editStore?: Maybe<Store>;
|
|
1569
2713
|
editSupplier?: Maybe<Supplier>;
|
|
1570
2714
|
editSuppliers?: Maybe<Array<Maybe<Supplier>>>;
|
|
2715
|
+
editTax?: Maybe<Tax>;
|
|
2716
|
+
editTaxes?: Maybe<Array<Maybe<Tax>>>;
|
|
1571
2717
|
editTheme?: Maybe<Theme>;
|
|
1572
2718
|
editThemeFile?: Maybe<Scalars['String']['output']>;
|
|
1573
2719
|
editTransfer?: Maybe<Transfer>;
|
|
1574
2720
|
editTransfers?: Maybe<Array<Maybe<Transfer>>>;
|
|
1575
2721
|
editVariant?: Maybe<Variant>;
|
|
1576
2722
|
editVariants?: Maybe<Array<Maybe<Variant>>>;
|
|
2723
|
+
editcart?: Maybe<Cart>;
|
|
1577
2724
|
enableAccountSecurity?: Maybe<Scalars['String']['output']>;
|
|
1578
|
-
installApp?: Maybe<App>;
|
|
1579
2725
|
installTheme?: Maybe<Theme>;
|
|
1580
|
-
|
|
2726
|
+
mergeCustomers?: Maybe<Customer>;
|
|
2727
|
+
payStoreInvoice?: Maybe<PayStoreInvoiceResponse>;
|
|
2728
|
+
requestStoreInvoiceRefund?: Maybe<StoreInvoice>;
|
|
1581
2729
|
resetAccountPassword?: Maybe<Scalars['String']['output']>;
|
|
1582
2730
|
sendAccountEmailVerification?: Maybe<Scalars['String']['output']>;
|
|
1583
2731
|
sendAccountPasswordResetEmail?: Maybe<Scalars['String']['output']>;
|
|
@@ -1585,9 +2733,7 @@ export type Mutation = {
|
|
|
1585
2733
|
storeAppToken?: Maybe<Scalars['String']['output']>;
|
|
1586
2734
|
storeUserToken?: Maybe<Scalars['String']['output']>;
|
|
1587
2735
|
transferStoreOwnership?: Maybe<Scalars['String']['output']>;
|
|
1588
|
-
uninstallApp?: Maybe<Scalars['String']['output']>;
|
|
1589
2736
|
uninstallTheme?: Maybe<Scalars['String']['output']>;
|
|
1590
|
-
unpinApp?: Maybe<App>;
|
|
1591
2737
|
updateAccountEmail?: Maybe<Scalars['String']['output']>;
|
|
1592
2738
|
updateAccountPassword?: Maybe<Scalars['String']['output']>;
|
|
1593
2739
|
updateAccountPhone?: Maybe<Scalars['String']['output']>;
|
|
@@ -1609,6 +2755,12 @@ export type MutationAccountLoginArgs = {
|
|
|
1609
2755
|
password?: InputMaybe<Scalars['String']['input']>;
|
|
1610
2756
|
security_code?: InputMaybe<Scalars['String']['input']>;
|
|
1611
2757
|
};
|
|
2758
|
+
export type MutationAddAppArgs = {
|
|
2759
|
+
cursor: Scalars['ID']['input'];
|
|
2760
|
+
};
|
|
2761
|
+
export type MutationAddAppsArgs = {
|
|
2762
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
2763
|
+
};
|
|
1612
2764
|
export type MutationAddArticleArgs = {
|
|
1613
2765
|
input: AddArticle;
|
|
1614
2766
|
};
|
|
@@ -1616,13 +2768,13 @@ export type MutationAddArticlesArgs = {
|
|
|
1616
2768
|
input: Array<AddArticle>;
|
|
1617
2769
|
};
|
|
1618
2770
|
export type MutationAddBlogArgs = {
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
2771
|
+
input: AddBlog;
|
|
2772
|
+
};
|
|
2773
|
+
export type MutationAddBlogsArgs = {
|
|
2774
|
+
input: Array<AddBlog>;
|
|
2775
|
+
};
|
|
2776
|
+
export type MutationAddCartArgs = {
|
|
2777
|
+
input: AddCart;
|
|
1626
2778
|
};
|
|
1627
2779
|
export type MutationAddCollectionArgs = {
|
|
1628
2780
|
input: AddCollection;
|
|
@@ -1636,6 +2788,42 @@ export type MutationAddCollectionProductsArgs = {
|
|
|
1636
2788
|
export type MutationAddCollectionsArgs = {
|
|
1637
2789
|
input: Array<AddCollection>;
|
|
1638
2790
|
};
|
|
2791
|
+
export type MutationAddCustomerArgs = {
|
|
2792
|
+
input: AddCustomer;
|
|
2793
|
+
};
|
|
2794
|
+
export type MutationAddCustomerAddressArgs = {
|
|
2795
|
+
input: AddCustomerAddress;
|
|
2796
|
+
};
|
|
2797
|
+
export type MutationAddCustomerAddressesArgs = {
|
|
2798
|
+
input: Array<AddCustomerAddress>;
|
|
2799
|
+
};
|
|
2800
|
+
export type MutationAddCustomerSegmentArgs = {
|
|
2801
|
+
input: AddCustomerSegment;
|
|
2802
|
+
};
|
|
2803
|
+
export type MutationAddCustomerSegmentsArgs = {
|
|
2804
|
+
input: Array<AddCustomerSegment>;
|
|
2805
|
+
};
|
|
2806
|
+
export type MutationAddCustomersArgs = {
|
|
2807
|
+
input: Array<AddCustomer>;
|
|
2808
|
+
};
|
|
2809
|
+
export type MutationAddDeliveryProfileArgs = {
|
|
2810
|
+
input: AddDeliveryProfile;
|
|
2811
|
+
};
|
|
2812
|
+
export type MutationAddDeliveryProfilesArgs = {
|
|
2813
|
+
input: Array<AddDeliveryProfile>;
|
|
2814
|
+
};
|
|
2815
|
+
export type MutationAddDeliveryZoneArgs = {
|
|
2816
|
+
input: AddDeliveryZone;
|
|
2817
|
+
};
|
|
2818
|
+
export type MutationAddDeliveryZonesArgs = {
|
|
2819
|
+
input: Array<AddDeliveryZone>;
|
|
2820
|
+
};
|
|
2821
|
+
export type MutationAddDiscountArgs = {
|
|
2822
|
+
input: AddDiscount;
|
|
2823
|
+
};
|
|
2824
|
+
export type MutationAddDiscountsArgs = {
|
|
2825
|
+
input: Array<AddDiscount>;
|
|
2826
|
+
};
|
|
1639
2827
|
export type MutationAddDomainArgs = {
|
|
1640
2828
|
input: AddDomain;
|
|
1641
2829
|
};
|
|
@@ -1649,9 +2837,10 @@ export type MutationAddInventoryArgs = {
|
|
|
1649
2837
|
input: AddInventory;
|
|
1650
2838
|
};
|
|
1651
2839
|
export type MutationAddLinklistArgs = {
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
2840
|
+
input: AddLinklist;
|
|
2841
|
+
};
|
|
2842
|
+
export type MutationAddLinklistsArgs = {
|
|
2843
|
+
input: Array<AddLinklist>;
|
|
1655
2844
|
};
|
|
1656
2845
|
export type MutationAddLocationArgs = {
|
|
1657
2846
|
input: AddLocation;
|
|
@@ -1678,12 +2867,28 @@ export type MutationAddMediasArgs = {
|
|
|
1678
2867
|
input: Array<Scalars['Upload']['input']>;
|
|
1679
2868
|
};
|
|
1680
2869
|
export type MutationAddMetafieldArgs = {
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
2870
|
+
input: AddMetafield;
|
|
2871
|
+
};
|
|
2872
|
+
export type MutationAddMetafieldsArgs = {
|
|
2873
|
+
input: Array<AddMetafield>;
|
|
2874
|
+
};
|
|
2875
|
+
export type MutationAddMetaobjectArgs = {
|
|
2876
|
+
input: AddMetaobject;
|
|
2877
|
+
};
|
|
2878
|
+
export type MutationAddMetaobjectEntriesArgs = {
|
|
2879
|
+
input: Array<AddMetaobjectEntry>;
|
|
2880
|
+
};
|
|
2881
|
+
export type MutationAddMetaobjectEntryArgs = {
|
|
2882
|
+
input: AddMetaobjectEntry;
|
|
2883
|
+
};
|
|
2884
|
+
export type MutationAddMetaobjectsArgs = {
|
|
2885
|
+
input: Array<AddMetaobject>;
|
|
2886
|
+
};
|
|
2887
|
+
export type MutationAddPageArgs = {
|
|
2888
|
+
input: AddPage;
|
|
2889
|
+
};
|
|
2890
|
+
export type MutationAddPagesArgs = {
|
|
2891
|
+
input: Array<AddPage>;
|
|
1687
2892
|
};
|
|
1688
2893
|
export type MutationAddPaymentArgs = {
|
|
1689
2894
|
input: AddPayment;
|
|
@@ -1691,6 +2896,12 @@ export type MutationAddPaymentArgs = {
|
|
|
1691
2896
|
export type MutationAddPaymentsArgs = {
|
|
1692
2897
|
input: Array<AddPayment>;
|
|
1693
2898
|
};
|
|
2899
|
+
export type MutationAddPickupProfileArgs = {
|
|
2900
|
+
input: AddPickupProfile;
|
|
2901
|
+
};
|
|
2902
|
+
export type MutationAddPickupProfilesArgs = {
|
|
2903
|
+
input: Array<AddPickupProfile>;
|
|
2904
|
+
};
|
|
1694
2905
|
export type MutationAddPresetArgs = {
|
|
1695
2906
|
input: AddPreset;
|
|
1696
2907
|
};
|
|
@@ -1715,6 +2926,18 @@ export type MutationAddRedirectArgs = {
|
|
|
1715
2926
|
export type MutationAddRedirectsArgs = {
|
|
1716
2927
|
input: Array<AddRedirect>;
|
|
1717
2928
|
};
|
|
2929
|
+
export type MutationAddShippingProfileArgs = {
|
|
2930
|
+
input: AddShippingProfile;
|
|
2931
|
+
};
|
|
2932
|
+
export type MutationAddShippingProfilesArgs = {
|
|
2933
|
+
input: Array<AddShippingProfile>;
|
|
2934
|
+
};
|
|
2935
|
+
export type MutationAddShippingZoneArgs = {
|
|
2936
|
+
input: AddShippingZone;
|
|
2937
|
+
};
|
|
2938
|
+
export type MutationAddShippingZonesArgs = {
|
|
2939
|
+
input: Array<AddShippingZone>;
|
|
2940
|
+
};
|
|
1718
2941
|
export type MutationAddStaffArgs = {
|
|
1719
2942
|
input: AddStaff;
|
|
1720
2943
|
};
|
|
@@ -1727,6 +2950,12 @@ export type MutationAddSupplierArgs = {
|
|
|
1727
2950
|
export type MutationAddSuppliersArgs = {
|
|
1728
2951
|
input: Array<InputMaybe<AddSupplier>>;
|
|
1729
2952
|
};
|
|
2953
|
+
export type MutationAddTaxArgs = {
|
|
2954
|
+
input: AddTaxInput;
|
|
2955
|
+
};
|
|
2956
|
+
export type MutationAddTaxesArgs = {
|
|
2957
|
+
input: Array<AddTaxInput>;
|
|
2958
|
+
};
|
|
1730
2959
|
export type MutationAddTransferArgs = {
|
|
1731
2960
|
input: AddTransfer;
|
|
1732
2961
|
};
|
|
@@ -1755,12 +2984,27 @@ export type MutationCreateStoreArgs = {
|
|
|
1755
2984
|
export type MutationCreateThemeFileArgs = {
|
|
1756
2985
|
input: CreateThemeFile;
|
|
1757
2986
|
};
|
|
2987
|
+
export type MutationCustomerTokenArgs = {
|
|
2988
|
+
input: CustomerTokenInput;
|
|
2989
|
+
};
|
|
2990
|
+
export type MutationDeleteAppArgs = {
|
|
2991
|
+
cursor: Scalars['ID']['input'];
|
|
2992
|
+
};
|
|
2993
|
+
export type MutationDeleteAppsArgs = {
|
|
2994
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2995
|
+
};
|
|
1758
2996
|
export type MutationDeleteArticleArgs = {
|
|
1759
2997
|
cursor: Scalars['ID']['input'];
|
|
1760
2998
|
};
|
|
1761
2999
|
export type MutationDeleteBlogArgs = {
|
|
1762
3000
|
cursor: Scalars['ID']['input'];
|
|
1763
3001
|
};
|
|
3002
|
+
export type MutationDeleteBlogsArgs = {
|
|
3003
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3004
|
+
};
|
|
3005
|
+
export type MutationDeleteCartArgs = {
|
|
3006
|
+
cursor: Scalars['ID']['input'];
|
|
3007
|
+
};
|
|
1764
3008
|
export type MutationDeleteCollectionArgs = {
|
|
1765
3009
|
cursor: Scalars['ID']['input'];
|
|
1766
3010
|
};
|
|
@@ -1773,6 +3017,42 @@ export type MutationDeleteCollectionProductsArgs = {
|
|
|
1773
3017
|
export type MutationDeleteCollectionsArgs = {
|
|
1774
3018
|
cursors: Array<Scalars['ID']['input']>;
|
|
1775
3019
|
};
|
|
3020
|
+
export type MutationDeleteCustomerArgs = {
|
|
3021
|
+
cursor: Scalars['ID']['input'];
|
|
3022
|
+
};
|
|
3023
|
+
export type MutationDeleteCustomerAddressArgs = {
|
|
3024
|
+
cursor: Scalars['ID']['input'];
|
|
3025
|
+
};
|
|
3026
|
+
export type MutationDeleteCustomerAddressesArgs = {
|
|
3027
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3028
|
+
};
|
|
3029
|
+
export type MutationDeleteCustomerSegmentArgs = {
|
|
3030
|
+
cursor: Scalars['ID']['input'];
|
|
3031
|
+
};
|
|
3032
|
+
export type MutationDeleteCustomerSegmentsArgs = {
|
|
3033
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3034
|
+
};
|
|
3035
|
+
export type MutationDeleteCustomersArgs = {
|
|
3036
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3037
|
+
};
|
|
3038
|
+
export type MutationDeleteDeliveryProfileArgs = {
|
|
3039
|
+
cursor: Scalars['ID']['input'];
|
|
3040
|
+
};
|
|
3041
|
+
export type MutationDeleteDeliveryProfilesArgs = {
|
|
3042
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3043
|
+
};
|
|
3044
|
+
export type MutationDeleteDeliveryZoneArgs = {
|
|
3045
|
+
cursor: Scalars['ID']['input'];
|
|
3046
|
+
};
|
|
3047
|
+
export type MutationDeleteDeliveryZonesArgs = {
|
|
3048
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3049
|
+
};
|
|
3050
|
+
export type MutationDeleteDiscountArgs = {
|
|
3051
|
+
cursor: Scalars['ID']['input'];
|
|
3052
|
+
};
|
|
3053
|
+
export type MutationDeleteDiscountsArgs = {
|
|
3054
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3055
|
+
};
|
|
1776
3056
|
export type MutationDeleteDomainArgs = {
|
|
1777
3057
|
cursor: Scalars['ID']['input'];
|
|
1778
3058
|
};
|
|
@@ -1788,6 +3068,9 @@ export type MutationDeleteInventoryArgs = {
|
|
|
1788
3068
|
export type MutationDeleteLinklistArgs = {
|
|
1789
3069
|
cursor: Scalars['ID']['input'];
|
|
1790
3070
|
};
|
|
3071
|
+
export type MutationDeleteLinklistsArgs = {
|
|
3072
|
+
cursor: Array<Scalars['ID']['input']>;
|
|
3073
|
+
};
|
|
1791
3074
|
export type MutationDeleteLocationArgs = {
|
|
1792
3075
|
cursor: Scalars['ID']['input'];
|
|
1793
3076
|
};
|
|
@@ -1813,12 +3096,39 @@ export type MutationDeleteMediasArgs = {
|
|
|
1813
3096
|
cursors: Array<Scalars['ID']['input']>;
|
|
1814
3097
|
};
|
|
1815
3098
|
export type MutationDeleteMetafieldArgs = {
|
|
1816
|
-
|
|
3099
|
+
cursor: Scalars['ID']['input'];
|
|
3100
|
+
};
|
|
3101
|
+
export type MutationDeleteMetafieldsArgs = {
|
|
3102
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3103
|
+
};
|
|
3104
|
+
export type MutationDeleteMetaobjectArgs = {
|
|
3105
|
+
cursor: Scalars['ID']['input'];
|
|
3106
|
+
};
|
|
3107
|
+
export type MutationDeleteMetaobjectEntriesArgs = {
|
|
3108
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3109
|
+
};
|
|
3110
|
+
export type MutationDeleteMetaobjectEntryArgs = {
|
|
3111
|
+
cursor: Scalars['ID']['input'];
|
|
3112
|
+
};
|
|
3113
|
+
export type MutationDeleteMetaobjectsArgs = {
|
|
3114
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3115
|
+
};
|
|
3116
|
+
export type MutationDeletePageArgs = {
|
|
3117
|
+
cursor: Scalars['ID']['input'];
|
|
3118
|
+
};
|
|
3119
|
+
export type MutationDeletePagesArgs = {
|
|
3120
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3121
|
+
};
|
|
3122
|
+
export type MutationDeletePaymentArgs = {
|
|
3123
|
+
cursor: Scalars['ID']['input'];
|
|
3124
|
+
};
|
|
3125
|
+
export type MutationDeletePaymentsArgs = {
|
|
3126
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
1817
3127
|
};
|
|
1818
|
-
export type
|
|
3128
|
+
export type MutationDeletePickupProfileArgs = {
|
|
1819
3129
|
cursor: Scalars['ID']['input'];
|
|
1820
3130
|
};
|
|
1821
|
-
export type
|
|
3131
|
+
export type MutationDeletePickupProfilesArgs = {
|
|
1822
3132
|
cursors: Array<Scalars['ID']['input']>;
|
|
1823
3133
|
};
|
|
1824
3134
|
export type MutationDeletePresetArgs = {
|
|
@@ -1839,6 +3149,18 @@ export type MutationDeleteRedirectArgs = {
|
|
|
1839
3149
|
export type MutationDeleteRedirectsArgs = {
|
|
1840
3150
|
cursor: Array<Scalars['ID']['input']>;
|
|
1841
3151
|
};
|
|
3152
|
+
export type MutationDeleteShippingProfileArgs = {
|
|
3153
|
+
cursor: Scalars['ID']['input'];
|
|
3154
|
+
};
|
|
3155
|
+
export type MutationDeleteShippingProfilesArgs = {
|
|
3156
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3157
|
+
};
|
|
3158
|
+
export type MutationDeleteShippingZoneArgs = {
|
|
3159
|
+
cursor: Scalars['ID']['input'];
|
|
3160
|
+
};
|
|
3161
|
+
export type MutationDeleteShippingZonesArgs = {
|
|
3162
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3163
|
+
};
|
|
1842
3164
|
export type MutationDeleteStaffArgs = {
|
|
1843
3165
|
cursor: Scalars['ID']['input'];
|
|
1844
3166
|
};
|
|
@@ -1851,6 +3173,12 @@ export type MutationDeleteSupplierArgs = {
|
|
|
1851
3173
|
export type MutationDeleteSuppliersArgs = {
|
|
1852
3174
|
cursor: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
1853
3175
|
};
|
|
3176
|
+
export type MutationDeleteTaxArgs = {
|
|
3177
|
+
cursor: Scalars['ID']['input'];
|
|
3178
|
+
};
|
|
3179
|
+
export type MutationDeleteTaxesArgs = {
|
|
3180
|
+
cursors: Array<Scalars['ID']['input']>;
|
|
3181
|
+
};
|
|
1854
3182
|
export type MutationDeleteThemeFileArgs = {
|
|
1855
3183
|
input: DeleteThemeFile;
|
|
1856
3184
|
};
|
|
@@ -1881,19 +3209,20 @@ export type MutationDeleteVariantsArgs = {
|
|
|
1881
3209
|
export type MutationDisableAccountSecurityArgs = {
|
|
1882
3210
|
security_code: Scalars['String']['input'];
|
|
1883
3211
|
};
|
|
3212
|
+
export type MutationEditAppArgs = {
|
|
3213
|
+
input: EditApp;
|
|
3214
|
+
};
|
|
3215
|
+
export type MutationEditAppsArgs = {
|
|
3216
|
+
input: Array<EditApp>;
|
|
3217
|
+
};
|
|
1884
3218
|
export type MutationEditArticleArgs = {
|
|
1885
3219
|
input: EditArticle;
|
|
1886
3220
|
};
|
|
1887
3221
|
export type MutationEditBlogArgs = {
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1893
|
-
meta_title?: InputMaybe<Scalars['String']['input']>;
|
|
1894
|
-
metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
|
|
1895
|
-
template?: InputMaybe<Scalars['String']['input']>;
|
|
1896
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
3222
|
+
input: EditBlog;
|
|
3223
|
+
};
|
|
3224
|
+
export type MutationEditBlogsArgs = {
|
|
3225
|
+
input: Array<EditBlog>;
|
|
1897
3226
|
};
|
|
1898
3227
|
export type MutationEditBrandArgs = {
|
|
1899
3228
|
input: EditBrand;
|
|
@@ -1935,6 +3264,42 @@ export type MutationEditCollectionProductsArgs = {
|
|
|
1935
3264
|
export type MutationEditCollectionsArgs = {
|
|
1936
3265
|
input?: InputMaybe<Array<EditCollection>>;
|
|
1937
3266
|
};
|
|
3267
|
+
export type MutationEditCustomerArgs = {
|
|
3268
|
+
input: EditCustomer;
|
|
3269
|
+
};
|
|
3270
|
+
export type MutationEditCustomerAddressArgs = {
|
|
3271
|
+
input: EditCustomerAddress;
|
|
3272
|
+
};
|
|
3273
|
+
export type MutationEditCustomerAddressesArgs = {
|
|
3274
|
+
input: Array<EditCustomerAddress>;
|
|
3275
|
+
};
|
|
3276
|
+
export type MutationEditCustomerSegmentArgs = {
|
|
3277
|
+
input: EditCustomerSegment;
|
|
3278
|
+
};
|
|
3279
|
+
export type MutationEditCustomerSegmentsArgs = {
|
|
3280
|
+
input: Array<EditCustomerSegment>;
|
|
3281
|
+
};
|
|
3282
|
+
export type MutationEditCustomersArgs = {
|
|
3283
|
+
input: Array<EditCustomer>;
|
|
3284
|
+
};
|
|
3285
|
+
export type MutationEditDeliveryProfileArgs = {
|
|
3286
|
+
input: EditDeliveryProfile;
|
|
3287
|
+
};
|
|
3288
|
+
export type MutationEditDeliveryProfilesArgs = {
|
|
3289
|
+
input: Array<EditDeliveryProfile>;
|
|
3290
|
+
};
|
|
3291
|
+
export type MutationEditDeliveryZoneArgs = {
|
|
3292
|
+
input: EditDeliveryZone;
|
|
3293
|
+
};
|
|
3294
|
+
export type MutationEditDeliveryZonesArgs = {
|
|
3295
|
+
input: Array<EditDeliveryZone>;
|
|
3296
|
+
};
|
|
3297
|
+
export type MutationEditDiscountArgs = {
|
|
3298
|
+
input: EditDiscount;
|
|
3299
|
+
};
|
|
3300
|
+
export type MutationEditDiscountsArgs = {
|
|
3301
|
+
input?: InputMaybe<Array<InputMaybe<EditDiscount>>>;
|
|
3302
|
+
};
|
|
1938
3303
|
export type MutationEditDomainArgs = {
|
|
1939
3304
|
input: EditDomain;
|
|
1940
3305
|
};
|
|
@@ -1948,10 +3313,10 @@ export type MutationEditInventoryArgs = {
|
|
|
1948
3313
|
input: EditInventory;
|
|
1949
3314
|
};
|
|
1950
3315
|
export type MutationEditLinklistArgs = {
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
3316
|
+
input: EditLinklist;
|
|
3317
|
+
};
|
|
3318
|
+
export type MutationEditLinklistsArgs = {
|
|
3319
|
+
input: Array<EditLinklist>;
|
|
1955
3320
|
};
|
|
1956
3321
|
export type MutationEditLocationArgs = {
|
|
1957
3322
|
input: EditLocation;
|
|
@@ -1972,9 +3337,28 @@ export type MutationEditMarketsArgs = {
|
|
|
1972
3337
|
input: Array<EditMarket>;
|
|
1973
3338
|
};
|
|
1974
3339
|
export type MutationEditMetafieldArgs = {
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
3340
|
+
input: EditMetafield;
|
|
3341
|
+
};
|
|
3342
|
+
export type MutationEditMetafieldsArgs = {
|
|
3343
|
+
input: Array<EditMetafield>;
|
|
3344
|
+
};
|
|
3345
|
+
export type MutationEditMetaobjectArgs = {
|
|
3346
|
+
input: EditMetaobject;
|
|
3347
|
+
};
|
|
3348
|
+
export type MutationEditMetaobjectEntriesArgs = {
|
|
3349
|
+
input: Array<EditMetaobjectEntry>;
|
|
3350
|
+
};
|
|
3351
|
+
export type MutationEditMetaobjectEntryArgs = {
|
|
3352
|
+
input: EditMetaobjectEntry;
|
|
3353
|
+
};
|
|
3354
|
+
export type MutationEditMetaobjectsArgs = {
|
|
3355
|
+
input: Array<EditMetaobject>;
|
|
3356
|
+
};
|
|
3357
|
+
export type MutationEditPageArgs = {
|
|
3358
|
+
input: EditPage;
|
|
3359
|
+
};
|
|
3360
|
+
export type MutationEditPagesArgs = {
|
|
3361
|
+
input: Array<EditPage>;
|
|
1978
3362
|
};
|
|
1979
3363
|
export type MutationEditPaymentArgs = {
|
|
1980
3364
|
input: EditPayment;
|
|
@@ -1982,6 +3366,18 @@ export type MutationEditPaymentArgs = {
|
|
|
1982
3366
|
export type MutationEditPaymentsArgs = {
|
|
1983
3367
|
input: Array<EditPayment>;
|
|
1984
3368
|
};
|
|
3369
|
+
export type MutationEditPickupProfileArgs = {
|
|
3370
|
+
input: EditPickupProfile;
|
|
3371
|
+
};
|
|
3372
|
+
export type MutationEditPickupProfilesArgs = {
|
|
3373
|
+
input: Array<EditPickupProfile>;
|
|
3374
|
+
};
|
|
3375
|
+
export type MutationEditPlanArgs = {
|
|
3376
|
+
input: EditPlan;
|
|
3377
|
+
};
|
|
3378
|
+
export type MutationEditPlanDryRunArgs = {
|
|
3379
|
+
input: EditPlan;
|
|
3380
|
+
};
|
|
1985
3381
|
export type MutationEditPolicyArgs = {
|
|
1986
3382
|
input?: InputMaybe<EditPolicy>;
|
|
1987
3383
|
};
|
|
@@ -2009,6 +3405,18 @@ export type MutationEditRedirectArgs = {
|
|
|
2009
3405
|
export type MutationEditRedirectsArgs = {
|
|
2010
3406
|
input: Array<EditRedirect>;
|
|
2011
3407
|
};
|
|
3408
|
+
export type MutationEditShippingProfileArgs = {
|
|
3409
|
+
input: EditShippingProfile;
|
|
3410
|
+
};
|
|
3411
|
+
export type MutationEditShippingProfilesArgs = {
|
|
3412
|
+
input: Array<EditShippingProfile>;
|
|
3413
|
+
};
|
|
3414
|
+
export type MutationEditShippingZoneArgs = {
|
|
3415
|
+
input: EditShippingZone;
|
|
3416
|
+
};
|
|
3417
|
+
export type MutationEditShippingZonesArgs = {
|
|
3418
|
+
input: Array<EditShippingZone>;
|
|
3419
|
+
};
|
|
2012
3420
|
export type MutationEditShopArgs = {
|
|
2013
3421
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2014
3422
|
image?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2032,6 +3440,12 @@ export type MutationEditSupplierArgs = {
|
|
|
2032
3440
|
export type MutationEditSuppliersArgs = {
|
|
2033
3441
|
input: Array<InputMaybe<EditSupplier>>;
|
|
2034
3442
|
};
|
|
3443
|
+
export type MutationEditTaxArgs = {
|
|
3444
|
+
input: EditTaxInput;
|
|
3445
|
+
};
|
|
3446
|
+
export type MutationEditTaxesArgs = {
|
|
3447
|
+
input: Array<EditTaxInput>;
|
|
3448
|
+
};
|
|
2035
3449
|
export type MutationEditThemeArgs = {
|
|
2036
3450
|
input: EditTheme;
|
|
2037
3451
|
};
|
|
@@ -2050,18 +3464,24 @@ export type MutationEditVariantArgs = {
|
|
|
2050
3464
|
export type MutationEditVariantsArgs = {
|
|
2051
3465
|
input?: InputMaybe<Array<EditVariant>>;
|
|
2052
3466
|
};
|
|
3467
|
+
export type MutationEditcartArgs = {
|
|
3468
|
+
input: EditCart;
|
|
3469
|
+
};
|
|
2053
3470
|
export type MutationEnableAccountSecurityArgs = {
|
|
2054
3471
|
security_code: Scalars['String']['input'];
|
|
2055
3472
|
};
|
|
2056
|
-
export type MutationInstallAppArgs = {
|
|
2057
|
-
_app: Scalars['ID']['input'];
|
|
2058
|
-
};
|
|
2059
3473
|
export type MutationInstallThemeArgs = {
|
|
2060
3474
|
input: InstallTheme;
|
|
2061
3475
|
};
|
|
2062
|
-
export type
|
|
3476
|
+
export type MutationMergeCustomersArgs = {
|
|
3477
|
+
input: MergeCustomers;
|
|
3478
|
+
};
|
|
3479
|
+
export type MutationPayStoreInvoiceArgs = {
|
|
2063
3480
|
cursor: Scalars['ID']['input'];
|
|
2064
3481
|
};
|
|
3482
|
+
export type MutationRequestStoreInvoiceRefundArgs = {
|
|
3483
|
+
input: RequestStoreInvoiceRefund;
|
|
3484
|
+
};
|
|
2065
3485
|
export type MutationResetAccountPasswordArgs = {
|
|
2066
3486
|
password: Scalars['String']['input'];
|
|
2067
3487
|
token: Scalars['String']['input'];
|
|
@@ -2088,15 +3508,9 @@ export type MutationTransferStoreOwnershipArgs = {
|
|
|
2088
3508
|
password: Scalars['String']['input'];
|
|
2089
3509
|
security_code?: InputMaybe<Scalars['String']['input']>;
|
|
2090
3510
|
};
|
|
2091
|
-
export type MutationUninstallAppArgs = {
|
|
2092
|
-
cursor: Scalars['ID']['input'];
|
|
2093
|
-
};
|
|
2094
3511
|
export type MutationUninstallThemeArgs = {
|
|
2095
3512
|
cursor: Scalars['ID']['input'];
|
|
2096
3513
|
};
|
|
2097
|
-
export type MutationUnpinAppArgs = {
|
|
2098
|
-
cursor: Scalars['ID']['input'];
|
|
2099
|
-
};
|
|
2100
3514
|
export type MutationUpdateAccountEmailArgs = {
|
|
2101
3515
|
action_intent: AccountEmailUpdateActionIntent;
|
|
2102
3516
|
email_intent: AccountEmailIntent;
|
|
@@ -2126,6 +3540,41 @@ export type MutationUploadThemeFileArgs = {
|
|
|
2126
3540
|
export type MutationVerifyAccountEmailArgs = {
|
|
2127
3541
|
token: Scalars['String']['input'];
|
|
2128
3542
|
};
|
|
3543
|
+
export type Page = {
|
|
3544
|
+
__typename: 'Page';
|
|
3545
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
3546
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
3547
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
3548
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
3549
|
+
handle?: Maybe<Scalars['String']['output']>;
|
|
3550
|
+
image?: Maybe<Media>;
|
|
3551
|
+
meta_description?: Maybe<Scalars['String']['output']>;
|
|
3552
|
+
meta_tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3553
|
+
meta_title?: Maybe<Scalars['String']['output']>;
|
|
3554
|
+
metafields?: Maybe<Array<Maybe<MetafieldData>>>;
|
|
3555
|
+
status?: Maybe<PageStatus>;
|
|
3556
|
+
store?: Maybe<Store>;
|
|
3557
|
+
template?: Maybe<Scalars['String']['output']>;
|
|
3558
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3559
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
3560
|
+
};
|
|
3561
|
+
export type PageConnection = {
|
|
3562
|
+
__typename: 'PageConnection';
|
|
3563
|
+
edges?: Maybe<Array<Maybe<PageEdge>>>;
|
|
3564
|
+
pageInfo?: Maybe<PageInfo>;
|
|
3565
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3566
|
+
};
|
|
3567
|
+
export type PageEdge = {
|
|
3568
|
+
__typename: 'PageEdge';
|
|
3569
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
3570
|
+
node?: Maybe<Page>;
|
|
3571
|
+
};
|
|
3572
|
+
export type PageFilterKeys = {
|
|
3573
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3574
|
+
handles?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3575
|
+
statuses?: InputMaybe<Array<PageStatus>>;
|
|
3576
|
+
templates?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3577
|
+
};
|
|
2129
3578
|
export type PageInfo = {
|
|
2130
3579
|
__typename: 'PageInfo';
|
|
2131
3580
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -2133,6 +3582,18 @@ export type PageInfo = {
|
|
|
2133
3582
|
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
2134
3583
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
2135
3584
|
};
|
|
3585
|
+
export declare enum PageSortKeys {
|
|
3586
|
+
_id = "_id",
|
|
3587
|
+
blog = "blog",
|
|
3588
|
+
createdAt = "createdAt",
|
|
3589
|
+
status = "status",
|
|
3590
|
+
title = "title",
|
|
3591
|
+
updatedAt = "updatedAt"
|
|
3592
|
+
}
|
|
3593
|
+
export declare enum PageStatus {
|
|
3594
|
+
active = "active",
|
|
3595
|
+
draft = "draft"
|
|
3596
|
+
}
|
|
2136
3597
|
export type Passkey = {
|
|
2137
3598
|
__typename: 'Passkey';
|
|
2138
3599
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2142,6 +3603,15 @@ export type Passkey = {
|
|
|
2142
3603
|
transports?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2143
3604
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2144
3605
|
};
|
|
3606
|
+
export type PayStoreInvoiceResponse = {
|
|
3607
|
+
__typename: 'PayStoreInvoiceResponse';
|
|
3608
|
+
status?: Maybe<PayStoreInvoiceStatus>;
|
|
3609
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
3610
|
+
};
|
|
3611
|
+
export declare enum PayStoreInvoiceStatus {
|
|
3612
|
+
paid = "paid",
|
|
3613
|
+
pending = "pending"
|
|
3614
|
+
}
|
|
2145
3615
|
export type Payment = {
|
|
2146
3616
|
__typename: 'Payment';
|
|
2147
3617
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2223,6 +3693,63 @@ export type PhoneInput = {
|
|
|
2223
3693
|
has_subscribed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2224
3694
|
number: Scalars['String']['input'];
|
|
2225
3695
|
};
|
|
3696
|
+
export type PickupProfile = {
|
|
3697
|
+
__typename: 'PickupProfile';
|
|
3698
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
3699
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
3700
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
3701
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3702
|
+
origin?: Maybe<Location>;
|
|
3703
|
+
price?: Maybe<Scalars['Float']['output']>;
|
|
3704
|
+
ready_in?: Maybe<PickupProfileReadyIn>;
|
|
3705
|
+
store?: Maybe<Store>;
|
|
3706
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
3707
|
+
};
|
|
3708
|
+
export type PickupProfileConnection = {
|
|
3709
|
+
__typename: 'PickupProfileConnection';
|
|
3710
|
+
edges?: Maybe<Array<Maybe<PickupProfileEdge>>>;
|
|
3711
|
+
pageInfo?: Maybe<PageInfo>;
|
|
3712
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3713
|
+
};
|
|
3714
|
+
export type PickupProfileEdge = {
|
|
3715
|
+
__typename: 'PickupProfileEdge';
|
|
3716
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
3717
|
+
node?: Maybe<PickupProfile>;
|
|
3718
|
+
};
|
|
3719
|
+
export type PickupProfileFilterKeys = {
|
|
3720
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3721
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3722
|
+
origins?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3723
|
+
ready_ins?: InputMaybe<Array<PickupProfileReadyIn>>;
|
|
3724
|
+
};
|
|
3725
|
+
export declare enum PickupProfileReadyIn {
|
|
3726
|
+
fifteen_minutes = "fifteen_minutes",
|
|
3727
|
+
five_days = "five_days",
|
|
3728
|
+
five_minutes = "five_minutes",
|
|
3729
|
+
four_days = "four_days",
|
|
3730
|
+
one_day = "one_day",
|
|
3731
|
+
one_hour = "one_hour",
|
|
3732
|
+
one_week = "one_week",
|
|
3733
|
+
six_days = "six_days",
|
|
3734
|
+
six_hours = "six_hours",
|
|
3735
|
+
ten_minutes = "ten_minutes",
|
|
3736
|
+
thirty_minutes = "thirty_minutes",
|
|
3737
|
+
three_days = "three_days",
|
|
3738
|
+
three_hours = "three_hours",
|
|
3739
|
+
twelve_hours = "twelve_hours",
|
|
3740
|
+
two_days = "two_days",
|
|
3741
|
+
two_hours = "two_hours"
|
|
3742
|
+
}
|
|
3743
|
+
export declare enum PickupProfileSortKeys {
|
|
3744
|
+
_id = "_id",
|
|
3745
|
+
createdAt = "createdAt",
|
|
3746
|
+
instructions = "instructions",
|
|
3747
|
+
name = "name",
|
|
3748
|
+
origin = "origin",
|
|
3749
|
+
price = "price",
|
|
3750
|
+
ready_in = "ready_in",
|
|
3751
|
+
updatedAt = "updatedAt"
|
|
3752
|
+
}
|
|
2226
3753
|
export type Plan = {
|
|
2227
3754
|
__typename: 'Plan';
|
|
2228
3755
|
active_from?: Maybe<Scalars['String']['output']>;
|
|
@@ -2289,6 +3816,8 @@ export declare enum PresetSortKeys {
|
|
|
2289
3816
|
}
|
|
2290
3817
|
export declare enum PresetType {
|
|
2291
3818
|
analytics = "analytics",
|
|
3819
|
+
articles = "articles",
|
|
3820
|
+
blogs = "blogs",
|
|
2292
3821
|
collections = "collections",
|
|
2293
3822
|
customers = "customers",
|
|
2294
3823
|
inventories = "inventories",
|
|
@@ -2296,6 +3825,7 @@ export declare enum PresetType {
|
|
|
2296
3825
|
paginations = "paginations",
|
|
2297
3826
|
products = "products",
|
|
2298
3827
|
purchases = "purchases",
|
|
3828
|
+
suppliers = "suppliers",
|
|
2299
3829
|
transfers = "transfers"
|
|
2300
3830
|
}
|
|
2301
3831
|
export type PriceBreak = {
|
|
@@ -2568,12 +4098,26 @@ export type Query = {
|
|
|
2568
4098
|
blog?: Maybe<Blog>;
|
|
2569
4099
|
blogs?: Maybe<BlogConnection>;
|
|
2570
4100
|
brand?: Maybe<Brand>;
|
|
4101
|
+
cart?: Maybe<Cart>;
|
|
4102
|
+
carts?: Maybe<CartConnection>;
|
|
2571
4103
|
checkout?: Maybe<Checkout>;
|
|
2572
4104
|
collection?: Maybe<Collection>;
|
|
2573
4105
|
collectionProduct?: Maybe<CollectionProduct>;
|
|
2574
4106
|
collectionProducts?: Maybe<CollectionProductConnection>;
|
|
2575
4107
|
collections?: Maybe<CollectionConnection>;
|
|
2576
|
-
|
|
4108
|
+
customer?: Maybe<Customer>;
|
|
4109
|
+
customerAddress?: Maybe<CustomerAddress>;
|
|
4110
|
+
customerAddresses?: Maybe<CustomerAddressConnection>;
|
|
4111
|
+
customerSegment?: Maybe<CustomerSegment>;
|
|
4112
|
+
customerSegments?: Maybe<CustomerSegmentConnection>;
|
|
4113
|
+
customers?: Maybe<CustomerConnection>;
|
|
4114
|
+
defaultThemeTemplates?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
4115
|
+
deliveryProfile?: Maybe<DeliveryProfile>;
|
|
4116
|
+
deliveryProfiles?: Maybe<DeliveryProfileConnection>;
|
|
4117
|
+
deliveryZone?: Maybe<DeliveryZone>;
|
|
4118
|
+
deliveryZones?: Maybe<DeliveryZoneConnection>;
|
|
4119
|
+
discount?: Maybe<Discount>;
|
|
4120
|
+
discounts?: Maybe<DiscountConnection>;
|
|
2577
4121
|
domain?: Maybe<Domain>;
|
|
2578
4122
|
domains?: Maybe<DomainConnection>;
|
|
2579
4123
|
inventories?: Maybe<InventoryConnection>;
|
|
@@ -2594,14 +4138,23 @@ export type Query = {
|
|
|
2594
4138
|
medias?: Maybe<MediaConnection>;
|
|
2595
4139
|
metafield?: Maybe<Metafield>;
|
|
2596
4140
|
metafields?: Maybe<MetafieldConnection>;
|
|
4141
|
+
metaobject?: Maybe<Metaobject>;
|
|
4142
|
+
metaobjectEntries?: Maybe<MetaobjectEntryConnection>;
|
|
4143
|
+
metaobjectEntry?: Maybe<MetaobjectEntry>;
|
|
4144
|
+
metaobjects?: Maybe<MetaobjectConnection>;
|
|
2597
4145
|
modules?: Maybe<StoreModules>;
|
|
4146
|
+
page?: Maybe<Page>;
|
|
4147
|
+
pages?: Maybe<PageConnection>;
|
|
2598
4148
|
payment?: Maybe<Payment>;
|
|
2599
4149
|
payments?: Maybe<PaymentConnection>;
|
|
4150
|
+
pickupProfile?: Maybe<PickupProfile>;
|
|
4151
|
+
pickupProfiles?: Maybe<PickupProfileConnection>;
|
|
2600
4152
|
plan?: Maybe<Plan>;
|
|
2601
4153
|
policy?: Maybe<Policy>;
|
|
2602
4154
|
preset?: Maybe<Preset>;
|
|
2603
4155
|
presets?: Maybe<PresetConnection>;
|
|
2604
4156
|
product?: Maybe<Product>;
|
|
4157
|
+
productCategories?: Maybe<Array<Maybe<_Category>>>;
|
|
2605
4158
|
productTags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2606
4159
|
productTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2607
4160
|
productVendors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -2612,16 +4165,24 @@ export type Query = {
|
|
|
2612
4165
|
purchases?: Maybe<PurchaseConnection>;
|
|
2613
4166
|
redirect?: Maybe<Redirect>;
|
|
2614
4167
|
redirects?: Maybe<RedirectConnection>;
|
|
4168
|
+
shippingProfile?: Maybe<ShippingProfile>;
|
|
4169
|
+
shippingProfiles?: Maybe<ShippingProfileConnection>;
|
|
4170
|
+
shippingZone?: Maybe<ShippingZone>;
|
|
4171
|
+
shippingZones?: Maybe<ShippingZoneConnection>;
|
|
2615
4172
|
shop?: Maybe<Shop>;
|
|
2616
4173
|
staff?: Maybe<Staff>;
|
|
2617
4174
|
staffs?: Maybe<StaffConnection>;
|
|
2618
4175
|
store?: Maybe<Store>;
|
|
2619
4176
|
storeEvents?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2620
4177
|
storeInvitationDetails?: Maybe<StoreInvitationDetails>;
|
|
4178
|
+
storeInvoice?: Maybe<StoreInvoice>;
|
|
4179
|
+
storeInvoices?: Maybe<StoreInvoiceConnection>;
|
|
2621
4180
|
storeOwnershipDetails?: Maybe<StoreOwnershipDetails>;
|
|
2622
4181
|
stores?: Maybe<StoreConnection>;
|
|
2623
4182
|
supplier?: Maybe<Supplier>;
|
|
2624
4183
|
suppliers?: Maybe<SupplierConnection>;
|
|
4184
|
+
tax?: Maybe<Tax>;
|
|
4185
|
+
taxes?: Maybe<TaxConnection>;
|
|
2625
4186
|
theme?: Maybe<Theme>;
|
|
2626
4187
|
themeFile?: Maybe<Scalars['String']['output']>;
|
|
2627
4188
|
themes?: Maybe<ThemeConnection>;
|
|
@@ -2889,6 +4450,19 @@ export type QueryBlogsArgs = {
|
|
|
2889
4450
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2890
4451
|
sortKey?: InputMaybe<BlogSortKeys>;
|
|
2891
4452
|
};
|
|
4453
|
+
export type QueryCartArgs = {
|
|
4454
|
+
cursor: Scalars['ID']['input'];
|
|
4455
|
+
};
|
|
4456
|
+
export type QueryCartsArgs = {
|
|
4457
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4458
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4459
|
+
filterKeys?: InputMaybe<CartFilterKeys>;
|
|
4460
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4461
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4462
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4463
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4464
|
+
sortKey?: InputMaybe<CartSortkeys>;
|
|
4465
|
+
};
|
|
2892
4466
|
export type QueryCollectionArgs = {
|
|
2893
4467
|
cursor: Scalars['ID']['input'];
|
|
2894
4468
|
};
|
|
@@ -2913,8 +4487,86 @@ export type QueryCollectionsArgs = {
|
|
|
2913
4487
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2914
4488
|
sortKey?: InputMaybe<CollectionSortKey>;
|
|
2915
4489
|
};
|
|
2916
|
-
export type
|
|
2917
|
-
|
|
4490
|
+
export type QueryCustomerArgs = {
|
|
4491
|
+
customer: Scalars['ID']['input'];
|
|
4492
|
+
};
|
|
4493
|
+
export type QueryCustomerAddressArgs = {
|
|
4494
|
+
cursor: Scalars['ID']['input'];
|
|
4495
|
+
};
|
|
4496
|
+
export type QueryCustomerAddressesArgs = {
|
|
4497
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4498
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4499
|
+
filterKeys?: InputMaybe<CustomerAddressFilterKeys>;
|
|
4500
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4501
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4502
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4503
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4504
|
+
sortKey?: InputMaybe<CustomerAddressSortkeys>;
|
|
4505
|
+
};
|
|
4506
|
+
export type QueryCustomerSegmentArgs = {
|
|
4507
|
+
cursor: Scalars['ID']['input'];
|
|
4508
|
+
};
|
|
4509
|
+
export type QueryCustomerSegmentsArgs = {
|
|
4510
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4511
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4512
|
+
filterKeys?: InputMaybe<CustomerSegmentFilterKeys>;
|
|
4513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4514
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4515
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4516
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4517
|
+
sortKey?: InputMaybe<CustomerSegmentSortkeys>;
|
|
4518
|
+
};
|
|
4519
|
+
export type QueryCustomersArgs = {
|
|
4520
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4521
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4522
|
+
filterKeys?: InputMaybe<CustomerFilterKeys>;
|
|
4523
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4524
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4525
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4526
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4527
|
+
sortKey?: InputMaybe<CustomerSortkeys>;
|
|
4528
|
+
};
|
|
4529
|
+
export type QueryDefaultThemeTemplatesArgs = {
|
|
4530
|
+
type: DefaultThemeTemplateType;
|
|
4531
|
+
};
|
|
4532
|
+
export type QueryDeliveryProfileArgs = {
|
|
4533
|
+
cursor: Scalars['ID']['input'];
|
|
4534
|
+
};
|
|
4535
|
+
export type QueryDeliveryProfilesArgs = {
|
|
4536
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4537
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4538
|
+
filterKeys?: InputMaybe<DeliveryProfileFilterKeys>;
|
|
4539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4540
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4541
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4542
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4543
|
+
sortKey?: InputMaybe<DeliveryProfileSortKeys>;
|
|
4544
|
+
};
|
|
4545
|
+
export type QueryDeliveryZoneArgs = {
|
|
4546
|
+
cursor: Scalars['ID']['input'];
|
|
4547
|
+
};
|
|
4548
|
+
export type QueryDeliveryZonesArgs = {
|
|
4549
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4550
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4551
|
+
filterKeys?: InputMaybe<DeliveryZoneFilterKeys>;
|
|
4552
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4553
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4554
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4555
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4556
|
+
sortKey?: InputMaybe<DeliveryZoneSortKeys>;
|
|
4557
|
+
};
|
|
4558
|
+
export type QueryDiscountArgs = {
|
|
4559
|
+
cursor: Scalars['ID']['input'];
|
|
4560
|
+
};
|
|
4561
|
+
export type QueryDiscountsArgs = {
|
|
4562
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4563
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4564
|
+
filterKeys?: InputMaybe<DiscountFilterKeys>;
|
|
4565
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4566
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4567
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4568
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4569
|
+
sortKey?: InputMaybe<DiscountSortKeys>;
|
|
2918
4570
|
};
|
|
2919
4571
|
export type QueryDomainArgs = {
|
|
2920
4572
|
cursor: Scalars['ID']['input'];
|
|
@@ -3033,6 +4685,45 @@ export type QueryMetafieldsArgs = {
|
|
|
3033
4685
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3034
4686
|
sortKey?: InputMaybe<MetafieldSortKeys>;
|
|
3035
4687
|
};
|
|
4688
|
+
export type QueryMetaobjectArgs = {
|
|
4689
|
+
cursor: Scalars['ID']['input'];
|
|
4690
|
+
};
|
|
4691
|
+
export type QueryMetaobjectEntriesArgs = {
|
|
4692
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4693
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4694
|
+
filterKeys?: InputMaybe<MetaobjectEntryFilterKeys>;
|
|
4695
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4696
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4697
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4698
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4699
|
+
sortKey?: InputMaybe<MetaobjectEntrySortKeys>;
|
|
4700
|
+
};
|
|
4701
|
+
export type QueryMetaobjectEntryArgs = {
|
|
4702
|
+
cursor: Scalars['ID']['input'];
|
|
4703
|
+
};
|
|
4704
|
+
export type QueryMetaobjectsArgs = {
|
|
4705
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4706
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4707
|
+
filterKeys?: InputMaybe<MetaobjectFilterKeys>;
|
|
4708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4709
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4710
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4711
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4712
|
+
sortKey?: InputMaybe<MetaobjectSortKeys>;
|
|
4713
|
+
};
|
|
4714
|
+
export type QueryPageArgs = {
|
|
4715
|
+
cursor: Scalars['ID']['input'];
|
|
4716
|
+
};
|
|
4717
|
+
export type QueryPagesArgs = {
|
|
4718
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4719
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4720
|
+
filterKeys?: InputMaybe<PageFilterKeys>;
|
|
4721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4722
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4723
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4724
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4725
|
+
sortKey?: InputMaybe<PageSortKeys>;
|
|
4726
|
+
};
|
|
3036
4727
|
export type QueryPaymentArgs = {
|
|
3037
4728
|
cursor: Scalars['ID']['input'];
|
|
3038
4729
|
};
|
|
@@ -3046,6 +4737,19 @@ export type QueryPaymentsArgs = {
|
|
|
3046
4737
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3047
4738
|
sortKey?: InputMaybe<PaymentSortKeys>;
|
|
3048
4739
|
};
|
|
4740
|
+
export type QueryPickupProfileArgs = {
|
|
4741
|
+
cursor: Scalars['ID']['input'];
|
|
4742
|
+
};
|
|
4743
|
+
export type QueryPickupProfilesArgs = {
|
|
4744
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4745
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4746
|
+
filterKeys?: InputMaybe<PickupProfileFilterKeys>;
|
|
4747
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4748
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4749
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4750
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4751
|
+
sortKey?: InputMaybe<PickupProfileSortKeys>;
|
|
4752
|
+
};
|
|
3049
4753
|
export type QueryPresetArgs = {
|
|
3050
4754
|
cursor: Scalars['ID']['input'];
|
|
3051
4755
|
};
|
|
@@ -3075,31 +4779,57 @@ export type QueryProductsArgs = {
|
|
|
3075
4779
|
export type QueryPublisherArgs = {
|
|
3076
4780
|
cursor: Scalars['ID']['input'];
|
|
3077
4781
|
};
|
|
3078
|
-
export type QueryPurchaseArgs = {
|
|
4782
|
+
export type QueryPurchaseArgs = {
|
|
4783
|
+
cursor: Scalars['ID']['input'];
|
|
4784
|
+
};
|
|
4785
|
+
export type QueryPurchasesArgs = {
|
|
4786
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4787
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4788
|
+
filterKeys?: InputMaybe<PurchaseFilterKeys>;
|
|
4789
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4790
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4791
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4792
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4793
|
+
sortKey?: InputMaybe<PurchaseSortKeys>;
|
|
4794
|
+
};
|
|
4795
|
+
export type QueryRedirectArgs = {
|
|
4796
|
+
cursor: Scalars['ID']['input'];
|
|
4797
|
+
};
|
|
4798
|
+
export type QueryRedirectsArgs = {
|
|
4799
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4800
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4801
|
+
filterKeys?: InputMaybe<RedirectFilterKeys>;
|
|
4802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4803
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4804
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4805
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4806
|
+
sortKey?: InputMaybe<RedirectSortKeys>;
|
|
4807
|
+
};
|
|
4808
|
+
export type QueryShippingProfileArgs = {
|
|
3079
4809
|
cursor: Scalars['ID']['input'];
|
|
3080
4810
|
};
|
|
3081
|
-
export type
|
|
4811
|
+
export type QueryShippingProfilesArgs = {
|
|
3082
4812
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
3083
4813
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
3084
|
-
filterKeys?: InputMaybe<
|
|
4814
|
+
filterKeys?: InputMaybe<ShippingProfileFilterKeys>;
|
|
3085
4815
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3086
4816
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3087
4817
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
3088
4818
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3089
|
-
sortKey?: InputMaybe<
|
|
4819
|
+
sortKey?: InputMaybe<ShippingProfileSortKeys>;
|
|
3090
4820
|
};
|
|
3091
|
-
export type
|
|
4821
|
+
export type QueryShippingZoneArgs = {
|
|
3092
4822
|
cursor: Scalars['ID']['input'];
|
|
3093
4823
|
};
|
|
3094
|
-
export type
|
|
4824
|
+
export type QueryShippingZonesArgs = {
|
|
3095
4825
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
3096
4826
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
3097
|
-
filterKeys?: InputMaybe<
|
|
4827
|
+
filterKeys?: InputMaybe<ShippingZoneFilterKeys>;
|
|
3098
4828
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3099
4829
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3100
4830
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
3101
4831
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3102
|
-
sortKey?: InputMaybe<
|
|
4832
|
+
sortKey?: InputMaybe<ShippingZoneSortKeys>;
|
|
3103
4833
|
};
|
|
3104
4834
|
export type QueryStaffArgs = {
|
|
3105
4835
|
cursor: Scalars['ID']['input'];
|
|
@@ -3117,6 +4847,19 @@ export type QueryStaffsArgs = {
|
|
|
3117
4847
|
export type QueryStoreInvitationDetailsArgs = {
|
|
3118
4848
|
token: Scalars['String']['input'];
|
|
3119
4849
|
};
|
|
4850
|
+
export type QueryStoreInvoiceArgs = {
|
|
4851
|
+
cursor: Scalars['ID']['input'];
|
|
4852
|
+
};
|
|
4853
|
+
export type QueryStoreInvoicesArgs = {
|
|
4854
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4855
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4856
|
+
filterKeys?: InputMaybe<StoreInvoiceFilterKeys>;
|
|
4857
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4858
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4859
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4860
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4861
|
+
sortKey?: InputMaybe<StoreInvoiceSortKeys>;
|
|
4862
|
+
};
|
|
3120
4863
|
export type QueryStoreOwnershipDetailsArgs = {
|
|
3121
4864
|
token: Scalars['String']['input'];
|
|
3122
4865
|
};
|
|
@@ -3143,6 +4886,19 @@ export type QuerySuppliersArgs = {
|
|
|
3143
4886
|
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3144
4887
|
sortKey?: InputMaybe<SupplierSortKeys>;
|
|
3145
4888
|
};
|
|
4889
|
+
export type QueryTaxArgs = {
|
|
4890
|
+
cursor: Scalars['ID']['input'];
|
|
4891
|
+
};
|
|
4892
|
+
export type QueryTaxesArgs = {
|
|
4893
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4894
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4895
|
+
filterKeys?: InputMaybe<TaxFilterKeys>;
|
|
4896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4897
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4898
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
4899
|
+
reverse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4900
|
+
sortKey?: InputMaybe<TaxSortKeys>;
|
|
4901
|
+
};
|
|
3146
4902
|
export type QueryThemeArgs = {
|
|
3147
4903
|
cursor: Scalars['ID']['input'];
|
|
3148
4904
|
};
|
|
@@ -3256,6 +5012,22 @@ export declare enum RedirectSortKeys {
|
|
|
3256
5012
|
to = "to",
|
|
3257
5013
|
updatedAt = "updatedAt"
|
|
3258
5014
|
}
|
|
5015
|
+
export type RegionalTax = {
|
|
5016
|
+
__typename: 'RegionalTax';
|
|
5017
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5018
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5019
|
+
rate?: Maybe<Scalars['Float']['output']>;
|
|
5020
|
+
region?: Maybe<_Region>;
|
|
5021
|
+
};
|
|
5022
|
+
export type RegionalTaxInput = {
|
|
5023
|
+
cursor: Scalars['ID']['input'];
|
|
5024
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5025
|
+
rate?: InputMaybe<Scalars['Float']['input']>;
|
|
5026
|
+
};
|
|
5027
|
+
export type RequestStoreInvoiceRefund = {
|
|
5028
|
+
cursor: Scalars['ID']['input'];
|
|
5029
|
+
refund_reason: Scalars['String']['input'];
|
|
5030
|
+
};
|
|
3259
5031
|
export type Session = {
|
|
3260
5032
|
__typename: 'Session';
|
|
3261
5033
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3269,6 +5041,107 @@ export type Session = {
|
|
|
3269
5041
|
subdivision?: Maybe<Scalars['String']['output']>;
|
|
3270
5042
|
time?: Maybe<Scalars['String']['output']>;
|
|
3271
5043
|
};
|
|
5044
|
+
export type ShippingProfile = {
|
|
5045
|
+
__typename: 'ShippingProfile';
|
|
5046
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5047
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
5048
|
+
is_default?: Maybe<Scalars['Boolean']['output']>;
|
|
5049
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5050
|
+
origins?: Maybe<Array<Maybe<Location>>>;
|
|
5051
|
+
store?: Maybe<Store>;
|
|
5052
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
5053
|
+
};
|
|
5054
|
+
export type ShippingProfileConnection = {
|
|
5055
|
+
__typename: 'ShippingProfileConnection';
|
|
5056
|
+
edges?: Maybe<Array<Maybe<ShippingProfileEdge>>>;
|
|
5057
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5058
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5059
|
+
};
|
|
5060
|
+
export type ShippingProfileEdge = {
|
|
5061
|
+
__typename: 'ShippingProfileEdge';
|
|
5062
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
5063
|
+
node?: Maybe<ShippingProfile>;
|
|
5064
|
+
};
|
|
5065
|
+
export type ShippingProfileFilterKeys = {
|
|
5066
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5067
|
+
is_default?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
5068
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5069
|
+
origins?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5070
|
+
};
|
|
5071
|
+
export declare enum ShippingProfileSortKeys {
|
|
5072
|
+
_id = "_id",
|
|
5073
|
+
createdAt = "createdAt",
|
|
5074
|
+
is_default = "is_default",
|
|
5075
|
+
name = "name",
|
|
5076
|
+
updatedAt = "updatedAt"
|
|
5077
|
+
}
|
|
5078
|
+
export type ShippingZone = {
|
|
5079
|
+
__typename: 'ShippingZone';
|
|
5080
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5081
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
5082
|
+
locations?: Maybe<Array<Maybe<ShippingZoneLocation>>>;
|
|
5083
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5084
|
+
profile?: Maybe<ShippingProfile>;
|
|
5085
|
+
rates?: Maybe<Array<Maybe<ShippingZoneRate>>>;
|
|
5086
|
+
store?: Maybe<Store>;
|
|
5087
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
5088
|
+
};
|
|
5089
|
+
export type ShippingZoneConnection = {
|
|
5090
|
+
__typename: 'ShippingZoneConnection';
|
|
5091
|
+
edges?: Maybe<Array<Maybe<ShippingZoneEdge>>>;
|
|
5092
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5093
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5094
|
+
};
|
|
5095
|
+
export type ShippingZoneEdge = {
|
|
5096
|
+
__typename: 'ShippingZoneEdge';
|
|
5097
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
5098
|
+
node?: Maybe<ShippingZone>;
|
|
5099
|
+
};
|
|
5100
|
+
export type ShippingZoneFilterKeys = {
|
|
5101
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5102
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5103
|
+
profiles?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5104
|
+
};
|
|
5105
|
+
export type ShippingZoneLocation = {
|
|
5106
|
+
__typename: 'ShippingZoneLocation';
|
|
5107
|
+
country?: Maybe<_Country>;
|
|
5108
|
+
regions?: Maybe<Array<Maybe<_Region>>>;
|
|
5109
|
+
};
|
|
5110
|
+
export type ShippingZoneLocationInput = {
|
|
5111
|
+
country: Scalars['ID']['input'];
|
|
5112
|
+
regions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5113
|
+
};
|
|
5114
|
+
export type ShippingZoneRate = {
|
|
5115
|
+
__typename: 'ShippingZoneRate';
|
|
5116
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5117
|
+
condition_type?: Maybe<ShippingZoneRateConditionType>;
|
|
5118
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5119
|
+
is_conditional?: Maybe<Scalars['Boolean']['output']>;
|
|
5120
|
+
max_unit?: Maybe<Scalars['Float']['output']>;
|
|
5121
|
+
min_unit?: Maybe<Scalars['Float']['output']>;
|
|
5122
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5123
|
+
price?: Maybe<Scalars['Float']['output']>;
|
|
5124
|
+
};
|
|
5125
|
+
export declare enum ShippingZoneRateConditionType {
|
|
5126
|
+
price = "price",
|
|
5127
|
+
weight = "weight"
|
|
5128
|
+
}
|
|
5129
|
+
export type ShippingZoneRateInput = {
|
|
5130
|
+
condition_type?: InputMaybe<ShippingZoneRateConditionType>;
|
|
5131
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5132
|
+
is_conditional: Scalars['Boolean']['input'];
|
|
5133
|
+
max_unit?: InputMaybe<Scalars['Float']['input']>;
|
|
5134
|
+
min_unit?: InputMaybe<Scalars['Float']['input']>;
|
|
5135
|
+
name: Scalars['String']['input'];
|
|
5136
|
+
price: Scalars['Float']['input'];
|
|
5137
|
+
};
|
|
5138
|
+
export declare enum ShippingZoneSortKeys {
|
|
5139
|
+
_id = "_id",
|
|
5140
|
+
createdAt = "createdAt",
|
|
5141
|
+
name = "name",
|
|
5142
|
+
profile = "profile",
|
|
5143
|
+
updatedAt = "updatedAt"
|
|
5144
|
+
}
|
|
3272
5145
|
export type Shop = {
|
|
3273
5146
|
__typename: 'Shop';
|
|
3274
5147
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -3365,6 +5238,81 @@ export type StoreInvitationDetails = {
|
|
|
3365
5238
|
permissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3366
5239
|
store?: Maybe<Store>;
|
|
3367
5240
|
};
|
|
5241
|
+
export type StoreInvoice = {
|
|
5242
|
+
__typename: 'StoreInvoice';
|
|
5243
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5244
|
+
beneficiary?: Maybe<StoreInvoiceBeneficiary>;
|
|
5245
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
5246
|
+
line_items?: Maybe<Array<Maybe<StoreInvoiceLineitem>>>;
|
|
5247
|
+
payable?: Maybe<Scalars['Float']['output']>;
|
|
5248
|
+
payment_completed_at?: Maybe<Scalars['String']['output']>;
|
|
5249
|
+
payment_ref_id?: Maybe<Scalars['String']['output']>;
|
|
5250
|
+
payment_status?: Maybe<StoreInvoicePaymentStatus>;
|
|
5251
|
+
payment_transaction_id?: Maybe<Scalars['String']['output']>;
|
|
5252
|
+
publisher?: Maybe<Publisher>;
|
|
5253
|
+
refund_completed_at?: Maybe<Scalars['String']['output']>;
|
|
5254
|
+
refund_reason?: Maybe<Scalars['String']['output']>;
|
|
5255
|
+
refund_ref_id?: Maybe<Scalars['String']['output']>;
|
|
5256
|
+
refund_status?: Maybe<StoreInvoiceRefundStatus>;
|
|
5257
|
+
refund_transaction_id?: Maybe<Scalars['String']['output']>;
|
|
5258
|
+
store?: Maybe<Store>;
|
|
5259
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
5260
|
+
};
|
|
5261
|
+
export declare enum StoreInvoiceBeneficiary {
|
|
5262
|
+
publisher = "publisher",
|
|
5263
|
+
soppiya = "soppiya"
|
|
5264
|
+
}
|
|
5265
|
+
export type StoreInvoiceConnection = {
|
|
5266
|
+
__typename: 'StoreInvoiceConnection';
|
|
5267
|
+
edges?: Maybe<Array<Maybe<StoreInvoiceEdge>>>;
|
|
5268
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5269
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5270
|
+
};
|
|
5271
|
+
export type StoreInvoiceEdge = {
|
|
5272
|
+
__typename: 'StoreInvoiceEdge';
|
|
5273
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
5274
|
+
node?: Maybe<StoreInvoice>;
|
|
5275
|
+
};
|
|
5276
|
+
export type StoreInvoiceFilterKeys = {
|
|
5277
|
+
beneficiaries?: InputMaybe<Array<StoreInvoiceBeneficiary>>;
|
|
5278
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5279
|
+
payment_statuses?: InputMaybe<Array<StoreInvoicePaymentStatus>>;
|
|
5280
|
+
refund_statuses?: InputMaybe<Array<StoreInvoiceRefundStatus>>;
|
|
5281
|
+
};
|
|
5282
|
+
export type StoreInvoiceLineitem = {
|
|
5283
|
+
__typename: 'StoreInvoiceLineitem';
|
|
5284
|
+
price?: Maybe<Scalars['Float']['output']>;
|
|
5285
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
5286
|
+
};
|
|
5287
|
+
export declare enum StoreInvoicePaymentStatus {
|
|
5288
|
+
paid = "paid",
|
|
5289
|
+
pending = "pending",
|
|
5290
|
+
refunded = "refunded"
|
|
5291
|
+
}
|
|
5292
|
+
export declare enum StoreInvoiceRefundStatus {
|
|
5293
|
+
appealed = "appealed",
|
|
5294
|
+
approved = "approved",
|
|
5295
|
+
none = "none",
|
|
5296
|
+
rejected = "rejected",
|
|
5297
|
+
requested = "requested",
|
|
5298
|
+
under_review = "under_review"
|
|
5299
|
+
}
|
|
5300
|
+
export declare enum StoreInvoiceSortKeys {
|
|
5301
|
+
_id = "_id",
|
|
5302
|
+
beneficiary = "beneficiary",
|
|
5303
|
+
createdAt = "createdAt",
|
|
5304
|
+
payable = "payable",
|
|
5305
|
+
payment_completed_at = "payment_completed_at",
|
|
5306
|
+
payment_ref_id = "payment_ref_id",
|
|
5307
|
+
payment_status = "payment_status",
|
|
5308
|
+
payment_transaction_id = "payment_transaction_id",
|
|
5309
|
+
publisher = "publisher",
|
|
5310
|
+
refund_completed_at = "refund_completed_at",
|
|
5311
|
+
refund_ref_id = "refund_ref_id",
|
|
5312
|
+
refund_status = "refund_status",
|
|
5313
|
+
refund_transaction_id = "refund_transaction_id",
|
|
5314
|
+
updatedAt = "updatedAt"
|
|
5315
|
+
}
|
|
3368
5316
|
export declare enum StoreLengthUnit {
|
|
3369
5317
|
ft = "ft",
|
|
3370
5318
|
m = "m"
|
|
@@ -3440,6 +5388,66 @@ export type SuppliertEdge = {
|
|
|
3440
5388
|
cursor?: Maybe<Scalars['ID']['output']>;
|
|
3441
5389
|
node?: Maybe<Supplier>;
|
|
3442
5390
|
};
|
|
5391
|
+
export type Tax = {
|
|
5392
|
+
__typename: 'Tax';
|
|
5393
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5394
|
+
country?: Maybe<_Country>;
|
|
5395
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
5396
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5397
|
+
overrides?: Maybe<Array<Maybe<TaxOverride>>>;
|
|
5398
|
+
rate?: Maybe<Scalars['Float']['output']>;
|
|
5399
|
+
regional_taxes?: Maybe<Array<Maybe<RegionalTax>>>;
|
|
5400
|
+
store?: Maybe<Store>;
|
|
5401
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
5402
|
+
};
|
|
5403
|
+
export type TaxConnection = {
|
|
5404
|
+
__typename: 'TaxConnection';
|
|
5405
|
+
edges?: Maybe<Array<Maybe<TaxEdge>>>;
|
|
5406
|
+
pageInfo?: Maybe<PageInfo>;
|
|
5407
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5408
|
+
};
|
|
5409
|
+
export type TaxEdge = {
|
|
5410
|
+
__typename: 'TaxEdge';
|
|
5411
|
+
cursor?: Maybe<Scalars['ID']['output']>;
|
|
5412
|
+
node?: Maybe<Tax>;
|
|
5413
|
+
};
|
|
5414
|
+
export type TaxFilterKeys = {
|
|
5415
|
+
countries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5416
|
+
cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5417
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5418
|
+
};
|
|
5419
|
+
export type TaxOverride = {
|
|
5420
|
+
__typename: 'TaxOverride';
|
|
5421
|
+
_id?: Maybe<Scalars['ID']['output']>;
|
|
5422
|
+
collection?: Maybe<Collection>;
|
|
5423
|
+
level?: Maybe<TaxOverrideLevel>;
|
|
5424
|
+
rate?: Maybe<Scalars['Float']['output']>;
|
|
5425
|
+
region?: Maybe<_Region>;
|
|
5426
|
+
type?: Maybe<TaxOverrideType>;
|
|
5427
|
+
};
|
|
5428
|
+
export type TaxOverrideInput = {
|
|
5429
|
+
collection?: InputMaybe<Scalars['ID']['input']>;
|
|
5430
|
+
level: TaxOverrideLevel;
|
|
5431
|
+
rate: Scalars['Float']['input'];
|
|
5432
|
+
region?: InputMaybe<Scalars['ID']['input']>;
|
|
5433
|
+
type: TaxOverrideType;
|
|
5434
|
+
};
|
|
5435
|
+
export declare enum TaxOverrideLevel {
|
|
5436
|
+
country = "country",
|
|
5437
|
+
region = "region"
|
|
5438
|
+
}
|
|
5439
|
+
export declare enum TaxOverrideType {
|
|
5440
|
+
collection = "collection",
|
|
5441
|
+
shipping = "shipping"
|
|
5442
|
+
}
|
|
5443
|
+
export declare enum TaxSortKeys {
|
|
5444
|
+
_id = "_id",
|
|
5445
|
+
country = "country",
|
|
5446
|
+
createdAt = "createdAt",
|
|
5447
|
+
name = "name",
|
|
5448
|
+
rate = "rate",
|
|
5449
|
+
updatedAt = "updatedAt"
|
|
5450
|
+
}
|
|
3443
5451
|
export type Theme = {
|
|
3444
5452
|
__typename: 'Theme';
|
|
3445
5453
|
_id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4504,6 +6512,102 @@ export declare enum EditThemeTemplateType {
|
|
|
4504
6512
|
permanent = "permanent",
|
|
4505
6513
|
temporary = "temporary"
|
|
4506
6514
|
}
|
|
6515
|
+
export type ArticlesQueryVariables = Exact<{
|
|
6516
|
+
filterKeys?: InputMaybe<ArticleFilterKeys>;
|
|
6517
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
6518
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
6519
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6520
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6521
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6522
|
+
}>;
|
|
6523
|
+
export type ArticlesQuery = {
|
|
6524
|
+
articles?: {
|
|
6525
|
+
__typename: 'ArticleConnection';
|
|
6526
|
+
edges?: Array<{
|
|
6527
|
+
__typename: 'ArticleEdge';
|
|
6528
|
+
node?: {
|
|
6529
|
+
__typename: 'Article';
|
|
6530
|
+
_id?: string | null;
|
|
6531
|
+
title?: string | null;
|
|
6532
|
+
image?: {
|
|
6533
|
+
__typename: 'Media';
|
|
6534
|
+
_id?: string | null;
|
|
6535
|
+
url?: string | null;
|
|
6536
|
+
} | null;
|
|
6537
|
+
} | null;
|
|
6538
|
+
} | null> | null;
|
|
6539
|
+
pageInfo?: {
|
|
6540
|
+
__typename: 'PageInfo';
|
|
6541
|
+
endCursor?: string | null;
|
|
6542
|
+
hasNextPage?: boolean | null;
|
|
6543
|
+
hasPreviousPage?: boolean | null;
|
|
6544
|
+
startCursor?: string | null;
|
|
6545
|
+
} | null;
|
|
6546
|
+
} | null;
|
|
6547
|
+
};
|
|
6548
|
+
export type BlogsQueryVariables = Exact<{
|
|
6549
|
+
filterKeys?: InputMaybe<BlogFilterKeys>;
|
|
6550
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
6551
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
6552
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6553
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6554
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6555
|
+
}>;
|
|
6556
|
+
export type BlogsQuery = {
|
|
6557
|
+
blogs?: {
|
|
6558
|
+
__typename: 'BlogConnection';
|
|
6559
|
+
pageInfo?: {
|
|
6560
|
+
__typename: 'PageInfo';
|
|
6561
|
+
endCursor?: string | null;
|
|
6562
|
+
hasNextPage?: boolean | null;
|
|
6563
|
+
hasPreviousPage?: boolean | null;
|
|
6564
|
+
startCursor?: string | null;
|
|
6565
|
+
} | null;
|
|
6566
|
+
edges?: Array<{
|
|
6567
|
+
__typename: 'BlogEdge';
|
|
6568
|
+
node?: {
|
|
6569
|
+
__typename: 'Blog';
|
|
6570
|
+
_id?: string | null;
|
|
6571
|
+
title?: string | null;
|
|
6572
|
+
image?: {
|
|
6573
|
+
__typename: 'Media';
|
|
6574
|
+
_id?: string | null;
|
|
6575
|
+
url?: string | null;
|
|
6576
|
+
} | null;
|
|
6577
|
+
} | null;
|
|
6578
|
+
} | null> | null;
|
|
6579
|
+
} | null;
|
|
6580
|
+
};
|
|
6581
|
+
export type CollectionsQueryVariables = Exact<{
|
|
6582
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
6583
|
+
filterKeys?: InputMaybe<CollectionFilterKeys>;
|
|
6584
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6585
|
+
}>;
|
|
6586
|
+
export type CollectionsQuery = {
|
|
6587
|
+
collections?: {
|
|
6588
|
+
__typename: 'CollectionConnection';
|
|
6589
|
+
edges?: Array<{
|
|
6590
|
+
__typename: 'CollectionEdge';
|
|
6591
|
+
node?: {
|
|
6592
|
+
__typename: 'Collection';
|
|
6593
|
+
_id?: string | null;
|
|
6594
|
+
title?: string | null;
|
|
6595
|
+
image?: {
|
|
6596
|
+
__typename: 'Media';
|
|
6597
|
+
_id?: string | null;
|
|
6598
|
+
url?: string | null;
|
|
6599
|
+
} | null;
|
|
6600
|
+
} | null;
|
|
6601
|
+
} | null> | null;
|
|
6602
|
+
pageInfo?: {
|
|
6603
|
+
__typename: 'PageInfo';
|
|
6604
|
+
endCursor?: string | null;
|
|
6605
|
+
hasNextPage?: boolean | null;
|
|
6606
|
+
hasPreviousPage?: boolean | null;
|
|
6607
|
+
startCursor?: string | null;
|
|
6608
|
+
} | null;
|
|
6609
|
+
} | null;
|
|
6610
|
+
};
|
|
4507
6611
|
export type MediasQueryVariables = Exact<{
|
|
4508
6612
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4509
6613
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4579,12 +6683,65 @@ export type DeleteMediasMutation = {
|
|
|
4579
6683
|
message?: string | null;
|
|
4580
6684
|
} | null;
|
|
4581
6685
|
};
|
|
6686
|
+
export type MetafieldsQueryVariables = Exact<{
|
|
6687
|
+
filterKeys?: InputMaybe<MetafieldFilterKeys>;
|
|
6688
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6689
|
+
}>;
|
|
6690
|
+
export type MetafieldsQuery = {
|
|
6691
|
+
metafields?: {
|
|
6692
|
+
__typename: 'MetafieldConnection';
|
|
6693
|
+
edges?: Array<{
|
|
6694
|
+
__typename: 'MetafieldEdge';
|
|
6695
|
+
node?: {
|
|
6696
|
+
__typename: 'Metafield';
|
|
6697
|
+
_id?: string | null;
|
|
6698
|
+
entry?: MetafieldEntryType | null;
|
|
6699
|
+
name?: string | null;
|
|
6700
|
+
type?: MetafieldType | null;
|
|
6701
|
+
} | null;
|
|
6702
|
+
} | null> | null;
|
|
6703
|
+
} | null;
|
|
6704
|
+
};
|
|
6705
|
+
export type ProductsQueryVariables = Exact<{
|
|
6706
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
6707
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
6708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6709
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6710
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6711
|
+
filterKeys?: InputMaybe<ProductFilterKeys>;
|
|
6712
|
+
}>;
|
|
6713
|
+
export type ProductsQuery = {
|
|
6714
|
+
products?: {
|
|
6715
|
+
__typename: 'ProductConnection';
|
|
6716
|
+
pageInfo?: {
|
|
6717
|
+
__typename: 'PageInfo';
|
|
6718
|
+
endCursor?: string | null;
|
|
6719
|
+
hasNextPage?: boolean | null;
|
|
6720
|
+
hasPreviousPage?: boolean | null;
|
|
6721
|
+
startCursor?: string | null;
|
|
6722
|
+
} | null;
|
|
6723
|
+
edges?: Array<{
|
|
6724
|
+
__typename: 'ProductEdge';
|
|
6725
|
+
node?: {
|
|
6726
|
+
__typename: 'Product';
|
|
6727
|
+
_id?: string | null;
|
|
6728
|
+
title?: string | null;
|
|
6729
|
+
image?: {
|
|
6730
|
+
__typename: 'Media';
|
|
6731
|
+
_id?: string | null;
|
|
6732
|
+
url?: string | null;
|
|
6733
|
+
} | null;
|
|
6734
|
+
} | null;
|
|
6735
|
+
} | null> | null;
|
|
6736
|
+
} | null;
|
|
6737
|
+
};
|
|
4582
6738
|
export type VariantsQueryVariables = Exact<{
|
|
4583
6739
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4584
6740
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
4585
6741
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4586
6742
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4587
6743
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
6744
|
+
filterKeys?: InputMaybe<VariantFilterKeys>;
|
|
4588
6745
|
}>;
|
|
4589
6746
|
export type VariantsQuery = {
|
|
4590
6747
|
variants?: {
|
|
@@ -4618,9 +6775,14 @@ export type VariantsQuery = {
|
|
|
4618
6775
|
} | null> | null;
|
|
4619
6776
|
} | null;
|
|
4620
6777
|
};
|
|
6778
|
+
export declare const ArticlesDocument: DocumentNode<ArticlesQuery, ArticlesQueryVariables>;
|
|
6779
|
+
export declare const BlogsDocument: DocumentNode<BlogsQuery, BlogsQueryVariables>;
|
|
6780
|
+
export declare const CollectionsDocument: DocumentNode<CollectionsQuery, CollectionsQueryVariables>;
|
|
4621
6781
|
export declare const MediasDocument: DocumentNode<MediasQuery, MediasQueryVariables>;
|
|
4622
6782
|
export declare const StoragePlanDocument: DocumentNode<StoragePlanQuery, StoragePlanQueryVariables>;
|
|
4623
6783
|
export declare const MediaUsageDocument: DocumentNode<MediaUsageQuery, MediaUsageQueryVariables>;
|
|
4624
6784
|
export declare const AddMediasDocument: DocumentNode<AddMediasMutation, AddMediasMutationVariables>;
|
|
4625
6785
|
export declare const DeleteMediasDocument: DocumentNode<DeleteMediasMutation, DeleteMediasMutationVariables>;
|
|
6786
|
+
export declare const MetafieldsDocument: DocumentNode<MetafieldsQuery, MetafieldsQueryVariables>;
|
|
6787
|
+
export declare const ProductsDocument: DocumentNode<ProductsQuery, ProductsQueryVariables>;
|
|
4626
6788
|
export declare const VariantsDocument: DocumentNode<VariantsQuery, VariantsQueryVariables>;
|