Skip to content

Commit f45f7fa

Browse files
committed
regenerated typescripts types
1 parent b792ca2 commit f45f7fa

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

web-app/src/app/screens/Feeds/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
);

web-app/src/app/services/feeds/types.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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: {

0 commit comments

Comments
 (0)