Skip to content

Commit

Permalink
単価オファー検索条件拡張
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Sep 5, 2023
1 parent df85615 commit a0e74f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

### Added

- 単価オファーにサブオファーを追加
- タスクに識別子を追加
- 集計オファーを追加
- 集計オファー同期タスクを追加
- 単価オファー検索条件拡張

### Changed

Expand Down
6 changes: 5 additions & 1 deletion src/unitPriceOffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export interface IUnitPriceOffer extends Pick<
* ソート条件
*/
export interface ISortOrder {
identifier?: SortType;
'priceSpecification.price'?: SortType;
}
/**
Expand Down Expand Up @@ -167,7 +168,10 @@ export interface ISearchConditions {
/**
* アドオンプロダクトID
*/
id?: { $eq?: string };
id?: {
$eq?: string;
$in?: string[];
};
};
};
availability?: { $eq?: IAvailability };
Expand Down

0 comments on commit a0e74f7

Please sign in to comment.