Skip to content

Commit bb8f95b

Browse files
authored
[Text Analytics] Use camel case in assertion response strings (Azure#14246)
This change is needed to match the current service's response. The swagger is being updated in Azure/azure-rest-api-specs#13361.
1 parent 75bf8a6 commit bb8f95b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/textanalytics/ai-text-analytics/review/ai-text-analytics.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export type EntityAssociation = "subject" | "other";
176176
export type EntityCertainty = "positive" | "positivePossible" | "neutralPossible" | "negativePossible" | "negative";
177177

178178
// @public
179-
export type EntityConditionality = "Hypothetical" | "Conditional";
179+
export type EntityConditionality = "hypothetical" | "conditional";
180180

181181
// @public
182182
export interface EntityDataSource {

sdk/textanalytics/ai-text-analytics/src/generated/models/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ export type State =
10981098
| "cancelling"
10991099
| "partiallyCompleted";
11001100
/** Defines values for Conditionality. */
1101-
export type Conditionality = "Hypothetical" | "Conditional";
1101+
export type Conditionality = "hypothetical" | "conditional";
11021102
/** Defines values for Certainty. */
11031103
export type Certainty =
11041104
| "positive"

0 commit comments

Comments
 (0)