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 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); }