@be-link/cs-cli-nodejs 0.0.91 → 0.0.93

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.
@@ -110,9 +110,9 @@ export declare namespace QueryByItem {
110
110
  name: string;
111
111
  categoryTwo: string;
112
112
  address: string;
113
- itemType: 'EC' | 'NOTEC';
113
+ itemType: CommodityEnums.CommodityItemType;
114
114
  saleCount: number;
115
- sortType: 'SALE' | 'MANUAL';
115
+ sortType: CommodityEnums.CommodityBizTagSortType;
116
116
  }
117
117
  interface QueryCenterForItem {
118
118
  id: string;
@@ -88,6 +88,7 @@ export declare namespace ShuttleBusSupplier {
88
88
  }
89
89
  interface QueryShuttleBusRoute {
90
90
  supplierId?: string;
91
+ supplierName?: string;
91
92
  departureCity?: string;
92
93
  departureAddress?: string;
93
94
  page: number;
@@ -95,6 +96,7 @@ export declare namespace ShuttleBusSupplier {
95
96
  }
96
97
  interface QueryShuttleBusRouteWithItemId {
97
98
  itemId: string;
99
+ supplierName?: string;
98
100
  departureCity?: string;
99
101
  departureAddress?: string;
100
102
  page: number;
@@ -160,13 +162,19 @@ export declare namespace ShuttleBusSupplier {
160
162
  interface QueryShuttleBusRouteWithItemId {
161
163
  data: (DTO.ShuttleBusRouteInfo & {
162
164
  isBind: boolean;
165
+ supplierName?: string;
163
166
  })[];
164
167
  total: number;
165
168
  }
166
169
  interface UpsertShuttleBusPickupPoint {
167
170
  id: string;
168
171
  }
169
- type GetProductAssociatedShuttleSupplierList = DTO.ItemShuttleBusRouteRelation[];
172
+ type GetProductAssociatedShuttleSupplierList = DTO.ItemShuttleBusRouteRelation & {
173
+ departureCity: string;
174
+ supplierName: string;
175
+ isLimitStock: boolean;
176
+ validDates: number[];
177
+ }[];
170
178
  }
171
179
  interface Controller {
172
180
  /** 查询班车供应商列表 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.91",
3
+ "version": "0.0.93",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -40,7 +40,7 @@
40
40
  "dependencies": {
41
41
  "axios": "0.27.2",
42
42
  "uuid": "9.0.1",
43
- "vitality-meta": "1.0.174"
43
+ "vitality-meta": "1.0.175"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=18"