@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.
- package/package.json +1 -1
- package/types.d.ts +8 -0
package/package.json
CHANGED
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;
|