fix: Add created_at to workflow execution filtering typings (#13295)

This commit is contained in:
Stevche Radevski
2025-08-25 19:31:55 +02:00
committed by GitHub
parent 338a42f728
commit ff98055592

View File

@@ -19,4 +19,6 @@ export interface FilterableWorkflowExecutionProps
workflow_id?: string | string[] | OperatorMap<string>
transaction_id?: string | string[] | OperatorMap<string>
state?: string | string[] | OperatorMap<string>
created_at?: string | OperatorMap<string>
updated_at?: string | OperatorMap<string>
}