@be-link/cs-cli-nodejs 0.1.106 → 0.1.107
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.
|
@@ -39,6 +39,14 @@ export declare namespace ManageByItem {
|
|
|
39
39
|
}[];
|
|
40
40
|
costExclusion?: string;
|
|
41
41
|
cancellationPolicy?: string;
|
|
42
|
+
commissionFee?: number;
|
|
43
|
+
shortName?: string;
|
|
44
|
+
unitDeposit?: number;
|
|
45
|
+
depositTimeoutDays?: number;
|
|
46
|
+
isWxSaleChannel?: boolean;
|
|
47
|
+
isLiveRoomSaleChannel?: boolean;
|
|
48
|
+
isTravelAgencyStore?: boolean;
|
|
49
|
+
saleChannelBitMap?: number;
|
|
42
50
|
};
|
|
43
51
|
attributes?: {
|
|
44
52
|
isShareOnly?: number;
|
|
@@ -40,6 +40,9 @@ export declare namespace QueryByItem {
|
|
|
40
40
|
isMigration?: boolean;
|
|
41
41
|
isStock?: boolean;
|
|
42
42
|
isHighCommission?: number | boolean;
|
|
43
|
+
/** 分佣金额状态 */
|
|
44
|
+
commissionFee?: 'NO_EDIT' | 'HAS_EDIT';
|
|
45
|
+
saleChannels?: ('WX' | 'TRAVEL_AGENCY_STORE' | 'LIVE_ROOM')[];
|
|
43
46
|
};
|
|
44
47
|
queryBlocks: K;
|
|
45
48
|
paging: IPaging;
|
|
@@ -124,6 +127,9 @@ export declare namespace QueryByItem {
|
|
|
124
127
|
isStock?: boolean;
|
|
125
128
|
/** 是否高分佣 */
|
|
126
129
|
isHighCommission?: number;
|
|
130
|
+
/** 分佣金额状态 */
|
|
131
|
+
commissionFee?: 'NO_EDIT' | 'HAS_EDIT';
|
|
132
|
+
saleChannelBitMap?: number;
|
|
127
133
|
};
|
|
128
134
|
/** 门店维度条件 */
|
|
129
135
|
venueInfo?: {
|
|
@@ -206,6 +212,7 @@ export declare namespace QueryByItem {
|
|
|
206
212
|
hasStock?: boolean;
|
|
207
213
|
isMigration: number;
|
|
208
214
|
saleCount: number;
|
|
215
|
+
salePrice: number;
|
|
209
216
|
})[];
|
|
210
217
|
total: number;
|
|
211
218
|
}
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -98,6 +98,16 @@ export interface IItemBasicInfo {
|
|
|
98
98
|
costExclusion: string;
|
|
99
99
|
/** 退款政策 */
|
|
100
100
|
cancellationPolicy: string;
|
|
101
|
+
/** 分佣金额 */
|
|
102
|
+
commissionFee: number;
|
|
103
|
+
/** 短标题 */
|
|
104
|
+
shortName: string;
|
|
105
|
+
/** 单人定金 */
|
|
106
|
+
unitDeposit: number;
|
|
107
|
+
/** 定金超时天数 */
|
|
108
|
+
depositTimeoutDays: number;
|
|
109
|
+
/** 售卖渠道 */
|
|
110
|
+
saleChannelBitMap: number;
|
|
101
111
|
}
|
|
102
112
|
export interface IItemAttributes {
|
|
103
113
|
/** 商品ID */
|