@tmlmobilidade/consts 20260616.229.43 → 20260616.1147.27
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
|
@@ -237,6 +237,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
237
237
|
readonly ROUTES_DETAIL: (id: string) => string;
|
|
238
238
|
readonly ROUTES_DETAIL_LOCK: (id: string) => string;
|
|
239
239
|
readonly ROUTES_LIST: `${string}/routes`;
|
|
240
|
+
readonly SHAPES_ROUTE_PREVIEW: `${string}/shapes/route-preview`;
|
|
240
241
|
readonly TYPOLOGIES_DETAIL: (id: string) => string;
|
|
241
242
|
readonly TYPOLOGIES_DETAIL_LOCK: (id: string) => string;
|
|
242
243
|
readonly TYPOLOGIES_LIST: `${string}/typologies`;
|
package/dist/app-routes.js
CHANGED
|
@@ -320,6 +320,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
320
320
|
ROUTES_DETAIL: (id) => `${getModuleConfig('offer', 'api_url')}/routes/${id}`,
|
|
321
321
|
ROUTES_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/routes/${id}/lock`,
|
|
322
322
|
ROUTES_LIST: `${getModuleConfig('offer', 'api_url')}/routes`,
|
|
323
|
+
// SHAPES
|
|
324
|
+
SHAPES_ROUTE_PREVIEW: `${getModuleConfig('offer', 'api_url')}/shapes/route-preview`,
|
|
323
325
|
// TYPOLOGIES
|
|
324
326
|
TYPOLOGIES_DETAIL: (id) => `${getModuleConfig('offer', 'api_url')}/typologies/${id}`,
|
|
325
327
|
TYPOLOGIES_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/typologies/${id}/lock`,
|