Skip to content

Commit

Permalink
Merge pull request #4666 from microsoft/bug/typescript/import-alias-i…
Browse files Browse the repository at this point in the history
…ssue

Bug/typescript/import alias issue
  • Loading branch information
koros authored May 15, 2024
2 parents ff3f183 + e8d82fa commit 33257dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed a bug where some allOf scenarios would be missing properties if type object wasn't set on the schema. [#4074](https://github.com/microsoft/kiota/issues/4074)
- Fixed a bug where schema with multiple allOf entries would incorrectly get merged to inherit from the first entry [#4428] (https://github.com/microsoft/kiota/issues/4428)
- Fixes constructor generation for nullable properties that are initialized as null in C#,Java and PHP
- Fixed a bug where the hash alias in typescript wasn't being generated uniformly for similar interfaces [#84](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/issues/84)

## [1.14.0] - 2024-05-02

Expand Down
2 changes: 1 addition & 1 deletion src/Kiota.Builder/Refiners/TypeScriptRefiner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ private static void AliasCollidingSymbols(IEnumerable<CodeUsing> usings, HashSet
.Name +
usingElement.Declaration
?.TypeDefinition
?.Name)
?.Name.ToFirstCharacterUpperCase())
.GetNamespaceImportSymbol()
.ToFirstCharacterUpperCase();
}
Expand Down

0 comments on commit 33257dd

Please sign in to comment.