@tmlmobilidade/consts 20260706.1523.32 → 20260706.1839.32
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/app-routes.d.ts +2 -1
- package/dist/app-routes.js +2 -1
- package/package.json +1 -1
package/dist/app-routes.d.ts
CHANGED
|
@@ -205,7 +205,8 @@ export declare const API_ROUTES: Readonly<{
|
|
|
205
205
|
readonly PLANS_GTFS_CM: `${string}/v1/plans/gtfs/cm`;
|
|
206
206
|
readonly PLANS_LIST: `${string}/v1/plans`;
|
|
207
207
|
readonly REALTIME_TRIP_UPDATES: `${string}/v1/realtime/trip-updates`;
|
|
208
|
-
readonly
|
|
208
|
+
readonly REALTIME_TRIP_UPDATES_GTFS: `${string}/v1/realtime/trip-updates/gtfs`;
|
|
209
|
+
readonly REALTIME_TRIP_UPDATES_GTFS_PB: `${string}/v1/realtime/trip-updates/gtfs.pb`;
|
|
209
210
|
readonly REALTIME_VEHICLES_METADATA: `${string}/v1/realtime/vehicles/metadata`;
|
|
210
211
|
readonly REALTIME_VEHICLES_POSITIONS: `${string}/v1/realtime/vehicles/positions`;
|
|
211
212
|
readonly REALTIME_VEHICLES_POSITIONS_GTFS: `${string}/v1/realtime/vehicles/positions/gtfs`;
|
package/dist/app-routes.js
CHANGED
|
@@ -281,7 +281,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
281
281
|
PLANS_LIST: `${getModuleConfig('hub', 'api_url')}/v1/plans`,
|
|
282
282
|
// REALTIME
|
|
283
283
|
REALTIME_TRIP_UPDATES: `${getModuleConfig('hub', 'api_url')}/v1/realtime/trip-updates`,
|
|
284
|
-
|
|
284
|
+
REALTIME_TRIP_UPDATES_GTFS: `${getModuleConfig('hub', 'api_url')}/v1/realtime/trip-updates/gtfs`,
|
|
285
|
+
REALTIME_TRIP_UPDATES_GTFS_PB: `${getModuleConfig('hub', 'api_url')}/v1/realtime/trip-updates/gtfs.pb`,
|
|
285
286
|
REALTIME_VEHICLES_METADATA: `${getModuleConfig('hub', 'api_url')}/v1/realtime/vehicles/metadata`,
|
|
286
287
|
REALTIME_VEHICLES_POSITIONS: `${getModuleConfig('hub', 'api_url')}/v1/realtime/vehicles/positions`,
|
|
287
288
|
REALTIME_VEHICLES_POSITIONS_GTFS: `${getModuleConfig('hub', 'api_url')}/v1/realtime/vehicles/positions/gtfs`,
|