583d490cd7
## [0.2.2] - 2025-11-04 ### Added - **Enhanced logging system**: Introduced configurable `AppLogger` class with log level support (debug, info, warn, error, silent) - Environment-based log level configuration via `LOG_LEVEL` environment variable - Test environment detection to prevent log noise during testing - Context-aware logging with proper prefixes for better debugging - **Improved error handling**: Enhanced webhook signature verification with detailed debug logging - **Better debugging capabilities**: Added comprehensive logging throughout webhook processing pipeline ### Enhanced - **Webhook signature verification**: Improved signature validation with detailed logging for troubleshooting - **Error messages**: More descriptive error logging for failed operations and security violations - **Development experience**: Better debugging information for webhook processing and API interactions
30 lines
631 B
JSON
30 lines
631 B
JSON
{
|
|
"name": "fireflies",
|
|
"version": "0.2.2",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "^24.5.0",
|
|
"npm": "please-use-yarn",
|
|
"yarn": ">=4.0.2"
|
|
},
|
|
"packageManager": "yarn@4.9.2",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"setup:fields": "tsx scripts/add-meeting-fields.ts",
|
|
"test:webhook": "tsx scripts/test-webhook.ts"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.13.1",
|
|
"dotenv": "^16.3.1",
|
|
"twenty-sdk": "^0.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.5",
|
|
"@types/node": "^24.9.2",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|