@be-link/ecommerce-client-backend-service-node-sdk 0.1.12 → 0.1.13

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/enum.d.ts CHANGED
@@ -212,7 +212,9 @@ export declare namespace ENUM {
212
212
  * 主题
213
213
  */
214
214
  enum TOPIC {
215
- UserReport = "user-report"
215
+ UserReport = "user-report",
216
+ TotalDuration = "total-duration",
217
+ TaskTotalDuration = "task-total-duration"
216
218
  }
217
219
  /**
218
220
  * 路由键
@@ -224,7 +226,9 @@ export declare namespace ENUM {
224
226
  * 队列
225
227
  */
226
228
  enum QUEUE {
227
- UserReportQueue = "user-report-action"
229
+ UserReportQueue = "user-report-action",
230
+ TotalDuration = "total-duration-queue",
231
+ TaskTotalDuration = "task-total-duration-queue"
228
232
  }
229
233
  }
230
234
  /**
package/enum.js CHANGED
@@ -242,6 +242,8 @@ var ENUM;
242
242
  let TOPIC;
243
243
  (function (TOPIC) {
244
244
  TOPIC["UserReport"] = "user-report";
245
+ TOPIC["TotalDuration"] = "total-duration";
246
+ TOPIC["TaskTotalDuration"] = "task-total-duration";
245
247
  })(TOPIC = MQ.TOPIC || (MQ.TOPIC = {}));
246
248
  /**
247
249
  * 路由键
@@ -256,6 +258,8 @@ var ENUM;
256
258
  let QUEUE;
257
259
  (function (QUEUE) {
258
260
  QUEUE["UserReportQueue"] = "user-report-action";
261
+ QUEUE["TotalDuration"] = "total-duration-queue";
262
+ QUEUE["TaskTotalDuration"] = "task-total-duration-queue";
259
263
  })(QUEUE = MQ.QUEUE || (MQ.QUEUE = {}));
260
264
  })(MQ = ENUM.MQ || (ENUM.MQ = {}));
261
265
  /**
@@ -11,6 +11,10 @@ export declare namespace DomainService {
11
11
  interface List {
12
12
  /** 关键词搜索:域名路径 */
13
13
  keywords?: string;
14
+ /** 分类:0-其他、1-授权页面、2-直播间域名、3-重定向域名 */
15
+ cate?: ENUM.DOMAIN.CATE;
16
+ /** 状态:0-禁用、1-正常 */
17
+ display?: ENUM.DOMAIN.DISPLAY;
14
18
  /** 页码,从0开始 */
15
19
  pageIndex: number;
16
20
  /** 每页数量,默认20,最大100 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-client-backend-service-node-sdk",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "EcommerceClientBackendService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",