@be-link/cs-cli-nodejs 0.1.137 → 0.1.138
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,7 @@ export declare namespace RestructureManage {
|
|
|
18
22
|
itemId: string;
|
|
19
23
|
}
|
|
20
24
|
interface createItem {
|
|
21
|
-
itemInfo:
|
|
25
|
+
itemInfo: ItemInfoWithCityList;
|
|
22
26
|
itemExtraInfo: Record<string, unknown>;
|
|
23
27
|
skus?: Record<string, unknown>[];
|
|
24
28
|
tourMaterial?: Record<string, unknown>;
|
|
@@ -60,7 +64,7 @@ export declare namespace RestructureManage {
|
|
|
60
64
|
}
|
|
61
65
|
interface updateItem {
|
|
62
66
|
itemId: string;
|
|
63
|
-
itemInfo?:
|
|
67
|
+
itemInfo?: ItemInfoWithCityList;
|
|
64
68
|
itemExtraInfo?: Record<string, unknown>;
|
|
65
69
|
skus?: Record<string, unknown>[];
|
|
66
70
|
groupBookingRule?: {
|
|
@@ -230,3 +234,4 @@ export declare namespace RestructureManage {
|
|
|
230
234
|
insertFeiShuDocRecords(request: Request.insertFeiShuDocRecords): Promise<Response.insertFeiShuDocRecords>;
|
|
231
235
|
}
|
|
232
236
|
}
|
|
237
|
+
export {};
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
type ItemInfoWithCityList = Record<string, unknown> & {
|
|
2
|
+
/** 适用城市列表 */
|
|
3
|
+
cityList?: string[];
|
|
4
|
+
};
|
|
1
5
|
export declare namespace Restructure {
|
|
2
6
|
namespace Request {
|
|
3
7
|
interface queryItemByItemIds {
|
|
@@ -824,7 +828,7 @@ export declare namespace Restructure {
|
|
|
824
828
|
skus?: Record<string, unknown>[];
|
|
825
829
|
}
|
|
826
830
|
interface getItemDetailForWeb {
|
|
827
|
-
itemInfo:
|
|
831
|
+
itemInfo: ItemInfoWithCityList;
|
|
828
832
|
itemExtraInfo: Record<string, unknown> | null;
|
|
829
833
|
}
|
|
830
834
|
interface getItemDetailForDisplay {
|
|
@@ -1418,3 +1422,4 @@ export declare namespace Restructure {
|
|
|
1418
1422
|
queryItemProductManagers(request: Request.queryItemProductManagers): Promise<Response.queryItemProductManagers>;
|
|
1419
1423
|
}
|
|
1420
1424
|
}
|
|
1425
|
+
export {};
|