@chevre/factory 4.329.0-alpha.1 → 4.329.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/task.d.ts +5 -0
- package/package.json +1 -1
package/lib/task.d.ts
CHANGED
|
@@ -21,6 +21,11 @@ export interface IExecutor {
|
|
|
21
21
|
*/
|
|
22
22
|
export declare type ITask = IExtendId<IAttributes>;
|
|
23
23
|
export interface IAttributes {
|
|
24
|
+
/**
|
|
25
|
+
* タスク識別子
|
|
26
|
+
* 冗長なタスク作成を回避するために使用(2023-09-01~)
|
|
27
|
+
*/
|
|
28
|
+
identifier?: string;
|
|
24
29
|
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
25
30
|
/**
|
|
26
31
|
* タスク名
|