Merge pull request #36 from saleor/fix-manifest-type
Fix manifest type to use `asyncEvents` and `syncEvents`
This commit is contained in:
commit
9b541cf318
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,8 @@ export interface AppExtension {
|
||||||
|
|
||||||
export interface AppWebhook {
|
export interface AppWebhook {
|
||||||
name: string;
|
name: string;
|
||||||
events?: WebhookEvent[];
|
asyncEvents?: WebhookEvent[];
|
||||||
|
syncEvents?: WebhookEvent[];
|
||||||
query: string;
|
query: string;
|
||||||
targetUrl: string;
|
targetUrl: string;
|
||||||
isActive?: boolean;
|
isActive?: boolean;
|
||||||
|
|
Loading…
Reference in a new issue