-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.d.ts
5586 lines (5235 loc) · 189 KB
/
schema.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export type Maybe<T> = T | null
export type Exact<T extends { [key: string]: unknown }> = {
[K in keyof T]: T[K]
}
export type MakeOptional<T, K extends keyof T> = Omit<T, K> &
{ [SubKey in K]?: Maybe<T[SubKey]> }
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> &
{ [SubKey in K]: Maybe<T[SubKey]> }
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string
String: string
Boolean: boolean
Int: number
Float: number
/** An ISO-8601 encoded UTC date time string. Example value: `"2019-07-03T20:47:55Z"`. */
DateTime: any
/** A signed decimal number, which supports arbitrary precision and is serialized as a string. Example value: `"29.99"`. */
Decimal: any
/** A string containing HTML code. Example value: `"<p>Grey cotton knit sweater.</p>"`. */
HTML: any
/** A monetary value string. Example value: `"100.57"`. */
Money: any
/**
* An RFC 3986 and RFC 3987 compliant URI string.
*
* Example value: `"https://johns-apparel.myshopify.com"`.
*
*/
URL: any
}
/** A version of the API. */
export type ApiVersion = {
__typename?: 'ApiVersion'
/** The human-readable name of the version. */
displayName: Scalars['String']
/** The unique identifier of an ApiVersion. All supported API versions have a date-based (YYYY-MM) or `unstable` handle. */
handle: Scalars['String']
/** Whether the version is actively supported by Shopify. Supported API versions are guaranteed to be stable. Unsupported API versions include unstable, release candidate, and end-of-life versions that are marked as unsupported. For more information, refer to [Versioning](https://shopify.dev/concepts/about-apis/versioning). */
supported: Scalars['Boolean']
}
/** Details about the gift card used on the checkout. */
export type AppliedGiftCard = Node & {
__typename?: 'AppliedGiftCard'
/**
* The amount that was taken from the gift card by applying it.
* @deprecated Use `amountUsedV2` instead
*/
amountUsed: Scalars['Money']
/** The amount that was taken from the gift card by applying it. */
amountUsedV2: MoneyV2
/**
* The amount left on the gift card.
* @deprecated Use `balanceV2` instead
*/
balance: Scalars['Money']
/** The amount left on the gift card. */
balanceV2: MoneyV2
/** Globally unique identifier. */
id: Scalars['ID']
/** The last characters of the gift card. */
lastCharacters: Scalars['String']
/** The amount that was applied to the checkout in its currency. */
presentmentAmountUsed: MoneyV2
}
/** An article in an online store blog. */
export type Article = Node & {
__typename?: 'Article'
/**
* The article's author.
* @deprecated Use `authorV2` instead
*/
author: ArticleAuthor
/** The article's author. */
authorV2?: Maybe<ArticleAuthor>
/** The blog that the article belongs to. */
blog: Blog
/** List of comments posted on the article. */
comments: CommentConnection
/** Stripped content of the article, single line with HTML tags removed. */
content: Scalars['String']
/** The content of the article, complete with HTML formatting. */
contentHtml: Scalars['HTML']
/** Stripped excerpt of the article, single line with HTML tags removed. */
excerpt?: Maybe<Scalars['String']>
/** The excerpt of the article, complete with HTML formatting. */
excerptHtml?: Maybe<Scalars['HTML']>
/** A human-friendly unique string for the Article automatically generated from its title. */
handle: Scalars['String']
/** Globally unique identifier. */
id: Scalars['ID']
/** The image associated with the article. */
image?: Maybe<Image>
/** The date and time when the article was published. */
publishedAt: Scalars['DateTime']
/** The article’s SEO information. */
seo?: Maybe<Seo>
/** A categorization that a article can be tagged with. */
tags: Array<Scalars['String']>
/** The article’s name. */
title: Scalars['String']
/** The url pointing to the article accessible from the web. */
url: Scalars['URL']
}
/** An article in an online store blog. */
export type ArticleCommentsArgs = {
first?: Maybe<Scalars['Int']>
after?: Maybe<Scalars['String']>
last?: Maybe<Scalars['Int']>
before?: Maybe<Scalars['String']>
reverse?: Maybe<Scalars['Boolean']>
}
/** An article in an online store blog. */
export type ArticleContentArgs = {
truncateAt?: Maybe<Scalars['Int']>
}
/** An article in an online store blog. */
export type ArticleExcerptArgs = {
truncateAt?: Maybe<Scalars['Int']>
}
/** An article in an online store blog. */
export type ArticleImageArgs = {
maxWidth?: Maybe<Scalars['Int']>
maxHeight?: Maybe<Scalars['Int']>
crop?: Maybe<CropRegion>
scale?: Maybe<Scalars['Int']>
}
/** The author of an article. */
export type ArticleAuthor = {
__typename?: 'ArticleAuthor'
/** The author's bio. */
bio?: Maybe<Scalars['String']>
/** The author’s email. */
email: Scalars['String']
/** The author's first name. */
firstName: Scalars['String']
/** The author's last name. */
lastName: Scalars['String']
/** The author's full name. */
name: Scalars['String']
}
/** An auto-generated type for paginating through multiple Articles. */
export type ArticleConnection = {
__typename?: 'ArticleConnection'
/** A list of edges. */
edges: Array<ArticleEdge>
/** Information to aid in pagination. */
pageInfo: PageInfo
}
/** An auto-generated type which holds one Article and a cursor during pagination. */
export type ArticleEdge = {
__typename?: 'ArticleEdge'
/** A cursor for use in pagination. */
cursor: Scalars['String']
/** The item at the end of ArticleEdge. */
node: Article
}
/** The set of valid sort keys for the Article query. */
export enum ArticleSortKeys {
/** Sort by the `title` value. */
Title = 'TITLE',
/** Sort by the `blog_title` value. */
BlogTitle = 'BLOG_TITLE',
/** Sort by the `author` value. */
Author = 'AUTHOR',
/** Sort by the `updated_at` value. */
UpdatedAt = 'UPDATED_AT',
/** Sort by the `published_at` value. */
PublishedAt = 'PUBLISHED_AT',
/** Sort by the `id` value. */
Id = 'ID',
/**
* During a search (i.e. when the `query` parameter has been specified on the connection) this sorts the
* results by relevance to the search term(s). When no search query is specified, this sort key is not
* deterministic and should not be used.
*/
Relevance = 'RELEVANCE',
}
/** Represents a generic custom attribute. */
export type Attribute = {
__typename?: 'Attribute'
/** Key or name of the attribute. */
key: Scalars['String']
/** Value of the attribute. */
value?: Maybe<Scalars['String']>
}
/** Specifies the input fields required for an attribute. */
export type AttributeInput = {
/** Key or name of the attribute. */
key: Scalars['String']
/** Value of the attribute. */
value: Scalars['String']
}
/** Automatic discount applications capture the intentions of a discount that was automatically applied. */
export type AutomaticDiscountApplication = DiscountApplication & {
__typename?: 'AutomaticDiscountApplication'
/** The method by which the discount's value is allocated to its entitled items. */
allocationMethod: DiscountApplicationAllocationMethod
/** Which lines of targetType that the discount is allocated over. */
targetSelection: DiscountApplicationTargetSelection
/** The type of line that the discount is applicable towards. */
targetType: DiscountApplicationTargetType
/** The title of the application. */
title: Scalars['String']
/** The value of the discount application. */
value: PricingValue
}
/** A collection of available shipping rates for a checkout. */
export type AvailableShippingRates = {
__typename?: 'AvailableShippingRates'
/**
* Whether or not the shipping rates are ready.
* The `shippingRates` field is `null` when this value is `false`.
* This field should be polled until its value becomes `true`.
*/
ready: Scalars['Boolean']
/** The fetched shipping rates. `null` until the `ready` field is `true`. */
shippingRates?: Maybe<Array<ShippingRate>>
}
/** An online store blog. */
export type Blog = Node & {
__typename?: 'Blog'
/** Find an article by its handle. */
articleByHandle?: Maybe<Article>
/** List of the blog's articles. */
articles: ArticleConnection
/** The authors who have contributed to the blog. */
authors: Array<ArticleAuthor>
/** A human-friendly unique string for the Blog automatically generated from its title. */
handle: Scalars['String']
/** Globally unique identifier. */
id: Scalars['ID']
/** The blog's SEO information. */
seo?: Maybe<Seo>
/** The blogs’s title. */
title: Scalars['String']
/** The url pointing to the blog accessible from the web. */
url: Scalars['URL']
}
/** An online store blog. */
export type BlogArticleByHandleArgs = {
handle: Scalars['String']
}
/** An online store blog. */
export type BlogArticlesArgs = {
first?: Maybe<Scalars['Int']>
after?: Maybe<Scalars['String']>
last?: Maybe<Scalars['Int']>
before?: Maybe<Scalars['String']>
reverse?: Maybe<Scalars['Boolean']>
sortKey?: Maybe<ArticleSortKeys>
query?: Maybe<Scalars['String']>
}
/** An auto-generated type for paginating through multiple Blogs. */
export type BlogConnection = {
__typename?: 'BlogConnection'
/** A list of edges. */
edges: Array<BlogEdge>
/** Information to aid in pagination. */
pageInfo: PageInfo
}
/** An auto-generated type which holds one Blog and a cursor during pagination. */
export type BlogEdge = {
__typename?: 'BlogEdge'
/** A cursor for use in pagination. */
cursor: Scalars['String']
/** The item at the end of BlogEdge. */
node: Blog
}
/** The set of valid sort keys for the Blog query. */
export enum BlogSortKeys {
/** Sort by the `handle` value. */
Handle = 'HANDLE',
/** Sort by the `title` value. */
Title = 'TITLE',
/** Sort by the `id` value. */
Id = 'ID',
/**
* During a search (i.e. when the `query` parameter has been specified on the connection) this sorts the
* results by relevance to the search term(s). When no search query is specified, this sort key is not
* deterministic and should not be used.
*/
Relevance = 'RELEVANCE',
}
/** Card brand, such as Visa or Mastercard, which can be used for payments. */
export enum CardBrand {
/** Visa. */
Visa = 'VISA',
/** Mastercard. */
Mastercard = 'MASTERCARD',
/** Discover. */
Discover = 'DISCOVER',
/** American Express. */
AmericanExpress = 'AMERICAN_EXPRESS',
/** Diners Club. */
DinersClub = 'DINERS_CLUB',
/** JCB. */
Jcb = 'JCB',
}
/** A container for all the information required to checkout items and pay. */
export type Checkout = Node & {
__typename?: 'Checkout'
/** The gift cards used on the checkout. */
appliedGiftCards: Array<AppliedGiftCard>
/**
* The available shipping rates for this Checkout.
* Should only be used when checkout `requiresShipping` is `true` and
* the shipping address is valid.
*/
availableShippingRates?: Maybe<AvailableShippingRates>
/** The date and time when the checkout was completed. */
completedAt?: Maybe<Scalars['DateTime']>
/** The date and time when the checkout was created. */
createdAt: Scalars['DateTime']
/** The currency code for the Checkout. */
currencyCode: CurrencyCode
/** A list of extra information that is added to the checkout. */
customAttributes: Array<Attribute>
/**
* The customer associated with the checkout.
* @deprecated This field will always return null. If you have an authentication token for the customer, you can use the `customer` field on the query root to retrieve it.
*/
customer?: Maybe<Customer>
/** Discounts that have been applied on the checkout. */
discountApplications: DiscountApplicationConnection
/** The email attached to this checkout. */
email?: Maybe<Scalars['String']>
/** Globally unique identifier. */
id: Scalars['ID']
/** A list of line item objects, each one containing information about an item in the checkout. */
lineItems: CheckoutLineItemConnection
/** The sum of all the prices of all the items in the checkout. Duties, taxes, shipping and discounts excluded. */
lineItemsSubtotalPrice: MoneyV2
/** The note associated with the checkout. */
note?: Maybe<Scalars['String']>
/** The resulting order from a paid checkout. */
order?: Maybe<Order>
/** The Order Status Page for this Checkout, null when checkout is not completed. */
orderStatusUrl?: Maybe<Scalars['URL']>
/**
* The amount left to be paid. This is equal to the cost of the line items, taxes and shipping minus discounts and gift cards.
* @deprecated Use `paymentDueV2` instead
*/
paymentDue: Scalars['Money']
/** The amount left to be paid. This is equal to the cost of the line items, duties, taxes and shipping minus discounts and gift cards. */
paymentDueV2: MoneyV2
/**
* Whether or not the Checkout is ready and can be completed. Checkouts may
* have asynchronous operations that can take time to finish. If you want
* to complete a checkout or ensure all the fields are populated and up to
* date, polling is required until the value is true.
*/
ready: Scalars['Boolean']
/** States whether or not the fulfillment requires shipping. */
requiresShipping: Scalars['Boolean']
/** The shipping address to where the line items will be shipped. */
shippingAddress?: Maybe<MailingAddress>
/** The discounts that have been allocated onto the shipping line by discount applications. */
shippingDiscountAllocations: Array<DiscountAllocation>
/** Once a shipping rate is selected by the customer it is transitioned to a `shipping_line` object. */
shippingLine?: Maybe<ShippingRate>
/**
* Price of the checkout before shipping and taxes.
* @deprecated Use `subtotalPriceV2` instead
*/
subtotalPrice: Scalars['Money']
/** Price of the checkout before duties, shipping and taxes. */
subtotalPriceV2: MoneyV2
/** Specifies if the Checkout is tax exempt. */
taxExempt: Scalars['Boolean']
/** Specifies if taxes are included in the line item and shipping line prices. */
taxesIncluded: Scalars['Boolean']
/**
* The sum of all the prices of all the items in the checkout, taxes and discounts included.
* @deprecated Use `totalPriceV2` instead
*/
totalPrice: Scalars['Money']
/** The sum of all the prices of all the items in the checkout, duties, taxes and discounts included. */
totalPriceV2: MoneyV2
/**
* The sum of all the taxes applied to the line items and shipping lines in the checkout.
* @deprecated Use `totalTaxV2` instead
*/
totalTax: Scalars['Money']
/** The sum of all the taxes applied to the line items and shipping lines in the checkout. */
totalTaxV2: MoneyV2
/** The date and time when the checkout was last updated. */
updatedAt: Scalars['DateTime']
/** The url pointing to the checkout accessible from the web. */
webUrl: Scalars['URL']
}
/** A container for all the information required to checkout items and pay. */
export type CheckoutDiscountApplicationsArgs = {
first?: Maybe<Scalars['Int']>
after?: Maybe<Scalars['String']>
last?: Maybe<Scalars['Int']>
before?: Maybe<Scalars['String']>
reverse?: Maybe<Scalars['Boolean']>
}
/** A container for all the information required to checkout items and pay. */
export type CheckoutLineItemsArgs = {
first?: Maybe<Scalars['Int']>
after?: Maybe<Scalars['String']>
last?: Maybe<Scalars['Int']>
before?: Maybe<Scalars['String']>
reverse?: Maybe<Scalars['Boolean']>
}
/** Specifies the fields required to update a checkout's attributes. */
export type CheckoutAttributesUpdateInput = {
/** The text of an optional note that a shop owner can attach to the checkout. */
note?: Maybe<Scalars['String']>
/** A list of extra information that is added to the checkout. */
customAttributes?: Maybe<Array<AttributeInput>>
/**
* Allows setting partial addresses on a Checkout, skipping the full validation of attributes.
* The required attributes are city, province, and country.
* Full validation of the addresses is still done at complete time.
*/
allowPartialAddresses?: Maybe<Scalars['Boolean']>
}
/** Return type for `checkoutAttributesUpdate` mutation. */
export type CheckoutAttributesUpdatePayload = {
__typename?: 'CheckoutAttributesUpdatePayload'
/** The updated checkout object. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Specifies the fields required to update a checkout's attributes. */
export type CheckoutAttributesUpdateV2Input = {
/** The text of an optional note that a shop owner can attach to the checkout. */
note?: Maybe<Scalars['String']>
/** A list of extra information that is added to the checkout. */
customAttributes?: Maybe<Array<AttributeInput>>
/**
* Allows setting partial addresses on a Checkout, skipping the full validation of attributes.
* The required attributes are city, province, and country.
* Full validation of the addresses is still done at complete time.
*/
allowPartialAddresses?: Maybe<Scalars['Boolean']>
}
/** Return type for `checkoutAttributesUpdateV2` mutation. */
export type CheckoutAttributesUpdateV2Payload = {
__typename?: 'CheckoutAttributesUpdateV2Payload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCompleteFree` mutation. */
export type CheckoutCompleteFreePayload = {
__typename?: 'CheckoutCompleteFreePayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCompleteWithCreditCard` mutation. */
export type CheckoutCompleteWithCreditCardPayload = {
__typename?: 'CheckoutCompleteWithCreditCardPayload'
/** The checkout on which the payment was applied. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/** A representation of the attempted payment. */
payment?: Maybe<Payment>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCompleteWithCreditCardV2` mutation. */
export type CheckoutCompleteWithCreditCardV2Payload = {
__typename?: 'CheckoutCompleteWithCreditCardV2Payload'
/** The checkout on which the payment was applied. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/** A representation of the attempted payment. */
payment?: Maybe<Payment>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCompleteWithTokenizedPayment` mutation. */
export type CheckoutCompleteWithTokenizedPaymentPayload = {
__typename?: 'CheckoutCompleteWithTokenizedPaymentPayload'
/** The checkout on which the payment was applied. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/** A representation of the attempted payment. */
payment?: Maybe<Payment>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCompleteWithTokenizedPaymentV2` mutation. */
export type CheckoutCompleteWithTokenizedPaymentV2Payload = {
__typename?: 'CheckoutCompleteWithTokenizedPaymentV2Payload'
/** The checkout on which the payment was applied. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/** A representation of the attempted payment. */
payment?: Maybe<Payment>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCompleteWithTokenizedPaymentV3` mutation. */
export type CheckoutCompleteWithTokenizedPaymentV3Payload = {
__typename?: 'CheckoutCompleteWithTokenizedPaymentV3Payload'
/** The checkout on which the payment was applied. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/** A representation of the attempted payment. */
payment?: Maybe<Payment>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Specifies the fields required to create a checkout. */
export type CheckoutCreateInput = {
/** The email with which the customer wants to checkout. */
email?: Maybe<Scalars['String']>
/** A list of line item objects, each one containing information about an item in the checkout. */
lineItems?: Maybe<Array<CheckoutLineItemInput>>
/** The shipping address to where the line items will be shipped. */
shippingAddress?: Maybe<MailingAddressInput>
/** The text of an optional note that a shop owner can attach to the checkout. */
note?: Maybe<Scalars['String']>
/** A list of extra information that is added to the checkout. */
customAttributes?: Maybe<Array<AttributeInput>>
/**
* Allows setting partial addresses on a Checkout, skipping the full validation of attributes.
* The required attributes are city, province, and country.
* Full validation of addresses is still done at complete time.
*/
allowPartialAddresses?: Maybe<Scalars['Boolean']>
/**
* The three-letter currency code of one of the shop's enabled presentment currencies.
* Including this field creates a checkout in the specified currency. By default, new
* checkouts are created in the shop's primary currency.
*/
presentmentCurrencyCode?: Maybe<CurrencyCode>
}
/** Return type for `checkoutCreate` mutation. */
export type CheckoutCreatePayload = {
__typename?: 'CheckoutCreatePayload'
/** The new checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCustomerAssociate` mutation. */
export type CheckoutCustomerAssociatePayload = {
__typename?: 'CheckoutCustomerAssociatePayload'
/** The updated checkout object. */
checkout: Checkout
/** The associated customer object. */
customer?: Maybe<Customer>
/** List of errors that occurred executing the mutation. */
userErrors: Array<UserError>
}
/** Return type for `checkoutCustomerAssociateV2` mutation. */
export type CheckoutCustomerAssociateV2Payload = {
__typename?: 'CheckoutCustomerAssociateV2Payload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/** The associated customer object. */
customer?: Maybe<Customer>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCustomerDisassociate` mutation. */
export type CheckoutCustomerDisassociatePayload = {
__typename?: 'CheckoutCustomerDisassociatePayload'
/** The updated checkout object. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutCustomerDisassociateV2` mutation. */
export type CheckoutCustomerDisassociateV2Payload = {
__typename?: 'CheckoutCustomerDisassociateV2Payload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutDiscountCodeApply` mutation. */
export type CheckoutDiscountCodeApplyPayload = {
__typename?: 'CheckoutDiscountCodeApplyPayload'
/** The updated checkout object. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutDiscountCodeApplyV2` mutation. */
export type CheckoutDiscountCodeApplyV2Payload = {
__typename?: 'CheckoutDiscountCodeApplyV2Payload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutDiscountCodeRemove` mutation. */
export type CheckoutDiscountCodeRemovePayload = {
__typename?: 'CheckoutDiscountCodeRemovePayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutEmailUpdate` mutation. */
export type CheckoutEmailUpdatePayload = {
__typename?: 'CheckoutEmailUpdatePayload'
/** The checkout object with the updated email. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutEmailUpdateV2` mutation. */
export type CheckoutEmailUpdateV2Payload = {
__typename?: 'CheckoutEmailUpdateV2Payload'
/** The checkout object with the updated email. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Possible error codes that could be returned by CheckoutUserError. */
export enum CheckoutErrorCode {
/** Input value is blank. */
Blank = 'BLANK',
/** Input value is invalid. */
Invalid = 'INVALID',
/** Input value is too long. */
TooLong = 'TOO_LONG',
/** Input value is not present. */
Present = 'PRESENT',
/** Input value should be less than maximum allowed value. */
LessThan = 'LESS_THAN',
/** Input value should be greater than or equal to minimum allowed value. */
GreaterThanOrEqualTo = 'GREATER_THAN_OR_EQUAL_TO',
/** Input value should be less or equal to maximum allowed value. */
LessThanOrEqualTo = 'LESS_THAN_OR_EQUAL_TO',
/** Checkout is already completed. */
AlreadyCompleted = 'ALREADY_COMPLETED',
/** Checkout is locked. */
Locked = 'LOCKED',
/** Input value is not supported. */
NotSupported = 'NOT_SUPPORTED',
/** Input email contains an invalid domain name. */
BadDomain = 'BAD_DOMAIN',
/** Input Zip is invalid for country provided. */
InvalidForCountry = 'INVALID_FOR_COUNTRY',
/** Input Zip is invalid for country and province provided. */
InvalidForCountryAndProvince = 'INVALID_FOR_COUNTRY_AND_PROVINCE',
/** Invalid state in country. */
InvalidStateInCountry = 'INVALID_STATE_IN_COUNTRY',
/** Invalid province in country. */
InvalidProvinceInCountry = 'INVALID_PROVINCE_IN_COUNTRY',
/** Invalid region in country. */
InvalidRegionInCountry = 'INVALID_REGION_IN_COUNTRY',
/** Shipping rate expired. */
ShippingRateExpired = 'SHIPPING_RATE_EXPIRED',
/** Gift card cannot be applied to a checkout that contains a gift card. */
GiftCardUnusable = 'GIFT_CARD_UNUSABLE',
/** Gift card is disabled. */
GiftCardDisabled = 'GIFT_CARD_DISABLED',
/** Gift card code is invalid. */
GiftCardCodeInvalid = 'GIFT_CARD_CODE_INVALID',
/** Gift card has already been applied. */
GiftCardAlreadyApplied = 'GIFT_CARD_ALREADY_APPLIED',
/** Gift card currency does not match checkout currency. */
GiftCardCurrencyMismatch = 'GIFT_CARD_CURRENCY_MISMATCH',
/** Gift card is expired. */
GiftCardExpired = 'GIFT_CARD_EXPIRED',
/** Gift card has no funds left. */
GiftCardDepleted = 'GIFT_CARD_DEPLETED',
/** Gift card was not found. */
GiftCardNotFound = 'GIFT_CARD_NOT_FOUND',
/** Cart does not meet discount requirements notice. */
CartDoesNotMeetDiscountRequirementsNotice = 'CART_DOES_NOT_MEET_DISCOUNT_REQUIREMENTS_NOTICE',
/** Discount expired. */
DiscountExpired = 'DISCOUNT_EXPIRED',
/** Discount disabled. */
DiscountDisabled = 'DISCOUNT_DISABLED',
/** Discount limit reached. */
DiscountLimitReached = 'DISCOUNT_LIMIT_REACHED',
/** Discount not found. */
DiscountNotFound = 'DISCOUNT_NOT_FOUND',
/** Customer already used once per customer discount notice. */
CustomerAlreadyUsedOncePerCustomerDiscountNotice = 'CUSTOMER_ALREADY_USED_ONCE_PER_CUSTOMER_DISCOUNT_NOTICE',
/** Checkout is already completed. */
Empty = 'EMPTY',
/** Not enough in stock. */
NotEnoughInStock = 'NOT_ENOUGH_IN_STOCK',
/** Missing payment input. */
MissingPaymentInput = 'MISSING_PAYMENT_INPUT',
/** The amount of the payment does not match the value to be paid. */
TotalPriceMismatch = 'TOTAL_PRICE_MISMATCH',
/** Line item was not found in checkout. */
LineItemNotFound = 'LINE_ITEM_NOT_FOUND',
/** Unable to apply discount. */
UnableToApply = 'UNABLE_TO_APPLY',
/** Discount already applied. */
DiscountAlreadyApplied = 'DISCOUNT_ALREADY_APPLIED',
}
/** Return type for `checkoutGiftCardApply` mutation. */
export type CheckoutGiftCardApplyPayload = {
__typename?: 'CheckoutGiftCardApplyPayload'
/** The updated checkout object. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutGiftCardRemove` mutation. */
export type CheckoutGiftCardRemovePayload = {
__typename?: 'CheckoutGiftCardRemovePayload'
/** The updated checkout object. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutGiftCardRemoveV2` mutation. */
export type CheckoutGiftCardRemoveV2Payload = {
__typename?: 'CheckoutGiftCardRemoveV2Payload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutGiftCardsAppend` mutation. */
export type CheckoutGiftCardsAppendPayload = {
__typename?: 'CheckoutGiftCardsAppendPayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** A single line item in the checkout, grouped by variant and attributes. */
export type CheckoutLineItem = Node & {
__typename?: 'CheckoutLineItem'
/** Extra information in the form of an array of Key-Value pairs about the line item. */
customAttributes: Array<Attribute>
/** The discounts that have been allocated onto the checkout line item by discount applications. */
discountAllocations: Array<DiscountAllocation>
/** Globally unique identifier. */
id: Scalars['ID']
/** The quantity of the line item. */
quantity: Scalars['Int']
/** Title of the line item. Defaults to the product's title. */
title: Scalars['String']
/** Unit price of the line item. */
unitPrice?: Maybe<MoneyV2>
/** Product variant of the line item. */
variant?: Maybe<ProductVariant>
}
/** An auto-generated type for paginating through multiple CheckoutLineItems. */
export type CheckoutLineItemConnection = {
__typename?: 'CheckoutLineItemConnection'
/** A list of edges. */
edges: Array<CheckoutLineItemEdge>
/** Information to aid in pagination. */
pageInfo: PageInfo
}
/** An auto-generated type which holds one CheckoutLineItem and a cursor during pagination. */
export type CheckoutLineItemEdge = {
__typename?: 'CheckoutLineItemEdge'
/** A cursor for use in pagination. */
cursor: Scalars['String']
/** The item at the end of CheckoutLineItemEdge. */
node: CheckoutLineItem
}
/** Specifies the input fields to create a line item on a checkout. */
export type CheckoutLineItemInput = {
/** Extra information in the form of an array of Key-Value pairs about the line item. */
customAttributes?: Maybe<Array<AttributeInput>>
/** The quantity of the line item. */
quantity: Scalars['Int']
/** The identifier of the product variant for the line item. */
variantId: Scalars['ID']
}
/** Specifies the input fields to update a line item on the checkout. */
export type CheckoutLineItemUpdateInput = {
/** The identifier of the line item. */
id?: Maybe<Scalars['ID']>
/** The variant identifier of the line item. */
variantId?: Maybe<Scalars['ID']>
/** The quantity of the line item. */
quantity?: Maybe<Scalars['Int']>
/** Extra information in the form of an array of Key-Value pairs about the line item. */
customAttributes?: Maybe<Array<AttributeInput>>
}
/** Return type for `checkoutLineItemsAdd` mutation. */
export type CheckoutLineItemsAddPayload = {
__typename?: 'CheckoutLineItemsAddPayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutLineItemsRemove` mutation. */
export type CheckoutLineItemsRemovePayload = {
__typename?: 'CheckoutLineItemsRemovePayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutLineItemsReplace` mutation. */
export type CheckoutLineItemsReplacePayload = {
__typename?: 'CheckoutLineItemsReplacePayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
userErrors: Array<CheckoutUserError>
}
/** Return type for `checkoutLineItemsUpdate` mutation. */
export type CheckoutLineItemsUpdatePayload = {
__typename?: 'CheckoutLineItemsUpdatePayload'
/** The updated checkout object. */
checkout?: Maybe<Checkout>
/** List of errors that occurred executing the mutation. */
checkoutUserErrors: Array<CheckoutUserError>
/**
* List of errors that occurred executing the mutation.
* @deprecated Use `checkoutUserErrors` instead
*/
userErrors: Array<UserError>
}
/** Return type for `checkoutShippingAddressUpdate` mutation. */
export type CheckoutShippingAddressUpdatePayload = {
__typename?: 'CheckoutShippingAddressUpdatePayload'
/** The updated checkout object. */
checkout: Checkout
/** List of errors that occurred executing the mutation. */