@be-link/ecs-cli-nodejs 0.0.58 → 0.0.59

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,6 +1,6 @@
1
1
  export declare namespace Service {
2
2
  namespace Request {
3
- interface SummaryRequest {
3
+ interface IQuerySummary {
4
4
  vzanUserId: string;
5
5
  }
6
6
  interface IQueryList {
@@ -49,7 +49,7 @@ export declare namespace Service {
49
49
  }
50
50
  interface UserOrderController {
51
51
  /** 获取用户订单汇总信息 */
52
- summary(request: Request.SummaryRequest): Promise<Response.IQuerySummary>;
52
+ summary(request: Request.IQuerySummary): Promise<Response.IQuerySummary>;
53
53
  /** 获取用户订单列表 */
54
54
  list(request: Request.IQueryList): Promise<Response.IQueryList>;
55
55
  }
@@ -2,7 +2,7 @@ import BaseService from '../service';
2
2
  import { Service } from './types';
3
3
  declare class UserOrderService extends BaseService implements Service.UserOrderController {
4
4
  protected prefixUrl: string;
5
- summary(request: Service.Request.SummaryRequest): Promise<Service.Response.IQuerySummary>;
5
+ summary(request: Service.Request.IQuerySummary): Promise<Service.Response.IQuerySummary>;
6
6
  list(request: Service.Request.IQueryList): Promise<Service.Response.IQueryList>;
7
7
  }
8
8
  declare const userOrderService: UserOrderService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {