1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00

chore(context-delete): renamed method

This commit is contained in:
Yury Shkoda
2020-12-30 11:36:10 +03:00
parent 09ce2fb6be
commit efc82101c1

View File

@@ -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
)
}
/**