From 12ce47d9f784d205728ede4981196c3321fd377a Mon Sep 17 00:00:00 2001 From: Rafael Oliveira Date: Fri, 4 Sep 2026 10:03:38 +0100 Subject: [PATCH 1/2] market JobDescription API as obsolete --- .../textkernel/tx/services/SkillsIntelligenceService.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/com/textkernel/tx/services/SkillsIntelligenceService.java b/src/main/java/com/textkernel/tx/services/SkillsIntelligenceService.java index eab8da2f..c415e296 100644 --- a/src/main/java/com/textkernel/tx/services/SkillsIntelligenceService.java +++ b/src/main/java/com/textkernel/tx/services/SkillsIntelligenceService.java @@ -855,7 +855,9 @@ public SkillsSimilarityScoreResponse skillsSimilarityScore(List skil * @param request The request body * @return The API response body * @throws TxException Thrown when an API error occurs + * @deprecated This feature is deprecated and will be discontinued on June 23, 2027. */ + @Deprecated public GenerateJobResponse generateJobDescription(GenerateJobRequest request) throws TxException { RequestBody body = createJsonBody(request); Request apiRequest = new Request.Builder() @@ -874,7 +876,9 @@ public GenerateJobResponse generateJobDescription(GenerateJobRequest request) th * @param limit Maximum number of skills to suggest. If not specified this parameter defaults to 10. This value cannot exceed 50. * @return The API response body * @throws TxException Thrown when an API error occurs + * @deprecated This feature is deprecated and will be discontinued on June 23, 2027. */ + @Deprecated public SuggestSkillsFromJobTitleResponse suggestSkillsFromJobTitle(String jobTitle, String language, Integer limit) throws TxException { SuggestSkillsFromJobTitleRequest request = new SuggestSkillsFromJobTitleRequest(); request.JobTitle = jobTitle; @@ -896,7 +900,9 @@ public SuggestSkillsFromJobTitleResponse suggestSkillsFromJobTitle(String jobTit * @param jobTitle The title of the job for which skills are being suggested. * @return The API response body * @throws TxException Thrown when an API error occurs + * @deprecated This feature is deprecated and will be discontinued on June 23, 2027. */ + @Deprecated public SuggestSkillsFromJobTitleResponse suggestSkillsFromJobTitle(String jobTitle) throws TxException { return suggestSkillsFromJobTitle(jobTitle, "en", null); } From 783a0250cdfa29f039e54291ced631c8ecf82a1f Mon Sep 17 00:00:00 2001 From: Rafael Oliveira Date: Fri, 4 Sep 2026 10:04:08 +0100 Subject: [PATCH 2/2] market JobDescription API as obsolete --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ffaba725..31269fd8 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.textkernel tx-java - 3.0.3 + 3.0.4 jar Textkernel Tx Java SDK