@be-link/ecs-cli-nodejs 0.0.26 → 0.0.28
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.
|
@@ -18,6 +18,8 @@ declare class VzanDataJobService extends BaseService implements Service.VzanData
|
|
|
18
18
|
jobSyncFeishuBulterData(): Promise<void>;
|
|
19
19
|
jobSyncPaymentGiftCoupons(): Promise<void>;
|
|
20
20
|
jobSyncRefundOrderBindStore(): Promise<void>;
|
|
21
|
+
jobGenerateBill(): Promise<void>;
|
|
22
|
+
jobSyncVerifyCodeInfo(): Promise<void>;
|
|
21
23
|
}
|
|
22
24
|
declare const vzanDataJobService: VzanDataJobService;
|
|
23
25
|
export default vzanDataJobService;
|
|
@@ -49,6 +49,12 @@ class VzanDataJobService extends service_1.default {
|
|
|
49
49
|
jobSyncRefundOrderBindStore() {
|
|
50
50
|
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncRefundOrderBindStore));
|
|
51
51
|
}
|
|
52
|
+
jobGenerateBill() {
|
|
53
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobGenerateBill));
|
|
54
|
+
}
|
|
55
|
+
jobSyncVerifyCodeInfo() {
|
|
56
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobSyncVerifyCodeInfo));
|
|
57
|
+
}
|
|
52
58
|
}
|
|
53
59
|
const vzanDataJobService = new VzanDataJobService();
|
|
54
60
|
exports.default = vzanDataJobService;
|
|
@@ -27,5 +27,9 @@ export declare namespace Service {
|
|
|
27
27
|
jobSyncPaymentGiftCoupons(): Promise<void>;
|
|
28
28
|
/** 同步退款单绑定门店 */
|
|
29
29
|
jobSyncRefundOrderBindStore(): Promise<void>;
|
|
30
|
+
/** 生成账单 */
|
|
31
|
+
jobGenerateBill(): Promise<void>;
|
|
32
|
+
/** 同步验证码信息 */
|
|
33
|
+
jobSyncVerifyCodeInfo(): Promise<void>;
|
|
30
34
|
}
|
|
31
35
|
}
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -86,45 +86,3 @@ export declare namespace Enum {
|
|
|
86
86
|
NEGATIVE_CARRYOVERED = "NEGATIVE_CARRYOVERED"
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
-
/**
|
|
90
|
-
* 快照:门店结算规则
|
|
91
|
-
*/
|
|
92
|
-
export interface StoreSettleRuleSnapInfo {
|
|
93
|
-
/** 门店id */
|
|
94
|
-
id: string;
|
|
95
|
-
/** 商家合作类型 */
|
|
96
|
-
merchantCooperationType: Enum.MerchantCooperationType;
|
|
97
|
-
/** 结算佣金比例 */
|
|
98
|
-
settlementCommissionRate: {
|
|
99
|
-
[key: string]: number;
|
|
100
|
-
};
|
|
101
|
-
/** 免润期 */
|
|
102
|
-
gracePeriod: string;
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* 快照:加盟商账号信息
|
|
106
|
-
*/
|
|
107
|
-
export interface FranchiseeAccountSnapInfo {
|
|
108
|
-
/** 加盟商id */
|
|
109
|
-
id: string;
|
|
110
|
-
/** 结算周期 */
|
|
111
|
-
settleCycle: Enum.FRANCHISEE_SETTLE_CYCLE;
|
|
112
|
-
/** 企业名称 */
|
|
113
|
-
enterpriseName: string;
|
|
114
|
-
/** 企业类型 */
|
|
115
|
-
enterpriseType: Enum.COMPANY_TYPES;
|
|
116
|
-
/** 法人 */
|
|
117
|
-
legalRepresentative: string;
|
|
118
|
-
/** 开户人姓名 */
|
|
119
|
-
accountName: string;
|
|
120
|
-
/** 开户人账号 */
|
|
121
|
-
accountNumber: string;
|
|
122
|
-
/** 开户银行 */
|
|
123
|
-
bankName: string;
|
|
124
|
-
/** 开户行支行 */
|
|
125
|
-
bankBranchName: string;
|
|
126
|
-
/** 联系人手机号 */
|
|
127
|
-
contactMobile: string;
|
|
128
|
-
/** 账号审核状态 */
|
|
129
|
-
approvalStatus: Enum.FRANCHISEE_APPROVAL_STATUS;
|
|
130
|
-
}
|