@chevre/factory 4.270.0-alpha.2 → 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.
|
@@ -40,7 +40,7 @@ export interface IAccount {
|
|
|
40
40
|
name?: string;
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 転送元あるいは転送先
|
|
44
44
|
*/
|
|
45
45
|
export declare type ILocation = IAnonymousLocation | IAccount;
|
|
46
46
|
export declare type IObject = any;
|
|
@@ -62,7 +62,7 @@ export interface IPurpose {
|
|
|
62
62
|
/**
|
|
63
63
|
* 取引番号
|
|
64
64
|
*/
|
|
65
|
-
transactionNumber
|
|
65
|
+
transactionNumber: string;
|
|
66
66
|
/**
|
|
67
67
|
* 取引識別子
|
|
68
68
|
*/
|
|
@@ -94,7 +94,7 @@ export declare type IAction = ActionFactory.IAction<IAttributes>;
|
|
|
94
94
|
*/
|
|
95
95
|
export interface ISortOrder {
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* 開始日時
|
|
98
98
|
*/
|
|
99
99
|
startDate?: SortType;
|
|
100
100
|
}
|
|
@@ -111,11 +111,6 @@ export interface ISearchConditions {
|
|
|
111
111
|
limit?: number;
|
|
112
112
|
page?: number;
|
|
113
113
|
sort?: ISortOrder;
|
|
114
|
-
/**
|
|
115
|
-
* 口座番号
|
|
116
|
-
* @deprecated Use location.accountNumber
|
|
117
|
-
*/
|
|
118
|
-
accountNumber?: string;
|
|
119
114
|
actionStatus?: {
|
|
120
115
|
$in?: ActionStatusType[];
|
|
121
116
|
};
|
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
|
}
|