@chevre/factory 4.270.0 → 4.271.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.
- package/lib/task.d.ts +8 -0
- package/package.json +1 -1
package/lib/task.d.ts
CHANGED
|
@@ -50,6 +50,10 @@ export interface IAttributes {
|
|
|
50
50
|
* TaskNameによってインターフェースが決定する
|
|
51
51
|
*/
|
|
52
52
|
data: IData;
|
|
53
|
+
/**
|
|
54
|
+
* 中止日時
|
|
55
|
+
*/
|
|
56
|
+
dateAborted?: Date;
|
|
53
57
|
}
|
|
54
58
|
/**
|
|
55
59
|
* ソート条件
|
|
@@ -91,4 +95,8 @@ export interface ISearchConditions<T extends TaskName | string> {
|
|
|
91
95
|
lastTriedFrom?: Date;
|
|
92
96
|
lastTriedThrough?: Date;
|
|
93
97
|
data?: IDataSearchConditions;
|
|
98
|
+
dateAborted?: {
|
|
99
|
+
$gte?: Date;
|
|
100
|
+
$lte?: Date;
|
|
101
|
+
};
|
|
94
102
|
}
|