Interface ConnectorOperationHandler

interface ConnectorOperationHandler {
    methods?: Record<"run", ConnectorOperationMethod<ConnectorMethodImplementationBase>>;
    key: string;
    name: string;
    description?: string;
    tags?: string[];
    inputSchema?: any;
    outputSchema?: any;
    isReadOnly?: boolean;
}

Hierarchy (view full)

Properties

key: string
name: string
description?: string
tags?: string[]
inputSchema?: any
outputSchema?: any
isReadOnly?: boolean