ugcinc 4.1.98 → 4.1.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -402,7 +402,7 @@ export interface AutomationRun {
|
|
|
402
402
|
template_id: string;
|
|
403
403
|
org_id: string;
|
|
404
404
|
tag: string | null;
|
|
405
|
-
status: 'pending' | 'running' | 'completed' | 'failed';
|
|
405
|
+
status: 'pending' | 'running' | 'completed' | 'failed' | 'stopped';
|
|
406
406
|
variable_inputs: Record<string, string> | null;
|
|
407
407
|
save_as_preview: boolean | null;
|
|
408
408
|
create_post: boolean | null;
|
|
@@ -420,7 +420,7 @@ export interface ExecutorNode {
|
|
|
420
420
|
template_node_id: string;
|
|
421
421
|
executor_index: number;
|
|
422
422
|
type: NodeType;
|
|
423
|
-
status: 'pending' | 'running' | 'completed' | 'failed';
|
|
423
|
+
status: 'pending' | 'running' | 'completed' | 'failed' | 'skipped' | 'stopped';
|
|
424
424
|
output_value: unknown | null;
|
|
425
425
|
error_message: string | null;
|
|
426
426
|
created_at: string;
|