@chevre/factory 10.1.0-alpha.5 → 10.2.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.
|
@@ -111,7 +111,6 @@ exports.RESERVED_CODE_VALUES = [
|
|
|
111
111
|
taskStatus_1.TaskStatus.Executed,
|
|
112
112
|
taskStatus_1.TaskStatus.Ready,
|
|
113
113
|
taskStatus_1.TaskStatus.Running,
|
|
114
|
-
taskStatus_1.TaskStatus.Expired,
|
|
115
114
|
transactionStatusType_1.TransactionStatusType.Canceled,
|
|
116
115
|
transactionStatusType_1.TransactionStatusType.Confirmed,
|
|
117
116
|
transactionStatusType_1.TransactionStatusType.Expired,
|
package/lib/chevre/task.d.ts
CHANGED
|
@@ -21,11 +21,6 @@ export interface IExecutor {
|
|
|
21
21
|
*/
|
|
22
22
|
export type ITask = IExtendId<ITaskAttributes>;
|
|
23
23
|
export interface ITaskAttributes {
|
|
24
|
-
/**
|
|
25
|
-
* uniqueタスク識別子
|
|
26
|
-
* 冗長なタスク作成を回避するために使用(2025-03-28~)
|
|
27
|
-
*/
|
|
28
|
-
alternateName?: string;
|
|
29
24
|
/**
|
|
30
25
|
* タスク識別子
|
|
31
26
|
* 冗長なタスク作成を回避するために使用(2023-09-01~)
|
|
@@ -134,9 +129,6 @@ export interface ISearchConditions {
|
|
|
134
129
|
$gte?: Date;
|
|
135
130
|
$lte?: Date;
|
|
136
131
|
};
|
|
137
|
-
alternateName?: {
|
|
138
|
-
$regex?: string;
|
|
139
|
-
};
|
|
140
132
|
identifier?: {
|
|
141
133
|
$regex?: string;
|
|
142
134
|
};
|
package/lib/chevre/taskStatus.js
CHANGED