@be-link/ecs-cli-nodejs 0.0.29 → 0.0.30

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.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +7 -0
  3. package/types.js +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecs-cli-nodejs",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "ECS服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
package/types.d.ts CHANGED
@@ -98,4 +98,11 @@ export declare namespace Enum {
98
98
  readonly MONTHLY: "月结";
99
99
  readonly WEEKLY: "周结";
100
100
  };
101
+ /** 商家合作类型 */
102
+ const MERCHANT_COOPERATION_TYPE_MAP: {
103
+ readonly 0: "未配置";
104
+ readonly 1: "独立店";
105
+ readonly 2: "店中店";
106
+ readonly 3: "引流店";
107
+ };
101
108
  }
package/types.js CHANGED
@@ -45,4 +45,11 @@ var Enum;
45
45
  [FRANCHISEE_SETTLE_CYCLE.MONTHLY]: '月结',
46
46
  [FRANCHISEE_SETTLE_CYCLE.WEEKLY]: '周结',
47
47
  };
48
+ /** 商家合作类型 */
49
+ Enum.MERCHANT_COOPERATION_TYPE_MAP = {
50
+ [0 /* MerchantCooperationType.UNCONFIGURED */]: '未配置',
51
+ [1 /* MerchantCooperationType.INDEPENDENT_STORE */]: '独立店',
52
+ [2 /* MerchantCooperationType.STORE_IN_STORE */]: '店中店',
53
+ [3 /* MerchantCooperationType.DRIVAGE */]: '引流店',
54
+ };
48
55
  })(Enum || (exports.Enum = Enum = {}));