gtfs 4.17.4 → 4.17.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -340,6 +340,7 @@ interface Trip {
340
340
  shape_id?: string;
341
341
  wheelchair_accessible?: 0 | 1 | 2;
342
342
  bikes_allowed?: 0 | 1 | 2;
343
+ cars_allowed?: 0 | 1 | 2;
343
344
  }
344
345
  interface Timetable {
345
346
  timetable_id: string;
package/dist/index.js CHANGED
@@ -1523,6 +1523,12 @@ var trips = {
1523
1523
  type: "integer",
1524
1524
  min: 0,
1525
1525
  max: 2
1526
+ },
1527
+ {
1528
+ name: "cars_allowed",
1529
+ type: "integer",
1530
+ min: 0,
1531
+ max: 2
1526
1532
  }
1527
1533
  ]
1528
1534
  };