@prefecthq/prefect-ui-library 1.3.0 → 1.4.0
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/{index-9f20f10b.mjs → index-3ea05524.mjs} +15464 -14968
- package/dist/index-3ea05524.mjs.map +1 -0
- package/dist/prefect-ui-library.mjs +516 -505
- package/dist/prefect-ui-library.umd.js +81 -81
- package/dist/prefect-ui-library.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/src/components/PageHeadingVariables.vue.d.ts +2 -0
- package/dist/types/src/components/VariableCreateModal.vue.d.ts +23 -0
- package/dist/types/src/components/VariableEditModal.vue.d.ts +25 -0
- package/dist/types/src/components/VariableMenu.vue.d.ts +23 -0
- package/dist/types/src/components/VariablesDeleteButton.vue.d.ts +19 -0
- package/dist/types/src/components/VariablesTable.vue.d.ts +20 -0
- package/dist/types/src/components/index.d.ts +4 -0
- package/dist/types/src/compositions/filters.d.ts +2 -1
- package/dist/types/src/compositions/useWorkspaceRoutes.d.ts +7 -0
- package/dist/types/src/localization/index.d.ts +23 -0
- package/dist/types/src/localization/locale/en.d.ts +23 -0
- package/dist/types/src/maps/filters.d.ts +4 -2
- package/dist/types/src/maps/index.d.ts +112 -89
- package/dist/types/src/maps/variable.d.ts +7 -0
- package/dist/types/src/models/Filters.d.ts +15 -1
- package/dist/types/src/models/Variable.d.ts +17 -0
- package/dist/types/src/models/VariableCreate.d.ts +5 -0
- package/dist/types/src/models/VariableEdit.d.ts +5 -0
- package/dist/types/src/models/api/Filters.d.ts +12 -1
- package/dist/types/src/models/api/VariableRequest.d.ts +10 -0
- package/dist/types/src/models/api/VariableResponse.d.ts +9 -0
- package/dist/types/src/models/index.d.ts +3 -0
- package/dist/types/src/router/routes.d.ts +7 -0
- package/dist/types/src/services/Mapper.d.ts +112 -89
- package/dist/types/src/services/WorkspaceVariablesApi.d.ts +21 -0
- package/dist/types/src/services/can.d.ts +2 -2
- package/dist/types/src/services/index.d.ts +1 -0
- package/dist/types/src/types/SortOptionTypes.d.ts +9 -0
- package/dist/types/src/utilities/api.d.ts +2 -0
- package/dist/types/src/utilities/timezone.d.ts +30 -30
- package/dist/{viewport.es-20251669-1ece7d32.mjs → viewport.es-20251669-a528876a.mjs} +2 -2
- package/dist/{viewport.es-20251669-1ece7d32.mjs.map → viewport.es-20251669-a528876a.mjs.map} +1 -1
- package/package.json +5 -6
- package/dist/index-9f20f10b.mjs.map +0 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Variable } from '../models';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
variable: Variable;
|
|
4
|
+
showModal: boolean;
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
|
+
"update:showModal": (value: boolean) => void;
|
|
7
|
+
} & {
|
|
8
|
+
update: (value: Variable) => void;
|
|
9
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
variable: Variable;
|
|
11
|
+
showModal: boolean;
|
|
12
|
+
}>>> & {
|
|
13
|
+
"onUpdate:showModal"?: ((value: boolean) => any) | undefined;
|
|
14
|
+
onUpdate?: ((value: Variable) => any) | undefined;
|
|
15
|
+
}, {}>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
+
} : {
|
|
22
|
+
type: import('vue').PropType<T[K]>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Variable } from '../models';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
variable: Variable;
|
|
4
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
delete: (value: string) => void;
|
|
6
|
+
} & {
|
|
7
|
+
update: (value: Variable) => void;
|
|
8
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
variable: Variable;
|
|
10
|
+
}>>> & {
|
|
11
|
+
onDelete?: ((value: string) => any) | undefined;
|
|
12
|
+
onUpdate?: ((value: Variable) => any) | undefined;
|
|
13
|
+
}, {}>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
variableIds: string[];
|
|
3
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
|
+
delete: () => void;
|
|
5
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
variableIds: string[];
|
|
7
|
+
}>>> & {
|
|
8
|
+
onDelete?: (() => any) | undefined;
|
|
9
|
+
}, {}>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
+
} : {
|
|
16
|
+
type: import('vue').PropType<T[K]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { VariablesFilter } from '../models/Filters';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
filter?: VariablesFilter | undefined;
|
|
4
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
delete: () => void;
|
|
6
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
filter?: VariablesFilter | undefined;
|
|
8
|
+
}>>> & {
|
|
9
|
+
onDelete?: (() => any) | undefined;
|
|
10
|
+
}, {}>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
14
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
15
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
16
|
+
} : {
|
|
17
|
+
type: import('vue').PropType<T[K]>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -165,6 +165,7 @@ export { default as PageHeadingNotificationCreate } from './PageHeadingNotificat
|
|
|
165
165
|
export { default as PageHeadingNotificationEdit } from './PageHeadingNotificationEdit.vue';
|
|
166
166
|
export { default as PageHeadingNotifications } from './PageHeadingNotifications.vue';
|
|
167
167
|
export { default as PageHeadingTaskRun } from './PageHeadingTaskRun.vue';
|
|
168
|
+
export { default as PageHeadingVariables } from './PageHeadingVariables.vue';
|
|
168
169
|
export { default as PageHeadingWorkPool } from './PageHeadingWorkPool.vue';
|
|
169
170
|
export { default as PageHeadingWorkPoolCreate } from './PageHeadingWorkPoolCreate.vue';
|
|
170
171
|
export { default as PageHeadingWorkPoolEdit } from './PageHeadingWorkPoolEdit.vue';
|
|
@@ -222,6 +223,9 @@ export { default as TaskRunLogs } from './TaskRunLogs.vue';
|
|
|
222
223
|
export { default as TaskRunsSort } from './TaskRunsSort.vue';
|
|
223
224
|
export { default as TimezoneSelect } from './TimezoneSelect.vue';
|
|
224
225
|
export { default as ToastFlowRunCreate } from './ToastFlowRunCreate.vue';
|
|
226
|
+
export { default as VariableMenu } from './VariableMenu.vue';
|
|
227
|
+
export { default as VariableCreateModal } from './VariableCreateModal.vue';
|
|
228
|
+
export { default as VariableEditModal } from './VariableEditModal.vue';
|
|
225
229
|
export { default as ViewModeButtonGroup } from './ViewModeButtonGroup.vue';
|
|
226
230
|
export { default as WorkersLateIndicator } from './WorkersLateIndicator.vue';
|
|
227
231
|
export { default as WorkersTable } from './WorkersTable.vue';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComputedRef } from 'vue';
|
|
2
|
-
import { BlockDocumentFilter, BlockDocumentsFilter, BlockSchemaFilter, BlockSchemasFilter, BlockTypeFilter, BlockTypesFilter, DeploymentFilter, DeploymentsFilter, FlowFilter, FlowRunFilter, FlowRunsFilter, FlowRunsHistoryFilter, FlowsFilter, StateFilter, TagFilter, TaskRunFilter, TaskRunsFilter, WorkPoolFilter, WorkPoolQueueFilter, WorkPoolsFilter } from '../models/Filters';
|
|
2
|
+
import { BlockDocumentFilter, BlockDocumentsFilter, BlockSchemaFilter, BlockSchemasFilter, BlockTypeFilter, BlockTypesFilter, DeploymentFilter, DeploymentsFilter, FlowFilter, FlowRunFilter, FlowRunsFilter, FlowRunsHistoryFilter, FlowsFilter, StateFilter, TagFilter, TaskRunFilter, TaskRunsFilter, VariablesFilter, WorkPoolFilter, WorkPoolQueueFilter, WorkPoolsFilter } from '../models/Filters';
|
|
3
3
|
import { AnyRecord } from '../types/any';
|
|
4
4
|
import { MaybeReactive } from '../types/reactivity';
|
|
5
5
|
export type Filter<T extends AnyRecord> = {
|
|
@@ -37,6 +37,7 @@ export declare function useFlowsFilter(defaultValue?: MaybeReactive<FlowsFilter>
|
|
|
37
37
|
export declare function useFlowRunsFilter(defaultValue?: MaybeReactive<FlowRunsFilter>): UseFilter<FlowRunsFilter>;
|
|
38
38
|
export declare function useTaskRunsFilter(defaultValue?: MaybeReactive<TaskRunsFilter>): UseFilter<TaskRunsFilter>;
|
|
39
39
|
export declare function useDeploymentsFilter(defaultValue?: MaybeReactive<DeploymentsFilter>): UseFilter<DeploymentsFilter>;
|
|
40
|
+
export declare function useVariablesFilter(defaultValue?: MaybeReactive<VariablesFilter>): UseFilter<VariablesFilter>;
|
|
40
41
|
export declare function useFlowsFilterFromRoute(defaultValue?: MaybeReactive<FlowsFilter>, prefix?: string): UseFilter<FlowsFilter>;
|
|
41
42
|
export declare function useFlowRunsFilterFromRoute(defaultValue?: MaybeReactive<FlowRunsFilter>, prefix?: string): UseFilter<FlowRunsFilter>;
|
|
42
43
|
export declare function useTaskRunsFilterFromRoute(defaultValue?: MaybeReactive<TaskRunsFilter>, prefix?: string): UseFilter<TaskRunsFilter>;
|
|
@@ -232,6 +232,13 @@ export declare function useWorkspaceRoutes(): {
|
|
|
232
232
|
readonly workspaceId?: string | undefined;
|
|
233
233
|
};
|
|
234
234
|
};
|
|
235
|
+
variables: () => {
|
|
236
|
+
readonly name: "workspace.variables";
|
|
237
|
+
readonly params: {
|
|
238
|
+
readonly accountId?: string | undefined;
|
|
239
|
+
readonly workspaceId?: string | undefined;
|
|
240
|
+
};
|
|
241
|
+
};
|
|
235
242
|
workPools: () => {
|
|
236
243
|
readonly name: "workspace.work-pools";
|
|
237
244
|
readonly params: {
|
|
@@ -28,11 +28,13 @@ export declare const localization: {
|
|
|
28
28
|
createNotification: string;
|
|
29
29
|
createSavedSearch: string;
|
|
30
30
|
createSchedule: string;
|
|
31
|
+
createVariable: string;
|
|
31
32
|
createWorkPool: string;
|
|
32
33
|
createWorkPoolQueue: string;
|
|
33
34
|
createWorkQueue: string;
|
|
34
35
|
delete: (type: string) => string;
|
|
35
36
|
deleteSavedSearch: string;
|
|
37
|
+
editVariable: string;
|
|
36
38
|
pauseDeployment: string;
|
|
37
39
|
pauseFlowRun: string;
|
|
38
40
|
pauseNotification: string;
|
|
@@ -50,6 +52,7 @@ export declare const localization: {
|
|
|
50
52
|
updateWorkPool: string;
|
|
51
53
|
updateWorkPoolQueue: string;
|
|
52
54
|
updateWorkQueue: string;
|
|
55
|
+
variableAlreadyExists: string;
|
|
53
56
|
};
|
|
54
57
|
success: {
|
|
55
58
|
activateDeployment: string;
|
|
@@ -65,11 +68,13 @@ export declare const localization: {
|
|
|
65
68
|
createNotification: string;
|
|
66
69
|
createSavedSearch: string;
|
|
67
70
|
createSchedule: string;
|
|
71
|
+
createVariable: string;
|
|
68
72
|
createWorkPool: string;
|
|
69
73
|
createWorkPoolQueue: string;
|
|
70
74
|
createWorkQueue: string;
|
|
71
75
|
delete: (type: string) => string;
|
|
72
76
|
deleteSavedSearch: string;
|
|
77
|
+
editVariable: string;
|
|
73
78
|
pauseDeployment: string;
|
|
74
79
|
pauseFlowRun: string;
|
|
75
80
|
pauseNotification: string;
|
|
@@ -91,17 +96,35 @@ export declare const localization: {
|
|
|
91
96
|
artifact: string;
|
|
92
97
|
artifacts: string;
|
|
93
98
|
artifactSearch: string;
|
|
99
|
+
variablesSearch: string;
|
|
94
100
|
artifactCreated: (key: string) => string;
|
|
95
101
|
artifactTypeChanged: (type: string) => string;
|
|
102
|
+
newVariable: string;
|
|
103
|
+
editVariable: (name: string) => string;
|
|
104
|
+
close: string;
|
|
105
|
+
save: string;
|
|
106
|
+
name: string;
|
|
107
|
+
selectedVariables: string;
|
|
108
|
+
value: string;
|
|
96
109
|
latest: string;
|
|
97
110
|
item: string;
|
|
98
111
|
noData: string;
|
|
112
|
+
noVariables: string;
|
|
113
|
+
copyId: string;
|
|
114
|
+
copyName: string;
|
|
115
|
+
copyValue: string;
|
|
116
|
+
edit: string;
|
|
117
|
+
delete: string;
|
|
118
|
+
tags: string;
|
|
99
119
|
invalidData: (docsUrl: string) => string;
|
|
100
120
|
noResults: string;
|
|
101
121
|
flowRun: string;
|
|
102
122
|
taskRun: string;
|
|
103
123
|
taskRuns: string;
|
|
124
|
+
variable: string;
|
|
125
|
+
variables: string;
|
|
104
126
|
created: string;
|
|
127
|
+
create: string;
|
|
105
128
|
lastUpdated: string;
|
|
106
129
|
deprecatedWorkQueue: string;
|
|
107
130
|
deploymentMissingWorkQueue: string;
|
|
@@ -28,11 +28,13 @@ export declare const en: {
|
|
|
28
28
|
createNotification: string;
|
|
29
29
|
createSavedSearch: string;
|
|
30
30
|
createSchedule: string;
|
|
31
|
+
createVariable: string;
|
|
31
32
|
createWorkPool: string;
|
|
32
33
|
createWorkPoolQueue: string;
|
|
33
34
|
createWorkQueue: string;
|
|
34
35
|
delete: (type: string) => string;
|
|
35
36
|
deleteSavedSearch: string;
|
|
37
|
+
editVariable: string;
|
|
36
38
|
pauseDeployment: string;
|
|
37
39
|
pauseFlowRun: string;
|
|
38
40
|
pauseNotification: string;
|
|
@@ -50,6 +52,7 @@ export declare const en: {
|
|
|
50
52
|
updateWorkPool: string;
|
|
51
53
|
updateWorkPoolQueue: string;
|
|
52
54
|
updateWorkQueue: string;
|
|
55
|
+
variableAlreadyExists: string;
|
|
53
56
|
};
|
|
54
57
|
success: {
|
|
55
58
|
activateDeployment: string;
|
|
@@ -65,11 +68,13 @@ export declare const en: {
|
|
|
65
68
|
createNotification: string;
|
|
66
69
|
createSavedSearch: string;
|
|
67
70
|
createSchedule: string;
|
|
71
|
+
createVariable: string;
|
|
68
72
|
createWorkPool: string;
|
|
69
73
|
createWorkPoolQueue: string;
|
|
70
74
|
createWorkQueue: string;
|
|
71
75
|
delete: (type: string) => string;
|
|
72
76
|
deleteSavedSearch: string;
|
|
77
|
+
editVariable: string;
|
|
73
78
|
pauseDeployment: string;
|
|
74
79
|
pauseFlowRun: string;
|
|
75
80
|
pauseNotification: string;
|
|
@@ -91,17 +96,35 @@ export declare const en: {
|
|
|
91
96
|
artifact: string;
|
|
92
97
|
artifacts: string;
|
|
93
98
|
artifactSearch: string;
|
|
99
|
+
variablesSearch: string;
|
|
94
100
|
artifactCreated: (key: string) => string;
|
|
95
101
|
artifactTypeChanged: (type: string) => string;
|
|
102
|
+
newVariable: string;
|
|
103
|
+
editVariable: (name: string) => string;
|
|
104
|
+
close: string;
|
|
105
|
+
save: string;
|
|
106
|
+
name: string;
|
|
107
|
+
selectedVariables: string;
|
|
108
|
+
value: string;
|
|
96
109
|
latest: string;
|
|
97
110
|
item: string;
|
|
98
111
|
noData: string;
|
|
112
|
+
noVariables: string;
|
|
113
|
+
copyId: string;
|
|
114
|
+
copyName: string;
|
|
115
|
+
copyValue: string;
|
|
116
|
+
edit: string;
|
|
117
|
+
delete: string;
|
|
118
|
+
tags: string;
|
|
99
119
|
invalidData: (docsUrl: string) => string;
|
|
100
120
|
noResults: string;
|
|
101
121
|
flowRun: string;
|
|
102
122
|
taskRun: string;
|
|
103
123
|
taskRuns: string;
|
|
124
|
+
variable: string;
|
|
125
|
+
variables: string;
|
|
104
126
|
created: string;
|
|
127
|
+
create: string;
|
|
105
128
|
lastUpdated: string;
|
|
106
129
|
deprecatedWorkQueue: string;
|
|
107
130
|
deploymentMissingWorkQueue: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { TagFilterRequest, FlowFilterRequest, FlowRunFilterRequest, StateFilterRequest, TaskRunFilterRequest, DeploymentFilterRequest, FlowsFilterRequest, FlowRunsFilterRequest, TaskRunsFilterRequest, DeploymentsFilterRequest, BlockTypeFilterRequest, BlockSchemaFilterRequest, BlockDocumentFilterRequest, NotificationsFilterRequest, SavedSearchesFilterRequest, LogsFilterRequest, ConcurrencyLimitsFilterRequest, BlockTypesFilterRequest, BlockSchemasFilterRequest, BlockDocumentsFilterRequest, WorkQueuesFilterRequest, WorkPoolFilterRequest, WorkPoolsFilterRequest, WorkPoolQueueFilterRequest, FlowRunsHistoryFilterRequest, WorkPoolWorkersFilterRequest, WorkPoolQueuesFilterRequest, ArtifactsFilterRequest, ArtifactFilterRequest } from '../models/api/Filters';
|
|
2
|
-
import { FlowFilter, FlowRunFilter, StateFilter, TagFilter, TaskRunFilter, DeploymentFilter, FlowsFilter, FlowRunsFilter, TaskRunsFilter, DeploymentsFilter, BlockTypeFilter, BlockSchemaFilter, BlockDocumentFilter, NotificationsFilter, SavedSearchesFilter, LogsFilter, ConcurrencyLimitsFilter, BlockTypesFilter, BlockSchemasFilter, BlockDocumentsFilter, WorkQueuesFilter, WorkPoolFilter, WorkPoolsFilter, WorkPoolQueueFilter, FlowRunsHistoryFilter, WorkPoolWorkersFilter, WorkPoolQueuesFilter, ArtifactsFilter, ArtifactFilter } from '../models/Filters';
|
|
1
|
+
import { TagFilterRequest, FlowFilterRequest, FlowRunFilterRequest, StateFilterRequest, TaskRunFilterRequest, DeploymentFilterRequest, FlowsFilterRequest, FlowRunsFilterRequest, TaskRunsFilterRequest, DeploymentsFilterRequest, BlockTypeFilterRequest, BlockSchemaFilterRequest, BlockDocumentFilterRequest, NotificationsFilterRequest, SavedSearchesFilterRequest, LogsFilterRequest, ConcurrencyLimitsFilterRequest, BlockTypesFilterRequest, BlockSchemasFilterRequest, BlockDocumentsFilterRequest, WorkQueuesFilterRequest, WorkPoolFilterRequest, WorkPoolsFilterRequest, WorkPoolQueueFilterRequest, FlowRunsHistoryFilterRequest, WorkPoolWorkersFilterRequest, WorkPoolQueuesFilterRequest, ArtifactsFilterRequest, ArtifactFilterRequest, VariablesFilterRequest, VariableFilterRequest } from '../models/api/Filters';
|
|
2
|
+
import { FlowFilter, FlowRunFilter, StateFilter, TagFilter, TaskRunFilter, DeploymentFilter, FlowsFilter, FlowRunsFilter, TaskRunsFilter, DeploymentsFilter, BlockTypeFilter, BlockSchemaFilter, BlockDocumentFilter, NotificationsFilter, SavedSearchesFilter, LogsFilter, ConcurrencyLimitsFilter, BlockTypesFilter, BlockSchemasFilter, BlockDocumentsFilter, WorkQueuesFilter, WorkPoolFilter, WorkPoolsFilter, WorkPoolQueueFilter, FlowRunsHistoryFilter, WorkPoolWorkersFilter, WorkPoolQueuesFilter, ArtifactsFilter, ArtifactFilter, VariablesFilter, VariableFilter } from '../models/Filters';
|
|
3
3
|
import { MapFunction } from '../services';
|
|
4
4
|
export declare const mapTagFilter: MapFunction<TagFilter, TagFilterRequest>;
|
|
5
5
|
export declare const mapStateFilter: MapFunction<StateFilter, StateFilterRequest>;
|
|
@@ -11,6 +11,8 @@ export declare const mapWorkPoolFilter: MapFunction<WorkPoolFilter, WorkPoolFilt
|
|
|
11
11
|
export declare const mapWorkPoolQueueFilter: MapFunction<WorkPoolQueueFilter, WorkPoolQueueFilterRequest>;
|
|
12
12
|
export declare const mapArtifactFilter: MapFunction<ArtifactFilter, ArtifactFilterRequest>;
|
|
13
13
|
export declare const mapArtifactsFilter: MapFunction<ArtifactsFilter, ArtifactsFilterRequest>;
|
|
14
|
+
export declare const mapVariableFilter: MapFunction<VariableFilter, VariableFilterRequest>;
|
|
15
|
+
export declare const mapVariablesFilter: MapFunction<VariablesFilter, VariablesFilterRequest>;
|
|
14
16
|
export declare const mapFlowsFilter: MapFunction<FlowsFilter, FlowsFilterRequest>;
|
|
15
17
|
export declare const mapFlowRunsFilter: MapFunction<FlowRunsFilter, FlowRunsFilterRequest>;
|
|
16
18
|
export declare const mapFlowRunsHistoryFilter: MapFunction<FlowRunsHistoryFilter, FlowRunsHistoryFilterRequest>;
|