@tmlmobilidade/consts 20260620.1032.31 → 20260620.1229.43
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 +2 -0
- package/package.json +1 -1
package/dist/app-routes.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
195
195
|
readonly ALERTS_LIST: `${string}/v1/alerts`;
|
|
196
196
|
readonly ALERTS_RSS: `${string}/v1/alerts.rss`;
|
|
197
197
|
readonly DEBUG_TIME: `${string}/v1/debug/time`;
|
|
198
|
+
readonly METRICS_DEMAND_BY_AGENCY_BY_OPERATIONAL_DATE: `${string}/v1/metrics/demand-by-agency-by-operational-date`;
|
|
198
199
|
readonly NETWORK_LEGACY_STOPS_MAP: `${string}/v1/network/legacy-stops-map`;
|
|
199
200
|
readonly NETWORK_LINES: `${string}/v1/network/lines`;
|
|
200
201
|
readonly NETWORK_PATTERNS: (id: string) => string;
|
package/dist/app-routes.js
CHANGED
|
@@ -267,6 +267,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
267
267
|
ALERTS_RSS: `${getModuleConfig('hub', 'api_url')}/v1/alerts.rss`,
|
|
268
268
|
// DEBUG
|
|
269
269
|
DEBUG_TIME: `${getModuleConfig('hub', 'api_url')}/v1/debug/time`,
|
|
270
|
+
// METRICS
|
|
271
|
+
METRICS_DEMAND_BY_AGENCY_BY_OPERATIONAL_DATE: `${getModuleConfig('hub', 'api_url')}/v1/metrics/demand-by-agency-by-operational-date`,
|
|
270
272
|
// NETWORK
|
|
271
273
|
NETWORK_LEGACY_STOPS_MAP: `${getModuleConfig('hub', 'api_url')}/v1/network/legacy-stops-map`,
|
|
272
274
|
NETWORK_LINES: `${getModuleConfig('hub', 'api_url')}/v1/network/lines`,
|