@be-link/ecs-cli-nodejs 0.0.23 → 0.0.24
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.
|
@@ -37,6 +37,7 @@ declare class VzanDataService extends BaseService implements Service.VzanDataCon
|
|
|
37
37
|
storeOrderAndRefundData(): Promise<void>;
|
|
38
38
|
syncMemberList(request: Service.Request.syncMemberListParam): Promise<void>;
|
|
39
39
|
syncGroupChatDetails(): Promise<void>;
|
|
40
|
+
jobSyncAssistantInfo(): Promise<void>;
|
|
40
41
|
syncGroupBroadcast(): Promise<void>;
|
|
41
42
|
syncFeishuStoreInfo(): Promise<void>;
|
|
42
43
|
calculateAndInsertArpuData(): Promise<void>;
|
|
@@ -61,6 +61,9 @@ class VzanDataService extends service_1.default {
|
|
|
61
61
|
async syncGroupChatDetails() {
|
|
62
62
|
return (0, http_1.callApi)(this.getApiUrl(this.syncGroupChatDetails));
|
|
63
63
|
}
|
|
64
|
+
async jobSyncAssistantInfo() {
|
|
65
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncAssistantInfo));
|
|
66
|
+
}
|
|
64
67
|
async syncGroupBroadcast() {
|
|
65
68
|
return (0, http_1.callApi)(this.getApiUrl(this.syncGroupBroadcast));
|
|
66
69
|
}
|
|
@@ -102,6 +102,7 @@ export declare namespace Service {
|
|
|
102
102
|
syncMemberList(request: Request.syncMemberListParam): Promise<void>;
|
|
103
103
|
storeOrderAndRefundData(): Promise<void>;
|
|
104
104
|
syncGroupChatDetails(): Promise<void>;
|
|
105
|
+
jobSyncAssistantInfo(): Promise<void>;
|
|
105
106
|
syncGroupBroadcast(): Promise<void>;
|
|
106
107
|
syncFeishuStoreInfo(): Promise<void>;
|
|
107
108
|
calculateAndInsertArpuData(): Promise<void>;
|