Skip to content

Commit 8a3d12f

Browse files
committed
minor changes to test and generated TS types
1 parent 0583f03 commit 8a3d12f

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

api/tests/test_data/test_datasets.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
],
178178
"features": [
179179
"Text-to-speech",
180-
"Wheelchair accesibility",
180+
"Wheelchair accessibility",
181181
"Route Colors",
182182
"Bike Allowed",
183183
"Translations",
@@ -194,7 +194,7 @@
194194
},
195195
{
196196
"validation_report_id": "dataset-1-report-1",
197-
"feature_name": "Wheelchair accesibility"
197+
"feature_name": "Wheelchair accessibility"
198198
},
199199
{
200200
"validation_report_id": "dataset-1-report-1",

liquibase/changes/feat_993.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
-- select * from databasechangelog
2-
31
--
42
-- This SQL adds the validation features and totals of the latest dataset to the FeedSearch view.
53
--

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

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,15 @@ export interface components {
409409
*/
410410
agency_timezone?: string;
411411
validation_report?: {
412+
/**
413+
* @description List of GTFS features associated to the dataset. More information, https://gtfs.org/getting-started/features/overview
414+
* @example [
415+
* "Shapes",
416+
* "Headsigns",
417+
* "Wheelchair Accessibility"
418+
* ]
419+
*/
420+
features?: string[];
412421
/** @example 10 */
413422
total_error?: number;
414423
/** @example 20 */
@@ -589,7 +598,14 @@ export interface components {
589598
* @example "2023-07-10T22:06:00.000Z"
590599
*/
591600
validated_at?: string;
592-
/** @description An array of features for this dataset. */
601+
/**
602+
* @description List of GTFS features associated to the dataset. More information, https://gtfs.org/getting-started/features/overview
603+
* @example [
604+
* "Shapes",
605+
* "Headsigns",
606+
* "Wheelchair Accessibility"
607+
* ]
608+
*/
593609
features?: string[];
594610
/** @example 4.2.0 */
595611
validator_version?: string;

0 commit comments

Comments
 (0)