From 490215df90e21e655720b0ceb8a0c35a3eaa1bcb Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Tue, 9 Mar 2021 09:53:35 +0300 Subject: [PATCH] fix(lint): fixed code style --- src/SASViyaApiClient.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/SASViyaApiClient.ts b/src/SASViyaApiClient.ts index 19627be..1b5e497 100644 --- a/src/SASViyaApiClient.ts +++ b/src/SASViyaApiClient.ts @@ -571,9 +571,9 @@ export class SASViyaApiClient { } } - const { result: createFolderResponse } = await this.requestClient.post< - Folder - >( + const { + result: createFolderResponse + } = await this.requestClient.post( `/folders/folders?parentFolderUri=${parentFolderUri}`, { name: folderName, @@ -852,7 +852,9 @@ export class SASViyaApiClient { throw new Error(`URI of job definition was not found.`) } - const { result: jobDefinition } = await this.requestClient + const { + result: jobDefinition + } = await this.requestClient .get( `${this.serverUrl}${jobDefinitionLink.href}`, accessToken