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

chore(doc): fix typo, add links to source code

This commit is contained in:
Krishna Acondy
2020-09-11 09:15:40 +01:00
parent 40de5f2e11
commit c50d891777
89 changed files with 15073 additions and 172 deletions

View File

@@ -282,7 +282,7 @@ export class SASViyaApiClient {
*/
public async editContext(
contextId: string,
updatedContext: EditContextInput,
editedContext: EditContextInput,
accessToken?: string
) {
if (!contextId) {
@@ -325,8 +325,8 @@ export class SASViyaApiClient {
headers,
body: JSON.stringify({
...context,
...updatedContext,
attributes: { ...context.attributes, ...updatedContext.attributes }
...editedContext,
attributes: { ...context.attributes, ...editedContext.attributes }
})
}