@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 +11 -0
- package/lib/task.d.ts +4 -0
- package/package.json +1 -1
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