Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a545d75
chore: start release 6.4.0 [no ci]
May 14, 2026
73237b8
Merge branch 'next' into release/6.4.0
adrians5j May 18, 2026
872f9f5
Merge branch 'next' into release/6.4.0
adrians5j May 19, 2026
f00b236
Merge branch 'next' into release/6.4.0
adrians5j May 20, 2026
2e58681
Merge branch 'next' into release/6.4.0
Pavel910 May 20, 2026
5c2c0cc
Merge branch 'next' into release/6.4.0
adrians5j May 22, 2026
ba7ea6f
Merge branch 'next' into release/6.4.0
Pavel910 May 24, 2026
3af1029
Merge branch 'next' into release/6.4.0
Pavel910 May 24, 2026
11dd709
Merge branch 'next' into release/6.4.0
adrians5j May 27, 2026
e21e322
Merge branch 'next' into release/6.4.0
adrians5j May 28, 2026
9f4b338
Merge branch 'next' into release/6.4.0
adrians5j May 29, 2026
d29449f
Merge branch 'next' into release/6.4.0
adrians5j May 29, 2026
d4422fc
Merge branch 'next' into release/6.4.0
adrians5j Jun 1, 2026
09f6966
Merge branch 'next' into release/6.4.0
adrians5j Jun 1, 2026
5d7fce6
fix(sdk): export verify webhook payload
brunozoric Jun 2, 2026
e76f6e0
fix(sdk): export verify webhook payload
brunozoric Jun 2, 2026
40fa794
fix(sdk): export verify webhook payload
brunozoric Jun 2, 2026
e679034
chore: start release 6.4.2
Jun 3, 2026
acd868c
fix(api-headless-cms): update rev description on locked unpublished r…
brunozoric Jun 3, 2026
f5fff00
fix(admin-ui): timeago temportal (#5270)
brunozoric Jun 3, 2026
b3abe33
fix: stamp CLI telemetry with the canonical global-config machine id
adrians5j Jun 5, 2026
4fa2ff2
fix: set `"@webiny/wts-client": "^3.1.4"`
adrians5j Jun 8, 2026
8c81ddc
fix: update whitelist with three lexical packages
adrians5j Jun 8, 2026
facd9de
fix: bring back sdk/stdlib packages
adrians5j Jun 8, 2026
aff40ad
fix(website-builder): visual improvements on page editor (#5272)
adrians5j Jun 8, 2026
102964b
fix: replace `red` with `shallowRef`
adrians5j Jun 8, 2026
c386250
fix(webhooks): enforce min-length on webhook name
adrians5j Jun 8, 2026
45b996d
fix: rm minLength validator from name field
adrians5j Jun 9, 2026
96d6006
fix: add minLength:3 validator to slug field
adrians5j Jun 9, 2026
50c0e70
chore:format code
adrians5j Jun 9, 2026
97a034b
Merge remote-tracking branch 'origin/next' into release/6.4.2
adrians5j Jun 9, 2026
b336c20
chore:format code
adrians5j Jun 9, 2026
532ff5b
chore:update deps
adrians5j Jun 9, 2026
76e9d44
chore:rebuild webiny pkg
adrians5j Jun 9, 2026
43c8468
ci:run workflows
adrians5j Jun 9, 2026
e566d1e
Merge branch 'next' into release/6.4.2
adrians5j Jun 9, 2026
ebf6016
Merge remote-tracking branch 'origin/next' into release/6.4.2
adrians5j Jun 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(sdk): export verify webhook payload
  • Loading branch information
brunozoric committed Jun 2, 2026
commit 40fa7944cc36e3de79fbf6009deb0ce21b90fb1a
2 changes: 1 addition & 1 deletion packages/sdk/src/methods/webhooks/verifyWebhookPayload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface WebhookSignPayloadHeaders {
"webhook-signature": string;
}

export const createWebhookVerifyPayload = (secret: string | undefined) => {
export const createVerifyWebhookPayload = (secret: string | undefined) => {
if (!secret) {
return async () => {
throw new Error("Signing secret is not defined.");
Expand Down