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

feat(edit-context): add the ability to edit a given context

This commit is contained in:
Krishna Acondy
2020-09-10 09:14:02 +01:00
parent 3ec6ee2db9
commit 9b0e02f5b7
3 changed files with 87 additions and 2 deletions

View File

@@ -4,3 +4,12 @@ export interface Context {
createdBy: string
version: number
}
export interface EditContextInput {
name?: string
description?: string
launchContext?: { name: string }
environment?: { options?: string[]; autoExecLines?: string[] }
authorizedUsers?: string[]
authorizeAllAuthenticatedUsers?: boolean
}