Skip to content

Commit be5b48c

Browse files
committed
Cleanup: remove unused parameter
1 parent 79842bc commit be5b48c

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

src/authentication/CreateFetch.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export interface IUserCredentialsAuthOptions {
2525
export 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

src/authentication/TokenCreationCSS.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

1211
export type CSSToken = {

src/authentication/authenticate.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

src/utils/shellutils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)