/** * Copyright (c) 2020-2024, WSO2 LLC. (https://www.wso2.com). * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /** * Class containing i18n module constants. */ export declare class I18nModuleConstants { /** * Private constructor to avoid object instantiation from outside * the class. * * @hideconstructor */ private constructor(); /** * Name of the i18n module. * @constant * @type {string} * @default */ static readonly MODULE_NAME: string; /** * Common namespace. * @constant * @type {string} * @default */ static readonly COMMON_NAMESPACE: string; /** * User portal namespace. * @constant * @type {string} * @default */ static readonly MY_ACCOUNT_NAMESPACE: string; /** * Console portal namespace. * @constant * @type {string} * @default */ static readonly CONSOLE_PORTAL_NAMESPACE: string; /** * Extensions namespace. * @constant * @type {string} * @default */ static readonly EXTENSIONS_NAMESPACE: string; /** * Default fallback language. * @constant * @type {string} * @default */ static readonly DEFAULT_FALLBACK_LANGUAGE: string; /** * Metadata file name. * @constant * @type {string} * @default */ static readonly META_FILENAME: string; /** * userstores namespace. */ static readonly USERSTORES_NAMESPACE: string; /** * Validation namespace. */ static readonly VALIDATION_NAMESPACE: string; /** * JWT private key configuration namespace. */ static readonly JWT_PRIVATE_KEY_CONFIGURATION_NAMESPACE: string; /** * transferList namespace. */ static readonly TRANSFER_LIST_NAMESPACE: string; /** * pages namespace. */ static readonly PAGES_NAMESPACE: string; /** * Identity Verification Provider namespace. */ static readonly IDVP_NAMESPACE: string; /** * Invite namespace. */ static readonly INVITE_NAMESPACE: string; /** * Parent org invitations namespace. */ static readonly PARENT_ORG_INVITATIONS_NAMESPACE: string; /** * OIDC scopes namespace. */ static readonly OIDC_SCOPES_NAMESPACE: string; /** * Onboarded namespace. */ static readonly ONBOARDED_NAMESPACE: string; /** * Organization discovery namespace. */ static readonly ORGANIZATION_DISCOVERY_NAMESPACE: string; /** * Organizations namespace. */ static readonly ORGANIZATIONS_NAMESPACE: string; /** * Authentication flow namespace. */ static readonly AUTHENTICATION_FLOW_NAMESPACE: string; /** * remoteFetch namespace. */ static readonly REMOTE_FETCH_NAMESPACE: string; /** * Roles namespace. */ static readonly ROLES_NAMESPACE: string; /** * Server configurations namespace. */ static readonly SERVER_CONFIGS_NAMESPACE: string; /** * SAML 2.0 Configuration namespace. */ static readonly SAML2_CONFIG_NAMESPACE: string; /** * Session management namespace. */ static readonly SESSION_MANAGEMENT_NAMESPACE: string; /** * WS-Federation Configuration namespace. */ static readonly WS_FEDERATION_CONFIG_NAMESPACE: string; /** * insights namespace. */ static readonly INSIGHTS_NAMESPACE: string; /** * SMS Providers namespace. */ static readonly SMS_PROVIDERS_NAMESPACE: string; /** * Claims namespace. * @constant */ static readonly CLAIMS_NAMESPACE: string; /** * Email locale namespace. * @constant */ static readonly EMAIL_LOCALE_NAMESPACE: string; /** * Help panel namespace. * @constant */ static readonly HELP_PANEL_NAMESPACE: string; /** * Suborganizations namespace. * @constant */ static readonly SUBORGANIZATIONS_NAMESPACE: string; /** * Console settings namespace. * @constant */ static readonly CONSOLE_SETTINGS_NAMESPACE: string; /** * Secrets namespace. * @constant */ static readonly SECRETS_NAMESPACE: string; /** * Branding namespace. * @constant */ static readonly BRANDING_NAMESPACE: string; /** * emailTemplates namespace. * @constant */ static readonly EMAIL_TEMPLATES_NAMESPACE: string; /** * Certificate namespace. * @constant */ static readonly CERTIFICATES_NAMESPACE: string; /** * authenticationProvider namespace. * @constant */ static readonly AUTHENTICATION_PROVIDER_NAMESPACE: string; /** * User namespace. */ static readonly USER_NAMESPACE: string; /** * governanceConnectors namespace. */ static readonly GOVERNANCE_CONNECTORS_NAMESPACE: string; /** * Users namespace. */ static readonly USERS_NAMESPACE: string; /** * Groups namespace. */ static readonly GROUPS_NAMESPACE: string; /** * Applications namespace. */ static readonly APPLICATIONS_NAMESPACE: string; /** * Identity Provider namespace. */ static readonly IDP_NAMESPACE: string; /** * API resources namespace. * @constant * @type {string} * @default */ static readonly API_RESOURCES_NAMESPACE: string; /** * AI namespace. * @constant * @type {string} * @default */ static readonly AI_NAMESPACE: string; }