app/models/app-config.model.ts
Properties |
addressServiceConfig |
addressServiceConfig:
|
Type : literal type
|
cookiesConfig |
cookiesConfig:
|
Type : literal type
|
countryTaxonomyService |
countryTaxonomyService:
|
Type : literal type
|
env |
env:
|
Type : literal type
|
keycloakConfig |
keycloakConfig:
|
Type : literal type
|
registerUser |
registerUser:
|
Type : literal type
|
searchEnvironment |
searchEnvironment:
|
Type : literal type
|
taxonomyService |
taxonomyService:
|
Type : literal type
|
export interface IAppConfig {
env: {
name: string;
};
keycloakConfig: {
config: {
url: string;
realm: string;
clientId: string;
};
enableBearerInterceptor: boolean;
bearerExcludedUrls: string[];
};
addressServiceConfig: {
config: {
url: string;
};
};
searchEnvironment: {
name: string;
};
registerUser: {
url: string;
};
cookiesConfig: {
path: string;
domain: string;
acceptCookie: string;
};
countryTaxonomyService: {
url: string,
publicationId: number
};
taxonomyService: {
path: string;
searcher: {
Industries: string,
Language: string,
TypeOfUser: string
};
};
}