@be-link/pos-cli-nodejs 0.0.40 → 0.0.42
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/package.json
CHANGED
|
@@ -153,15 +153,19 @@ export declare namespace Service {
|
|
|
153
153
|
}
|
|
154
154
|
interface queryItineraryList {
|
|
155
155
|
/** 商品id列表 */
|
|
156
|
-
itemIdList
|
|
156
|
+
itemIdList?: string[];
|
|
157
|
+
/** 二级类目列表 */
|
|
158
|
+
categoryTwoList?: string[];
|
|
157
159
|
/** 页面下标 */
|
|
158
|
-
pageIndex
|
|
160
|
+
pageIndex?: number;
|
|
159
161
|
/** 页面条数 */
|
|
160
|
-
pageSize
|
|
162
|
+
pageSize?: number;
|
|
161
163
|
}
|
|
162
164
|
interface getItineraryCount {
|
|
163
165
|
/** 商品id列表 */
|
|
164
|
-
itemIdList
|
|
166
|
+
itemIdList?: string[];
|
|
167
|
+
/** 二级类目列表 */
|
|
168
|
+
categoryTwoList?: string[];
|
|
165
169
|
}
|
|
166
170
|
interface queryOrderMergeRecordByOrderId {
|
|
167
171
|
/** 订单id */
|