18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import { UUID, UrlString } from '../../types/primitive.types';
|
|
|
|
export interface TenantConfig {
|
|
id: UUID;
|
|
slug: string;
|
|
code: string;
|
|
host: string;
|
|
name: string;
|
|
websiteBaseUrl: UrlString;
|
|
builderBaseUrl: UrlString;
|
|
backofficeBaseUrl: UrlString;
|
|
defaultLocale: string;
|
|
supportedLocales: string[];
|
|
defaultCurrency: string;
|
|
supportedCurrencies: string[];
|
|
timezone: string;
|
|
}
|