@be-link/ecs-cli-nodejs 0.0.14 → 0.0.15

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.
@@ -38,6 +38,7 @@ declare class VzanDataService extends BaseService implements Service.VzanDataCon
38
38
  syncMemberList(request: Service.Request.syncMemberListParam): Promise<void>;
39
39
  syncGroupChatDetails(): Promise<void>;
40
40
  syncGroupBroadcast(): Promise<void>;
41
+ syncFeishuStoreInfo(): Promise<void>;
41
42
  }
42
43
  declare const vzanDataService: VzanDataService;
43
44
  export default vzanDataService;
@@ -64,6 +64,9 @@ class VzanDataService extends service_1.default {
64
64
  async syncGroupBroadcast() {
65
65
  return (0, http_1.callApi)(this.getApiUrl(this.syncGroupBroadcast));
66
66
  }
67
+ async syncFeishuStoreInfo() {
68
+ return (0, http_1.callApi)(this.getApiUrl(this.syncFeishuStoreInfo));
69
+ }
67
70
  }
68
71
  const vzanDataService = new VzanDataService();
69
72
  exports.default = vzanDataService;
@@ -90,5 +90,6 @@ export declare namespace Service {
90
90
  storeOrderAndRefundData(): Promise<void>;
91
91
  syncGroupChatDetails(): Promise<void>;
92
92
  syncGroupBroadcast(): Promise<void>;
93
+ syncFeishuStoreInfo(): Promise<void>;
93
94
  }
94
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {