1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-07 20:40:05 +00:00

fix: deprecating sasjs client id

This commit is contained in:
2022-05-09 13:26:17 +02:00
parent 72ed5e3fab
commit c243f25477
6 changed files with 12 additions and 30 deletions

View File

@@ -104,7 +104,7 @@ export class SASjsApiClient {
clientId: string,
authCode: string
): Promise<SASjsAuthResponse> {
return getAccessTokenForSasjs(this.requestClient, clientId, authCode)
return getAccessTokenForSasjs(this.requestClient, authCode)
}
/**
@@ -126,7 +126,7 @@ export class SASjsApiClient {
password: string,
clientId: string
) {
return getAuthCodeForSasjs(this.requestClient, username, password, clientId)
return getAuthCodeForSasjs(this.requestClient, username, password)
}
}