-
Notifications
You must be signed in to change notification settings - Fork 15
feat: add ContainmentPattern type for JSON condition matching #576
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 01-05-add_whenfailed_option_for_error_handling_after_retries_exhausted
Are you sure you want to change the base?
Conversation
|
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
|
View your CI Pipeline Execution ↗ for commit 2b3cca7
☁️ Nx Cloud last updated this comment at |
ccaa5de to
46b2302
Compare
f6528a8 to
a3b1845
Compare
46b2302 to
c25ab9f
Compare
a3b1845 to
2b3cca7
Compare

Add type-safe condition patterns for Flow steps
This PR introduces a new
ContainmentPattern<T>utility type that provides type safety for condition patterns in Flow steps. The implementation matches PostgreSQL's JSON containment semantics (@>) where:The PR enhances the Flow API by:
conditionoptions in all step methodsComprehensive type tests are included to verify the behavior of the
ContainmentPattern<T>utility and its integration with the Flow API.