Type Alias ConnectorNodesInfo

Connector node metadata including URL, contract type, and datasource cache status.

type ConnectorNodesInfo = {
    cachedDataSources?: string[];
    contractType: number;
    dataSourcesUpdated: boolean;
    providerName: string;
    state: string;
    url: string;
}
Index

Properties

cachedDataSources?: string[]

List of datasource IDs currently cached from the connector provider.

contractType: number
dataSourcesUpdated: boolean
providerName: string
state: string
url: string