1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-10 05:40:06 +00:00

fix(lint): fixed code style

This commit is contained in:
Yury Shkoda
2021-03-09 09:53:35 +03:00
parent 9d27451813
commit 490215df90

View File

@@ -571,9 +571,9 @@ export class SASViyaApiClient {
} }
} }
const { result: createFolderResponse } = await this.requestClient.post< const {
Folder result: createFolderResponse
>( } = await this.requestClient.post<Folder>(
`/folders/folders?parentFolderUri=${parentFolderUri}`, `/folders/folders?parentFolderUri=${parentFolderUri}`,
{ {
name: folderName, name: folderName,
@@ -852,7 +852,9 @@ export class SASViyaApiClient {
throw new Error(`URI of job definition was not found.`) throw new Error(`URI of job definition was not found.`)
} }
const { result: jobDefinition } = await this.requestClient const {
result: jobDefinition
} = await this.requestClient
.get<JobDefinition>( .get<JobDefinition>(
`${this.serverUrl}${jobDefinitionLink.href}`, `${this.serverUrl}${jobDefinitionLink.href}`,
accessToken accessToken