forked from IdentityModel/oidc-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oidc-client.d.ts
224 lines (178 loc) · 6.66 KB
/
oidc-client.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
declare module "oidc-client" {
export = Oidc;
}
declare namespace Oidc {
interface Logger {
error(message?: any, ...optionalParams: any[]): void;
info(message?: any, ...optionalParams: any[]): void;
warn(message?: any, ...optionalParams: any[]): void;
}
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;
}
interface InMemoryWebStorage {
getItem(key: string): any;
setItem(key: string, value: any): any;
removeItem(key: string): any;
key(index: number): any;
length?: number;
}
class Log {
static NONE: number;
static ERROR: number;
static WARN: number;
static INFO: number;
// For when TypeScript 2.0 compiler is more widely used
// static readonly NONE: number;
// static readonly ERROR: number;
// static readonly WARN: number;
// static readonly INFO: number;
static reset(): void;
static level: number;
static logger: Logger;
static info(message?: any, ...optionalParams: any[]): void;
static warn(message?: any, ...optionalParams: any[]): void;
static error(message?: any, ...optionalParams: any[]): void;
}
interface MetadataService {
new (settings: OidcClientSettings): MetadataService;
getMetadata(): Promise<any>;
getIssuer(): Promise<any>;
getAuthorizationEndpoint(): Promise<any>;
getUserInfoEndpoint(): Promise<any>;
getCheckSessionIframe(): Promise<any>;
getEndSessionEndpoint(): Promise<any>;
getSigningKeys(): Promise<any>;
}
interface MetadataServiceCtor {
(settings: OidcClientSettings, jsonServiceCtor?: any): MetadataService;
}
interface ResponseValidator {
validateSigninResponse(state: any, response: any): Promise<any>;
validateSignoutResponse(state: any, response: any): Promise<any>;
}
interface ResponseValidatorCtor {
(settings: OidcClientSettings, metadataServiceCtor?: MetadataServiceCtor, userInfoServiceCtor?: any): ResponseValidator;
}
class OidcClient {
constructor(settings: OidcClientSettings);
createSigninRequest(args?: any): Promise<any>;
processSigninResponse(): Promise<any>;
createSignoutRequest(args?: any): Promise<any>;
processSignoutResponse(): Promise<any>;
clearStaleState(stateStore: any): Promise<any>;
}
interface OidcClientSettings {
authority?: string;
metadataUrl?: string;
metadata?: any;
signingKeys?: any[];
client_id?: string;
response_type?: string;
scope?: string;
redirect_uri?: string;
post_logout_redirect_uri?: string;
prompt?: string;
display?: string;
max_age?: number;
ui_locales?: string;
acr_values?: string;
filterProtocolClaims?: boolean;
loadUserInfo?: boolean;
staleStateAge?: number;
clockSkew?: number;
stateStore?: WebStorageStateStore;
ResponseValidatorCtor?: ResponseValidatorCtor;
MetadataServiceCtor?: MetadataServiceCtor;
}
class UserManager extends OidcClient {
constructor(settings: UserManagerSettings);
clearStaleState(): Promise<void>;
getUser(): Promise<User>;
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>;
querySessionStatus(args?: any): Promise<any>;
events: UserManagerEvents;
}
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;
}
interface UserManagerSettings extends OidcClientSettings {
popup_redirect_uri?: string;
popupWindowFeatures?: string;
popupWindowTarget?: any;
silent_redirect_uri?: any;
silentRequestTimeout?: any;
automaticSilentRenew?: any;
monitorSession?: any;
checkSessionInterval?: any;
revokeAccessTokenOnSignout?: any;
accessTokenExpiringNotificationTime?: number;
redirectNavigator?: any;
popupNavigator?: any;
iframeNavigator?: any;
userStore?: any;
}
interface WebStorageStateStoreSettings {
prefix?: string;
store?: any;
}
class WebStorageStateStore {
constructor(settings: WebStorageStateStoreSettings);
set(key: string, value: any): Promise<void>;
get(key: string): Promise<any>;
remove(key: string): Promise<any>;
getAllKeys(): Promise<string[]>;
}
interface User {
id_token: string;
session_state: any;
access_token: string;
token_type: string;
scope: string;
profile: any;
expires_at: number;
state: any;
toStorageString(): string;
expires_in: number;
expired: boolean;
scopes: string[];
// For when TypeScript 2.0 compiler is more widely used
// readonly expires_in: number;
// readonly expired: boolean;
// readonly scopes: string[];
}
class CordovaPopupWindow {
constructor(params: any);
navigate(params: any): Promise<any>;
promise: Promise<any>;
}
class CordovaPopupNavigator {
prepare(params: any): Promise<CordovaPopupWindow>;
}
class CordovaIFrameNavigator {
prepare(params: any): Promise<CordovaPopupWindow>;
}
}