@be-link/cs-cli-nodejs 0.0.164 → 0.0.165

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.
@@ -2,7 +2,7 @@ import BaseService from '../baseService';
2
2
  import { ItemCityRelationNamespace } from './types';
3
3
  declare class ItemCityRelationService extends BaseService implements ItemCityRelationNamespace.Controller {
4
4
  prefixUrl: string;
5
- mget(request: ItemCityRelationNamespace.Request.IMGetItemCity): Promise<ItemCityRelationNamespace.Response.IMGetItemCity>;
5
+ mget(request: ItemCityRelationNamespace.Request.IMGet): Promise<ItemCityRelationNamespace.Response.IMGet>;
6
6
  }
7
7
  declare const itemCityRelationService: ItemCityRelationService;
8
8
  export default itemCityRelationService;
@@ -1 +1 @@
1
- {"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/itemCityRelation/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,uBAAwB,SAAQ,qBAAW;IAAjD;;QACE,cAAS,GAAW,qBAAqB,CAAA;IAM3C,CAAC;IALC,IAAI,CACF,OAAwD;QAExD,OAAO,IAAA,cAAO,EAA+C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IAClG,CAAC;CACF;AAED,MAAM,uBAAuB,GAAG,IAAI,uBAAuB,EAAE,CAAA;AAC7D,kBAAe,uBAAuB,CAAA"}
1
+ {"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../src/cs/modules/itemCityRelation/service.ts"],"names":[],"mappings":";;;;;AAAA,qCAAoC;AACpC,iEAAwC;AAGxC,MAAM,uBAAwB,SAAQ,qBAAW;IAAjD;;QACE,cAAS,GAAW,qBAAqB,CAAA;IAM3C,CAAC;IALC,IAAI,CACF,OAAgD;QAEhD,OAAO,IAAA,cAAO,EAA+C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAA;IAClG,CAAC;CACF;AAED,MAAM,uBAAuB,GAAG,IAAI,uBAAuB,EAAE,CAAA;AAC7D,kBAAe,uBAAuB,CAAA"}
@@ -1,14 +1,14 @@
1
1
  export declare namespace ItemCityRelationNamespace {
2
2
  namespace Request {
3
- interface IMGetItemCity {
3
+ interface IMGet {
4
4
  itemIds: string[];
5
5
  }
6
6
  }
7
7
  namespace Response {
8
- type IMGetItemCity = Record<string, string[]>;
8
+ type IMGet = Record<string, string[]>;
9
9
  }
10
10
  interface Controller {
11
11
  /** 获取商品关联的城市列表 */
12
- mget(request: Request.IMGetItemCity): Promise<Response.IMGetItemCity>;
12
+ mget(request: Request.IMGet): Promise<Response.IMGet>;
13
13
  }
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.0.164",
3
+ "version": "0.0.165",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {