import { DataResponse } from '../common/Response'; export type TenantCredentialsScheme = 'OAUTH2' | 'API_TOKEN' | 'LOGIN_PASSWORD'; export interface FeedDestinationCredentials { scheme: TenantCredentialsScheme; credentials: Record; } export type FeedDestinationCredentialsResponse = DataResponse; export interface UpsertFeedDestinationCredentialsRequest { feed_destination_id: string; credentials: FeedDestinationCredentials; }