@tmlmobilidade/consts 20260410.1049.29 → 20260410.1133.41
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
|
@@ -140,6 +140,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
140
140
|
readonly RIDES_DETAIL_SIMPLIFIED_APEX_ON_BOARD_SALES: (id: string) => string;
|
|
141
141
|
readonly RIDES_DETAIL_SIMPLIFIED_APEX_VALIDATIONS: (id: string) => string;
|
|
142
142
|
readonly RIDES_DETAIL_VEHICLE_EVENTS: (id: string) => string;
|
|
143
|
+
readonly RIDES_FAVORITES: `${string}/rides/favorites`;
|
|
143
144
|
readonly RIDES_LIST: `${string}/rides`;
|
|
144
145
|
readonly RIDES_WS: `${string}/rides/ws`;
|
|
145
146
|
};
|
package/dist/app-routes.js
CHANGED
|
@@ -221,6 +221,7 @@ export const API_ROUTES = Object.freeze({
|
|
|
221
221
|
RIDES_DETAIL_SIMPLIFIED_APEX_ON_BOARD_SALES: (id) => `${getAppConfig('controller', 'api_url')}/rides/${id}/simplified-apex-on-board-sales`,
|
|
222
222
|
RIDES_DETAIL_SIMPLIFIED_APEX_VALIDATIONS: (id) => `${getAppConfig('controller', 'api_url')}/rides/${id}/simplified-apex-validations`,
|
|
223
223
|
RIDES_DETAIL_VEHICLE_EVENTS: (id) => `${getAppConfig('controller', 'api_url')}/rides/${id}/vehicle-events`,
|
|
224
|
+
RIDES_FAVORITES: `${getAppConfig('controller', 'api_url')}/rides/favorites`,
|
|
224
225
|
RIDES_LIST: `${getAppConfig('controller', 'api_url')}/rides`,
|
|
225
226
|
RIDES_WS: `${getAppConfig('controller', 'api_url')}/rides/ws`,
|
|
226
227
|
},
|