@be-link/cs-cli-nodejs 0.0.75 → 0.0.77

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.
@@ -22,7 +22,7 @@ export declare namespace BizTag {
22
22
  createUser: string;
23
23
  }
24
24
  interface IUpdate {
25
- tagId: string;
25
+ id: string;
26
26
  name: string;
27
27
  }
28
28
  interface IMGet {
@@ -44,7 +44,7 @@ export declare namespace BizTag {
44
44
  list: string[];
45
45
  }
46
46
  interface IDelete {
47
- tagId: string;
47
+ id: string;
48
48
  }
49
49
  interface IDeleteByItem {
50
50
  itemId: string;
@@ -10,14 +10,10 @@ export declare namespace ShuttleBusSupplier {
10
10
  contactName: string;
11
11
  /** 联系人手机号码 */
12
12
  contactMobile: string;
13
- /** 登录账号 */
14
- loginAccount: string;
15
- /** 登录密码 */
16
- loginPassword: string;
17
13
  /** 业务负责人 */
18
14
  bizOwner: string;
19
15
  /** 企业微信ID */
20
- wxChatId: string;
16
+ wxGroupId: string;
21
17
  /** 描述信息 */
22
18
  description: string;
23
19
  /** 状态 */
@@ -149,18 +145,7 @@ export declare namespace ShuttleBusSupplier {
149
145
  namespace Response {
150
146
  interface QueryShuttleBusSupplierList {
151
147
  /** 供应商列表数据 */
152
- data: {
153
- /** 供应商ID */
154
- id: string;
155
- /** 供应商名称 */
156
- name: string;
157
- /** 联系人姓名 */
158
- contactName: string;
159
- /** 联系人手机号码 */
160
- contactMobile: string;
161
- /** 登录账号 */
162
- loginAccount: string;
163
- }[];
148
+ data: DTO.ShuttleBusSupplier[];
164
149
  /** 总记录数 */
165
150
  total: number;
166
151
  }
@@ -173,9 +158,9 @@ export declare namespace ShuttleBusSupplier {
173
158
  total: number;
174
159
  }
175
160
  interface QueryShuttleBusRouteWithItemId {
176
- data: DTO.ShuttleBusRouteInfo & {
161
+ data: (DTO.ShuttleBusRouteInfo & {
177
162
  isBind: boolean;
178
- }[];
163
+ })[];
179
164
  total: number;
180
165
  }
181
166
  interface UpsertShuttleBusPickupPoint {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.75",
3
+ "version": "0.0.77",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {