5.1.0-beta.5 (2021-03-09)
New features
- Added ability to filter the categories returned in a Personally Identifiable Information recognition with the optional parameter
CategoriesFilter
inRecognizePiiEntitiesOptions
. - Added the ability to recognize linked entities under
StartAnalyzeBatchActions
. - Added
RecognizeLinkedEntitiesOptions
toTextAnalyticsActions
. - Added
RecognizeLinkedEntitiesActionsResults
toAnalyzeBatchActionsResult
. AnalyzeHealthcareEntitiesResult
, now exposes the propertyEntityRelations
of typeHealthcareEntityRelation
.- Introduced
HealthcareEntityRelation
class which will determine all the different relations between the entities asRoles
. - Added
HealthcareEntityRelationRole
, which exposesName
andEntity
of typestring
andHealthcareEntity
respectively. HealthcareEntityAssertion
is added toHealthcareEntity
which further exposesEntityAssociation
,EntityCertainity
andEntityConditionality
.- Added new types under
HealthcareRelationType
class.
Breaking changes
- Renamed
AspectSentiment
toTargetSentiment
. - Renamed
MinedOpinion
toSentenceOpinion
. - Renamed
OpinionSentiment
toAssessmentSentiment
. - For
PiiEntity.Category
the type of the property is nowPiiEntityCategory
instead ofEntityCategory
. - Removed
RelatedEntities
. RecognizePiiEntitiesOptions.Domain
is now a nullable type.- In
StartAnalyzeBatchActions
when all actions return statusfailed
the SDK will no longer throw an exception. The request will succeed and the errors will be located at the specific action level.
Fixes
RecognizePiiEntities
andTextAnalyticsActions.RecognizePiiEntitiesOptions
were always passingPiiEntityDomainType.PHI
. Now, it is only passed when requested by the user 19086.