@chevre/factory 4.368.0-alpha.1 → 4.368.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/action.d.ts CHANGED
@@ -59,6 +59,12 @@ export interface IAttributes<T extends ActionType, TObject, TResult> {
59
59
  purpose?: IPurpose;
60
60
  recipient?: IParticipant;
61
61
  result?: TResult;
62
+ sameAs?: {
63
+ /**
64
+ * タスクID
65
+ */
66
+ id: string;
67
+ };
62
68
  /**
63
69
  * アクションタイプ
64
70
  */
@@ -245,6 +251,11 @@ export interface ISearchConditions {
245
251
  $in?: string[];
246
252
  };
247
253
  };
254
+ sameAs?: {
255
+ id?: {
256
+ $eq?: string;
257
+ };
258
+ };
248
259
  fromLocation?: {
249
260
  typeOf?: {
250
261
  $in?: string[];
package/lib/task.d.ts CHANGED
@@ -65,6 +65,10 @@ export interface IAttributes {
65
65
  * 中止日時
66
66
  */
67
67
  dateAborted?: Date;
68
+ /**
69
+ * 実行期限
70
+ */
71
+ expires?: Date;
68
72
  }
69
73
  /**
70
74
  * ソート条件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.368.0-alpha.1",
3
+ "version": "4.368.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",