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

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.
@@ -122,6 +122,8 @@ export declare namespace ShuttleBusSupplier {
122
122
  }
123
123
  interface GetProductAssociatedShuttleSupplierList {
124
124
  itemId: string;
125
+ page: number;
126
+ pageSize: number;
125
127
  }
126
128
  interface BindShuttleBus {
127
129
  itemId: string;
@@ -156,7 +158,10 @@ export declare namespace ShuttleBusSupplier {
156
158
  id: string;
157
159
  }
158
160
  interface QueryShuttleBusRoute {
159
- data: DTO.ShuttleBusRouteInfo[];
161
+ data: (DTO.ShuttleBusRouteInfo & {
162
+ isBind: boolean;
163
+ supplierName?: string;
164
+ })[];
160
165
  total: number;
161
166
  }
162
167
  interface QueryShuttleBusRouteWithItemId {
@@ -169,12 +174,15 @@ export declare namespace ShuttleBusSupplier {
169
174
  interface UpsertShuttleBusPickupPoint {
170
175
  id: string;
171
176
  }
172
- type GetProductAssociatedShuttleSupplierList = DTO.ItemShuttleBusRouteRelation & {
173
- departureCity: string;
174
- supplierName: string;
175
- isLimitStock: boolean;
176
- validDates: number[];
177
- }[];
177
+ type GetProductAssociatedShuttleSupplierList = {
178
+ data: (DTO.ItemShuttleBusRouteRelation & {
179
+ departureCity: string;
180
+ supplierName: string;
181
+ isLimitStock: boolean;
182
+ validDates: number[];
183
+ })[];
184
+ total: number;
185
+ };
178
186
  }
179
187
  interface Controller {
180
188
  /** 查询班车供应商列表 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.93",
3
+ "version": "0.0.95",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {