@@ -4769,6 +4769,12 @@ export type components = {
47694769 /** The line number of the step code that raised the exception. */
47704770 step_code_line?: number | null;
47714771 };
4772+ /**
4773+ * ExecutionMode
4774+ * @description Enum that represents the execution mode of a pipeline run.
4775+ * @enum {string}
4776+ */
4777+ ExecutionMode: "fail_fast" | "stop_on_failure" | "continue_on_failure";
47724778 /**
47734779 * ExecutionStatus
47744780 * @description Enum that represents the execution status of a step or pipeline run.
@@ -6445,6 +6451,8 @@ export type components = {
64456451 enable_step_logs?: boolean | null;
64466452 /** Enable Pipeline Logs */
64476453 enable_pipeline_logs?: boolean | null;
6454+ /** @default continue_on_failure */
6455+ execution_mode?: components["schemas"]["ExecutionMode"];
64486456 /**
64496457 * Settings
64506458 * @default {}
@@ -6495,6 +6503,8 @@ export type components = {
64956503 enable_step_logs?: boolean | null;
64966504 /** Enable Pipeline Logs */
64976505 enable_pipeline_logs?: boolean | null;
6506+ /** @default continue_on_failure */
6507+ execution_mode?: components["schemas"]["ExecutionMode"];
64986508 /**
64996509 * Settings
65006510 * @default {}
@@ -6892,6 +6902,8 @@ export type components = {
68926902 project_id: string;
68936903 /** The status of the pipeline run. */
68946904 status: components["schemas"]["ExecutionStatus"];
6905+ /** Whether the pipeline run is in progress. */
6906+ in_progress: boolean;
68956907 /** The reason for the status of the pipeline run. */
68966908 status_reason?: string | null;
68976909 /** The stack that was used for this run. */
@@ -13900,6 +13912,7 @@ export type operations = {
1390013912 template_id?: string | null;
1390113913 model_version_id?: string | null;
1390213914 status?: string | null;
13915+ in_progress?: boolean | null;
1390313916 start_time?: string | null;
1390413917 end_time?: string | null;
1390513918 unlisted?: boolean | null;
@@ -14453,6 +14466,7 @@ export type operations = {
1445314466 template_id?: string | null;
1445414467 model_version_id?: string | null;
1445514468 status?: string | null;
14469+ in_progress?: boolean | null;
1445614470 start_time?: string | null;
1445714471 end_time?: string | null;
1445814472 unlisted?: boolean | null;
@@ -21405,6 +21419,7 @@ export type operations = {
2140521419 template_id?: string | null;
2140621420 model_version_id?: string | null;
2140721421 status?: string | null;
21422+ in_progress?: boolean | null;
2140821423 start_time?: string | null;
2140921424 end_time?: string | null;
2141021425 unlisted?: boolean | null;
0 commit comments