@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
17 lines (15 loc) • 471 B
JavaScript
import { Type } from "@sinclair/typebox";
//#region src/shared/datarecords/external/generic-webhook/options.ts
const genericWebhookOptions = Type.Object({
url: Type.String({
format: "uri",
title: "Webhook URL"
}),
headers: Type.Optional(Type.Record(Type.String(), Type.String(), {
title: "Headers",
description: "Additional headers to include in the webhook request"
}))
});
//#endregion
export { genericWebhookOptions };
//# sourceMappingURL=options.js.map