mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-13 23:20:05 +00:00
feat(compute-api): implement job execution via compute API
This commit is contained in:
3
src/types/JobDefinition.ts
Normal file
3
src/types/JobDefinition.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface JobDefinition {
|
||||
code: string;
|
||||
}
|
||||
@@ -27,4 +27,5 @@ export class SASjsConfig {
|
||||
*/
|
||||
debug: boolean = true;
|
||||
contextName: string = "";
|
||||
useComputeApi = false;
|
||||
}
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
import { Link } from "./Link";
|
||||
|
||||
export interface Session {
|
||||
id: string;
|
||||
state: string;
|
||||
links: Link[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user