@prefecthq/prefect-ui-library 3.7.0 → 3.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -193,6 +193,7 @@ export type LogsFilter = {
193
193
  timestampAfter?: Date;
194
194
  flowRunId?: string[];
195
195
  taskRunId?: string[];
196
+ taskRunIdNull?: boolean;
196
197
  };
197
198
  sort?: LogSortValues;
198
199
  offset?: number;
@@ -208,7 +208,7 @@ export type LogsFilterRequest = {
208
208
  level?: GreaterThan & LessThan;
209
209
  timestamp?: Before & After;
210
210
  flow_run_id?: Any;
211
- task_run_id?: Any;
211
+ task_run_id?: Any & IsNull;
212
212
  };
213
213
  sort?: LogSortValues;
214
214
  offset?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prefecthq/prefect-ui-library",
3
- "version": "3.7.0",
3
+ "version": "3.7.1",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -474,7 +474,10 @@ export const mapLogsFilter: MapFunction<LogsFilter, LogsFilterRequest> = functio
474
474
  ...toAfter(source.logs?.timestampAfter),
475
475
  },
476
476
  flow_run_id: toAny(source.logs?.flowRunId),
477
- task_run_id: toAny(source.logs?.taskRunId),
477
+ task_run_id: {
478
+ ...toAny(source.logs?.taskRunId),
479
+ ...toIsNull(source.logs?.taskRunIdNull),
480
+ },
478
481
  },
479
482
  sort: source.sort,
480
483
  offset: source.offset,
@@ -222,6 +222,7 @@ export type LogsFilter = {
222
222
  timestampAfter?: Date,
223
223
  flowRunId?: string[],
224
224
  taskRunId?: string[],
225
+ taskRunIdNull?: boolean,
225
226
  },
226
227
  sort?: LogSortValues,
227
228
  offset?: number,
@@ -207,7 +207,7 @@ export type LogsFilterRequest = {
207
207
  level?: GreaterThan & LessThan,
208
208
  timestamp?: Before & After,
209
209
  flow_run_id?: Any,
210
- task_run_id?: Any,
210
+ task_run_id?: Any & IsNull,
211
211
  },
212
212
  sort?: LogSortValues,
213
213
  offset?: number,