@prefecthq/prefect-ui-library 2.6.42 → 2.6.43
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-XCHNi9cl.mjs → FlowRunsPageWithDefaultFilter-uYjgqTdx.mjs} +2 -2
- package/dist/{FlowRunsPageWithDefaultFilter-XCHNi9cl.mjs.map → FlowRunsPageWithDefaultFilter-uYjgqTdx.mjs.map} +1 -1
- package/dist/{index-kyOAJbDU.mjs → index-NSK4bd9J.mjs} +27 -14
- package/dist/index-NSK4bd9J.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +1 -1
- package/dist/prefect-ui-library.umd.js +1 -1
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/types/src/components/SchemaForm.vue.d.ts +6 -0
- package/dist/types/src/components/SchemaInput.vue.d.ts +6 -0
- package/dist/types/src/models/DeploymentFlowRunCreate.d.ts +3 -0
- package/dist/types/src/models/DeploymentUpdate.d.ts +3 -0
- package/dist/types/src/services/WorkspaceDeploymentsApi.d.ts +6 -0
- package/package.json +6 -6
- package/dist/index-kyOAJbDU.mjs.map +0 -1
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { Schema, SchemaValues } from '../types/schemas';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Use SchemaFormV2.vue
|
|
5
|
+
*/
|
|
3
6
|
modelValue?: SchemaValues | undefined;
|
|
4
7
|
schema: Schema;
|
|
5
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
9
|
"update:modelValue": (value: SchemaValues) => void;
|
|
7
10
|
submit: (value: SchemaValues) => void;
|
|
8
11
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated Use SchemaFormV2.vue
|
|
14
|
+
*/
|
|
9
15
|
modelValue?: SchemaValues | undefined;
|
|
10
16
|
schema: Schema;
|
|
11
17
|
}>>> & {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { SchemaValues, Schema } from '../types/schemas';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Use SchemaFormInputV2.vue
|
|
5
|
+
*/
|
|
3
6
|
modelValue: SchemaValues | null | undefined;
|
|
4
7
|
schema: Schema;
|
|
5
8
|
inputType?: "json" | "form" | null | undefined;
|
|
@@ -8,6 +11,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
8
11
|
"update:modelValue": (value: SchemaValues | null | undefined) => void;
|
|
9
12
|
"update:inputType": (value: "json" | "form" | null) => void;
|
|
10
13
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated Use SchemaFormInputV2.vue
|
|
16
|
+
*/
|
|
11
17
|
modelValue: SchemaValues | null | undefined;
|
|
12
18
|
schema: Schema;
|
|
13
19
|
inputType?: "json" | "form" | null | undefined;
|
|
@@ -22,6 +22,9 @@ type WithParameters = Base & {
|
|
|
22
22
|
schema: Schema;
|
|
23
23
|
parameters: SchemaValues;
|
|
24
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated Use DeploymentFlowRunCreateV2
|
|
27
|
+
*/
|
|
25
28
|
export type DeploymentFlowRunCreate = WithoutParameters | WithParameters;
|
|
26
29
|
type WithParametersV2 = Base & {
|
|
27
30
|
parameters: SchemaValuesV2;
|
|
@@ -28,6 +28,9 @@ type WithParametersEdit = BaseEdit & {
|
|
|
28
28
|
schema: Schema;
|
|
29
29
|
parameters: SchemaValues;
|
|
30
30
|
};
|
|
31
|
+
/**
|
|
32
|
+
* @deprecated Use DeploymentUpdateV2
|
|
33
|
+
*/
|
|
31
34
|
export type DeploymentUpdate = WithoutParameters | WithParameters;
|
|
32
35
|
export type DeploymentEdit = WithoutParametersEdit | WithParametersEdit;
|
|
33
36
|
type WithParametersV2 = Base & {
|
|
@@ -11,8 +11,14 @@ export declare class WorkspaceDeploymentsApi extends WorkspaceApi {
|
|
|
11
11
|
protected getSingleDeployment(deploymentId: string): Promise<Deployment>;
|
|
12
12
|
getDeployments(filter?: DeploymentsFilter): Promise<Deployment[]>;
|
|
13
13
|
getDeploymentsCount(filter?: DeploymentsFilter): Promise<number>;
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated Use createDeploymentFlowRunV2
|
|
16
|
+
*/
|
|
14
17
|
createDeploymentFlowRun(deploymentId: string, request: DeploymentFlowRunCreate): Promise<FlowRun>;
|
|
15
18
|
createDeploymentFlowRunV2(deploymentId: string, request: DeploymentFlowRunCreateV2): Promise<FlowRun>;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Use updateDeploymentV2
|
|
21
|
+
*/
|
|
16
22
|
updateDeployment(deploymentId: string, request: DeploymentUpdate): Promise<void>;
|
|
17
23
|
updateDeploymentV2(deploymentId: string, request: DeploymentUpdateV2): Promise<void>;
|
|
18
24
|
pauseDeployment(id: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prefecthq/prefect-ui-library",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.43",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@types/lodash.debounce": "4.0.9",
|
|
45
45
|
"@types/lodash.isequal": "^4.5.8",
|
|
46
46
|
"@types/lodash.merge": "4.6.9",
|
|
47
|
-
"@types/node": "^20.11.
|
|
47
|
+
"@types/node": "^20.11.29",
|
|
48
48
|
"@types/prismjs": "^1.26.3",
|
|
49
49
|
"@vitejs/plugin-vue": "5.0.4",
|
|
50
50
|
"auto-changelog": "^2.4.0",
|
|
@@ -52,17 +52,17 @@
|
|
|
52
52
|
"eslint": "8.57.0",
|
|
53
53
|
"lodash.camelcase": "4.3.0",
|
|
54
54
|
"lodash.debounce": "4.0.8",
|
|
55
|
-
"postcss": "8.4.
|
|
55
|
+
"postcss": "8.4.36",
|
|
56
56
|
"tailwindcss": "3.4.1",
|
|
57
57
|
"tsc-alias": "1.8.8",
|
|
58
58
|
"typescript": "5.4.2",
|
|
59
59
|
"vite": "5.1.6",
|
|
60
60
|
"vite-svg-loader": "^5.1.0",
|
|
61
|
-
"vitest": "^1.
|
|
61
|
+
"vitest": "^1.4.0",
|
|
62
62
|
"vue-tsc": "2.0.6"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@prefecthq/prefect-design": "^2.
|
|
65
|
+
"@prefecthq/prefect-design": "^2.6.2",
|
|
66
66
|
"@prefecthq/vue-charts": "^2.0.3",
|
|
67
67
|
"@prefecthq/vue-compositions": "^1.10.0",
|
|
68
68
|
"vee-validate": "^4.7.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@prefecthq/graphs": "2.2.14",
|
|
74
74
|
"axios": "1.6.7",
|
|
75
75
|
"cronstrue": "^2.48.0",
|
|
76
|
-
"d3": "7.
|
|
76
|
+
"d3": "7.9.0",
|
|
77
77
|
"date-fns": "2.30.0",
|
|
78
78
|
"date-fns-tz": "1.3.7",
|
|
79
79
|
"lodash.isequal": "4.5.0",
|