-
Notifications
You must be signed in to change notification settings - Fork 12
/
OAuthConfig.ts
66 lines (54 loc) · 1.66 KB
/
OAuthConfig.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
type CredentialsDirConfig = {
credentialsDir: string
};
type CredentialsClientConfig = {
clientId: string,
clientSecret: string
};
type CredentialsUserConfig = {
applicationUsername: string,
applicationPassword: string
};
type CredentialsUserClientConfig = CredentialsClientConfig & CredentialsUserConfig;
type CredentialsConfig = CredentialsDirConfig | CredentialsClientConfig;
type CredentialsPasswordConfig = CredentialsDirConfig | CredentialsUserClientConfig;
type GrantConfigBase = {
grantType: string,
accessTokenEndpoint: string,
queryParams?: { [index: string]: string },
bodyParams?: { [index: string]: string },
scopes?: string[]
};
type ClientCredentialsGrantConfig = CredentialsConfig & GrantConfigBase;
type AuthorizationCodeGrantConfig = CredentialsConfig & GrantConfigBase & {
code: string,
redirectUri: string
};
type PasswordCredentialsGrantConfig = CredentialsPasswordConfig & GrantConfigBase;
type RefreshGrantConfig = CredentialsConfig & GrantConfigBase & {
refreshToken: string
};
type OAuthConfig =
ClientCredentialsGrantConfig |
AuthorizationCodeGrantConfig |
PasswordCredentialsGrantConfig |
RefreshGrantConfig;
type TokenCacheOAuthConfig =
(ClientCredentialsGrantConfig | PasswordCredentialsGrantConfig) & {
tokenInfoEndpoint: string // mandatory for TokenCache
};
export {
CredentialsDirConfig,
CredentialsUserConfig,
CredentialsClientConfig,
CredentialsUserClientConfig,
CredentialsPasswordConfig,
CredentialsConfig,
GrantConfigBase,
ClientCredentialsGrantConfig,
AuthorizationCodeGrantConfig,
PasswordCredentialsGrantConfig,
RefreshGrantConfig,
OAuthConfig,
TokenCacheOAuthConfig
};