@@ -600,18 +600,6 @@ export const UseImportErrorServiceGetImportErrorsKeyFn = (
600
600
useImportErrorServiceGetImportErrorsKey ,
601
601
...( queryKey ?? [ { limit, offset, orderBy } ] ) ,
602
602
] ;
603
- export type MonitorServiceGetHealthDefaultResponse = Awaited <
604
- ReturnType < typeof MonitorService . getHealth >
605
- > ;
606
- export type MonitorServiceGetHealthQueryResult <
607
- TData = MonitorServiceGetHealthDefaultResponse ,
608
- TError = unknown ,
609
- > = UseQueryResult < TData , TError > ;
610
- export const useMonitorServiceGetHealthKey = "MonitorServiceGetHealth" ;
611
- export const UseMonitorServiceGetHealthKeyFn = ( queryKey ?: Array < unknown > ) => [
612
- useMonitorServiceGetHealthKey ,
613
- ...( queryKey ?? [ ] ) ,
614
- ] ;
615
603
export type PluginServiceGetPluginsDefaultResponse = Awaited <
616
604
ReturnType < typeof PluginService . getPlugins >
617
605
> ;
@@ -1000,18 +988,6 @@ export const UseVariableServiceGetVariablesKeyFn = (
1000
988
useVariableServiceGetVariablesKey ,
1001
989
...( queryKey ?? [ { limit, offset, orderBy } ] ) ,
1002
990
] ;
1003
- export type VersionServiceGetVersionDefaultResponse = Awaited <
1004
- ReturnType < typeof VersionService . getVersion >
1005
- > ;
1006
- export type VersionServiceGetVersionQueryResult <
1007
- TData = VersionServiceGetVersionDefaultResponse ,
1008
- TError = unknown ,
1009
- > = UseQueryResult < TData , TError > ;
1010
- export const useVersionServiceGetVersionKey = "VersionServiceGetVersion" ;
1011
- export const UseVersionServiceGetVersionKeyFn = ( queryKey ?: Array < unknown > ) => [
1012
- useVersionServiceGetVersionKey ,
1013
- ...( queryKey ?? [ ] ) ,
1014
- ] ;
1015
991
export type XcomServiceGetXcomEntryDefaultResponse = Awaited <
1016
992
ReturnType < typeof XcomService . getXcomEntry >
1017
993
> ;
@@ -1045,6 +1021,30 @@ export const UseXcomServiceGetXcomEntryKeyFn = (
1045
1021
{ dagId, dagRunId, deserialize, mapIndex, stringify, taskId, xcomKey } ,
1046
1022
] ) ,
1047
1023
] ;
1024
+ export type MonitorServiceGetHealthDefaultResponse = Awaited <
1025
+ ReturnType < typeof MonitorService . getHealth >
1026
+ > ;
1027
+ export type MonitorServiceGetHealthQueryResult <
1028
+ TData = MonitorServiceGetHealthDefaultResponse ,
1029
+ TError = unknown ,
1030
+ > = UseQueryResult < TData , TError > ;
1031
+ export const useMonitorServiceGetHealthKey = "MonitorServiceGetHealth" ;
1032
+ export const UseMonitorServiceGetHealthKeyFn = ( queryKey ?: Array < unknown > ) => [
1033
+ useMonitorServiceGetHealthKey ,
1034
+ ...( queryKey ?? [ ] ) ,
1035
+ ] ;
1036
+ export type VersionServiceGetVersionDefaultResponse = Awaited <
1037
+ ReturnType < typeof VersionService . getVersion >
1038
+ > ;
1039
+ export type VersionServiceGetVersionQueryResult <
1040
+ TData = VersionServiceGetVersionDefaultResponse ,
1041
+ TError = unknown ,
1042
+ > = UseQueryResult < TData , TError > ;
1043
+ export const useVersionServiceGetVersionKey = "VersionServiceGetVersion" ;
1044
+ export const UseVersionServiceGetVersionKeyFn = ( queryKey ?: Array < unknown > ) => [
1045
+ useVersionServiceGetVersionKey ,
1046
+ ...( queryKey ?? [ ] ) ,
1047
+ ] ;
1048
1048
export type BackfillServiceCreateBackfillMutationResult = Awaited <
1049
1049
ReturnType < typeof BackfillService . createBackfill >
1050
1050
> ;
0 commit comments