@be-link/ecs-cli-nodejs 0.0.22 → 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.
- package/ecs/modules/vzanData/service.d.ts +1 -0
- package/ecs/modules/vzanData/service.js +3 -0
- package/ecs/modules/vzanData/types.d.ts +1 -0
- package/ecs/modules/vzanDataJob/service.d.ts +1 -0
- package/ecs/modules/vzanDataJob/service.js +3 -0
- package/ecs/modules/vzanDataJob/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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>;
|
|
@@ -17,6 +17,7 @@ declare class VzanDataJobService extends BaseService implements Service.VzanData
|
|
|
17
17
|
jobSyncFeishuStoreData(): Promise<void>;
|
|
18
18
|
jobSyncFeishuBulterData(): Promise<void>;
|
|
19
19
|
jobSyncPaymentGiftCoupons(): Promise<void>;
|
|
20
|
+
jobSyncRefundOrderBindStore(): Promise<void>;
|
|
20
21
|
}
|
|
21
22
|
declare const vzanDataJobService: VzanDataJobService;
|
|
22
23
|
export default vzanDataJobService;
|
|
@@ -46,6 +46,9 @@ class VzanDataJobService extends service_1.default {
|
|
|
46
46
|
jobSyncPaymentGiftCoupons() {
|
|
47
47
|
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncPaymentGiftCoupons));
|
|
48
48
|
}
|
|
49
|
+
jobSyncRefundOrderBindStore() {
|
|
50
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncRefundOrderBindStore));
|
|
51
|
+
}
|
|
49
52
|
}
|
|
50
53
|
const vzanDataJobService = new VzanDataJobService();
|
|
51
54
|
exports.default = vzanDataJobService;
|