Skip to content

Commit

Permalink
注文のIBrokerを最適化
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Feb 10, 2024
1 parent 266a801 commit b5e2d8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
- 注文取引のresultを最適化(order.acceptedOffersを除外)
- update coa-service
- update gmo-service
- 注文のIBrokerを最適化

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion src/order.ts
Expand Up @@ -277,7 +277,7 @@ export type IPersonCustomer = Pick<IPerson, 'id' | 'typeOf' | 'memberOf'> & IPro
* カスタマー
*/
export type ICustomer = IPersonCustomer | IWebApplicationCustomer | IOrganizationCustomer;
export type IBroker = Pick<IPerson, 'id' | 'identifier' | 'typeOf'>;
export type IBroker = Pick<IPerson, 'id' | 'typeOf'>;
/**
* 返品者
*/
Expand Down

0 comments on commit b5e2d8c

Please sign in to comment.