@tmlmobilidade/consts 20260717.1813.33 → 20260717.2210.46
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 +2 -0
- package/package.json +1 -1
package/dist/app-routes.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ export declare const API_ROUTES: Readonly<{
|
|
|
106
106
|
readonly AGENCIES_DETAIL: (id: string) => string;
|
|
107
107
|
readonly AGENCIES_DETAIL_LOCK: (id: string) => string;
|
|
108
108
|
readonly AGENCIES_LIST: `${string}/agencies`;
|
|
109
|
+
readonly APP_CONFIGS_APP_WRAPPER_BANNER: `${string}/app-configs/app-banner`;
|
|
109
110
|
readonly AUTH_CHANGE_PASSWORD: `${string}/auth/change-password`;
|
|
110
111
|
readonly AUTH_LOGIN: `${string}/auth/login`;
|
|
111
112
|
readonly AUTH_LOGOUT: `${string}/auth/logout`;
|
package/dist/app-routes.js
CHANGED
|
@@ -155,6 +155,8 @@ export const API_ROUTES = Object.freeze({
|
|
|
155
155
|
AGENCIES_DETAIL: (id) => `${getModuleConfig('auth', 'api_url')}/agencies/${encodeURIComponent(id)}`,
|
|
156
156
|
AGENCIES_DETAIL_LOCK: (id) => `${getModuleConfig('auth', 'api_url')}/agencies/${encodeURIComponent(id)}/lock`,
|
|
157
157
|
AGENCIES_LIST: `${getModuleConfig('auth', 'api_url')}/agencies`,
|
|
158
|
+
// APP-CONFIGS
|
|
159
|
+
APP_CONFIGS_APP_WRAPPER_BANNER: `${getModuleConfig('auth', 'api_url')}/app-configs/app-banner`,
|
|
158
160
|
// AUTH
|
|
159
161
|
AUTH_CHANGE_PASSWORD: `${getModuleConfig('auth', 'api_url')}/auth/change-password`,
|
|
160
162
|
AUTH_LOGIN: `${getModuleConfig('auth', 'api_url')}/auth/login`,
|