@prefecthq/prefect-ui-library 2.6.26 → 2.6.27

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.
@@ -37,6 +37,7 @@ export interface IFlowRun {
37
37
  workQueueName: string | null;
38
38
  workPoolName: string | null;
39
39
  workPoolQueueName: string | null;
40
+ jobVariables: Record<string, unknown>;
40
41
  }
41
42
  export declare class FlowRun extends StorageItem implements IFlowRun {
42
43
  readonly id: string;
@@ -70,6 +71,7 @@ export declare class FlowRun extends StorageItem implements IFlowRun {
70
71
  updated: Date;
71
72
  workPoolName: string | null;
72
73
  workPoolQueueName: string | null;
74
+ jobVariables: Record<string, unknown>;
73
75
  constructor(flowRun: IFlowRun);
74
76
  get duration(): number;
75
77
  isScheduled(): this is FlowRun & {
@@ -37,4 +37,5 @@ export type FlowRunResponse = {
37
37
  work_queue_name: string | null;
38
38
  work_pool_name: string | null;
39
39
  work_pool_queue_name: string | null;
40
+ job_variables?: Record<string, unknown> | null;
40
41
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prefecthq/prefect-ui-library",
3
- "version": "2.6.26",
3
+ "version": "2.6.27",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",