16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
import { WebhookDetails_webhook } from "./types/WebhookDetails";
|
|
|
|
export const webhook: WebhookDetails_webhook = {
|
|
__typename: "Webhook",
|
|
app: {
|
|
__typename: "App",
|
|
id: "Jzx1ss23sEt==",
|
|
name: "Test App 2"
|
|
},
|
|
events: [],
|
|
id: "Jzx123sEt==",
|
|
isActive: true,
|
|
name: "Webhook Test 2",
|
|
secretKey: "zxczx_asdas",
|
|
targetUrl: "http://www.getsaleor.com"
|
|
};
|