@@ -143,6 +143,7 @@ export type MutationSchedulerUpdateInput = {
143143 apiUrl ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
144144 lengthMinutes ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
145145 policy ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
146+ timeout ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
146147} ;
147148
148149export type PageInfo = {
@@ -315,6 +316,7 @@ export type QueryScheduleScheduler = {
315316 lengthMinutes : Scalars [ 'Int' ] [ 'output' ] ;
316317 policy : Scalars [ 'String' ] [ 'output' ] ;
317318 preview : ScheduleSchedulerPreviewItem ;
319+ timeout : Scalars [ 'Float' ] [ 'output' ] ;
318320} ;
319321
320322export type RunNode = {
@@ -663,6 +665,11 @@ export type CtrlTraceIdsQueryVariables = Exact<{ [key: string]: never; }>;
663665
664666export type CtrlTraceIdsQuery = { __typename ?: 'Query' , ctrl : { __typename ?: 'QueryCtrl' , traceIds : Array < number > } } ;
665667
668+ export type DevHeadersQueryVariables = Exact < { [ key : string ] : never ; } > ;
669+
670+
671+ export type DevHeadersQuery = { __typename ?: 'Query' , dev : { __typename ?: 'QueryDev' , headers : string } } ;
672+
666673export type RdbRunQueryVariables = Exact < {
667674 runNo : Scalars [ 'Int' ] [ 'input' ] ;
668675} > ;
@@ -1050,6 +1057,17 @@ export const CtrlTraceIdsDocument = gql`
10501057export function useCtrlTraceIdsQuery ( options : Omit < Urql . UseQueryArgs < never , CtrlTraceIdsQueryVariables > , 'query' > ) {
10511058 return Urql . useQuery < CtrlTraceIdsQuery , CtrlTraceIdsQueryVariables > ( { query : CtrlTraceIdsDocument , ...options } ) ;
10521059} ;
1060+ export const DevHeadersDocument = gql `
1061+ query DevHeaders {
1062+ dev {
1063+ headers
1064+ }
1065+ }
1066+ ` ;
1067+
1068+ export function useDevHeadersQuery ( options : Omit < Urql . UseQueryArgs < never , DevHeadersQueryVariables > , 'query' > ) {
1069+ return Urql . useQuery < DevHeadersQuery , DevHeadersQueryVariables > ( { query : DevHeadersDocument , ...options } ) ;
1070+ } ;
10531071export const RdbRunDocument = gql `
10541072 query RdbRun($runNo: Int!) {
10551073 rdb {
0 commit comments