@cfxlabsinc/b2b-services
    Preparing search index...

    Interface HookdeckSourceAuth

    Verification Hookdeck applies to inbound requests before it accepts them.

    type is Hookdeck's auth_type"HMAC", "API_KEY", "BASIC_AUTH" and friends. config is the matching credential blob, left free-form because the provider does no schema validation on it either: HMAC wants {algorithm, encoding, header_key, webhook_secret_key}, API_KEY wants {header_key, api_key}.

    interface HookdeckSourceAuth {
        config: Input<Record<string, Input<string>>>;
        type: Input<string>;
    }
    Index
    config: Input<Record<string, Input<string>>>
    type: Input<string>