@be-link/ecs-cli-nodejs 0.0.18 → 0.0.20

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.
@@ -39,6 +39,8 @@ declare class VzanDataService extends BaseService implements Service.VzanDataCon
39
39
  syncGroupChatDetails(): Promise<void>;
40
40
  syncGroupBroadcast(): Promise<void>;
41
41
  syncFeishuStoreInfo(): Promise<void>;
42
+ calculateAndInsertArpuData(): Promise<void>;
43
+ syncCustomerTime(): Promise<void>;
42
44
  }
43
45
  declare const vzanDataService: VzanDataService;
44
46
  export default vzanDataService;
@@ -67,6 +67,12 @@ class VzanDataService extends service_1.default {
67
67
  async syncFeishuStoreInfo() {
68
68
  return (0, http_1.callApi)(this.getApiUrl(this.syncFeishuStoreInfo));
69
69
  }
70
+ async calculateAndInsertArpuData() {
71
+ return (0, http_1.callApi)(this.getApiUrl(this.calculateAndInsertArpuData));
72
+ }
73
+ async syncCustomerTime() {
74
+ return (0, http_1.callApi)(this.getApiUrl(this.syncCustomerTime));
75
+ }
70
76
  }
71
77
  const vzanDataService = new VzanDataService();
72
78
  exports.default = vzanDataService;
@@ -91,5 +91,7 @@ export declare namespace Service {
91
91
  syncGroupChatDetails(): Promise<void>;
92
92
  syncGroupBroadcast(): Promise<void>;
93
93
  syncFeishuStoreInfo(): Promise<void>;
94
+ calculateAndInsertArpuData(): Promise<void>;
95
+ syncCustomerTime(): Promise<void>;
94
96
  }
95
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.18",
3
+ "version": "0.0.20",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {