mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-17 11:20:37 +09:00
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
|
|
import type { UIAdapterModule } from "../types";
|
||
|
|
import { parseHttpStdoutLine } from "./parse-stdout";
|
||
|
|
import { HttpConfigFields } from "./config-fields";
|
||
|
|
import { buildHttpConfig } from "./build-config";
|
||
|
|
|
||
|
|
export const httpUIAdapter: UIAdapterModule = {
|
||
|
|
type: "http",
|
||
|
|
label: "HTTP Webhook",
|
||
|
|
parseStdoutLine: parseHttpStdoutLine,
|
||
|
|
ConfigFields: HttpConfigFields,
|
||
|
|
buildAdapterConfig: buildHttpConfig,
|
||
|
|
};
|