Skip to content
Snippets Groups Projects

Resolve "Add rudimentary usage statistics"

Merged Daniel Göbel requested to merge feature/80-add-rudimentary-usage-statistics into development
18 files
+ 448
201
Compare changes
  • Side-by-side
  • Inline
Files
18
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { WorkflowExecutionStatus } from './WorkflowExecutionStatus';
export type AnonymizedWorkflowExecution = {
/**
* ID of the workflow execution
*/
workflow_execution_id: string;
/**
* Anonymized user ID of the user who ran the workflow execution
*/
pseudo_uid: string;
/**
* ID of the workflow mode this workflow execution ran in
*/
workflow_mode_id?: (string | null);
/**
* Hash of the git commit
*/
git_commit_hash: string;
/**
* Day of the workflow execution
*/
started_at: string;
/**
* ID of the workflow
*/
workflow_id: string;
/**
* ID of developer of the workflow
*/
developer_id: string;
/**
* End status of the workflow execution
*/
status: WorkflowExecutionStatus;
};
Loading