@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.
@@ -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;
@@ -25,5 +25,7 @@ export declare namespace Service {
25
25
  jobSyncFeishuBulterData(): Promise<void>;
26
26
  /** 同步支付有礼优惠券数据 */
27
27
  jobSyncPaymentGiftCoupons(): Promise<void>;
28
+ /** 同步退款单绑定门店 */
29
+ jobSyncRefundOrderBindStore(): Promise<void>;
28
30
  }
29
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {