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