- Add boolean query parser documentation with accepted values and ex…#252
Merged
Chucks1093 merged 1 commit intoaccesslayerorg:mainfrom Apr 28, 2026
Merged
- Add boolean query parser documentation with accepted values and ex…#252Chucks1093 merged 1 commit intoaccesslayerorg:mainfrom
Chucks1093 merged 1 commit intoaccesslayerorg:mainfrom
Conversation
…amples (accesslayerorg#250) - Add route-level structured diagnostics log for oversized request payload rejections (accesslayerorg#249) - Add configurable indexer cursor stale-age warning threshold with warning emission (accesslayerorg#248) - Add creator feed filter combinator helper to eliminate duplicate where-clause logic (accesslayerorg#251)
|
@harystyleseze Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
#250 — Boolean query parser docs
docs/boolean-query-parser.mddocumenting accepted true/false variants (true,1,yes,on/false,0,no,off), case-insensitivity rules, absent-param behaviour, error response shape, andimplementation reference.
#249 — Route-level request size diagnostics log
413handler insrc/middlewares/error.middleware.tsthat emits a structuredlogger.warnwithroute,contentLength, andlimitByteswhen a request payload exceeds the configured limit. Full payloadcontent is never logged.
#248 — Indexer cursor stale-age warning threshold config
INDEXER_CURSOR_STALE_AGE_WARNING_MSenv variable (default300000ms / 5 min) tosrc/config.tsand.env.examplesrc/utils/indexer-cursor-staleness.utils.ts—warnIfIndexerCursorStale(lastUpdatedAt, thresholdMs?)emits a structured pino warning when the cursor ageexceeds the threshold
src/utils/test/indexer-cursor-staleness.utils.test.ts#251 — Creator feed filter combinator helper
src/modules/creators/creator-feed-filter-combinator.utils.ts—buildCreatorFeedWhere(filters)composes the Prismawhereclause fromCreatorFilterInput, replacingduplicate inline combinator branches in feed handlers
src/modules/creators/creators.utils.tsto callbuildCreatorFeedWhereinstead of repeating thelogic
src/modules/creators/creator-feed-filter-combinator.utils.test.tsTesting
pnpm lintpnpm buildpnpm exec prisma generatewhen schema or generated types changedChecklist
Closes
Closes #248
Closes #249
Closes #250
Closes #251