@be-link/ecommerce-promotion-service-node-sdk 0.1.28 → 0.1.30
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/modules/task/types.d.ts +3 -1
- package/package.json +1 -1
package/modules/task/types.d.ts
CHANGED
|
@@ -176,6 +176,8 @@ export declare namespace Service {
|
|
|
176
176
|
status: ENUM.TASK_ENUM.TASK_STATUS;
|
|
177
177
|
/** 任务状态中文 */
|
|
178
178
|
statusChinese: string;
|
|
179
|
+
/** 创建原因 */
|
|
180
|
+
reason: string;
|
|
179
181
|
}
|
|
180
182
|
/** 失败名单项 */
|
|
181
183
|
interface FailureListItem {
|
|
@@ -189,7 +191,7 @@ export declare namespace Service {
|
|
|
189
191
|
/** 失败名单响应 */
|
|
190
192
|
interface getFailureList {
|
|
191
193
|
/** 表头 */
|
|
192
|
-
|
|
194
|
+
headers: string[];
|
|
193
195
|
/** 数据 */
|
|
194
196
|
data: Record<string, any>[];
|
|
195
197
|
}
|