@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.
@@ -9,6 +9,8 @@ export declare namespace ManageByItem {
9
9
  }
10
10
  interface updateItem {
11
11
  operatorName?: string;
12
+ /** 适用城市列表 */
13
+ cityList?: string[];
12
14
  basicInfo: {
13
15
  id: string;
14
16
  name?: string;
@@ -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: Record<string, unknown>;
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?: Record<string, unknown>;
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: Record<string, unknown>;
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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.1.137",
3
+ "version": "0.1.138",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "author": "dev@8848top.com",