@chevre/factory 4.393.0-alpha.44 → 4.393.0-alpha.46

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.
Files changed (2) hide show
  1. package/lib/task.d.ts +7 -0
  2. package/package.json +1 -1
package/lib/task.d.ts CHANGED
@@ -31,6 +31,7 @@ export interface IAttributes {
31
31
  * 冗長なタスク作成を回避するために使用(2023-09-01~)
32
32
  */
33
33
  identifier?: string;
34
+ description?: string;
34
35
  project: Pick<IProject, 'id' | 'typeOf'>;
35
36
  /**
36
37
  * タスク名
@@ -121,6 +122,12 @@ export interface ISearchConditions {
121
122
  $in?: string[];
122
123
  $nin?: string[];
123
124
  };
125
+ status?: {
126
+ $eq?: string;
127
+ };
128
+ /**
129
+ * @deprecated use status.$eq
130
+ */
124
131
  statuses?: TaskStatus[];
125
132
  runsFrom?: Date;
126
133
  runsThrough?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.393.0-alpha.44",
3
+ "version": "4.393.0-alpha.46",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",