shoehorning graphql, step functions and lamdas. aws deployment scripts
This commit is contained in:
@@ -66,6 +66,7 @@ export interface TranscodeJob {
|
||||
speed: string | null;
|
||||
error_message: string | null;
|
||||
celery_task_id: string | null;
|
||||
execution_arn: string | null;
|
||||
priority: number;
|
||||
created_at: string | null;
|
||||
started_at: string | null;
|
||||
@@ -80,6 +81,7 @@ export interface CreateJobRequest {
|
||||
trim_start: number | null;
|
||||
trim_end: number | null;
|
||||
output_filename: string | null;
|
||||
priority: number;
|
||||
}
|
||||
|
||||
export interface SystemStatus {
|
||||
@@ -87,6 +89,13 @@ export interface SystemStatus {
|
||||
version: string;
|
||||
}
|
||||
|
||||
export interface ScanResult {
|
||||
found: number;
|
||||
registered: number;
|
||||
skipped: number;
|
||||
files: string[];
|
||||
}
|
||||
|
||||
export interface WorkerStatus {
|
||||
available: boolean;
|
||||
active_jobs: number;
|
||||
|
||||
Reference in New Issue
Block a user