@be-link/cs-cli-nodejs 0.1.122 → 0.1.123
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
|
@@ -108,6 +108,14 @@ export interface IItemBasicInfo {
|
|
|
108
108
|
depositTimeoutDays: number;
|
|
109
109
|
/** 售卖渠道 */
|
|
110
110
|
saleChannelBitMap: number;
|
|
111
|
+
/** 出行前 N 天(免损截止) */
|
|
112
|
+
freeRefundDeadlineDays: number | null;
|
|
113
|
+
/** N 点前,格式 HH:mm:ss */
|
|
114
|
+
freeRefundDeadlineTime: string | null;
|
|
115
|
+
/** 接单前自动退款开关 */
|
|
116
|
+
supportAutoRefundBeforeAccept: number;
|
|
117
|
+
/** 接单后自动退款开关 */
|
|
118
|
+
supportAutoRefundAfterAccept: number;
|
|
111
119
|
}
|
|
112
120
|
export interface IItemAttributes {
|
|
113
121
|
/** 商品ID */
|