verben-authentication-ui 0.3.8 → 0.4.0
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/esm2022/lib/components/auth-callback/auth-callback.component.mjs +55 -0
- package/esm2022/lib/components/auth-callback/auth-callback.module.mjs +18 -0
- package/esm2022/lib/components/button/button.component.mjs +3 -6
- package/esm2022/lib/components/mail/mail.component.mjs +1 -1
- package/esm2022/lib/components/o-auth/o-auth.component.mjs +67 -97
- package/esm2022/lib/components/otp-input/otp-input.component.mjs +15 -4
- package/esm2022/lib/components/sign-in/sign-in.component.mjs +118 -53
- package/esm2022/lib/components/sign-up/sign-up.component.mjs +1 -1
- package/esm2022/lib/components/two-factor-auth-otp/two-factor-auth-otp.component.mjs +1 -1
- package/esm2022/lib/components/user-management/user-management.component.mjs +2 -2
- package/esm2022/lib/components/user-request/user-request.component.mjs +66 -62
- package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +2 -2
- package/esm2022/lib/models/UserRequest.mjs +1 -1
- package/esm2022/lib/models/auth-mechanism.mjs +1 -1
- package/esm2022/lib/models/log-in.mjs +1 -1
- package/esm2022/lib/models/oauth-resp.mjs +2 -0
- package/esm2022/lib/models/oauth-response.mjs +2 -0
- package/esm2022/lib/services/http-web-request.service.mjs +1 -2
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/verben-authentication-ui.mjs +334 -218
- package/fesm2022/verben-authentication-ui.mjs.map +1 -1
- package/lib/components/auth-callback/auth-callback.component.d.ts +17 -0
- package/lib/components/auth-callback/auth-callback.module.d.ts +8 -0
- package/lib/components/button/button.component.d.ts +1 -2
- package/lib/components/o-auth/o-auth.component.d.ts +12 -26
- package/lib/components/otp-input/otp-input.component.d.ts +1 -0
- package/lib/components/sign-in/sign-in.component.d.ts +13 -8
- package/lib/components/user-request/user-request.component.d.ts +7 -5
- package/lib/models/UserRequest.d.ts +3 -0
- package/lib/models/auth-mechanism.d.ts +1 -0
- package/lib/models/log-in.d.ts +1 -0
- package/lib/models/oauth-resp.d.ts +6 -0
- package/lib/models/oauth-response.d.ts +6 -0
- package/package.json +2 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AuthCallbackComponent implements OnInit {
|
|
5
|
+
private router;
|
|
6
|
+
private route;
|
|
7
|
+
code: string;
|
|
8
|
+
previousUrl: string;
|
|
9
|
+
type: string;
|
|
10
|
+
redirectText?: string;
|
|
11
|
+
constructor(router: Router, route: ActivatedRoute);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
getType(): void;
|
|
14
|
+
handleRedirect(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "verben-auth-callback", never, { "redirectText": { "alias": "redirectText"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./auth-callback.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class AuthCallbackModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AuthCallbackModule, [typeof i1.AuthCallbackComponent], [typeof i2.CommonModule], [typeof i1.AuthCallbackComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AuthCallbackModule>;
|
|
8
|
+
}
|
|
@@ -10,9 +10,8 @@ export declare class ButtonComponent {
|
|
|
10
10
|
pd: string;
|
|
11
11
|
buttonClass: string;
|
|
12
12
|
disabled: boolean;
|
|
13
|
-
isLoading?: boolean;
|
|
14
13
|
buttonClick: EventEmitter<void>;
|
|
15
14
|
handleClick(): void;
|
|
16
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; };
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
18
17
|
}
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { AuthMechanism } from '../../models/auth-mechanism';
|
|
3
|
-
import {
|
|
4
|
-
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
5
|
-
import { UtilService } from '../../services/util.service';
|
|
6
|
-
import { EnvironmentService } from '../../services/environment.service';
|
|
7
|
-
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
8
|
-
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
9
4
|
import * as i0 from "@angular/core";
|
|
10
5
|
declare global {
|
|
11
6
|
interface Window {
|
|
@@ -13,32 +8,23 @@ declare global {
|
|
|
13
8
|
}
|
|
14
9
|
}
|
|
15
10
|
export declare class OAuthComponent implements OnInit {
|
|
16
|
-
private
|
|
17
|
-
private server;
|
|
18
|
-
private utilService;
|
|
19
|
-
private envSvc;
|
|
20
|
-
clientId: string;
|
|
11
|
+
private router;
|
|
21
12
|
showGoogle: boolean;
|
|
22
13
|
showMicrosoft: boolean;
|
|
23
14
|
showApple: boolean;
|
|
24
15
|
authMechanisms: AuthMechanism[] | null;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
googleClick: EventEmitter<void>;
|
|
30
|
-
appleClick: EventEmitter<void>;
|
|
31
|
-
code: string;
|
|
32
|
-
googleRedirectUrl: string;
|
|
33
|
-
constructor(route: ActivatedRoute, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService);
|
|
16
|
+
emitMechanismFn: EventEmitter<string>;
|
|
17
|
+
page: string;
|
|
18
|
+
type: string;
|
|
19
|
+
constructor(router: Router);
|
|
34
20
|
ngOnInit(): void;
|
|
35
|
-
|
|
21
|
+
loadPage(): void;
|
|
36
22
|
loadGoogleScript(): void;
|
|
37
|
-
|
|
38
|
-
oAuthWithGoogle(): void;
|
|
39
|
-
exchangeCodeForToken(authCode: string): void;
|
|
40
|
-
handleCredentialResponse(response: any): void;
|
|
23
|
+
oAuthWithGoogle(data: AuthMechanism): void;
|
|
41
24
|
oAuthWithApple(): void;
|
|
25
|
+
oAuthWithMicrosoft(data: AuthMechanism): void;
|
|
26
|
+
checkForValue(value: string): "" | "google-logo" | "apple-logo" | "microsoft-logo";
|
|
27
|
+
handleOauthClick(value: AuthMechanism): void | "";
|
|
42
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<OAuthComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OAuthComponent, "verben-o-auth", never, { "authMechanisms": { "alias": "authMechanisms"; "required": false; };
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OAuthComponent, "verben-o-auth", never, { "authMechanisms": { "alias": "authMechanisms"; "required": false; }; }, { "emitMechanismFn": "emitMechanismFn"; }, never, never, false, never>;
|
|
44
30
|
}
|
|
@@ -12,6 +12,7 @@ export declare class OtpInputComponent implements OnInit {
|
|
|
12
12
|
get otpArray(): FormArray;
|
|
13
13
|
handleInput(event: any, index: number): void;
|
|
14
14
|
handleKeydown(event: KeyboardEvent, index: number): void;
|
|
15
|
+
handlePaste(event: ClipboardEvent): void;
|
|
15
16
|
private focusNextInput;
|
|
16
17
|
private focusPreviousInput;
|
|
17
18
|
private emitOtp;
|
|
@@ -7,12 +7,15 @@ import { ErrorResponse } from '../../models/ErrorResponse';
|
|
|
7
7
|
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
8
8
|
import { EnvironmentService } from '../../services/environment.service';
|
|
9
9
|
import { AuthMechanism } from '../../models/auth-mechanism';
|
|
10
|
+
import { ActivatedRoute } from '@angular/router';
|
|
11
|
+
import { IOauthResp } from '../../models/oauth-resp';
|
|
10
12
|
import * as i0 from "@angular/core";
|
|
11
13
|
export declare class SignInComponent implements OnInit {
|
|
12
14
|
private fb;
|
|
13
15
|
private server;
|
|
14
16
|
private utilService;
|
|
15
17
|
private envSvc;
|
|
18
|
+
private route;
|
|
16
19
|
headlingText: string;
|
|
17
20
|
width: string;
|
|
18
21
|
maxWidth: string;
|
|
@@ -48,6 +51,7 @@ export declare class SignInComponent implements OnInit {
|
|
|
48
51
|
formSubmit: EventEmitter<LoginData>;
|
|
49
52
|
onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
50
53
|
onGoogleAuthResponse: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
54
|
+
onSubmitGoogleAuth: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
51
55
|
googleClick: EventEmitter<any>;
|
|
52
56
|
microsoftClick: EventEmitter<any>;
|
|
53
57
|
appleClick: EventEmitter<any>;
|
|
@@ -58,15 +62,16 @@ export declare class SignInComponent implements OnInit {
|
|
|
58
62
|
apiKey: string;
|
|
59
63
|
secret: string;
|
|
60
64
|
isLoading: boolean;
|
|
61
|
-
|
|
62
|
-
|
|
65
|
+
code: string;
|
|
66
|
+
type: string;
|
|
67
|
+
mechanismType: string;
|
|
68
|
+
OauthData: IOauthResp;
|
|
69
|
+
constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService, route: ActivatedRoute);
|
|
70
|
+
ngOnInit(): Promise<void>;
|
|
63
71
|
getTenantConfig(): Promise<void>;
|
|
64
72
|
checkForm(): boolean;
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
handleMicrosoft(): void;
|
|
68
|
-
handleAppleAuth(): void;
|
|
69
|
-
onSubmitGoogleAuth(data: ResponseKeyValue | ErrorResponse): void;
|
|
73
|
+
verifyUserDetails(): Promise<void>;
|
|
74
|
+
submit(type: string): Promise<void>;
|
|
70
75
|
get styles(): {
|
|
71
76
|
'background-color': string;
|
|
72
77
|
'box-shadow': string;
|
|
@@ -80,5 +85,5 @@ export declare class SignInComponent implements OnInit {
|
|
|
80
85
|
padding: string;
|
|
81
86
|
};
|
|
82
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignInComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignInComponent, "verben-sign-in", never, { "headlingText": { "alias": "headlingText"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "forgetPasswordClass": { "alias": "forgetPasswordClass"; "required": false; }; "requestAccessClass": { "alias": "requestAccessClass"; "required": false; }; "createAccountClass": { "alias": "createAccountClass"; "required": false; }; "createAccountLinkClass": { "alias": "createAccountLinkClass"; "required": false; }; "forgetPasswordLink": { "alias": "forgetPasswordLink"; "required": false; }; "createAccountLink": { "alias": "createAccountLink"; "required": false; }; "requestAccessLink": { "alias": "requestAccessLink"; "required": false; }; "btnClass": { "alias": "btnClass"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "btnText": { "alias": "btnText"; "required": false; }; "inputLabelColor": { "alias": "inputLabelColor"; "required": false; }; "inputBgColor": { "alias": "inputBgColor"; "required": false; }; "inputBorder": { "alias": "inputBorder"; "required": false; }; "inputBorderRadius": { "alias": "inputBorderRadius"; "required": false; }; "termsErrorText": { "alias": "termsErrorText"; "required": false; }; }, { "formSubmit": "formSubmit"; "onSubmitEnd": "onSubmitEnd"; "onGoogleAuthResponse": "onGoogleAuthResponse"; "googleClick": "googleClick"; "microsoftClick": "microsoftClick"; "appleClick": "appleClick"; }, never, never, false, never>;
|
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignInComponent, "verben-sign-in", never, { "headlingText": { "alias": "headlingText"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "headlingClass": { "alias": "headlingClass"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "forgetPasswordClass": { "alias": "forgetPasswordClass"; "required": false; }; "requestAccessClass": { "alias": "requestAccessClass"; "required": false; }; "createAccountClass": { "alias": "createAccountClass"; "required": false; }; "createAccountLinkClass": { "alias": "createAccountLinkClass"; "required": false; }; "forgetPasswordLink": { "alias": "forgetPasswordLink"; "required": false; }; "createAccountLink": { "alias": "createAccountLink"; "required": false; }; "requestAccessLink": { "alias": "requestAccessLink"; "required": false; }; "btnClass": { "alias": "btnClass"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "btnText": { "alias": "btnText"; "required": false; }; "inputLabelColor": { "alias": "inputLabelColor"; "required": false; }; "inputBgColor": { "alias": "inputBgColor"; "required": false; }; "inputBorder": { "alias": "inputBorder"; "required": false; }; "inputBorderRadius": { "alias": "inputBorderRadius"; "required": false; }; "termsErrorText": { "alias": "termsErrorText"; "required": false; }; }, { "formSubmit": "formSubmit"; "onSubmitEnd": "onSubmitEnd"; "onGoogleAuthResponse": "onGoogleAuthResponse"; "onSubmitGoogleAuth": "onSubmitGoogleAuth"; "googleClick": "googleClick"; "microsoftClick": "microsoftClick"; "appleClick": "appleClick"; }, never, never, false, never>;
|
|
84
89
|
}
|
|
@@ -3,6 +3,8 @@ import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angu
|
|
|
3
3
|
import { HttpWebRequestService } from '../../services/http-web-request.service';
|
|
4
4
|
import { UserRequestPayload } from '../../models/UserRequest';
|
|
5
5
|
import { UtilService } from '../../services/util.service';
|
|
6
|
+
import { ResponseKeyValue } from '../../models/ResponseKeyValue';
|
|
7
|
+
import { ErrorResponse } from '../../models/ErrorResponse';
|
|
6
8
|
import { EnvironmentService } from '../../services/environment.service';
|
|
7
9
|
import { AuthMechanism } from '../../models/auth-mechanism';
|
|
8
10
|
import { ActivatedRoute } from '@angular/router';
|
|
@@ -26,7 +28,7 @@ export declare class UserRequestComponent {
|
|
|
26
28
|
pd: string;
|
|
27
29
|
isFormEditable: boolean;
|
|
28
30
|
apiKey: string;
|
|
29
|
-
|
|
31
|
+
hidePassword: boolean;
|
|
30
32
|
isCode: boolean;
|
|
31
33
|
text: string;
|
|
32
34
|
color: string;
|
|
@@ -43,6 +45,7 @@ export declare class UserRequestComponent {
|
|
|
43
45
|
onSubmitSuccess: EventEmitter<any>;
|
|
44
46
|
appleClick: EventEmitter<any>;
|
|
45
47
|
microsoftClick: EventEmitter<any>;
|
|
48
|
+
onSubmitGoogleAuth: EventEmitter<ResponseKeyValue | ErrorResponse>;
|
|
46
49
|
onSubmitResponseEnd: EventEmitter<any>;
|
|
47
50
|
userRequestForm: FormGroup;
|
|
48
51
|
tenantDetails: any | null;
|
|
@@ -62,15 +65,14 @@ export declare class UserRequestComponent {
|
|
|
62
65
|
height: string;
|
|
63
66
|
padding: string;
|
|
64
67
|
};
|
|
65
|
-
ngOnInit(): void
|
|
68
|
+
ngOnInit(): Promise<void>;
|
|
66
69
|
getTenantConfig(): Promise<void>;
|
|
67
70
|
checkForm(): boolean;
|
|
68
71
|
handleGoogleAuth(): void;
|
|
69
72
|
handleAppleAuth(): void;
|
|
70
73
|
handleMicrosoft(): void;
|
|
71
|
-
newModel(): UserRequestPayload;
|
|
72
|
-
UserDetails(): Promise<void>;
|
|
73
74
|
submitForm(): Promise<void>;
|
|
75
|
+
verifyUserDetails(): Promise<void>;
|
|
74
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserRequestComponent, never>;
|
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserRequestComponent, "lib-user-request", never, { "width": { "alias": "width"; "required": false; }; "headingTitle": { "alias": "headingTitle"; "required": false; }; "headingClass": { "alias": "headingClass"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnWidth": { "alias": "btnWidth"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "termsLink": { "alias": "termsLink"; "required": false; }; "privacyLink": { "alias": "privacyLink"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; }, { "formSubmit": "formSubmit"; "googleClick": "googleClick"; "onSubmitSuccess": "onSubmitSuccess"; "appleClick": "appleClick"; "microsoftClick": "microsoftClick"; "onSubmitResponseEnd": "onSubmitResponseEnd"; }, never, never, false, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserRequestComponent, "lib-user-request", never, { "width": { "alias": "width"; "required": false; }; "headingTitle": { "alias": "headingTitle"; "required": false; }; "headingClass": { "alias": "headingClass"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnWidth": { "alias": "btnWidth"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "termsLink": { "alias": "termsLink"; "required": false; }; "privacyLink": { "alias": "privacyLink"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; }, { "formSubmit": "formSubmit"; "googleClick": "googleClick"; "onSubmitSuccess": "onSubmitSuccess"; "appleClick": "appleClick"; "microsoftClick": "microsoftClick"; "onSubmitGoogleAuth": "onSubmitGoogleAuth"; "onSubmitResponseEnd": "onSubmitResponseEnd"; }, never, never, false, never>;
|
|
76
78
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MechanismType } from "./auth-mechanism";
|
|
1
2
|
import { ObjectState } from "./object-state";
|
|
2
3
|
import { RequestStatus } from "./request-status";
|
|
3
4
|
import { Status } from "./status";
|
|
@@ -19,6 +20,8 @@ export interface UserRequestPayload {
|
|
|
19
20
|
TenantId: string;
|
|
20
21
|
ServiceName: string;
|
|
21
22
|
ActionBy: string;
|
|
23
|
+
SignUpType: MechanismType;
|
|
22
24
|
RequestStatus: RequestStatus;
|
|
23
25
|
Comment: string;
|
|
26
|
+
Token?: string;
|
|
24
27
|
}
|
package/lib/models/log-in.d.ts
CHANGED
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -26,4 +26,6 @@ export * from './lib/components/user-request-approval/user-request-approval.comp
|
|
|
26
26
|
export * from './lib/components/user-management/useer-management.module';
|
|
27
27
|
export * from './lib/components/user-management/user-management.component';
|
|
28
28
|
export * from './lib/components/user-request-approval/user-request-approval.service';
|
|
29
|
+
export * from './lib/components/auth-callback/auth-callback.component';
|
|
30
|
+
export * from './lib/components/auth-callback/auth-callback.module';
|
|
29
31
|
export * from './lib/services/environment.service';
|