@bondi-labs/integration-sdk - v0.0.2
    Preparing search index...

    Interface BondiActionMeta

    Metadata stored by the BondiAction method decorator.

    Optional Zod schemas describe the request/response shape. When omitted, the SDK falls back to class-validator/reflect-metadata extraction (later phase).

    interface BondiActionMeta {
        body?: ZodTypeAny;
        description?: string;
        label: string;
        name: string;
        query?: ZodTypeAny;
        response?: ZodTypeAny;
    }
    Index

    Properties

    body?: ZodTypeAny

    Zod schema for request body.

    description?: string

    Optional longer description.

    label: string

    Human-readable label shown in the Bondi Studio.

    name: string

    Stable identifier for the action (e.g. "createContact").

    query?: ZodTypeAny

    Zod schema for query string.

    response?: ZodTypeAny

    Zod schema for the response — used for workflow autocomplete.