Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## Next Release

- Adds `webhook_secret` and `custom_headers` properties to Typescript definitions of a Webhook
- Bumps dependencies

## v7.5.5 (2025-02-06)

- Fixes type importing and constructor creation (closes #446)
Expand Down
5 changes: 3 additions & 2 deletions audit-ci.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json",
"critical": true,
// Only fail the audit if there are critical vulnerabilities.
"allowlist": []
"critical": true,
// TODO: `GHSA-67mh-4wv8-2f99` requires us to update `vite` once they bump their own dependencies to fix `esbuild`
"allowlist": ["GHSA-67mh-4wv8-2f99"]
}
2 changes: 1 addition & 1 deletion examples
Submodule examples updated 170 files
1,848 changes: 435 additions & 1,413 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@pollyjs/persister-fs": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/coverage-istanbul": "^3.0.6",
"audit-ci": "^6.6.1",
"chai": "4.3.10",
"chai-as-promised": "^7.1.1",
Expand All @@ -67,9 +67,9 @@
"jsdoc": "^4.0.2",
"prettier": "^2.8.8",
"typescript": "^4.9.5 || ~5.0.0",
"vite": "^6.0.11",
"vite": "^6.1.0",
"vite-plugin-externals": "^0.6.2",
"vitest": "^2.1.8",
"vitest": "^3.0.6",
"vows": "^0.8.3"
}
}
1 change: 1 addition & 0 deletions src/services/webhook_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export default (easypostClient) =>
*/
static async update(id, params) {
const url = `webhooks/${id}`;

try {
const response = await easypostClient._patch(url, params);

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading