@be-link/cs-cli-nodejs 0.0.151 → 0.0.153

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.
@@ -83,7 +83,7 @@ export declare namespace ManageByItemCombo {
83
83
  memberPriceLimitCnt?: number | null;
84
84
  singleRoomPrice?: number | null;
85
85
  singleRoomSettlementPrice?: number | null;
86
- saleEndTime?: number;
86
+ saleEndTime?: number | string;
87
87
  };
88
88
  }
89
89
  }
@@ -1,5 +1,13 @@
1
1
  import * as CommodityEnums from 'vitality-meta/enums/commodity';
2
2
  import * as GDto from '../../../../types';
3
+ export declare enum SortField {
4
+ createdAt = "createdAt",
5
+ updatedAt = "updatedAt"
6
+ }
7
+ export declare enum SortOrder {
8
+ ASC = "ASC",
9
+ DESC = "DESC"
10
+ }
3
11
  export declare namespace QueryByItem {
4
12
  namespace DTO {
5
13
  interface ItemBasicInfo {
@@ -39,6 +47,8 @@ export declare namespace QueryByItem {
39
47
  itemInfo?: {
40
48
  idList?: string[];
41
49
  name?: string;
50
+ /** 是否迁移商品 */
51
+ isMigration?: boolean;
42
52
  /** 二级类目列表 */
43
53
  categoryTwoList?: string[];
44
54
  /** 状态 */
@@ -83,14 +93,6 @@ export declare namespace QueryByItem {
83
93
  /** 页目条数. 默认10, 最大20 */
84
94
  pageSize?: number;
85
95
  }
86
- enum SortField {
87
- createdAt = "createdAt",
88
- updatedAt = "updatedAt"
89
- }
90
- enum SortOrder {
91
- ASC = "ASC",
92
- DESC = "DESC"
93
- }
94
96
  interface IQueryItemListByTag {
95
97
  /** 标签ID */
96
98
  tagId: string;
@@ -1,20 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.QueryByItem = void 0;
4
- var QueryByItem;
5
- (function (QueryByItem) {
6
- let Request;
7
- (function (Request) {
8
- let SortField;
9
- (function (SortField) {
10
- SortField["createdAt"] = "createdAt";
11
- SortField["updatedAt"] = "updatedAt";
12
- })(SortField = Request.SortField || (Request.SortField = {}));
13
- let SortOrder;
14
- (function (SortOrder) {
15
- SortOrder["ASC"] = "ASC";
16
- SortOrder["DESC"] = "DESC";
17
- })(SortOrder = Request.SortOrder || (Request.SortOrder = {}));
18
- })(Request = QueryByItem.Request || (QueryByItem.Request = {}));
19
- })(QueryByItem || (exports.QueryByItem = QueryByItem = {}));
3
+ exports.SortOrder = exports.SortField = void 0;
4
+ var SortField;
5
+ (function (SortField) {
6
+ SortField["createdAt"] = "createdAt";
7
+ SortField["updatedAt"] = "updatedAt";
8
+ })(SortField || (exports.SortField = SortField = {}));
9
+ var SortOrder;
10
+ (function (SortOrder) {
11
+ SortOrder["ASC"] = "ASC";
12
+ SortOrder["DESC"] = "DESC";
13
+ })(SortOrder || (exports.SortOrder = SortOrder = {}));
20
14
  //# sourceMappingURL=type.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/type.ts"],"names":[],"mappings":";;;AAIA,IAAiB,WAAW,CA8L3B;AA9LD,WAAiB,WAAW;IAK1B,IAAiB,OAAO,CAkIvB;IAlID,WAAiB,OAAO;QAoHtB,IAAY,SAGX;QAHD,WAAY,SAAS;YACnB,oCAAuB,CAAA;YACvB,oCAAuB,CAAA;QACzB,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB;QACD,IAAY,SAGX;QAHD,WAAY,SAAS;YACnB,wBAAW,CAAA;YACX,0BAAa,CAAA;QACf,CAAC,EAHW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAGpB;IAOH,CAAC,EAlIgB,OAAO,GAAP,mBAAO,KAAP,mBAAO,QAkIvB;AAuDH,CAAC,EA9LgB,WAAW,2BAAX,WAAW,QA8L3B"}
1
+ {"version":3,"file":"type.js","sourceRoot":"","sources":["../../../../../src/cs/modules/itemQuery/byItem/type.ts"],"names":[],"mappings":";;;AAGA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,oCAAuB,CAAA;AACzB,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AACD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.151",
3
+ "version": "0.0.153",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {