-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Cleaned up namespaces
- Loading branch information
Showing
5 changed files
with
101 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import {ResponseDataDecorator} from "./src/ResponseDataDecorator"; | ||
import MetlinkHttpClient from "./src/MetlinkHttpClient"; | ||
import {MetlinkHttpClientBuilder} from "./src/MetlinkHttpClientBuilder"; | ||
import {QueryBuilder} from "./src/QueryBuilder"; | ||
import {MetlinkHttpClientInterface, HostInterface} from "./src/Contracts"; | ||
import {HeadersBuilder} from "./src/HeadersBuilder"; | ||
import {HeadersDirector} from "./src/HeadersDirector"; | ||
import {Trip as GtfsTrip} from "./src/domain/gtfs/entity/Trip"; | ||
import {Calendar as GtfsCalendar} from "./src/domain/gtfs/entity/Calendar"; | ||
import {CalendarDate as GtfsCalendarDate} from "./src/domain/gtfs/entity/CalendarDate"; | ||
import {Feed as GtfsFeed} from "./src/domain/gtfs/entity/Feed"; | ||
import {Route as GtfsRoute} from "./src/domain/gtfs/entity/Route"; | ||
import {ServiceWeeklySchedule as GtfsServiceWeeklySchedule} from "./src/domain/gtfs/entity/ServiceWeeklySchedule"; | ||
import {Shape as GtfsServiceShape} from "./src/domain/gtfs/entity/Shape"; | ||
import {Stop as GtfsStop} from "./src/domain/gtfs/entity/Stop"; | ||
import {StopTime as GtfsStopTime} from "./src/domain/gtfs/entity/StopTime"; | ||
import {Transfer as GtfsTransfer} from "./src/domain/gtfs/entity/Transfer"; | ||
import {Agency as GtfsAgency} from "./src/domain/gtfs/entity/Agency"; | ||
import {AxiosAdapter} from "./src/domain/httpclient/AxiosAdapter"; | ||
import {Query as TripCancellationQuery} from "./src/domain/trip-cancellation/Query" | ||
import {Trip as TripCancellationTrip} from "./src/domain/trip-cancellation/Trip" | ||
import {Arrival as StopDeparturePredictionArrival} from "./src/domain/stop-departure-prediction/Arrival"; | ||
import {Departure as StopDeparturePredictionDeparture} from "./src/domain/stop-departure-prediction/Departure"; | ||
import {Destination as StopDeparturePredictionDestination} from "./src/domain/stop-departure-prediction/Destination"; | ||
import {Entity as StopDeparturePredictionEntity} from "./src/domain/stop-departure-prediction/Entity"; | ||
import {Origin as StopDeparturePredictionOrigin} from "./src/domain/stop-departure-prediction/Origin"; | ||
import {Response as StopDeparturePredictionResponse} from "./src/domain/stop-departure-prediction/Response"; | ||
import {Header as GtfsRtHeader} from "./src/domain/gtfs-rt/entity/Header"; | ||
import {Response as GtfsRtResponse} from "./src/domain/gtfs-rt/entity/Response"; | ||
import {Entity as GtfsRtVehiclePositionsEntity} from "./src/domain/gtfs-rt/entity/vehicle-positions/Entity"; | ||
import {Position as GtfsRtVehiclePositionsPosition} from "./src/domain/gtfs-rt/entity/vehicle-positions/Position"; | ||
import {Trip as GtfsRtVehiclePositionsTrip} from "./src/domain/gtfs-rt/entity/vehicle-positions/Trip"; | ||
import {Vehicle as GtfsRtVehiclePositionsVehicle} from "./src/domain/gtfs-rt/entity/vehicle-positions/Vehicle"; | ||
import {VehicleId as GtfsRtVehiclePositionsVehicleId} from "./src/domain/gtfs-rt/entity/vehicle-positions/VehicleId"; | ||
import {Arrival as GtfsRtTripUpdateArrival} from "./src/domain/gtfs-rt/entity/trip-update/Arrival"; | ||
import {Entity as GtfsRtTripUpdateEntity} from "./src/domain/gtfs-rt/entity/trip-update/Entity"; | ||
import {StopTimeUpdate as GtfsRtTripUpdateStopTimeUpdate} from "./src/domain/gtfs-rt/entity/trip-update/StopTimeUpdate"; | ||
import {Trip as GtfsRtTripUpdateTrip} from "./src/domain/gtfs-rt/entity/trip-update/Trip"; | ||
import {TripUpdate as GtfsRtTripUpdateTripUpdate} from "./src/domain/gtfs-rt/entity/trip-update/TripUpdate"; | ||
import {VehicleId as GtfsRtTripUpdateVehicleId} from "./src/domain/gtfs-rt/entity/trip-update/VehicleId"; | ||
import {ActivePeriod as GtfsRtServiceAlertActivePeriod} from "./src/domain/gtfs-rt/entity/service-alert/ActivePeriod"; | ||
import {Alert as GtfsRtServiceAlertAlert} from "./src/domain/gtfs-rt/entity/service-alert/Alert"; | ||
import {Entity as GtfsRtServiceAlertEntity} from "./src/domain/gtfs-rt/entity/service-alert/Entity"; | ||
import {InformedEntity as GtfsRtServiceAlertInformedEntity} from "./src/domain/gtfs-rt/entity/service-alert/InformedEntity"; | ||
import {Trip as GtfsRtServiceAlertTrip} from "./src/domain/gtfs-rt/entity/service-alert/Trip"; | ||
|
||
|
||
|
||
export { | ||
GtfsRtTripUpdateArrival, | ||
GtfsRtTripUpdateEntity, | ||
GtfsRtTripUpdateStopTimeUpdate, | ||
GtfsRtTripUpdateTrip, | ||
GtfsRtTripUpdateTripUpdate, | ||
GtfsRtTripUpdateVehicleId, | ||
GtfsRtServiceAlertActivePeriod, | ||
GtfsRtServiceAlertAlert, | ||
GtfsRtServiceAlertEntity, | ||
GtfsRtServiceAlertInformedEntity, | ||
GtfsRtServiceAlertTrip, | ||
StopDeparturePredictionArrival, | ||
StopDeparturePredictionDeparture, | ||
StopDeparturePredictionDestination, | ||
StopDeparturePredictionEntity, | ||
StopDeparturePredictionOrigin, | ||
StopDeparturePredictionResponse, | ||
GtfsRtHeader, | ||
GtfsRtResponse, | ||
GtfsRtVehiclePositionsEntity, | ||
GtfsRtVehiclePositionsTrip, | ||
GtfsRtVehiclePositionsPosition, | ||
GtfsRtVehiclePositionsVehicle, | ||
GtfsRtVehiclePositionsVehicleId, | ||
GtfsAgency, | ||
GtfsTrip, | ||
GtfsCalendar, | ||
GtfsCalendarDate, | ||
GtfsFeed, | ||
GtfsRoute, | ||
GtfsServiceWeeklySchedule, | ||
GtfsServiceShape, | ||
GtfsStop, | ||
GtfsStopTime, | ||
GtfsTransfer, | ||
TripCancellationQuery, | ||
ResponseDataDecorator, | ||
MetlinkHttpClient, | ||
MetlinkHttpClientBuilder, | ||
QueryBuilder, | ||
MetlinkHttpClientInterface, | ||
HostInterface, | ||
HeadersBuilder, | ||
HeadersDirector, | ||
AxiosAdapter, | ||
TripCancellationTrip, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters