@tmlmobilidade/consts 20260713.1740.11 → 20260713.2306.53
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 +2 -0
- package/dist/app-routes.js +2 -0
- package/package.json +1 -1
package/dist/app-routes.d.ts
CHANGED
|
@@ -259,6 +259,8 @@ export declare const API_ROUTES: Readonly<{
|
|
|
259
259
|
readonly plans: {
|
|
260
260
|
readonly BASE: string;
|
|
261
261
|
readonly PLANS_DETAIL: (id: string) => string;
|
|
262
|
+
readonly PLANS_DETAIL_APEX_FILE: (id: string) => string;
|
|
263
|
+
readonly PLANS_DETAIL_APEX_FILE_DOWNLOAD: (id: string) => string;
|
|
262
264
|
readonly PLANS_DETAIL_CHANGE_GTFS: (id: string) => string;
|
|
263
265
|
readonly PLANS_DETAIL_CONTROLLER_REPROCESS: (id: string) => string;
|
|
264
266
|
readonly PLANS_DETAIL_LOCK: (id: string) => string;
|
package/dist/app-routes.js
CHANGED
|
@@ -354,6 +354,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
354
354
|
BASE: `${getModuleConfig('plans', 'api_url')}`,
|
|
355
355
|
// PLANS
|
|
356
356
|
PLANS_DETAIL: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}`,
|
|
357
|
+
PLANS_DETAIL_APEX_FILE: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/apex-file`,
|
|
358
|
+
PLANS_DETAIL_APEX_FILE_DOWNLOAD: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/apex-file/download`,
|
|
357
359
|
PLANS_DETAIL_CHANGE_GTFS: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/change-gtfs`,
|
|
358
360
|
PLANS_DETAIL_CONTROLLER_REPROCESS: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/controller-reprocess`,
|
|
359
361
|
PLANS_DETAIL_LOCK: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/lock`,
|