export interface ValtechCommsPreferencesConfig { apiUrl: string; appId: string; } export interface CommunicationSetting { templateId: string; label: string; labelEn: string; audience: string; enabled: boolean; isDefault: boolean; } export interface ListCommsSettingsResponse { operationId: string; settings: CommunicationSetting[]; } export interface SetCommsEnabledResponse { operationId: string; templateId: string; enabled: boolean; }