Skip to content

Commit

Permalink
アクション検索条件拡張
Browse files Browse the repository at this point in the history
  • Loading branch information
ilovegadd committed Mar 28, 2024
1 parent 6600cc2 commit 13cb46c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

- イベントに対するオファー集計タスクを追加
- AcceptActionを追加
- アクション検索条件拡張

### Changed

Expand Down
14 changes: 14 additions & 0 deletions src/action.ts
Expand Up @@ -115,6 +115,7 @@ export interface ISearchConditions {
};
};
instrument?: {
typeOf?: { $eq?: string };
transactionNumber?: { $eq?: string };
};
location?: {
Expand All @@ -139,6 +140,9 @@ export interface ISearchConditions {
};
};
object?: {
/**
* 通知アクション(決済、返金)の決済方法ID
*/
paymentMethodId?: {
$eq?: string;
};
Expand All @@ -157,6 +161,9 @@ export interface ISearchConditions {
accountId?: {
$eq?: string;
};
/**
* 決済アクションの決済方法ID
*/
paymentMethodId?: {
$eq?: string;
$in?: string[];
Expand All @@ -165,6 +172,9 @@ export interface ISearchConditions {
$eq?: string;
};
};
/**
* 承認アクションの決済方法ID
*/
paymentMethodId?: {
$eq?: string;
};
Expand All @@ -190,6 +200,10 @@ export interface ISearchConditions {
$eq?: string;
$in?: string[];
};
/**
* 確定アクション、採用アクションなどの資産取引番号
*/
transactionNumber?: { $eq?: string };
};
startFrom?: Date;
startThrough?: Date;
Expand Down

0 comments on commit 13cb46c

Please sign in to comment.