@tmlmobilidade/consts 20260608.1007.26 → 20260608.1209.6
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
|
@@ -211,6 +211,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
211
211
|
readonly FACILITIES_STORES: `${string}/facilities/stores`;
|
|
212
212
|
readonly FACILITIES_SUBWAY_STATIONS: `${string}/facilities/subway_stations`;
|
|
213
213
|
readonly FACILITIES_TRAIN_STATIONS: `${string}/facilities/train_stations`;
|
|
214
|
+
readonly NETWORK_LEGACY_STOPS_MAP: `${string}/v1/network/legacy-stops-map`;
|
|
214
215
|
readonly NETWORK_LINES: `${string}/v1/network/lines`;
|
|
215
216
|
readonly NETWORK_PATTERNS: (id: string) => string;
|
|
216
217
|
readonly NETWORK_ROUTES: `${string}/v1/network/routes`;
|
package/dist/app-routes.js
CHANGED
|
@@ -287,6 +287,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
287
287
|
FACILITIES_SUBWAY_STATIONS: `${getModuleConfig('hub', 'api_url')}/facilities/subway_stations`,
|
|
288
288
|
FACILITIES_TRAIN_STATIONS: `${getModuleConfig('hub', 'api_url')}/facilities/train_stations`,
|
|
289
289
|
// NETWORK
|
|
290
|
+
NETWORK_LEGACY_STOPS_MAP: `${getModuleConfig('hub', 'api_url')}/v1/network/legacy-stops-map`,
|
|
290
291
|
NETWORK_LINES: `${getModuleConfig('hub', 'api_url')}/v1/network/lines`,
|
|
291
292
|
NETWORK_PATTERNS: (id) => `${getModuleConfig('hub', 'api_url')}/v1/network/patterns/${id}`,
|
|
292
293
|
NETWORK_ROUTES: `${getModuleConfig('hub', 'api_url')}/v1/network/routes`,
|