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

feat(context): added getComputeContextById method

This commit is contained in:
Yury Shkoda
2020-09-24 15:53:07 +03:00
parent d60c0850c2
commit 057460467c
36 changed files with 8264 additions and 15 deletions

View File

@@ -14,4 +14,23 @@ export interface EditContextInput {
attributes?: any
authorizedUsers?: string[]
authorizeAllAuthenticatedUsers?: boolean
id?: string
}
export interface ContextAllAttributes {
attributes: {
reuseServerProcesses: boolean
runServerAs: string
}
modifiedTimeStamp: string
createdBy: string
creationTimeStamp: string
launchType: string
launchContext: {
contextName: string
}
modifiedBy: string
id: string
version: number
name: string
}