forked from IdentityModel/oidc-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
295 lines (218 loc) · 7.67 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/* Provides a namespace for when the library is loaded outside a module loader environment */
export as namespace Oidc;
export interface Logger {
error(message?: any, ...optionalParams: any[]): void;
info(message?: any, ...optionalParams: any[]): void;
debug(message?: any, ...optionalParams: any[]): void;
warn(message?: any, ...optionalParams: any[]): void;
}
export interface AccessTokenEvents {
load(container: User): void;
unload(): void;
addAccessTokenExpiring(callback: (...ev: any[]) => void): void;
removeAccessTokenExpiring(callback: (...ev: any[]) => void): void;
addAccessTokenExpired(callback: (...ev: any[]) => void): void;
removeAccessTokenExpired(callback: (...ev: any[]) => void): void;
}
export class InMemoryWebStorage {
getItem(key: string): any;
setItem(key: string, value: any): any;
removeItem(key: string): any;
key(index: number): any;
length?: number;
}
export class Log {
static readonly NONE: number;
static readonly ERROR: number;
static readonly WARN: number;
static readonly INFO: number;
static readonly DEBUG: number;
static reset(): void;
static level: number;
static logger: Logger;
static debug(message?: any, ...optionalParams: any[]): void;
static info(message?: any, ...optionalParams: any[]): void;
static warn(message?: any, ...optionalParams: any[]): void;
static error(message?: any, ...optionalParams: any[]): void;
}
export interface MetadataService {
new (settings: OidcClientSettings): MetadataService;
metadataUrl?: string;
getMetadata(): Promise<any>;
getIssuer(): Promise<string>;
getAuthorizationEndpoint(): Promise<string>;
getUserInfoEndpoint(): Promise<string>;
getTokenEndpoint(): Promise<string | undefined>;
getCheckSessionIframe(): Promise<string | undefined>;
getEndSessionEndpoint(): Promise<string | undefined>;
getRevocationEndpoint(): Promise<string | undefined>;
getSigningKeys(): Promise<any[]>;
}
export interface MetadataServiceCtor {
(settings: OidcClientSettings, jsonServiceCtor?: any): MetadataService;
}
export interface ResponseValidator {
validateSigninResponse(state: any, response: any): Promise<any>;
validateSignoutResponse(state: any, response: any): Promise<any>;
}
export interface ResponseValidatorCtor {
(settings: OidcClientSettings, metadataServiceCtor?: MetadataServiceCtor, userInfoServiceCtor?: any): ResponseValidator;
}
export interface SigninRequest {
url: string;
state: any;
}
export interface SignoutRequest {
url: string;
state?: any;
}
export class OidcClient {
constructor(settings: OidcClientSettings);
readonly settings: OidcClientSettings;
createSigninRequest(args?: any): Promise<SigninRequest>;
processSigninResponse(): Promise<SigninResponse>;
createSignoutRequest(args?: any): Promise<SignoutRequest>;
processSignoutResponse(): Promise<SigninResponse>;
clearStaleState(stateStore: StateStore): Promise<any>;
}
export interface OidcClientSettings {
authority?: string;
readonly metadataUrl?: string;
metadata?: any;
signingKeys?: any[];
client_id?: string;
readonly response_type?: string;
readonly scope?: string;
readonly redirect_uri?: string;
readonly post_logout_redirect_uri?: string;
readonly popup_post_logout_redirect_uri?: string;
readonly prompt?: string;
readonly display?: string;
readonly max_age?: number;
readonly ui_locales?: string;
readonly acr_values?: string;
readonly filterProtocolClaims?: boolean;
readonly loadUserInfo?: boolean;
readonly staleStateAge?: number;
readonly clockSkew?: number;
readonly stateStore?: StateStore;
ResponseValidatorCtor?: ResponseValidatorCtor;
MetadataServiceCtor?: MetadataServiceCtor;
extraQueryParams?: {};
}
export class UserManager extends OidcClient {
constructor(settings: UserManagerSettings);
readonly settings: UserManagerSettings;
clearStaleState(): Promise<void>;
getUser(): Promise<User>;
storeUser(user:User): Promise<void>;
removeUser(): Promise<void>;
signinPopup(args?: any): Promise<User>;
signinPopupCallback(url?: string): Promise<any>;
signinSilent(args?: any): Promise<User>;
signinSilentCallback(url?: string): Promise<any>;
signinRedirect(args?: any): Promise<any>;
signinRedirectCallback(url?: string): Promise<User>;
signoutRedirect(args?: any): Promise<any>;
signoutRedirectCallback(url?: string): Promise<any>;
signoutPopup(args?: any): Promise<any>;
signoutPopupCallback(url?: string, keepOpen?: boolean): Promise<void>;
signoutPopupCallback(keepOpen?: boolean): Promise<void>;
querySessionStatus(args?: any): Promise<any>;
revokeAccessToken(): Promise<void>;
startSilentRenew(): void;
stopSilentRenew(): void;
events: UserManagerEvents;
}
export interface UserManagerEvents extends AccessTokenEvents {
load(user: User): any;
unload(): any;
addUserLoaded(callback: (...ev: any[]) => void): void;
removeUserLoaded(callback: (...ev: any[]) => void): void;
addUserUnloaded(callback: (...ev: any[]) => void): void;
removeUserUnloaded(callback: (...ev: any[]) => void): void;
addSilentRenewError(callback: (...ev: any[]) => void): void;
removeSilentRenewError(callback: (...ev: any[]) => void): void;
addUserSignedOut(callback: (...ev: any[]) => void): void;
removeUserSignedOut(callback: (...ev: any[]) => void): void;
addUserSessionChanged(callback: (...ev: any[]) => void): void;
removeUserSessionChanged(callback: (...ev: any[]) => void): void;
}
export interface UserManagerSettings extends OidcClientSettings {
readonly popup_redirect_uri?: string;
readonly popupWindowFeatures?: string;
readonly popupWindowTarget?: any;
readonly silent_redirect_uri?: any;
readonly silentRequestTimeout?: any;
readonly automaticSilentRenew?: boolean;
readonly includeIdTokenInSilentRenew?: boolean;
readonly monitorSession?: boolean;
readonly checkSessionInterval?: number;
readonly revokeAccessTokenOnSignout?: any;
readonly accessTokenExpiringNotificationTime?: number;
readonly redirectNavigator?: any;
readonly popupNavigator?: any;
readonly iframeNavigator?: any;
readonly userStore?: any;
}
export interface WebStorageStateStoreSettings {
prefix?: string;
store?: any;
}
export interface StateStore {
set(key: string, value: any): Promise<void>;
get(key: string): Promise<any>;
remove(key: string): Promise<any>;
getAllKeys(): Promise<string[]>;
}
export class WebStorageStateStore implements StateStore {
constructor(settings: WebStorageStateStoreSettings);
set(key: string, value: any): Promise<void>;
get(key: string): Promise<any>;
remove(key: string): Promise<any>;
getAllKeys(): Promise<string[]>;
}
export interface SigninResponse {
new (url: string): SigninResponse;
access_token: string;
error: string;
error_description: string;
error_uri: string;
expires_at: number;
id_token: string;
profile: any;
scope: string;
session_state: any;
state: any;
token_type: string;
readonly expired: boolean | undefined;
readonly expires_in: number | undefined;
readonly isOpenIdConnect: boolean;
readonly scopes: string[];
}
export class User {
constructor(response: SigninResponse);
id_token: string;
session_state: any;
access_token: string;
token_type: string;
scope: string;
profile: any;
expires_at: number;
state: any;
toStorageString(): string;
readonly expires_in: number | undefined;
readonly expired: boolean | undefined;
readonly scopes: string[];
}
export class CordovaPopupWindow {
constructor(params: any);
navigate(params: any): Promise<any>;
promise: Promise<any>;
}
export class CordovaPopupNavigator {
prepare(params: any): Promise<CordovaPopupWindow>;
}
export class CordovaIFrameNavigator {
prepare(params: any): Promise<CordovaPopupWindow>;
}