import * as P from './Paginated'; export type Connector = { id: string; name: string; displayName: string; thumbnailUrl: string; }; export type ConnectorResponse = { id: string; name: string; display_name: string; thumbnail_url: string; }; export type GetConnectorsQuery = P.GetQuery; export type GetConnectorsQueryRequest = P.GetQueryRequest;