feat(cache): add sequelize support#2554
Conversation
eee3c4b to
4148390
Compare
| this.bind(HelmetSecurityBindings.CONFIG).to({ | ||
| frameguard: {action: process.env.X_FRAME_OPTIONS}, | ||
| frameguard: { | ||
| action: process.env.X_FRAME_OPTIONS as |
There was a problem hiding this comment.
is this part of the cache support that you added
There was a problem hiding this comment.
no this changes wasn't part of the cache support. this changes for TypeScript/ESLint type-safety issue where process.env.X_FRAME_OPTIONS is typed as string | undefined, but frameguard.action expects 'deny' | 'sameorigin' | undefined.
add sequelize support GH-2552
SonarQube reviewer guideSummary: Add Sequelize-based caching support with comprehensive documentation and improved package exports. Review Focus:
Start review at:
|



GH-2552
Description
Added Sequelize support to the cache package
Type of change
Checklist: