@tmlmobilidade/consts 20260901.934.39 → 20260901.1122.14
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
|
@@ -180,6 +180,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
180
180
|
readonly STOPS_CREATE: `${string}/stops/create`;
|
|
181
181
|
readonly STOPS_DELETE: (id: string) => string;
|
|
182
182
|
readonly STOPS_GET: (id: string) => string;
|
|
183
|
+
readonly STOPS_GET_STOP_LOCATION: `${string}/stops/get-stop-location`;
|
|
183
184
|
readonly STOPS_GET_TTS: (id: string) => string;
|
|
184
185
|
readonly STOPS_GET_VALID_ID: `${string}/stops/get/valid-id`;
|
|
185
186
|
readonly STOPS_LIST: `${string}/stops/list`;
|
package/dist/app-routes.js
CHANGED
|
@@ -246,6 +246,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
246
246
|
STOPS_CREATE: `${getModuleConfig('infrastructure', 'api_url')}/stops/create`,
|
|
247
247
|
STOPS_DELETE: (id) => `${getModuleConfig('infrastructure', 'api_url')}/stops/delete/${encodeURIComponent(id)}`,
|
|
248
248
|
STOPS_GET: (id) => `${getModuleConfig('infrastructure', 'api_url')}/stops/get/${encodeURIComponent(id)}`,
|
|
249
|
+
STOPS_GET_STOP_LOCATION: `${getModuleConfig('infrastructure', 'api_url')}/stops/get-stop-location`,
|
|
249
250
|
STOPS_GET_TTS: (id) => `${getModuleConfig('infrastructure', 'api_url')}/stops/get/tts/${encodeURIComponent(id)}`,
|
|
250
251
|
STOPS_GET_VALID_ID: `${getModuleConfig('infrastructure', 'api_url')}/stops/get/valid-id`,
|
|
251
252
|
STOPS_LIST: `${getModuleConfig('infrastructure', 'api_url')}/stops/list`,
|