@be-link/cs-cli-nodejs 0.1.137 → 0.1.139
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.
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
type ItemInfoWithCityList = Record<string, unknown> & {
|
|
2
|
+
/** 适用城市列表 */
|
|
3
|
+
cityList?: string[];
|
|
4
|
+
};
|
|
1
5
|
export declare namespace RestructureManage {
|
|
2
6
|
namespace Request {
|
|
3
7
|
interface addItemViewCountForTwoTable {
|
|
@@ -18,7 +22,9 @@ export declare namespace RestructureManage {
|
|
|
18
22
|
itemId: string;
|
|
19
23
|
}
|
|
20
24
|
interface createItem {
|
|
21
|
-
|
|
25
|
+
/** 适用城市列表,写入 ItemCityRelation,不写入 Item 表 */
|
|
26
|
+
cityList?: string[];
|
|
27
|
+
itemInfo: ItemInfoWithCityList;
|
|
22
28
|
itemExtraInfo: Record<string, unknown>;
|
|
23
29
|
skus?: Record<string, unknown>[];
|
|
24
30
|
tourMaterial?: Record<string, unknown>;
|
|
@@ -60,7 +66,9 @@ export declare namespace RestructureManage {
|
|
|
60
66
|
}
|
|
61
67
|
interface updateItem {
|
|
62
68
|
itemId: string;
|
|
63
|
-
|
|
69
|
+
/** 适用城市列表,写入 ItemCityRelation,不写入 Item 表 */
|
|
70
|
+
cityList?: string[];
|
|
71
|
+
itemInfo?: ItemInfoWithCityList;
|
|
64
72
|
itemExtraInfo?: Record<string, unknown>;
|
|
65
73
|
skus?: Record<string, unknown>[];
|
|
66
74
|
groupBookingRule?: {
|
|
@@ -230,3 +238,4 @@ export declare namespace RestructureManage {
|
|
|
230
238
|
insertFeiShuDocRecords(request: Request.insertFeiShuDocRecords): Promise<Response.insertFeiShuDocRecords>;
|
|
231
239
|
}
|
|
232
240
|
}
|
|
241
|
+
export {};
|
|
@@ -826,6 +826,8 @@ export declare namespace Restructure {
|
|
|
826
826
|
interface getItemDetailForWeb {
|
|
827
827
|
itemInfo: Record<string, unknown>;
|
|
828
828
|
itemExtraInfo: Record<string, unknown> | null;
|
|
829
|
+
/** 适用城市列表,来自 ItemCityRelation */
|
|
830
|
+
cityList: string[];
|
|
829
831
|
}
|
|
830
832
|
interface getItemDetailForDisplay {
|
|
831
833
|
success: boolean;
|