diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 44f5457df6bf..2f41a56da3b0 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -6852,10 +6852,11 @@ export interface components { tool_version?: string | null; /** * Type - * @description The type of workflow module. - * @default data_collection_input + * @constant */ - type?: components["schemas"]["WorkflowModuleType"]; + type: "data_collection_input"; + /** When */ + when: string | null; }; /** InputDataStep */ InputDataStep: { @@ -6893,10 +6894,11 @@ export interface components { tool_version?: string | null; /** * Type - * @description The type of workflow module. - * @default data_input + * @constant */ - type?: components["schemas"]["WorkflowModuleType"]; + type: "data_input"; + /** When */ + when: string | null; }; /** InputParameterStep */ InputParameterStep: { @@ -6934,10 +6936,11 @@ export interface components { tool_version?: string | null; /** * Type - * @description The type of workflow module. - * @default parameter_input + * @constant */ - type?: components["schemas"]["WorkflowModuleType"]; + type: "parameter"; + /** When */ + when: string | null; }; /** InputReferenceByLabel */ InputReferenceByLabel: { @@ -9703,12 +9706,28 @@ export interface components { input_steps: { [key: string]: components["schemas"]["InputStep"] | undefined; }; + /** + * Tool ID + * @description The unique name of the tool associated with this step. + */ + tool_id?: string | null; + /** + * Tool Inputs + * @description TODO + */ + tool_inputs?: Record; + /** + * Tool Version + * @description The version of the tool associated with this step. + */ + tool_version?: string | null; /** * Type - * @description The type of workflow module. - * @default pause + * @constant */ - type?: components["schemas"]["WorkflowModuleType"]; + type: "pause"; + /** When */ + when: string | null; }; /** Person */ Person: { @@ -11109,12 +11128,28 @@ export interface components { input_steps: { [key: string]: components["schemas"]["InputStep"] | undefined; }; + /** + * Tool ID + * @description The unique name of the tool associated with this step. + */ + tool_id?: string | null; + /** + * Tool Inputs + * @description TODO + */ + tool_inputs?: Record; + /** + * Tool Version + * @description The version of the tool associated with this step. + */ + tool_version?: string | null; /** * Type - * @description The type of workflow module. - * @default subworkflow + * @constant */ - type?: components["schemas"]["WorkflowModuleType"]; + type: "subworkflow"; + /** When */ + when: string | null; /** * Workflow ID * @description The encoded ID of the workflow that will be run on this step. @@ -11301,10 +11336,11 @@ export interface components { tool_version?: string | null; /** * Type - * @description The type of workflow module. - * @default tool + * @constant */ - type?: components["schemas"]["WorkflowModuleType"]; + type: "tool"; + /** When */ + when: string | null; }; /** Tour */ Tour: { @@ -12303,18 +12339,6 @@ export interface components { [key: string]: number | undefined; }; }; - /** - * WorkflowModuleType - * @description Available types of modules that represent a step in a Workflow. - * @enum {string} - */ - WorkflowModuleType: - | "data_input" - | "data_collection_input" - | "parameter_input" - | "subworkflow" - | "tool" - | "pause"; /** WriteInvocationStoreToPayload */ WriteInvocationStoreToPayload: { /** diff --git a/client/src/components/Grid/GridHistory.vue b/client/src/components/Grid/GridHistory.vue index a54e2437d3be..76229f380ea8 100644 --- a/client/src/components/Grid/GridHistory.vue +++ b/client/src/components/Grid/GridHistory.vue @@ -24,6 +24,7 @@ interface Props { const props = withDefaults(defineProps(), { activeList: "my", + username: undefined, }); @@ -65,8 +66,16 @@ const props = withDefaults(defineProps(), { Public Histories - + Archived Histories + diff --git a/client/src/components/Grid/GridList.vue b/client/src/components/Grid/GridList.vue index da08de2739c5..39cc6985aeec 100644 --- a/client/src/components/Grid/GridList.vue +++ b/client/src/components/Grid/GridList.vue @@ -363,7 +363,7 @@ watch(operationMessage, () => {