File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ const zodOutputSchema = z.object({
2222 data : z . array (
2323 z . record ( z . unknown ( ) )
2424 ) . describe ( 'The data returned from the query.' ) ,
25- } ) . strict ( )
25+ } )
2626
27- export const outputSchema = zodToJsonSchema ( zodOutputSchema )
27+ export const outputSchema = zodToJsonSchema ( zodOutputSchema )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const zodOutputSchema = z.object({
2626 last_success_run_at : z . string ( ) . nullish ( ) . describe ( 'The date and time of the last successful run of the source. ISO 8601 format.' ) ,
2727 error_details : z . string ( ) . nullish ( ) . describe ( 'The error details of the source.' ) ,
2828 } ) ) . describe ( 'The sources of the data flow.' ) ,
29- } ) . strict ( )
29+ } )
3030} )
3131
3232export const outputSchema = zodToJsonSchema ( zodOutputSchema )
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ const zodOutputSchema = z.object({
88 z . object ( {
99 id : z . string ( ) . describe ( 'The ID of the dataflow.' ) ,
1010 name : z . string ( ) . describe ( 'The name of the dataflow.' ) ,
11- last_successful_execution_id : z . string ( ) . nullish ( ) . describe ( 'The ID of the last successful run (execution) of the dataflow.' )
12- } ) . strict ( )
11+ last_successful_execution_id : z . string ( ) . nullish ( ) . describe ( 'The ID of the last successful run (execution) of the dataflow.' ) ,
12+ last_success_run_at : z . string ( ) . nullish ( ) . describe ( 'The date and time of the last successful run (execution) of the dataflow. ISO 8601 format.' ) ,
13+ } )
1314 )
1415} )
1516
You can’t perform that action at this time.
0 commit comments