@chevre/factory 4.279.0-alpha.4 → 4.279.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { AccountType } from '../../accountType';
|
|
2
2
|
import * as ActionFactory from '../../action';
|
|
3
|
-
import { ActionStatusType } from '../../actionStatusType';
|
|
4
3
|
import { ActionType } from '../../actionType';
|
|
5
4
|
import { IMonetaryAmount } from '../../monetaryAmount';
|
|
6
|
-
import { SortType } from '../../sortType';
|
|
7
5
|
import { IThing } from '../../thing';
|
|
8
6
|
import { AccountTransactionType } from '../transactionType';
|
|
9
7
|
export declare type IAgent = ActionFactory.IParticipant;
|
|
@@ -90,82 +88,3 @@ export interface IAttributes extends ActionFactory.IAttributes<ActionType.MoneyT
|
|
|
90
88
|
toLocation: ILocation;
|
|
91
89
|
}
|
|
92
90
|
export declare type IAction = ActionFactory.IAction<IAttributes>;
|
|
93
|
-
/**
|
|
94
|
-
* ソート条件
|
|
95
|
-
*/
|
|
96
|
-
export interface ISortOrder {
|
|
97
|
-
/**
|
|
98
|
-
* 開始日時
|
|
99
|
-
*/
|
|
100
|
-
startDate?: SortType;
|
|
101
|
-
}
|
|
102
|
-
export interface IProjectSearchConditions {
|
|
103
|
-
id?: {
|
|
104
|
-
$eq?: string;
|
|
105
|
-
$ne?: string;
|
|
106
|
-
};
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
|
-
* 検索条件
|
|
110
|
-
*/
|
|
111
|
-
export interface ISearchConditions {
|
|
112
|
-
limit?: number;
|
|
113
|
-
page?: number;
|
|
114
|
-
sort?: ISortOrder;
|
|
115
|
-
actionStatus?: {
|
|
116
|
-
$in?: ActionStatusType[];
|
|
117
|
-
};
|
|
118
|
-
amount?: {
|
|
119
|
-
/**
|
|
120
|
-
* 通貨
|
|
121
|
-
*/
|
|
122
|
-
currency?: {
|
|
123
|
-
$eq?: string;
|
|
124
|
-
};
|
|
125
|
-
};
|
|
126
|
-
location?: {
|
|
127
|
-
/**
|
|
128
|
-
* 口座番号
|
|
129
|
-
*/
|
|
130
|
-
accountNumber?: {
|
|
131
|
-
$eq?: string;
|
|
132
|
-
};
|
|
133
|
-
/**
|
|
134
|
-
* 口座種別
|
|
135
|
-
*/
|
|
136
|
-
typeOf?: {
|
|
137
|
-
$eq?: string;
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
project?: IProjectSearchConditions;
|
|
141
|
-
purpose?: {
|
|
142
|
-
/**
|
|
143
|
-
* 取引タイプ
|
|
144
|
-
*/
|
|
145
|
-
typeOf?: {
|
|
146
|
-
$eq?: string;
|
|
147
|
-
};
|
|
148
|
-
/**
|
|
149
|
-
* 取引ID
|
|
150
|
-
*/
|
|
151
|
-
id?: {
|
|
152
|
-
$eq?: string;
|
|
153
|
-
};
|
|
154
|
-
/**
|
|
155
|
-
* 取引番号
|
|
156
|
-
*/
|
|
157
|
-
transactionNumber?: {
|
|
158
|
-
$eq?: string;
|
|
159
|
-
};
|
|
160
|
-
/**
|
|
161
|
-
* 取引識別子
|
|
162
|
-
*/
|
|
163
|
-
identifier?: {
|
|
164
|
-
$eq?: string;
|
|
165
|
-
};
|
|
166
|
-
};
|
|
167
|
-
startDate?: {
|
|
168
|
-
$gte?: Date;
|
|
169
|
-
$lte?: Date;
|
|
170
|
-
};
|
|
171
|
-
}
|
package/lib/offerCatalog.d.ts
CHANGED
package/lib/place/seat.d.ts
CHANGED