@tmlmobilidade/consts 20260408.1128.43 → 20260409.1552.16
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
|
@@ -186,6 +186,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
186
186
|
readonly FARES_DETAIL: (id: string) => string;
|
|
187
187
|
readonly FARES_DETAIL_LOCK: (id: string) => string;
|
|
188
188
|
readonly FARES_LIST: `${string}/fares`;
|
|
189
|
+
readonly GTFS_CREATE_EXPORT: `${string}/gtfs/create-export`;
|
|
189
190
|
readonly GTFS_PARSE: `${string}/gtfs/parse`;
|
|
190
191
|
readonly LINES_DETAIL: (id: string) => string;
|
|
191
192
|
readonly LINES_DETAIL_LOCK: (id: string) => string;
|
package/dist/app-routes.js
CHANGED
|
@@ -292,6 +292,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
292
292
|
FARES_DETAIL_LOCK: (id) => `${getAppConfig('offer', 'api_url')}/fares/${id}/lock`,
|
|
293
293
|
FARES_LIST: `${getAppConfig('offer', 'api_url')}/fares`,
|
|
294
294
|
// GTFS
|
|
295
|
+
GTFS_CREATE_EXPORT: `${getAppConfig('offer', 'api_url')}/gtfs/create-export`,
|
|
295
296
|
GTFS_PARSE: `${getAppConfig('offer', 'api_url')}/gtfs/parse`,
|
|
296
297
|
// LINES
|
|
297
298
|
LINES_DETAIL: (id) => `${getAppConfig('offer', 'api_url')}/lines/${id}`,
|