-
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
|
|
View your CI Pipeline Execution ↗ for commit 5db1a76
☁️ Nx Cloud last updated this comment at |
ccaa5de to
46b2302
Compare
f6528a8 to
a3b1845
Compare
46b2302 to
c25ab9f
Compare
a3b1845 to
2b3cca7
Compare
2b3cca7 to
966c7d1
Compare
c25ab9f to
8863a35
Compare
966c7d1 to
5db1a76
Compare
8863a35 to
2fd7a67
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.