File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export abstract class AuthCodeAbstract {
88
88
* Abstract method will implement logic in child classes for refreshing access token
89
89
* using refresh token available in current session.
90
90
* @param {SessionManager } sessionManager
91
- * @param {boolean } [commitToSession=true] - Optional parameter, determines whether to commit the refresh tokens to the session. Defaults to true.
91
+ * @param {boolean } [commitToSession=true] - Optional parameter, determines whether to commit the refreshed tokens to the session. Defaults to true.
92
92
* @returns {Promise<OAuth2CodeExchangeResponse> }
93
93
*/
94
94
public abstract refreshTokens (
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export class AuthCodeWithPKCE extends AuthCodeAbstract {
69
69
* `AuthCodeAbstract` parent class, see corresponding comment in parent class for
70
70
* further explanation.
71
71
* @param {SessionManager } sessionManager
72
- * @param {boolean } [commitToSession=true] - Optional parameter, determines whether to commit the refresh tokens to the session. Defaults to true.
72
+ * @param {boolean } [commitToSession=true] - Optional parameter, determines whether to commit the refreshed tokens to the session. Defaults to true.
73
73
* @returns {Promise<OAuth2CodeExchangeResponse> }
74
74
*/
75
75
public async refreshTokens (
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export class AuthorizationCode extends AuthCodeAbstract {
54
54
* `AuthCodeAbstract` parent class, see corresponding comment in parent class for
55
55
* further explanation.
56
56
* @param {SessionManager } sessionManager
57
- * @param {boolean } [commitToSession=true] - Optional parameter, determines whether to commit the refresh tokens to the session. Defaults to true.
57
+ * @param {boolean } [commitToSession=true] - Optional parameter, determines whether to commit the refreshed tokens to the session. Defaults to true.
58
58
* @returns {Promise<OAuth2CodeExchangeResponse> }
59
59
*/
60
60
public async refreshTokens (
You can’t perform that action at this time.
0 commit comments