@tmlmobilidade/consts 20260608.1209.6 → 20260609.1117.42
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 +1 -0
- package/dist/app-routes.js +1 -0
- package/package.json +1 -1
package/dist/app-routes.d.ts
CHANGED
|
@@ -201,6 +201,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
201
201
|
readonly ALERTS_GTFS_PB: `${string}/v1/alerts/gtfs.pb`;
|
|
202
202
|
readonly ALERTS_LIST: `${string}/v1/alerts`;
|
|
203
203
|
readonly ALERTS_RSS: `${string}/v1/alerts.rss`;
|
|
204
|
+
readonly DEBUG_APP_ENABLED: `${string}/v1/debug/app-enabled`;
|
|
204
205
|
readonly DEBUG_TIME: `${string}/v1/debug/time`;
|
|
205
206
|
readonly FACILITIES_BOAT_STATIONS: `${string}/facilities/boat_stations`;
|
|
206
207
|
readonly FACILITIES_HELPDESKS: `${string}/facilities/helpdesks`;
|
package/dist/app-routes.js
CHANGED
|
@@ -275,6 +275,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
275
275
|
ALERTS_LIST: `${getModuleConfig('hub', 'api_url')}/v1/alerts`,
|
|
276
276
|
ALERTS_RSS: `${getModuleConfig('hub', 'api_url')}/v1/alerts.rss`,
|
|
277
277
|
// DEBUG
|
|
278
|
+
DEBUG_APP_ENABLED: `${getModuleConfig('hub', 'api_url')}/v1/debug/app-enabled`,
|
|
278
279
|
DEBUG_TIME: `${getModuleConfig('hub', 'api_url')}/v1/debug/time`,
|
|
279
280
|
// FACILITIES
|
|
280
281
|
FACILITIES_BOAT_STATIONS: `${getModuleConfig('hub', 'api_url')}/facilities/boat_stations`,
|