Skip to content

Commit

Permalink
chore(admin-ui): Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Mar 23, 2021
1 parent b446c8f commit 51fc481
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8244,7 +8244,7 @@ export type TestEligibleShippingMethodsQueryVariables = Exact<{

export type TestEligibleShippingMethodsQuery = { testEligibleShippingMethods: Array<(
{ __typename?: 'ShippingMethodQuote' }
& Pick<ShippingMethodQuote, 'id' | 'name' | 'description' | 'price' | 'priceWithTax' | 'metadata'>
& Pick<ShippingMethodQuote, 'id' | 'name' | 'code' | 'description' | 'price' | 'priceWithTax' | 'metadata'>
)> };

type DiscriminateUnion<T, U> = T extends U ? T : never;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const TEST_ELIGIBLE_SHIPPING_METHODS = gql`
testEligibleShippingMethods(input: $input) {
id
name
code
description
price
priceWithTax
Expand Down

0 comments on commit 51fc481

Please sign in to comment.