@chevre/factory 4.375.0-alpha.1 → 4.375.0-alpha.2
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.
- package/lib/assetTransaction.d.ts +12 -1
- package/lib/transaction.d.ts +8 -6
- package/package.json +1 -1
|
@@ -105,10 +105,12 @@ export type IAttributes<TStartParams, TResult, TError, TPotentialActions> = TSta
|
|
|
105
105
|
tasksExportAction?: ITasksExportAction;
|
|
106
106
|
/**
|
|
107
107
|
* タスクエクスポート日時
|
|
108
|
+
* @deprecated use tasksExportAction
|
|
108
109
|
*/
|
|
109
110
|
tasksExportedAt?: Date;
|
|
110
111
|
/**
|
|
111
112
|
* タスクエクスポート状態
|
|
113
|
+
* @deprecated use tasksExportAction
|
|
112
114
|
*/
|
|
113
115
|
tasksExportationStatus: TransactionTasksExportationStatus;
|
|
114
116
|
/**
|
|
@@ -145,8 +147,12 @@ export interface ISearchConditions<T extends AssetTransactionType> {
|
|
|
145
147
|
ids?: string[];
|
|
146
148
|
/**
|
|
147
149
|
* ステータスリスト
|
|
150
|
+
* @deprecated use tasksExportAction
|
|
148
151
|
*/
|
|
149
152
|
statuses?: TransactionStatusType[];
|
|
153
|
+
status?: {
|
|
154
|
+
$in?: TransactionStatusType[];
|
|
155
|
+
};
|
|
150
156
|
/**
|
|
151
157
|
* 開始日時(から)
|
|
152
158
|
*/
|
|
@@ -170,5 +176,10 @@ export interface ISearchConditions<T extends AssetTransactionType> {
|
|
|
170
176
|
$eq?: string;
|
|
171
177
|
$in?: string[];
|
|
172
178
|
};
|
|
173
|
-
|
|
179
|
+
tasksExportAction?: {
|
|
180
|
+
actionStatus?: {
|
|
181
|
+
$eq?: ActionStatusType;
|
|
182
|
+
$in?: ActionStatusType[];
|
|
183
|
+
};
|
|
184
|
+
};
|
|
174
185
|
}
|
package/lib/transaction.d.ts
CHANGED
|
@@ -118,10 +118,12 @@ export type IAttributes<TStartParams, TResult, TError, TPotentialActions> = TSta
|
|
|
118
118
|
tasksExportAction?: ITasksExportAction;
|
|
119
119
|
/**
|
|
120
120
|
* タスクエクスポート日時
|
|
121
|
+
* @deprecated use tasksExportAction
|
|
121
122
|
*/
|
|
122
123
|
tasksExportedAt?: Date;
|
|
123
124
|
/**
|
|
124
125
|
* タスクエクスポート状態
|
|
126
|
+
* @deprecated use tasksExportAction
|
|
125
127
|
*/
|
|
126
128
|
tasksExportationStatus: TransactionTasksExportationStatus;
|
|
127
129
|
/**
|
|
@@ -155,8 +157,12 @@ export interface ISearchConditions<T extends TransactionType> {
|
|
|
155
157
|
ids?: string[];
|
|
156
158
|
/**
|
|
157
159
|
* ステータスリスト
|
|
160
|
+
* @deprecated use tasksExportAction
|
|
158
161
|
*/
|
|
159
162
|
statuses?: TransactionStatusType[];
|
|
163
|
+
status?: {
|
|
164
|
+
$in?: TransactionStatusType[];
|
|
165
|
+
};
|
|
160
166
|
/**
|
|
161
167
|
* 開始日時(から)
|
|
162
168
|
*/
|
|
@@ -174,18 +180,14 @@ export interface ISearchConditions<T extends TransactionType> {
|
|
|
174
180
|
*/
|
|
175
181
|
endThrough?: Date;
|
|
176
182
|
agent?: {
|
|
177
|
-
typeOf?: PersonType;
|
|
183
|
+
typeOf?: PersonType.Person | IWebApplication['typeOf'];
|
|
178
184
|
ids?: string[];
|
|
179
185
|
identifiers?: IIdentifier;
|
|
180
|
-
givenName?: string;
|
|
181
|
-
familyName?: string;
|
|
182
|
-
telephone?: string;
|
|
183
|
-
email?: string;
|
|
184
186
|
};
|
|
185
|
-
tasksExportationStatuses?: TransactionTasksExportationStatus[];
|
|
186
187
|
tasksExportAction?: {
|
|
187
188
|
actionStatus?: {
|
|
188
189
|
$eq?: ActionStatusType;
|
|
190
|
+
$in?: ActionStatusType[];
|
|
189
191
|
};
|
|
190
192
|
};
|
|
191
193
|
}
|