feat: useGetActiveOrderForCheckout

:%s
This commit is contained in:
lytrankieio123
2021-10-21 09:47:45 +07:00
parent aba0e43b93
commit bcdbea4059
12 changed files with 241 additions and 48 deletions

View File

@@ -3066,6 +3066,11 @@ export type CartFragment = { __typename?: 'Order' } & Pick<
{ __typename?: 'Discount' } & Pick<Discount, 'type' | 'description' | 'amount' | 'amountWithTax'>
>
customer?: Maybe<{ __typename?: 'Customer' } & Pick<Customer, 'id' | 'firstName' | 'lastName' | 'emailAddress'>>
shippingLines: Array<
Pick<ShippingLine, 'priceWithTax'> & {
shippingMethod: Pick<ShippingMethod, 'id' | 'code' | 'name' | 'description'>;
}
>
lines: Array<
{ __typename?: 'OrderLine' } & Pick<
OrderLine,