@azure/ai-language-text 1.1.0-alpha.20230508.3 → 1.1.0-alpha.20230727.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -105,19 +105,6 @@ export declare interface ActionPrebuilt extends ActionCommon {
105
105
  modelVersion?: string;
106
106
  }
107
107
 
108
- /**
109
- * Defines values for AgeUnit. \
110
- * {@link KnownAgeUnit} can be used interchangeably with AgeUnit,
111
- * this enum contains the known values that the service supports.
112
- * ### Known values supported by the service
113
- * **Unspecified** \
114
- * **Year** \
115
- * **Month** \
116
- * **Week** \
117
- * **Day**
118
- */
119
- export declare type AgeUnit = string;
120
-
121
108
  /**
122
109
  * Type of actions supported by the {@link TextAnalysisClient.analyze} method.
123
110
  */
@@ -250,27 +237,6 @@ export declare type AnalyzeResult<ActionName extends AnalyzeActionName> = {
250
237
  LanguageDetection: LanguageDetectionResult[];
251
238
  }[ActionName];
252
239
 
253
- /**
254
- * Defines values for AreaUnit. \
255
- * {@link KnownAreaUnit} can be used interchangeably with AreaUnit,
256
- * this enum contains the known values that the service supports.
257
- * ### Known values supported by the service
258
- * **Unspecified** \
259
- * **SquareKilometer** \
260
- * **SquareHectometer** \
261
- * **SquareDecameter** \
262
- * **SquareDecimeter** \
263
- * **SquareMeter** \
264
- * **SquareCentimeter** \
265
- * **SquareMillimeter** \
266
- * **SquareInch** \
267
- * **SquareFoot** \
268
- * **SquareMile** \
269
- * **SquareYard** \
270
- * **Acre**
271
- */
272
- export declare type AreaUnit = string;
273
-
274
240
  /** An object that contains the predicted sentiment, confidence scores and other information about an assessment of a target. For example, in the sentence "The food is good", the assessment of the target 'food' is 'good'. */
275
241
  export declare interface AssessmentSentiment {
276
242
  /** Assessment sentiment in the sentence. */
@@ -498,19 +464,6 @@ export declare interface CustomSingleLabelClassificationSuccessResult extends Te
498
464
  readonly classifications: ClassificationCategory[];
499
465
  }
500
466
 
501
- /**
502
- * Defines values for DateTimeSubKind. \
503
- * {@link KnownDateTimeSubKind} can be used interchangeably with DateTimeSubKind,
504
- * this enum contains the known values that the service supports.
505
- * ### Known values supported by the service
506
- * **Time** \
507
- * **Date** \
508
- * **DateTime** \
509
- * **Duration** \
510
- * **Set**
511
- */
512
- export declare type DateTimeSubKind = string;
513
-
514
467
  /** Information about the language of a document as identified by the Language service. */
515
468
  export declare interface DetectedLanguage {
516
469
  /** Long name of a detected language (e.g. English, French). */
@@ -519,8 +472,6 @@ export declare interface DetectedLanguage {
519
472
  iso6391Name: string;
520
473
  /** A confidence score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. */
521
474
  confidenceScore: number;
522
- /** Identifies the script of the input document. */
523
- script?: ScriptKind;
524
475
  }
525
476
 
526
477
  /** Defines values for DocumentSentimentLabel. */
@@ -806,6 +757,7 @@ export declare interface HealthcareEntity extends Entity {
806
757
  * **BodyStructure** \
807
758
  * **Age** \
808
759
  * **Gender** \
760
+ * **Ethnicity** \
809
761
  * **ExaminationName** \
810
762
  * **Date** \
811
763
  * **Direction** \
@@ -814,21 +766,30 @@ export declare interface HealthcareEntity extends Entity {
814
766
  * **MeasurementUnit** \
815
767
  * **RelationalOperator** \
816
768
  * **Time** \
769
+ * **Course** \
817
770
  * **GeneOrProtein** \
818
771
  * **Variant** \
772
+ * **Expression** \
773
+ * **MutationType** \
819
774
  * **AdministrativeEvent** \
820
775
  * **CareEnvironment** \
821
776
  * **HealthcareProfession** \
822
777
  * **Diagnosis** \
823
778
  * **SymptomOrSign** \
824
779
  * **ConditionQualifier** \
780
+ * **ConditionScale** \
825
781
  * **MedicationClass** \
826
782
  * **MedicationName** \
827
783
  * **Dosage** \
828
784
  * **MedicationForm** \
829
785
  * **MedicationRoute** \
830
786
  * **FamilyRelation** \
831
- * **TreatmentName**
787
+ * **TreatmentName** \
788
+ * **Allergen** \
789
+ * **Employment** \
790
+ * **LivingStatus** \
791
+ * **SubstanceUse** \
792
+ * **SubstanceUseAmount**
832
793
  */
833
794
  export declare type HealthcareEntityCategory = string;
834
795
 
@@ -893,27 +854,6 @@ export declare interface HealthcareSuccessResult extends TextAnalysisSuccessResu
893
854
  readonly entityRelations: HealthcareEntityRelation[];
894
855
  }
895
856
 
896
- /**
897
- * Defines values for InformationUnit. \
898
- * {@link KnownInformationUnit} can be used interchangeably with InformationUnit,
899
- * this enum contains the known values that the service supports.
900
- * ### Known values supported by the service
901
- * **Unspecified** \
902
- * **Bit** \
903
- * **Kilobit** \
904
- * **Megabit** \
905
- * **Gigabit** \
906
- * **Terabit** \
907
- * **Petabit** \
908
- * **Byte** \
909
- * **Kilobyte** \
910
- * **Megabyte** \
911
- * **Gigabyte** \
912
- * **Terabyte** \
913
- * **Petabyte**
914
- */
915
- export declare type InformationUnit = string;
916
-
917
857
  /** Options for a key phrase recognition action. */
918
858
  export declare interface KeyPhraseExtractionAction extends ActionPrebuilt {
919
859
  }
@@ -953,64 +893,6 @@ export declare interface KeyPhraseExtractionSuccessResult extends TextAnalysisSu
953
893
  readonly keyPhrases: string[];
954
894
  }
955
895
 
956
- /** Known values of {@link AgeUnit} that the service accepts. */
957
- export declare enum KnownAgeUnit {
958
- /** Unspecified */
959
- Unspecified = "Unspecified",
960
- /** Year */
961
- Year = "Year",
962
- /** Month */
963
- Month = "Month",
964
- /** Week */
965
- Week = "Week",
966
- /** Day */
967
- Day = "Day"
968
- }
969
-
970
- /** Known values of {@link AreaUnit} that the service accepts. */
971
- export declare enum KnownAreaUnit {
972
- /** Unspecified */
973
- Unspecified = "Unspecified",
974
- /** SquareKilometer */
975
- SquareKilometer = "SquareKilometer",
976
- /** SquareHectometer */
977
- SquareHectometer = "SquareHectometer",
978
- /** SquareDecameter */
979
- SquareDecameter = "SquareDecameter",
980
- /** SquareDecimeter */
981
- SquareDecimeter = "SquareDecimeter",
982
- /** SquareMeter */
983
- SquareMeter = "SquareMeter",
984
- /** SquareCentimeter */
985
- SquareCentimeter = "SquareCentimeter",
986
- /** SquareMillimeter */
987
- SquareMillimeter = "SquareMillimeter",
988
- /** SquareInch */
989
- SquareInch = "SquareInch",
990
- /** SquareFoot */
991
- SquareFoot = "SquareFoot",
992
- /** SquareMile */
993
- SquareMile = "SquareMile",
994
- /** SquareYard */
995
- SquareYard = "SquareYard",
996
- /** Acre */
997
- Acre = "Acre"
998
- }
999
-
1000
- /** Known values of {@link DateTimeSubKind} that the service accepts. */
1001
- export declare enum KnownDateTimeSubKind {
1002
- /** Time */
1003
- Time = "Time",
1004
- /** Date */
1005
- Date = "Date",
1006
- /** DateTime */
1007
- DateTime = "DateTime",
1008
- /** Duration */
1009
- Duration = "Duration",
1010
- /** Set */
1011
- Set = "Set"
1012
- }
1013
-
1014
896
  /** Known values of {@link ErrorCode} that the service accepts. */
1015
897
  export declare enum KnownErrorCode {
1016
898
  /** InvalidRequest */
@@ -1067,6 +949,8 @@ export declare enum KnownHealthcareEntityCategory {
1067
949
  Age = "Age",
1068
950
  /** Gender */
1069
951
  Gender = "Gender",
952
+ /** Ethnicity */
953
+ Ethnicity = "Ethnicity",
1070
954
  /** ExaminationName */
1071
955
  ExaminationName = "ExaminationName",
1072
956
  /** Date */
@@ -1083,10 +967,16 @@ export declare enum KnownHealthcareEntityCategory {
1083
967
  RelationalOperator = "RelationalOperator",
1084
968
  /** Time */
1085
969
  Time = "Time",
970
+ /** Course */
971
+ Course = "Course",
1086
972
  /** GeneOrProtein */
1087
973
  GeneOrProtein = "GeneOrProtein",
1088
974
  /** Variant */
1089
975
  Variant = "Variant",
976
+ /** Expression */
977
+ Expression = "Expression",
978
+ /** MutationType */
979
+ MutationType = "MutationType",
1090
980
  /** AdministrativeEvent */
1091
981
  AdministrativeEvent = "AdministrativeEvent",
1092
982
  /** CareEnvironment */
@@ -1099,6 +989,8 @@ export declare enum KnownHealthcareEntityCategory {
1099
989
  SymptomOrSign = "SymptomOrSign",
1100
990
  /** ConditionQualifier */
1101
991
  ConditionQualifier = "ConditionQualifier",
992
+ /** ConditionScale */
993
+ ConditionScale = "ConditionScale",
1102
994
  /** MedicationClass */
1103
995
  MedicationClass = "MedicationClass",
1104
996
  /** MedicationName */
@@ -1112,37 +1004,17 @@ export declare enum KnownHealthcareEntityCategory {
1112
1004
  /** FamilyRelation */
1113
1005
  FamilyRelation = "FamilyRelation",
1114
1006
  /** TreatmentName */
1115
- TreatmentName = "TreatmentName"
1116
- }
1117
-
1118
- /** Known values of {@link InformationUnit} that the service accepts. */
1119
- export declare enum KnownInformationUnit {
1120
- /** Unspecified */
1121
- Unspecified = "Unspecified",
1122
- /** Bit */
1123
- Bit = "Bit",
1124
- /** Kilobit */
1125
- Kilobit = "Kilobit",
1126
- /** Megabit */
1127
- Megabit = "Megabit",
1128
- /** Gigabit */
1129
- Gigabit = "Gigabit",
1130
- /** Terabit */
1131
- Terabit = "Terabit",
1132
- /** Petabit */
1133
- Petabit = "Petabit",
1134
- /** Byte */
1135
- Byte = "Byte",
1136
- /** Kilobyte */
1137
- Kilobyte = "Kilobyte",
1138
- /** Megabyte */
1139
- Megabyte = "Megabyte",
1140
- /** Gigabyte */
1141
- Gigabyte = "Gigabyte",
1142
- /** Terabyte */
1143
- Terabyte = "Terabyte",
1144
- /** Petabyte */
1145
- Petabyte = "Petabyte"
1007
+ TreatmentName = "TreatmentName",
1008
+ /** Allergen */
1009
+ Allergen = "Allergen",
1010
+ /** Employment */
1011
+ Employment = "Employment",
1012
+ /** LivingStatus */
1013
+ LivingStatus = "LivingStatus",
1014
+ /** SubstanceUse */
1015
+ SubstanceUse = "SubstanceUse",
1016
+ /** SubstanceUseAmount */
1017
+ SubstanceUseAmount = "SubstanceUseAmount"
1146
1018
  }
1147
1019
 
1148
1020
  /** Known values of {@link InnerErrorCode} that the service accepts. */
@@ -1177,60 +1049,6 @@ export declare enum KnownInnerErrorCode {
1177
1049
  InvalidCountryHint = "InvalidCountryHint"
1178
1050
  }
1179
1051
 
1180
- /** Known values of {@link LengthUnit} that the service accepts. */
1181
- export declare enum KnownLengthUnit {
1182
- /** Unspecified */
1183
- Unspecified = "Unspecified",
1184
- /** Kilometer */
1185
- Kilometer = "Kilometer",
1186
- /** Hectometer */
1187
- Hectometer = "Hectometer",
1188
- /** Decameter */
1189
- Decameter = "Decameter",
1190
- /** Meter */
1191
- Meter = "Meter",
1192
- /** Decimeter */
1193
- Decimeter = "Decimeter",
1194
- /** Centimeter */
1195
- Centimeter = "Centimeter",
1196
- /** Millimeter */
1197
- Millimeter = "Millimeter",
1198
- /** Micrometer */
1199
- Micrometer = "Micrometer",
1200
- /** Nanometer */
1201
- Nanometer = "Nanometer",
1202
- /** Picometer */
1203
- Picometer = "Picometer",
1204
- /** Mile */
1205
- Mile = "Mile",
1206
- /** Yard */
1207
- Yard = "Yard",
1208
- /** Inch */
1209
- Inch = "Inch",
1210
- /** Foot */
1211
- Foot = "Foot",
1212
- /** LightYear */
1213
- LightYear = "LightYear",
1214
- /** Pt */
1215
- Pt = "Pt"
1216
- }
1217
-
1218
- /** Known values of {@link NumberKind} that the service accepts. */
1219
- export declare enum KnownNumberKind {
1220
- /** Integer */
1221
- Integer = "Integer",
1222
- /** Decimal */
1223
- Decimal = "Decimal",
1224
- /** Power */
1225
- Power = "Power",
1226
- /** Fraction */
1227
- Fraction = "Fraction",
1228
- /** Percent */
1229
- Percent = "Percent",
1230
- /** Unspecified */
1231
- Unspecified = "Unspecified"
1232
- }
1233
-
1234
1052
  /** Known values of {@link PiiEntityCategory} that the service accepts. */
1235
1053
  export declare enum KnownPiiEntityCategory {
1236
1054
  /** ABARoutingNumber */
@@ -1589,34 +1407,22 @@ export declare enum KnownPiiEntityDomain {
1589
1407
  None = "none"
1590
1408
  }
1591
1409
 
1592
- /** Known values of {@link RangeKind} that the service accepts. */
1593
- export declare enum KnownRangeKind {
1594
- /** Number */
1595
- Number = "Number",
1596
- /** Speed */
1597
- Speed = "Speed",
1598
- /** Weight */
1599
- Weight = "Weight",
1600
- /** Length */
1601
- Length = "Length",
1602
- /** Volume */
1603
- Volume = "Volume",
1604
- /** Area */
1605
- Area = "Area",
1606
- /** Age */
1607
- Age = "Age",
1608
- /** Information */
1609
- Information = "Information",
1610
- /** Temperature */
1611
- Temperature = "Temperature",
1612
- /** Currency */
1613
- Currency = "Currency"
1614
- }
1615
-
1616
1410
  /** Known values of {@link RelationType} that the service accepts. */
1617
1411
  export declare enum KnownRelationType {
1618
1412
  /** Abbreviation */
1619
1413
  Abbreviation = "Abbreviation",
1414
+ /** BodySiteOfCondition */
1415
+ BodySiteOfCondition = "BodySiteOfCondition",
1416
+ /** BodySiteOfTreatment */
1417
+ BodySiteOfTreatment = "BodySiteOfTreatment",
1418
+ /** CourseOfCondition */
1419
+ CourseOfCondition = "CourseOfCondition",
1420
+ /** CourseOfExamination */
1421
+ CourseOfExamination = "CourseOfExamination",
1422
+ /** CourseOfMedication */
1423
+ CourseOfMedication = "CourseOfMedication",
1424
+ /** CourseOfTreatment */
1425
+ CourseOfTreatment = "CourseOfTreatment",
1620
1426
  /** DirectionOfBodyStructure */
1621
1427
  DirectionOfBodyStructure = "DirectionOfBodyStructure",
1622
1428
  /** DirectionOfCondition */
@@ -1627,18 +1433,32 @@ export declare enum KnownRelationType {
1627
1433
  DirectionOfTreatment = "DirectionOfTreatment",
1628
1434
  /** DosageOfMedication */
1629
1435
  DosageOfMedication = "DosageOfMedication",
1436
+ /** ExaminationFindsCondition */
1437
+ ExaminationFindsCondition = "ExaminationFindsCondition",
1438
+ /** ExpressionOfGene */
1439
+ ExpressionOfGene = "ExpressionOfGene",
1440
+ /** ExpressionOfVariant */
1441
+ ExpressionOfVariant = "ExpressionOfVariant",
1630
1442
  /** FormOfMedication */
1631
1443
  FormOfMedication = "FormOfMedication",
1444
+ /** FrequencyOfCondition */
1445
+ FrequencyOfCondition = "FrequencyOfCondition",
1632
1446
  /** FrequencyOfMedication */
1633
1447
  FrequencyOfMedication = "FrequencyOfMedication",
1634
1448
  /** FrequencyOfTreatment */
1635
1449
  FrequencyOfTreatment = "FrequencyOfTreatment",
1450
+ /** MutationTypeOfGene */
1451
+ MutationTypeOfGene = "MutationTypeOfGene",
1452
+ /** MutationTypeOfVariant */
1453
+ MutationTypeOfVariant = "MutationTypeOfVariant",
1636
1454
  /** QualifierOfCondition */
1637
1455
  QualifierOfCondition = "QualifierOfCondition",
1638
1456
  /** RelationOfExamination */
1639
1457
  RelationOfExamination = "RelationOfExamination",
1640
1458
  /** RouteOfMedication */
1641
1459
  RouteOfMedication = "RouteOfMedication",
1460
+ /** ScaleOfCondition */
1461
+ ScaleOfCondition = "ScaleOfCondition",
1642
1462
  /** TimeOfCondition */
1643
1463
  TimeOfCondition = "TimeOfCondition",
1644
1464
  /** TimeOfEvent */
@@ -1656,55 +1476,9 @@ export declare enum KnownRelationType {
1656
1476
  /** ValueOfCondition */
1657
1477
  ValueOfCondition = "ValueOfCondition",
1658
1478
  /** ValueOfExamination */
1659
- ValueOfExamination = "ValueOfExamination"
1660
- }
1661
-
1662
- /** Known values of {@link RelativeTo} that the service accepts. */
1663
- export declare enum KnownRelativeTo {
1664
- /** Current */
1665
- Current = "Current",
1666
- /** End */
1667
- End = "End",
1668
- /** Start */
1669
- Start = "Start"
1670
- }
1671
-
1672
- /** Known values of {@link ScriptKind} that the service accepts. */
1673
- export declare enum KnownScriptKind {
1674
- /** Latin */
1675
- Latin = "Latin"
1676
- }
1677
-
1678
- /** Known values of {@link SpeedUnit} that the service accepts. */
1679
- export declare enum KnownSpeedUnit {
1680
- /** Unspecified */
1681
- Unspecified = "Unspecified",
1682
- /** MeterPerSecond */
1683
- MeterPerSecond = "MeterPerSecond",
1684
- /** KilometerPerHour */
1685
- KilometerPerHour = "KilometerPerHour",
1686
- /** KilometerPerMinute */
1687
- KilometerPerMinute = "KilometerPerMinute",
1688
- /** KilometerPerSecond */
1689
- KilometerPerSecond = "KilometerPerSecond",
1690
- /** MilePerHour */
1691
- MilePerHour = "MilePerHour",
1692
- /** Knot */
1693
- Knot = "Knot",
1694
- /** FootPerSecond */
1695
- FootPerSecond = "FootPerSecond",
1696
- /** FootPerMinute */
1697
- FootPerMinute = "FootPerMinute",
1698
- /** YardPerMinute */
1699
- YardPerMinute = "YardPerMinute",
1700
- /** YardPerSecond */
1701
- YardPerSecond = "YardPerSecond",
1702
- /** MeterPerMillisecond */
1703
- MeterPerMillisecond = "MeterPerMillisecond",
1704
- /** CentimeterPerMillisecond */
1705
- CentimeterPerMillisecond = "CentimeterPerMillisecond",
1706
- /** KilometerPerMillisecond */
1707
- KilometerPerMillisecond = "KilometerPerMillisecond"
1479
+ ValueOfExamination = "ValueOfExamination",
1480
+ /** VariantOfGene */
1481
+ VariantOfGene = "VariantOfGene"
1708
1482
  }
1709
1483
 
1710
1484
  /** Known values of {@link StringIndexType} that the service accepts. */
@@ -1717,60 +1491,6 @@ export declare enum KnownStringIndexType {
1717
1491
  Utf16CodeUnit = "Utf16CodeUnit"
1718
1492
  }
1719
1493
 
1720
- /** Known values of {@link TemperatureUnit} that the service accepts. */
1721
- export declare enum KnownTemperatureUnit {
1722
- /** Unspecified */
1723
- Unspecified = "Unspecified",
1724
- /** Fahrenheit */
1725
- Fahrenheit = "Fahrenheit",
1726
- /** Kelvin */
1727
- Kelvin = "Kelvin",
1728
- /** Rankine */
1729
- Rankine = "Rankine",
1730
- /** Celsius */
1731
- Celsius = "Celsius"
1732
- }
1733
-
1734
- /** Known values of {@link TemporalModifier} that the service accepts. */
1735
- export declare enum KnownTemporalModifier {
1736
- /** AfterApprox */
1737
- AfterApprox = "AfterApprox",
1738
- /** Before */
1739
- Before = "Before",
1740
- /** BeforeStart */
1741
- BeforeStart = "BeforeStart",
1742
- /** Approx */
1743
- Approx = "Approx",
1744
- /** ReferenceUndefined */
1745
- ReferenceUndefined = "ReferenceUndefined",
1746
- /** SinceEnd */
1747
- SinceEnd = "SinceEnd",
1748
- /** AfterMid */
1749
- AfterMid = "AfterMid",
1750
- /** Start */
1751
- Start = "Start",
1752
- /** After */
1753
- After = "After",
1754
- /** BeforeEnd */
1755
- BeforeEnd = "BeforeEnd",
1756
- /** Until */
1757
- Until = "Until",
1758
- /** End */
1759
- End = "End",
1760
- /** Less */
1761
- Less = "Less",
1762
- /** Since */
1763
- Since = "Since",
1764
- /** AfterStart */
1765
- AfterStart = "AfterStart",
1766
- /** BeforeApprox */
1767
- BeforeApprox = "BeforeApprox",
1768
- /** Mid */
1769
- Mid = "Mid",
1770
- /** More */
1771
- More = "More"
1772
- }
1773
-
1774
1494
  /**
1775
1495
  * Enum of possible error codes of a {@link TextAnalysisError}.
1776
1496
  */
@@ -1806,102 +1526,6 @@ export declare const KnownTextAnalysisErrorCode: {
1806
1526
  Warning: KnownErrorCode.Warning;
1807
1527
  };
1808
1528
 
1809
- /** Known values of {@link VolumeUnit} that the service accepts. */
1810
- export declare enum KnownVolumeUnit {
1811
- /** Unspecified */
1812
- Unspecified = "Unspecified",
1813
- /** CubicMeter */
1814
- CubicMeter = "CubicMeter",
1815
- /** CubicCentimeter */
1816
- CubicCentimeter = "CubicCentimeter",
1817
- /** CubicMillimeter */
1818
- CubicMillimeter = "CubicMillimeter",
1819
- /** Hectoliter */
1820
- Hectoliter = "Hectoliter",
1821
- /** Decaliter */
1822
- Decaliter = "Decaliter",
1823
- /** Liter */
1824
- Liter = "Liter",
1825
- /** Centiliter */
1826
- Centiliter = "Centiliter",
1827
- /** Milliliter */
1828
- Milliliter = "Milliliter",
1829
- /** CubicYard */
1830
- CubicYard = "CubicYard",
1831
- /** CubicInch */
1832
- CubicInch = "CubicInch",
1833
- /** CubicFoot */
1834
- CubicFoot = "CubicFoot",
1835
- /** CubicMile */
1836
- CubicMile = "CubicMile",
1837
- /** FluidOunce */
1838
- FluidOunce = "FluidOunce",
1839
- /** Teaspoon */
1840
- Teaspoon = "Teaspoon",
1841
- /** Tablespoon */
1842
- Tablespoon = "Tablespoon",
1843
- /** Pint */
1844
- Pint = "Pint",
1845
- /** Quart */
1846
- Quart = "Quart",
1847
- /** Cup */
1848
- Cup = "Cup",
1849
- /** Gill */
1850
- Gill = "Gill",
1851
- /** Pinch */
1852
- Pinch = "Pinch",
1853
- /** FluidDram */
1854
- FluidDram = "FluidDram",
1855
- /** Barrel */
1856
- Barrel = "Barrel",
1857
- /** Minim */
1858
- Minim = "Minim",
1859
- /** Cord */
1860
- Cord = "Cord",
1861
- /** Peck */
1862
- Peck = "Peck",
1863
- /** Bushel */
1864
- Bushel = "Bushel",
1865
- /** Hogshead */
1866
- Hogshead = "Hogshead"
1867
- }
1868
-
1869
- /** Known values of {@link WeightUnit} that the service accepts. */
1870
- export declare enum KnownWeightUnit {
1871
- /** Unspecified */
1872
- Unspecified = "Unspecified",
1873
- /** Kilogram */
1874
- Kilogram = "Kilogram",
1875
- /** Gram */
1876
- Gram = "Gram",
1877
- /** Milligram */
1878
- Milligram = "Milligram",
1879
- /** Gallon */
1880
- Gallon = "Gallon",
1881
- /** MetricTon */
1882
- MetricTon = "MetricTon",
1883
- /** Ton */
1884
- Ton = "Ton",
1885
- /** Pound */
1886
- Pound = "Pound",
1887
- /** Ounce */
1888
- Ounce = "Ounce",
1889
- /** Grain */
1890
- Grain = "Grain",
1891
- /** PennyWeight */
1892
- PennyWeight = "PennyWeight",
1893
- /** LongTonBritish */
1894
- LongTonBritish = "LongTonBritish",
1895
- /** ShortTonUS */
1896
- ShortTonUS = "ShortTonUS",
1897
- /** ShortHundredWeightUS */
1898
- ShortHundredWeightUS = "ShortHundredWeightUS",
1899
- /** Stone */
1900
- Stone = "Stone",
1901
- /** Dram */
1902
- Dram = "Dram"
1903
- }
1904
-
1905
1529
  /** Options for a language detection action. */
1906
1530
  export declare interface LanguageDetectionAction extends ActionPrebuilt {
1907
1531
  }
@@ -1937,31 +1561,6 @@ export declare interface LanguageDetectionSuccessResult extends TextAnalysisSucc
1937
1561
  readonly primaryLanguage: DetectedLanguage;
1938
1562
  }
1939
1563
 
1940
- /**
1941
- * Defines values for LengthUnit. \
1942
- * {@link KnownLengthUnit} can be used interchangeably with LengthUnit,
1943
- * this enum contains the known values that the service supports.
1944
- * ### Known values supported by the service
1945
- * **Unspecified** \
1946
- * **Kilometer** \
1947
- * **Hectometer** \
1948
- * **Decameter** \
1949
- * **Meter** \
1950
- * **Decimeter** \
1951
- * **Centimeter** \
1952
- * **Millimeter** \
1953
- * **Micrometer** \
1954
- * **Nanometer** \
1955
- * **Picometer** \
1956
- * **Mile** \
1957
- * **Yard** \
1958
- * **Inch** \
1959
- * **Foot** \
1960
- * **LightYear** \
1961
- * **Pt**
1962
- */
1963
- export declare type LengthUnit = string;
1964
-
1965
1564
  /** A word or phrase identified as a well-known entity within a database, including its formal (disambiguated) name and a link to the entity information within the source database. */
1966
1565
  export declare interface LinkedEntity {
1967
1566
  /** Entity Linking formal name. */
@@ -1992,20 +1591,6 @@ export declare interface Match {
1992
1591
  length: number;
1993
1592
  }
1994
1593
 
1995
- /**
1996
- * Defines values for NumberKind. \
1997
- * {@link KnownNumberKind} can be used interchangeably with NumberKind,
1998
- * this enum contains the known values that the service supports.
1999
- * ### Known values supported by the service
2000
- * **Integer** \
2001
- * **Decimal** \
2002
- * **Power** \
2003
- * **Fraction** \
2004
- * **Percent** \
2005
- * **Unspecified**
2006
- */
2007
- export declare type NumberKind = string;
2008
-
2009
1594
  /**
2010
1595
  * A mined opinion object represents an opinion we've extracted from a sentence.
2011
1596
  * It consists of both a target that these assessments are about, and the actual
@@ -2285,41 +1870,36 @@ export declare interface PollerLike<TState extends OperationState<TResult>, TRes
2285
1870
  sendCancellationRequest: () => Promise<void>;
2286
1871
  }
2287
1872
 
2288
- /**
2289
- * Defines values for RangeKind. \
2290
- * {@link KnownRangeKind} can be used interchangeably with RangeKind,
2291
- * this enum contains the known values that the service supports.
2292
- * ### Known values supported by the service
2293
- * **Number** \
2294
- * **Speed** \
2295
- * **Weight** \
2296
- * **Length** \
2297
- * **Volume** \
2298
- * **Area** \
2299
- * **Age** \
2300
- * **Information** \
2301
- * **Temperature** \
2302
- * **Currency**
2303
- */
2304
- export declare type RangeKind = string;
2305
-
2306
1873
  /**
2307
1874
  * Defines values for RelationType. \
2308
1875
  * {@link KnownRelationType} can be used interchangeably with RelationType,
2309
1876
  * this enum contains the known values that the service supports.
2310
1877
  * ### Known values supported by the service
2311
1878
  * **Abbreviation** \
1879
+ * **BodySiteOfCondition** \
1880
+ * **BodySiteOfTreatment** \
1881
+ * **CourseOfCondition** \
1882
+ * **CourseOfExamination** \
1883
+ * **CourseOfMedication** \
1884
+ * **CourseOfTreatment** \
2312
1885
  * **DirectionOfBodyStructure** \
2313
1886
  * **DirectionOfCondition** \
2314
1887
  * **DirectionOfExamination** \
2315
1888
  * **DirectionOfTreatment** \
2316
1889
  * **DosageOfMedication** \
1890
+ * **ExaminationFindsCondition** \
1891
+ * **ExpressionOfGene** \
1892
+ * **ExpressionOfVariant** \
2317
1893
  * **FormOfMedication** \
1894
+ * **FrequencyOfCondition** \
2318
1895
  * **FrequencyOfMedication** \
2319
1896
  * **FrequencyOfTreatment** \
1897
+ * **MutationTypeOfGene** \
1898
+ * **MutationTypeOfVariant** \
2320
1899
  * **QualifierOfCondition** \
2321
1900
  * **RelationOfExamination** \
2322
1901
  * **RouteOfMedication** \
1902
+ * **ScaleOfCondition** \
2323
1903
  * **TimeOfCondition** \
2324
1904
  * **TimeOfEvent** \
2325
1905
  * **TimeOfExamination** \
@@ -2328,21 +1908,11 @@ export declare type RangeKind = string;
2328
1908
  * **UnitOfCondition** \
2329
1909
  * **UnitOfExamination** \
2330
1910
  * **ValueOfCondition** \
2331
- * **ValueOfExamination**
1911
+ * **ValueOfExamination** \
1912
+ * **VariantOfGene**
2332
1913
  */
2333
1914
  export declare type RelationType = string;
2334
1915
 
2335
- /**
2336
- * Defines values for RelativeTo. \
2337
- * {@link KnownRelativeTo} can be used interchangeably with RelativeTo,
2338
- * this enum contains the known values that the service supports.
2339
- * ### Known values supported by the service
2340
- * **Current** \
2341
- * **End** \
2342
- * **Start**
2343
- */
2344
- export declare type RelativeTo = string;
2345
-
2346
1916
  /**
2347
1917
  * Options for the begin analyze actions operation.
2348
1918
  */
@@ -2353,15 +1923,6 @@ export declare interface RestoreAnalyzeBatchPollerOptions extends TextAnalysisOp
2353
1923
  updateIntervalInMs?: number;
2354
1924
  }
2355
1925
 
2356
- /**
2357
- * Defines values for ScriptKind. \
2358
- * {@link KnownScriptKind} can be used interchangeably with ScriptKind,
2359
- * this enum contains the known values that the service supports.
2360
- * ### Known values supported by the service
2361
- * **Latin**
2362
- */
2363
- export declare type ScriptKind = string;
2364
-
2365
1926
  /**
2366
1927
  * The predicted sentiment for a given span of text. For more information
2367
1928
  * regarding text sentiment, see {@link https://docs.microsoft.com//azure/cognitive-services/language-service/sentiment-opinion-mining/overview}.
@@ -2469,28 +2030,6 @@ export declare interface SentimentConfidenceScores {
2469
2030
  negative: number;
2470
2031
  }
2471
2032
 
2472
- /**
2473
- * Defines values for SpeedUnit. \
2474
- * {@link KnownSpeedUnit} can be used interchangeably with SpeedUnit,
2475
- * this enum contains the known values that the service supports.
2476
- * ### Known values supported by the service
2477
- * **Unspecified** \
2478
- * **MeterPerSecond** \
2479
- * **KilometerPerHour** \
2480
- * **KilometerPerMinute** \
2481
- * **KilometerPerSecond** \
2482
- * **MilePerHour** \
2483
- * **Knot** \
2484
- * **FootPerSecond** \
2485
- * **FootPerMinute** \
2486
- * **YardPerMinute** \
2487
- * **YardPerSecond** \
2488
- * **MeterPerMillisecond** \
2489
- * **CentimeterPerMillisecond** \
2490
- * **KilometerPerMillisecond**
2491
- */
2492
- export declare type SpeedUnit = string;
2493
-
2494
2033
  /**
2495
2034
  * Defines values for StringIndexType. \
2496
2035
  * {@link KnownStringIndexType} can be used interchangeably with StringIndexType,
@@ -2561,45 +2100,6 @@ export declare interface TargetSentiment {
2561
2100
  readonly length: number;
2562
2101
  }
2563
2102
 
2564
- /**
2565
- * Defines values for TemperatureUnit. \
2566
- * {@link KnownTemperatureUnit} can be used interchangeably with TemperatureUnit,
2567
- * this enum contains the known values that the service supports.
2568
- * ### Known values supported by the service
2569
- * **Unspecified** \
2570
- * **Fahrenheit** \
2571
- * **Kelvin** \
2572
- * **Rankine** \
2573
- * **Celsius**
2574
- */
2575
- export declare type TemperatureUnit = string;
2576
-
2577
- /**
2578
- * Defines values for TemporalModifier. \
2579
- * {@link KnownTemporalModifier} can be used interchangeably with TemporalModifier,
2580
- * this enum contains the known values that the service supports.
2581
- * ### Known values supported by the service
2582
- * **AfterApprox** \
2583
- * **Before** \
2584
- * **BeforeStart** \
2585
- * **Approx** \
2586
- * **ReferenceUndefined** \
2587
- * **SinceEnd** \
2588
- * **AfterMid** \
2589
- * **Start** \
2590
- * **After** \
2591
- * **BeforeEnd** \
2592
- * **Until** \
2593
- * **End** \
2594
- * **Less** \
2595
- * **Since** \
2596
- * **AfterStart** \
2597
- * **BeforeApprox** \
2598
- * **Mid** \
2599
- * **More**
2600
- */
2601
- export declare type TemporalModifier = string;
2602
-
2603
2103
  /**
2604
2104
  * A client for interacting with the text analysis features in Azure Cognitive
2605
2105
  * Language Service.
@@ -3172,8 +2672,6 @@ export declare interface TextAnalysisSuccessResult {
3172
2672
 
3173
2673
  /** if includeStatistics=true was specified in the request this field will contain information about the request payload. */
3174
2674
  export declare interface TextDocumentBatchStatistics {
3175
- /** Describes unknown properties. The value of an unknown property can be of "any" type. */
3176
- [property: string]: any;
3177
2675
  /** Number of documents submitted in the request. */
3178
2676
  documentCount: number;
3179
2677
  /** Number of valid documents. This excludes empty, over-size limit or non-supported languages documents. */
@@ -3190,7 +2688,7 @@ export declare interface TextDocumentInput {
3190
2688
  id: string;
3191
2689
  /** The input text to process. */
3192
2690
  text: string;
3193
- /** (Optional) This is the 2 letter ISO 639-1 representation of a language. For example, use "en" for English; "es" for Spanish etc. For Auto Language Detection, use "auto". If not set, use "en" for English as default. */
2691
+ /** (Optional) This is the 2 letter ISO 639-1 representation of a language. For example, use "en" for English; "es" for Spanish etc. If not set, use "en" for English as default. */
3194
2692
  language?: string;
3195
2693
  }
3196
2694
 
@@ -3205,42 +2703,6 @@ export declare interface TextDocumentStatistics {
3205
2703
  /** Defines values for TokenSentimentLabel. */
3206
2704
  export declare type TokenSentimentLabel = "positive" | "mixed" | "negative";
3207
2705
 
3208
- /**
3209
- * Defines values for VolumeUnit. \
3210
- * {@link KnownVolumeUnit} can be used interchangeably with VolumeUnit,
3211
- * this enum contains the known values that the service supports.
3212
- * ### Known values supported by the service
3213
- * **Unspecified** \
3214
- * **CubicMeter** \
3215
- * **CubicCentimeter** \
3216
- * **CubicMillimeter** \
3217
- * **Hectoliter** \
3218
- * **Decaliter** \
3219
- * **Liter** \
3220
- * **Centiliter** \
3221
- * **Milliliter** \
3222
- * **CubicYard** \
3223
- * **CubicInch** \
3224
- * **CubicFoot** \
3225
- * **CubicMile** \
3226
- * **FluidOunce** \
3227
- * **Teaspoon** \
3228
- * **Tablespoon** \
3229
- * **Pint** \
3230
- * **Quart** \
3231
- * **Cup** \
3232
- * **Gill** \
3233
- * **Pinch** \
3234
- * **FluidDram** \
3235
- * **Barrel** \
3236
- * **Minim** \
3237
- * **Cord** \
3238
- * **Peck** \
3239
- * **Bushel** \
3240
- * **Hogshead**
3241
- */
3242
- export declare type VolumeUnit = string;
3243
-
3244
2706
  /**
3245
2707
  * Defines values for WarningCode. \
3246
2708
  * {@link KnownWarningCode} can be used interchangeably with WarningCode,
@@ -3251,28 +2713,4 @@ export declare type VolumeUnit = string;
3251
2713
  */
3252
2714
  export declare type WarningCode = string;
3253
2715
 
3254
- /**
3255
- * Defines values for WeightUnit. \
3256
- * {@link KnownWeightUnit} can be used interchangeably with WeightUnit,
3257
- * this enum contains the known values that the service supports.
3258
- * ### Known values supported by the service
3259
- * **Unspecified** \
3260
- * **Kilogram** \
3261
- * **Gram** \
3262
- * **Milligram** \
3263
- * **Gallon** \
3264
- * **MetricTon** \
3265
- * **Ton** \
3266
- * **Pound** \
3267
- * **Ounce** \
3268
- * **Grain** \
3269
- * **PennyWeight** \
3270
- * **LongTonBritish** \
3271
- * **ShortTonUS** \
3272
- * **ShortHundredWeightUS** \
3273
- * **Stone** \
3274
- * **Dram**
3275
- */
3276
- export declare type WeightUnit = string;
3277
-
3278
2716
  export { }