@be-link/ecs-cli-nodejs 0.0.31 → 0.0.33

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.
@@ -20,6 +20,7 @@ declare class VzanDataJobService extends BaseService implements Service.VzanData
20
20
  jobSyncRefundOrderBindStore(): Promise<void>;
21
21
  jobGenerateBill(): Promise<void>;
22
22
  jobSyncVerifyCodeInfo(): Promise<void>;
23
+ jobCheckSettleRefundData(): Promise<void>;
23
24
  }
24
25
  declare const vzanDataJobService: VzanDataJobService;
25
26
  export default vzanDataJobService;
@@ -55,6 +55,9 @@ class VzanDataJobService extends service_1.default {
55
55
  jobSyncVerifyCodeInfo() {
56
56
  return (0, http_1.callApi)(this.getApiUrl(this.jobSyncVerifyCodeInfo));
57
57
  }
58
+ jobCheckSettleRefundData() {
59
+ return (0, http_1.callApi)(this.getApiUrl(this.jobCheckSettleRefundData));
60
+ }
58
61
  }
59
62
  const vzanDataJobService = new VzanDataJobService();
60
63
  exports.default = vzanDataJobService;
@@ -31,5 +31,7 @@ export declare namespace Service {
31
31
  jobGenerateBill(): Promise<void>;
32
32
  /** 同步验证码信息 */
33
33
  jobSyncVerifyCodeInfo(): Promise<void>;
34
+ /** 结算退款数据去重 */
35
+ jobCheckSettleRefundData(): Promise<void>;
34
36
  }
35
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.31",
3
+ "version": "0.0.33",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
package/types.d.ts CHANGED
@@ -105,4 +105,11 @@ export declare namespace Enum {
105
105
  readonly 2: "店中店";
106
106
  readonly 3: "引流店";
107
107
  };
108
+ const COMPANY_TYPES_MAP: {
109
+ readonly LIMITED_LIABILITY_COMPANY: "有限责任公司";
110
+ readonly JOINT_STOCK_COMPANY: "股份有限公司";
111
+ readonly INDIVIDUAL_BUSINESS: "个体工商户";
112
+ readonly SOLE_PROPRIETORSHIP: "个人独资企业";
113
+ readonly PARTNERSHIP: "合伙企业";
114
+ };
108
115
  }
package/types.js CHANGED
@@ -52,4 +52,11 @@ var Enum;
52
52
  [2 /* MerchantCooperationType.STORE_IN_STORE */]: '店中店',
53
53
  [3 /* MerchantCooperationType.DRIVAGE */]: '引流店',
54
54
  };
55
+ Enum.COMPANY_TYPES_MAP = {
56
+ [COMPANY_TYPES.LIMITED_LIABILITY_COMPANY]: '有限责任公司',
57
+ [COMPANY_TYPES.JOINT_STOCK_COMPANY]: '股份有限公司',
58
+ [COMPANY_TYPES.INDIVIDUAL_BUSINESS]: '个体工商户',
59
+ [COMPANY_TYPES.SOLE_PROPRIETORSHIP]: '个人独资企业',
60
+ [COMPANY_TYPES.PARTNERSHIP]: '合伙企业',
61
+ };
55
62
  })(Enum || (exports.Enum = Enum = {}));