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
4 changes: 0 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,3 @@ yarn.lock
.prettierrc*
.babelrc*
.editorconfig

# Source maps and TypeScript (if not needed)
*.ts
*.map
147 changes: 129 additions & 18 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"runkitExampleFilename": "example.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"lint": "eslint --fix --ext .js src/",
Expand All @@ -33,6 +32,7 @@
"eslint-plugin-prettier": "^5.5.4",
"mocha": "^11.7.2",
"nock": "^14.0.10",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"uuid": "^13.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion types/dist/services/webhook-utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function safeParseWebhook(rawPayload: string): SafeParseResult;
* @param res - Express response object
* @param next - Express next function
*/
export function webhookParsingMiddleware(req: WebhookRequest, res: Response, next: NextFunction): void;
export function webhookParsingMiddleware(req: WebhookRequest, res: Response, next: Function): void;

/**
* Check if payload is an authentication_failed webhook (for security validation)
Expand Down