@chevre/factory 10.2.0 → 10.3.0-alpha.1
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/chevre/task.d.ts +0 -24
- package/package.json +1 -1
package/lib/chevre/task.d.ts
CHANGED
|
@@ -73,27 +73,6 @@ export interface ITaskAttributes {
|
|
|
73
73
|
export interface ISortOrder {
|
|
74
74
|
runsAt?: SortType;
|
|
75
75
|
}
|
|
76
|
-
export interface IDataSearchConditions {
|
|
77
|
-
object?: {
|
|
78
|
-
id?: {
|
|
79
|
-
$eq?: string;
|
|
80
|
-
};
|
|
81
|
-
orderNumber?: {
|
|
82
|
-
$eq?: string;
|
|
83
|
-
};
|
|
84
|
-
transactionNumber?: {
|
|
85
|
-
$eq?: string;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
purpose?: {
|
|
89
|
-
id?: {
|
|
90
|
-
$eq?: string;
|
|
91
|
-
};
|
|
92
|
-
orderNumber?: {
|
|
93
|
-
$eq?: string;
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
}
|
|
97
76
|
/**
|
|
98
77
|
* タスク検索条件
|
|
99
78
|
*/
|
|
@@ -122,9 +101,6 @@ export interface ISearchConditions {
|
|
|
122
101
|
statuses?: TaskStatus[];
|
|
123
102
|
runsFrom?: Date;
|
|
124
103
|
runsThrough?: Date;
|
|
125
|
-
lastTriedFrom?: Date;
|
|
126
|
-
lastTriedThrough?: Date;
|
|
127
|
-
data?: IDataSearchConditions;
|
|
128
104
|
dateAborted?: {
|
|
129
105
|
$gte?: Date;
|
|
130
106
|
$lte?: Date;
|