@frontegg/rest-api 2.10.84 → 2.10.85
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.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.10.85](https://github.com/frontegg/typescript-rest-api/compare/v2.10.84...v2.10.85) (2022-07-03)
|
|
6
|
+
|
|
5
7
|
### [2.10.84](https://github.com/frontegg/typescript-rest-api/compare/v2.10.83...v2.10.84) (2022-07-01)
|
|
6
8
|
|
|
7
9
|
### [2.10.83](https://github.com/frontegg/typescript-rest-api/compare/v2.10.82...v2.10.83) (2022-06-29)
|
|
@@ -40,6 +40,7 @@ export declare type ILoginResponse = IUserProfile & {
|
|
|
40
40
|
recoveryCode?: string;
|
|
41
41
|
emailVerified?: boolean;
|
|
42
42
|
redirectLocation?: string;
|
|
43
|
+
userEmail?: string;
|
|
43
44
|
};
|
|
44
45
|
export declare type ILoginResponseV2 = {
|
|
45
46
|
user: ILoginResponse;
|
|
@@ -158,6 +159,7 @@ export interface ILoginViaSocialLoginResponse {
|
|
|
158
159
|
name: string;
|
|
159
160
|
accessToken: string;
|
|
160
161
|
mfaRequired: boolean;
|
|
162
|
+
userEmail?: string;
|
|
161
163
|
}
|
|
162
164
|
export interface ISetSocialLoginError {
|
|
163
165
|
error: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../src/auth/interfaces.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAIA,gEAA8C;
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../src/auth/interfaces.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAIA,gEAA8C;AA2W7C,CAAC;AAID,CAAC;AAQD,CAAC;AAUD,CAAC;AAID,CAAC;AAKD,CAAC;AAYD,CAAC;AAqBD,CAAC;AAsBF,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC/B,8DAAqC,CAAA;IACrC,wEAA+C,CAAA;IAC/C,4CAAmB,CAAA;AACrB,CAAC,EAJW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAIhC"}
|
|
@@ -40,6 +40,7 @@ export declare type ILoginResponse = IUserProfile & {
|
|
|
40
40
|
recoveryCode?: string;
|
|
41
41
|
emailVerified?: boolean;
|
|
42
42
|
redirectLocation?: string;
|
|
43
|
+
userEmail?: string;
|
|
43
44
|
};
|
|
44
45
|
export declare type ILoginResponseV2 = {
|
|
45
46
|
user: ILoginResponse;
|
|
@@ -158,6 +159,7 @@ export interface ILoginViaSocialLoginResponse {
|
|
|
158
159
|
name: string;
|
|
159
160
|
accessToken: string;
|
|
160
161
|
mfaRequired: boolean;
|
|
162
|
+
userEmail?: string;
|
|
161
163
|
}
|
|
162
164
|
export interface ISetSocialLoginError {
|
|
163
165
|
error: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/auth/interfaces.ts"],"names":[],"mappings":"AAIA,cAAc,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/auth/interfaces.ts"],"names":[],"mappings":"AAIA,cAAc,+BAA+B,CAAC;AA2W7C,CAAC;AAID,CAAC;AAQD,CAAC;AAUD,CAAC;AAID,CAAC;AAKD,CAAC;AAYD,CAAC;AAqBD,CAAC;AAsBF,MAAM,CAAN,IAAY,qBAIX;AAJD,WAAY,qBAAqB;IAC/B,8DAAqC,CAAA;IACrC,wEAA+C,CAAA;IAC/C,4CAAmB,CAAA;AACrB,CAAC,EAJW,qBAAqB,KAArB,qBAAqB,QAIhC"}
|
package/package.json
CHANGED
package/src/auth/interfaces.ts
CHANGED
|
@@ -40,6 +40,7 @@ export type ILoginResponse = IUserProfile & {
|
|
|
40
40
|
recoveryCode?: string;
|
|
41
41
|
emailVerified?: boolean;
|
|
42
42
|
redirectLocation?: string;
|
|
43
|
+
userEmail?: string;
|
|
43
44
|
};
|
|
44
45
|
|
|
45
46
|
export type ILoginResponseV2 = {
|
|
@@ -176,6 +177,7 @@ export interface ILoginViaSocialLoginResponse {
|
|
|
176
177
|
name: string;
|
|
177
178
|
accessToken: string;
|
|
178
179
|
mfaRequired: boolean;
|
|
180
|
+
userEmail?: string;
|
|
179
181
|
}
|
|
180
182
|
|
|
181
183
|
export interface ISetSocialLoginError {
|