@tmlmobilidade/consts 20260703.1331.16 → 20260703.1528.12
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
|
@@ -277,6 +277,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
277
277
|
readonly STOPS_DETAIL: (id: string) => string;
|
|
278
278
|
readonly STOPS_DETAIL_LOCK: (id: string) => string;
|
|
279
279
|
readonly STOPS_LIST: `${string}/stops`;
|
|
280
|
+
readonly STOPS_TTS: (id: string) => string;
|
|
280
281
|
readonly STOPS_VALID_ID: `${string}/stops/valid-id`;
|
|
281
282
|
};
|
|
282
283
|
}>;
|
package/dist/app-routes.js
CHANGED
|
@@ -374,6 +374,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
374
374
|
STOPS_DETAIL: (id) => `${getModuleConfig('stops', 'api_url')}/stops/${encodeURIComponent(id)}`,
|
|
375
375
|
STOPS_DETAIL_LOCK: (id) => `${getModuleConfig('stops', 'api_url')}/stops/${encodeURIComponent(id)}/lock`,
|
|
376
376
|
STOPS_LIST: `${getModuleConfig('stops', 'api_url')}/stops`,
|
|
377
|
+
STOPS_TTS: (id) => `${getModuleConfig('stops', 'api_url')}/stops/tts/${encodeURIComponent(id)}`,
|
|
377
378
|
STOPS_VALID_ID: `${getModuleConfig('stops', 'api_url')}/stops/valid-id`,
|
|
378
379
|
},
|
|
379
380
|
});
|