@tmlmobilidade/consts 20260602.2208.4 → 20260602.2322.45
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
|
@@ -215,6 +215,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
215
215
|
readonly NETWORK_LINES: `${string}/v1/network/lines`;
|
|
216
216
|
readonly NETWORK_PATTERNS: (id: string) => string;
|
|
217
217
|
readonly NETWORK_ROUTES: `${string}/v1/network/routes`;
|
|
218
|
+
readonly NETWORK_SHAPES: (id: string) => string;
|
|
218
219
|
readonly NETWORK_STOPS: `${string}/v1/network/stops`;
|
|
219
220
|
readonly PLANS_GTFS: `${string}/v1/plans/gtfs`;
|
|
220
221
|
readonly PLANS_GTFS_CM: `${string}/v1/plans/gtfs/cm`;
|
package/dist/app-routes.js
CHANGED
|
@@ -291,6 +291,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
291
291
|
NETWORK_LINES: `${getModuleConfig('hub', 'api_url')}/v1/network/lines`,
|
|
292
292
|
NETWORK_PATTERNS: (id) => `${getModuleConfig('hub', 'api_url')}/v1/network/patterns/${id}`,
|
|
293
293
|
NETWORK_ROUTES: `${getModuleConfig('hub', 'api_url')}/v1/network/routes`,
|
|
294
|
+
NETWORK_SHAPES: (id) => `${getModuleConfig('hub', 'api_url')}/v1/network/shapes/${id}`,
|
|
294
295
|
NETWORK_STOPS: `${getModuleConfig('hub', 'api_url')}/v1/network/stops`,
|
|
295
296
|
// PLANS
|
|
296
297
|
PLANS_GTFS: `${getModuleConfig('hub', 'api_url')}/v1/plans/gtfs`,
|