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

chore(*): fix formatting

This commit is contained in:
Krishna Acondy
2021-05-27 08:06:21 +01:00
parent 0e1d1f1d99
commit d8d1968162
6 changed files with 17 additions and 32 deletions

View File

@@ -314,9 +314,7 @@ export class ContextManager {
contextId: string, contextId: string,
accessToken?: string accessToken?: string
): Promise<ContextAllAttributes> { ): Promise<ContextAllAttributes> {
const { const { result: context } = await this.requestClient
result: context
} = await this.requestClient
.get<ContextAllAttributes>( .get<ContextAllAttributes>(
`${this.serverUrl}/compute/contexts/${contextId}`, `${this.serverUrl}/compute/contexts/${contextId}`,
accessToken accessToken

View File

@@ -594,16 +594,15 @@ export class SASViyaApiClient {
} }
} }
const { const { result: createFolderResponse } =
result: createFolderResponse await this.requestClient.post<Folder>(
} = await this.requestClient.post<Folder>( `/folders/folders?parentFolderUri=${parentFolderUri}`,
`/folders/folders?parentFolderUri=${parentFolderUri}`, {
{ name: folderName,
name: folderName, type: 'folder'
type: 'folder' },
}, accessToken
accessToken )
)
// update folder map with newly created folder. // update folder map with newly created folder.
await this.populateFolderMap( await this.populateFolderMap(
@@ -875,9 +874,7 @@ export class SASViyaApiClient {
throw new Error(`URI of job definition was not found.`) throw new Error(`URI of job definition was not found.`)
} }
const { const { result: jobDefinition } = await this.requestClient
result: jobDefinition
} = await this.requestClient
.get<JobDefinition>( .get<JobDefinition>(
`${this.serverUrl}${jobDefinitionLink.href}`, `${this.serverUrl}${jobDefinitionLink.href}`,
accessToken accessToken

View File

@@ -576,12 +576,7 @@ export default class SASjs {
config.username && config.username &&
config.password config.password
) { ) {
return await this.sas9JobExecutor!.execute( return await this.sas9JobExecutor!.execute(sasJob, data, config)
sasJob,
data,
config,
loginRequiredCallback
)
} else { } else {
return await this.webJobExecutor!.execute( return await this.webJobExecutor!.execute(
sasJob, sasJob,

View File

@@ -91,10 +91,7 @@ export class SessionManager {
} }
private async createAndWaitForSession(accessToken?: string) { private async createAndWaitForSession(accessToken?: string) {
const { const { result: createdSession, etag } = await this.requestClient
result: createdSession,
etag
} = await this.requestClient
.post<Session>( .post<Session>(
`${this.serverUrl}/compute/contexts/${ `${this.serverUrl}/compute/contexts/${
this.currentContext!.id this.currentContext!.id

View File

@@ -71,10 +71,8 @@ export class WebJobExecutor extends BaseJobExecutor {
} else { } else {
// param based approach // param based approach
try { try {
const { const { formData: newFormData, requestParams: params } =
formData: newFormData, generateTableUploadForm(formData, data)
requestParams: params
} = generateTableUploadForm(formData, data)
formData = newFormData formData = newFormData
requestParams = { ...requestParams, ...params } requestParams = { ...requestParams, ...params }
} catch (e) { } catch (e) {

View File

@@ -28,12 +28,12 @@ describe('urlValidator', () => {
it('should return false when the URL is null', () => { it('should return false when the URL is null', () => {
const url = null const url = null
expect(isUrl((url as unknown) as string)).toEqual(false) expect(isUrl(url as unknown as string)).toEqual(false)
}) })
it('should return false when the URL is undefined', () => { it('should return false when the URL is undefined', () => {
const url = undefined const url = undefined
expect(isUrl((url as unknown) as string)).toEqual(false) expect(isUrl(url as unknown as string)).toEqual(false)
}) })
}) })