saleor-dashboard/src/custom-apps/components/WebhookEvents/messages.ts
Jakub Neander 112747a51c
Add GraphiQL for defining subscription queries for webhooks (#2885)
Co-authored-by: Bartłomiej Wiaduch <tukan2can@gmail.com>
Co-authored-by: timur <timuric@gmail.com>
Co-authored-by: Michał Droń <dron.official@yahoo.com>
2023-01-24 14:59:14 +01:00

36 lines
1,001 B
TypeScript

import { defineMessages } from "react-intl";
export const messages = defineMessages({
events: {
id: "cZN5Jd",
defaultMessage: "Events",
description: "Webhook details events",
},
synchronous: {
id: "yAFaVK",
defaultMessage: "Synchronous",
description: "Webhook details synchronous events",
},
asynchronous: {
id: "mSCZd4",
defaultMessage: "Asynchronous",
description: "Webhook details asynchronous events",
},
synchronousDescription: {
id: "16Dpgb",
defaultMessage:
"Synchronous webhook sends payload and waits for a response from the target URL to continue processing.",
description: "Synchronous events description",
},
asynchronousDescription: {
id: "yJqbYv",
defaultMessage:
"Asynchronous webhook sends payload and continues processing.",
description: "Asynchronous events description",
},
objects: {
defaultMessage: "Objects",
id: "F6LHyk",
description: "Webhook details objects",
},
});