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

    Interface BondiTriggerMeta

    Metadata stored by the BondiTrigger class decorator. The class extending BondiTriggerBase is itself the emitter — the metadata tells the SDK what to advertise in the integration definition.

    interface BondiTriggerMeta {
        description?: string;
        label: string;
        name: string;
        payload: ZodTypeAny;
    }
    Index

    Properties

    description?: string

    Optional longer description.

    label: string

    Human-readable label shown in the Bondi Studio.

    name: string

    Stable identifier sent in the x-bondi-action header.

    payload: ZodTypeAny

    Zod schema describing the event payload.