Skip to content

Commit

Permalink
optimize placeOrder.result
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Jun 14, 2024
1 parent 70621de commit 021fa57
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/transaction/placeOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,15 @@ export interface IConfirmParams {
}
export type IOrderAsResult = Pick<
OrderFactory.IOrder,
'broker' | 'confirmationNumber'
'confirmationNumber'
// | 'broker' // optimize(2024-06-17~)
// | 'name' // optimize(2024-06-17~)
// | 'seller' // optimize(2024-06-17~)
// | 'isGift' // optimize(2024-06-17~)
// | 'project' // optimize(2024-06-17~)
// | 'customer' // optimize(2024-06-17~)
| 'identifier' | 'name' | 'orderDate' | 'orderNumber' | 'orderStatus' | 'orderedItem'
| 'paymentMethods' | 'price' | 'priceCurrency' | 'seller' | 'typeOf' | 'url'
| 'identifier' | 'orderDate' | 'orderNumber' | 'orderStatus' | 'orderedItem'
| 'paymentMethods' | 'price' | 'priceCurrency' | 'typeOf' | 'url'
>;
export interface IAuthorizeActionAsResult { id: string; }
/**
Expand Down

0 comments on commit 021fa57

Please sign in to comment.