@be-link/pos-cli-nodejs 1.0.196 → 1.0.197

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 +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "1.0.196",
3
+ "version": "1.0.197",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
package/types.d.ts CHANGED
@@ -330,6 +330,14 @@ export interface IPositiveItemInfo {
330
330
  createdAt: number;
331
331
  /** 更新时间 */
332
332
  updatedAt: number;
333
+ /** 出行前 N 天(免损截止) */
334
+ freeRefundDeadlineDays: number | null;
335
+ /** N 点前,格式 HH:mm:ss */
336
+ freeRefundDeadlineTime: string | null;
337
+ /** 接单前自动退款开关 */
338
+ supportAutoRefundBeforeAccept: number;
339
+ /** 接单后自动退款开关 */
340
+ supportAutoRefundAfterAccept: number;
333
341
  }
334
342
  export type IPositiveItemInfoV2 = {
335
343
  _id: string;