@doswiftly/cli 0.1.19 → 0.1.21
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/commands/deploy.d.ts +20 -0
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +225 -6
- package/dist/commands/deploy.js.map +1 -1
- package/package.json +4 -4
- package/templates/storefront-minimal/.github/workflows/build-template.yml +10 -0
- package/templates/storefront-minimal/wrangler.toml +11 -0
- package/templates/storefront-nextjs/.github/workflows/build-template.yml +10 -0
- package/templates/storefront-nextjs/wrangler.toml +11 -0
- package/templates/storefront-nextjs-shadcn/.github/workflows/build-template.yml +10 -0
- package/templates/storefront-nextjs-shadcn/CLAUDE.md +29 -5
- package/templates/storefront-nextjs-shadcn/app/{about → [locale]/about}/page.tsx +17 -14
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/addresses/page.tsx +19 -15
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/error.tsx +8 -5
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/loyalty/page.tsx +39 -34
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/orders/[id]/page.tsx +9 -7
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/orders/[id]/tracking/page.tsx +27 -25
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/orders/page.tsx +13 -9
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/page.tsx +1 -2
- package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/settings/page.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/app/{auth → [locale]/auth}/forgot-password/page.tsx +14 -12
- package/templates/storefront-nextjs-shadcn/app/{auth → [locale]/auth}/login/page.tsx +5 -2
- package/templates/storefront-nextjs-shadcn/app/{auth → [locale]/auth}/register/page.tsx +5 -2
- package/templates/storefront-nextjs-shadcn/app/{blog → [locale]/blog}/[slug]/page.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/app/{cart → [locale]/cart}/page.tsx +14 -10
- package/templates/storefront-nextjs-shadcn/app/{categories → [locale]/categories}/[slug]/category-products-client.tsx +4 -2
- package/templates/storefront-nextjs-shadcn/app/{categories → [locale]/categories}/page.tsx +13 -8
- package/templates/storefront-nextjs-shadcn/app/{checkout → [locale]/checkout}/error.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/app/{checkout → [locale]/checkout}/page.tsx +228 -184
- package/templates/storefront-nextjs-shadcn/app/{checkout → [locale]/checkout}/success/[orderId]/page.tsx +36 -34
- package/templates/storefront-nextjs-shadcn/app/{collections → [locale]/collections}/[handle]/page.tsx +5 -3
- package/templates/storefront-nextjs-shadcn/app/{collections → [locale]/collections}/page.tsx +13 -8
- package/templates/storefront-nextjs-shadcn/app/{contact → [locale]/contact}/page.tsx +24 -21
- package/templates/storefront-nextjs-shadcn/app/{error.tsx → [locale]/error.tsx} +13 -8
- package/templates/storefront-nextjs-shadcn/app/[locale]/layout.tsx +92 -0
- package/templates/storefront-nextjs-shadcn/app/{not-found.tsx → [locale]/not-found.tsx} +13 -18
- package/templates/storefront-nextjs-shadcn/app/{page.tsx → [locale]/page.tsx} +8 -4
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/[slug]/error.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/[slug]/page.tsx +11 -8
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/[slug]/product-client.tsx +3 -1
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/page.tsx +6 -3
- package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/products-client.tsx +14 -10
- package/templates/storefront-nextjs-shadcn/app/{wishlist → [locale]/wishlist}/page.tsx +21 -25
- package/templates/storefront-nextjs-shadcn/app/layout.tsx +6 -68
- package/templates/storefront-nextjs-shadcn/components/account/address-form.tsx +25 -20
- package/templates/storefront-nextjs-shadcn/components/account/address-list.tsx +11 -10
- package/templates/storefront-nextjs-shadcn/components/account/order-details.tsx +14 -12
- package/templates/storefront-nextjs-shadcn/components/account/order-history.tsx +28 -18
- package/templates/storefront-nextjs-shadcn/components/auth/account-menu.tsx +10 -8
- package/templates/storefront-nextjs-shadcn/components/auth/login-form.tsx +27 -22
- package/templates/storefront-nextjs-shadcn/components/auth/register-form.tsx +48 -43
- package/templates/storefront-nextjs-shadcn/components/blog/blog-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/blog/blog-sidebar.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/brand/brand-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/cart/cart-drawer.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/cart/cart-icon.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/cart/cart-item.tsx +7 -5
- package/templates/storefront-nextjs-shadcn/components/cart/cart-summary.tsx +9 -7
- package/templates/storefront-nextjs-shadcn/components/cart/promo-code-input.tsx +8 -5
- package/templates/storefront-nextjs-shadcn/components/cart/shipping-estimator.tsx +18 -15
- package/templates/storefront-nextjs-shadcn/components/checkout/payment-method-card.tsx +15 -25
- package/templates/storefront-nextjs-shadcn/components/checkout/payment-step.tsx +10 -8
- package/templates/storefront-nextjs-shadcn/components/checkout/tax-breakdown.tsx +9 -6
- package/templates/storefront-nextjs-shadcn/components/commerce/currency-selector.tsx +5 -3
- package/templates/storefront-nextjs-shadcn/components/commerce/pagination.tsx +8 -5
- package/templates/storefront-nextjs-shadcn/components/commerce/product-actions.tsx +5 -3
- package/templates/storefront-nextjs-shadcn/components/commerce/search-input.tsx +8 -7
- package/templates/storefront-nextjs-shadcn/components/common/category-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/common/collection-card.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/common/social-share.tsx +9 -6
- package/templates/storefront-nextjs-shadcn/components/discount/discount-breakdown.tsx +21 -11
- package/templates/storefront-nextjs-shadcn/components/discount/discount-code-input.tsx +16 -13
- package/templates/storefront-nextjs-shadcn/components/error/error-boundary.tsx +53 -28
- package/templates/storefront-nextjs-shadcn/components/filters/dynamic-attribute-filters.tsx +7 -5
- package/templates/storefront-nextjs-shadcn/components/gift-card/gift-card-balance.tsx +19 -15
- package/templates/storefront-nextjs-shadcn/components/gift-card/gift-card-input.tsx +12 -9
- package/templates/storefront-nextjs-shadcn/components/home/category-grid.tsx +8 -5
- package/templates/storefront-nextjs-shadcn/components/home/featured-collections.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/home/featured-products.tsx +12 -8
- package/templates/storefront-nextjs-shadcn/components/home/hero-section.tsx +13 -8
- package/templates/storefront-nextjs-shadcn/components/home/newsletter-signup.tsx +10 -8
- package/templates/storefront-nextjs-shadcn/components/layout/breadcrumbs.tsx +37 -12
- package/templates/storefront-nextjs-shadcn/components/layout/currency-selector.tsx +5 -2
- package/templates/storefront-nextjs-shadcn/components/layout/footer.tsx +24 -23
- package/templates/storefront-nextjs-shadcn/components/layout/header.tsx +20 -12
- package/templates/storefront-nextjs-shadcn/components/layout/language-switcher.tsx +54 -0
- package/templates/storefront-nextjs-shadcn/components/layout/mobile-menu.tsx +33 -30
- package/templates/storefront-nextjs-shadcn/components/layout/navigation.tsx +27 -24
- package/templates/storefront-nextjs-shadcn/components/loyalty/referral-section.tsx +23 -24
- package/templates/storefront-nextjs-shadcn/components/product/add-to-cart-button.tsx +6 -14
- package/templates/storefront-nextjs-shadcn/components/product/b2b-price-display.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/product/filter-active-pills.tsx +4 -1
- package/templates/storefront-nextjs-shadcn/components/product/filter-mobile-sheet.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/product/filter-price-range.tsx +5 -3
- package/templates/storefront-nextjs-shadcn/components/product/product-card.tsx +8 -6
- package/templates/storefront-nextjs-shadcn/components/product/product-filters.tsx +3 -1
- package/templates/storefront-nextjs-shadcn/components/product/product-image.tsx +3 -7
- package/templates/storefront-nextjs-shadcn/components/product/product-sort.tsx +26 -13
- package/templates/storefront-nextjs-shadcn/components/product/review-form.tsx +25 -27
- package/templates/storefront-nextjs-shadcn/components/providers/language-sync-provider.tsx +27 -0
- package/templates/storefront-nextjs-shadcn/components/providers/stores-provider.tsx +40 -7
- package/templates/storefront-nextjs-shadcn/components/returns/return-request-form.tsx +56 -70
- package/templates/storefront-nextjs-shadcn/components/search/search-bar.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/shipping/shipping-method-selector.tsx +12 -9
- package/templates/storefront-nextjs-shadcn/components/ui/empty-state.tsx +23 -12
- package/templates/storefront-nextjs-shadcn/components/wishlist/wishlist-button.tsx +7 -4
- package/templates/storefront-nextjs-shadcn/components/wishlist/wishlist-icon.tsx +1 -1
- package/templates/storefront-nextjs-shadcn/components/wishlist/wishlist-item.tsx +2 -10
- package/templates/storefront-nextjs-shadcn/generated/graphql.ts +1159 -551
- package/templates/storefront-nextjs-shadcn/hooks/index.ts +1 -0
- package/templates/storefront-nextjs-shadcn/hooks/use-cart-actions.ts +22 -249
- package/templates/storefront-nextjs-shadcn/hooks/use-cart-di.ts +67 -0
- package/templates/storefront-nextjs-shadcn/hooks/use-cart-sync.ts +3 -3
- package/templates/storefront-nextjs-shadcn/i18n/navigation.ts +12 -0
- package/templates/storefront-nextjs-shadcn/i18n/request.ts +17 -0
- package/templates/storefront-nextjs-shadcn/i18n/routing.ts +17 -0
- package/templates/storefront-nextjs-shadcn/lib/graphql/config.ts +1 -0
- package/templates/storefront-nextjs-shadcn/lib/graphql/hooks.ts +41 -8
- package/templates/storefront-nextjs-shadcn/lib/graphql/query-keys.ts +20 -18
- package/templates/storefront-nextjs-shadcn/lib/graphql/server.ts +2 -1
- package/templates/storefront-nextjs-shadcn/messages/en.json +869 -0
- package/templates/storefront-nextjs-shadcn/messages/pl.json +869 -0
- package/templates/storefront-nextjs-shadcn/next.config.ts +6 -5
- package/templates/storefront-nextjs-shadcn/package.json +3 -2
- package/templates/storefront-nextjs-shadcn/proxy.ts +115 -46
- package/templates/storefront-nextjs-shadcn/stores/cart-store.ts +24 -58
- package/templates/storefront-nextjs-shadcn/wrangler.toml +11 -0
- /package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{account → [locale]/account}/orders/[id]/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{blog → [locale]/blog}/[slug]/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{blog → [locale]/blog}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{blog → [locale]/blog}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{brands → [locale]/brands}/[slug]/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{brands → [locale]/brands}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{cart → [locale]/cart}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{categories → [locale]/categories}/[slug]/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{categories → [locale]/categories}/[slug]/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{checkout → [locale]/checkout}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{collections → [locale]/collections}/[handle]/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{collections → [locale]/collections}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/[slug]/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{products → [locale]/products}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{returns → [locale]/returns}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{search → [locale]/search}/loading.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{search → [locale]/search}/page.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{search → [locale]/search}/search-client.tsx +0 -0
- /package/templates/storefront-nextjs-shadcn/app/{shipping → [locale]/shipping}/page.tsx +0 -0
|
@@ -156,9 +156,9 @@ export type AvailableFilters = {
|
|
|
156
156
|
|
|
157
157
|
/** Context for available filters query */
|
|
158
158
|
export type AvailableFiltersInput = {
|
|
159
|
-
/** Category ID context */
|
|
159
|
+
/** Category ID context (supports comma-separated UUIDs) */
|
|
160
160
|
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
161
|
-
/** Collection ID context */
|
|
161
|
+
/** Collection ID context (supports comma-separated UUIDs) */
|
|
162
162
|
collectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
163
163
|
/** Currently applied filters (to update counts) */
|
|
164
164
|
currentFilters?: InputMaybe<Array<AttributeFilterInput>>;
|
|
@@ -376,6 +376,28 @@ export type BlogTag = {
|
|
|
376
376
|
slug: Scalars['String']['output'];
|
|
377
377
|
};
|
|
378
378
|
|
|
379
|
+
/** Bot protection configuration (platform-level) */
|
|
380
|
+
export type BotProtectionInfo = {
|
|
381
|
+
__typename?: 'BotProtectionInfo';
|
|
382
|
+
/** Fallback provider */
|
|
383
|
+
fallback?: Maybe<BotProtectionProviderInfo>;
|
|
384
|
+
/** Primary provider */
|
|
385
|
+
primary: BotProtectionProviderInfo;
|
|
386
|
+
/** GraphQL operation names requiring verification */
|
|
387
|
+
protectedOperations: Array<Scalars['String']['output']>;
|
|
388
|
+
};
|
|
389
|
+
|
|
390
|
+
/** Single bot protection provider config */
|
|
391
|
+
export type BotProtectionProviderInfo = {
|
|
392
|
+
__typename?: 'BotProtectionProviderInfo';
|
|
393
|
+
/** Provider identifier: eucaptcha | turnstile | recaptcha */
|
|
394
|
+
provider: Scalars['String']['output'];
|
|
395
|
+
/** Script URL (configurable, region/enterprise overrides) */
|
|
396
|
+
scriptUrl: Scalars['String']['output'];
|
|
397
|
+
/** Site key for the bot protection widget */
|
|
398
|
+
siteKey: Scalars['String']['output'];
|
|
399
|
+
};
|
|
400
|
+
|
|
379
401
|
/** Business hours for a day */
|
|
380
402
|
export type BusinessHour = {
|
|
381
403
|
__typename?: 'BusinessHour';
|
|
@@ -679,7 +701,7 @@ export type CartRecommendations = {
|
|
|
679
701
|
|
|
680
702
|
/** Cart data for shipping calculation */
|
|
681
703
|
export type CartShippingInput = {
|
|
682
|
-
/** Currency code */
|
|
704
|
+
/** Currency code (ISO 4217) */
|
|
683
705
|
currencyCode?: InputMaybe<Scalars['String']['input']>;
|
|
684
706
|
/** Cart subtotal in cents */
|
|
685
707
|
subtotal?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1027,6 +1049,8 @@ export type CheckoutLineItem = {
|
|
|
1027
1049
|
__typename?: 'CheckoutLineItem';
|
|
1028
1050
|
/** Line item ID */
|
|
1029
1051
|
id: Scalars['ID']['output'];
|
|
1052
|
+
/** Product image */
|
|
1053
|
+
image?: Maybe<Image>;
|
|
1030
1054
|
/** Product ID */
|
|
1031
1055
|
productId?: Maybe<Scalars['String']['output']>;
|
|
1032
1056
|
/** Quantity */
|
|
@@ -1993,7 +2017,7 @@ export type MailingAddressInput = {
|
|
|
1993
2017
|
city?: InputMaybe<Scalars['String']['input']>;
|
|
1994
2018
|
/** Company */
|
|
1995
2019
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
1996
|
-
/** Country */
|
|
2020
|
+
/** Country code (ISO) */
|
|
1997
2021
|
country?: InputMaybe<Scalars['String']['input']>;
|
|
1998
2022
|
/** First name */
|
|
1999
2023
|
firstName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2628,9 +2652,9 @@ export type ProductFilterInput = {
|
|
|
2628
2652
|
attributes?: InputMaybe<Array<AttributeFilterInput>>;
|
|
2629
2653
|
/** Filter by availability */
|
|
2630
2654
|
available?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2631
|
-
/** Filter by category ID */
|
|
2655
|
+
/** Filter by category ID (supports comma-separated UUIDs for multi-category) */
|
|
2632
2656
|
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
2633
|
-
/** Filter by collection ID */
|
|
2657
|
+
/** Filter by collection ID (supports comma-separated UUIDs for multi-collection) */
|
|
2634
2658
|
collectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
2635
2659
|
/** Filter by maximum price */
|
|
2636
2660
|
maxPrice?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -2831,6 +2855,8 @@ export type Query = {
|
|
|
2831
2855
|
customer?: Maybe<Customer>;
|
|
2832
2856
|
/** Get available customer groups */
|
|
2833
2857
|
customerGroups?: Maybe<Array<CustomerGroup>>;
|
|
2858
|
+
/** Get single order for authenticated customer */
|
|
2859
|
+
customerOrder?: Maybe<Order>;
|
|
2834
2860
|
/** Estimate points for an order amount */
|
|
2835
2861
|
estimatePoints: PointsEstimate;
|
|
2836
2862
|
/** Get exchange rate between two currencies */
|
|
@@ -3002,6 +3028,12 @@ export type QueryCustomerArgs = {
|
|
|
3002
3028
|
};
|
|
3003
3029
|
|
|
3004
3030
|
|
|
3031
|
+
export type QueryCustomerOrderArgs = {
|
|
3032
|
+
customerAccessToken: Scalars['String']['input'];
|
|
3033
|
+
orderId: Scalars['ID']['input'];
|
|
3034
|
+
};
|
|
3035
|
+
|
|
3036
|
+
|
|
3005
3037
|
export type QueryEstimatePointsArgs = {
|
|
3006
3038
|
orderTotal: Scalars['Float']['input'];
|
|
3007
3039
|
};
|
|
@@ -3054,6 +3086,7 @@ export type QueryProductReviewsArgs = {
|
|
|
3054
3086
|
|
|
3055
3087
|
export type QueryProductSearchArgs = {
|
|
3056
3088
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3089
|
+
filters?: InputMaybe<ProductFilterInput>;
|
|
3057
3090
|
first?: Scalars['Int']['input'];
|
|
3058
3091
|
query: Scalars['String']['input'];
|
|
3059
3092
|
};
|
|
@@ -3406,7 +3439,7 @@ export type ReviewPayload = {
|
|
|
3406
3439
|
__typename?: 'ReviewPayload';
|
|
3407
3440
|
review?: Maybe<ProductReview>;
|
|
3408
3441
|
/** User errors */
|
|
3409
|
-
userErrors: Array<
|
|
3442
|
+
userErrors: Array<UserError>;
|
|
3410
3443
|
};
|
|
3411
3444
|
|
|
3412
3445
|
export type ReviewSortKey =
|
|
@@ -3618,6 +3651,8 @@ export type Shop = {
|
|
|
3618
3651
|
__typename?: 'Shop';
|
|
3619
3652
|
/** Shop physical address */
|
|
3620
3653
|
address?: Maybe<ShopAddress>;
|
|
3654
|
+
/** Bot protection configuration (platform-level) */
|
|
3655
|
+
botProtection?: Maybe<BotProtectionInfo>;
|
|
3621
3656
|
/** Complete branding configuration */
|
|
3622
3657
|
branding?: Maybe<ShopBranding>;
|
|
3623
3658
|
/** Business operating hours */
|
|
@@ -3894,30 +3929,21 @@ export type WishlistPayload = {
|
|
|
3894
3929
|
wishlist?: Maybe<Wishlist>;
|
|
3895
3930
|
};
|
|
3896
3931
|
|
|
3897
|
-
export type
|
|
3898
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3899
|
-
}>;
|
|
3900
|
-
|
|
3932
|
+
export type CustomerInfoFieldsFragment = { __typename?: 'Customer', id: string, email: string, firstName?: string | null, lastName?: string | null, displayName: string, phone?: string | null, emailVerified: boolean, ordersCount: number, createdAt: string, totalSpent: { __typename?: 'Money', amount: string, currencyCode: string }, defaultAddress?: { __typename?: 'MailingAddress', id: string, firstName?: string | null, lastName?: string | null, address1?: string | null, address2?: string | null, city?: string | null, province?: string | null, zip?: string | null, country?: string | null, phone?: string | null } | null };
|
|
3901
3933
|
|
|
3902
|
-
export type
|
|
3934
|
+
export type OrderSummaryFieldsFragment = { __typename?: 'Order', id: string, orderNumber: string, status: StorefrontOrderStatus, financialStatus: OrderFinancialStatus, fulfillmentStatus: OrderFulfillmentStatus, processedAt: string, lineItemsCount: number, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShipping?: { __typename?: 'Money', amount: string, currencyCode: string } | null, shippingAddress?: { __typename?: 'MailingAddress', firstName?: string | null, lastName?: string | null, city?: string | null, country?: string | null } | null };
|
|
3903
3935
|
|
|
3904
|
-
export type
|
|
3905
|
-
handle: Scalars['String']['input'];
|
|
3906
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3907
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
3908
|
-
}>;
|
|
3936
|
+
export type CartLineFieldsFragment = { __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, available: boolean, quantityAvailable?: number | null, price: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, image?: { __typename?: 'Image', url: string, altText?: string | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', amount: string, currencyCode: string } | null } };
|
|
3909
3937
|
|
|
3938
|
+
export type CollectionCardFieldsFragment = { __typename?: 'Collection', id: string, handle: string, title: string, description?: string | null, image?: { __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null } | null };
|
|
3910
3939
|
|
|
3911
|
-
export type
|
|
3940
|
+
export type CategoryNodeFieldsFragment = { __typename?: 'Category', id: string, name: string, slug: string, description?: string | null, productCount: number, level: number, path: string, sortOrder: number, image?: { __typename?: 'Image', url: string, altText?: string | null } | null };
|
|
3912
3941
|
|
|
3913
|
-
export type
|
|
3914
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3915
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
3916
|
-
sortKey?: InputMaybe<CollectionSortKeys>;
|
|
3917
|
-
}>;
|
|
3942
|
+
export type ProductCardFieldsFragment = { __typename?: 'Product', id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, featuredImage?: { __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null };
|
|
3918
3943
|
|
|
3944
|
+
export type ProductDetailFieldsFragment = { __typename?: 'Product', description?: string | null, descriptionHtml?: string | null, totalInventory?: number | null, collectRecipientInfo: boolean, type: ProductTypeEnum, createdAt: string, updatedAt: string, id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, seo?: { __typename?: 'SEO', title?: string | null, description?: string | null } | null, images: Array<{ __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null }>, variants: Array<{ __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', amount: string, currencyCode: string, baseAmount: string, baseCurrencyCode: string, isConverted: boolean }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', amount: string, currencyCode: string, baseAmount: string, baseCurrencyCode: string, isConverted: boolean } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }>, originalPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, originalCompareAtPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, featuredImage?: { __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null };
|
|
3919
3945
|
|
|
3920
|
-
export type
|
|
3946
|
+
export type ProductVariantFieldsFragment = { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', amount: string, currencyCode: string, baseAmount: string, baseCurrencyCode: string, isConverted: boolean }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', amount: string, currencyCode: string, baseAmount: string, baseCurrencyCode: string, isConverted: boolean } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> };
|
|
3921
3947
|
|
|
3922
3948
|
export type GetFeaturedProductsQueryVariables = Exact<{
|
|
3923
3949
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3926,22 +3952,24 @@ export type GetFeaturedProductsQueryVariables = Exact<{
|
|
|
3926
3952
|
|
|
3927
3953
|
export type GetFeaturedProductsQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string, description?: string | null, featuredImage?: { __typename?: 'Image', url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null } } };
|
|
3928
3954
|
|
|
3929
|
-
export type
|
|
3930
|
-
|
|
3955
|
+
export type SearchProductsWithFiltersQueryVariables = Exact<{
|
|
3956
|
+
query: Scalars['String']['input'];
|
|
3957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3958
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3959
|
+
filters?: InputMaybe<ProductFilterInput>;
|
|
3931
3960
|
}>;
|
|
3932
3961
|
|
|
3933
3962
|
|
|
3934
|
-
export type
|
|
3963
|
+
export type SearchProductsWithFiltersQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, featuredImage?: { __typename?: 'Image', url: string, altText?: string | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } };
|
|
3935
3964
|
|
|
3936
|
-
export type
|
|
3937
|
-
|
|
3965
|
+
export type GetCollectionWithProductsQueryVariables = Exact<{
|
|
3966
|
+
handle: Scalars['String']['input'];
|
|
3938
3967
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3939
3968
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3940
|
-
filters?: InputMaybe<ProductFilterInput>;
|
|
3941
3969
|
}>;
|
|
3942
3970
|
|
|
3943
3971
|
|
|
3944
|
-
export type
|
|
3972
|
+
export type GetCollectionWithProductsQuery = { __typename?: 'Query', collection?: { __typename?: 'Collection', id: string, title: string, description?: string | null, descriptionHtml?: string | null, image?: { __typename?: 'Image', url: string, altText?: string | null } | null, seo?: { __typename?: 'SEO', title?: string | null, description?: string | null } | null, products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string, description?: string | null, vendor?: string | null, productType?: string | null, tags: Array<string>, totalInventory?: number | null, featuredImage?: { __typename?: 'Image', url: string, altText?: string | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string, baseAmount: string, baseCurrencyCode: string, isConverted: boolean } } } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } } | null };
|
|
3945
3973
|
|
|
3946
3974
|
export type PageInfoFragment = { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null };
|
|
3947
3975
|
|
|
@@ -3951,15 +3979,19 @@ export type ImageFragment = { __typename?: 'Image', id?: string | null, url: str
|
|
|
3951
3979
|
|
|
3952
3980
|
export type MoneyFragment = { __typename?: 'Money', amount: string, currencyCode: string };
|
|
3953
3981
|
|
|
3954
|
-
export type
|
|
3982
|
+
export type PriceFragment = { __typename?: 'PriceMoney', amount: string, currencyCode: string };
|
|
3983
|
+
|
|
3984
|
+
export type PriceMoneyFragment = { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string };
|
|
3955
3985
|
|
|
3956
3986
|
export type SelectedOptionFragment = { __typename?: 'SelectedOption', name: string, value: string };
|
|
3957
3987
|
|
|
3958
|
-
export type ProductVariantFragment = { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney',
|
|
3988
|
+
export type ProductVariantFragment = { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> };
|
|
3959
3989
|
|
|
3960
|
-
export type
|
|
3990
|
+
export type ProductCardFragment = { __typename?: 'Product', id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null };
|
|
3961
3991
|
|
|
3962
|
-
export type
|
|
3992
|
+
export type ProductBaseFragment = { __typename?: 'Product', description?: string | null, descriptionHtml?: string | null, totalInventory?: number | null, type: ProductTypeEnum, collectRecipientInfo: boolean, createdAt: string, updatedAt: string, id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, originalPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, originalCompareAtPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null };
|
|
3993
|
+
|
|
3994
|
+
export type ProductFullFragment = { __typename?: 'Product', description?: string | null, descriptionHtml?: string | null, totalInventory?: number | null, type: ProductTypeEnum, collectRecipientInfo: boolean, createdAt: string, updatedAt: string, id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, images: Array<{ __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null }>, variants: Array<{ __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }>, seo?: { __typename?: 'SEO', title?: string | null, description?: string | null } | null, originalPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, originalCompareAtPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null };
|
|
3963
3995
|
|
|
3964
3996
|
export type CollectionFragment = { __typename?: 'Collection', id: string, handle: string, title: string, description?: string | null, descriptionHtml?: string | null, createdAt: string, updatedAt: string, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, seo?: { __typename?: 'SEO', title?: string | null, description?: string | null } | null };
|
|
3965
3997
|
|
|
@@ -3973,11 +4005,11 @@ export type CustomerFragment = { __typename?: 'Customer', id: string, email: str
|
|
|
3973
4005
|
|
|
3974
4006
|
export type OrderFragment = { __typename?: 'Order', id: string, orderNumber: string, status: StorefrontOrderStatus, financialStatus: OrderFinancialStatus, fulfillmentStatus: OrderFulfillmentStatus, processedAt: string, confirmedAt?: string | null, cancelledAt?: string | null, expiredAt?: string | null, lineItemsCount: number, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax?: { __typename?: 'Money', amount: string, currencyCode: string } | null, totalShipping?: { __typename?: 'Money', amount: string, currencyCode: string } | null, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null };
|
|
3975
4007
|
|
|
3976
|
-
export type CartCostFragment = { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4008
|
+
export type CartCostFragment = { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null };
|
|
3977
4009
|
|
|
3978
|
-
export type CartLineCostFragment = { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney',
|
|
4010
|
+
export type CartLineCostFragment = { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null };
|
|
3979
4011
|
|
|
3980
|
-
export type CartLineFragment = { __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney',
|
|
4012
|
+
export type CartLineFragment = { __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> };
|
|
3981
4013
|
|
|
3982
4014
|
export type CartBuyerIdentityFragment = { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null };
|
|
3983
4015
|
|
|
@@ -3985,7 +4017,7 @@ export type CartDiscountCodeFragment = { __typename?: 'CartDiscountCode', code:
|
|
|
3985
4017
|
|
|
3986
4018
|
export type CartDiscountAllocationFragment = { __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } };
|
|
3987
4019
|
|
|
3988
|
-
export type CartFragment = { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4020
|
+
export type CartFragment = { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> };
|
|
3989
4021
|
|
|
3990
4022
|
export type ShopColorsFragment = { __typename?: 'ShopColors', primary?: string | null, secondary?: string | null, accent?: string | null, background?: string | null, text?: string | null };
|
|
3991
4023
|
|
|
@@ -3999,7 +4031,11 @@ export type BusinessHourFragment = { __typename?: 'BusinessHour', day: string, o
|
|
|
3999
4031
|
|
|
4000
4032
|
export type ShopBrandingFragment = { __typename?: 'ShopBranding', logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, favicon?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, colors?: { __typename?: 'ShopColors', primary?: string | null, secondary?: string | null, accent?: string | null, background?: string | null, text?: string | null } | null, fonts?: { __typename?: 'ShopFonts', primary?: string | null, heading?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', facebook?: string | null, instagram?: string | null, twitter?: string | null, youtube?: string | null, tiktok?: string | null, linkedin?: string | null, pinterest?: string | null } | null };
|
|
4001
4033
|
|
|
4002
|
-
export type
|
|
4034
|
+
export type BotProtectionProviderFragment = { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string };
|
|
4035
|
+
|
|
4036
|
+
export type BotProtectionFragment = { __typename?: 'BotProtectionInfo', protectedOperations: Array<string>, primary: { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string }, fallback?: { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string } | null };
|
|
4037
|
+
|
|
4038
|
+
export type ShopFragment = { __typename?: 'Shop', id: string, name: string, description?: string | null, primaryDomain?: string | null, currencyCode: string, supportedCurrencies: Array<string>, paymentCurrencies: Array<string>, defaultLanguage?: string | null, supportedLanguages?: Array<string> | null, contactEmail?: string | null, contactPhone?: string | null, logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, address?: { __typename?: 'ShopAddress', address1?: string | null, address2?: string | null, city?: string | null, state?: string | null, postalCode?: string | null, country?: string | null } | null, businessHours?: Array<{ __typename?: 'BusinessHour', day: string, openTime?: string | null, closeTime?: string | null, isClosed: boolean }> | null, branding?: { __typename?: 'ShopBranding', logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, favicon?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, colors?: { __typename?: 'ShopColors', primary?: string | null, secondary?: string | null, accent?: string | null, background?: string | null, text?: string | null } | null, fonts?: { __typename?: 'ShopFonts', primary?: string | null, heading?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', facebook?: string | null, instagram?: string | null, twitter?: string | null, youtube?: string | null, tiktok?: string | null, linkedin?: string | null, pinterest?: string | null } | null } | null, botProtection?: { __typename?: 'BotProtectionInfo', protectedOperations: Array<string>, primary: { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string }, fallback?: { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string } | null } | null };
|
|
4003
4039
|
|
|
4004
4040
|
export type PaymentMethodFragment = { __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number };
|
|
4005
4041
|
|
|
@@ -4017,11 +4053,11 @@ export type DiscountApplicationFragment = { __typename?: 'DiscountApplication',
|
|
|
4017
4053
|
|
|
4018
4054
|
export type DiscountCodeFragment = { __typename?: 'DiscountCode', code: string, applicable: boolean };
|
|
4019
4055
|
|
|
4020
|
-
export type CheckoutLineItemFragment = { __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } };
|
|
4056
|
+
export type CheckoutLineItemFragment = { __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null };
|
|
4021
4057
|
|
|
4022
4058
|
export type AppliedGiftCardFragment = { __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } };
|
|
4023
4059
|
|
|
4024
|
-
export type CheckoutFragment = { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } };
|
|
4060
|
+
export type CheckoutFragment = { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } };
|
|
4025
4061
|
|
|
4026
4062
|
export type ShipmentEventFragment = { __typename?: 'ShipmentEvent', id: string, status: ShipmentStatus, description?: string | null, location?: string | null, occurredAt: string, providerEventCode?: string | null };
|
|
4027
4063
|
|
|
@@ -4099,12 +4135,16 @@ export type RedeemRewardPayloadFragment = { __typename?: 'RedeemRewardPayload',
|
|
|
4099
4135
|
|
|
4100
4136
|
export type GenerateReferralCodePayloadFragment = { __typename?: 'GenerateReferralCodePayload', success: boolean, referralCode?: string | null, shareUrl?: string | null, userErrors: Array<string> };
|
|
4101
4137
|
|
|
4138
|
+
export type InventoryLevelFragment = { __typename?: 'InventoryLevel', locationId: string, locationName: string, locationType: LocationType, available: number, onHand: number };
|
|
4139
|
+
|
|
4140
|
+
export type VariantInventoryLevelsFragment = { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, inventoryLevels?: Array<{ __typename?: 'InventoryLevel', locationId: string, locationName: string, locationType: LocationType, available: number, onHand: number }> | null };
|
|
4141
|
+
|
|
4102
4142
|
export type CartCreateMutationVariables = Exact<{
|
|
4103
4143
|
input?: InputMaybe<CartCreateInput>;
|
|
4104
4144
|
}>;
|
|
4105
4145
|
|
|
4106
4146
|
|
|
4107
|
-
export type CartCreateMutation = { __typename?: 'Mutation', cartCreate: { __typename?: 'CartCreatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4147
|
+
export type CartCreateMutation = { __typename?: 'Mutation', cartCreate: { __typename?: 'CartCreatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4108
4148
|
|
|
4109
4149
|
export type CartLinesAddMutationVariables = Exact<{
|
|
4110
4150
|
cartId: Scalars['ID']['input'];
|
|
@@ -4112,7 +4152,7 @@ export type CartLinesAddMutationVariables = Exact<{
|
|
|
4112
4152
|
}>;
|
|
4113
4153
|
|
|
4114
4154
|
|
|
4115
|
-
export type CartLinesAddMutation = { __typename?: 'Mutation', cartLinesAdd: { __typename?: 'CartLinesAddPayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4155
|
+
export type CartLinesAddMutation = { __typename?: 'Mutation', cartLinesAdd: { __typename?: 'CartLinesAddPayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4116
4156
|
|
|
4117
4157
|
export type CartLinesUpdateMutationVariables = Exact<{
|
|
4118
4158
|
cartId: Scalars['ID']['input'];
|
|
@@ -4120,7 +4160,7 @@ export type CartLinesUpdateMutationVariables = Exact<{
|
|
|
4120
4160
|
}>;
|
|
4121
4161
|
|
|
4122
4162
|
|
|
4123
|
-
export type CartLinesUpdateMutation = { __typename?: 'Mutation', cartLinesUpdate: { __typename?: 'CartLinesUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4163
|
+
export type CartLinesUpdateMutation = { __typename?: 'Mutation', cartLinesUpdate: { __typename?: 'CartLinesUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4124
4164
|
|
|
4125
4165
|
export type CartLinesRemoveMutationVariables = Exact<{
|
|
4126
4166
|
cartId: Scalars['ID']['input'];
|
|
@@ -4128,7 +4168,7 @@ export type CartLinesRemoveMutationVariables = Exact<{
|
|
|
4128
4168
|
}>;
|
|
4129
4169
|
|
|
4130
4170
|
|
|
4131
|
-
export type CartLinesRemoveMutation = { __typename?: 'Mutation', cartLinesRemove: { __typename?: 'CartLinesRemovePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4171
|
+
export type CartLinesRemoveMutation = { __typename?: 'Mutation', cartLinesRemove: { __typename?: 'CartLinesRemovePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4132
4172
|
|
|
4133
4173
|
export type CartDiscountCodesUpdateMutationVariables = Exact<{
|
|
4134
4174
|
cartId: Scalars['ID']['input'];
|
|
@@ -4136,7 +4176,7 @@ export type CartDiscountCodesUpdateMutationVariables = Exact<{
|
|
|
4136
4176
|
}>;
|
|
4137
4177
|
|
|
4138
4178
|
|
|
4139
|
-
export type CartDiscountCodesUpdateMutation = { __typename?: 'Mutation', cartDiscountCodesUpdate: { __typename?: 'CartDiscountCodesUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4179
|
+
export type CartDiscountCodesUpdateMutation = { __typename?: 'Mutation', cartDiscountCodesUpdate: { __typename?: 'CartDiscountCodesUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4140
4180
|
|
|
4141
4181
|
export type CartBuyerIdentityUpdateMutationVariables = Exact<{
|
|
4142
4182
|
cartId: Scalars['ID']['input'];
|
|
@@ -4144,7 +4184,7 @@ export type CartBuyerIdentityUpdateMutationVariables = Exact<{
|
|
|
4144
4184
|
}>;
|
|
4145
4185
|
|
|
4146
4186
|
|
|
4147
|
-
export type CartBuyerIdentityUpdateMutation = { __typename?: 'Mutation', cartBuyerIdentityUpdate: { __typename?: 'CartBuyerIdentityUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4187
|
+
export type CartBuyerIdentityUpdateMutation = { __typename?: 'Mutation', cartBuyerIdentityUpdate: { __typename?: 'CartBuyerIdentityUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4148
4188
|
|
|
4149
4189
|
export type CartNoteUpdateMutationVariables = Exact<{
|
|
4150
4190
|
cartId: Scalars['ID']['input'];
|
|
@@ -4152,7 +4192,7 @@ export type CartNoteUpdateMutationVariables = Exact<{
|
|
|
4152
4192
|
}>;
|
|
4153
4193
|
|
|
4154
4194
|
|
|
4155
|
-
export type CartNoteUpdateMutation = { __typename?: 'Mutation', cartNoteUpdate: { __typename?: 'CartNoteUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4195
|
+
export type CartNoteUpdateMutation = { __typename?: 'Mutation', cartNoteUpdate: { __typename?: 'CartNoteUpdatePayload', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null, userErrors: Array<{ __typename?: 'UserError', message: string, code?: string | null, field?: Array<string> | null }> } };
|
|
4156
4196
|
|
|
4157
4197
|
export type CustomerCreateMutationVariables = Exact<{
|
|
4158
4198
|
input: CustomerCreateInput;
|
|
@@ -4244,7 +4284,7 @@ export type CheckoutCreateMutationVariables = Exact<{
|
|
|
4244
4284
|
}>;
|
|
4245
4285
|
|
|
4246
4286
|
|
|
4247
|
-
export type CheckoutCreateMutation = { __typename?: 'Mutation', checkoutCreate: { __typename?: 'CheckoutCreatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4287
|
+
export type CheckoutCreateMutation = { __typename?: 'Mutation', checkoutCreate: { __typename?: 'CheckoutCreatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4248
4288
|
|
|
4249
4289
|
export type CheckoutShippingAddressUpdateMutationVariables = Exact<{
|
|
4250
4290
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4252,7 +4292,7 @@ export type CheckoutShippingAddressUpdateMutationVariables = Exact<{
|
|
|
4252
4292
|
}>;
|
|
4253
4293
|
|
|
4254
4294
|
|
|
4255
|
-
export type CheckoutShippingAddressUpdateMutation = { __typename?: 'Mutation', checkoutShippingAddressUpdate: { __typename?: 'CheckoutShippingAddressUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4295
|
+
export type CheckoutShippingAddressUpdateMutation = { __typename?: 'Mutation', checkoutShippingAddressUpdate: { __typename?: 'CheckoutShippingAddressUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4256
4296
|
|
|
4257
4297
|
export type CheckoutBillingAddressUpdateMutationVariables = Exact<{
|
|
4258
4298
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4260,7 +4300,7 @@ export type CheckoutBillingAddressUpdateMutationVariables = Exact<{
|
|
|
4260
4300
|
}>;
|
|
4261
4301
|
|
|
4262
4302
|
|
|
4263
|
-
export type CheckoutBillingAddressUpdateMutation = { __typename?: 'Mutation', checkoutBillingAddressUpdate: { __typename?: 'CheckoutBillingAddressUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4303
|
+
export type CheckoutBillingAddressUpdateMutation = { __typename?: 'Mutation', checkoutBillingAddressUpdate: { __typename?: 'CheckoutBillingAddressUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4264
4304
|
|
|
4265
4305
|
export type CheckoutEmailUpdateMutationVariables = Exact<{
|
|
4266
4306
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4268,7 +4308,7 @@ export type CheckoutEmailUpdateMutationVariables = Exact<{
|
|
|
4268
4308
|
}>;
|
|
4269
4309
|
|
|
4270
4310
|
|
|
4271
|
-
export type CheckoutEmailUpdateMutation = { __typename?: 'Mutation', checkoutEmailUpdate: { __typename?: 'CheckoutEmailUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4311
|
+
export type CheckoutEmailUpdateMutation = { __typename?: 'Mutation', checkoutEmailUpdate: { __typename?: 'CheckoutEmailUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4272
4312
|
|
|
4273
4313
|
export type CheckoutShippingLineUpdateMutationVariables = Exact<{
|
|
4274
4314
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4276,7 +4316,7 @@ export type CheckoutShippingLineUpdateMutationVariables = Exact<{
|
|
|
4276
4316
|
}>;
|
|
4277
4317
|
|
|
4278
4318
|
|
|
4279
|
-
export type CheckoutShippingLineUpdateMutation = { __typename?: 'Mutation', checkoutShippingLineUpdate: { __typename?: 'CheckoutShippingLineUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4319
|
+
export type CheckoutShippingLineUpdateMutation = { __typename?: 'Mutation', checkoutShippingLineUpdate: { __typename?: 'CheckoutShippingLineUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4280
4320
|
|
|
4281
4321
|
export type CheckoutDiscountCodeApplyMutationVariables = Exact<{
|
|
4282
4322
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4284,7 +4324,7 @@ export type CheckoutDiscountCodeApplyMutationVariables = Exact<{
|
|
|
4284
4324
|
}>;
|
|
4285
4325
|
|
|
4286
4326
|
|
|
4287
|
-
export type CheckoutDiscountCodeApplyMutation = { __typename?: 'Mutation', checkoutDiscountCodeApply: { __typename?: 'CheckoutDiscountCodeApplyPayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4327
|
+
export type CheckoutDiscountCodeApplyMutation = { __typename?: 'Mutation', checkoutDiscountCodeApply: { __typename?: 'CheckoutDiscountCodeApplyPayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4288
4328
|
|
|
4289
4329
|
export type CheckoutDiscountCodeRemoveMutationVariables = Exact<{
|
|
4290
4330
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4292,7 +4332,7 @@ export type CheckoutDiscountCodeRemoveMutationVariables = Exact<{
|
|
|
4292
4332
|
}>;
|
|
4293
4333
|
|
|
4294
4334
|
|
|
4295
|
-
export type CheckoutDiscountCodeRemoveMutation = { __typename?: 'Mutation', checkoutDiscountCodeRemove: { __typename?: 'CheckoutDiscountCodeRemovePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4335
|
+
export type CheckoutDiscountCodeRemoveMutation = { __typename?: 'Mutation', checkoutDiscountCodeRemove: { __typename?: 'CheckoutDiscountCodeRemovePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4296
4336
|
|
|
4297
4337
|
export type CheckoutDiscountCodeValidateMutationVariables = Exact<{
|
|
4298
4338
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4308,7 +4348,7 @@ export type CheckoutPaymentMethodUpdateMutationVariables = Exact<{
|
|
|
4308
4348
|
}>;
|
|
4309
4349
|
|
|
4310
4350
|
|
|
4311
|
-
export type CheckoutPaymentMethodUpdateMutation = { __typename?: 'Mutation', checkoutPaymentMethodUpdate: { __typename?: 'CheckoutPaymentMethodUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4351
|
+
export type CheckoutPaymentMethodUpdateMutation = { __typename?: 'Mutation', checkoutPaymentMethodUpdate: { __typename?: 'CheckoutPaymentMethodUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4312
4352
|
|
|
4313
4353
|
export type CheckoutCompleteMutationVariables = Exact<{
|
|
4314
4354
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4316,7 +4356,7 @@ export type CheckoutCompleteMutationVariables = Exact<{
|
|
|
4316
4356
|
}>;
|
|
4317
4357
|
|
|
4318
4358
|
|
|
4319
|
-
export type CheckoutCompleteMutation = { __typename?: 'Mutation', checkoutComplete: { __typename?: 'CheckoutCompletePayload', paymentUrl?: string | null, checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, order?: { __typename?: 'Order', id: string, orderNumber: string, status: StorefrontOrderStatus, financialStatus: OrderFinancialStatus, fulfillmentStatus: OrderFulfillmentStatus, processedAt: string, confirmedAt?: string | null, cancelledAt?: string | null, expiredAt?: string | null, lineItemsCount: number, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax?: { __typename?: 'Money', amount: string, currencyCode: string } | null, totalShipping?: { __typename?: 'Money', amount: string, currencyCode: string } | null, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4359
|
+
export type CheckoutCompleteMutation = { __typename?: 'Mutation', checkoutComplete: { __typename?: 'CheckoutCompletePayload', paymentUrl?: string | null, checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, order?: { __typename?: 'Order', id: string, orderNumber: string, status: StorefrontOrderStatus, financialStatus: OrderFinancialStatus, fulfillmentStatus: OrderFulfillmentStatus, processedAt: string, confirmedAt?: string | null, cancelledAt?: string | null, expiredAt?: string | null, lineItemsCount: number, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax?: { __typename?: 'Money', amount: string, currencyCode: string } | null, totalShipping?: { __typename?: 'Money', amount: string, currencyCode: string } | null, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4320
4360
|
|
|
4321
4361
|
export type CheckoutGiftCardApplyMutationVariables = Exact<{
|
|
4322
4362
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4324,7 +4364,7 @@ export type CheckoutGiftCardApplyMutationVariables = Exact<{
|
|
|
4324
4364
|
}>;
|
|
4325
4365
|
|
|
4326
4366
|
|
|
4327
|
-
export type CheckoutGiftCardApplyMutation = { __typename?: 'Mutation', checkoutGiftCardApply: { __typename?: 'CheckoutGiftCardApplyPayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4367
|
+
export type CheckoutGiftCardApplyMutation = { __typename?: 'Mutation', checkoutGiftCardApply: { __typename?: 'CheckoutGiftCardApplyPayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4328
4368
|
|
|
4329
4369
|
export type CheckoutGiftCardRemoveMutationVariables = Exact<{
|
|
4330
4370
|
checkoutId: Scalars['ID']['input'];
|
|
@@ -4332,14 +4372,14 @@ export type CheckoutGiftCardRemoveMutationVariables = Exact<{
|
|
|
4332
4372
|
}>;
|
|
4333
4373
|
|
|
4334
4374
|
|
|
4335
|
-
export type CheckoutGiftCardRemoveMutation = { __typename?: 'Mutation', checkoutGiftCardRemove: { __typename?: 'CheckoutGiftCardRemovePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4375
|
+
export type CheckoutGiftCardRemoveMutation = { __typename?: 'Mutation', checkoutGiftCardRemove: { __typename?: 'CheckoutGiftCardRemovePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4336
4376
|
|
|
4337
4377
|
export type CheckoutGiftCardRecipientUpdateMutationVariables = Exact<{
|
|
4338
4378
|
input: CheckoutGiftCardRecipientInput;
|
|
4339
4379
|
}>;
|
|
4340
4380
|
|
|
4341
4381
|
|
|
4342
|
-
export type CheckoutGiftCardRecipientUpdateMutation = { __typename?: 'Mutation', checkoutGiftCardRecipientUpdate: { __typename?: 'CheckoutGiftCardRecipientUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4382
|
+
export type CheckoutGiftCardRecipientUpdateMutation = { __typename?: 'Mutation', checkoutGiftCardRecipientUpdate: { __typename?: 'CheckoutGiftCardRecipientUpdatePayload', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null, userErrors: Array<{ __typename?: 'CheckoutUserError', field: Array<string>, message: string, code?: CheckoutErrorCode | null }> } };
|
|
4343
4383
|
|
|
4344
4384
|
export type ReturnCreateMutationVariables = Exact<{
|
|
4345
4385
|
input: ReturnCreateInput;
|
|
@@ -4372,7 +4412,7 @@ export type GenerateReferralCodeMutation = { __typename?: 'Mutation', generateRe
|
|
|
4372
4412
|
export type ShopQueryVariables = Exact<{ [key: string]: never; }>;
|
|
4373
4413
|
|
|
4374
4414
|
|
|
4375
|
-
export type ShopQuery = { __typename?: 'Query', shop: { __typename?: 'Shop', id: string, name: string, description?: string | null, primaryDomain?: string | null, currencyCode: string, supportedCurrencies: Array<string>, paymentCurrencies: Array<string>, contactEmail?: string | null, contactPhone?: string | null, logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, address?: { __typename?: 'ShopAddress', address1?: string | null, address2?: string | null, city?: string | null, state?: string | null, postalCode?: string | null, country?: string | null } | null, businessHours?: Array<{ __typename?: 'BusinessHour', day: string, openTime?: string | null, closeTime?: string | null, isClosed: boolean }> | null, branding?: { __typename?: 'ShopBranding', logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, favicon?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, colors?: { __typename?: 'ShopColors', primary?: string | null, secondary?: string | null, accent?: string | null, background?: string | null, text?: string | null } | null, fonts?: { __typename?: 'ShopFonts', primary?: string | null, heading?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', facebook?: string | null, instagram?: string | null, twitter?: string | null, youtube?: string | null, tiktok?: string | null, linkedin?: string | null, pinterest?: string | null } | null } | null } };
|
|
4415
|
+
export type ShopQuery = { __typename?: 'Query', shop: { __typename?: 'Shop', id: string, name: string, description?: string | null, primaryDomain?: string | null, currencyCode: string, supportedCurrencies: Array<string>, paymentCurrencies: Array<string>, defaultLanguage?: string | null, supportedLanguages?: Array<string> | null, contactEmail?: string | null, contactPhone?: string | null, logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, address?: { __typename?: 'ShopAddress', address1?: string | null, address2?: string | null, city?: string | null, state?: string | null, postalCode?: string | null, country?: string | null } | null, businessHours?: Array<{ __typename?: 'BusinessHour', day: string, openTime?: string | null, closeTime?: string | null, isClosed: boolean }> | null, branding?: { __typename?: 'ShopBranding', logo?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, favicon?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, colors?: { __typename?: 'ShopColors', primary?: string | null, secondary?: string | null, accent?: string | null, background?: string | null, text?: string | null } | null, fonts?: { __typename?: 'ShopFonts', primary?: string | null, heading?: string | null } | null, socialLinks?: { __typename?: 'SocialLinks', facebook?: string | null, instagram?: string | null, twitter?: string | null, youtube?: string | null, tiktok?: string | null, linkedin?: string | null, pinterest?: string | null } | null } | null, botProtection?: { __typename?: 'BotProtectionInfo', protectedOperations: Array<string>, primary: { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string }, fallback?: { __typename?: 'BotProtectionProviderInfo', provider: string, siteKey: string, scriptUrl: string } | null } | null } };
|
|
4376
4416
|
|
|
4377
4417
|
export type ProductQueryVariables = Exact<{
|
|
4378
4418
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4380,7 +4420,7 @@ export type ProductQueryVariables = Exact<{
|
|
|
4380
4420
|
}>;
|
|
4381
4421
|
|
|
4382
4422
|
|
|
4383
|
-
export type ProductQuery = { __typename?: 'Query', product?: { __typename?: 'Product',
|
|
4423
|
+
export type ProductQuery = { __typename?: 'Query', product?: { __typename?: 'Product', description?: string | null, descriptionHtml?: string | null, totalInventory?: number | null, type: ProductTypeEnum, collectRecipientInfo: boolean, createdAt: string, updatedAt: string, id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, images: Array<{ __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null }>, variants: Array<{ __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }>, seo?: { __typename?: 'SEO', title?: string | null, description?: string | null } | null, originalPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, originalCompareAtPriceRange?: { __typename?: 'ProductPriceRange', minVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'Money', amount: string, currencyCode: string } } | null, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null } | null };
|
|
4384
4424
|
|
|
4385
4425
|
export type ProductsQueryVariables = Exact<{
|
|
4386
4426
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4392,7 +4432,7 @@ export type ProductsQueryVariables = Exact<{
|
|
|
4392
4432
|
}>;
|
|
4393
4433
|
|
|
4394
4434
|
|
|
4395
|
-
export type ProductsQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string,
|
|
4435
|
+
export type ProductsQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } };
|
|
4396
4436
|
|
|
4397
4437
|
export type ProductSearchQueryVariables = Exact<{
|
|
4398
4438
|
query: Scalars['String']['input'];
|
|
@@ -4402,7 +4442,7 @@ export type ProductSearchQueryVariables = Exact<{
|
|
|
4402
4442
|
}>;
|
|
4403
4443
|
|
|
4404
4444
|
|
|
4405
|
-
export type ProductSearchQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string,
|
|
4445
|
+
export type ProductSearchQuery = { __typename?: 'Query', products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } } };
|
|
4406
4446
|
|
|
4407
4447
|
export type CollectionQueryVariables = Exact<{
|
|
4408
4448
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4412,7 +4452,7 @@ export type CollectionQueryVariables = Exact<{
|
|
|
4412
4452
|
}>;
|
|
4413
4453
|
|
|
4414
4454
|
|
|
4415
|
-
export type CollectionQuery = { __typename?: 'Query', collection?: { __typename?: 'Collection', id: string, handle: string, title: string, description?: string | null, descriptionHtml?: string | null, createdAt: string, updatedAt: string, products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string,
|
|
4455
|
+
export type CollectionQuery = { __typename?: 'Query', collection?: { __typename?: 'Collection', id: string, handle: string, title: string, description?: string | null, descriptionHtml?: string | null, createdAt: string, updatedAt: string, products: { __typename?: 'ProductConnection', totalCount: number, edges: Array<{ __typename?: 'ProductEdge', cursor: string, node: { __typename?: 'Product', id: string, handle: string, title: string, vendor?: string | null, productType?: string | null, availableForSale: boolean, averageRating?: number | null, reviewCount?: number | null, tags: Array<string>, featuredImage?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, priceRange: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } }, compareAtPriceRange?: { __typename?: 'ConvertedPriceRange', minVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string }, maxVariantPrice: { __typename?: 'PriceMoney', amount: string, currencyCode: string } } | null } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, seo?: { __typename?: 'SEO', title?: string | null, description?: string | null } | null } | null };
|
|
4416
4456
|
|
|
4417
4457
|
export type CollectionsQueryVariables = Exact<{
|
|
4418
4458
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4443,7 +4483,7 @@ export type CartQueryVariables = Exact<{
|
|
|
4443
4483
|
}>;
|
|
4444
4484
|
|
|
4445
4485
|
|
|
4446
|
-
export type CartQuery = { __typename?: 'Query', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney',
|
|
4486
|
+
export type CartQuery = { __typename?: 'Query', cart?: { __typename?: 'Cart', id: string, checkoutUrl?: string | null, totalQuantity: number, note?: string | null, createdAt: string, updatedAt: string, cost: { __typename?: 'CartCost', totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalTaxAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, totalDutyAmount?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, lines: Array<{ __typename?: 'CartLine', id: string, quantity: number, productId?: string | null, productTitle?: string | null, productHandle?: string | null, productType?: ProductTypeEnum | null, merchandise: { __typename?: 'ProductVariant', id: string, title: string, sku?: string | null, available: boolean, quantityAvailable?: number | null, barcode?: string | null, weight?: number | null, position?: number | null, price: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, originalPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, compareAtPrice?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null, originalCompareAtPrice?: { __typename?: 'Money', amount: string, currencyCode: string } | null, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null, selectedOptions: Array<{ __typename?: 'SelectedOption', name: string, value: string }> }, cost: { __typename?: 'CartLineCost', amountPerQuantity: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, subtotalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, totalAmount: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string }, compareAtAmountPerQuantity?: { __typename?: 'PriceMoney', baseAmount: string, baseCurrencyCode: string, exchangeRate?: number | null, marginApplied?: number | null, rateTimestamp?: string | null, isConverted: boolean, amount: string, currencyCode: string } | null }, attributes: Array<{ __typename?: 'Attribute', key: string, value?: string | null }> }>, buyerIdentity?: { __typename?: 'CartBuyerIdentity', email?: string | null, phone?: string | null, countryCode?: string | null } | null, discountCodes: Array<{ __typename?: 'CartDiscountCode', code: string, applicable: boolean }>, discountAllocations: Array<{ __typename?: 'CartDiscountAllocation', discountCode: string, amount: { __typename?: 'Money', amount: string, currencyCode: string } }>, attributes: Array<{ __typename?: 'CartAttribute', key: string, value?: string | null }> } | null };
|
|
4447
4487
|
|
|
4448
4488
|
export type CustomerQueryVariables = Exact<{
|
|
4449
4489
|
customerAccessToken: Scalars['String']['input'];
|
|
@@ -4452,12 +4492,27 @@ export type CustomerQueryVariables = Exact<{
|
|
|
4452
4492
|
|
|
4453
4493
|
export type CustomerQuery = { __typename?: 'Query', customer?: { __typename?: 'Customer', id: string, email: string, firstName?: string | null, lastName?: string | null, displayName: string, phone?: string | null, emailVerified: boolean, emailMarketingState: string, ordersCount: number, createdAt: string, updatedAt: string, addresses: Array<{ __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean }>, orders: { __typename?: 'OrderConnection', totalCount: number, edges: Array<{ __typename?: 'OrderEdge', cursor: string, node: { __typename?: 'Order', id: string, orderNumber: string, status: StorefrontOrderStatus, financialStatus: OrderFinancialStatus, fulfillmentStatus: OrderFulfillmentStatus, processedAt: string, confirmedAt?: string | null, cancelledAt?: string | null, expiredAt?: string | null, lineItemsCount: number, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax?: { __typename?: 'Money', amount: string, currencyCode: string } | null, totalShipping?: { __typename?: 'Money', amount: string, currencyCode: string } | null, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null } }, defaultAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, totalSpent: { __typename?: 'Money', amount: string, currencyCode: string } } | null };
|
|
4454
4494
|
|
|
4495
|
+
export type CustomerProfileQueryVariables = Exact<{
|
|
4496
|
+
customerAccessToken: Scalars['String']['input'];
|
|
4497
|
+
}>;
|
|
4498
|
+
|
|
4499
|
+
|
|
4500
|
+
export type CustomerProfileQuery = { __typename?: 'Query', customer?: { __typename?: 'Customer', id: string, email: string, firstName?: string | null, lastName?: string | null, displayName: string, phone?: string | null, emailVerified: boolean, emailMarketingState: string, ordersCount: number, createdAt: string, updatedAt: string, defaultAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, totalSpent: { __typename?: 'Money', amount: string, currencyCode: string } } | null };
|
|
4501
|
+
|
|
4502
|
+
export type CustomerOrderQueryVariables = Exact<{
|
|
4503
|
+
orderId: Scalars['ID']['input'];
|
|
4504
|
+
customerAccessToken: Scalars['String']['input'];
|
|
4505
|
+
}>;
|
|
4506
|
+
|
|
4507
|
+
|
|
4508
|
+
export type CustomerOrderQuery = { __typename?: 'Query', customerOrder?: { __typename?: 'Order', id: string, orderNumber: string, status: StorefrontOrderStatus, financialStatus: OrderFinancialStatus, fulfillmentStatus: OrderFulfillmentStatus, processedAt: string, confirmedAt?: string | null, cancelledAt?: string | null, expiredAt?: string | null, lineItemsCount: number, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax?: { __typename?: 'Money', amount: string, currencyCode: string } | null, totalShipping?: { __typename?: 'Money', amount: string, currencyCode: string } | null, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null } | null };
|
|
4509
|
+
|
|
4455
4510
|
export type CheckoutQueryVariables = Exact<{
|
|
4456
4511
|
id: Scalars['ID']['input'];
|
|
4457
4512
|
}>;
|
|
4458
4513
|
|
|
4459
4514
|
|
|
4460
|
-
export type CheckoutQuery = { __typename?: 'Query', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string } }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null };
|
|
4515
|
+
export type CheckoutQuery = { __typename?: 'Query', checkout?: { __typename?: 'Checkout', id: string, ready: boolean, completed: boolean, completedOrderId?: string | null, webUrl: string, totalQuantity: number, shippingRatesReady: boolean, email?: string | null, phone?: string | null, customerId?: string | null, selectedPaymentMethodId?: string | null, currencyCode: string, note?: string | null, createdAt: string, updatedAt: string, lineItems: Array<{ __typename?: 'CheckoutLineItem', id: string, title: string, variantTitle?: string | null, quantity: number, variantId?: string | null, productId?: string | null, sku?: string | null, unitPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, image?: { __typename?: 'Image', id?: string | null, url: string, altText?: string | null, width?: number | null, height?: number | null } | null }>, shippingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, billingAddress?: { __typename?: 'MailingAddress', id: string, address1?: string | null, address2?: string | null, city?: string | null, company?: string | null, country?: string | null, countryCode?: string | null, firstName?: string | null, lastName?: string | null, phone?: string | null, province?: string | null, provinceCode?: string | null, zip?: string | null, isDefault: boolean } | null, shippingLine?: { __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } } | null, availableShippingRates: Array<{ __typename?: 'ShippingRate', handle: string, title: string, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, discountCodes: Array<{ __typename?: 'DiscountCode', code: string, applicable: boolean }>, discountApplications: Array<{ __typename?: 'DiscountApplication', code: string, applicable: boolean, type?: DiscountApplicationType | null, title?: string | null, buyQuantity?: number | null, getQuantity?: number | null, getDiscountPercent?: number | null, value?: { __typename?: 'Money', amount: string, currencyCode: string } | null, affectedItems?: Array<{ __typename?: 'DiscountAffectedItem', productId: string, variantId?: string | null, title: string, quantity: number, isFreeItem: boolean, originalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, discountedPrice: { __typename?: 'Money', amount: string, currencyCode: string }, savings: { __typename?: 'Money', amount: string, currencyCode: string } }> | null }>, availablePaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, name: string, provider: string, type: PaymentMethodType, icon?: string | null, description?: string | null, isDefault: boolean, supportedCurrencies?: Array<string> | null, position: number }>, subtotalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalShippingPrice: { __typename?: 'Money', amount: string, currencyCode: string }, totalTax: { __typename?: 'Money', amount: string, currencyCode: string }, taxLines: Array<{ __typename?: 'TaxLine', title: string, rate: number, price: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalDiscounts: { __typename?: 'Money', amount: string, currencyCode: string }, totalPrice: { __typename?: 'Money', amount: string, currencyCode: string }, appliedGiftCards: Array<{ __typename?: 'AppliedGiftCard', maskedCode: string, lastCharacters: string, appliedAmount: { __typename?: 'Money', amount: string, currencyCode: string }, remainingBalance: { __typename?: 'Money', amount: string, currencyCode: string } }>, totalGiftCardAmount: { __typename?: 'Money', amount: string, currencyCode: string }, paymentDue: { __typename?: 'Money', amount: string, currencyCode: string } } | null };
|
|
4461
4516
|
|
|
4462
4517
|
export type AvailablePaymentMethodsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
4463
4518
|
|
|
@@ -4588,172 +4643,542 @@ export class TypedDocumentString<TResult, TVariables>
|
|
|
4588
4643
|
return this.value;
|
|
4589
4644
|
}
|
|
4590
4645
|
}
|
|
4591
|
-
export const
|
|
4592
|
-
fragment
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4646
|
+
export const CustomerInfoFieldsFragmentDoc = new TypedDocumentString(`
|
|
4647
|
+
fragment CustomerInfoFields on Customer {
|
|
4648
|
+
id
|
|
4649
|
+
email
|
|
4650
|
+
firstName
|
|
4651
|
+
lastName
|
|
4652
|
+
displayName
|
|
4653
|
+
phone
|
|
4654
|
+
emailVerified
|
|
4655
|
+
ordersCount
|
|
4656
|
+
totalSpent {
|
|
4657
|
+
amount
|
|
4658
|
+
currencyCode
|
|
4659
|
+
}
|
|
4660
|
+
defaultAddress {
|
|
4661
|
+
id
|
|
4662
|
+
firstName
|
|
4663
|
+
lastName
|
|
4664
|
+
address1
|
|
4665
|
+
address2
|
|
4666
|
+
city
|
|
4667
|
+
province
|
|
4668
|
+
zip
|
|
4669
|
+
country
|
|
4670
|
+
phone
|
|
4671
|
+
}
|
|
4672
|
+
createdAt
|
|
4597
4673
|
}
|
|
4598
|
-
`, {"fragmentName":"
|
|
4599
|
-
export const
|
|
4600
|
-
fragment
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4674
|
+
`, {"fragmentName":"CustomerInfoFields"}) as unknown as TypedDocumentString<CustomerInfoFieldsFragment, unknown>;
|
|
4675
|
+
export const OrderSummaryFieldsFragmentDoc = new TypedDocumentString(`
|
|
4676
|
+
fragment OrderSummaryFields on Order {
|
|
4677
|
+
id
|
|
4678
|
+
orderNumber
|
|
4679
|
+
status
|
|
4680
|
+
financialStatus
|
|
4681
|
+
fulfillmentStatus
|
|
4682
|
+
processedAt
|
|
4683
|
+
lineItemsCount
|
|
4684
|
+
totalPrice {
|
|
4685
|
+
amount
|
|
4686
|
+
currencyCode
|
|
4687
|
+
}
|
|
4688
|
+
subtotalPrice {
|
|
4689
|
+
amount
|
|
4690
|
+
currencyCode
|
|
4691
|
+
}
|
|
4692
|
+
totalShipping {
|
|
4693
|
+
amount
|
|
4694
|
+
currencyCode
|
|
4695
|
+
}
|
|
4696
|
+
shippingAddress {
|
|
4697
|
+
firstName
|
|
4698
|
+
lastName
|
|
4699
|
+
city
|
|
4700
|
+
country
|
|
4701
|
+
}
|
|
4604
4702
|
}
|
|
4605
|
-
`, {"fragmentName":"
|
|
4606
|
-
export const
|
|
4607
|
-
fragment
|
|
4703
|
+
`, {"fragmentName":"OrderSummaryFields"}) as unknown as TypedDocumentString<OrderSummaryFieldsFragment, unknown>;
|
|
4704
|
+
export const CartLineFieldsFragmentDoc = new TypedDocumentString(`
|
|
4705
|
+
fragment CartLineFields on CartLine {
|
|
4608
4706
|
id
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4707
|
+
quantity
|
|
4708
|
+
productId
|
|
4709
|
+
productTitle
|
|
4710
|
+
productHandle
|
|
4711
|
+
productType
|
|
4712
|
+
merchandise {
|
|
4713
|
+
id
|
|
4714
|
+
title
|
|
4715
|
+
available
|
|
4716
|
+
quantityAvailable
|
|
4717
|
+
price {
|
|
4718
|
+
amount
|
|
4719
|
+
currencyCode
|
|
4720
|
+
}
|
|
4721
|
+
image {
|
|
4722
|
+
url
|
|
4723
|
+
altText
|
|
4724
|
+
}
|
|
4725
|
+
selectedOptions {
|
|
4726
|
+
name
|
|
4727
|
+
value
|
|
4728
|
+
}
|
|
4729
|
+
}
|
|
4730
|
+
cost {
|
|
4731
|
+
amountPerQuantity {
|
|
4732
|
+
amount
|
|
4733
|
+
currencyCode
|
|
4734
|
+
}
|
|
4735
|
+
totalAmount {
|
|
4736
|
+
amount
|
|
4737
|
+
currencyCode
|
|
4738
|
+
}
|
|
4739
|
+
compareAtAmountPerQuantity {
|
|
4740
|
+
amount
|
|
4741
|
+
currencyCode
|
|
4742
|
+
}
|
|
4743
|
+
}
|
|
4613
4744
|
}
|
|
4614
|
-
`, {"fragmentName":"
|
|
4615
|
-
export const
|
|
4616
|
-
fragment
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4745
|
+
`, {"fragmentName":"CartLineFields"}) as unknown as TypedDocumentString<CartLineFieldsFragment, unknown>;
|
|
4746
|
+
export const CollectionCardFieldsFragmentDoc = new TypedDocumentString(`
|
|
4747
|
+
fragment CollectionCardFields on Collection {
|
|
4748
|
+
id
|
|
4749
|
+
handle
|
|
4750
|
+
title
|
|
4751
|
+
description
|
|
4752
|
+
image {
|
|
4753
|
+
url
|
|
4754
|
+
altText
|
|
4755
|
+
width
|
|
4756
|
+
height
|
|
4757
|
+
}
|
|
4625
4758
|
}
|
|
4626
|
-
`, {"fragmentName":"
|
|
4627
|
-
export const
|
|
4628
|
-
fragment
|
|
4629
|
-
|
|
4630
|
-
|
|
4759
|
+
`, {"fragmentName":"CollectionCardFields"}) as unknown as TypedDocumentString<CollectionCardFieldsFragment, unknown>;
|
|
4760
|
+
export const CategoryNodeFieldsFragmentDoc = new TypedDocumentString(`
|
|
4761
|
+
fragment CategoryNodeFields on Category {
|
|
4762
|
+
id
|
|
4763
|
+
name
|
|
4764
|
+
slug
|
|
4765
|
+
description
|
|
4766
|
+
productCount
|
|
4767
|
+
level
|
|
4768
|
+
path
|
|
4769
|
+
sortOrder
|
|
4770
|
+
image {
|
|
4771
|
+
url
|
|
4772
|
+
altText
|
|
4773
|
+
}
|
|
4631
4774
|
}
|
|
4632
|
-
`, {"fragmentName":"
|
|
4633
|
-
export const
|
|
4634
|
-
fragment
|
|
4775
|
+
`, {"fragmentName":"CategoryNodeFields"}) as unknown as TypedDocumentString<CategoryNodeFieldsFragment, unknown>;
|
|
4776
|
+
export const ProductCardFieldsFragmentDoc = new TypedDocumentString(`
|
|
4777
|
+
fragment ProductCardFields on Product {
|
|
4635
4778
|
id
|
|
4636
4779
|
handle
|
|
4637
4780
|
title
|
|
4638
|
-
|
|
4639
|
-
|
|
4781
|
+
vendor
|
|
4782
|
+
productType
|
|
4783
|
+
availableForSale
|
|
4784
|
+
averageRating
|
|
4785
|
+
reviewCount
|
|
4786
|
+
tags
|
|
4640
4787
|
featuredImage {
|
|
4641
|
-
|
|
4788
|
+
url
|
|
4789
|
+
altText
|
|
4790
|
+
width
|
|
4791
|
+
height
|
|
4642
4792
|
}
|
|
4643
4793
|
priceRange {
|
|
4644
4794
|
minVariantPrice {
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
maxVariantPrice {
|
|
4648
|
-
...PriceMoney
|
|
4649
|
-
}
|
|
4650
|
-
}
|
|
4651
|
-
originalPriceRange {
|
|
4652
|
-
minVariantPrice {
|
|
4653
|
-
...Money
|
|
4795
|
+
amount
|
|
4796
|
+
currencyCode
|
|
4654
4797
|
}
|
|
4655
4798
|
maxVariantPrice {
|
|
4656
|
-
|
|
4799
|
+
amount
|
|
4800
|
+
currencyCode
|
|
4657
4801
|
}
|
|
4658
4802
|
}
|
|
4659
4803
|
compareAtPriceRange {
|
|
4660
4804
|
minVariantPrice {
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
maxVariantPrice {
|
|
4664
|
-
...PriceMoney
|
|
4665
|
-
}
|
|
4666
|
-
}
|
|
4667
|
-
originalCompareAtPriceRange {
|
|
4668
|
-
minVariantPrice {
|
|
4669
|
-
...Money
|
|
4670
|
-
}
|
|
4671
|
-
maxVariantPrice {
|
|
4672
|
-
...Money
|
|
4805
|
+
amount
|
|
4806
|
+
currencyCode
|
|
4673
4807
|
}
|
|
4674
4808
|
}
|
|
4675
|
-
totalInventory
|
|
4676
|
-
vendor
|
|
4677
|
-
productType
|
|
4678
|
-
type
|
|
4679
|
-
collectRecipientInfo
|
|
4680
|
-
tags
|
|
4681
|
-
createdAt
|
|
4682
|
-
updatedAt
|
|
4683
|
-
averageRating
|
|
4684
|
-
reviewCount
|
|
4685
|
-
availableForSale
|
|
4686
|
-
}
|
|
4687
|
-
fragment Image on Image {
|
|
4688
|
-
id
|
|
4689
|
-
url
|
|
4690
|
-
altText
|
|
4691
|
-
width
|
|
4692
|
-
height
|
|
4693
|
-
}
|
|
4694
|
-
fragment Money on Money {
|
|
4695
|
-
amount
|
|
4696
|
-
currencyCode
|
|
4697
|
-
}
|
|
4698
|
-
fragment PriceMoney on PriceMoney {
|
|
4699
|
-
amount
|
|
4700
|
-
currencyCode
|
|
4701
|
-
baseAmount
|
|
4702
|
-
baseCurrencyCode
|
|
4703
|
-
exchangeRate
|
|
4704
|
-
marginApplied
|
|
4705
|
-
rateTimestamp
|
|
4706
|
-
isConverted
|
|
4707
|
-
}`, {"fragmentName":"ProductBase"}) as unknown as TypedDocumentString<ProductBaseFragment, unknown>;
|
|
4708
|
-
export const SelectedOptionFragmentDoc = new TypedDocumentString(`
|
|
4709
|
-
fragment SelectedOption on SelectedOption {
|
|
4710
|
-
name
|
|
4711
|
-
value
|
|
4712
4809
|
}
|
|
4713
|
-
`, {"fragmentName":"
|
|
4714
|
-
export const
|
|
4715
|
-
fragment
|
|
4810
|
+
`, {"fragmentName":"ProductCardFields"}) as unknown as TypedDocumentString<ProductCardFieldsFragment, unknown>;
|
|
4811
|
+
export const ProductVariantFieldsFragmentDoc = new TypedDocumentString(`
|
|
4812
|
+
fragment ProductVariantFields on ProductVariant {
|
|
4716
4813
|
id
|
|
4717
4814
|
title
|
|
4718
4815
|
sku
|
|
4816
|
+
available
|
|
4817
|
+
quantityAvailable
|
|
4818
|
+
barcode
|
|
4819
|
+
weight
|
|
4820
|
+
position
|
|
4719
4821
|
price {
|
|
4720
|
-
|
|
4822
|
+
amount
|
|
4823
|
+
currencyCode
|
|
4824
|
+
baseAmount
|
|
4825
|
+
baseCurrencyCode
|
|
4826
|
+
isConverted
|
|
4721
4827
|
}
|
|
4722
4828
|
originalPrice {
|
|
4723
|
-
|
|
4829
|
+
amount
|
|
4830
|
+
currencyCode
|
|
4724
4831
|
}
|
|
4725
4832
|
compareAtPrice {
|
|
4726
|
-
|
|
4833
|
+
amount
|
|
4834
|
+
currencyCode
|
|
4835
|
+
baseAmount
|
|
4836
|
+
baseCurrencyCode
|
|
4837
|
+
isConverted
|
|
4727
4838
|
}
|
|
4728
4839
|
originalCompareAtPrice {
|
|
4729
|
-
|
|
4840
|
+
amount
|
|
4841
|
+
currencyCode
|
|
4730
4842
|
}
|
|
4731
|
-
available
|
|
4732
|
-
quantityAvailable
|
|
4733
4843
|
image {
|
|
4734
|
-
|
|
4844
|
+
url
|
|
4845
|
+
altText
|
|
4846
|
+
width
|
|
4847
|
+
height
|
|
4735
4848
|
}
|
|
4736
4849
|
selectedOptions {
|
|
4737
|
-
|
|
4850
|
+
name
|
|
4851
|
+
value
|
|
4738
4852
|
}
|
|
4739
|
-
barcode
|
|
4740
|
-
weight
|
|
4741
|
-
position
|
|
4742
|
-
}
|
|
4743
|
-
fragment Image on Image {
|
|
4744
|
-
id
|
|
4745
|
-
url
|
|
4746
|
-
altText
|
|
4747
|
-
width
|
|
4748
|
-
height
|
|
4749
|
-
}
|
|
4750
|
-
fragment Money on Money {
|
|
4751
|
-
amount
|
|
4752
|
-
currencyCode
|
|
4753
4853
|
}
|
|
4754
|
-
|
|
4854
|
+
`, {"fragmentName":"ProductVariantFields"}) as unknown as TypedDocumentString<ProductVariantFieldsFragment, unknown>;
|
|
4855
|
+
export const ProductDetailFieldsFragmentDoc = new TypedDocumentString(`
|
|
4856
|
+
fragment ProductDetailFields on Product {
|
|
4857
|
+
...ProductCardFields
|
|
4858
|
+
description
|
|
4859
|
+
descriptionHtml
|
|
4860
|
+
totalInventory
|
|
4861
|
+
collectRecipientInfo
|
|
4862
|
+
type
|
|
4863
|
+
createdAt
|
|
4864
|
+
updatedAt
|
|
4865
|
+
seo {
|
|
4866
|
+
title
|
|
4867
|
+
description
|
|
4868
|
+
}
|
|
4869
|
+
images(first: 20) {
|
|
4870
|
+
url
|
|
4871
|
+
altText
|
|
4872
|
+
width
|
|
4873
|
+
height
|
|
4874
|
+
}
|
|
4875
|
+
variants(first: 100) {
|
|
4876
|
+
...ProductVariantFields
|
|
4877
|
+
}
|
|
4878
|
+
originalPriceRange {
|
|
4879
|
+
minVariantPrice {
|
|
4880
|
+
amount
|
|
4881
|
+
currencyCode
|
|
4882
|
+
}
|
|
4883
|
+
}
|
|
4884
|
+
originalCompareAtPriceRange {
|
|
4885
|
+
minVariantPrice {
|
|
4886
|
+
amount
|
|
4887
|
+
currencyCode
|
|
4888
|
+
}
|
|
4889
|
+
}
|
|
4890
|
+
}
|
|
4891
|
+
fragment ProductCardFields on Product {
|
|
4892
|
+
id
|
|
4893
|
+
handle
|
|
4894
|
+
title
|
|
4895
|
+
vendor
|
|
4896
|
+
productType
|
|
4897
|
+
availableForSale
|
|
4898
|
+
averageRating
|
|
4899
|
+
reviewCount
|
|
4900
|
+
tags
|
|
4901
|
+
featuredImage {
|
|
4902
|
+
url
|
|
4903
|
+
altText
|
|
4904
|
+
width
|
|
4905
|
+
height
|
|
4906
|
+
}
|
|
4907
|
+
priceRange {
|
|
4908
|
+
minVariantPrice {
|
|
4909
|
+
amount
|
|
4910
|
+
currencyCode
|
|
4911
|
+
}
|
|
4912
|
+
maxVariantPrice {
|
|
4913
|
+
amount
|
|
4914
|
+
currencyCode
|
|
4915
|
+
}
|
|
4916
|
+
}
|
|
4917
|
+
compareAtPriceRange {
|
|
4918
|
+
minVariantPrice {
|
|
4919
|
+
amount
|
|
4920
|
+
currencyCode
|
|
4921
|
+
}
|
|
4922
|
+
}
|
|
4923
|
+
}
|
|
4924
|
+
fragment ProductVariantFields on ProductVariant {
|
|
4925
|
+
id
|
|
4926
|
+
title
|
|
4927
|
+
sku
|
|
4928
|
+
available
|
|
4929
|
+
quantityAvailable
|
|
4930
|
+
barcode
|
|
4931
|
+
weight
|
|
4932
|
+
position
|
|
4933
|
+
price {
|
|
4934
|
+
amount
|
|
4935
|
+
currencyCode
|
|
4936
|
+
baseAmount
|
|
4937
|
+
baseCurrencyCode
|
|
4938
|
+
isConverted
|
|
4939
|
+
}
|
|
4940
|
+
originalPrice {
|
|
4941
|
+
amount
|
|
4942
|
+
currencyCode
|
|
4943
|
+
}
|
|
4944
|
+
compareAtPrice {
|
|
4945
|
+
amount
|
|
4946
|
+
currencyCode
|
|
4947
|
+
baseAmount
|
|
4948
|
+
baseCurrencyCode
|
|
4949
|
+
isConverted
|
|
4950
|
+
}
|
|
4951
|
+
originalCompareAtPrice {
|
|
4952
|
+
amount
|
|
4953
|
+
currencyCode
|
|
4954
|
+
}
|
|
4955
|
+
image {
|
|
4956
|
+
url
|
|
4957
|
+
altText
|
|
4958
|
+
width
|
|
4959
|
+
height
|
|
4960
|
+
}
|
|
4961
|
+
selectedOptions {
|
|
4962
|
+
name
|
|
4963
|
+
value
|
|
4964
|
+
}
|
|
4965
|
+
}`, {"fragmentName":"ProductDetailFields"}) as unknown as TypedDocumentString<ProductDetailFieldsFragment, unknown>;
|
|
4966
|
+
export const PageInfoFragmentDoc = new TypedDocumentString(`
|
|
4967
|
+
fragment PageInfo on PageInfo {
|
|
4968
|
+
hasNextPage
|
|
4969
|
+
hasPreviousPage
|
|
4970
|
+
startCursor
|
|
4971
|
+
endCursor
|
|
4972
|
+
}
|
|
4973
|
+
`, {"fragmentName":"PageInfo"}) as unknown as TypedDocumentString<PageInfoFragment, unknown>;
|
|
4974
|
+
export const UserErrorFragmentDoc = new TypedDocumentString(`
|
|
4975
|
+
fragment UserError on UserError {
|
|
4976
|
+
message
|
|
4977
|
+
code
|
|
4978
|
+
field
|
|
4979
|
+
}
|
|
4980
|
+
`, {"fragmentName":"UserError"}) as unknown as TypedDocumentString<UserErrorFragment, unknown>;
|
|
4981
|
+
export const ImageFragmentDoc = new TypedDocumentString(`
|
|
4982
|
+
fragment Image on Image {
|
|
4983
|
+
id
|
|
4984
|
+
url
|
|
4985
|
+
altText
|
|
4986
|
+
width
|
|
4987
|
+
height
|
|
4988
|
+
}
|
|
4989
|
+
`, {"fragmentName":"Image"}) as unknown as TypedDocumentString<ImageFragment, unknown>;
|
|
4990
|
+
export const PriceFragmentDoc = new TypedDocumentString(`
|
|
4991
|
+
fragment Price on PriceMoney {
|
|
4992
|
+
amount
|
|
4993
|
+
currencyCode
|
|
4994
|
+
}
|
|
4995
|
+
`, {"fragmentName":"Price"}) as unknown as TypedDocumentString<PriceFragment, unknown>;
|
|
4996
|
+
export const ProductCardFragmentDoc = new TypedDocumentString(`
|
|
4997
|
+
fragment ProductCard on Product {
|
|
4998
|
+
id
|
|
4999
|
+
handle
|
|
5000
|
+
title
|
|
5001
|
+
vendor
|
|
5002
|
+
productType
|
|
5003
|
+
availableForSale
|
|
5004
|
+
averageRating
|
|
5005
|
+
reviewCount
|
|
5006
|
+
tags
|
|
5007
|
+
featuredImage {
|
|
5008
|
+
...Image
|
|
5009
|
+
}
|
|
5010
|
+
priceRange {
|
|
5011
|
+
minVariantPrice {
|
|
5012
|
+
...Price
|
|
5013
|
+
}
|
|
5014
|
+
maxVariantPrice {
|
|
5015
|
+
...Price
|
|
5016
|
+
}
|
|
5017
|
+
}
|
|
5018
|
+
compareAtPriceRange {
|
|
5019
|
+
minVariantPrice {
|
|
5020
|
+
...Price
|
|
5021
|
+
}
|
|
5022
|
+
maxVariantPrice {
|
|
5023
|
+
...Price
|
|
5024
|
+
}
|
|
5025
|
+
}
|
|
5026
|
+
}
|
|
5027
|
+
fragment Image on Image {
|
|
5028
|
+
id
|
|
5029
|
+
url
|
|
5030
|
+
altText
|
|
5031
|
+
width
|
|
5032
|
+
height
|
|
5033
|
+
}
|
|
5034
|
+
fragment Price on PriceMoney {
|
|
5035
|
+
amount
|
|
5036
|
+
currencyCode
|
|
5037
|
+
}`, {"fragmentName":"ProductCard"}) as unknown as TypedDocumentString<ProductCardFragment, unknown>;
|
|
5038
|
+
export const MoneyFragmentDoc = new TypedDocumentString(`
|
|
5039
|
+
fragment Money on Money {
|
|
5040
|
+
amount
|
|
5041
|
+
currencyCode
|
|
5042
|
+
}
|
|
5043
|
+
`, {"fragmentName":"Money"}) as unknown as TypedDocumentString<MoneyFragment, unknown>;
|
|
5044
|
+
export const ProductBaseFragmentDoc = new TypedDocumentString(`
|
|
5045
|
+
fragment ProductBase on Product {
|
|
5046
|
+
...ProductCard
|
|
5047
|
+
description
|
|
5048
|
+
descriptionHtml
|
|
5049
|
+
originalPriceRange {
|
|
5050
|
+
minVariantPrice {
|
|
5051
|
+
...Money
|
|
5052
|
+
}
|
|
5053
|
+
maxVariantPrice {
|
|
5054
|
+
...Money
|
|
5055
|
+
}
|
|
5056
|
+
}
|
|
5057
|
+
originalCompareAtPriceRange {
|
|
5058
|
+
minVariantPrice {
|
|
5059
|
+
...Money
|
|
5060
|
+
}
|
|
5061
|
+
maxVariantPrice {
|
|
5062
|
+
...Money
|
|
5063
|
+
}
|
|
5064
|
+
}
|
|
5065
|
+
totalInventory
|
|
5066
|
+
type
|
|
5067
|
+
collectRecipientInfo
|
|
5068
|
+
createdAt
|
|
5069
|
+
updatedAt
|
|
5070
|
+
}
|
|
5071
|
+
fragment Image on Image {
|
|
5072
|
+
id
|
|
5073
|
+
url
|
|
5074
|
+
altText
|
|
5075
|
+
width
|
|
5076
|
+
height
|
|
5077
|
+
}
|
|
5078
|
+
fragment Money on Money {
|
|
5079
|
+
amount
|
|
5080
|
+
currencyCode
|
|
5081
|
+
}
|
|
5082
|
+
fragment Price on PriceMoney {
|
|
4755
5083
|
amount
|
|
4756
5084
|
currencyCode
|
|
5085
|
+
}
|
|
5086
|
+
fragment ProductCard on Product {
|
|
5087
|
+
id
|
|
5088
|
+
handle
|
|
5089
|
+
title
|
|
5090
|
+
vendor
|
|
5091
|
+
productType
|
|
5092
|
+
availableForSale
|
|
5093
|
+
averageRating
|
|
5094
|
+
reviewCount
|
|
5095
|
+
tags
|
|
5096
|
+
featuredImage {
|
|
5097
|
+
...Image
|
|
5098
|
+
}
|
|
5099
|
+
priceRange {
|
|
5100
|
+
minVariantPrice {
|
|
5101
|
+
...Price
|
|
5102
|
+
}
|
|
5103
|
+
maxVariantPrice {
|
|
5104
|
+
...Price
|
|
5105
|
+
}
|
|
5106
|
+
}
|
|
5107
|
+
compareAtPriceRange {
|
|
5108
|
+
minVariantPrice {
|
|
5109
|
+
...Price
|
|
5110
|
+
}
|
|
5111
|
+
maxVariantPrice {
|
|
5112
|
+
...Price
|
|
5113
|
+
}
|
|
5114
|
+
}
|
|
5115
|
+
}`, {"fragmentName":"ProductBase"}) as unknown as TypedDocumentString<ProductBaseFragment, unknown>;
|
|
5116
|
+
export const PriceMoneyFragmentDoc = new TypedDocumentString(`
|
|
5117
|
+
fragment PriceMoney on PriceMoney {
|
|
5118
|
+
...Price
|
|
5119
|
+
baseAmount
|
|
5120
|
+
baseCurrencyCode
|
|
5121
|
+
exchangeRate
|
|
5122
|
+
marginApplied
|
|
5123
|
+
rateTimestamp
|
|
5124
|
+
isConverted
|
|
5125
|
+
}
|
|
5126
|
+
fragment Price on PriceMoney {
|
|
5127
|
+
amount
|
|
5128
|
+
currencyCode
|
|
5129
|
+
}`, {"fragmentName":"PriceMoney"}) as unknown as TypedDocumentString<PriceMoneyFragment, unknown>;
|
|
5130
|
+
export const SelectedOptionFragmentDoc = new TypedDocumentString(`
|
|
5131
|
+
fragment SelectedOption on SelectedOption {
|
|
5132
|
+
name
|
|
5133
|
+
value
|
|
5134
|
+
}
|
|
5135
|
+
`, {"fragmentName":"SelectedOption"}) as unknown as TypedDocumentString<SelectedOptionFragment, unknown>;
|
|
5136
|
+
export const ProductVariantFragmentDoc = new TypedDocumentString(`
|
|
5137
|
+
fragment ProductVariant on ProductVariant {
|
|
5138
|
+
id
|
|
5139
|
+
title
|
|
5140
|
+
sku
|
|
5141
|
+
price {
|
|
5142
|
+
...PriceMoney
|
|
5143
|
+
}
|
|
5144
|
+
originalPrice {
|
|
5145
|
+
...Money
|
|
5146
|
+
}
|
|
5147
|
+
compareAtPrice {
|
|
5148
|
+
...PriceMoney
|
|
5149
|
+
}
|
|
5150
|
+
originalCompareAtPrice {
|
|
5151
|
+
...Money
|
|
5152
|
+
}
|
|
5153
|
+
available
|
|
5154
|
+
quantityAvailable
|
|
5155
|
+
image {
|
|
5156
|
+
...Image
|
|
5157
|
+
}
|
|
5158
|
+
selectedOptions {
|
|
5159
|
+
...SelectedOption
|
|
5160
|
+
}
|
|
5161
|
+
barcode
|
|
5162
|
+
weight
|
|
5163
|
+
position
|
|
5164
|
+
}
|
|
5165
|
+
fragment Image on Image {
|
|
5166
|
+
id
|
|
5167
|
+
url
|
|
5168
|
+
altText
|
|
5169
|
+
width
|
|
5170
|
+
height
|
|
5171
|
+
}
|
|
5172
|
+
fragment Money on Money {
|
|
5173
|
+
amount
|
|
5174
|
+
currencyCode
|
|
5175
|
+
}
|
|
5176
|
+
fragment Price on PriceMoney {
|
|
5177
|
+
amount
|
|
5178
|
+
currencyCode
|
|
5179
|
+
}
|
|
5180
|
+
fragment PriceMoney on PriceMoney {
|
|
5181
|
+
...Price
|
|
4757
5182
|
baseAmount
|
|
4758
5183
|
baseCurrencyCode
|
|
4759
5184
|
exchangeRate
|
|
@@ -4790,9 +5215,12 @@ fragment Money on Money {
|
|
|
4790
5215
|
amount
|
|
4791
5216
|
currencyCode
|
|
4792
5217
|
}
|
|
4793
|
-
fragment
|
|
5218
|
+
fragment Price on PriceMoney {
|
|
4794
5219
|
amount
|
|
4795
5220
|
currencyCode
|
|
5221
|
+
}
|
|
5222
|
+
fragment PriceMoney on PriceMoney {
|
|
5223
|
+
...Price
|
|
4796
5224
|
baseAmount
|
|
4797
5225
|
baseCurrencyCode
|
|
4798
5226
|
exchangeRate
|
|
@@ -4832,37 +5260,46 @@ fragment ProductVariant on ProductVariant {
|
|
|
4832
5260
|
weight
|
|
4833
5261
|
position
|
|
4834
5262
|
}
|
|
4835
|
-
fragment
|
|
5263
|
+
fragment ProductCard on Product {
|
|
4836
5264
|
id
|
|
4837
5265
|
handle
|
|
4838
5266
|
title
|
|
4839
|
-
|
|
4840
|
-
|
|
5267
|
+
vendor
|
|
5268
|
+
productType
|
|
5269
|
+
availableForSale
|
|
5270
|
+
averageRating
|
|
5271
|
+
reviewCount
|
|
5272
|
+
tags
|
|
4841
5273
|
featuredImage {
|
|
4842
5274
|
...Image
|
|
4843
5275
|
}
|
|
4844
5276
|
priceRange {
|
|
4845
5277
|
minVariantPrice {
|
|
4846
|
-
...
|
|
5278
|
+
...Price
|
|
4847
5279
|
}
|
|
4848
5280
|
maxVariantPrice {
|
|
4849
|
-
...
|
|
5281
|
+
...Price
|
|
4850
5282
|
}
|
|
4851
5283
|
}
|
|
4852
|
-
|
|
5284
|
+
compareAtPriceRange {
|
|
4853
5285
|
minVariantPrice {
|
|
4854
|
-
...
|
|
5286
|
+
...Price
|
|
4855
5287
|
}
|
|
4856
5288
|
maxVariantPrice {
|
|
4857
|
-
...
|
|
5289
|
+
...Price
|
|
4858
5290
|
}
|
|
4859
5291
|
}
|
|
4860
|
-
|
|
5292
|
+
}
|
|
5293
|
+
fragment ProductBase on Product {
|
|
5294
|
+
...ProductCard
|
|
5295
|
+
description
|
|
5296
|
+
descriptionHtml
|
|
5297
|
+
originalPriceRange {
|
|
4861
5298
|
minVariantPrice {
|
|
4862
|
-
...
|
|
5299
|
+
...Money
|
|
4863
5300
|
}
|
|
4864
5301
|
maxVariantPrice {
|
|
4865
|
-
...
|
|
5302
|
+
...Money
|
|
4866
5303
|
}
|
|
4867
5304
|
}
|
|
4868
5305
|
originalCompareAtPriceRange {
|
|
@@ -4874,16 +5311,10 @@ fragment ProductBase on Product {
|
|
|
4874
5311
|
}
|
|
4875
5312
|
}
|
|
4876
5313
|
totalInventory
|
|
4877
|
-
vendor
|
|
4878
|
-
productType
|
|
4879
5314
|
type
|
|
4880
5315
|
collectRecipientInfo
|
|
4881
|
-
tags
|
|
4882
5316
|
createdAt
|
|
4883
5317
|
updatedAt
|
|
4884
|
-
averageRating
|
|
4885
|
-
reviewCount
|
|
4886
|
-
availableForSale
|
|
4887
5318
|
}`, {"fragmentName":"ProductFull"}) as unknown as TypedDocumentString<ProductFullFragment, unknown>;
|
|
4888
5319
|
export const CollectionFragmentDoc = new TypedDocumentString(`
|
|
4889
5320
|
fragment Collection on Collection {
|
|
@@ -5057,9 +5488,12 @@ export const CartCostFragmentDoc = new TypedDocumentString(`
|
|
|
5057
5488
|
...PriceMoney
|
|
5058
5489
|
}
|
|
5059
5490
|
}
|
|
5060
|
-
fragment
|
|
5491
|
+
fragment Price on PriceMoney {
|
|
5061
5492
|
amount
|
|
5062
5493
|
currencyCode
|
|
5494
|
+
}
|
|
5495
|
+
fragment PriceMoney on PriceMoney {
|
|
5496
|
+
...Price
|
|
5063
5497
|
baseAmount
|
|
5064
5498
|
baseCurrencyCode
|
|
5065
5499
|
exchangeRate
|
|
@@ -5082,9 +5516,12 @@ export const CartLineCostFragmentDoc = new TypedDocumentString(`
|
|
|
5082
5516
|
...PriceMoney
|
|
5083
5517
|
}
|
|
5084
5518
|
}
|
|
5085
|
-
fragment
|
|
5519
|
+
fragment Price on PriceMoney {
|
|
5086
5520
|
amount
|
|
5087
5521
|
currencyCode
|
|
5522
|
+
}
|
|
5523
|
+
fragment PriceMoney on PriceMoney {
|
|
5524
|
+
...Price
|
|
5088
5525
|
baseAmount
|
|
5089
5526
|
baseCurrencyCode
|
|
5090
5527
|
exchangeRate
|
|
@@ -5122,9 +5559,12 @@ fragment Money on Money {
|
|
|
5122
5559
|
amount
|
|
5123
5560
|
currencyCode
|
|
5124
5561
|
}
|
|
5125
|
-
fragment
|
|
5562
|
+
fragment Price on PriceMoney {
|
|
5126
5563
|
amount
|
|
5127
5564
|
currencyCode
|
|
5565
|
+
}
|
|
5566
|
+
fragment PriceMoney on PriceMoney {
|
|
5567
|
+
...Price
|
|
5128
5568
|
baseAmount
|
|
5129
5569
|
baseCurrencyCode
|
|
5130
5570
|
exchangeRate
|
|
@@ -5241,9 +5681,12 @@ fragment Money on Money {
|
|
|
5241
5681
|
amount
|
|
5242
5682
|
currencyCode
|
|
5243
5683
|
}
|
|
5244
|
-
fragment
|
|
5684
|
+
fragment Price on PriceMoney {
|
|
5245
5685
|
amount
|
|
5246
5686
|
currencyCode
|
|
5687
|
+
}
|
|
5688
|
+
fragment PriceMoney on PriceMoney {
|
|
5689
|
+
...Price
|
|
5247
5690
|
baseAmount
|
|
5248
5691
|
baseCurrencyCode
|
|
5249
5692
|
exchangeRate
|
|
@@ -5433,6 +5876,28 @@ fragment SocialLinks on SocialLinks {
|
|
|
5433
5876
|
linkedin
|
|
5434
5877
|
pinterest
|
|
5435
5878
|
}`, {"fragmentName":"ShopBranding"}) as unknown as TypedDocumentString<ShopBrandingFragment, unknown>;
|
|
5879
|
+
export const BotProtectionProviderFragmentDoc = new TypedDocumentString(`
|
|
5880
|
+
fragment BotProtectionProvider on BotProtectionProviderInfo {
|
|
5881
|
+
provider
|
|
5882
|
+
siteKey
|
|
5883
|
+
scriptUrl
|
|
5884
|
+
}
|
|
5885
|
+
`, {"fragmentName":"BotProtectionProvider"}) as unknown as TypedDocumentString<BotProtectionProviderFragment, unknown>;
|
|
5886
|
+
export const BotProtectionFragmentDoc = new TypedDocumentString(`
|
|
5887
|
+
fragment BotProtection on BotProtectionInfo {
|
|
5888
|
+
primary {
|
|
5889
|
+
...BotProtectionProvider
|
|
5890
|
+
}
|
|
5891
|
+
fallback {
|
|
5892
|
+
...BotProtectionProvider
|
|
5893
|
+
}
|
|
5894
|
+
protectedOperations
|
|
5895
|
+
}
|
|
5896
|
+
fragment BotProtectionProvider on BotProtectionProviderInfo {
|
|
5897
|
+
provider
|
|
5898
|
+
siteKey
|
|
5899
|
+
scriptUrl
|
|
5900
|
+
}`, {"fragmentName":"BotProtection"}) as unknown as TypedDocumentString<BotProtectionFragment, unknown>;
|
|
5436
5901
|
export const ShopFragmentDoc = new TypedDocumentString(`
|
|
5437
5902
|
fragment Shop on Shop {
|
|
5438
5903
|
id
|
|
@@ -5442,6 +5907,8 @@ export const ShopFragmentDoc = new TypedDocumentString(`
|
|
|
5442
5907
|
currencyCode
|
|
5443
5908
|
supportedCurrencies
|
|
5444
5909
|
paymentCurrencies
|
|
5910
|
+
defaultLanguage
|
|
5911
|
+
supportedLanguages
|
|
5445
5912
|
logo {
|
|
5446
5913
|
...Image
|
|
5447
5914
|
}
|
|
@@ -5456,6 +5923,9 @@ export const ShopFragmentDoc = new TypedDocumentString(`
|
|
|
5456
5923
|
branding {
|
|
5457
5924
|
...ShopBranding
|
|
5458
5925
|
}
|
|
5926
|
+
botProtection {
|
|
5927
|
+
...BotProtection
|
|
5928
|
+
}
|
|
5459
5929
|
}
|
|
5460
5930
|
fragment Image on Image {
|
|
5461
5931
|
id
|
|
@@ -5514,6 +5984,20 @@ fragment ShopBranding on ShopBranding {
|
|
|
5514
5984
|
socialLinks {
|
|
5515
5985
|
...SocialLinks
|
|
5516
5986
|
}
|
|
5987
|
+
}
|
|
5988
|
+
fragment BotProtectionProvider on BotProtectionProviderInfo {
|
|
5989
|
+
provider
|
|
5990
|
+
siteKey
|
|
5991
|
+
scriptUrl
|
|
5992
|
+
}
|
|
5993
|
+
fragment BotProtection on BotProtectionInfo {
|
|
5994
|
+
primary {
|
|
5995
|
+
...BotProtectionProvider
|
|
5996
|
+
}
|
|
5997
|
+
fallback {
|
|
5998
|
+
...BotProtectionProvider
|
|
5999
|
+
}
|
|
6000
|
+
protectedOperations
|
|
5517
6001
|
}`, {"fragmentName":"Shop"}) as unknown as TypedDocumentString<ShopFragment, unknown>;
|
|
5518
6002
|
export const PaymentMethodFragmentDoc = new TypedDocumentString(`
|
|
5519
6003
|
fragment PaymentMethod on PaymentMethod {
|
|
@@ -5570,8 +6054,18 @@ export const CheckoutLineItemFragmentDoc = new TypedDocumentString(`
|
|
|
5570
6054
|
variantId
|
|
5571
6055
|
productId
|
|
5572
6056
|
sku
|
|
6057
|
+
image {
|
|
6058
|
+
...Image
|
|
6059
|
+
}
|
|
5573
6060
|
}
|
|
5574
|
-
fragment
|
|
6061
|
+
fragment Image on Image {
|
|
6062
|
+
id
|
|
6063
|
+
url
|
|
6064
|
+
altText
|
|
6065
|
+
width
|
|
6066
|
+
height
|
|
6067
|
+
}
|
|
6068
|
+
fragment Money on Money {
|
|
5575
6069
|
amount
|
|
5576
6070
|
currencyCode
|
|
5577
6071
|
}`, {"fragmentName":"CheckoutLineItem"}) as unknown as TypedDocumentString<CheckoutLineItemFragment, unknown>;
|
|
@@ -5746,7 +6240,14 @@ export const CheckoutFragmentDoc = new TypedDocumentString(`
|
|
|
5746
6240
|
createdAt
|
|
5747
6241
|
updatedAt
|
|
5748
6242
|
}
|
|
5749
|
-
fragment
|
|
6243
|
+
fragment Image on Image {
|
|
6244
|
+
id
|
|
6245
|
+
url
|
|
6246
|
+
altText
|
|
6247
|
+
width
|
|
6248
|
+
height
|
|
6249
|
+
}
|
|
6250
|
+
fragment Money on Money {
|
|
5750
6251
|
amount
|
|
5751
6252
|
currencyCode
|
|
5752
6253
|
}
|
|
@@ -5840,6 +6341,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
5840
6341
|
variantId
|
|
5841
6342
|
productId
|
|
5842
6343
|
sku
|
|
6344
|
+
image {
|
|
6345
|
+
...Image
|
|
6346
|
+
}
|
|
5843
6347
|
}
|
|
5844
6348
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
5845
6349
|
maskedCode
|
|
@@ -6693,119 +7197,33 @@ export const GenerateReferralCodePayloadFragmentDoc = new TypedDocumentString(`
|
|
|
6693
7197
|
userErrors
|
|
6694
7198
|
}
|
|
6695
7199
|
`, {"fragmentName":"GenerateReferralCodePayload"}) as unknown as TypedDocumentString<GenerateReferralCodePayloadFragment, unknown>;
|
|
6696
|
-
export const
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
title
|
|
6704
|
-
description
|
|
6705
|
-
image {
|
|
6706
|
-
url
|
|
6707
|
-
altText
|
|
6708
|
-
width
|
|
6709
|
-
height
|
|
6710
|
-
}
|
|
6711
|
-
}
|
|
6712
|
-
cursor
|
|
6713
|
-
}
|
|
6714
|
-
pageInfo {
|
|
6715
|
-
hasNextPage
|
|
6716
|
-
endCursor
|
|
6717
|
-
}
|
|
6718
|
-
}
|
|
6719
|
-
}
|
|
6720
|
-
`) as unknown as TypedDocumentString<GetFeaturedCollectionsQuery, GetFeaturedCollectionsQueryVariables>;
|
|
6721
|
-
export const GetCollectionWithProductsDocument = new TypedDocumentString(`
|
|
6722
|
-
query GetCollectionWithProducts($handle: String!, $first: Int = 20, $after: String) {
|
|
6723
|
-
collection(handle: $handle) {
|
|
6724
|
-
id
|
|
6725
|
-
title
|
|
6726
|
-
description
|
|
6727
|
-
descriptionHtml
|
|
6728
|
-
image {
|
|
6729
|
-
url
|
|
6730
|
-
altText
|
|
6731
|
-
}
|
|
6732
|
-
seo {
|
|
6733
|
-
title
|
|
6734
|
-
description
|
|
6735
|
-
}
|
|
6736
|
-
products(first: $first, after: $after) {
|
|
6737
|
-
edges {
|
|
6738
|
-
node {
|
|
6739
|
-
id
|
|
6740
|
-
handle
|
|
6741
|
-
title
|
|
6742
|
-
description
|
|
6743
|
-
featuredImage {
|
|
6744
|
-
url
|
|
6745
|
-
altText
|
|
6746
|
-
}
|
|
6747
|
-
priceRange {
|
|
6748
|
-
minVariantPrice {
|
|
6749
|
-
amount
|
|
6750
|
-
currencyCode
|
|
6751
|
-
baseAmount
|
|
6752
|
-
baseCurrencyCode
|
|
6753
|
-
isConverted
|
|
6754
|
-
}
|
|
6755
|
-
}
|
|
6756
|
-
compareAtPriceRange {
|
|
6757
|
-
minVariantPrice {
|
|
6758
|
-
amount
|
|
6759
|
-
currencyCode
|
|
6760
|
-
}
|
|
6761
|
-
}
|
|
6762
|
-
vendor
|
|
6763
|
-
productType
|
|
6764
|
-
tags
|
|
6765
|
-
totalInventory
|
|
6766
|
-
}
|
|
6767
|
-
cursor
|
|
6768
|
-
}
|
|
6769
|
-
pageInfo {
|
|
6770
|
-
hasNextPage
|
|
6771
|
-
hasPreviousPage
|
|
6772
|
-
startCursor
|
|
6773
|
-
endCursor
|
|
6774
|
-
}
|
|
6775
|
-
totalCount
|
|
6776
|
-
}
|
|
6777
|
-
}
|
|
7200
|
+
export const InventoryLevelFragmentDoc = new TypedDocumentString(`
|
|
7201
|
+
fragment InventoryLevel on InventoryLevel {
|
|
7202
|
+
locationId
|
|
7203
|
+
locationName
|
|
7204
|
+
locationType
|
|
7205
|
+
available
|
|
7206
|
+
onHand
|
|
6778
7207
|
}
|
|
6779
|
-
|
|
6780
|
-
export const
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
6785
|
-
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
image {
|
|
6790
|
-
url
|
|
6791
|
-
altText
|
|
6792
|
-
}
|
|
6793
|
-
products(first: 1) {
|
|
6794
|
-
totalCount
|
|
6795
|
-
}
|
|
6796
|
-
}
|
|
6797
|
-
cursor
|
|
6798
|
-
}
|
|
6799
|
-
pageInfo {
|
|
6800
|
-
hasNextPage
|
|
6801
|
-
hasPreviousPage
|
|
6802
|
-
startCursor
|
|
6803
|
-
endCursor
|
|
6804
|
-
}
|
|
6805
|
-
totalCount
|
|
7208
|
+
`, {"fragmentName":"InventoryLevel"}) as unknown as TypedDocumentString<InventoryLevelFragment, unknown>;
|
|
7209
|
+
export const VariantInventoryLevelsFragmentDoc = new TypedDocumentString(`
|
|
7210
|
+
fragment VariantInventoryLevels on ProductVariant {
|
|
7211
|
+
id
|
|
7212
|
+
title
|
|
7213
|
+
sku
|
|
7214
|
+
available
|
|
7215
|
+
quantityAvailable
|
|
7216
|
+
inventoryLevels {
|
|
7217
|
+
...InventoryLevel
|
|
6806
7218
|
}
|
|
6807
7219
|
}
|
|
6808
|
-
|
|
7220
|
+
fragment InventoryLevel on InventoryLevel {
|
|
7221
|
+
locationId
|
|
7222
|
+
locationName
|
|
7223
|
+
locationType
|
|
7224
|
+
available
|
|
7225
|
+
onHand
|
|
7226
|
+
}`, {"fragmentName":"VariantInventoryLevels"}) as unknown as TypedDocumentString<VariantInventoryLevelsFragment, unknown>;
|
|
6809
7227
|
export const GetFeaturedProductsDocument = new TypedDocumentString(`
|
|
6810
7228
|
query GetFeaturedProducts($first: Int = 6) {
|
|
6811
7229
|
products(first: $first, query: "tag:featured") {
|
|
@@ -6828,50 +7246,15 @@ export const GetFeaturedProductsDocument = new TypedDocumentString(`
|
|
|
6828
7246
|
}
|
|
6829
7247
|
}
|
|
6830
7248
|
}
|
|
6831
|
-
cursor
|
|
6832
|
-
}
|
|
6833
|
-
pageInfo {
|
|
6834
|
-
hasNextPage
|
|
6835
|
-
endCursor
|
|
6836
|
-
}
|
|
6837
|
-
}
|
|
6838
|
-
}
|
|
6839
|
-
`) as unknown as TypedDocumentString<GetFeaturedProductsQuery, GetFeaturedProductsQueryVariables>;
|
|
6840
|
-
export const GetProductWithReviewsDocument = new TypedDocumentString(`
|
|
6841
|
-
query GetProductWithReviews($handle: String!) {
|
|
6842
|
-
product(handle: $handle) {
|
|
6843
|
-
id
|
|
6844
|
-
title
|
|
6845
|
-
description
|
|
6846
|
-
descriptionHtml
|
|
6847
|
-
averageRating
|
|
6848
|
-
reviewCount
|
|
6849
|
-
featuredImage {
|
|
6850
|
-
url
|
|
6851
|
-
altText
|
|
6852
|
-
}
|
|
6853
|
-
priceRange {
|
|
6854
|
-
minVariantPrice {
|
|
6855
|
-
amount
|
|
6856
|
-
currencyCode
|
|
6857
|
-
baseAmount
|
|
6858
|
-
baseCurrencyCode
|
|
6859
|
-
isConverted
|
|
6860
|
-
}
|
|
7249
|
+
cursor
|
|
6861
7250
|
}
|
|
6862
|
-
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
price {
|
|
6866
|
-
amount
|
|
6867
|
-
currencyCode
|
|
6868
|
-
}
|
|
6869
|
-
available
|
|
6870
|
-
quantityAvailable
|
|
7251
|
+
pageInfo {
|
|
7252
|
+
hasNextPage
|
|
7253
|
+
endCursor
|
|
6871
7254
|
}
|
|
6872
7255
|
}
|
|
6873
7256
|
}
|
|
6874
|
-
`) as unknown as TypedDocumentString<
|
|
7257
|
+
`) as unknown as TypedDocumentString<GetFeaturedProductsQuery, GetFeaturedProductsQueryVariables>;
|
|
6875
7258
|
export const SearchProductsWithFiltersDocument = new TypedDocumentString(`
|
|
6876
7259
|
query SearchProductsWithFilters($query: String!, $first: Int = 20, $after: String, $filters: ProductFilterInput) {
|
|
6877
7260
|
products(query: $query, first: $first, after: $after, filters: $filters) {
|
|
@@ -6896,12 +7279,6 @@ export const SearchProductsWithFiltersDocument = new TypedDocumentString(`
|
|
|
6896
7279
|
currencyCode
|
|
6897
7280
|
}
|
|
6898
7281
|
}
|
|
6899
|
-
compareAtPriceRange {
|
|
6900
|
-
minVariantPrice {
|
|
6901
|
-
amount
|
|
6902
|
-
currencyCode
|
|
6903
|
-
}
|
|
6904
|
-
}
|
|
6905
7282
|
}
|
|
6906
7283
|
cursor
|
|
6907
7284
|
}
|
|
@@ -6915,6 +7292,59 @@ export const SearchProductsWithFiltersDocument = new TypedDocumentString(`
|
|
|
6915
7292
|
}
|
|
6916
7293
|
}
|
|
6917
7294
|
`) as unknown as TypedDocumentString<SearchProductsWithFiltersQuery, SearchProductsWithFiltersQueryVariables>;
|
|
7295
|
+
export const GetCollectionWithProductsDocument = new TypedDocumentString(`
|
|
7296
|
+
query GetCollectionWithProducts($handle: String!, $first: Int = 20, $after: String) {
|
|
7297
|
+
collection(handle: $handle) {
|
|
7298
|
+
id
|
|
7299
|
+
title
|
|
7300
|
+
description
|
|
7301
|
+
descriptionHtml
|
|
7302
|
+
image {
|
|
7303
|
+
url
|
|
7304
|
+
altText
|
|
7305
|
+
}
|
|
7306
|
+
seo {
|
|
7307
|
+
title
|
|
7308
|
+
description
|
|
7309
|
+
}
|
|
7310
|
+
products(first: $first, after: $after) {
|
|
7311
|
+
edges {
|
|
7312
|
+
node {
|
|
7313
|
+
id
|
|
7314
|
+
handle
|
|
7315
|
+
title
|
|
7316
|
+
description
|
|
7317
|
+
featuredImage {
|
|
7318
|
+
url
|
|
7319
|
+
altText
|
|
7320
|
+
}
|
|
7321
|
+
priceRange {
|
|
7322
|
+
minVariantPrice {
|
|
7323
|
+
amount
|
|
7324
|
+
currencyCode
|
|
7325
|
+
baseAmount
|
|
7326
|
+
baseCurrencyCode
|
|
7327
|
+
isConverted
|
|
7328
|
+
}
|
|
7329
|
+
}
|
|
7330
|
+
vendor
|
|
7331
|
+
productType
|
|
7332
|
+
tags
|
|
7333
|
+
totalInventory
|
|
7334
|
+
}
|
|
7335
|
+
cursor
|
|
7336
|
+
}
|
|
7337
|
+
pageInfo {
|
|
7338
|
+
hasNextPage
|
|
7339
|
+
hasPreviousPage
|
|
7340
|
+
startCursor
|
|
7341
|
+
endCursor
|
|
7342
|
+
}
|
|
7343
|
+
totalCount
|
|
7344
|
+
}
|
|
7345
|
+
}
|
|
7346
|
+
}
|
|
7347
|
+
`) as unknown as TypedDocumentString<GetCollectionWithProductsQuery, GetCollectionWithProductsQueryVariables>;
|
|
6918
7348
|
export const CartCreateDocument = new TypedDocumentString(`
|
|
6919
7349
|
mutation CartCreate($input: CartCreateInput) {
|
|
6920
7350
|
cartCreate(input: $input) {
|
|
@@ -6942,9 +7372,12 @@ fragment Money on Money {
|
|
|
6942
7372
|
amount
|
|
6943
7373
|
currencyCode
|
|
6944
7374
|
}
|
|
6945
|
-
fragment
|
|
7375
|
+
fragment Price on PriceMoney {
|
|
6946
7376
|
amount
|
|
6947
7377
|
currencyCode
|
|
7378
|
+
}
|
|
7379
|
+
fragment PriceMoney on PriceMoney {
|
|
7380
|
+
...Price
|
|
6948
7381
|
baseAmount
|
|
6949
7382
|
baseCurrencyCode
|
|
6950
7383
|
exchangeRate
|
|
@@ -7099,9 +7532,12 @@ fragment Money on Money {
|
|
|
7099
7532
|
amount
|
|
7100
7533
|
currencyCode
|
|
7101
7534
|
}
|
|
7102
|
-
fragment
|
|
7535
|
+
fragment Price on PriceMoney {
|
|
7103
7536
|
amount
|
|
7104
7537
|
currencyCode
|
|
7538
|
+
}
|
|
7539
|
+
fragment PriceMoney on PriceMoney {
|
|
7540
|
+
...Price
|
|
7105
7541
|
baseAmount
|
|
7106
7542
|
baseCurrencyCode
|
|
7107
7543
|
exchangeRate
|
|
@@ -7256,9 +7692,12 @@ fragment Money on Money {
|
|
|
7256
7692
|
amount
|
|
7257
7693
|
currencyCode
|
|
7258
7694
|
}
|
|
7259
|
-
fragment
|
|
7695
|
+
fragment Price on PriceMoney {
|
|
7260
7696
|
amount
|
|
7261
7697
|
currencyCode
|
|
7698
|
+
}
|
|
7699
|
+
fragment PriceMoney on PriceMoney {
|
|
7700
|
+
...Price
|
|
7262
7701
|
baseAmount
|
|
7263
7702
|
baseCurrencyCode
|
|
7264
7703
|
exchangeRate
|
|
@@ -7413,9 +7852,12 @@ fragment Money on Money {
|
|
|
7413
7852
|
amount
|
|
7414
7853
|
currencyCode
|
|
7415
7854
|
}
|
|
7416
|
-
fragment
|
|
7855
|
+
fragment Price on PriceMoney {
|
|
7417
7856
|
amount
|
|
7418
7857
|
currencyCode
|
|
7858
|
+
}
|
|
7859
|
+
fragment PriceMoney on PriceMoney {
|
|
7860
|
+
...Price
|
|
7419
7861
|
baseAmount
|
|
7420
7862
|
baseCurrencyCode
|
|
7421
7863
|
exchangeRate
|
|
@@ -7570,9 +8012,12 @@ fragment Money on Money {
|
|
|
7570
8012
|
amount
|
|
7571
8013
|
currencyCode
|
|
7572
8014
|
}
|
|
7573
|
-
fragment
|
|
8015
|
+
fragment Price on PriceMoney {
|
|
7574
8016
|
amount
|
|
7575
8017
|
currencyCode
|
|
8018
|
+
}
|
|
8019
|
+
fragment PriceMoney on PriceMoney {
|
|
8020
|
+
...Price
|
|
7576
8021
|
baseAmount
|
|
7577
8022
|
baseCurrencyCode
|
|
7578
8023
|
exchangeRate
|
|
@@ -7727,9 +8172,12 @@ fragment Money on Money {
|
|
|
7727
8172
|
amount
|
|
7728
8173
|
currencyCode
|
|
7729
8174
|
}
|
|
7730
|
-
fragment
|
|
8175
|
+
fragment Price on PriceMoney {
|
|
7731
8176
|
amount
|
|
7732
8177
|
currencyCode
|
|
8178
|
+
}
|
|
8179
|
+
fragment PriceMoney on PriceMoney {
|
|
8180
|
+
...Price
|
|
7733
8181
|
baseAmount
|
|
7734
8182
|
baseCurrencyCode
|
|
7735
8183
|
exchangeRate
|
|
@@ -7884,9 +8332,12 @@ fragment Money on Money {
|
|
|
7884
8332
|
amount
|
|
7885
8333
|
currencyCode
|
|
7886
8334
|
}
|
|
7887
|
-
fragment
|
|
8335
|
+
fragment Price on PriceMoney {
|
|
7888
8336
|
amount
|
|
7889
8337
|
currencyCode
|
|
8338
|
+
}
|
|
8339
|
+
fragment PriceMoney on PriceMoney {
|
|
8340
|
+
...Price
|
|
7890
8341
|
baseAmount
|
|
7891
8342
|
baseCurrencyCode
|
|
7892
8343
|
exchangeRate
|
|
@@ -8415,7 +8866,14 @@ export const CheckoutCreateDocument = new TypedDocumentString(`
|
|
|
8415
8866
|
}
|
|
8416
8867
|
}
|
|
8417
8868
|
}
|
|
8418
|
-
fragment
|
|
8869
|
+
fragment Image on Image {
|
|
8870
|
+
id
|
|
8871
|
+
url
|
|
8872
|
+
altText
|
|
8873
|
+
width
|
|
8874
|
+
height
|
|
8875
|
+
}
|
|
8876
|
+
fragment Money on Money {
|
|
8419
8877
|
amount
|
|
8420
8878
|
currencyCode
|
|
8421
8879
|
}
|
|
@@ -8514,6 +8972,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
8514
8972
|
variantId
|
|
8515
8973
|
productId
|
|
8516
8974
|
sku
|
|
8975
|
+
image {
|
|
8976
|
+
...Image
|
|
8977
|
+
}
|
|
8517
8978
|
}
|
|
8518
8979
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
8519
8980
|
maskedCode
|
|
@@ -8607,7 +9068,14 @@ export const CheckoutShippingAddressUpdateDocument = new TypedDocumentString(`
|
|
|
8607
9068
|
}
|
|
8608
9069
|
}
|
|
8609
9070
|
}
|
|
8610
|
-
fragment
|
|
9071
|
+
fragment Image on Image {
|
|
9072
|
+
id
|
|
9073
|
+
url
|
|
9074
|
+
altText
|
|
9075
|
+
width
|
|
9076
|
+
height
|
|
9077
|
+
}
|
|
9078
|
+
fragment Money on Money {
|
|
8611
9079
|
amount
|
|
8612
9080
|
currencyCode
|
|
8613
9081
|
}
|
|
@@ -8706,6 +9174,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
8706
9174
|
variantId
|
|
8707
9175
|
productId
|
|
8708
9176
|
sku
|
|
9177
|
+
image {
|
|
9178
|
+
...Image
|
|
9179
|
+
}
|
|
8709
9180
|
}
|
|
8710
9181
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
8711
9182
|
maskedCode
|
|
@@ -8799,7 +9270,14 @@ export const CheckoutBillingAddressUpdateDocument = new TypedDocumentString(`
|
|
|
8799
9270
|
}
|
|
8800
9271
|
}
|
|
8801
9272
|
}
|
|
8802
|
-
fragment
|
|
9273
|
+
fragment Image on Image {
|
|
9274
|
+
id
|
|
9275
|
+
url
|
|
9276
|
+
altText
|
|
9277
|
+
width
|
|
9278
|
+
height
|
|
9279
|
+
}
|
|
9280
|
+
fragment Money on Money {
|
|
8803
9281
|
amount
|
|
8804
9282
|
currencyCode
|
|
8805
9283
|
}
|
|
@@ -8898,6 +9376,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
8898
9376
|
variantId
|
|
8899
9377
|
productId
|
|
8900
9378
|
sku
|
|
9379
|
+
image {
|
|
9380
|
+
...Image
|
|
9381
|
+
}
|
|
8901
9382
|
}
|
|
8902
9383
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
8903
9384
|
maskedCode
|
|
@@ -8988,7 +9469,14 @@ export const CheckoutEmailUpdateDocument = new TypedDocumentString(`
|
|
|
8988
9469
|
}
|
|
8989
9470
|
}
|
|
8990
9471
|
}
|
|
8991
|
-
fragment
|
|
9472
|
+
fragment Image on Image {
|
|
9473
|
+
id
|
|
9474
|
+
url
|
|
9475
|
+
altText
|
|
9476
|
+
width
|
|
9477
|
+
height
|
|
9478
|
+
}
|
|
9479
|
+
fragment Money on Money {
|
|
8992
9480
|
amount
|
|
8993
9481
|
currencyCode
|
|
8994
9482
|
}
|
|
@@ -9087,6 +9575,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
9087
9575
|
variantId
|
|
9088
9576
|
productId
|
|
9089
9577
|
sku
|
|
9578
|
+
image {
|
|
9579
|
+
...Image
|
|
9580
|
+
}
|
|
9090
9581
|
}
|
|
9091
9582
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
9092
9583
|
maskedCode
|
|
@@ -9180,7 +9671,14 @@ export const CheckoutShippingLineUpdateDocument = new TypedDocumentString(`
|
|
|
9180
9671
|
}
|
|
9181
9672
|
}
|
|
9182
9673
|
}
|
|
9183
|
-
fragment
|
|
9674
|
+
fragment Image on Image {
|
|
9675
|
+
id
|
|
9676
|
+
url
|
|
9677
|
+
altText
|
|
9678
|
+
width
|
|
9679
|
+
height
|
|
9680
|
+
}
|
|
9681
|
+
fragment Money on Money {
|
|
9184
9682
|
amount
|
|
9185
9683
|
currencyCode
|
|
9186
9684
|
}
|
|
@@ -9279,6 +9777,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
9279
9777
|
variantId
|
|
9280
9778
|
productId
|
|
9281
9779
|
sku
|
|
9780
|
+
image {
|
|
9781
|
+
...Image
|
|
9782
|
+
}
|
|
9282
9783
|
}
|
|
9283
9784
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
9284
9785
|
maskedCode
|
|
@@ -9369,7 +9870,14 @@ export const CheckoutDiscountCodeApplyDocument = new TypedDocumentString(`
|
|
|
9369
9870
|
}
|
|
9370
9871
|
}
|
|
9371
9872
|
}
|
|
9372
|
-
fragment
|
|
9873
|
+
fragment Image on Image {
|
|
9874
|
+
id
|
|
9875
|
+
url
|
|
9876
|
+
altText
|
|
9877
|
+
width
|
|
9878
|
+
height
|
|
9879
|
+
}
|
|
9880
|
+
fragment Money on Money {
|
|
9373
9881
|
amount
|
|
9374
9882
|
currencyCode
|
|
9375
9883
|
}
|
|
@@ -9468,6 +9976,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
9468
9976
|
variantId
|
|
9469
9977
|
productId
|
|
9470
9978
|
sku
|
|
9979
|
+
image {
|
|
9980
|
+
...Image
|
|
9981
|
+
}
|
|
9471
9982
|
}
|
|
9472
9983
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
9473
9984
|
maskedCode
|
|
@@ -9558,7 +10069,14 @@ export const CheckoutDiscountCodeRemoveDocument = new TypedDocumentString(`
|
|
|
9558
10069
|
}
|
|
9559
10070
|
}
|
|
9560
10071
|
}
|
|
9561
|
-
fragment
|
|
10072
|
+
fragment Image on Image {
|
|
10073
|
+
id
|
|
10074
|
+
url
|
|
10075
|
+
altText
|
|
10076
|
+
width
|
|
10077
|
+
height
|
|
10078
|
+
}
|
|
10079
|
+
fragment Money on Money {
|
|
9562
10080
|
amount
|
|
9563
10081
|
currencyCode
|
|
9564
10082
|
}
|
|
@@ -9657,6 +10175,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
9657
10175
|
variantId
|
|
9658
10176
|
productId
|
|
9659
10177
|
sku
|
|
10178
|
+
image {
|
|
10179
|
+
...Image
|
|
10180
|
+
}
|
|
9660
10181
|
}
|
|
9661
10182
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
9662
10183
|
maskedCode
|
|
@@ -9783,7 +10304,14 @@ export const CheckoutPaymentMethodUpdateDocument = new TypedDocumentString(`
|
|
|
9783
10304
|
}
|
|
9784
10305
|
}
|
|
9785
10306
|
}
|
|
9786
|
-
fragment
|
|
10307
|
+
fragment Image on Image {
|
|
10308
|
+
id
|
|
10309
|
+
url
|
|
10310
|
+
altText
|
|
10311
|
+
width
|
|
10312
|
+
height
|
|
10313
|
+
}
|
|
10314
|
+
fragment Money on Money {
|
|
9787
10315
|
amount
|
|
9788
10316
|
currencyCode
|
|
9789
10317
|
}
|
|
@@ -9882,6 +10410,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
9882
10410
|
variantId
|
|
9883
10411
|
productId
|
|
9884
10412
|
sku
|
|
10413
|
+
image {
|
|
10414
|
+
...Image
|
|
10415
|
+
}
|
|
9885
10416
|
}
|
|
9886
10417
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
9887
10418
|
maskedCode
|
|
@@ -9976,7 +10507,14 @@ export const CheckoutCompleteDocument = new TypedDocumentString(`
|
|
|
9976
10507
|
}
|
|
9977
10508
|
}
|
|
9978
10509
|
}
|
|
9979
|
-
fragment
|
|
10510
|
+
fragment Image on Image {
|
|
10511
|
+
id
|
|
10512
|
+
url
|
|
10513
|
+
altText
|
|
10514
|
+
width
|
|
10515
|
+
height
|
|
10516
|
+
}
|
|
10517
|
+
fragment Money on Money {
|
|
9980
10518
|
amount
|
|
9981
10519
|
currencyCode
|
|
9982
10520
|
}
|
|
@@ -10102,6 +10640,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
10102
10640
|
variantId
|
|
10103
10641
|
productId
|
|
10104
10642
|
sku
|
|
10643
|
+
image {
|
|
10644
|
+
...Image
|
|
10645
|
+
}
|
|
10105
10646
|
}
|
|
10106
10647
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
10107
10648
|
maskedCode
|
|
@@ -10192,7 +10733,14 @@ export const CheckoutGiftCardApplyDocument = new TypedDocumentString(`
|
|
|
10192
10733
|
}
|
|
10193
10734
|
}
|
|
10194
10735
|
}
|
|
10195
|
-
fragment
|
|
10736
|
+
fragment Image on Image {
|
|
10737
|
+
id
|
|
10738
|
+
url
|
|
10739
|
+
altText
|
|
10740
|
+
width
|
|
10741
|
+
height
|
|
10742
|
+
}
|
|
10743
|
+
fragment Money on Money {
|
|
10196
10744
|
amount
|
|
10197
10745
|
currencyCode
|
|
10198
10746
|
}
|
|
@@ -10291,6 +10839,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
10291
10839
|
variantId
|
|
10292
10840
|
productId
|
|
10293
10841
|
sku
|
|
10842
|
+
image {
|
|
10843
|
+
...Image
|
|
10844
|
+
}
|
|
10294
10845
|
}
|
|
10295
10846
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
10296
10847
|
maskedCode
|
|
@@ -10381,7 +10932,14 @@ export const CheckoutGiftCardRemoveDocument = new TypedDocumentString(`
|
|
|
10381
10932
|
}
|
|
10382
10933
|
}
|
|
10383
10934
|
}
|
|
10384
|
-
fragment
|
|
10935
|
+
fragment Image on Image {
|
|
10936
|
+
id
|
|
10937
|
+
url
|
|
10938
|
+
altText
|
|
10939
|
+
width
|
|
10940
|
+
height
|
|
10941
|
+
}
|
|
10942
|
+
fragment Money on Money {
|
|
10385
10943
|
amount
|
|
10386
10944
|
currencyCode
|
|
10387
10945
|
}
|
|
@@ -10480,6 +11038,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
10480
11038
|
variantId
|
|
10481
11039
|
productId
|
|
10482
11040
|
sku
|
|
11041
|
+
image {
|
|
11042
|
+
...Image
|
|
11043
|
+
}
|
|
10483
11044
|
}
|
|
10484
11045
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
10485
11046
|
maskedCode
|
|
@@ -10570,7 +11131,14 @@ export const CheckoutGiftCardRecipientUpdateDocument = new TypedDocumentString(`
|
|
|
10570
11131
|
}
|
|
10571
11132
|
}
|
|
10572
11133
|
}
|
|
10573
|
-
fragment
|
|
11134
|
+
fragment Image on Image {
|
|
11135
|
+
id
|
|
11136
|
+
url
|
|
11137
|
+
altText
|
|
11138
|
+
width
|
|
11139
|
+
height
|
|
11140
|
+
}
|
|
11141
|
+
fragment Money on Money {
|
|
10574
11142
|
amount
|
|
10575
11143
|
currencyCode
|
|
10576
11144
|
}
|
|
@@ -10669,6 +11237,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
10669
11237
|
variantId
|
|
10670
11238
|
productId
|
|
10671
11239
|
sku
|
|
11240
|
+
image {
|
|
11241
|
+
...Image
|
|
11242
|
+
}
|
|
10672
11243
|
}
|
|
10673
11244
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
10674
11245
|
maskedCode
|
|
@@ -10993,6 +11564,20 @@ fragment ShopBranding on ShopBranding {
|
|
|
10993
11564
|
...SocialLinks
|
|
10994
11565
|
}
|
|
10995
11566
|
}
|
|
11567
|
+
fragment BotProtectionProvider on BotProtectionProviderInfo {
|
|
11568
|
+
provider
|
|
11569
|
+
siteKey
|
|
11570
|
+
scriptUrl
|
|
11571
|
+
}
|
|
11572
|
+
fragment BotProtection on BotProtectionInfo {
|
|
11573
|
+
primary {
|
|
11574
|
+
...BotProtectionProvider
|
|
11575
|
+
}
|
|
11576
|
+
fallback {
|
|
11577
|
+
...BotProtectionProvider
|
|
11578
|
+
}
|
|
11579
|
+
protectedOperations
|
|
11580
|
+
}
|
|
10996
11581
|
fragment Shop on Shop {
|
|
10997
11582
|
id
|
|
10998
11583
|
name
|
|
@@ -11001,6 +11586,8 @@ fragment Shop on Shop {
|
|
|
11001
11586
|
currencyCode
|
|
11002
11587
|
supportedCurrencies
|
|
11003
11588
|
paymentCurrencies
|
|
11589
|
+
defaultLanguage
|
|
11590
|
+
supportedLanguages
|
|
11004
11591
|
logo {
|
|
11005
11592
|
...Image
|
|
11006
11593
|
}
|
|
@@ -11015,6 +11602,9 @@ fragment Shop on Shop {
|
|
|
11015
11602
|
branding {
|
|
11016
11603
|
...ShopBranding
|
|
11017
11604
|
}
|
|
11605
|
+
botProtection {
|
|
11606
|
+
...BotProtection
|
|
11607
|
+
}
|
|
11018
11608
|
}`) as unknown as TypedDocumentString<ShopQuery, ShopQueryVariables>;
|
|
11019
11609
|
export const ProductDocument = new TypedDocumentString(`
|
|
11020
11610
|
query Product($id: ID, $handle: String) {
|
|
@@ -11033,9 +11623,12 @@ fragment Money on Money {
|
|
|
11033
11623
|
amount
|
|
11034
11624
|
currencyCode
|
|
11035
11625
|
}
|
|
11036
|
-
fragment
|
|
11626
|
+
fragment Price on PriceMoney {
|
|
11037
11627
|
amount
|
|
11038
11628
|
currencyCode
|
|
11629
|
+
}
|
|
11630
|
+
fragment PriceMoney on PriceMoney {
|
|
11631
|
+
...Price
|
|
11039
11632
|
baseAmount
|
|
11040
11633
|
baseCurrencyCode
|
|
11041
11634
|
exchangeRate
|
|
@@ -11075,37 +11668,46 @@ fragment ProductVariant on ProductVariant {
|
|
|
11075
11668
|
weight
|
|
11076
11669
|
position
|
|
11077
11670
|
}
|
|
11078
|
-
fragment
|
|
11671
|
+
fragment ProductCard on Product {
|
|
11079
11672
|
id
|
|
11080
11673
|
handle
|
|
11081
11674
|
title
|
|
11082
|
-
|
|
11083
|
-
|
|
11675
|
+
vendor
|
|
11676
|
+
productType
|
|
11677
|
+
availableForSale
|
|
11678
|
+
averageRating
|
|
11679
|
+
reviewCount
|
|
11680
|
+
tags
|
|
11084
11681
|
featuredImage {
|
|
11085
11682
|
...Image
|
|
11086
11683
|
}
|
|
11087
11684
|
priceRange {
|
|
11088
11685
|
minVariantPrice {
|
|
11089
|
-
...
|
|
11686
|
+
...Price
|
|
11090
11687
|
}
|
|
11091
11688
|
maxVariantPrice {
|
|
11092
|
-
...
|
|
11689
|
+
...Price
|
|
11093
11690
|
}
|
|
11094
11691
|
}
|
|
11095
|
-
|
|
11692
|
+
compareAtPriceRange {
|
|
11096
11693
|
minVariantPrice {
|
|
11097
|
-
...
|
|
11694
|
+
...Price
|
|
11098
11695
|
}
|
|
11099
11696
|
maxVariantPrice {
|
|
11100
|
-
...
|
|
11697
|
+
...Price
|
|
11101
11698
|
}
|
|
11102
11699
|
}
|
|
11103
|
-
|
|
11700
|
+
}
|
|
11701
|
+
fragment ProductBase on Product {
|
|
11702
|
+
...ProductCard
|
|
11703
|
+
description
|
|
11704
|
+
descriptionHtml
|
|
11705
|
+
originalPriceRange {
|
|
11104
11706
|
minVariantPrice {
|
|
11105
|
-
...
|
|
11707
|
+
...Money
|
|
11106
11708
|
}
|
|
11107
11709
|
maxVariantPrice {
|
|
11108
|
-
...
|
|
11710
|
+
...Money
|
|
11109
11711
|
}
|
|
11110
11712
|
}
|
|
11111
11713
|
originalCompareAtPriceRange {
|
|
@@ -11117,16 +11719,10 @@ fragment ProductBase on Product {
|
|
|
11117
11719
|
}
|
|
11118
11720
|
}
|
|
11119
11721
|
totalInventory
|
|
11120
|
-
vendor
|
|
11121
|
-
productType
|
|
11122
11722
|
type
|
|
11123
11723
|
collectRecipientInfo
|
|
11124
|
-
tags
|
|
11125
11724
|
createdAt
|
|
11126
11725
|
updatedAt
|
|
11127
|
-
averageRating
|
|
11128
|
-
reviewCount
|
|
11129
|
-
availableForSale
|
|
11130
11726
|
}
|
|
11131
11727
|
fragment ProductFull on Product {
|
|
11132
11728
|
...ProductBase
|
|
@@ -11153,7 +11749,7 @@ export const ProductsDocument = new TypedDocumentString(`
|
|
|
11153
11749
|
) {
|
|
11154
11750
|
edges {
|
|
11155
11751
|
node {
|
|
11156
|
-
...
|
|
11752
|
+
...ProductCard
|
|
11157
11753
|
}
|
|
11158
11754
|
cursor
|
|
11159
11755
|
}
|
|
@@ -11176,79 +11772,46 @@ fragment Image on Image {
|
|
|
11176
11772
|
width
|
|
11177
11773
|
height
|
|
11178
11774
|
}
|
|
11179
|
-
fragment
|
|
11180
|
-
amount
|
|
11181
|
-
currencyCode
|
|
11182
|
-
}
|
|
11183
|
-
fragment PriceMoney on PriceMoney {
|
|
11775
|
+
fragment Price on PriceMoney {
|
|
11184
11776
|
amount
|
|
11185
11777
|
currencyCode
|
|
11186
|
-
baseAmount
|
|
11187
|
-
baseCurrencyCode
|
|
11188
|
-
exchangeRate
|
|
11189
|
-
marginApplied
|
|
11190
|
-
rateTimestamp
|
|
11191
|
-
isConverted
|
|
11192
11778
|
}
|
|
11193
|
-
fragment
|
|
11779
|
+
fragment ProductCard on Product {
|
|
11194
11780
|
id
|
|
11195
11781
|
handle
|
|
11196
11782
|
title
|
|
11197
|
-
|
|
11198
|
-
|
|
11783
|
+
vendor
|
|
11784
|
+
productType
|
|
11785
|
+
availableForSale
|
|
11786
|
+
averageRating
|
|
11787
|
+
reviewCount
|
|
11788
|
+
tags
|
|
11199
11789
|
featuredImage {
|
|
11200
11790
|
...Image
|
|
11201
11791
|
}
|
|
11202
11792
|
priceRange {
|
|
11203
11793
|
minVariantPrice {
|
|
11204
|
-
...
|
|
11205
|
-
}
|
|
11206
|
-
maxVariantPrice {
|
|
11207
|
-
...PriceMoney
|
|
11208
|
-
}
|
|
11209
|
-
}
|
|
11210
|
-
originalPriceRange {
|
|
11211
|
-
minVariantPrice {
|
|
11212
|
-
...Money
|
|
11794
|
+
...Price
|
|
11213
11795
|
}
|
|
11214
11796
|
maxVariantPrice {
|
|
11215
|
-
...
|
|
11797
|
+
...Price
|
|
11216
11798
|
}
|
|
11217
11799
|
}
|
|
11218
11800
|
compareAtPriceRange {
|
|
11219
11801
|
minVariantPrice {
|
|
11220
|
-
...
|
|
11221
|
-
}
|
|
11222
|
-
maxVariantPrice {
|
|
11223
|
-
...PriceMoney
|
|
11224
|
-
}
|
|
11225
|
-
}
|
|
11226
|
-
originalCompareAtPriceRange {
|
|
11227
|
-
minVariantPrice {
|
|
11228
|
-
...Money
|
|
11802
|
+
...Price
|
|
11229
11803
|
}
|
|
11230
11804
|
maxVariantPrice {
|
|
11231
|
-
...
|
|
11805
|
+
...Price
|
|
11232
11806
|
}
|
|
11233
11807
|
}
|
|
11234
|
-
totalInventory
|
|
11235
|
-
vendor
|
|
11236
|
-
productType
|
|
11237
|
-
type
|
|
11238
|
-
collectRecipientInfo
|
|
11239
|
-
tags
|
|
11240
|
-
createdAt
|
|
11241
|
-
updatedAt
|
|
11242
|
-
averageRating
|
|
11243
|
-
reviewCount
|
|
11244
|
-
availableForSale
|
|
11245
11808
|
}`) as unknown as TypedDocumentString<ProductsQuery, ProductsQueryVariables>;
|
|
11246
11809
|
export const ProductSearchDocument = new TypedDocumentString(`
|
|
11247
11810
|
query ProductSearch($query: String!, $first: Int = 20, $after: String, $filters: ProductFilterInput) {
|
|
11248
11811
|
products(query: $query, first: $first, after: $after, filters: $filters) {
|
|
11249
11812
|
edges {
|
|
11250
11813
|
node {
|
|
11251
|
-
...
|
|
11814
|
+
...ProductCard
|
|
11252
11815
|
}
|
|
11253
11816
|
cursor
|
|
11254
11817
|
}
|
|
@@ -11271,72 +11834,39 @@ fragment Image on Image {
|
|
|
11271
11834
|
width
|
|
11272
11835
|
height
|
|
11273
11836
|
}
|
|
11274
|
-
fragment
|
|
11275
|
-
amount
|
|
11276
|
-
currencyCode
|
|
11277
|
-
}
|
|
11278
|
-
fragment PriceMoney on PriceMoney {
|
|
11837
|
+
fragment Price on PriceMoney {
|
|
11279
11838
|
amount
|
|
11280
11839
|
currencyCode
|
|
11281
|
-
baseAmount
|
|
11282
|
-
baseCurrencyCode
|
|
11283
|
-
exchangeRate
|
|
11284
|
-
marginApplied
|
|
11285
|
-
rateTimestamp
|
|
11286
|
-
isConverted
|
|
11287
11840
|
}
|
|
11288
|
-
fragment
|
|
11841
|
+
fragment ProductCard on Product {
|
|
11289
11842
|
id
|
|
11290
11843
|
handle
|
|
11291
11844
|
title
|
|
11292
|
-
|
|
11293
|
-
|
|
11845
|
+
vendor
|
|
11846
|
+
productType
|
|
11847
|
+
availableForSale
|
|
11848
|
+
averageRating
|
|
11849
|
+
reviewCount
|
|
11850
|
+
tags
|
|
11294
11851
|
featuredImage {
|
|
11295
11852
|
...Image
|
|
11296
11853
|
}
|
|
11297
11854
|
priceRange {
|
|
11298
11855
|
minVariantPrice {
|
|
11299
|
-
...
|
|
11300
|
-
}
|
|
11301
|
-
maxVariantPrice {
|
|
11302
|
-
...PriceMoney
|
|
11303
|
-
}
|
|
11304
|
-
}
|
|
11305
|
-
originalPriceRange {
|
|
11306
|
-
minVariantPrice {
|
|
11307
|
-
...Money
|
|
11856
|
+
...Price
|
|
11308
11857
|
}
|
|
11309
11858
|
maxVariantPrice {
|
|
11310
|
-
...
|
|
11859
|
+
...Price
|
|
11311
11860
|
}
|
|
11312
11861
|
}
|
|
11313
11862
|
compareAtPriceRange {
|
|
11314
11863
|
minVariantPrice {
|
|
11315
|
-
...
|
|
11316
|
-
}
|
|
11317
|
-
maxVariantPrice {
|
|
11318
|
-
...PriceMoney
|
|
11319
|
-
}
|
|
11320
|
-
}
|
|
11321
|
-
originalCompareAtPriceRange {
|
|
11322
|
-
minVariantPrice {
|
|
11323
|
-
...Money
|
|
11864
|
+
...Price
|
|
11324
11865
|
}
|
|
11325
11866
|
maxVariantPrice {
|
|
11326
|
-
...
|
|
11867
|
+
...Price
|
|
11327
11868
|
}
|
|
11328
11869
|
}
|
|
11329
|
-
totalInventory
|
|
11330
|
-
vendor
|
|
11331
|
-
productType
|
|
11332
|
-
type
|
|
11333
|
-
collectRecipientInfo
|
|
11334
|
-
tags
|
|
11335
|
-
createdAt
|
|
11336
|
-
updatedAt
|
|
11337
|
-
averageRating
|
|
11338
|
-
reviewCount
|
|
11339
|
-
availableForSale
|
|
11340
11870
|
}`) as unknown as TypedDocumentString<ProductSearchQuery, ProductSearchQueryVariables>;
|
|
11341
11871
|
export const CollectionDocument = new TypedDocumentString(`
|
|
11342
11872
|
query Collection($id: ID, $handle: String, $productsFirst: Int = 20, $productsAfter: String) {
|
|
@@ -11345,7 +11875,7 @@ export const CollectionDocument = new TypedDocumentString(`
|
|
|
11345
11875
|
products(first: $productsFirst, after: $productsAfter) {
|
|
11346
11876
|
edges {
|
|
11347
11877
|
node {
|
|
11348
|
-
...
|
|
11878
|
+
...ProductCard
|
|
11349
11879
|
}
|
|
11350
11880
|
cursor
|
|
11351
11881
|
}
|
|
@@ -11369,72 +11899,39 @@ fragment Image on Image {
|
|
|
11369
11899
|
width
|
|
11370
11900
|
height
|
|
11371
11901
|
}
|
|
11372
|
-
fragment
|
|
11373
|
-
amount
|
|
11374
|
-
currencyCode
|
|
11375
|
-
}
|
|
11376
|
-
fragment PriceMoney on PriceMoney {
|
|
11902
|
+
fragment Price on PriceMoney {
|
|
11377
11903
|
amount
|
|
11378
11904
|
currencyCode
|
|
11379
|
-
baseAmount
|
|
11380
|
-
baseCurrencyCode
|
|
11381
|
-
exchangeRate
|
|
11382
|
-
marginApplied
|
|
11383
|
-
rateTimestamp
|
|
11384
|
-
isConverted
|
|
11385
11905
|
}
|
|
11386
|
-
fragment
|
|
11906
|
+
fragment ProductCard on Product {
|
|
11387
11907
|
id
|
|
11388
11908
|
handle
|
|
11389
11909
|
title
|
|
11390
|
-
|
|
11391
|
-
|
|
11910
|
+
vendor
|
|
11911
|
+
productType
|
|
11912
|
+
availableForSale
|
|
11913
|
+
averageRating
|
|
11914
|
+
reviewCount
|
|
11915
|
+
tags
|
|
11392
11916
|
featuredImage {
|
|
11393
11917
|
...Image
|
|
11394
11918
|
}
|
|
11395
11919
|
priceRange {
|
|
11396
11920
|
minVariantPrice {
|
|
11397
|
-
...
|
|
11398
|
-
}
|
|
11399
|
-
maxVariantPrice {
|
|
11400
|
-
...PriceMoney
|
|
11401
|
-
}
|
|
11402
|
-
}
|
|
11403
|
-
originalPriceRange {
|
|
11404
|
-
minVariantPrice {
|
|
11405
|
-
...Money
|
|
11921
|
+
...Price
|
|
11406
11922
|
}
|
|
11407
11923
|
maxVariantPrice {
|
|
11408
|
-
...
|
|
11924
|
+
...Price
|
|
11409
11925
|
}
|
|
11410
11926
|
}
|
|
11411
11927
|
compareAtPriceRange {
|
|
11412
11928
|
minVariantPrice {
|
|
11413
|
-
...
|
|
11414
|
-
}
|
|
11415
|
-
maxVariantPrice {
|
|
11416
|
-
...PriceMoney
|
|
11417
|
-
}
|
|
11418
|
-
}
|
|
11419
|
-
originalCompareAtPriceRange {
|
|
11420
|
-
minVariantPrice {
|
|
11421
|
-
...Money
|
|
11929
|
+
...Price
|
|
11422
11930
|
}
|
|
11423
11931
|
maxVariantPrice {
|
|
11424
|
-
...
|
|
11932
|
+
...Price
|
|
11425
11933
|
}
|
|
11426
11934
|
}
|
|
11427
|
-
totalInventory
|
|
11428
|
-
vendor
|
|
11429
|
-
productType
|
|
11430
|
-
type
|
|
11431
|
-
collectRecipientInfo
|
|
11432
|
-
tags
|
|
11433
|
-
createdAt
|
|
11434
|
-
updatedAt
|
|
11435
|
-
averageRating
|
|
11436
|
-
reviewCount
|
|
11437
|
-
availableForSale
|
|
11438
11935
|
}
|
|
11439
11936
|
fragment Collection on Collection {
|
|
11440
11937
|
id
|
|
@@ -11586,9 +12083,12 @@ fragment Money on Money {
|
|
|
11586
12083
|
amount
|
|
11587
12084
|
currencyCode
|
|
11588
12085
|
}
|
|
11589
|
-
fragment
|
|
12086
|
+
fragment Price on PriceMoney {
|
|
11590
12087
|
amount
|
|
11591
12088
|
currencyCode
|
|
12089
|
+
}
|
|
12090
|
+
fragment PriceMoney on PriceMoney {
|
|
12091
|
+
...Price
|
|
11592
12092
|
baseAmount
|
|
11593
12093
|
baseCurrencyCode
|
|
11594
12094
|
exchangeRate
|
|
@@ -11809,13 +12309,118 @@ fragment Order on Order {
|
|
|
11809
12309
|
}
|
|
11810
12310
|
lineItemsCount
|
|
11811
12311
|
}`) as unknown as TypedDocumentString<CustomerQuery, CustomerQueryVariables>;
|
|
12312
|
+
export const CustomerProfileDocument = new TypedDocumentString(`
|
|
12313
|
+
query CustomerProfile($customerAccessToken: String!) {
|
|
12314
|
+
customer(customerAccessToken: $customerAccessToken) {
|
|
12315
|
+
...Customer
|
|
12316
|
+
}
|
|
12317
|
+
}
|
|
12318
|
+
fragment Money on Money {
|
|
12319
|
+
amount
|
|
12320
|
+
currencyCode
|
|
12321
|
+
}
|
|
12322
|
+
fragment MailingAddress on MailingAddress {
|
|
12323
|
+
id
|
|
12324
|
+
address1
|
|
12325
|
+
address2
|
|
12326
|
+
city
|
|
12327
|
+
company
|
|
12328
|
+
country
|
|
12329
|
+
countryCode
|
|
12330
|
+
firstName
|
|
12331
|
+
lastName
|
|
12332
|
+
phone
|
|
12333
|
+
province
|
|
12334
|
+
provinceCode
|
|
12335
|
+
zip
|
|
12336
|
+
isDefault
|
|
12337
|
+
}
|
|
12338
|
+
fragment Customer on Customer {
|
|
12339
|
+
id
|
|
12340
|
+
email
|
|
12341
|
+
firstName
|
|
12342
|
+
lastName
|
|
12343
|
+
displayName
|
|
12344
|
+
phone
|
|
12345
|
+
emailVerified
|
|
12346
|
+
emailMarketingState
|
|
12347
|
+
defaultAddress {
|
|
12348
|
+
...MailingAddress
|
|
12349
|
+
}
|
|
12350
|
+
ordersCount
|
|
12351
|
+
totalSpent {
|
|
12352
|
+
...Money
|
|
12353
|
+
}
|
|
12354
|
+
createdAt
|
|
12355
|
+
updatedAt
|
|
12356
|
+
}`) as unknown as TypedDocumentString<CustomerProfileQuery, CustomerProfileQueryVariables>;
|
|
12357
|
+
export const CustomerOrderDocument = new TypedDocumentString(`
|
|
12358
|
+
query CustomerOrder($orderId: ID!, $customerAccessToken: String!) {
|
|
12359
|
+
customerOrder(orderId: $orderId, customerAccessToken: $customerAccessToken) {
|
|
12360
|
+
...Order
|
|
12361
|
+
}
|
|
12362
|
+
}
|
|
12363
|
+
fragment Money on Money {
|
|
12364
|
+
amount
|
|
12365
|
+
currencyCode
|
|
12366
|
+
}
|
|
12367
|
+
fragment MailingAddress on MailingAddress {
|
|
12368
|
+
id
|
|
12369
|
+
address1
|
|
12370
|
+
address2
|
|
12371
|
+
city
|
|
12372
|
+
company
|
|
12373
|
+
country
|
|
12374
|
+
countryCode
|
|
12375
|
+
firstName
|
|
12376
|
+
lastName
|
|
12377
|
+
phone
|
|
12378
|
+
province
|
|
12379
|
+
provinceCode
|
|
12380
|
+
zip
|
|
12381
|
+
isDefault
|
|
12382
|
+
}
|
|
12383
|
+
fragment Order on Order {
|
|
12384
|
+
id
|
|
12385
|
+
orderNumber
|
|
12386
|
+
totalPrice {
|
|
12387
|
+
...Money
|
|
12388
|
+
}
|
|
12389
|
+
subtotalPrice {
|
|
12390
|
+
...Money
|
|
12391
|
+
}
|
|
12392
|
+
totalTax {
|
|
12393
|
+
...Money
|
|
12394
|
+
}
|
|
12395
|
+
totalShipping {
|
|
12396
|
+
...Money
|
|
12397
|
+
}
|
|
12398
|
+
status
|
|
12399
|
+
financialStatus
|
|
12400
|
+
fulfillmentStatus
|
|
12401
|
+
processedAt
|
|
12402
|
+
confirmedAt
|
|
12403
|
+
cancelledAt
|
|
12404
|
+
expiredAt
|
|
12405
|
+
shippingAddress {
|
|
12406
|
+
...MailingAddress
|
|
12407
|
+
}
|
|
12408
|
+
lineItemsCount
|
|
12409
|
+
}`) as unknown as TypedDocumentString<CustomerOrderQuery, CustomerOrderQueryVariables>;
|
|
11812
12410
|
export const CheckoutDocument = new TypedDocumentString(`
|
|
11813
12411
|
query Checkout($id: ID!) {
|
|
11814
12412
|
checkout(id: $id) {
|
|
11815
12413
|
...Checkout
|
|
11816
12414
|
}
|
|
11817
12415
|
}
|
|
11818
|
-
fragment
|
|
12416
|
+
fragment Image on Image {
|
|
12417
|
+
id
|
|
12418
|
+
url
|
|
12419
|
+
altText
|
|
12420
|
+
width
|
|
12421
|
+
height
|
|
12422
|
+
}
|
|
12423
|
+
fragment Money on Money {
|
|
11819
12424
|
amount
|
|
11820
12425
|
currencyCode
|
|
11821
12426
|
}
|
|
@@ -11909,6 +12514,9 @@ fragment CheckoutLineItem on CheckoutLineItem {
|
|
|
11909
12514
|
variantId
|
|
11910
12515
|
productId
|
|
11911
12516
|
sku
|
|
12517
|
+
image {
|
|
12518
|
+
...Image
|
|
12519
|
+
}
|
|
11912
12520
|
}
|
|
11913
12521
|
fragment AppliedGiftCard on AppliedGiftCard {
|
|
11914
12522
|
maskedCode
|