@prefecthq/prefect-ui-library 2.6.26 → 2.6.28
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.
- package/dist/{FlowRunsPageWithDefaultFilter-cOMMl7U9.mjs → FlowRunsPageWithDefaultFilter-S7Osg2C_.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-cOMMl7U9.mjs.map → FlowRunsPageWithDefaultFilter-S7Osg2C_.mjs.map} +1 -1
- package/dist/{index-_zTDfBrF.mjs → index-63jImFQE.mjs} +9 -5
- package/dist/{index-_zTDfBrF.mjs.map → index-63jImFQE.mjs.map} +1 -1
- package/dist/prefect-ui-library.mjs +56 -55
- package/dist/prefect-ui-library.umd.js +35 -35
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/types/src/models/FlowRun.d.ts +2 -0
- package/dist/types/src/models/api/FlowRunResponse.d.ts +1 -0
- package/dist/types/src/schemas/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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 & {
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import SchemaForm from '../schemas/components/SchemaForm.vue';
|
|
2
2
|
import SchemaInput from '../schemas/components/SchemaInput.vue';
|
|
3
|
+
import { useSchemaValidation } from '../schemas/compositions/useSchemaValidation';
|
|
3
4
|
import { mapper } from '../schemas/mapper';
|
|
4
5
|
import { Schema } from '../schemas/types/schema';
|
|
5
6
|
import { SchemaResponse } from '../schemas/types/schemaResponse';
|
|
6
7
|
import { SchemaValues } from '../schemas/types/schemaValues';
|
|
7
|
-
export { SchemaForm as SchemaFormV2, SchemaInput as SchemaInputV2, mapper as schemaV2Mapper };
|
|
8
|
+
export { SchemaForm as SchemaFormV2, SchemaInput as SchemaInputV2, mapper as schemaV2Mapper, useSchemaValidation as useSchemaValidationV2 };
|
|
8
9
|
export type { Schema as SchemaV2, SchemaResponse as SchemaResponseV2, SchemaValues as SchemaValuesV2 };
|