proper sql filtering
This commit is contained in:
@@ -47,6 +47,11 @@ export type ApiResponse_ExecutionResponse = {
|
||||
* Execution result/output
|
||||
*/
|
||||
result: Record<string, any>;
|
||||
/**
|
||||
* When the execution actually started running (worker picked it up).
|
||||
* Null if the execution hasn't started running yet.
|
||||
*/
|
||||
started_at?: string | null;
|
||||
/**
|
||||
* Execution status
|
||||
*/
|
||||
|
||||
@@ -43,6 +43,11 @@ export type ExecutionResponse = {
|
||||
* Execution result/output
|
||||
*/
|
||||
result: Record<string, any>;
|
||||
/**
|
||||
* When the execution actually started running (worker picked it up).
|
||||
* Null if the execution hasn't started running yet.
|
||||
*/
|
||||
started_at?: string | null;
|
||||
/**
|
||||
* Execution status
|
||||
*/
|
||||
|
||||
@@ -35,6 +35,11 @@ export type ExecutionSummary = {
|
||||
* Execution status
|
||||
*/
|
||||
status: ExecutionStatus;
|
||||
/**
|
||||
* When the execution actually started running (worker picked it up).
|
||||
* Null if the execution hasn't started running yet.
|
||||
*/
|
||||
started_at?: string | null;
|
||||
/**
|
||||
* Trigger reference (if triggered by a trigger)
|
||||
*/
|
||||
|
||||
@@ -40,6 +40,11 @@ export type PaginatedResponse_ExecutionSummary = {
|
||||
* Execution status
|
||||
*/
|
||||
status: ExecutionStatus;
|
||||
/**
|
||||
* When the execution actually started running (worker picked it up).
|
||||
* Null if the execution hasn't started running yet.
|
||||
*/
|
||||
started_at?: string | null;
|
||||
/**
|
||||
* Trigger reference (if triggered by a trigger)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user