Change vehicle modes enum type in ET/PT filtered query#227
Open
thbar wants to merge 1 commit into
Open
Conversation
This was referenced Jul 7, 2026
Collaborator
Author
|
@haeckerbaer if you have time to push an empty commit to this branch (it's done), I wonder if this will make CI pass (#228). |
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.
This continues the move done in #207 (@haeckerbaer) to replace
VehicleModesEnumerationwithVehicleModesOfTransportEnumeration.While reviewing #207, I noticed that the old type still seems to be used on the querying side: the
VehicleModerequest filters of ET and PT. If I read correctly, a client can only filter on the old 9 values, while deliveries can now carry the full set ; a careful review is welcome.Since the new enumeration appears to be a superset of the old one, this should be backward compatible (except for tightly-coupled bindings users etc). If so, this also leaves
VehicleModesEnumerationunreferenced in the XSD; it stays deprecated (as per #207) and could be removed later.