import type * as Vital from "../index.js"; /** * [Deprecated] GET /v2/team is in the process of being removed. * Neither customers nor Dashboard should retrieve team settings and metadata directly. * * All must migrate to the Team endpoints of the Org Management API. */ export interface ClientFacingTeam { id: string; orgId: string; name: string; svixAppId?: string; clientId?: string; clientSecret?: string; airtableApiKey?: string; airtableBaseId?: string; webhookSecret?: string; apiKey?: string; apiKeys?: Vital.ClientFacingApiKey[]; configuration?: Vital.TeamConfig; testkitsTextsEnabled: boolean; labTestsPatientCommunicationEnabled: boolean; labTestsPatientSmsCommunicationEnabled: boolean; labTestsPatientEmailCommunicationEnabled: boolean; logoUrl?: string; delegatedFlow: Vital.DelegatedFlowType; criticalResultNotificationEmail?: string; }