@tmlmobilidade/consts 20260713.2140.32 → 20260714.1322.11
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
|
@@ -261,6 +261,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
261
261
|
readonly PLANS_DETAIL: (id: string) => string;
|
|
262
262
|
readonly PLANS_DETAIL_APEX_FILE: (id: string) => string;
|
|
263
263
|
readonly PLANS_DETAIL_APEX_FILE_DOWNLOAD: (id: string) => string;
|
|
264
|
+
readonly PLANS_DETAIL_APEX_FILE_SEND_NOTIFICATION: (id: string) => string;
|
|
264
265
|
readonly PLANS_DETAIL_CHANGE_GTFS: (id: string) => string;
|
|
265
266
|
readonly PLANS_DETAIL_CONTROLLER_REPROCESS: (id: string) => string;
|
|
266
267
|
readonly PLANS_DETAIL_LOCK: (id: string) => string;
|
package/dist/app-routes.js
CHANGED
|
@@ -356,6 +356,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
356
356
|
PLANS_DETAIL: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}`,
|
|
357
357
|
PLANS_DETAIL_APEX_FILE: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/apex-file`,
|
|
358
358
|
PLANS_DETAIL_APEX_FILE_DOWNLOAD: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/apex-file/download`,
|
|
359
|
+
PLANS_DETAIL_APEX_FILE_SEND_NOTIFICATION: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/apex-file/send-notification`,
|
|
359
360
|
PLANS_DETAIL_CHANGE_GTFS: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/change-gtfs`,
|
|
360
361
|
PLANS_DETAIL_CONTROLLER_REPROCESS: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/controller-reprocess`,
|
|
361
362
|
PLANS_DETAIL_LOCK: (id) => `${getModuleConfig('plans', 'api_url')}/plans/${encodeURIComponent(id)}/lock`,
|