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

    Interface ServiceDefinition

    Logical grouping of related actions and triggers (e.g. "Contacts", "Deals", "Invoices"). Services appear as collapsible sections in the Bondi UI.

    interface ServiceDefinition {
        actions?: ActionDefinition<any, any>[];
        description?: string;
        label: string;
        name: string;
        triggers?: TriggerDefinition<ZodTypeAny>[];
    }
    Index

    Properties

    actions?: ActionDefinition<any, any>[]

    Actions under this service. Generic params widened to allow heterogeneous arrays of typed actions.

    description?: string

    Optional longer description.

    label: string

    Human-readable label shown in the Bondi Studio.

    name: string

    Stable identifier for the service.

    triggers?: TriggerDefinition<ZodTypeAny>[]

    Triggers under this service.