-
Notifications
You must be signed in to change notification settings - Fork 53
/
tns-oauth-interfaces.d.ts
75 lines (61 loc) · 1.78 KB
/
tns-oauth-interfaces.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
export interface ITnsAuthHelper {
credentials: ITnsOAuthCredentials;
tokenResult: ITnsOAuthTokenResult;
login: (successPage?: string) => Promise<string>;
logout: (successPage?: string) => Promise<void>;
refreshToken: () => Promise<string>;
accessTokenExpired: () => boolean;
refreshTokenExpired: () => boolean;
}
export interface ITnsOAuthCredentials {
authority: string;
tokenEndpointBase?: string;
authorizeEndpoint: string;
tokenEndpoint: string;
revokeEndpoint?: string;
clientId: string;
clientSecret?: string;
redirectUri: string;
responseType?: string;
scope: string;
}
export interface ITnsOAuthCredentialsUaa extends ITnsOAuthCredentials {
basicAuthHeader: string;
}
export interface ITnsOAuthTokenResult {
accessToken: string;
refreshToken: string;
accessTokenExpiration: Date;
refreshTokenExpiration: Date;
}
export interface ITnsOAuthOptions {
clientId: string;
scope: string[];
}
export interface ITnsOAuthOptionsOffice365 extends ITnsOAuthOptions {
}
export interface ITnsOAuthOptionsFacebook extends ITnsOAuthOptions {
clientSecret: string;
}
export interface ITnsOAuthOptionsGoogle extends ITnsOAuthOptions {
}
export interface ITnsOAuthOptionsUaa extends ITnsOAuthOptions {
authority: string;
redirectUri: string;
clientSecret: string;
cookieDomains: string[];
basicAuthHeader: string;
}
export interface ITnsOAuthOptionsLinkedIn extends ITnsOAuthOptions {
clientSecret: string;
redirectUri: string;
}
export interface ITnsOAuthOptionsSalesforce extends ITnsOAuthOptions {
authority: string;
redirectUri: string;
responseType: string;
}
export interface ITnsOAuthOptionsCustom {
credentials: ITnsOAuthCredentials;
cookieDomains: Array<string>;
}