@jambonz/sdk
    Preparing search index...

    Interface ActionHookDelayAction

    Configuration for handling slow actionHook responses.

    interface ActionHookDelayAction {
        enabled?: boolean;
        noResponseTimeout?: number;
        noResponseGiveUpTimeout?: number;
        retries?: number;
        actions?: Record<string, unknown>[];
        giveUpActions?: Record<string, unknown>[];
    }
    Index

    Properties

    enabled?: boolean

    Enable delay handling.

    noResponseTimeout?: number

    Seconds before executing delay actions.

    noResponseGiveUpTimeout?: number

    Total seconds before giving up.

    retries?: number

    Times to retry delay actions.

    actions?: Record<string, unknown>[]

    Verbs to execute while waiting.

    giveUpActions?: Record<string, unknown>[]

    Verbs to execute if webhook never responds.