@be-link/cs-cli-nodejs 0.1.121 → 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.
|
@@ -713,37 +713,14 @@ export declare namespace Restructure {
|
|
|
713
713
|
saleCount: number;
|
|
714
714
|
_createTime: number;
|
|
715
715
|
minPrice: number;
|
|
716
|
+
shortName?: string;
|
|
717
|
+
commissionFee?: number;
|
|
718
|
+
unitDeposit?: number;
|
|
719
|
+
depositTimeoutDays?: number;
|
|
720
|
+
saleChannelBitMap?: number;
|
|
716
721
|
}[];
|
|
717
722
|
}
|
|
718
|
-
|
|
719
|
-
list: {
|
|
720
|
-
_id: string;
|
|
721
|
-
_createTime: number;
|
|
722
|
-
_updateTime: number;
|
|
723
|
-
isSelfLead: boolean | null;
|
|
724
|
-
itinerarySchedule: any;
|
|
725
|
-
tourBeginPlace: string | null;
|
|
726
|
-
tourEndPlace: string | null;
|
|
727
|
-
tourDays: number | null;
|
|
728
|
-
tourWholesaler: string | null;
|
|
729
|
-
domesticTourOperator: string | null;
|
|
730
|
-
tourContactInfo: string | null;
|
|
731
|
-
tourContactName: string | null;
|
|
732
|
-
tourContactPhone: string | null;
|
|
733
|
-
tourContactAddress: string | null;
|
|
734
|
-
tourPrincipal: string | null;
|
|
735
|
-
contractType: string | null;
|
|
736
|
-
needWxGroup: boolean | null;
|
|
737
|
-
recommendation: any;
|
|
738
|
-
supplierId: string;
|
|
739
|
-
hasShopping: boolean | null;
|
|
740
|
-
hasActivity: boolean | null;
|
|
741
|
-
majorTransportationFinalFeeList: {
|
|
742
|
-
beginCity: string;
|
|
743
|
-
fee: number;
|
|
744
|
-
}[] | null;
|
|
745
|
-
}[];
|
|
746
|
-
}
|
|
723
|
+
type queryTourExtraInfoByItemIds = Record<string, unknown>[];
|
|
747
724
|
interface IItemInfoDisplay {
|
|
748
725
|
saleInfo: {
|
|
749
726
|
sales: number;
|
|
@@ -956,11 +933,14 @@ export declare namespace Restructure {
|
|
|
956
933
|
}[];
|
|
957
934
|
type queryHotItemsInLast30Days = IItemInfoDisplay[];
|
|
958
935
|
type queryItemIdsInTagIds = {
|
|
959
|
-
_id
|
|
960
|
-
|
|
936
|
+
_id?: number;
|
|
937
|
+
_createTime?: number;
|
|
938
|
+
_updateTime?: number;
|
|
961
939
|
itemIdList: string[];
|
|
940
|
+
status?: string;
|
|
941
|
+
name?: string;
|
|
942
|
+
describeInfo?: string;
|
|
962
943
|
sortType?: string;
|
|
963
|
-
[key: string]: unknown;
|
|
964
944
|
}[];
|
|
965
945
|
type queryItemInfoByIdList = {
|
|
966
946
|
_createTime: number;
|
|
@@ -996,7 +976,7 @@ export declare namespace Restructure {
|
|
|
996
976
|
type queryItemSkuByTime = {
|
|
997
977
|
date: number;
|
|
998
978
|
combo: string;
|
|
999
|
-
price:
|
|
979
|
+
price: number;
|
|
1000
980
|
surplus: number;
|
|
1001
981
|
}[];
|
|
1002
982
|
interface queryItemTagList {
|
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 */
|