@tmlmobilidade/consts 20260624.1159.20 → 20260625.1419.32
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
|
@@ -235,6 +235,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
235
235
|
readonly PATTERNS_DETAIL_IMPORT_GTFS: (id: string) => string;
|
|
236
236
|
readonly PATTERNS_DETAIL_LOCK: (id: string) => string;
|
|
237
237
|
readonly PATTERNS_LIST: `${string}/patterns`;
|
|
238
|
+
readonly PATTERNS_SHAPES: `${string}/patterns/shapes`;
|
|
238
239
|
readonly ROUTES_DETAIL: (id: string) => string;
|
|
239
240
|
readonly ROUTES_DETAIL_LOCK: (id: string) => string;
|
|
240
241
|
readonly ROUTES_LIST: `${string}/routes`;
|
package/dist/app-routes.js
CHANGED
|
@@ -318,6 +318,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
318
318
|
PATTERNS_DETAIL_IMPORT_GTFS: (id) => `${getModuleConfig('offer', 'api_url')}/patterns/${id}/import-gtfs`,
|
|
319
319
|
PATTERNS_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/patterns/${id}/lock`,
|
|
320
320
|
PATTERNS_LIST: `${getModuleConfig('offer', 'api_url')}/patterns`,
|
|
321
|
+
PATTERNS_SHAPES: `${getModuleConfig('offer', 'api_url')}/patterns/shapes`,
|
|
321
322
|
// ROUTES
|
|
322
323
|
ROUTES_DETAIL: (id) => `${getModuleConfig('offer', 'api_url')}/routes/${id}`,
|
|
323
324
|
ROUTES_DETAIL_LOCK: (id) => `${getModuleConfig('offer', 'api_url')}/routes/${id}/lock`,
|