AAE-29442 moving to node 20.18.1 (#10500)

* AAE-0000 - moving to node 20.18.1

* AAE-29442 Adjusted to the new eslint rule
This commit is contained in:
Vito Albano
2024-12-18 12:14:52 +01:00
committed by GitHub
parent dd44e492b7
commit 872fb16b62
144 changed files with 5267 additions and 6842 deletions
@@ -68,7 +68,6 @@ export class ContentAuth extends AlfrescoApiClient {
/**
* login Alfresco API
*
* @param username Username to login
* @param password Password to login
* @returns A promise that returns {new authentication ticket} if resolved and {error} if rejected.
@@ -111,7 +110,6 @@ export class ContentAuth extends AlfrescoApiClient {
/**
* validate the ticket present in this.config.ticket against the server
*
* @returns A promise that returns if resolved and {error} if rejected.
*/
validateTicket(): Promise<string> {
@@ -141,7 +139,6 @@ export class ContentAuth extends AlfrescoApiClient {
/**
* logout Alfresco API
*
* @returns A promise that returns { authentication ticket} if resolved and {error} if rejected.
*/
logout(): Promise<void> {
@@ -180,7 +177,6 @@ export class ContentAuth extends AlfrescoApiClient {
/**
* Get the current Ticket
*
* @returns ticket value
*/
getTicket(): string {
@@ -197,7 +193,6 @@ export class ContentAuth extends AlfrescoApiClient {
/**
* If the client is logged in return true
*
* @returns `true` if client is logged in, otherwise `false`
*/
isLoggedIn(): boolean {
@@ -206,7 +201,6 @@ export class ContentAuth extends AlfrescoApiClient {
/**
* return the Authentication
*
* @returns authentication object
*/
getAuthentication(): Authentication {