File tree Expand file tree Collapse file tree 4 files changed +0
-5
lines changed Expand file tree Collapse file tree 4 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ export interface IUserCredentialsAuthOptions {
25
25
export interface IClientCredentialsTokenAuthOptions {
26
26
idp ?: string , // This value is stored with the created client credentials token.
27
27
sessionInfoStorageLocation ?: string , // Storage location of session information to reuse in subsequent runs of the application.
28
- clientCredentialsTokenStorageLocation ?: string , // Storage location of the stored client credentials token.
29
28
verbose ?: boolean ,
30
29
logger ?: Logger ,
31
30
}
@@ -35,7 +34,6 @@ export interface IClientCredentialsTokenGenerationOptions {
35
34
email : string ,
36
35
password : string ,
37
36
idp : string ,
38
- clientCredentialsTokenStorageLocation ?: string // Storage location of the output client credentials token.
39
37
logger ?: Logger ,
40
38
}
41
39
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ export interface IClientCredentialsTokenGenerationOptions {
6
6
email : string ,
7
7
password : string ,
8
8
idp : string ,
9
- clientCredentialsTokenStorageLocation ?: string // Storage location of the output client credentials token.
10
9
}
11
10
12
11
export type CSSToken = {
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export interface ILoginOptions {
12
12
email ?: string ,
13
13
password ?: string ,
14
14
config ?: string ,
15
- clientCredentialsTokenStorageLocation ?: string , // Storage location of the stored client credentials token.
16
15
sessionInfoStorageLocation ?: string ,
17
16
verbose ?: boolean ,
18
17
logger ?: Logger ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ export function addEnvOptions(options: any) {
36
36
options . port = options . port || envAuthPort
37
37
38
38
// Fixing some naming inconsistencies because of limited option length
39
- options . clientCredentialsTokenStorageLocation = options . tokenStorage
40
39
options . sessionInfoStorageLocation = options . sessionStorage
41
40
options . verbose = ! options . silent
42
41
return options
You can’t perform that action at this time.
0 commit comments