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 {
2525export interface IClientCredentialsTokenAuthOptions {
2626 idp ?: string , // This value is stored with the created client credentials token.
2727 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.
2928 verbose ?: boolean ,
3029 logger ?: Logger ,
3130}
@@ -35,7 +34,6 @@ export interface IClientCredentialsTokenGenerationOptions {
3534 email : string ,
3635 password : string ,
3736 idp : string ,
38- clientCredentialsTokenStorageLocation ?: string // Storage location of the output client credentials token.
3937 logger ?: Logger ,
4038}
4139
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ export interface IClientCredentialsTokenGenerationOptions {
66 email : string ,
77 password : string ,
88 idp : string ,
9- clientCredentialsTokenStorageLocation ?: string // Storage location of the output client credentials token.
109}
1110
1211export type CSSToken = {
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export interface ILoginOptions {
1212 email ?: string ,
1313 password ?: string ,
1414 config ?: string ,
15- clientCredentialsTokenStorageLocation ?: string , // Storage location of the stored client credentials token.
1615 sessionInfoStorageLocation ?: string ,
1716 verbose ?: boolean ,
1817 logger ?: Logger ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ export function addEnvOptions(options: any) {
3636 options . port = options . port || envAuthPort
3737
3838 // Fixing some naming inconsistencies because of limited option length
39- options . clientCredentialsTokenStorageLocation = options . tokenStorage
4039 options . sessionInfoStorageLocation = options . sessionStorage
4140 options . verbose = ! options . silent
4241 return options
You can’t perform that action at this time.
0 commit comments