@chevre/factory 10.1.0 → 10.3.0-alpha.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.
@@ -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~)
@@ -78,27 +73,6 @@ export interface ITaskAttributes {
78
73
  export interface ISortOrder {
79
74
  runsAt?: SortType;
80
75
  }
81
- export interface IDataSearchConditions {
82
- object?: {
83
- id?: {
84
- $eq?: string;
85
- };
86
- orderNumber?: {
87
- $eq?: string;
88
- };
89
- transactionNumber?: {
90
- $eq?: string;
91
- };
92
- };
93
- purpose?: {
94
- id?: {
95
- $eq?: string;
96
- };
97
- orderNumber?: {
98
- $eq?: string;
99
- };
100
- };
101
- }
102
76
  /**
103
77
  * タスク検索条件
104
78
  */
@@ -129,14 +103,10 @@ export interface ISearchConditions {
129
103
  runsThrough?: Date;
130
104
  lastTriedFrom?: Date;
131
105
  lastTriedThrough?: Date;
132
- data?: IDataSearchConditions;
133
106
  dateAborted?: {
134
107
  $gte?: Date;
135
108
  $lte?: Date;
136
109
  };
137
- alternateName?: {
138
- $regex?: string;
139
- };
140
110
  identifier?: {
141
111
  $regex?: string;
142
112
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "10.1.0",
3
+ "version": "10.3.0-alpha.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "files": [