forlogic-core 2.4.8 → 2.4.9
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.
|
@@ -24,6 +24,16 @@ export interface EnvironmentConfig {
|
|
|
24
24
|
scope: string;
|
|
25
25
|
};
|
|
26
26
|
qualiexApiUrl: string;
|
|
27
|
+
/**
|
|
28
|
+
* Override explícito da base do ident-api. Vazio (`''`) = deriva da common-v4
|
|
29
|
+
* (ver `getIdentBaseUrl`). Sem barra nem `/api` no final.
|
|
30
|
+
*/
|
|
31
|
+
identApiUrl: string;
|
|
32
|
+
/**
|
|
33
|
+
* Override explícito da base do login-api. Vazio (`''`) = deriva da common-v4
|
|
34
|
+
* (ver `getLoginBaseUrl`). Sem barra nem `/api` no final.
|
|
35
|
+
*/
|
|
36
|
+
loginApiUrl: string;
|
|
27
37
|
/**
|
|
28
38
|
* Base path do app consumidor (ex.: `/common` quando servido sob `/common/`).
|
|
29
39
|
* Prefixado nas rotas internas de redirect OAuth (`/callback`, `/login`).
|
package/dist/config/index.d.ts
CHANGED
|
@@ -45,6 +45,10 @@ export declare const shouldUseDevTokens: () => boolean;
|
|
|
45
45
|
export declare const isDevEnvironment: () => boolean;
|
|
46
46
|
export { isDevEnv, getAppEnv, type AppEnv } from './environments';
|
|
47
47
|
export declare const getQualiexApiUrl: () => string;
|
|
48
|
+
/** Override explícito da base do ident-api (`''` = derivar da common-v4). */
|
|
49
|
+
export declare const getIdentApiUrlOverride: () => string;
|
|
50
|
+
/** Override explícito da base do login-api (`''` = derivar da common-v4). */
|
|
51
|
+
export declare const getLoginApiUrlOverride: () => string;
|
|
48
52
|
export declare const QUERY_KEYS: {
|
|
49
53
|
readonly crud: (entity: string) => readonly [string];
|
|
50
54
|
readonly list: (entity: string, filters?: Record<string, any>) => readonly [string, "list", Record<string, any>];
|