@tmlmobilidade/consts 20260706.931.16 → 20260706.1756.42
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
|
@@ -221,6 +221,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
221
221
|
};
|
|
222
222
|
readonly offer: {
|
|
223
223
|
readonly BASE: string;
|
|
224
|
+
readonly AGENCIES_LIST: `${string}/agencies`;
|
|
224
225
|
readonly FARES_DETAIL: (id: string) => string;
|
|
225
226
|
readonly FARES_DETAIL_LOCK: (id: string) => string;
|
|
226
227
|
readonly FARES_LIST: `${string}/fares`;
|
package/dist/app-routes.js
CHANGED
|
@@ -300,6 +300,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
300
300
|
offer: {
|
|
301
301
|
// BASE
|
|
302
302
|
BASE: `${getModuleConfig('offer', 'api_url')}`,
|
|
303
|
+
// AGENCIES
|
|
304
|
+
AGENCIES_LIST: `${getModuleConfig('offer', 'api_url')}/agencies`,
|
|
303
305
|
// FARES
|
|
304
306
|
FARES_DETAIL: (id) => `${getModuleConfig('offer', 'api_url')}/fares/${encodeURIComponent(id)}`,
|
|
305
307
|
FARES_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/fares/${encodeURIComponent(id)}/lock`,
|