@igo2/auth 17.0.0 → 17.0.1-next.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.
- package/esm2022/facebook/auth-facebook/auth-facebook.component.mjs +5 -5
- package/esm2022/form/auth-form/auth-form.component.mjs +3 -3
- package/esm2022/form/auth-form.module.mjs +4 -4
- package/esm2022/form/shared/auth-form.interface.mjs +1 -1
- package/esm2022/google/auth-google/auth-google.component.mjs +3 -3
- package/esm2022/internal/auth-intern/auth-intern.component.mjs +5 -5
- package/esm2022/lib/shared/admin.guard.mjs +3 -3
- package/esm2022/lib/shared/auth-storage.service.mjs +3 -3
- package/esm2022/lib/shared/auth.guard.mjs +3 -3
- package/esm2022/lib/shared/auth.interceptor.mjs +7 -10
- package/esm2022/lib/shared/auth.interface.mjs +1 -1
- package/esm2022/lib/shared/auth.service.mjs +3 -3
- package/esm2022/lib/shared/logged.guard.mjs +3 -3
- package/esm2022/lib/shared/profils.guard.mjs +3 -3
- package/esm2022/lib/shared/token.service.mjs +3 -3
- package/esm2022/microsoft/auth-microsoft/auth-microsoft.component.mjs +5 -5
- package/esm2022/microsoft/auth-microsoft.provider.mjs +2 -3
- package/esm2022/microsoft/auth-microsoftb2c/auth-microsoftb2c.component.mjs +5 -5
- package/esm2022/microsoft/auth-microsoftb2c/auth-msalBroadcastServiceb2c.service.mjs +3 -3
- package/esm2022/microsoft/auth-microsoftb2c/auth-msalServiceb2c.service.mjs +3 -3
- package/esm2022/monitoring/auth-monitoring/auth-monitoring.provider.mjs +2 -2
- package/esm2022/monitoring/auth-monitoring/auth-monitoring.service.mjs +4 -4
- package/fesm2022/igo2-auth-facebook.mjs +4 -4
- package/fesm2022/igo2-auth-facebook.mjs.map +1 -1
- package/fesm2022/igo2-auth-form.mjs +7 -7
- package/fesm2022/igo2-auth-google.mjs +3 -3
- package/fesm2022/igo2-auth-internal.mjs +4 -4
- package/fesm2022/igo2-auth-internal.mjs.map +1 -1
- package/fesm2022/igo2-auth-microsoft.mjs +15 -16
- package/fesm2022/igo2-auth-microsoft.mjs.map +1 -1
- package/fesm2022/igo2-auth-monitoring.mjs +4 -4
- package/fesm2022/igo2-auth-monitoring.mjs.map +1 -1
- package/fesm2022/igo2-auth.mjs +27 -30
- package/fesm2022/igo2-auth.mjs.map +1 -1
- package/form/shared/auth-form.interface.d.ts +2 -2
- package/form/src/auth-form/auth-intern.theme.scss +1 -1
- package/lib/shared/auth.interface.d.ts +2 -2
- package/microsoft/auth-microsoft.provider.d.ts +1 -1
- package/package.json +11 -11
|
@@ -11,7 +11,7 @@ export interface User extends BaseUser {
|
|
|
11
11
|
export interface IInfosUser {
|
|
12
12
|
tokenId: string;
|
|
13
13
|
}
|
|
14
|
-
export
|
|
14
|
+
export interface AuthOptions {
|
|
15
15
|
url?: string;
|
|
16
16
|
tokenKey?: string;
|
|
17
17
|
allowAnonymous?: boolean;
|
|
@@ -23,7 +23,7 @@ export type AuthOptions = {
|
|
|
23
23
|
hostsWithCredentials?: WithCredentialsOptions[];
|
|
24
24
|
hostsByKey?: AuthByKeyOptions[];
|
|
25
25
|
intern?: AuthInternOptions;
|
|
26
|
-
}
|
|
26
|
+
}
|
|
27
27
|
export interface AuthByKeyOptions {
|
|
28
28
|
domainRegFilters?: string;
|
|
29
29
|
keyProperty?: string;
|
|
@@ -7,6 +7,6 @@ import { MSPMsalGuardConfiguration } from './shared/auth-microsoft.interface';
|
|
|
7
7
|
export declare const AUTH_MICROSOFT_DIRECTIVES: readonly [typeof AuthMicrosoftComponent, typeof AuthMicrosoftb2cComponent];
|
|
8
8
|
export declare function MSALConfigFactory(config: ConfigService): PublicClientApplication;
|
|
9
9
|
export declare function MSALConfigFactoryb2c(config: ConfigService): PublicClientApplication;
|
|
10
|
-
export declare function MSALAngularConfigFactory(
|
|
10
|
+
export declare function MSALAngularConfigFactory(): MSPMsalGuardConfiguration;
|
|
11
11
|
export declare function MSALAngularConfigFactoryb2c(config: ConfigService): MSPMsalGuardConfiguration;
|
|
12
12
|
export declare function withMicrosoftSupport(type?: string): AuthFeature<AuthFeatureKind.Microsoft>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/auth",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.1-next.2",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -75,21 +75,21 @@
|
|
|
75
75
|
"tslib": "^2.6.0"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
|
-
"@angular/cdk": "^
|
|
79
|
-
"@angular/common": "^
|
|
80
|
-
"@angular/core": "^
|
|
81
|
-
"@angular/forms": "^
|
|
82
|
-
"@angular/material": "^
|
|
83
|
-
"@angular/router": "^
|
|
78
|
+
"@angular/cdk": "^18.0.0",
|
|
79
|
+
"@angular/common": "^18.0.0",
|
|
80
|
+
"@angular/core": "^18.0.0",
|
|
81
|
+
"@angular/forms": "^18.0.0",
|
|
82
|
+
"@angular/material": "^18.0.0",
|
|
83
|
+
"@angular/router": "^18.0.0",
|
|
84
84
|
"@azure/msal-angular": "^3.0.4",
|
|
85
85
|
"@azure/msal-browser": "^3.0.4",
|
|
86
|
-
"@igo2/common": "^17.0.
|
|
87
|
-
"@igo2/core": "^17.0.
|
|
88
|
-
"@igo2/utils": "^17.0.
|
|
86
|
+
"@igo2/common": "^17.0.1-next.2",
|
|
87
|
+
"@igo2/core": "^17.0.1-next.2",
|
|
88
|
+
"@igo2/utils": "^17.0.1-next.2",
|
|
89
89
|
"rxjs": "^7.8.0"
|
|
90
90
|
},
|
|
91
91
|
"engines": {
|
|
92
|
-
"node": "
|
|
92
|
+
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
|
|
93
93
|
},
|
|
94
94
|
"module": "fesm2022/igo2-auth.mjs",
|
|
95
95
|
"typings": "index.d.ts",
|