@pisell/pisellos 0.0.346 → 0.0.347

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.
@@ -177,7 +177,8 @@ var onlineStoreConfig = {
177
177
  transformParams: function transformParams(params) {
178
178
  return {
179
179
  email: params.email,
180
- code: params.code
180
+ code: params.code,
181
+ action: params.action
181
182
  };
182
183
  }
183
184
  },
@@ -318,6 +318,7 @@ export interface CheckEmailCodeParams {
318
318
  email: string;
319
319
  shop_id: number;
320
320
  code: string;
321
+ action: string;
321
322
  }
322
323
  /**
323
324
  * 检查手机验证码是否有效参数接口
@@ -147,7 +147,8 @@ var onlineStoreConfig = {
147
147
  method: "GET",
148
148
  transformParams: (params) => ({
149
149
  email: params.email,
150
- code: params.code
150
+ code: params.code,
151
+ action: params.action
151
152
  })
152
153
  },
153
154
  checkMobileCode: {
@@ -318,6 +318,7 @@ export interface CheckEmailCodeParams {
318
318
  email: string;
319
319
  shop_id: number;
320
320
  code: string;
321
+ action: string;
321
322
  }
322
323
  /**
323
324
  * 检查手机验证码是否有效参数接口
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@pisell/pisellos",
4
- "version": "0.0.346",
4
+ "version": "0.0.347",
5
5
  "description": "一个可扩展的前端模块化SDK框架,支持插件系统",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",