Skip to content

Commit

Permalink
Work around casing problem for AnalyzeConversationResultKind (#32078)
Browse files Browse the repository at this point in the history
Workaround for #29141
  • Loading branch information
heaths authored Oct 27, 2022
1 parent 442aebd commit 8dddea1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ directive:
transform: >
$["enum"] = [
"conversationalPIIResults",
"conversationalSummarizationResults"
"conversationalSummarizationResults",
"conversationalSentimentResults"
];
- from: swagger-document
Expand All @@ -48,6 +49,11 @@ directive:
transform: >
$["x-ms-discriminator-value"] = "conversationalSummarizationResults";
- from: swagger-document
where: $.definitions.AnalyzeConversationSentimentResult
transform: >
$["x-ms-discriminator-value"] = "conversationalSentimentResults";
# Always default to UTF16 string indices.
- from: swagger-document
where: $.definitions.StringIndexType
Expand Down

0 comments on commit 8dddea1

Please sign in to comment.