@frontegg/redux-store 6.151.0-alpha.1 → 6.151.0-alpha.2

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.
@@ -68,13 +68,15 @@ export function* signUpUser(_ref) {
68
68
  const {
69
69
  email,
70
70
  name,
71
- companyName
71
+ companyName,
72
+ phoneNumber
72
73
  } = payload;
73
74
  const signUpCompletePayload = {
74
75
  email,
75
76
  name,
76
77
  companyName,
77
78
  url,
79
+ phoneNumber,
78
80
  authenticationType: AuthenticationTypes.PASSWORD,
79
81
  id: userId,
80
82
  tenantId,
@@ -232,6 +232,7 @@ export interface IInviteMembersSubmitPayload {
232
232
  export interface ISignUpCompletePayload {
233
233
  name?: string;
234
234
  companyName?: string;
235
+ phoneNumber?: string;
235
236
  email: string;
236
237
  id?: string;
237
238
  createdAt?: Date;
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.151.0-alpha.1
1
+ /** @license Frontegg v6.151.0-alpha.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -78,13 +78,15 @@ function* signUpUser(_ref) {
78
78
  const {
79
79
  email,
80
80
  name,
81
- companyName
81
+ companyName,
82
+ phoneNumber
82
83
  } = payload;
83
84
  const signUpCompletePayload = {
84
85
  email,
85
86
  name,
86
87
  companyName,
87
88
  url,
89
+ phoneNumber,
88
90
  authenticationType: _interfaces2.AuthenticationTypes.PASSWORD,
89
91
  id: userId,
90
92
  tenantId,
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.151.0-alpha.1
1
+ /** @license Frontegg v6.151.0-alpha.2
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/redux-store",
3
- "version": "6.151.0-alpha.1",
3
+ "version": "6.151.0-alpha.2",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "author": "Frontegg LTD",