import type { workspace_Labels } from './workspace_Labels'; export type workspace_Workspace = { /** * Display name of the brand shown to clients. */ brandName?: string; /** * Hex accent color used throughout the client portal. */ colorAccent?: string; /** * Hex color of the client sidebar background. */ colorSidebarBackground?: string; /** * Hex color of the client sidebar text. */ colorSidebarText?: string; /** * Font family used in the client portal. */ font?: string; /** * URL of the full logo used for the workspace. */ fullLogoUrl?: string; /** * Unique identifier of the workspace (portal). */ id?: string; /** * Industry selected for the workspace during onboarding. */ industry?: string; /** * Whether clients can sign up directly without an invitation. */ isClientDirectSignUpEnabled?: boolean; /** * Whether the companies feature is enabled for the workspace. */ isCompaniesEnabled?: boolean; /** * Custom terminology configured for the workspace. */ labels?: workspace_Labels; /** * URL clients are redirected to after signing out. */ logOutUrl?: string; /** * Page description used in meta tags. */ metaDescription?: string; /** * Page title shown in the browser tab and meta tags. */ metaTitle?: string; /** * Fully qualified URL of the client-facing portal. */ portalUrl?: string; /** * URL of the image used when the workspace is shared on social media. */ socialSharingImageUrl?: string; /** * URL of the square icon used for the workspace. */ squareIconUrl?: string; /** * URL of the square image shown on the login screen. */ squareLoginImageUrl?: string; };