Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce and filter support added for webhook event #73

Merged
merged 13 commits into from
Jan 28, 2025
Prev Previous commit
Next Next commit
Readme Updated
  • Loading branch information
divyanshusinghh committed Jan 28, 2025

Verified

This commit was signed with the committer’s verified signature.
briangann Brian Gann
commit 34ea732806041ce5378b451d001e9c9281c073f3
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -209,12 +209,12 @@ webhook_config: {
version: '1',
handler: handleExtensionUninstall,
filters: {
query: "$.payload.brand.uid",
query: "$.brand.uid",
condition: "(uid) => uid === 238"
},
reducer: {
brand_name: "$.payload.brand.name",
logo_link: "$.payload.brand.logo"
brand_name: "$.brand.name",
logo_link: "$.brand.logo"
}
}]
}