@archastro/sdk
    Preparing search index...

    Interface PrivateServiceFunction

    A documented callable operation exposed by a private service.

    interface PrivateServiceFunction {
        description: string;
        input_schema: Record<string, unknown>;
        name: string;
        output_schema?: Record<string, unknown>;
    }
    Index

    Properties

    description: string

    Human-readable guidance describing when and why to call the operation.

    input_schema: Record<string, unknown>

    JSON Schema Draft 7 object describing the operation's argument object.

    name: string

    Stable operation name used when invoking the private service.

    output_schema?: Record<string, unknown>

    Optional JSON Schema Draft 7 object describing the successful result.