feat(compiler): Bring back the Map<K, V>
type
#5573
+325
−51
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.
Related Issue: #2842
I was wondering how to emit
propertyNames
keyword of a object schema from TypeSpec. Then I found #2842. After looked up #2842 (comment), #571, and #1537, I noticed the previously there was theMap<K, V>
type. (I couldn't catch exactly why it has been removed)Because of lacking the key type of
Record<T>
, we cannot inject some custom types as the keys of the object. As @timotheeguerin suggested, bringing back the Map type should be the start point for addingpropertyNames
support.As the current main branch of TypeSpec doesn't support OpenAPI 3.1 yet, I postponed to add emitting support of
propertyNames
keyword. Once this pull request got merged, I will prepare it, targeting theopenapi3.1
branch.