Skip to content

Commit

Permalink
Merge pull request #5243 from microsoft/fix/refresh-option
Browse files Browse the repository at this point in the history
fix: shorthand for refresh option
  • Loading branch information
baywet authored Aug 26, 2024
2 parents 4af9013 + e6521cc commit 0b1c4ba
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 @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Fixed shorthand for refresh option in workspace experience. [#5240](https://github.com/microsoft/kiota/issues/5240)
- Fixed missing type options in help for plugin commands. [#5230](https://github.com/microsoft/kiota/issues/5230)
- Removed OpenAI plugins generation since the service does not support them anymore.
- Fixed an issue where models would be missing when they had no properties and a single allOf entry. [#5014](https://github.com/microsoft/kiota/issues/5014)
Expand Down
2 changes: 1 addition & 1 deletion src/kiota/KiotaClientCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public static Command GetGenerateCommand()
internal static Option<bool> GetRefreshOption()
{
var refresh = new Option<bool>("--refresh", "Refreshes the client OpenAPI description before generating the client");
refresh.AddAlias("--r");
refresh.AddAlias("-r");
return refresh;
}
}

0 comments on commit 0b1c4ba

Please sign in to comment.