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

    Interface HookdeckTransformationArgs

    interface HookdeckTransformationArgs {
        code: Input<string>;
        env?: Input<Record<string, Input<string>>>;
        importId?: string;
        name: Input<string>;
        provider: Provider;
    }
    Index
    code: Input<string>

    JavaScript executed by Hookdeck, calling addHandler("transform", …).

    env?: Input<Record<string, Input<string>>>

    Values exposed to the code as process.env. Routinely credentials, so the whole map is encoded through stableJson and inherits secretness.

    importId?: string

    Live Hookdeck id to adopt instead of creating. See adoptOpts.

    name: Input<string>

    Human-friendly name, unique within the Hookdeck account.

    provider: Provider

    Hookdeck provider — carries the API key, and therefore the account.