Skip to content

Commit

Permalink
chore: fixes typing error pointing by linter
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoferreiradev committed Oct 14, 2024
1 parent 4d783d1 commit 036818e
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions shopify/utils/storefront/storefront.graphql.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7779,13 +7779,6 @@ export type FetchCustomerInfoQueryVariables = Exact<{
}>;


export type FetchCustomerInfoQuery = { customer?: { id: string, email?: string | null, firstName?: string | null, lastName?: string | null } | null };

export type FetchCustomerInfoQueryVariables = Exact<{
customerAccessToken: Scalars['String']['input'];
}>;


export type FetchCustomerInfoQuery = { customer?: { id: string, email?: string | null, firstName?: string | null, lastName?: string | null } | null };

export type AddItemToCartMutationVariables = Exact<{
Expand Down Expand Up @@ -7818,4 +7811,4 @@ export type SignInWithEmailAndPasswordMutationVariables = Exact<{
}>;


export type SignInWithEmailAndPasswordMutation = { customerAccessTokenCreate?: { customerAccessToken?: { accessToken: string, expiresAt: any } | null, customerUserErrors: Array<{ code?: CustomerErrorCode | null, message: string }> } | null };
export type SignInWithEmailAndPasswordMutation = { customerAccessTokenCreate?: { customerAccessToken?: { accessToken: string, expiresAt: any } | null, customerUserErrors: Array<{ code?: CustomerErrorCode | null, message: string }> } | null };

0 comments on commit 036818e

Please sign in to comment.