🎨 styles: shipping method

:%s
This commit is contained in:
lytrankieio123
2021-10-20 17:46:03 +07:00
parent f959ac8ea2
commit aba0e43b93
13 changed files with 280 additions and 44 deletions

View File

@@ -365,8 +365,17 @@ export type Address = Node & {
customFields?: Maybe<Scalars['JSON']>
}
export type SetShippingMethodMutationVariables = Exact<{
id: Scalars['ID'];
}>;
export type SetShippingMethodMutation = {
setOrderShippingMethod:
| TestOrderFragmentFragment
| Pick<OrderModificationError, 'errorCode' | 'message'>
| Pick<IneligibleShippingMethodError, 'errorCode' | 'message'>
| Pick<NoActiveOrderError, 'errorCode' | 'message'>;
};
export type Asset = Node & {
__typename?: 'Asset'