gtfs 4.16.0 → 4.17.0

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.
@@ -154,7 +154,7 @@ __export(models_exports, {
154
154
  routes: () => routes,
155
155
  runEvents: () => runEvents,
156
156
  runsPieces: () => runsPieces,
157
- serviceAlertTargets: () => serviceAlertTargets,
157
+ serviceAlertInformedEntities: () => serviceAlertInformedEntities,
158
158
  serviceAlerts: () => serviceAlerts,
159
159
  shapes: () => shapes,
160
160
  stopAreas: () => stopAreas,
@@ -2861,9 +2861,9 @@ var serviceAlerts = {
2861
2861
  ]
2862
2862
  };
2863
2863
 
2864
- // src/models/gtfs-realtime/service-alert-targets.ts
2865
- var serviceAlertTargets = {
2866
- filenameBase: "service_alert_targets",
2864
+ // src/models/gtfs-realtime/service-alert-informed_entities.ts
2865
+ var serviceAlertInformedEntities = {
2866
+ filenameBase: "service_alert_informed_entities",
2867
2867
  extension: "gtfs-realtime",
2868
2868
  schema: [
2869
2869
  {
@@ -2887,6 +2887,27 @@ var serviceAlertTargets = {
2887
2887
  source: "routeId",
2888
2888
  default: null
2889
2889
  },
2890
+ {
2891
+ name: "route_type",
2892
+ type: "integer",
2893
+ index: true,
2894
+ source: "routeType",
2895
+ default: null
2896
+ },
2897
+ {
2898
+ name: "trip_id",
2899
+ type: "text",
2900
+ index: true,
2901
+ source: "trip.tripId",
2902
+ default: null
2903
+ },
2904
+ {
2905
+ name: "direction_id",
2906
+ type: "integer",
2907
+ index: true,
2908
+ source: "directionId",
2909
+ default: null
2910
+ },
2890
2911
  {
2891
2912
  name: "created_timestamp",
2892
2913
  type: "integer",