From e03ec996d618860e98c65cd60bf5052677bf54f2 Mon Sep 17 00:00:00 2001 From: Krishna Acondy Date: Tue, 11 May 2021 09:25:17 +0100 Subject: [PATCH] chore(*): fix formatting --- src/SASViyaApiClient.ts | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/SASViyaApiClient.ts b/src/SASViyaApiClient.ts index 4e3b5ba..4f64e0d 100644 --- a/src/SASViyaApiClient.ts +++ b/src/SASViyaApiClient.ts @@ -594,16 +594,15 @@ export class SASViyaApiClient { } } - const { - result: createFolderResponse - } = await this.requestClient.post( - `/folders/folders?parentFolderUri=${parentFolderUri}`, - { - name: folderName, - type: 'folder' - }, - accessToken - ) + const { result: createFolderResponse } = + await this.requestClient.post( + `/folders/folders?parentFolderUri=${parentFolderUri}`, + { + name: folderName, + type: 'folder' + }, + accessToken + ) // update folder map with newly created folder. await this.populateFolderMap( @@ -875,9 +874,7 @@ 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