From efc82101c1c1af36cd54e08efba2db2732db2b7d Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Wed, 30 Dec 2020 11:36:10 +0300 Subject: [PATCH] chore(context-delete): renamed method --- src/SASViyaApiClient.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/SASViyaApiClient.ts b/src/SASViyaApiClient.ts index 23fa8cc..b70d4af 100644 --- a/src/SASViyaApiClient.ts +++ b/src/SASViyaApiClient.ts @@ -244,8 +244,11 @@ export class SASViyaApiClient { * @param contextName - the name of the context to be deleted. * @param accessToken - an access token for an authorized user. */ - public async deleteContext(contextName: string, accessToken?: string) { - return await this.contextManager.deleteContext(contextName, accessToken) + public async deleteComputeContext(contextName: string, accessToken?: string) { + return await this.contextManager.deleteComputeContext( + contextName, + accessToken + ) } /**