Skip to content

Commit 0135a75

Browse files
authored
Merge pull request MicrosoftDocs#9 from MicrosoftDocs/smoke-test
Merge smoke-test to main
2 parents c832f7c + debabca commit 0135a75

File tree

357 files changed

+35311
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

357 files changed

+35311
-117
lines changed
Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
### YamlMime:TSType
2+
name: IMsalService
3+
uid: '@azure/msal-angular.IMsalService'
4+
package: '@azure/msal-angular'
5+
summary: ''
6+
fullName: IMsalService
7+
remarks: ''
8+
isPreview: false
9+
isDeprecated: false
10+
type: interface
11+
methods:
12+
- name: acquireTokenPopup(PopupRequest)
13+
uid: '@azure/msal-angular.IMsalService.acquireTokenPopup'
14+
package: '@azure/msal-angular'
15+
summary: ''
16+
remarks: ''
17+
isPreview: false
18+
isDeprecated: false
19+
syntax:
20+
content: >-
21+
function acquireTokenPopup(request: PopupRequest):
22+
Observable<AuthenticationResult>
23+
parameters:
24+
- id: request
25+
type: PopupRequest
26+
description: ''
27+
return:
28+
description: ''
29+
type: Observable&lt;AuthenticationResult&gt;
30+
- name: acquireTokenRedirect(RedirectRequest)
31+
uid: '@azure/msal-angular.IMsalService.acquireTokenRedirect'
32+
package: '@azure/msal-angular'
33+
summary: ''
34+
remarks: ''
35+
isPreview: false
36+
isDeprecated: false
37+
syntax:
38+
content: >-
39+
function acquireTokenRedirect(request: RedirectRequest):
40+
Observable<void>
41+
parameters:
42+
- id: request
43+
type: RedirectRequest
44+
description: ''
45+
return:
46+
description: ''
47+
type: Observable&lt;void&gt;
48+
- name: acquireTokenSilent(SilentRequest)
49+
uid: '@azure/msal-angular.IMsalService.acquireTokenSilent'
50+
package: '@azure/msal-angular'
51+
summary: ''
52+
remarks: ''
53+
isPreview: false
54+
isDeprecated: false
55+
syntax:
56+
content: >-
57+
function acquireTokenSilent(silentRequest: SilentRequest):
58+
Observable<AuthenticationResult>
59+
parameters:
60+
- id: silentRequest
61+
type: SilentRequest
62+
description: ''
63+
return:
64+
description: ''
65+
type: Observable&lt;AuthenticationResult&gt;
66+
- name: getLogger()
67+
uid: '@azure/msal-angular.IMsalService.getLogger'
68+
package: '@azure/msal-angular'
69+
summary: ''
70+
remarks: ''
71+
isPreview: false
72+
isDeprecated: false
73+
syntax:
74+
content: 'function getLogger(): Logger'
75+
return:
76+
description: ''
77+
type: Logger
78+
- name: handleRedirectObservable()
79+
uid: '@azure/msal-angular.IMsalService.handleRedirectObservable'
80+
package: '@azure/msal-angular'
81+
summary: ''
82+
remarks: ''
83+
isPreview: false
84+
isDeprecated: false
85+
syntax:
86+
content: >-
87+
function handleRedirectObservable(): Observable<AuthenticationResult |
88+
null>
89+
return:
90+
description: ''
91+
type: Observable&lt;AuthenticationResult | null&gt;
92+
- name: initialize()
93+
uid: '@azure/msal-angular.IMsalService.initialize'
94+
package: '@azure/msal-angular'
95+
summary: ''
96+
remarks: ''
97+
isPreview: false
98+
isDeprecated: false
99+
syntax:
100+
content: 'function initialize(): Observable<void>'
101+
return:
102+
description: ''
103+
type: Observable&lt;void&gt;
104+
- name: loginPopup(PopupRequest)
105+
uid: '@azure/msal-angular.IMsalService.loginPopup'
106+
package: '@azure/msal-angular'
107+
summary: ''
108+
remarks: ''
109+
isPreview: false
110+
isDeprecated: false
111+
syntax:
112+
content: >-
113+
function loginPopup(request?: PopupRequest):
114+
Observable<AuthenticationResult>
115+
parameters:
116+
- id: request
117+
type: PopupRequest
118+
description: ''
119+
return:
120+
description: ''
121+
type: Observable&lt;AuthenticationResult&gt;
122+
- name: loginRedirect(RedirectRequest)
123+
uid: '@azure/msal-angular.IMsalService.loginRedirect'
124+
package: '@azure/msal-angular'
125+
summary: ''
126+
remarks: ''
127+
isPreview: false
128+
isDeprecated: false
129+
syntax:
130+
content: 'function loginRedirect(request?: RedirectRequest): Observable<void>'
131+
parameters:
132+
- id: request
133+
type: RedirectRequest
134+
description: ''
135+
return:
136+
description: ''
137+
type: Observable&lt;void&gt;
138+
- name: logout(EndSessionRequest)
139+
uid: '@azure/msal-angular.IMsalService.logout'
140+
package: '@azure/msal-angular'
141+
summary: ''
142+
remarks: ''
143+
isPreview: false
144+
isDeprecated: false
145+
syntax:
146+
content: 'function logout(logoutRequest?: EndSessionRequest): Observable<void>'
147+
parameters:
148+
- id: logoutRequest
149+
type: EndSessionRequest
150+
description: ''
151+
return:
152+
description: ''
153+
type: Observable&lt;void&gt;
154+
- name: setLogger(Logger)
155+
uid: '@azure/msal-angular.IMsalService.setLogger'
156+
package: '@azure/msal-angular'
157+
summary: ''
158+
remarks: ''
159+
isPreview: false
160+
isDeprecated: false
161+
syntax:
162+
content: 'function setLogger(logger: Logger)'
163+
parameters:
164+
- id: logger
165+
type: Logger
166+
description: ''
167+
- name: ssoSilent(AuthorizationUrlRequest)
168+
uid: '@azure/msal-angular.IMsalService.ssoSilent'
169+
package: '@azure/msal-angular'
170+
summary: ''
171+
remarks: ''
172+
isPreview: false
173+
isDeprecated: false
174+
syntax:
175+
content: >-
176+
function ssoSilent(request: AuthorizationUrlRequest):
177+
Observable<AuthenticationResult>
178+
parameters:
179+
- id: request
180+
type: AuthorizationUrlRequest
181+
description: ''
182+
return:
183+
description: ''
184+
type: Observable&lt;AuthenticationResult&gt;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
### YamlMime:TSTypeAlias
2+
name: MatchingResources
3+
uid: '@azure/msal-angular.MatchingResources'
4+
package: '@azure/msal-angular'
5+
summary: ''
6+
fullName: MatchingResources
7+
remarks: ''
8+
isPreview: false
9+
isDeprecated: false
10+
syntax: |
11+
type MatchingResources = {
12+
absoluteResources: Array<string>,
13+
relativeResources: Array<string>,
14+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
### YamlMime:TSTypeAlias
2+
name: MsalBroadcastConfiguration
3+
uid: '@azure/msal-angular.MsalBroadcastConfiguration'
4+
package: '@azure/msal-angular'
5+
summary: ''
6+
fullName: MsalBroadcastConfiguration
7+
remarks: ''
8+
isPreview: false
9+
isDeprecated: false
10+
syntax: |
11+
type MsalBroadcastConfiguration = { eventsToReplay: number }
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
### YamlMime:TSType
2+
name: MsalBroadcastService
3+
uid: '@azure/msal-angular.MsalBroadcastService'
4+
package: '@azure/msal-angular'
5+
summary: ''
6+
fullName: MsalBroadcastService
7+
remarks: ''
8+
isPreview: false
9+
isDeprecated: false
10+
type: class
11+
constructors:
12+
- name: >-
13+
MsalBroadcastService(IPublicClientApplication, MsalService,
14+
MsalBroadcastConfiguration)
15+
uid: '@azure/msal-angular.MsalBroadcastService.constructor'
16+
package: '@azure/msal-angular'
17+
summary: ''
18+
remarks: ''
19+
isPreview: false
20+
isDeprecated: false
21+
syntax:
22+
content: >-
23+
new MsalBroadcastService(msalInstance: IPublicClientApplication,
24+
authService: MsalService, msalBroadcastConfig?:
25+
MsalBroadcastConfiguration)
26+
parameters:
27+
- id: msalInstance
28+
type: IPublicClientApplication
29+
description: ''
30+
- id: authService
31+
type: <xref uid="@azure/msal-angular.MsalService" />
32+
description: ''
33+
- id: msalBroadcastConfig
34+
type: <xref uid="@azure/msal-angular.MsalBroadcastConfiguration" />
35+
description: ''
36+
properties:
37+
- name: inProgress$
38+
uid: '@azure/msal-angular.MsalBroadcastService.inProgress$'
39+
package: '@azure/msal-angular'
40+
summary: ''
41+
fullName: inProgress$
42+
remarks: ''
43+
isPreview: false
44+
isDeprecated: false
45+
syntax:
46+
content: 'inProgress$: Observable<InteractionStatus>'
47+
return:
48+
description: ''
49+
type: Observable&lt;InteractionStatus&gt;
50+
- name: msalSubject$
51+
uid: '@azure/msal-angular.MsalBroadcastService.msalSubject$'
52+
package: '@azure/msal-angular'
53+
summary: ''
54+
fullName: msalSubject$
55+
remarks: ''
56+
isPreview: false
57+
isDeprecated: false
58+
syntax:
59+
content: 'msalSubject$: Observable<EventMessage>'
60+
return:
61+
description: ''
62+
type: Observable&lt;EventMessage&gt;
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
### YamlMime:TSType
2+
name: MsalCustomNavigationClient
3+
uid: '@azure/msal-angular.MsalCustomNavigationClient'
4+
package: '@azure/msal-angular'
5+
summary: >-
6+
Custom navigation used for Angular client-side navigation.
7+
8+
See performance doc for details:
9+
10+
https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/lib/msal-angular/docs/v2-docs/performance.md
11+
fullName: MsalCustomNavigationClient
12+
remarks: ''
13+
isPreview: false
14+
isDeprecated: false
15+
type: class
16+
constructors:
17+
- name: 'MsalCustomNavigationClient(MsalService, Router, Location)'
18+
uid: '@azure/msal-angular.MsalCustomNavigationClient.constructor'
19+
package: '@azure/msal-angular'
20+
summary: ''
21+
remarks: ''
22+
isPreview: false
23+
isDeprecated: false
24+
syntax:
25+
content: >-
26+
new MsalCustomNavigationClient(authService: MsalService, router: Router,
27+
___location: Location)
28+
parameters:
29+
- id: authService
30+
type: <xref uid="@azure/msal-angular.MsalService" />
31+
description: ''
32+
- id: router
33+
type: Router
34+
description: ''
35+
- id: ___location
36+
type: Location
37+
description: ''
38+
inheritedMethods:
39+
- name: 'navigateExternal(string, NavigationOptions)'
40+
uid: '@azure/msal-angular.MsalCustomNavigationClient.navigateExternal'
41+
package: '@azure/msal-angular'
42+
summary: >-
43+
Navigates to other pages outside the web application i.e. the Identity
44+
Provider
45+
remarks: ''
46+
isPreview: false
47+
isDeprecated: false
48+
syntax:
49+
content: >-
50+
function navigateExternal(url: string, options: NavigationOptions):
51+
Promise<boolean>
52+
parameters:
53+
- id: url
54+
type: string
55+
description: ''
56+
- id: options
57+
type: NavigationOptions
58+
description: |+
59+
60+
return:
61+
description: ''
62+
type: Promise&lt;boolean&gt;
63+
inheritanceDescription: <b>Inherited From</b> NavigationClient.navigateExternal
64+
methods:
65+
- name: 'navigateInternal(string, NavigationOptions)'
66+
uid: '@azure/msal-angular.MsalCustomNavigationClient.navigateInternal'
67+
package: '@azure/msal-angular'
68+
summary: ''
69+
remarks: ''
70+
isPreview: false
71+
isDeprecated: false
72+
syntax:
73+
content: >-
74+
function navigateInternal(url: string, options: NavigationOptions):
75+
Promise<boolean>
76+
parameters:
77+
- id: url
78+
type: string
79+
description: ''
80+
- id: options
81+
type: NavigationOptions
82+
description: ''
83+
return:
84+
description: ''
85+
type: Promise&lt;boolean&gt;
86+
extends: NavigationClient

0 commit comments

Comments
 (0)