@be-link/pos-cli-nodejs 0.0.25 → 0.0.27

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -214,12 +214,6 @@ export interface IPositiveItemInfo {
214
214
  tourPrincipal: string | null;
215
215
  /** 设施 */
216
216
  facilities: any[];
217
- /** 历史商品数据,从快照原样返回 */
218
- voucherInfo: {
219
- /** 提前预定天数(0~255) */
220
- bookingDays?: number;
221
- [key: string]: any;
222
- };
223
217
  /** 预定须知描述 */
224
218
  bookingTip?: string;
225
219
  /** 有效期开始时间 */
@@ -316,6 +310,12 @@ export interface IPositiveSkuInfo {
316
310
  /** SKU 是否有班车 */
317
311
  hasShuttleBus: number;
318
312
  };
313
+ /** 历史商品数据,从快照原样返回 */
314
+ voucherInfo?: {
315
+ [key: string]: any;
316
+ };
317
+ /** 提前预定天数(0~255) */
318
+ bookingDays?: number;
319
319
  /** 剩余数量 */
320
320
  remainQuantity: number;
321
321
  /** 一级类目 */