2021-12-13 14:43:30 +00:00
|
|
|
import { defineMessages } from "react-intl";
|
|
|
|
|
|
|
|
export const messages = defineMessages({
|
|
|
|
webhookInformation: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "WDy0tF",
|
2021-12-13 14:43:30 +00:00
|
|
|
defaultMessage: "Webhook Information",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "section header",
|
2021-12-13 14:43:30 +00:00
|
|
|
},
|
|
|
|
webhookName: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "D0KaT6",
|
2021-12-13 14:43:30 +00:00
|
|
|
defaultMessage: "Webhook Name",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "webhook input label",
|
2021-12-13 14:43:30 +00:00
|
|
|
},
|
|
|
|
targetUrl: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "u9/vj9",
|
2021-12-13 14:43:30 +00:00
|
|
|
defaultMessage: "Target URL",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "webhook input label",
|
2021-12-13 14:43:30 +00:00
|
|
|
},
|
|
|
|
secretKey: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "NPfmdK",
|
2021-12-13 14:43:30 +00:00
|
|
|
defaultMessage: "Secret Key",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "webhook input label",
|
2021-12-13 14:43:30 +00:00
|
|
|
},
|
|
|
|
targetUrlDescription: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "0MetrR",
|
2021-12-13 14:43:30 +00:00
|
|
|
defaultMessage: "This URL will receive webhook POST requests",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "webhook input help text",
|
2021-12-13 14:43:30 +00:00
|
|
|
},
|
|
|
|
secretKeyDescription: {
|
2022-05-05 07:54:28 +00:00
|
|
|
id: "tA5HJx",
|
2021-12-13 14:43:30 +00:00
|
|
|
defaultMessage:
|
|
|
|
"secret key is used to create a hash signature with each payload. *optional field",
|
2022-06-21 09:36:55 +00:00
|
|
|
description: "webhook input help text",
|
|
|
|
},
|
2021-12-13 14:43:30 +00:00
|
|
|
});
|