mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-05 03:30:05 +00:00
18 lines
383 B
TypeScript
18 lines
383 B
TypeScript
export interface Context {
|
|
name: string
|
|
id: string
|
|
createdBy: string
|
|
version: number
|
|
attributes?: any
|
|
}
|
|
|
|
export interface EditContextInput {
|
|
name?: string
|
|
description?: string
|
|
launchContext?: { name: string }
|
|
environment?: { options?: string[]; autoExecLines?: string[] }
|
|
attributes?: any
|
|
authorizedUsers?: string[]
|
|
authorizeAllAuthenticatedUsers?: boolean
|
|
}
|