Fix manifest type to use asyncEvents and syncEvents

This commit is contained in:
Jonatan Witoszek 2022-08-29 14:53:20 +02:00
parent d087bbf2ed
commit 8ae80269ea
No known key found for this signature in database
GPG key ID: 17DB8509239AB834

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;