@tmlmobilidade/consts 20251202.1821.43 → 20251205.1154.10
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 +3 -3
- package/dist/app-routes.js +6 -6
- package/package.json +1 -1
package/dist/app-routes.d.ts
CHANGED
|
@@ -35,9 +35,9 @@ export declare const PAGE_ROUTES: Readonly<{
|
|
|
35
35
|
readonly BASE: string;
|
|
36
36
|
readonly AREAS_1_LIST: `${string}/areas/1`;
|
|
37
37
|
readonly AREAS_2_LIST: `${string}/areas/2`;
|
|
38
|
-
readonly
|
|
39
|
-
readonly
|
|
40
|
-
readonly
|
|
38
|
+
readonly DEMAND_DEMAND_BY_LIST: `${string}/demand/demand-by`;
|
|
39
|
+
readonly DEMAND_LIST: `${string}/demand`;
|
|
40
|
+
readonly SUPPLY_LIST: `${string}/supply`;
|
|
41
41
|
};
|
|
42
42
|
readonly plans: {
|
|
43
43
|
readonly BASE: string;
|
package/dist/app-routes.js
CHANGED
|
@@ -62,12 +62,12 @@ export const PAGE_ROUTES = Object.freeze({
|
|
|
62
62
|
AREAS_1_LIST: `${getAppConfig('performance', 'frontend_url')}/areas/1`,
|
|
63
63
|
// AREAS_2
|
|
64
64
|
AREAS_2_LIST: `${getAppConfig('performance', 'frontend_url')}/areas/2`,
|
|
65
|
-
//
|
|
66
|
-
|
|
67
|
-
//
|
|
68
|
-
|
|
69
|
-
//
|
|
70
|
-
|
|
65
|
+
// DEMAND_DEMAND_BY
|
|
66
|
+
DEMAND_DEMAND_BY_LIST: `${getAppConfig('performance', 'frontend_url')}/demand/demand-by`,
|
|
67
|
+
// DEMAND
|
|
68
|
+
DEMAND_LIST: `${getAppConfig('performance', 'frontend_url')}/demand`,
|
|
69
|
+
// SUPPLY
|
|
70
|
+
SUPPLY_LIST: `${getAppConfig('performance', 'frontend_url')}/supply`,
|
|
71
71
|
},
|
|
72
72
|
/* * */
|
|
73
73
|
/* PLANS */
|