@@ -127,11 +127,12 @@ export interface components {
127127 * * `deprecated` Feed is explicitly deprecated and should not be used in public trip planners.
128128 * * `inactive` Feed hasn't been recently updated and should be used at risk of providing outdated information.
129129 * * `development` Feed is being used for development purposes and should not be used in public trip planners.
130+ * * `future` Feed is not yet active but will be in the future.
130131 *
131132 * @example deprecated
132133 * @enum {string}
133134 */
134- status ?: 'active' | 'deprecated' | 'inactive' | 'development' ;
135+ status ?: 'active' | 'deprecated' | 'inactive' | 'development' | 'future' ;
135136 /**
136137 * Format: date-time
137138 * @description The date and time the feed was added to the database, in ISO 8601 date-time format.
@@ -204,11 +205,12 @@ export interface components {
204205 * * `deprecated` Feed is explicitly deprecated and should not be used in public trip planners.
205206 * * `inactive` Feed hasn't been recently updated and should be used at risk of providing outdated information.
206207 * * `development` Feed is being used for development purposes and should not be used in public trip planners.
208+ * * `future` Feed is not yet active but will be in the future.
207209 *
208210 * @example deprecated
209211 * @enum {string}
210212 */
211- status : 'active' | 'deprecated' | 'inactive' | 'development' ;
213+ status : 'active' | 'deprecated' | 'inactive' | 'development' | 'future' ;
212214 /**
213215 * Format: date-time
214216 * @description The date and time the feed was added to the database, in ISO 8601 date-time format.
@@ -497,9 +499,11 @@ export interface components {
497499 responses : never ;
498500 parameters : {
499501 /** @description Filter feeds by their status. [Status definitions defined here](https://github.com/MobilityData/mobility-database-catalogs?tab=readme-ov-file#gtfs-schedule-schema) */
500- status ?: 'active' | 'deprecated' | 'inactive' | 'development' ;
502+ status ?: 'active' | 'deprecated' | 'inactive' | 'development' | 'future' ;
501503 /** @description Filter feeds by their status. [Status definitions defined here](https://github.com/MobilityData/mobility-database-catalogs?tab=readme-ov-file#gtfs-schedule-schema) */
502- statuses ?: Array < 'active' | 'deprecated' | 'inactive' | 'development' > ;
504+ statuses ?: Array <
505+ 'active' | 'deprecated' | 'inactive' | 'development' | 'future'
506+ > ;
503507 /** @description List only feeds with the specified value. Can be a partial match. Case insensitive. */
504508 provider ?: string ;
505509 /** @description List only feeds with the specified value. Can be a partial match. Case insensitive. */
0 commit comments