@tmlmobilidade/consts 20260611.1804.42 → 20260612.1126.8
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
|
@@ -250,6 +250,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
250
250
|
readonly TYPOLOGIES_DETAIL: (id: string) => string;
|
|
251
251
|
readonly TYPOLOGIES_DETAIL_LOCK: (id: string) => string;
|
|
252
252
|
readonly TYPOLOGIES_LIST: `${string}/typologies`;
|
|
253
|
+
readonly VKM_CALCULATE: `${string}/vkm/calculate`;
|
|
253
254
|
readonly ZONES_DETAIL: (id: string) => string;
|
|
254
255
|
readonly ZONES_DETAIL_LOCK: (id: string) => string;
|
|
255
256
|
readonly ZONES_LIST: `${string}/zones`;
|
package/dist/app-routes.js
CHANGED
|
@@ -335,6 +335,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
335
335
|
TYPOLOGIES_DETAIL: (id) => `${getModuleConfig('offer', 'api_url')}/typologies/${id}`,
|
|
336
336
|
TYPOLOGIES_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/typologies/${id}/lock`,
|
|
337
337
|
TYPOLOGIES_LIST: `${getModuleConfig('offer', 'api_url')}/typologies`,
|
|
338
|
+
// VKM
|
|
339
|
+
VKM_CALCULATE: `${getModuleConfig('offer', 'api_url')}/vkm/calculate`,
|
|
338
340
|
// ZONES
|
|
339
341
|
ZONES_DETAIL: (id) => `${getModuleConfig('offer', 'api_url')}/zones/${id}`,
|
|
340
342
|
ZONES_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/zones/${id}/lock`,
|