File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export default function Feed(): React.ReactElement {
114114 // Filtering out deprecated feeds
115115 status : [ 'active' , 'inactive' , 'development' ] ,
116116 features : selectedFeatures ,
117- } as any , // Type assertion to bypass type checking
117+ } ,
118118 } ,
119119 } ) ,
120120 ) ;
Original file line number Diff line number Diff line change @@ -643,6 +643,8 @@ export interface components {
643643 statuses ?: Array <
644644 'active' | 'deprecated' | 'inactive' | 'development' | 'future'
645645 > ;
646+ /** @description Filter feeds by their GTFS features. [GTFS features definitions defined here](https://gtfs.org/getting-started/features/overview) */
647+ features ?: string [ ] ;
646648 /** @description List only feeds with the specified value. Can be a partial match. Case insensitive. */
647649 provider ?: string ;
648650 /** @description List only feeds with the specified value. Can be a partial match. Case insensitive. */
@@ -991,6 +993,7 @@ export interface operations {
991993 data_type ?: components [ 'parameters' ] [ 'data_type_query_param' ] ;
992994 is_official ?: components [ 'parameters' ] [ 'is_official_query_param' ] ;
993995 search_query ?: components [ 'parameters' ] [ 'search_text_query_param' ] ;
996+ features ?: components [ 'parameters' ] [ 'features' ] ;
994997 } ;
995998 } ;
996999 responses : {
You can’t perform that action at this time.
0 commit comments