@be-link/ecs-cli-nodejs 0.0.63 → 0.0.64

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.
@@ -12,6 +12,7 @@ declare class GroupService extends BaseService implements Service.GroupControlle
12
12
  getMergeGroupDetail(request: Service.Request.IGetMergeGroupDetail): Promise<Service.Response.IGetMergeGroupDetail>;
13
13
  jobExecMergeGroupTask(): Promise<void>;
14
14
  updateGroupName(): Promise<void>;
15
+ syncChangedGroups(): Promise<void>;
15
16
  }
16
17
  declare const groupService: GroupService;
17
18
  export default groupService;
@@ -40,6 +40,9 @@ class GroupService extends service_1.default {
40
40
  updateGroupName() {
41
41
  return (0, http_1.callApi)(this.getApiUrl(this.updateGroupName));
42
42
  }
43
+ syncChangedGroups() {
44
+ return (0, http_1.callApi)(this.getApiUrl(this.syncChangedGroups));
45
+ }
43
46
  }
44
47
  const groupService = new GroupService();
45
48
  exports.default = groupService;
@@ -101,5 +101,6 @@ export declare namespace Service {
101
101
  getMergeGroupDetail(request: Request.IGetMergeGroupDetail): Promise<Response.IGetMergeGroupDetail>;
102
102
  jobExecMergeGroupTask(): Promise<void>;
103
103
  updateGroupName(): Promise<void>;
104
+ syncChangedGroups(): Promise<void>;
104
105
  }
105
106
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.63",
3
+ "version": "0.0.64",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {