Merge pull request #36 from saleor/fix-manifest-type

Fix manifest type to use `asyncEvents` and `syncEvents`
This commit is contained in:
Krzysztof Wolski 2022-08-30 11:02:25 +02:00 committed by GitHub
commit 9b541cf318
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,8 @@ export interface AppExtension {
export interface AppWebhook {
name: string;
events?: WebhookEvent[];
asyncEvents?: WebhookEvent[];
syncEvents?: WebhookEvent[];
query: string;
targetUrl: string;
isActive?: boolean;