Package version:

The configuration of service URI and custom headers for the webhook.

interface CallbackConfig {
    customHeaders?: {
        [propertyName: string]: string;
    };
    serviceUri: string;
}

Properties

customHeaders?: {
    [propertyName: string]: string;
}

Custom headers that will be added to the webhook notifications.

serviceUri: string

The service URI for the webhook to post notifications.